Theme My Login - Version 6.3

Version Description

  • Introduce tml_page post type and give each action it's own page
  • Introduce AJAX module
  • Implement user lock notifications for the Security module.
  • Add option to hide widget when logged out
  • Add option to disable wp-login.php to Security module
  • Removed languages from plugin
  • Use Custom E-mail's New User template when a user is added via wp-admin
  • Use Custom E-mail's User Activation template when an activation is resent via wp-admin
Download this release

Release Info

Developer jfarthing84
Plugin Icon 128x128 Theme My Login
Version 6.3
Comparing to
See all releases

Code changes from version 6.2.3 to 6.3

Files changed (43) hide show
  1. admin/class-theme-my-login-admin.php +217 -578
  2. admin/css/colors-classic.css +0 -82
  3. admin/css/colors-fresh.css +0 -82
  4. admin/css/theme-my-login-admin.css +0 -14
  5. admin/js/jquery.shake.js +0 -18
  6. admin/js/theme-my-login-admin.js +0 -30
  7. includes/class-plugin-options.php +0 -146
  8. includes/class-theme-my-login-abstract.php +252 -0
  9. includes/class-theme-my-login-common.php +127 -0
  10. includes/class-theme-my-login-debug.php +0 -196
  11. includes/class-theme-my-login-module.php +0 -55
  12. includes/class-theme-my-login-ms-signup.php +133 -139
  13. includes/class-theme-my-login-template.php +191 -195
  14. includes/class-theme-my-login-widget.php +108 -77
  15. includes/class-theme-my-login.php +616 -543
  16. language/theme-my-login-ar.mo +0 -0
  17. language/theme-my-login-ar.po +0 -1433
  18. language/theme-my-login-da_DK.mo +0 -0
  19. language/theme-my-login-da_DK.po +0 -1448
  20. language/theme-my-login-de_DE.mo +0 -0
  21. language/theme-my-login-de_DE.po +0 -1441
  22. language/theme-my-login-el.mo +0 -0
  23. language/theme-my-login-el.po +0 -1434
  24. language/theme-my-login-es_ES.mo +0 -0
  25. language/theme-my-login-es_ES.po +0 -1434
  26. language/theme-my-login-fi.mo +0 -0
  27. language/theme-my-login-fi.po +0 -1433
  28. language/theme-my-login-fr_FR.mo +0 -0
  29. language/theme-my-login-fr_FR.po +0 -1437
  30. language/theme-my-login-hu_HU.mo +0 -0
  31. language/theme-my-login-hu_HU.po +0 -1434
  32. language/theme-my-login-it_IT.mo +0 -0
  33. language/theme-my-login-it_IT.po +0 -1434
  34. language/theme-my-login-ja.mo +0 -0
  35. language/theme-my-login-ja.po +0 -1671
  36. language/theme-my-login-nl_NL.mo +0 -0
  37. language/theme-my-login-nl_NL.po +0 -1435
  38. language/theme-my-login-pl_PL.mo +0 -0
  39. language/theme-my-login-pl_PL.po +0 -1435
  40. language/theme-my-login-pt_BR.mo +0 -0
  41. language/theme-my-login-pt_BR.po +0 -1434
  42. language/theme-my-login-pt_PT.mo +0 -0
  43. language/theme-my-login-pt_PT.po +0 -340
admin/class-theme-my-login-admin.php CHANGED
@@ -1,361 +1,196 @@
1
  <?php
2
  /**
3
- * Holds the Theme My Login class
4
  *
5
- * @package Theme My Login
 
6
  */
7
 
8
- if ( !class_exists( 'Theme_My_Login_Admin' ) ) :
9
  /**
10
  * Theme My Login Admin class
11
  *
12
  * @since 6.0
13
  */
14
- class Theme_My_Login_Admin {
15
  /**
16
- * Holds TML menu array
17
  *
18
- * @since 6.0
19
- * @access public
20
- * @var array
21
  */
22
- var $menu;
23
 
24
  /**
25
- * Holds TML submenu array
26
  *
27
- * @since 6.0
28
  * @access public
29
- * @var array
30
  */
31
- var $submenu;
 
 
32
 
33
  /**
34
- * Adds "Theme My Login" to the WordPress "Settings" menu
35
  *
36
- * @since 6.0
37
  * @access public
38
  */
39
- function admin_menu() {
40
- // Create our settings link in the default WP "Settings" menu
41
- add_options_page(
42
- __( 'Theme My Login', 'theme-my-login' ),
43
- __( 'Theme My Login', 'theme-my-login' ),
44
- 'manage_options',
45
- 'theme-my-login',
46
- array( &$this, 'display_settings_page' )
47
- );
48
  }
49
 
50
  /**
51
- * Registers TML settings
52
  *
53
- * This is used because register_setting() isn't available until the "admin_init" hook.
54
- *
55
- * @since 6.0
56
  * @access public
57
  */
58
- function admin_init() {
59
- // Register our settings in the global "whitelist_settings"
60
- register_setting( 'theme_my_login', 'theme_my_login', array( &$this, 'save_settings' ) );
61
 
62
- // Create a hook for modules to use
63
- do_action_ref_array( 'tml_admin_init', array( &$this ) );
64
- }
65
 
66
- /**
67
- * Outputs HTML for module errors
68
- *
69
- * @since 6.0
70
- * @access public
71
- */
72
- function module_errors() {
73
- global $theme_my_login;
74
-
75
- $module_errors = $theme_my_login->options->get_option( 'module_errors' );
76
- // If we have errors to display
77
- if ( $module_errors && current_user_can( 'manage_options' ) ) {
78
- // Display them
79
- echo '<div class="error">';
80
- foreach ( (array) $module_errors as $module => $error ) {
81
- echo '<p><strong>' . sprintf( __( 'ERROR: The module "%1$s" could not be activated (%2$s).', 'theme-my-login' ), $module, $error ) . '</strong></p>';
82
- }
83
- echo '</div>';
84
- // Unset the error array
85
- $theme_my_login->options->delete_option( 'module_errors' );
86
- // Update the options in the DB
87
- $theme_my_login->options->save();
88
- }
89
  }
90
 
91
  /**
92
- * Outputs message to admin to visit settings page after initial plugin activation
93
  *
94
  * @since 6.0
95
  * @access public
96
  */
97
- function initial_nag() {
98
- global $theme_my_login;
99
-
100
- if ( $theme_my_login->options->get_option( 'initial_nag' ) && current_user_can( 'manage_options' ) ) {
101
- echo '<div id="tml-initial-nag" class="updated">';
102
- echo '<p>';
103
- echo '<strong>' . __( 'NOTICE:', 'theme-my-login' ) . '</strong> ';
104
- printf( __( 'Now that you have activated Theme My Login, please <a href="%s">visit the settings page</a> and familiarize yourself with all of the available options.', 'theme-my-login' ), admin_url( 'options-general.php?page=theme-my-login' ) );
105
- echo '</p><p>';
106
- printf( '<a href="%s">' . __( 'Take me to the settings page', 'theme-my-login' ) . '</a>', admin_url( 'options-general.php?page=theme-my-login' ) );
107
- echo '</p></div>';
108
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
109
  }
110
 
111
  /**
112
- * Outputs a random TML usage tip
 
 
113
  *
114
  * @since 6.0
115
  * @access public
116
  */
117
- function did_you_know() {
118
- $tips = apply_filters( 'tml_tips', array(
119
- __( 'You can now login with your e-mail address or username! Try it out!', 'theme-my-login' ),
120
- __( 'Theme My Login now utilizes a module system. Modules are similar to WordPress plugins. Each module extends the default functionality of Theme My Login. <a rel="tml-options" href="#tml-options-modules">Click here</a> to get started with modules now.', 'theme-my-login' ),
121
- __( 'Theme My Login now allows custom forms. You can create your own form template(s) by copying the default version(s) from "theme-my-login/templates" to your current theme directory. Try it out!', 'theme-my-login' ),
122
- __( 'You can maintain your stylesheet changes between upgrades. Just simply copy the file "theme-my-login/theme-my-login.css" to your current theme directory and edit it as you please!', 'theme-my-login' ),
123
- __( 'Theme My Login provides a shortcode that you can use within your posts with multiple parameters to customize the form. Visit the <a href="http://www.jfarthing.com/docs/theme-my-login/shortcode" target="_blank">Theme My Login Documentation</a> for usage instructions.', 'theme-my-login' ),
124
- __( 'Jeff is <a href="http://www.jfarthing.com/hire-me" target="_blank">available for hire</a>!', 'theme-my-login' )
125
- ) );
126
- $key = array_rand( $tips );
127
- echo '<div id="tml-tips" class="updated">';
128
- echo '<p><strong>' . __( 'Did You Know?', 'theme-my-login' ) . '</strong></p>';
129
- echo '<p>' . $tips[$key] . '</p>';
130
- echo '</div>';
131
  }
132
 
133
  /**
134
- * Loads admin styles and scripts
135
  *
136
- * @since 6.0
137
  * @access public
 
 
138
  */
139
- function load_settings_page() {
140
- global $theme_my_login, $user_ID;
141
-
142
- if ( current_user_can( 'manage_options' ) ) {
143
- // Remove initial nag now that the settings page has been visited
144
- if ( $theme_my_login->options->get_option( 'initial_nag' ) ) {
145
- $theme_my_login->options->set_option( 'initial_nag', 0 );
146
- $theme_my_login->options->save();
147
- }
148
- // Show "Did You Know" box
149
- add_action( 'admin_notices', array( &$this, 'did_you_know' ) );
150
- }
151
-
152
- // Flush rewrite rules if slugs have been updated
153
- if ( $theme_my_login->options->get_option( 'flush_rules' ) )
154
- flush_rewrite_rules();
155
-
156
- // Enqueue neccessary scripts and styles
157
- wp_enqueue_style( 'theme-my-login-admin', plugins_url( '/theme-my-login/admin/css/theme-my-login-admin.css' ) );
158
- wp_enqueue_script( 'jquery-shake', plugins_url( '/theme-my-login/admin/js/jquery.shake.js' ), array( 'jquery' ) );
159
- wp_enqueue_script( 'theme-my-login-admin', plugins_url( '/theme-my-login/admin/js/theme-my-login-admin.js' ), array( 'jquery-ui-tabs', 'jquery-shake' ) );
160
-
161
- // Set the correct admin style according to user setting (Only supports default admin schemes)
162
- $admin_color = get_user_meta( $user_ID, 'admin_color', true );
163
- $stylesheet = ( 'classic' == $admin_color ) ? 'colors-classic.css' : 'colors-fresh.css';
164
- wp_enqueue_style( 'theme-my-login-colors-fresh', plugins_url( '/theme-my-login/admin/css/' . $stylesheet ) );
165
  }
166
 
167
  /**
168
- * Outputs the main TML admin
169
  *
170
  * @since 6.0
171
  * @access public
172
  */
173
- function display_settings_page() {
174
- global $wp_rewrite;
175
-
176
- // Default menu
177
- $this->add_menu_page( __('General', 'theme-my-login' ), 'tml-options' );
178
- $this->add_submenu_page( 'tml-options', __( 'Basic', 'theme-my-login' ), 'tml-options-basic', array( &$this, 'display_basic_settings' ) );
179
- $this->add_submenu_page( 'tml-options', __( 'Modules', 'theme-my-login' ), 'tml-options-modules', array( &$this, 'display_module_settings' ) );
180
- if ( $wp_rewrite->using_permalinks() )
181
- $this->add_submenu_page( 'tml-options', __( 'Permalinks', 'theme-my-login' ), 'tml-options-permalinks', array( &$this, 'display_permalink_settings' ) );
182
-
183
- // Allow plugins to add to menu
184
- do_action_ref_array( 'tml_admin_menu', array( &$this ) );
185
  ?>
186
- <div class="wrap">
187
- <?php screen_icon( 'options-general' ); ?>
188
- <h2><?php esc_html_e( 'Theme My Login Settings', 'theme-my-login' ); ?></h2>
189
-
190
- <form action="options.php" method="post">
191
- <?php settings_fields( 'theme_my_login' ); ?>
192
-
193
- <div style="display:none;">
194
- <p><input type="submit" name="submit" value="<?php esc_attr_e( 'Save Changes', 'theme-my-login' ) ?>" /></p>
195
- </div>
196
-
197
- <div id="tml-container">
198
-
199
- <ul>
200
- <?php foreach ( $this->menu as $menu ) {
201
- echo '<li><a href="#' . $menu[1] . '">' . $menu[0] . '</a></li>' . "\n";
202
- } ?>
203
- </ul>
204
-
205
- <?php foreach ( $this->menu as $menu ) {
206
- echo '<div id="' . $menu[1] . '" class="' . $menu[1] . '">' . "\n";
207
- if ( isset( $this->submenu[$menu[1]] ) ) {
208
- echo '<ul>' . "\n";
209
- foreach ( $this->submenu[$menu[1]] as $submenu ) {
210
- echo '<li><a href="#' . $submenu[1] . '">' . $submenu[0] . '</a></li>' . "\n";
211
-
212
-
213
-
214
- }
215
- echo '</ul>' . "\n";
216
-
217
- foreach ( $this->submenu[$menu[1]] as $submenu ) {
218
- echo '<div id="' . $submenu[1] . '" class="' . $menu[1] . '">' . "\n";
219
- if ( has_action( $submenu[2] ) ) {
220
- do_action( 'load-' . $submenu[2] );
221
- call_user_func_array( 'do_action', array_merge( (array) $submenu[2], (array) $submenu[3] ) );
222
- } else {
223
- if ( validate_file( $submenu[1] ) )
224
- return false;
225
-
226
- if ( ! ( file_exists( WP_PLUGIN_DIR . '/' . $submenu[1] ) && is_file( WP_PLUGIN_DIR . '/' . $submenu[1] ) ) )
227
- return false;
228
-
229
- do_action( 'load-' . $submenu[1] );
230
- include ( WP_PLUGIN_DIR . '/' . $submenu[1] );
231
- }
232
- echo '</div>' . "\n";
233
- }
234
- } else {
235
- if ( has_action( $menu[2] ) ) {
236
- do_action( 'load-' . $menu[2] );
237
- call_user_func_array( 'do_action', array_merge( (array) $menu[2], (array) $menu[3] ) );
238
- } else {
239
- if ( validate_file( $menu[1] ) )
240
- return false;
241
-
242
- if ( ! ( file_exists( WP_PLUGIN_DIR . '/' . $menu[1] ) && is_file( WP_PLUGIN_DIR . '/' . $menu[1] ) ) )
243
- return false;
244
-
245
- do_action( 'load-' . $menu[1] );
246
- include ( WP_PLUGIN_DIR . '/' . $menu[1] );
247
- }
248
- }
249
- echo '</div>' . "\n";
250
- } ?>
251
-
252
- </div>
253
-
254
- <p><input type="submit" name="submit" class="button-primary" value="<?php esc_attr_e( 'Save Changes', 'theme-my-login' ) ?>" /></p>
255
- </form>
256
-
257
- </div>
258
- <?php
259
  }
260
 
261
  /**
262
- * Outputs HTML for "Basic" settings tab
263
  *
264
- * @since 6.0
265
  * @access public
266
  */
267
- function display_basic_settings() {
268
- global $theme_my_login; ?>
269
- <table class="form-table">
270
- <tr valign="top">
271
- <th scope="row"><label for="theme_my_login_page_id"><?php _e( 'Page ID', 'theme-my-login' ); ?></label></th>
272
- <td>
273
- <input name="theme_my_login[page_id]" type="text" id="theme_my_login_page_id" value="<?php echo (int) $theme_my_login->options->get_option( 'page_id' ); ?>" class="small-text" />
274
- <p class="description"><?php _e( 'This should be the ID of the WordPress page that includes the [theme-my-login] shortcode. By default, this page is titled "Login".', 'theme-my-login' ); ?></p>
275
- </td>
276
- </tr>
277
- <tr valign="top">
278
- <th scope="row"><?php _e( 'Pagelist', 'theme-my-login' ); ?></th>
279
- <td>
280
- <input name="theme_my_login[show_page]" type="checkbox" id="theme_my_login_show_page" value="1"<?php checked( 1, $theme_my_login->options->get_option( 'show_page' ) ); ?> />
281
- <label for="theme_my_login_show_page"><?php _e( 'Show Page In Pagelist', 'theme-my-login' ); ?></label>
282
- <p class="description"><?php _e( 'Enable this setting to add login/logout links to the pagelist generated by functions like wp_list_pages() and wp_page_menu().', 'theme-my-login' ); ?></p>
283
- </td>
284
- </tr>
285
- <tr valign="top">
286
- <th scope="row"><?php _e( 'Stylesheet', 'theme-my-login' ); ?></th>
287
- <td>
288
- <input name="theme_my_login[enable_css]" type="checkbox" id="theme_my_login_enable_css" value="1"<?php checked( 1, $theme_my_login->options->get_option( 'enable_css' ) ); ?> />
289
- <label for="theme_my_login_enable_css"><?php _e( 'Enable "theme-my-login.css"', 'theme-my-login' ); ?></label>
290
- <p class="description"><?php _e( 'In order to keep changes between upgrades, you can store your customized "theme-my-login.css" in your current theme directory.', 'theme-my-login' ); ?></p>
291
- </td>
292
- </tr>
293
- <tr valign="top">
294
- <th scope="row"><?php _e( 'E-mail Login', 'theme-my-login' ); ?></th>
295
- <td>
296
- <input name="theme_my_login[email_login]" type="checkbox" id="theme_my_login_email_login" value="1"<?php checked( 1, $theme_my_login->options->get_option( 'email_login' ) ); ?> />
297
- <label for="theme_my_login_email_login"><?php _e( 'Enable e-mail address login', 'theme-my-login' ); ?></label>
298
- <p class="description"><?php _e( 'Allows users to login using their e-mail address in place of their username.', 'theme-my-login' ); ?></p>
299
- </td>
300
- </tr>
301
- <?php do_action( 'tml_settings_basic' ); ?>
302
- </table><?php
303
  }
304
 
305
  /**
306
- * Outputs HTML for "Module" settings tab
307
  *
308
- * @since 6.0
309
  * @access public
310
  */
311
- function display_module_settings() {
312
- global $theme_my_login;
313
-
314
- $all_modules = get_plugins( '/' . TML_DIRNAME . '/modules' );
315
- $active_modules = (array) $theme_my_login->options->get_option( 'active_modules' );
316
- ?>
317
- <table class="form-table">
318
- <tr valign="top">
319
- <th scope="row"><?php _e( 'Modules', 'theme-my-login' ); ?></th>
320
- <td>
321
- <?php if ( !empty( $all_modules ) ) : foreach ( $all_modules as $module_file => $module_data ) : ?>
322
- <input name="theme_my_login_modules[]" type="checkbox" id="theme_my_login_modules_<?php echo $module_file; ?>" value="<?php echo $module_file; ?>"<?php checked( 1, in_array( $module_file, (array) $active_modules ) ); ?> />
323
- <label for="theme_my_login_modules_<?php echo $module_file; ?>"><?php printf( __( 'Enable %s', 'theme-my-login' ), $module_data['Name'] ); ?></label><br />
324
- <?php if ( $module_data['Description'] ) echo '<p class="description">' . $module_data['Description'] . '</p>'; ?>
325
- <?php endforeach; else : _e( 'No modules found.', 'theme-my-login' ); endif; ?>
326
- </td>
327
- </tr>
328
- <?php do_action( 'tml_settings_modules' ); ?>
329
- </table>
330
- <?php
331
  }
332
 
333
  /**
334
- * Outputs HTML for "Permalinks" settings tab
335
  *
336
- * @since 6.2
337
  * @access public
338
  */
339
- function display_permalink_settings() {
340
- global $theme_my_login;
341
-
342
- $actions = array(
343
- 'login' => __( 'Login', 'theme-my-login' ),
344
- 'register' => __( 'Register', 'theme-my-login' ),
345
- 'lostpassword' => __( 'Lost Password', 'theme-my-login' )
346
- ); ?>
347
- <table class="form-table">
348
- <?php foreach ( $actions as $action => $label ) : ?>
349
- <tr valign="top">
350
- <th scope="row"><label for="theme_my_login_permalinks_<?php echo $action; ?>"><?php echo $label; ?></label></th>
351
- <td>
352
- <input name="theme_my_login[permalinks][<?php echo $action; ?>]" type="text" id="theme_my_login_permalinks_<?php echo $action; ?>" value="<?php echo $theme_my_login->options->get_option( array( 'permalinks', $action ) ); ?>" class="regular-text" />
353
- <p class="description"><strong><?php _e( 'Permalink:' ); ?></strong> <span id="sample-permalink"><?php echo $theme_my_login->get_login_page_link( compact( 'action' ) ); ?></span></p>
354
- </td>
355
- </tr>
356
- <?php endforeach;
357
- do_action( 'tml_settings_permalinks' ); ?>
358
- </table><?php
359
  }
360
 
361
  /**
@@ -369,311 +204,142 @@ class Theme_My_Login_Admin {
369
  * @param string|array $settings Settings passed in from filter
370
  * @return string|array Sanitized settings
371
  */
372
- function save_settings( $settings ) {
373
- global $theme_my_login;
374
-
375
- // Sanitize new settings
376
- $settings['page_id'] = absint( $settings['page_id'] );
377
- $settings['show_page'] = isset( $settings['show_page'] );
378
- $settings['enable_css'] = isset( $settings['enable_css'] );
379
- $settings['email_login'] = isset( $settings['email_login'] );
380
-
381
- $modules = isset( $_POST['theme_my_login_modules'] ) ? $_POST['theme_my_login_modules'] : array();
382
 
383
  // If we have modules to activate
384
- if ( $activate = array_diff( (array) $modules, (array) $theme_my_login->options->get_option( 'active_modules' ) ) ) {
385
- // Attempt to activate them
386
- $result = $this->activate_modules( $activate );
387
- // Check for WP_Error
388
- if ( is_wp_error( $result ) ) {
389
- // Loop through each module in the WP_Error object
390
- foreach ( $result->get_error_data( 'modules_invalid' ) as $module => $wp_error ) {
391
- // Store the module and error message to a temporary array which will be passed to 'admin_notices'
392
- if ( is_wp_error( $wp_error ) )
393
- $theme_my_login->options->options['module_errors'][$module] = $wp_error->get_error_message();
394
- }
395
  }
396
  }
397
 
398
  // If we have modules to deactivate
399
- if ( $deactivate = array_diff( (array) $theme_my_login->options->get_option( 'active_modules' ), $modules ) ) {
400
- // Deactive them
401
- $this->deactivate_modules( $deactivate );
402
- }
403
-
404
- // Flush permalinks if they have changed
405
- if ( isset( $settings['permalinks'] ) ) {
406
- foreach ( $settings['permalinks'] as $action => $slug ) {
407
- if ( $slug !== $theme_my_login->options->get_option( array( 'permalinks', $action ) ) ) {
408
- $settings['flush_rules'] = true;
409
- break;
410
- }
411
  }
412
  }
413
 
414
- // Merge current settings
415
- $settings = Theme_My_Login::array_merge_recursive( $theme_my_login->options->options, $settings );
416
-
417
- // Allow plugins/modules to add/modify settings
418
- $settings = apply_filters( 'tml_save_settings', $settings );
419
 
420
  return $settings;
421
  }
422
 
423
- /**
424
- * Activates a TML module
425
- *
426
- * @since 6.0
427
- * @access public
428
- *
429
- * @param string $module Module to activate
430
- * @return null|WP_Error True on success, WP_Error on error
431
- */
432
- function activate_module( $module ) {
433
- global $theme_my_login;
434
-
435
- $module = plugin_basename( trim( $module ) );
436
- $valid = $this->validate_module( $module );
437
- if ( is_wp_error( $valid ) )
438
- return $valid;
439
-
440
- $current = (array) $theme_my_login->options->get_option( 'active_modules' );
441
- if ( !$theme_my_login->is_module_active( $module ) ) {
442
- //ob_start();
443
- @include ( TML_ABSPATH . '/modules/' . $module );
444
- $current[] = $module;
445
- sort( $current );
446
- do_action( 'tml_activate_module', trim( $module ) );
447
- $theme_my_login->options->set_option( 'active_modules', $current );
448
- do_action_ref_array( 'tml_activate_' . trim( $module ), array( &$theme_my_login ) );
449
- do_action( 'tml_activated_module', trim( $module ) );
450
- //ob_end_clean();
451
- }
452
- return null;
453
- }
454
-
455
- /**
456
- * Activates one or more TML module(s)
457
- *
458
- * @since 6.0
459
- * @access public
460
- *
461
- * @param string|array $modules Module(s) to activate
462
- * @return bool|WP_Error True on succes, WP_Error on error
463
- */
464
- function activate_modules( $modules ) {
465
- if ( !is_array( $modules ) )
466
- $modules = array( $modules );
467
-
468
- $errors = array();
469
- foreach ( (array) $modules as $module ) {
470
- $result = $this->activate_module( $module );
471
- if ( is_wp_error( $result ) )
472
- $errors[$module] = $result;
473
- }
474
-
475
- if ( !empty( $errors ) )
476
- return new WP_Error( 'modules_invalid', __( 'One of the modules is invalid.', 'theme-my-login' ), $errors );
477
-
478
- return true;
479
- }
480
-
481
- /**
482
- * Deactivates one or more TML module(s)
483
- *
484
- * @since 6.0
485
- * @access public
486
- *
487
- * @param string|array $plugins Module(s) to deactivate
488
- * @param bool $silent If true, prevents calling deactivate hook
489
- */
490
- function deactivate_modules( $modules, $silent = false ) {
491
- global $theme_my_login;
492
-
493
- $current = (array) $theme_my_login->options->get_option( 'active_modules' );
494
-
495
- if ( !is_array( $modules ) )
496
- $modules = array( $modules );
497
-
498
- foreach ( $modules as $module ) {
499
- $module = plugin_basename( $module );
500
- if( !$theme_my_login->is_module_active( $module ) )
501
- continue;
502
-
503
- if ( !$silent )
504
- do_action( 'tml_deactivate_module', trim( $module ) );
505
-
506
- $key = array_search( $module, (array) $current );
507
-
508
- if ( false !== $key )
509
- array_splice( $current, $key, 1 );
510
-
511
- if ( !$silent ) {
512
- do_action_ref_array( 'tml_deactivate_' . trim( $module ), array( &$theme_my_login ) );
513
- do_action( 'tml_deactivated_module', trim( $module ) );
514
- }
515
- }
516
-
517
- $theme_my_login->options->set_option( 'active_modules', $current );
518
- $theme_my_login->options->save();
519
- }
520
-
521
- /**
522
- * Validates a TML module
523
- *
524
- * @since 6.0
525
- * @access public
526
- *
527
- * @param string $module Module path
528
- * @return int|WP_Error 0 on success, WP_Error on failure.
529
- */
530
- function validate_module( $module ) {
531
- if ( validate_file( $module ) )
532
- return new WP_Error( 'module_invalid', __( 'Invalid module path.', 'theme-my-login' ) );
533
- if ( !file_exists( TML_ABSPATH. '/modules/' . $module ) )
534
- return new WP_Error( 'module_not_found', __( 'Module file does not exist.', 'theme-my-login' ) );
535
-
536
- $installed_modules = get_plugins( '/' . TML_DIRNAME . '/modules' );
537
- if ( !isset( $installed_modules[$module] ) )
538
- return new WP_Error( 'no_module_header', __( 'The module does not have a valid header.', 'theme-my-login' ) );
539
- return 0;
540
- }
541
-
542
- /**
543
- * Adds a tab in the TML admin menu
544
- *
545
- * @since 6.0
546
- * @access public
547
- *
548
- * @param string $menu_title The text to be used for the menu
549
- * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu)
550
- * @param callback $function The function to be called to output the content for this page.
551
- * @param array $function_args Arguments to pass in to callback function
552
- * @param int $position The position in the menu order this one should appear
553
- */
554
- function add_menu_page( $menu_title, $menu_slug, $function = '', $function_args = array(), $position = NULL ) {
555
- $menu_slug = plugin_basename( $menu_slug );
556
-
557
- $hookname = get_plugin_page_hookname( $menu_slug, '' );
558
- $hookname = preg_replace( '|[^a-zA-Z0-9_:.]|', '-', $hookname );
559
- if ( !empty( $function ) && !empty( $hookname ) )
560
- add_action( $hookname, $function );
561
-
562
- $new_menu = array( $menu_title, $menu_slug, $hookname, $function_args );
563
-
564
- if ( NULL === $position )
565
- $this->menu[] = $new_menu;
566
- else
567
- $this->menu[$position] = $new_menu;
568
-
569
- return $hookname;
570
- }
571
-
572
- /**
573
- * Adds a subtab to a tab in the TML admin menu
574
- *
575
- * @since 6.0
576
- * @access public
577
- *
578
- * @param string $parent_slug The slug name for the parent menu (or the file name of a standard WordPress admin page)
579
- * @param string $menu_title The text to be used for the menu
580
- * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu)
581
- * @param callback $function The function to be called to output the content for this page.
582
- * @param array $function_args Arguments to pass in to callback function
583
- */
584
- function add_submenu_page( $parent_slug, $menu_title, $menu_slug, $function = '', $function_args = array() ) {
585
- $menu_slug = plugin_basename( $menu_slug );
586
- $parent = plugin_basename( $parent_slug );
587
-
588
- $count = ( isset( $this->submenu[$parent_slug] ) && is_array( $this->submenu[$parent_slug] ) ) ? count( $this->submenu[$parent_slug] ) + 1 : 1;
589
-
590
- $hookname = get_plugin_page_hookname( $parent_slug . '-' . $count, '' );
591
- $hookname = preg_replace( '|[^a-zA-Z0-9_:.]|', '-', $hookname );
592
- if ( !empty( $function ) && !empty( $hookname ) )
593
- add_action( $hookname, $function, 10, count( $function_args ) );
594
-
595
- $this->submenu[$parent_slug][] = array( $menu_title, $menu_slug, $hookname, $function_args );
596
-
597
- return $hookname;
598
- }
599
-
600
  /**
601
  * Wrapper for multisite installation
602
  *
603
  * @since 6.1
604
  * @access public
605
  */
606
- function install() {
607
  global $wpdb;
608
 
609
  if ( is_multisite() ) {
610
  if ( isset( $_GET['networkwide'] ) && ( $_GET['networkwide'] == 1 ) ) {
611
- $blogids = $wpdb->get_col( $wpdb->prepare( "SELECT blog_id FROM $wpdb->blogs" ) );
612
  foreach ( $blogids as $blog_id ) {
613
  switch_to_blog( $blog_id );
614
- Theme_My_Login_Admin::_install();
615
  }
616
  restore_current_blog();
617
  return;
618
  }
619
  }
620
- Theme_My_Login_Admin::_install();
621
  }
622
 
623
  /**
624
  * Installs TML
625
  *
626
  * @since 6.0
627
- * @access private
628
  */
629
- function _install() {
630
- global $theme_my_login;
 
 
 
631
 
632
- // Declare page_id to avoid notices
633
- $page_id = 0;
634
 
635
  // Current version
636
- $version = $theme_my_login->options->get_option( 'version' );
 
 
 
 
 
 
637
 
638
  // 4.4 upgrade
639
  if ( version_compare( $version, '4.4', '<' ) ) {
640
  remove_role( 'denied' );
641
  }
 
642
  // 6.0 upgrade
643
  if ( version_compare( $version, '6.0', '<' ) ) {
644
-
 
 
 
 
645
  }
646
 
647
- // Get existing page ID
648
- $page_id = $theme_my_login->options->get_option( 'page_id' );
 
 
 
 
649
 
650
- // Check if page exists
651
- $page = ( $page_id ) ? get_page( $page_id ) : get_page_by_title( 'Login' );
652
-
653
- // Maybe create login page?
654
- if ( $page ) {
655
- $page_id = $page->ID;
656
- // Make sure the page is not in the trash
657
- if ( 'trash' == $page->post_status )
658
- wp_untrash_post( $page_id );
659
- } else {
660
- $insert = array(
661
- 'post_title' => 'Login',
662
- 'post_status' => 'publish',
663
- 'post_type' => 'page',
664
- 'post_content' => '[theme-my-login]',
665
- 'comment_status' => 'closed',
666
- 'ping_status' => 'closed'
667
- );
668
- $page_id = wp_insert_post( $insert );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
669
  }
670
 
671
- $plugin_data = get_plugin_data( TML_ABSPATH . '/theme-my-login.php' );
672
- $theme_my_login->options->set_option( 'version', $plugin_data['Version'] );
673
- $theme_my_login->options->set_option( 'page_id', (int) $page_id );
674
- $theme_my_login->options->save();
675
 
676
- return $page_id;
 
677
  }
678
 
679
  /**
@@ -682,83 +348,56 @@ class Theme_My_Login_Admin {
682
  * @since 6.1
683
  * @access public
684
  */
685
- function uninstall() {
686
  global $wpdb;
687
 
688
  if ( is_multisite() ) {
689
  if ( isset( $_GET['networkwide'] ) && ( $_GET['networkwide'] == 1 ) ) {
690
- $blogids = $wpdb->get_col( $wpdb->prepare( "SELECT blog_id FROM $wpdb->blogs" ) );
691
  foreach ( $blogids as $blog_id ) {
692
  switch_to_blog( $blog_id );
693
- $this->_uninstall();
694
  }
695
  restore_current_blog();
696
  return;
697
  }
698
  }
699
- Theme_My_Login_Admin::_uninstall();
700
  }
701
 
702
  /**
703
  * Uninstalls TML
704
  *
705
  * @since 6.0
706
- * @access private
707
  */
708
- function _uninstall() {
709
- global $theme_my_login;
710
-
711
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
712
 
713
  // Run module uninstall hooks
714
- $modules = get_plugins( '/' . TML_DIRNAME . '/modules' );
715
  foreach ( array_keys( $modules ) as $module ) {
716
  $module = plugin_basename( trim( $module ) );
717
 
718
- $valid = Theme_My_Login_Admin::validate_module( $module );
719
- if ( is_wp_error( $valid ) )
720
- continue;
721
 
722
- @include ( TML_ABSPATH . '/modules/' . $module );
723
- do_action( 'uninstall_' . trim( $module ) );
724
  }
725
 
726
- // Delete the page
727
- wp_delete_post( $theme_my_login->options->get_option( 'page_id' ) );
 
 
 
 
 
 
728
 
729
  // Delete options
730
  delete_option( 'theme_my_login' );
731
  delete_option( 'widget_theme-my-login' );
732
  }
733
-
734
- /**
735
- * PHP4 style constructor
736
- *
737
- * @since 6.0
738
- * @access public
739
- */
740
- function Theme_My_Login_Admin() {
741
- $this->__construct();
742
- }
743
-
744
- /**
745
- * PHP5 style constructor
746
- *
747
- * @since 6.0
748
- * @access public
749
- */
750
- function __construct() {
751
- add_action( 'admin_init', array( &$this, 'admin_init' ) );
752
- add_action( 'admin_menu', array( &$this, 'admin_menu' ) );
753
- add_action( 'admin_notices', array( &$this, 'module_errors' ) );
754
- add_action( 'admin_notices', array( &$this, 'initial_nag' ) );
755
- add_action( 'load-settings_page_theme-my-login', array( &$this, 'load_settings_page' ) );
756
-
757
- register_activation_hook( TML_ABSPATH . '/theme-my-login.php', array( 'Theme_My_Login_Admin', 'install' ) );
758
- register_uninstall_hook( TML_ABSPATH . '/theme-my-login.php', array( 'Theme_My_Login_Admin', 'uninstall' ) );
759
- }
760
  }
761
-
762
  endif; // Class exists
763
 
764
- ?>
1
  <?php
2
  /**
3
+ * Holds the Theme My Login Admin class
4
  *
5
+ * @package Theme_My_Login
6
+ * @since 6.0
7
  */
8
 
9
+ if ( ! class_exists( 'Theme_My_Login_Admin' ) ) :
10
  /**
11
  * Theme My Login Admin class
12
  *
13
  * @since 6.0
14
  */
15
+ class Theme_My_Login_Admin extends Theme_My_Login_Abstract {
16
  /**
17
+ * Holds options key
18
  *
19
+ * @since 6.3
20
+ * @access protected
21
+ * @var string
22
  */
23
+ protected $options_key = 'theme_my_login';
24
 
25
  /**
26
+ * Returns singleton instance
27
  *
28
+ * @since 6.3
29
  * @access public
30
+ * @return Theme_My_Login
31
  */
32
+ public static function get_object() {
33
+ return parent::get_object( __CLASS__ );
34
+ }
35
 
36
  /**
37
+ * Returns default options
38
  *
39
+ * @since 6.3
40
  * @access public
41
  */
42
+ public static function default_options() {
43
+ return Theme_My_Login::default_options();
 
 
 
 
 
 
 
44
  }
45
 
46
  /**
47
+ * Loads object
48
  *
49
+ * @since 6.3
 
 
50
  * @access public
51
  */
52
+ protected function load() {
53
+ add_action( 'admin_init', array( &$this, 'admin_init' ) );
54
+ add_action( 'admin_menu', array( &$this, 'admin_menu' ), 8 );
55
 
56
+ add_action( 'wp_trash_post', array( &$this, 'wp_trash_post' ) );
57
+ add_action( 'before_delete_post', array( &$this, 'wp_trash_post' ) );
 
58
 
59
+ register_activation_hook( WP_PLUGIN_DIR . '/theme-my-login/theme-my-login.php', array( &$this, 'install' ) );
60
+ register_uninstall_hook( WP_PLUGIN_DIR . '/theme-my-login/theme-my-login.php', array( 'Theme_My_Login_Admin', 'uninstall' ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  }
62
 
63
  /**
64
+ * Builds plugin admin menu and pages
65
  *
66
  * @since 6.0
67
  * @access public
68
  */
69
+ public function admin_menu() {
70
+ add_menu_page(
71
+ __( 'Theme My Login Settings', 'theme-my-login' ),
72
+ __( 'TML', 'theme-my-login' ),
73
+ 'manage_options',
74
+ 'theme_my_login',
75
+ array( 'Theme_My_Login_Admin', 'settings_page' )
76
+ );
77
+
78
+ add_submenu_page(
79
+ 'theme_my_login',
80
+ __( 'General', 'theme-my-login' ),
81
+ __( 'General', 'theme-my-login' ),
82
+ 'manage_options',
83
+ 'theme_my_login',
84
+ array( 'Theme_My_Login_Admin', 'settings_page' )
85
+ );
86
+
87
+ // General section
88
+ add_settings_section( 'general', __( 'General', 'theme-my-login' ), '__return_false', $this->options_key );
89
+ add_settings_section( 'modules', __( 'Modules', 'theme-my-login' ), '__return_false', $this->options_key );
90
+
91
+ // General fields
92
+ add_settings_field( 'enable_css', __( 'Stylesheet', 'theme-my-login' ), array( &$this, 'settings_field_enable_css' ), $this->options_key, 'general' );
93
+ add_settings_field( 'email_login', __( 'E-mail Login', 'theme-my-login' ), array( &$this, 'settings_field_email_login' ), $this->options_key, 'general' );
94
+ add_settings_field( 'modules', __( 'Modules', 'theme-my-login' ), array( &$this, 'settings_field_modules' ), $this->options_key, 'modules' );
95
  }
96
 
97
  /**
98
+ * Registers TML settings
99
+ *
100
+ * This is used because register_setting() isn't available until the "admin_init" hook.
101
  *
102
  * @since 6.0
103
  * @access public
104
  */
105
+ public function admin_init() {
106
+ register_setting( 'theme_my_login', 'theme_my_login', array( &$this, 'save_settings' ) );
 
 
 
 
 
 
 
 
 
 
 
 
107
  }
108
 
109
  /**
110
+ * Don't allow deletion of Login page
111
  *
112
+ * @since 6.3
113
  * @access public
114
+ *
115
+ * @param int $post_id Post ID
116
  */
117
+ public function wp_trash_post( $post_id ) {
118
+ if ( Theme_My_Login::get_page_action( $post_id ) )
119
+ wp_die( __( 'Deleting this page will cause Theme My Login to malfunction. If you really want to delete it, please deactivate Theme My Login.', 'theme-my-login' ), '', array( 'back_link' => true ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
120
  }
121
 
122
  /**
123
+ * Renders the settings page
124
  *
125
  * @since 6.0
126
  * @access public
127
  */
128
+ public static function settings_page( $args = '' ) {
129
+ extract( wp_parse_args( $args, array(
130
+ 'title' => __( 'Theme My Login Settings', 'theme-my-login' ),
131
+ 'options_key' => 'theme_my_login'
132
+ ) ) );
 
 
 
 
 
 
 
133
  ?>
134
+ <div id="<?php echo $options_key; ?>" class="wrap">
135
+ <?php screen_icon( 'options-general' ); ?>
136
+ <h2><?php echo esc_html( $title ); ?></h2>
137
+ <?php settings_errors(); ?>
138
+
139
+ <form method="post" action="options.php">
140
+ <?php
141
+ settings_fields( $options_key );
142
+ do_settings_sections( $options_key );
143
+ submit_button();
144
+ ?>
145
+ </form>
146
+ </div>
147
+ <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
148
  }
149
 
150
  /**
151
+ * Renders Stylesheet settings field
152
  *
153
+ * @since 6.3
154
  * @access public
155
  */
156
+ public function settings_field_enable_css() {
157
+ ?>
158
+ <input name="theme_my_login[enable_css]" type="checkbox" id="theme_my_login_enable_css" value="1"<?php checked( 1, $this->get_option( 'enable_css' ) ); ?> />
159
+ <label for="theme_my_login_enable_css"><?php _e( 'Enable "theme-my-login.css"', 'theme-my-login' ); ?></label>
160
+ <p class="description"><?php _e( 'In order to keep changes between upgrades, you can store your customized "theme-my-login.css" in your current theme directory.', 'theme-my-login' ); ?></p>
161
+ <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
162
  }
163
 
164
  /**
165
+ * Renders E-mail Login settings field
166
  *
167
+ * @since 6.3
168
  * @access public
169
  */
170
+ public function settings_field_email_login() {
171
+ ?>
172
+ <input name="theme_my_login[email_login]" type="checkbox" id="theme_my_login_email_login" value="1"<?php checked( 1, $this->get_option( 'email_login' ) ); ?> />
173
+ <label for="theme_my_login_email_login"><?php _e( 'Enable e-mail address login', 'theme-my-login' ); ?></label>
174
+ <p class="description"><?php _e( 'Allows users to login using their e-mail address in place of their username.', 'theme-my-login' ); ?></p>
175
+ <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
176
  }
177
 
178
  /**
179
+ * Renders Modules settings field
180
  *
181
+ * @since 6.3
182
  * @access public
183
  */
184
+ public function settings_field_modules() {
185
+ foreach ( get_plugins( '/theme-my-login/modules' ) as $path => $data ) {
186
+ $id = sanitize_key( $data['Name'] );
187
+ ?>
188
+ <input name="theme_my_login[active_modules][]" type="checkbox" id="theme_my_login_active_modules_<?php echo $id; ?>" value="<?php echo $path; ?>"<?php checked( in_array( $path, (array) $this->get_option( 'active_modules' ) ) ); ?> />
189
+ <label for="theme_my_login_active_modules_<?php echo $id; ?>"><?php printf( __( 'Enable %s', 'theme-my-login' ), $data['Name'] ); ?></label><br />
190
+ <?php if ( $data['Description'] ) : ?>
191
+ <p class="description"><?php echo $data['Description']; ?></p>
192
+ <?php endif;
193
+ }
 
 
 
 
 
 
 
 
 
 
194
  }
195
 
196
  /**
204
  * @param string|array $settings Settings passed in from filter
205
  * @return string|array Sanitized settings
206
  */
207
+ public function save_settings( $settings ) {
208
+ $settings['enable_css'] = isset( $settings['enable_css'] );
209
+ $settings['email_login'] = isset( $settings['email_login'] );
210
+ $settings['active_modules'] = isset( $settings['active_modules'] ) ? (array) $settings['active_modules'] : array();
 
 
 
 
 
 
211
 
212
  // If we have modules to activate
213
+ if ( $activate = array_diff( $settings['active_modules'], $this->get_option( 'active_modules', array() ) ) ) {
214
+ foreach ( $activate as $module ) {
215
+ if ( file_exists( WP_PLUGIN_DIR . '/theme-my-login/modules/' . $module ) )
216
+ include_once( WP_PLUGIN_DIR . '/theme-my-login/modules/' . $module );
217
+ do_action( 'tml_activate_' . $module );
 
 
 
 
 
 
218
  }
219
  }
220
 
221
  // If we have modules to deactivate
222
+ if ( $deactivate = array_diff( $this->get_option( 'active_modules', array() ), $settings['active_modules'] ) ) {
223
+ foreach ( $deactivate as $module ) {
224
+ do_action( 'tml_deactivate_' . $module );
 
 
 
 
 
 
 
 
 
225
  }
226
  }
227
 
228
+ $settings = wp_parse_args( $settings, $this->get_options() );
 
 
 
 
229
 
230
  return $settings;
231
  }
232
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
233
  /**
234
  * Wrapper for multisite installation
235
  *
236
  * @since 6.1
237
  * @access public
238
  */
239
+ public function install() {
240
  global $wpdb;
241
 
242
  if ( is_multisite() ) {
243
  if ( isset( $_GET['networkwide'] ) && ( $_GET['networkwide'] == 1 ) ) {
244
+ $blogids = $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs" );
245
  foreach ( $blogids as $blog_id ) {
246
  switch_to_blog( $blog_id );
247
+ $this->_install();
248
  }
249
  restore_current_blog();
250
  return;
251
  }
252
  }
253
+ $this->_install();
254
  }
255
 
256
  /**
257
  * Installs TML
258
  *
259
  * @since 6.0
260
+ * @access protected
261
  */
262
+ protected function _install() {
263
+ global $wpdb;
264
+
265
+ // Initialize the plugin
266
+ Theme_My_Login::get_object()->init();
267
 
268
+ // Get plugin data
269
+ $plugin_data = get_plugin_data( WP_PLUGIN_DIR . '/theme-my-login/theme-my-login.php' );
270
 
271
  // Current version
272
+ $version = $this->get_option( 'version', $plugin_data['Version'] );
273
+
274
+ // Get existing page ID
275
+ $page_id = $this->get_option( 'page_id' );
276
+
277
+ // Check if page exists
278
+ $existing_page = ( $page_id ) ? get_page( $page_id ) : get_page_by_title( 'Login' );
279
 
280
  // 4.4 upgrade
281
  if ( version_compare( $version, '4.4', '<' ) ) {
282
  remove_role( 'denied' );
283
  }
284
+
285
  // 6.0 upgrade
286
  if ( version_compare( $version, '6.0', '<' ) ) {
287
+ // Replace shortcode
288
+ if ( $existing_page ) {
289
+ $existing_page->post_content = str_replace( '[theme-my-login-page]', '[theme-my-login]', $existing_page->post_content );
290
+ wp_update_post( $existing_page );
291
+ }
292
  }
293
 
294
+ // 6.3 upgrade
295
+ if ( version_compare( $version, '6.3', '<' ) ) {
296
+ // Delete obsolete options
297
+ $this->delete_option( 'page_id' );
298
+ $this->delete_option( 'initial_nag' );
299
+ $this->delete_option( 'show_in_pagelist' );
300
 
301
+ // Move options to their own rows
302
+ foreach ( $this->get_options() as $key => $value ) {
303
+ if ( in_array( $key, array( 'active_modules' ) ) )
304
+ continue;
305
+
306
+ if ( is_array( $value ) )
307
+ update_option( "theme_my_login_{$key}", $value );
308
+ }
309
+
310
+ // Maybe create login page?
311
+ if ( $existing_page ) {
312
+ // Make sure the page is not in the trash
313
+ if ( 'trash' == $page->post_status )
314
+ wp_untrash_post( $page_id );
315
+
316
+ // Change to new post type
317
+ $wpdb->update( $wpdb->posts, array( 'post_type' => 'tml_page' ), array( 'ID' => $existing_page->ID ) );
318
+
319
+ update_post_meta( $existing_page->ID, '_tml_action', 'login' );
320
+ }
321
+ }
322
+
323
+ // Setup default pages
324
+ foreach ( Theme_My_Login::default_pages() as $action => $title ) {
325
+ if ( ! $page_id = Theme_My_Login::get_page_id( $action ) ) {
326
+ $page_id = wp_insert_post( array(
327
+ 'post_title' => $title,
328
+ 'post_status' => 'publish',
329
+ 'post_type' => 'tml_page',
330
+ 'post_content' => '[theme-my-login]',
331
+ 'comment_status' => 'closed',
332
+ 'ping_status' => 'closed'
333
+ ) );
334
+ update_post_meta( $page_id, '_tml_action', $action );
335
+ }
336
  }
337
 
338
+ $this->set_option( 'version', $plugin_data['Version'] );
339
+ $this->save_options();
 
 
340
 
341
+ // Generate permalinks
342
+ flush_rewrite_rules();
343
  }
344
 
345
  /**
348
  * @since 6.1
349
  * @access public
350
  */
351
+ public static function uninstall() {
352
  global $wpdb;
353
 
354
  if ( is_multisite() ) {
355
  if ( isset( $_GET['networkwide'] ) && ( $_GET['networkwide'] == 1 ) ) {
356
+ $blogids = $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs" );
357
  foreach ( $blogids as $blog_id ) {
358
  switch_to_blog( $blog_id );
359
+ self::_uninstall();
360
  }
361
  restore_current_blog();
362
  return;
363
  }
364
  }
365
+ self::_uninstall();
366
  }
367
 
368
  /**
369
  * Uninstalls TML
370
  *
371
  * @since 6.0
372
+ * @access protected
373
  */
374
+ protected static function _uninstall() {
 
 
375
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
376
 
377
  // Run module uninstall hooks
378
+ $modules = get_plugins( '/theme-my-login/modules' );
379
  foreach ( array_keys( $modules ) as $module ) {
380
  $module = plugin_basename( trim( $module ) );
381
 
382
+ if ( file_exists( WP_PLUGIN_DIR . '/theme-my-login/modules/' . $module ) )
383
+ @include ( WP_PLUGIN_DIR . '/theme-my-login/modules/' . $module );
 
384
 
385
+ do_action( 'tml_uninstall_' . $module );
 
386
  }
387
 
388
+ // Remove delete block
389
+ remove_action( 'wp_trash_post', array( self::get_object(), 'wp_trash_post' ) );
390
+
391
+ // Delete the pages
392
+ $pages = get_posts( array( 'post_type' => 'tml_page', 'post_status' => 'any', 'posts_per_page' => -1 ) );
393
+ foreach ( $pages as $page ) {
394
+ wp_delete_post( $page->ID );
395
+ }
396
 
397
  // Delete options
398
  delete_option( 'theme_my_login' );
399
  delete_option( 'widget_theme-my-login' );
400
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
401
  }
 
402
  endif; // Class exists
403
 
 
admin/css/colors-classic.css DELETED
@@ -1,82 +0,0 @@
1
- .ui-helper-hidden { display: none; }
2
- .ui-helper-hidden-accessible { position: absolute; left: -99999999px; }
3
- .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
4
- .ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
5
- .ui-helper-clearfix { display: inline-block; }
6
- /* required comment for clearfix to work in Opera \*/
7
- * html .ui-helper-clearfix { height:1%; }
8
- .ui-helper-clearfix { display:block; }
9
- /* end clearfix */
10
- .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
11
-
12
- .ui-tabs { padding: 0; zoom: 1; }
13
-
14
- .ui-tabs .ui-tabs-nav, .ui-tabs .ui-tabs-panel .ui-tabs-nav { list-style: none; position: relative; padding: 0; }
15
- .ui-tabs .ui-tabs-nav li, .ui-tabs .ui-tabs-panel .ui-tabs-nav li { position: relative; float: left; margin: 0; padding: 0; }
16
- .ui-tabs .ui-tabs-nav li a, .ui-tabs .ui-tabs-panel .ui-tabs-nav li a { float: left; text-decoration: none; padding: .4em 1em; }
17
- .ui-tabs .ui-tabs-panel, .ui-tabs .ui-tabs-panel .ui-tabs-panel { padding: 0 0 1em 0; display: block; border: none; }
18
- .ui-tabs .ui-tabs-panel .ui-tabs-panel { padding: 10px; }
19
- .ui-tabs .ui-tabs-hide, .ui-tabs .ui-tabs-panel .ui-tabs-hide { display: none !important; }
20
-
21
- .ui-widget-content {
22
- border: 1px solid #d0dfe9;
23
- background: #ffffff;
24
- }
25
-
26
- .ui-widget-content .ui-widget-header {
27
- border-bottom: 1px solid #d0dfe9;
28
- background: #eaf3fa;
29
- font: bold 13px sans-serif;
30
- }
31
- .ui-widget-content .ui-widget-content .ui-widget-header {
32
- border-bottom: 1px solid #e5e5e5;
33
- background: #f9f9f9;
34
- font: normal 11px sans-serif;
35
- }
36
-
37
- .ui-widget-content .ui-state-default {
38
- border-left: 1px solid #fff;
39
- border-right: 1px solid #cae6ff;
40
- background: transparent;
41
- outline: none;
42
- }
43
-
44
- .ui-widget-content .ui-widget-content .ui-state-default,
45
- .ui-widget-content .ui-widget-content .ui-state-hover,
46
- .ui-widget-content .ui-widget-content .ui-state-focus,
47
- .ui-widget-content .ui-widget-content .ui-state-active {
48
- border: 0;
49
- background: none;
50
- }
51
-
52
- .ui-widget-content .ui-state-active {
53
- border-left: 1px solid #5a8fad;
54
- border-right: 1px solid #5589aa;
55
- background-color: #5589AA; /* Fallback */
56
- background-image: -ms-linear-gradient(bottom, #5589AA, #619bbb); /* IE10 */
57
- background-image: -moz-linear-gradient(bottom, #5589AA, #619bbb); /* Firefox */
58
- background-image: -o-linear-gradient(bottom, #5589AA, #619bbb); /* Opera */
59
- background-image: -webkit-gradient(linear, left bottom, left top, from(#5589AA), to(#619bbb)); /* old Webkit */
60
- background-image: -webkit-linear-gradient(bottom, #5589AA, #619bbb); /* new Webkit */
61
- background-image: linear-gradient(bottom, #5589AA, #619bbb); /* proposed W3C Markup */
62
- outline: none;
63
- text-shadow: 0 -1px 0 #333;
64
- }
65
-
66
- .ui-widget-content .ui-state-active a,
67
- .ui-widget-content .ui-state-active a:link,
68
- .ui-widget-content .ui-state-active a:visited,
69
- .ui-widget-content .ui-state-active a:hover {
70
- color: #ffffff;
71
- outline: none;
72
- text-decoration: none;
73
- }
74
-
75
- .ui-widget-content .ui-widget-content .ui-state-active a,
76
- .ui-widget-content .ui-widget-content .ui-state-active a:link,
77
- .ui-widget-content .ui-widget-content .ui-state-active a:visited {
78
- color: #212121;
79
- outline: none;
80
- font-weight: bold;
81
- text-shadow: none;
82
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/css/colors-fresh.css DELETED
@@ -1,82 +0,0 @@
1
- .ui-helper-hidden { display: none; }
2
- .ui-helper-hidden-accessible { position: absolute; left: -99999999px; }
3
- .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
4
- .ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
5
- .ui-helper-clearfix { display: inline-block; }
6
- /* required comment for clearfix to work in Opera \*/
7
- * html .ui-helper-clearfix { height:1%; }
8
- .ui-helper-clearfix { display:block; }
9
- /* end clearfix */
10
- .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
11
-
12
- .ui-tabs { padding: 0; zoom: 1; }
13
-
14
- .ui-tabs .ui-tabs-nav, .ui-tabs .ui-tabs-panel .ui-tabs-nav { list-style: none; position: relative; padding: 0; }
15
- .ui-tabs .ui-tabs-nav li, .ui-tabs .ui-tabs-panel .ui-tabs-nav li { position: relative; float: left; margin: 0; padding: 0; }
16
- .ui-tabs .ui-tabs-nav li a, .ui-tabs .ui-tabs-panel .ui-tabs-nav li a { float: left; text-decoration: none; padding: .4em 1em; }
17
- .ui-tabs .ui-tabs-panel, .ui-tabs .ui-tabs-panel .ui-tabs-panel { padding: 0 0 1em 0; display: block; border: none; }
18
- .ui-tabs .ui-tabs-panel .ui-tabs-panel { padding: 10px; }
19
- .ui-tabs .ui-tabs-hide, .ui-tabs .ui-tabs-panel .ui-tabs-hide { display: none !important; }
20
-
21
- .ui-widget-content {
22
- border: 1px solid #cfcfcf;
23
- background: #ffffff;
24
- }
25
-
26
- .ui-widget-content .ui-widget-header {
27
- border-bottom: 1px solid #cfcfcf;
28
- background: #ececec;
29
- font: bold 13px sans-serif;
30
- }
31
- .ui-widget-content .ui-widget-content .ui-widget-header {
32
- border-bottom: 1px solid #e5e5e5;
33
- background: #f9f9f9;
34
- font: normal 11px sans-serif;
35
- }
36
-
37
- .ui-widget-content .ui-state-default {
38
- border-left: 1px solid #f9f9f9;
39
- border-right: 1px solid #dfdfdf;
40
- background: transparent;
41
- outline: none;
42
- }
43
-
44
- .ui-widget-content .ui-widget-content .ui-state-default,
45
- .ui-widget-content .ui-widget-content .ui-state-hover,
46
- .ui-widget-content .ui-widget-content .ui-state-focus,
47
- .ui-widget-content .ui-widget-content .ui-state-active {
48
- border: 0;
49
- background: none;
50
- }
51
-
52
- .ui-widget-content .ui-state-active {
53
- border-left: 1px solid #808080;
54
- border-right: 1px solid #6d6d6d;
55
- background-color: #777; /* Fallback */
56
- background-image: -ms-linear-gradient(bottom, #6d6d6d, #808080); /* IE10 */
57
- background-image: -moz-linear-gradient(bottom, #6d6d6d, #808080); /* Firefox */
58
- background-image: -o-linear-gradient(bottom, #6d6d6d, #808080); /* Opera */
59
- background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080)); /* old Webkit */
60
- background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080); /* new Webkit */
61
- background-image: linear-gradient(bottom, #6d6d6d, #808080); /* proposed W3C Markup */
62
- outline: none;
63
- text-shadow: 0 -1px 0 #333;
64
- }
65
-
66
- .ui-widget-content .ui-state-active a,
67
- .ui-widget-content .ui-state-active a:link,
68
- .ui-widget-content .ui-state-active a:visited,
69
- .ui-widget-content .ui-state-active a:hover {
70
- color: #ffffff;
71
- outline: none;
72
- text-decoration: none;
73
- }
74
-
75
- .ui-widget-content .ui-widget-content .ui-state-active a,
76
- .ui-widget-content .ui-widget-content .ui-state-active a:link,
77
- .ui-widget-content .ui-widget-content .ui-state-active a:visited {
78
- color: #212121;
79
- outline: none;
80
- font-weight: bold;
81
- text-shadow: none;
82
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/css/theme-my-login-admin.css DELETED
@@ -1,14 +0,0 @@
1
- #tml-container { margin: 20px 0 5px 0; font-size: 12px; }
2
-
3
- #tml-container table th { width: 125px; }
4
-
5
- #tml-container table h3 { margin: 5px 0; font: normal 18px "HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif; }
6
-
7
- #tml-container table input.regular-text { width: 25em; }
8
- #tml-container table input.extended-text { width: 40em; }
9
- #tml-container table input.full-text { width: 99%; }
10
- #tml-container table input.small-text { width: 50px; }
11
-
12
- #tml-container div div { font-size: 1em; }
13
-
14
- #tml-tips { background:#f0f8ff; border:1px solid #addae6; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/js/jquery.shake.js DELETED
@@ -1,18 +0,0 @@
1
- jQuery.fn.shake = function( speed, loop ) {
2
- if ( !speed || speed <= 0 )
3
- speed = 1000;
4
- if ( !loop || loop <= 0 )
5
- loop = 5;
6
-
7
- this.each( function() {
8
- jQuery(this).css( { position: 'relative' } );
9
- var origLeft = parseInt( jQuery(this).css( "left" ), 10 );
10
- for ( var x = 1; x <= loop; x++ ) {
11
- jQuery(this)
12
- .animate( { left: origLeft - 10 }, ( ( ( speed / 4 ) / 4 ) ) )
13
- .animate( { left: origLeft + 10 }, ( ( speed / 4 ) / 2 ) )
14
- .animate( { left: origLeft }, ( ( ( speed / 4 ) / 4 ) ) );
15
- }
16
- } );
17
- return this;
18
- };
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/js/theme-my-login-admin.js DELETED
@@ -1,30 +0,0 @@
1
- jQuery(document).ready(function($){
2
-
3
- $("#tml-container").tabs({
4
- select: function(event, ui) {
5
- setUserSetting( 'tml0', ui.index );
6
- },
7
- selected: getUserSetting( 'tml0', 0 )
8
- });
9
-
10
- $("#tml-container div").tabs({
11
- select: function(event, ui) {
12
- setUserSetting( 'tml1', ui.index );
13
- },
14
- selected: getUserSetting( 'tml1', 0 )
15
- });
16
-
17
- $("#tml-tips").shake( 500 );
18
- $("#tml-tips a").click(function() {
19
- var menu = $(this).attr( 'rel' );
20
- var submenu = $(this).attr( 'href' );
21
- var target = $(this).attr( 'target' );
22
- if ( '_blank' == target )
23
- return true;
24
- if ( '' != menu )
25
- $("#tml-container").tabs( 'select', '#' . menu );
26
- if ( '' != submenu )
27
- $("#tml-container div").tabs( 'select', submenu );
28
- return false;
29
- });
30
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/class-plugin-options.php DELETED
@@ -1,146 +0,0 @@
1
- <?php
2
- /**
3
- * Holds generic plugin options class
4
- *
5
- * @package Plugin Options
6
- */
7
-
8
- if ( !class_exists( 'WDBJ_Plugin_Options' ) ) :
9
- /**
10
- * Plugin options class
11
- *
12
- * This class holds properties and methods common to plugin options.
13
- *
14
- * @since 0.1
15
- */
16
- class WDBJ_Plugin_Options {
17
- /**
18
- * Holds options
19
- *
20
- * @since 0.1
21
- * @access public
22
- * @var array
23
- */
24
- var $options = array();
25
-
26
- /**
27
- * Holds options key
28
- *
29
- * @since 0.1
30
- * @access public
31
- * @var string
32
- */
33
- var $db_key = '';
34
-
35
- /**
36
- * Loads options from DB
37
- *
38
- * @since 0.1
39
- * @access public
40
- */
41
- function load( $options = '' ) {
42
-
43
- if ( !empty( $options ) )
44
- $this->options = (array) $options;
45
-
46
- $options = get_option( $this->db_key );
47
-
48
- if ( is_array( $options ) ) {
49
- $this->options = array_merge( $this->options, $options );
50
- } else {
51
- update_option( $this->db_key, $this->options );
52
- }
53
- }
54
-
55
- /**
56
- * Saves options to DB
57
- *
58
- * @since 0.1
59
- * @access public
60
- */
61
- function save() {
62
- $options = get_option( $this->db_key );
63
- if ( $options !== $this->options )
64
- update_option( $this->db_key, $this->options );
65
- }
66
-
67
- /**
68
- * Retrieves an option
69
- *
70
- * @since 0.1
71
- * @access public
72
- *
73
- * @param string|array $option Name of option to retrieve or an array of hierarchy for multidimensional options
74
- * @param mixed $default Default value to return if $option is not set
75
- * @return mixed Value of requested option or $default if option is not set
76
- */
77
- function get_option( $option, $default = false ) {
78
- $options = $this->options;
79
- $value = false;
80
- if ( is_array( $option ) ) {
81
- foreach ( $option as $_option ) {
82
- if ( !isset( $options[$_option] ) ) {
83
- $value = $default;
84
- break;
85
- }
86
- $options = $value = $options[$_option];
87
- }
88
- } else {
89
- $value = isset( $options[$option] ) ? $options[$option] : $default;
90
- }
91
- return apply_filters( $this->db_key . '_get_option', $value, $option, $default );
92
- }
93
-
94
- /**
95
- * Sets an option
96
- *
97
- * @since 0.1
98
- * @access public
99
- *
100
- * @param string $option Name of option to set or an array of hierarchy for multidimensional options
101
- * @param mixed $value Value of new option
102
- */
103
- function set_option( $option, $value = '' ) {
104
- if ( is_array( $option ) ) {
105
- $options = $this->options;
106
- $last = array_pop( $option );
107
- foreach ( $option as $_option ) {
108
- if ( !isset( $options[$_option] ) )
109
- $options[$_option] = array();
110
- $options = $options[$_option];
111
- }
112
- $options[$last] = $value;
113
- $this->options = array_merge( $this->options, $options );
114
- } else {
115
- $this->options[$option] = apply_filters( $this->db_key . '_set_option', $value, $option );
116
- }
117
- }
118
-
119
- /**
120
- * Deletes an option
121
- *
122
- * @since 0.1
123
- * @access public
124
- *
125
- * @param string $option Name of option to delete
126
- * @param bool $save True will save to DB
127
- */
128
- function delete_option( $option, $save = false ) {
129
- if ( isset( $this->options[$option] ) )
130
- unset( $this->options[$option] );
131
- }
132
-
133
- /**
134
- * PHP4 style constructor
135
- *
136
- * @since 0.1
137
- * @access public
138
- */
139
- function WDBJ_Plugin_Options( $db_key, $options = '' ) {
140
- $this->db_key = sanitize_user( $db_key );
141
- if ( !empty( $options ) )
142
- $this->load( $options );
143
- }
144
- }
145
-
146
- endif; // Class exists
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/class-theme-my-login-abstract.php ADDED
@@ -0,0 +1,252 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Holds the Theme My Login Abstract class
4
+ *
5
+ * @package Theme_My_Login
6
+ */
7
+
8
+ if ( ! class_exists( 'Theme_My_Login_Abstract' ) ) :
9
+ /*
10
+ * Theme My Login Abstract class
11
+ *
12
+ * This class is the base class to be extended.
13
+ *
14
+ * @since 6.0
15
+ */
16
+ abstract class Theme_My_Login_Abstract {
17
+ /**
18
+ * Holds singleton objects
19
+ *
20
+ * @since 6.3
21
+ * @access private
22
+ * @var array
23
+ */
24
+ private static $objects = array();
25
+
26
+ /**
27
+ * Holds options key
28
+ *
29
+ * @since 6.3
30
+ * @access protected
31
+ * @var string
32
+ */
33
+ protected $options_key;
34
+
35
+ /**
36
+ * Holds options array
37
+ *
38
+ * Extending classes should explicity define options here
39
+ * or create a method named default_options() which returns
40
+ * an array of options.
41
+ *
42
+ * @since 6.3
43
+ * @access protected
44
+ * @var object
45
+ */
46
+ protected $options = array();
47
+
48
+ /**
49
+ * Constructor
50
+ *
51
+ * @since 6.3
52
+ * @access private
53
+ */
54
+ private function __construct() {
55
+ $this->load_options();
56
+ $this->load();
57
+ }
58
+
59
+ /**
60
+ * Clone
61
+ *
62
+ * @since 6.3
63
+ * @access private
64
+ */
65
+ private function __clone() {}
66
+
67
+ /**
68
+ * Returns singleton instance
69
+ *
70
+ * @since 6.3
71
+ * @access public
72
+ *
73
+ * @param string $class Class to instantiate
74
+ * @return object Instance of $class
75
+ */
76
+ public static function get_object( $class ) {
77
+ if ( ! isset( self::$objects[$class] ) )
78
+ self::$objects[$class] = new $class;
79
+ return self::$objects[$class];
80
+ }
81
+
82
+ /**
83
+ * Called when object is constructed
84
+ *
85
+ * @since 6.3
86
+ * @access protected
87
+ */
88
+ protected function load() {
89
+ // This should be overridden by a child class
90
+ }
91
+
92
+ /**
93
+ * Loads options from DB
94
+ *
95
+ * @since 6.3
96
+ * @access public
97
+ *
98
+ * @param array|string
99
+ */
100
+ public function load_options() {
101
+ if ( method_exists( $this, 'default_options' ) )
102
+ $this->options = (array) $this->default_options();
103
+
104
+ if ( ! $this->options_key )
105
+ return;
106
+
107
+ $options = get_option( $this->options_key, array() );
108
+ $options = wp_parse_args( $options, $this->options );
109
+
110
+ $this->options = $options;
111
+ }
112
+
113
+ /**
114
+ * Saves options to DB
115
+ *
116
+ * @since 6.3
117
+ * @access public
118
+ */
119
+ public function save_options() {
120
+ if ( $this->options_key )
121
+ update_option( $this->options_key, $this->options );
122
+ }
123
+
124
+ /**
125
+ * Retrieves an option
126
+ *
127
+ * @since 6.3
128
+ * @access public
129
+ *
130
+ * @param string|array $option Name of option to retrieve or an array of hierarchy for multidimensional options
131
+ * @param mixed $default Default value to return if $option is not set
132
+ * @return mixed Value of requested option or $default if option is not set
133
+ */
134
+ public function get_option( $option, $default = false ) {
135
+ if ( ! is_array( $option ) )
136
+ $option = array( $option );
137
+ return self::_get_option( $option, $default, $this->options );
138
+ }
139
+
140
+ /**
141
+ * Recursively retrieves a multidimensional option
142
+ *
143
+ * @since 6.3
144
+ * @access private
145
+ *
146
+ * @param array $option Array of hierarchy
147
+ * @param mixed $default Default value to return
148
+ * @param array Options to search
149
+ * @return mixed Value of requested option or $default if option is not set
150
+ */
151
+ private function _get_option( $option, $default, &$options ) {
152
+ $key = array_shift( $option );
153
+ if ( ! isset( $options[$key] ) )
154
+ return $default;
155
+ if ( ! empty( $option ) )
156
+ return self::_get_option( $option, $default, $options[$key] );
157
+ return $options[$key];
158
+ }
159
+
160
+ /**
161
+ * Retrieves all options
162
+ *
163
+ * @since 6.3
164
+ * @access public
165
+ *
166
+ * @return array Options
167
+ */
168
+ public function get_options() {
169
+ return $this->options;
170
+ }
171
+
172
+ /**
173
+ * Sets an option
174
+ *
175
+ * @since 6.3
176
+ * @access public
177
+ *
178
+ * @param string $option Name of option to set or an array of hierarchy for multidimensional options
179
+ * @param mixed $value Value of new option
180
+ */
181
+ public function set_option( $option, $value = '' ) {
182
+ if ( ! is_array( $option ) )
183
+ $option = array( $option );
184
+
185
+ self::_set_option( $option, $value, $this->options );
186
+ }
187
+
188
+ /**
189
+ * Recursively sets a multidimensional option
190
+ *
191
+ * @since 6.3
192
+ * @access private
193
+ *
194
+ * @param array $option Array of hierarchy
195
+ * @param mixed $value Value of new option
196
+ * @param array $options Options to update
197
+ */
198
+ private function _set_option( $option, $value, &$options ) {
199
+ $key = array_shift( $option );
200
+ if ( ! empty( $option ) ) {
201
+ if ( ! isset( $options[$key] ) )
202
+ $options[$key] = array();
203
+ return self::_set_option( $option, $value, $options[$key] );
204
+ }
205
+ $options[$key] = $value;
206
+ }
207
+
208
+ /**
209
+ * Sets all options
210
+ *
211
+ * @since 6.3
212
+ * @access public
213
+ *
214
+ * @param array $options Options array
215
+ */
216
+ public function set_options( $options ) {
217
+ $this->options = (array) $options;
218
+ }
219
+
220
+ /**
221
+ * Deletes an option
222
+ *
223
+ * @since 6.3
224
+ * @access public
225
+ *
226
+ * @param string $option Name of option to delete
227
+ */
228
+ public function delete_option( $option ) {
229
+ if ( ! is_array( $option ) )
230
+ $option = array( $option );
231
+
232
+ self::_delete_option( $option, $this->options );
233
+ }
234
+
235
+ /**
236
+ * Recursively finds and deletes a multidimensional option
237
+ *
238
+ * @since 6.3
239
+ * @access private
240
+ *
241
+ * @param array $option Array of hierarchy
242
+ * @param array $options Options to update
243
+ */
244
+ private function _delete_option( $option, &$options ) {
245
+ $key = array_shift( $option );
246
+ if ( ! empty( $option ) )
247
+ return self::_delete_option( $option, $options[$key] );
248
+ unset( $options[$key] );
249
+ }
250
+ }
251
+ endif;
252
+
includes/class-theme-my-login-common.php ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Holds the Theme My Login Common class
4
+ *
5
+ * @package Theme_My_Login
6
+ * @since 6.3
7
+ */
8
+
9
+ if ( ! class_exists( 'Theme_My_Login_Common' ) ) :
10
+ /*
11
+ * Theme My Login Helper class
12
+ *
13
+ * This class holds methods common to being common.
14
+ *
15
+ * @since 6.3
16
+ */
17
+ class Theme_My_Login_Common {
18
+ /**
19
+ * Returns current URL
20
+ *
21
+ * @since 6.3
22
+ * @access public
23
+ *
24
+ * @param string $query Optionally append query to the current URL
25
+ * @return string URL with optional path appended
26
+ */
27
+ public static function get_current_url( $query = '' ) {
28
+ $url = remove_query_arg( array( 'instance', 'action', 'checkemail', 'error', 'loggedout', 'registered', 'redirect_to', 'updated', 'key', '_wpnonce', 'reauth', 'login', 'updated' ) );
29
+
30
+ if ( ! empty( $_REQUEST['instance'] ) )
31
+ $url = add_query_arg( 'instance', $_REQUEST['instance'] );
32
+
33
+ if ( ! empty( $query ) ) {
34
+ $r = wp_parse_args( $query );
35
+ foreach ( $r as $k => $v ) {
36
+ if ( strpos( $v, ' ' ) !== false )
37
+ $r[$k] = rawurlencode( $v );
38
+ }
39
+ $url = add_query_arg( $r, $url );
40
+ }
41
+ return $url;
42
+ }
43
+
44
+ /**
45
+ * Merges arrays recursively, replacing duplicate string keys
46
+ *
47
+ * @since 6.3
48
+ * @access public
49
+ */
50
+ public static function array_merge_recursive() {
51
+ $args = func_get_args();
52
+
53
+ $result = array_shift( $args );
54
+
55
+ foreach ( $args as $arg ) {
56
+ foreach ( $arg as $key => $value ) {
57
+ // Renumber numeric keys as array_merge() does.
58
+ if ( is_numeric( $key ) ) {
59
+ if ( ! in_array( $value, $result ) )
60
+ $result[] = $value;
61
+ }
62
+ // Recurse only when both values are arrays.
63
+ elseif ( array_key_exists( $key, $result ) && is_array( $result[$key] ) && is_array( $value ) ) {
64
+ $result[$key] = self::array_merge_recursive( $result[$key], $value );
65
+ }
66
+ // Otherwise, use the latter value.
67
+ else {
68
+ $result[$key] = $value;
69
+ }
70
+ }
71
+ }
72
+ return $result;
73
+ }
74
+
75
+ /**
76
+ * Replaces certain user and blog variables in $input string
77
+ *
78
+ * @since 6.0
79
+ * @access public
80
+ *
81
+ * @param string $input The input string
82
+ * @param int $user_id User ID to replace user specific variables
83
+ * @param array $replacements Misc variables => values replacements
84
+ * @return string The $input string with variables replaced
85
+ */
86
+ public static function replace_vars( $input, $user_id = '', $replacements = array() ) {
87
+ $defaults = array(
88
+ '%site_url%' => get_bloginfo( 'url' ),
89
+ '%user_ip%' => $_SERVER['REMOTE_ADDR']
90
+ );
91
+ $replacements = wp_parse_args( $replacements, $defaults );
92
+
93
+ // Get user data
94
+ $user = false;
95
+ if ( $user_id )
96
+ $user = get_user_by( 'id', $user_id );
97
+
98
+ // Get all matches ($matches[0] will be '%value%'; $matches[1] will be 'value')
99
+ preg_match_all( '/%([a-zA-Z0-9-_]*)%/', $input, $matches );
100
+
101
+ // Iterate through matches
102
+ foreach ( $matches[0] as $key => $match ) {
103
+ if ( ! isset( $replacements[$match] ) ) {
104
+ if ( $user && isset( $user->{$matches[1][$key]} ) ) // Replacement from WP_User object
105
+ $replacements[$match] = $user->{$matches[1][$key]};
106
+ else
107
+ $replacements[$match] = get_bloginfo( $matches[1][$key] ); // Replacement from get_bloginfo()
108
+ }
109
+ }
110
+
111
+ // Allow replacements to be filtered
112
+ $replacements = apply_filters( 'tml_replace_vars', $replacements, $user_id );
113
+
114
+ if ( empty( $replacements ) )
115
+ return $input;
116
+
117
+ // Get search values
118
+ $search = array_keys( $replacements );
119
+
120
+ // Get replacement values
121
+ $replace = array_values( $replacements );
122
+
123
+ return str_replace( $search, $replace, $input );
124
+ }
125
+ }
126
+ endif; // Class exists
127
+
includes/class-theme-my-login-debug.php DELETED
@@ -1,196 +0,0 @@
1
- <?php
2
- /**
3
- * Holds the Theme My Login debug class
4
- *
5
- * @package Theme My Login
6
- * @subpackage Debug
7
- */
8
-
9
- if ( !class_exists( 'Theme_My_Login_Debug' ) ) :
10
- /**
11
- * Theme My Login Debug class
12
- *
13
- * @since 6.0
14
- */
15
- class Theme_My_Login_Debug {
16
- /**
17
- * Holds memory usage at construct
18
- *
19
- * @since 6.0
20
- * @access public
21
- * @var int
22
- */
23
- var $initial_memory = 0;
24
-
25
- /**
26
- * Holds memory usage at each major hook
27
- *
28
- * @since 6.0
29
- * @access public
30
- * @var array
31
- */
32
- var $hook_usage = array();
33
-
34
- /**
35
- * Holds array of which hooks to record
36
- *
37
- * @since 6.0
38
- * @access public
39
- * @var array
40
- */
41
- var $core_hooks = array();
42
-
43
- /**
44
- * Records current memory usage at specific hooks
45
- *
46
- * @since 6.0
47
- * @access public
48
- */
49
- function record_memory_usage() {
50
- $current_filter = current_filter();
51
- if ( in_array( $current_filter, $this->core_hooks ) || substr( $current_filter, 0, 4 ) == 'tml_' )
52
- $this->core_hook_usage[$current_filter] = memory_get_usage();
53
- }
54
-
55
- /**
56
- * Outputs memory usage
57
- *
58
- * @since 6.0
59
- * @access public
60
- */
61
- function dump_memory_usage() {
62
- echo '<h2>Memory Usage Summary</h2>' . "\n";
63
- echo '<ul>' . "\n";
64
- echo '<li><strong>Initial Usage</strong>: ' . $this->num_bytes_to_string( $this->initial_memory ) . '</li>' . "\n";
65
- echo '<li><strong>Peak Usage</strong>: ' . $this->num_bytes_to_string( memory_get_peak_usage() ) . '</li>' . "\n";
66
- echo '<li><strong>End Usage</strong>: ' . $this->num_bytes_to_string( memory_get_usage() ) . '</li>' . "\n";
67
- echo '</ul>';
68
-
69
- echo '<h2>Memory Usage by Hook</h2>' . "\n";
70
- echo '<ul>' . "\n";
71
- foreach ( $this->core_hook_usage as $hook => $memory ) {
72
- echo '<li><strong>' . $hook . '</strong>: ' . $this->num_bytes_to_string( $memory ) . '</li>' . "\n";
73
- }
74
- echo '</ul>' . "\n";
75
- }
76
-
77
- /**
78
- * Converts a shorthand string representation (ie. 3.2M) to a numerical byte value
79
- *
80
- * @since 6.0
81
- * @access public
82
- *
83
- * @param string $value Shorthand notation
84
- * @return int Value in bytes
85
- */
86
- function string_to_num_bytes( $value ) {
87
- if ( is_numeric( $value ) ) {
88
- return $value;
89
- } else {
90
- $qty = substr( $value, 0, strlen( $value ) - 1 );
91
- $unit = strtolower( substr( $value, -1 ) );
92
- switch ( $unit ) {
93
- case 'k':
94
- $qty *= 1024;
95
- break;
96
- case 'm':
97
- $qty *= pow( 1024, 2 );
98
- break;
99
- case 'g':
100
- $qty *= pow( 1024, 3 );
101
- break;
102
- default:
103
- $qty = intval( $qty );
104
- }
105
- return $qty;
106
- }
107
- }
108
-
109
- /**
110
- * Converts a numerical byte value to a shorthand string representation (ie. 3.2M)
111
- *
112
- * @since 6.0
113
- * @access public
114
- *
115
- * @param int $value Number of bytes
116
- * @param string $unit Can either be K for kilobytes, M for megabytes or G for gigabytes
117
- * @return string Shorthand notation from the given value and unit
118
- */
119
- function num_bytes_to_string( $value, $unit = 'm' ) {
120
- if ( !is_numeric( $value ) )
121
- $value = $this->string_to_num_bytes( $value );
122
- switch ( $unit ) {
123
- case 'k':
124
- $value /= 1024;
125
- break;
126
- case 'm':
127
- $value /= pow( 1024, 2 );
128
- break;
129
- case 'g':
130
- $value /= pow( 1024, 3);
131
- break;
132
- }
133
- $value = number_format( $value, 2 );
134
- $unit = strtoupper( $unit );
135
- return $value . $unit;
136
- }
137
-
138
- /**
139
- * PHP4 style constructor
140
- *
141
- * @since 6.0
142
- * @access public
143
- */
144
- function Theme_My_Login_Debug() {
145
- $this->__construct();
146
- }
147
-
148
- /**
149
- * PHP5 style constructor
150
- *
151
- * @since 6.0
152
- * @access public
153
- */
154
- function __construct() {
155
- $this->initial_memory = memory_get_usage();
156
- $this->core_hooks = array(
157
- 'muplugins_loaded',
158
- 'load_textdomain',
159
- 'update_option',
160
- 'plugins_loaded',
161
- 'sanitize_comment_cookies',
162
- 'setup_theme',
163
- 'auth_cookie_malformed',
164
- 'set_current_user',
165
- 'init',
166
- 'widgets_init',
167
- 'parse_request',
168
- 'send_headers',
169
- 'pre_get_posts',
170
- 'posts_selection',
171
- 'wp',
172
- 'template_redirect',
173
- 'get_header',
174
- 'wp_head',
175
- 'wp_enqueue_scripts',
176
- 'wp_print_styles',
177
- 'wp_print_scripts',
178
- 'loop_start',
179
- 'the_post',
180
- 'loop_end',
181
- 'get_footer',
182
- 'wp_footer',
183
- 'wp_print_footer_scripts'
184
- );
185
- add_action( 'plugins_loaded', array( &$this, 'record_memory_usage' ) );
186
- add_action( 'all', array( &$this, 'record_memory_usage' ) );
187
- add_action( 'wp_footer', array( &$this, 'dump_memory_usage' ) );
188
- }
189
- }
190
-
191
- if ( function_exists( 'memory_get_usage' ) )
192
- $theme_my_login_debug =& new Theme_My_Login_Debug();
193
-
194
- endif; // Class exists
195
-
196
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/class-theme-my-login-module.php DELETED
@@ -1,55 +0,0 @@
1
- <?php
2
- /**
3
- * Holds the Theme My Login Module class
4
- *
5
- * @package Theme My Login
6
- * @subpackage Modules
7
- */
8
-
9
- if ( !class_exists( 'Theme_My_Login_Module' ) ) :
10
- /*
11
- * Theme My Login Module class
12
- *
13
- * This class is the base class to be extended by a module.
14
- *
15
- * @since 6.0
16
- */
17
- class Theme_My_Login_Module {
18
- /**
19
- * Called when object is constructed
20
- *
21
- * @since 6.0
22
- * @access public
23
- */
24
- function load() {
25
- // This function should be overridden by the module extend class
26
- }
27
-
28
- /**
29
- * PHP4 style constructor
30
- *
31
- * @since 6.0
32
- * @access public
33
- *
34
- * @param object $theme_my_login Reference to global $theme_my_login object
35
- */
36
- function Theme_My_Login_Module() {
37
- $this->__construct();
38
- }
39
-
40
- /**
41
- * PHP5 style constructor
42
- *
43
- * @since 6.0
44
- * @access public
45
- *
46
- * @param object $theme_my_login Reference to global $theme_my_login object
47
- */
48
- function __construct() {
49
- $this->load();
50
- }
51
- }
52
-
53
- endif; // Class exists
54
-
55
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/class-theme-my-login-ms-signup.php CHANGED
@@ -2,10 +2,11 @@
2
  /**
3
  * Holds the Theme My Login multisite signup class
4
  *
5
- * @package Theme My Login
 
6
  */
7
 
8
- if ( !class_exists( 'Theme_My_Login_MS_Signup' ) ) :
9
  /*
10
  * Theme My Login multisite signup class
11
  *
@@ -13,48 +14,42 @@ if ( !class_exists( 'Theme_My_Login_MS_Signup' ) ) :
13
  *
14
  * @since 6.1
15
  */
16
- class Theme_My_Login_MS_Signup {
17
  /**
18
- * Holds reference to global $theme_my_login_template object
19
  *
20
- * @since 6.1
21
  * @access public
22
- * @var object
23
  */
24
- var $theme_my_login_template;
25
-
26
- /**
27
- * PHP4 style constructor
28
- *
29
- * @since 6.1
30
- * @access public
31
- */
32
- function Theme_My_Login_MS_Signup() {
33
- $this->__construct();
34
  }
35
 
36
  /**
37
- * PHP5 style constructor
38
  *
39
  * @since 6.1
40
  * @access public
41
  */
42
- function __construct() {
43
- global $theme_my_login;
 
44
 
45
  add_action( 'tml_request_register', array( &$this, 'tml_request_register' ) );
46
  add_action( 'tml_request_activate', array( &$this, 'tml_request_activate' ) );
47
  add_action( 'tml_display_register', array( &$this, 'tml_display_register' ) );
48
  add_action( 'tml_display_activate', array( &$this, 'tml_display_activate' ) );
49
- add_filter( 'tml_title', array( &$this, 'tml_title' ), 10, 2 );
50
 
51
- add_action( 'switch_blog', array( &$theme_my_login, 'init_options' ) );
52
- add_action( 'wpmu_new_blog', array( &$this, 'wpmu_new_blog' ), 10, 2 );
53
 
54
- add_filter( 'site_url', array( &$this, 'site_url' ), 10, 3 );
55
- add_filter( 'network_site_url', array( &$this, 'site_url' ), 10, 3 );
56
-
57
- add_filter( 'clean_url', array( &$this, 'clean_url' ), 10, 3 );
 
58
  }
59
 
60
  /**
@@ -65,7 +60,7 @@ class Theme_My_Login_MS_Signup {
65
  *
66
  * @param object $theme_my_login Theme_My_Login object
67
  */
68
- function tml_request_register( &$theme_my_login ) {
69
  global $current_site, $wp_version;
70
 
71
  if ( version_compare( $wp_version, '3.3', '<' ) ) {
@@ -81,11 +76,8 @@ class Theme_My_Login_MS_Signup {
81
  exit;
82
  }
83
 
84
- if ( !is_main_site() ) {
85
- switch_to_blog( $current_site->blog_id );
86
- $redirect_to = $theme_my_login->get_login_page_link( array( 'action' => 'register' ) );
87
- restore_current_blog();
88
- wp_redirect( $redirect_to );
89
  exit;
90
  }
91
  }
@@ -98,17 +90,17 @@ class Theme_My_Login_MS_Signup {
98
  *
99
  * @param object $template Theme_My_Login_Template object
100
  */
101
- function tml_display_register( &$template ) {
102
- global $theme_my_login, $wpdb, $blogname, $blog_title, $domain, $path, $active_signup;
103
 
104
- $this->theme_my_login_template =& $template;
105
 
106
  do_action( 'before_signup_form' );
107
 
108
- echo '<div class="login mu_register" id="theme-my-login' . esc_attr( $template->instance ) . '">';
109
 
110
  $active_signup = get_site_option( 'registration' );
111
- if ( !$active_signup )
112
  $active_signup = 'all';
113
 
114
  $active_signup = apply_filters( 'wpmu_active_signup', $active_signup ); // return "all", "none", "blog" or "user"
@@ -126,9 +118,9 @@ class Theme_My_Login_MS_Signup {
126
 
127
  $current_user = wp_get_current_user();
128
  if ( $active_signup == "none" ) {
129
- _e( 'Registration has been disabled.', 'theme-my-login' );
130
- } elseif ( $active_signup == 'blog' && !is_user_logged_in() ) {
131
- printf( __( 'You must first <a href="%s">log in</a>, and then you can create a new site.', 'theme-my-login' ), wp_login_url( Theme_My_Login::get_current_url() ) );
132
  } else {
133
  $stage = isset( $_POST['stage'] ) ? $_POST['stage'] : 'default';
134
  switch ( $stage ) {
@@ -152,14 +144,14 @@ class Theme_My_Login_MS_Signup {
152
  wpmu_signup_user( $user_name, $user_email, apply_filters( 'add_signup_meta', array() ) );
153
 
154
  ?>
155
- <h2><?php printf( __( '%s is your new username', 'theme-my-login' ), $user_name) ?></h2>
156
- <p><?php _e( 'But, before you can start using your new username, <strong>you must activate it</strong>.', 'theme-my-login' ) ?></p>
157
- <p><?php printf(__( 'Check your inbox at <strong>%1$s</strong> and click the link given.', 'theme-my-login' ), $user_email) ?></p>
158
- <p><?php _e( 'If you do not activate your username within two days, you will have to sign up again.', 'theme-my-login' ); ?></p>
159
  <?php
160
  do_action( 'signup_finished' );
161
  } else {
162
- _e( 'User registration has been disabled.', 'theme-my-login' );
163
  }
164
  break;
165
  case 'validate-blog-signup':
@@ -191,29 +183,29 @@ class Theme_My_Login_MS_Signup {
191
 
192
  wpmu_signup_blog( $domain, $path, $blog_title, $user_name, $user_email, $meta );
193
  ?>
194
- <h2><?php printf( __( 'Congratulations! Your new site, %s, is almost ready.', 'theme-my-login' ), "<a href='http://{$domain}{$path}'>{$blog_title}</a>" ) ?></h2>
195
 
196
- <p><?php _e( 'But, before you can start using your site, <strong>you must activate it</strong>.', 'theme-my-login' ) ?></p>
197
- <p><?php printf( __( 'Check your inbox at <strong>%s</strong> and click the link given.', 'theme-my-login' ), $user_email) ?></p>
198
- <p><?php _e( 'If you do not activate your site within two days, you will have to sign up again.', 'theme-my-login' ); ?></p>
199
  <h2><?php _e( 'Still waiting for your email?' ); ?></h2>
200
  <p>
201
- <?php _e( 'If you haven&#8217;t received your email yet, there are a number of things you can do:', 'theme-my-login' ) ?>
202
  <ul id="noemail-tips">
203
- <li><p><strong><?php _e( 'Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control.', 'theme-my-login' ) ?></strong></p></li>
204
- <li><p><?php _e( 'Check the junk or spam folder of your email client. Sometime emails wind up there by mistake.', 'theme-my-login' ) ?></p></li>
205
- <li><?php printf( __( 'Have you entered your email correctly? You have entered %s, if it&#8217;s incorrect, you will not receive your email.', 'theme-my-login' ), $user_email ) ?></li>
206
  </ul>
207
  </p>
208
  <?php
209
  do_action( 'signup_finished' );
210
  } else {
211
- _e( 'Site registration has been disabled.', 'theme-my-login' );
212
  }
213
  break;
214
  case 'gimmeanotherblog':
215
  $current_user = wp_get_current_user();
216
- if ( !is_user_logged_in() )
217
  die();
218
 
219
  $result = wpmu_validate_blog_signup( $_POST['blogname'], $_POST['blog_title'], $current_user );
@@ -230,11 +222,11 @@ class Theme_My_Login_MS_Signup {
230
  $meta = apply_filters( 'signup_create_blog_meta', array( 'lang_id' => 1, 'public' => $public ) ); // deprecated
231
  $meta = apply_filters( 'add_signup_meta', $meta );
232
 
233
- wpmu_create_blog( $domain, $path, $blog_title, $current_user->id, $meta, $wpdb->siteid );
234
  ?>
235
- <h2><?php printf( __( 'The site %s is yours.', 'theme-my-login' ), "<a href='http://{$domain}{$path}'>{$blog_title}</a>" ) ?></h2>
236
  <p>
237
- <?php printf( __( '<a href="http://%1$s">http://%2$s</a> is your new site. <a href="%3$s">Log in</a> as &#8220;%4$s&#8221; using your existing password.', 'theme-my-login' ), $domain.$path, $domain.$path, "http://" . $domain.$path . "wp-login.php", $current_user->user_login ) ?>
238
  </p>
239
  <?php
240
  do_action( 'signup_finished' );
@@ -250,17 +242,17 @@ class Theme_My_Login_MS_Signup {
250
  elseif ( is_user_logged_in() == false && ( $active_signup == 'all' || $active_signup == 'user' ) )
251
  $this->signup_user( $newblogname, $user_email );
252
  elseif ( is_user_logged_in() == false && ( $active_signup == 'blog' ) )
253
- _e( 'Sorry, new registrations are not allowed at this time.', 'theme-my-login' );
254
  else
255
- _e( 'You are logged in already. No need to register again!', 'theme-my-login' );
256
 
257
  if ( $newblogname ) {
258
  $newblog = get_blogaddress_by_name( $newblogname );
259
 
260
  if ( $active_signup == 'blog' || $active_signup == 'all' )
261
- printf( __( '<p><em>The site you were looking for, <strong>%s</strong> does not exist, but you can create it now!</em></p>', 'theme-my-login' ), $newblog );
262
  else
263
- printf( __( '<p><em>The site you were looking for, <strong>%s</strong>, does not exist.</em></p>', 'theme-my-login' ), $newblog );
264
  }
265
  break;
266
  }
@@ -275,7 +267,7 @@ class Theme_My_Login_MS_Signup {
275
  * @since 6.1
276
  * @access public
277
  */
278
- function signup_header() {
279
  do_action( 'signup_header' );
280
  }
281
 
@@ -288,10 +280,12 @@ class Theme_My_Login_MS_Signup {
288
  * @param string $user_name The posted username
289
  * @param string $user_email The posted user e-mail
290
  */
291
- function signup_user( $user_name = '', $user_email = '' ) {
292
- global $theme_my_login, $current_site, $active_signup;
293
 
294
- $template =& $this->theme_my_login_template;
 
 
295
 
296
  // allow definition of default variables
297
  $filtered_results = apply_filters( 'signup_user_init', array( 'user_name' => $user_name, 'user_email' => $user_email, 'errors' => $theme_my_login->errors ) );
@@ -299,11 +293,10 @@ class Theme_My_Login_MS_Signup {
299
  $user_email = $filtered_results['user_email'];
300
  $errors = $filtered_results['errors'];
301
 
302
- if ( !empty( $this->theme_my_login_template->options['ms_signup_user_template'] ) )
303
- $templates[] = $this->theme_my_login_template->options['ms_signup_user_template'];
304
  $templates[] = 'ms-signup-user-form.php';
305
 
306
- $template->get_template( $templates, '', true, compact( 'current_site', 'active_signup', 'user_name', 'user_email', 'errors' ) );
307
  }
308
 
309
  /**
@@ -317,10 +310,12 @@ class Theme_My_Login_MS_Signup {
317
  * @param string $blogname The posted blog name
318
  * @param string $blog_title The posted blog title
319
  */
320
- function signup_blog( $user_name = '', $user_email = '', $blogname = '', $blog_title = '' ) {
321
- global $theme_my_login, $current_site;
 
 
322
 
323
- $template =& $this->theme_my_login_template;
324
 
325
  // allow definition of default variables
326
  $filtered_results = apply_filters( 'signup_blog_init', array( 'user_name' => $user_name, 'user_email' => $user_email, 'blogname' => $blogname, 'blog_title' => $blog_title, 'errors' => $theme_my_login->errors ) );
@@ -333,11 +328,10 @@ class Theme_My_Login_MS_Signup {
333
  if ( empty( $blogname ) )
334
  $blogname = $user_name;
335
 
336
- if ( !empty( $this->theme_my_login_template->options['ms_signup_blog_template'] ) )
337
- $templates[] = $this->theme_my_login_template->options['ms_signup_blog_template'];
338
  $templates[] = 'ms-signup-blog-form.php';
339
 
340
- $template->get_template( $templates, '', true, compact( 'current_site', 'user_name', 'user_email', 'blogname', 'blog_title', 'errors' ) );
341
  }
342
 
343
  /**
@@ -349,10 +343,12 @@ class Theme_My_Login_MS_Signup {
349
  * @param string $blogname The posted blog name
350
  * @param string $blog_title The posted blog title
351
  */
352
- function signup_another_blog( $blogname = '', $blog_title = '' ) {
353
- global $theme_my_login, $current_site;
354
 
355
- $template =& $this->theme_my_login_template;
 
 
356
 
357
  // allow definition of default variables
358
  $filtered_results = apply_filters( 'signup_another_blog_init', array( 'blogname' => $blogname, 'blog_title' => $blog_title, 'errors' => $theme_my_login->errors ) );
@@ -360,11 +356,10 @@ class Theme_My_Login_MS_Signup {
360
  $blog_title = $filtered_results['blog_title'];
361
  $errors = $filtered_results['errors'];
362
 
363
- if ( !empty( $this->theme_my_login_template->options['ms_signup_another_blog_template'] ) )
364
- $templates[] = $this->theme_my_login_template->options['ms_signup_another_blog_template'];
365
  $templates[] = 'ms-signup-another-blog-form.php';
366
 
367
- $template->get_template( $templates, '', true, compact( 'current_site', 'blogname', 'blog_title', 'errors' ) );
368
  }
369
 
370
  /**
@@ -375,7 +370,7 @@ class Theme_My_Login_MS_Signup {
375
  *
376
  * @param object $theme_my_login Theme_My_Login object
377
  */
378
- function tml_request_activate( &$theme_my_login ) {
379
  global $current_site, $wp_object_cache;
380
 
381
  if ( is_object( $wp_object_cache ) )
@@ -392,44 +387,44 @@ class Theme_My_Login_MS_Signup {
392
  *
393
  * @param object $template Theme_My_Login_Template object
394
  */
395
- function tml_display_activate( &$template ) {
396
  global $blog_id;
397
 
398
- echo '<div class="login" id="theme-my-login' . esc_attr( $template->instance ) . '">';
399
 
400
  if ( empty( $_GET['key'] ) && empty( $_POST['key'] ) ) { ?>
401
 
402
- <h2><?php _e( 'Activation Key Required', 'theme-my-login' ) ?></h2>
403
  <form name="activateform" id="activateform" method="post" action="<?php $template->the_action_url( 'activate' ); ?>">
404
  <p>
405
- <label for="key<?php $template->the_instance(); ?>"><?php _e( 'Activation Key:', 'theme-my-login' ) ?></label>
406
  <br /><input type="text" name="key<?php $template->the_instance(); ?>" id="key" value="" size="50" />
407
  </p>
408
  <p class="submit">
409
- <input id="submit<?php $template->the_instance(); ?>" type="submit" name="Submit" class="submit" value="<?php esc_attr_e( 'Activate', 'theme-my-login' ) ?>" />
410
  </p>
411
  </form>
412
 
413
  <?php } else {
414
 
415
- $key = !empty( $_GET['key'] ) ? $_GET['key'] : $_POST['key'];
416
  $result = wpmu_activate_signup( $key );
417
  if ( is_wp_error( $result ) ) {
418
  if ( 'already_active' == $result->get_error_code() || 'blog_taken' == $result->get_error_code() ) {
419
  $signup = $result->get_error_data();
420
  ?>
421
- <h2><?php _e( 'Your account is now active!', 'theme-my-login' ); ?></h2>
422
  <?php
423
  echo '<p class="lead-in">';
424
  if ( $signup->domain . $signup->path == '' ) {
425
- printf( __( 'Your account has been activated. You may now <a href="%1$s">login</a> to the site using your chosen username of &#8220;%2$s&#8221;. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.', 'theme-my-login' ), network_site_url( 'wp-login.php', 'login' ), $signup->user_login, $signup->user_email, network_site_url( 'wp-login.php?action=lostpassword', 'login' ) );
426
  } else {
427
- printf( __( 'Your site at <a href="%1$s">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%5$s">reset your password</a>.', 'theme-my-login' ), 'http://' . $signup->domain, $signup->domain, $signup->user_login, $signup->user_email, network_site_url( 'wp-login.php?action=lostpassword' ) );
428
  }
429
  echo '</p>';
430
  } else {
431
  ?>
432
- <h2><?php _e( 'An error occurred during the activation', 'theme-my-login' ); ?></h2>
433
  <?php
434
  echo '<p>' . $result->get_error_message() . '</p>';
435
  }
@@ -438,17 +433,17 @@ class Theme_My_Login_MS_Signup {
438
  $url = get_blogaddress_by_id( (int) $blog_id );
439
  $user = new WP_User( (int) $user_id );
440
  ?>
441
- <h2><?php _e( 'Your account is now active!', 'theme-my-login' ); ?></h2>
442
 
443
  <div id="signup-welcome">
444
- <p><span class="h3"><?php _e( 'Username:', 'theme-my-login' ); ?></span> <?php echo $user->user_login ?></p>
445
- <p><span class="h3"><?php _e( 'Password:', 'theme-my-login' ); ?></span> <?php echo $password; ?></p>
446
  </div>
447
 
448
  <?php if ( $url != network_home_url( '', 'http' ) ) : switch_to_blog( (int) $blog_id ); ?>
449
- <p class="view"><?php printf( __( 'Your account is now activated. <a href="%1$s">View your site</a> or <a href="%2$s">Login</a>', 'theme-my-login' ), $url, wp_login_url() ); ?></p>
450
  <?php restore_current_blog(); else: ?>
451
- <p class="view"><?php printf( __( 'Your account is now activated. <a href="%1$s">Login</a> or go back to the <a href="%2$s">homepage</a>.', 'theme-my-login' ), network_site_url( 'wp-login.php', 'login' ), network_home_url() ); ?></p>
452
  <?php endif;
453
  }
454
  }
@@ -461,7 +456,7 @@ class Theme_My_Login_MS_Signup {
461
  * @since 6.1
462
  * @access public
463
  */
464
- function activate_header() {
465
  do_action( 'activate_header' );
466
  do_action( 'activate_wp_head' );
467
  }
@@ -476,9 +471,9 @@ class Theme_My_Login_MS_Signup {
476
  * @param string $action The requested action
477
  * @return string The filtered title
478
  */
479
- function tml_title( $title, $action ) {
480
  if ( 'activate' == $action )
481
- $title = __( 'Activate', 'theme-my-login' );
482
  return $title;
483
  }
484
 
@@ -491,21 +486,21 @@ class Theme_My_Login_MS_Signup {
491
  * @param int $blog_id ID of new blog
492
  * @param int $user_id ID of blog owner
493
  */
494
- function wpmu_new_blog( $blog_id, $user_id ) {
495
  global $wpdb;
496
  require_once ( ABSPATH . '/wp-admin/includes/plugin.php' );
497
  if ( is_plugin_active_for_network( 'theme-my-login/theme-my-login.php' ) ) {
498
- require_once( TML_ABSPATH . '/admin/class-theme-my-login-admin.php' );
499
  switch_to_blog( $blog_id );
500
- $admin =& new Theme_My_Login_Admin();
501
- $page_id = $admin->_install();
502
- $wpdb->update( $wpdb->posts, array( 'post_author' => $user_id ), array( 'ID' => $page_id ) );
503
  restore_current_blog();
504
  }
505
  }
506
 
507
  /**
508
- * Rewrites URL's containing wp-login.php created by site_url()
509
  *
510
  * @since 6.1
511
  * @access public
@@ -515,57 +510,56 @@ class Theme_My_Login_MS_Signup {
515
  * @param string $orig_scheme The current connection scheme (HTTP/HTTPS)
516
  * @return string The modified URL
517
  */
518
- function site_url( $url, $path, $orig_scheme ) {
519
- global $theme_my_login, $pagenow;
520
 
521
- $actions = array( 'wp-signup.php' => 'register', 'wp-activate.php' => 'activate', 'wp-login.php' => '' );
522
 
523
- foreach ( $actions as $page => $action ) {
524
- if ( false !== strpos( $url, $page ) && $pagenow != $page ) {
525
- // Parse the URL
526
- $parsed_url = parse_url( $url );
527
-
528
- // Set action
529
- $query = array( 'action' => $action );
530
-
531
- // Extract the query string
532
- if ( isset( $parsed_url['query'] ) ) {
533
- wp_parse_str( $parsed_url['query'], $r );
534
- foreach ( $r as $k => $v ) {
535
- if ( strpos( $v, ' ' ) !== false )
536
- $r[$k] = rawurlencode( $v );
537
- }
538
- }
539
 
540
- // Merge query args passed in by filter
541
- if ( isset( $r ) )
542
- $query = array_merge( $query, (array) $r );
543
-
544
- // Get the login page link along with the query
545
- $url = $theme_my_login->get_login_page_link( $query );
546
-
547
- // Check if HTTPS is needed
548
- if ( 'https' == strtolower( $orig_scheme ) )
549
- $url = preg_replace( '|^http://|', 'https://', $url );
550
 
 
 
 
551
  break;
552
  }
553
  }
554
  return $url;
555
  }
556
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
557
  /**
558
  * Don't clean activate URL
559
  *
560
  * @since 6.1
561
  * @access public
562
  */
563
- function clean_url( $url, $original_url, $context ) {
564
  if ( strpos( $original_url, 'action=activate' ) !== false )
565
  return $original_url;
566
  return $url;
567
  }
568
  }
569
- endif;
570
-
571
- ?>
2
  /**
3
  * Holds the Theme My Login multisite signup class
4
  *
5
+ * @package Theme_My_Login
6
+ * @since 6.1
7
  */
8
 
9
+ if ( ! class_exists( 'Theme_My_Login_MS_Signup' ) ) :
10
  /*
11
  * Theme My Login multisite signup class
12
  *
14
  *
15
  * @since 6.1
16
  */
17
+ class Theme_My_Login_MS_Signup extends Theme_My_Login_Abstract {
18
  /**
19
+ * Returns singleton instance
20
  *
21
+ * @since 6.3
22
  * @access public
23
+ * @return object
24
  */
25
+ public static function get_object() {
26
+ return parent::get_object( __CLASS__ );
 
 
 
 
 
 
 
 
27
  }
28
 
29
  /**
30
+ * Loads the object
31
  *
32
  * @since 6.1
33
  * @access public
34
  */
35
+ public function load() {
36
+
37
+ $theme_my_login = Theme_My_Login::get_object();
38
 
39
  add_action( 'tml_request_register', array( &$this, 'tml_request_register' ) );
40
  add_action( 'tml_request_activate', array( &$this, 'tml_request_activate' ) );
41
  add_action( 'tml_display_register', array( &$this, 'tml_display_register' ) );
42
  add_action( 'tml_display_activate', array( &$this, 'tml_display_activate' ) );
43
+ add_filter( 'tml_title', array( &$this, 'tml_title' ), 10, 2 );
44
 
45
+ add_action( 'switch_blog', array( &$theme_my_login, 'load_options' ) );
46
+ add_action( 'wpmu_new_blog', array( &$this, 'wpmu_new_blog' ), 10, 2 );
47
 
48
+ add_filter( 'site_url', array( &$this, 'site_url' ), 9, 3 );
49
+ add_filter( 'home_url', array( &$this, 'site_url' ), 9, 3 );
50
+ add_filter( 'network_site_url', array( &$this, 'network_site_url' ), 10, 3 );
51
+ add_filter( 'network_home_url', array( &$this, 'network_site_url' ), 10, 3 );
52
+ add_filter( 'clean_url', array( &$this, 'clean_url' ), 10, 3 );
53
  }
54
 
55
  /**
60
  *
61
  * @param object $theme_my_login Theme_My_Login object
62
  */
63
+ public function tml_request_register( &$theme_my_login ) {
64
  global $current_site, $wp_version;
65
 
66
  if ( version_compare( $wp_version, '3.3', '<' ) ) {
76
  exit;
77
  }
78
 
79
+ if ( ! is_main_site() ) {
80
+ wp_redirect( network_home_url( 'wp-signup.php' ) );
 
 
 
81
  exit;
82
  }
83
  }
90
  *
91
  * @param object $template Theme_My_Login_Template object
92
  */
93
+ public function tml_display_register( &$template ) {
94
+ global $wpdb, $blogname, $blog_title, $domain, $path, $active_signup;
95
 
96
+ $theme_my_login = Theme_My_Login::get_object();
97
 
98
  do_action( 'before_signup_form' );
99
 
100
+ echo '<div class="login mu_register" id="theme-my-login' . esc_attr( $template->get_option( 'instance' ) ) . '">';
101
 
102
  $active_signup = get_site_option( 'registration' );
103
+ if ( ! $active_signup )
104
  $active_signup = 'all';
105
 
106
  $active_signup = apply_filters( 'wpmu_active_signup', $active_signup ); // return "all", "none", "blog" or "user"
118
 
119
  $current_user = wp_get_current_user();
120
  if ( $active_signup == "none" ) {
121
+ _e( 'Registration has been disabled.' );
122
+ } elseif ( $active_signup == 'blog' && ! is_user_logged_in() ) {
123
+ printf( __( 'You must first <a href="%s">log in</a>, and then you can create a new site.' ), wp_login_url( Theme_My_Login_Common::get_current_url() ) );
124
  } else {
125
  $stage = isset( $_POST['stage'] ) ? $_POST['stage'] : 'default';
126
  switch ( $stage ) {
144
  wpmu_signup_user( $user_name, $user_email, apply_filters( 'add_signup_meta', array() ) );
145
 
146
  ?>
147
+ <h2><?php printf( __( '%s is your new username' ), $user_name) ?></h2>
148
+ <p><?php _e( 'But, before you can start using your new username, <strong>you must activate it</strong>.' ) ?></p>
149
+ <p><?php printf(__( 'Check your inbox at <strong>%1$s</strong> and click the link given.' ), $user_email) ?></p>
150
+ <p><?php _e( 'If you do not activate your username within two days, you will have to sign up again.' ); ?></p>
151
  <?php
152
  do_action( 'signup_finished' );
153
  } else {
154
+ _e( 'User registration has been disabled.' );
155
  }
156
  break;
157
  case 'validate-blog-signup':
183
 
184
  wpmu_signup_blog( $domain, $path, $blog_title, $user_name, $user_email, $meta );
185
  ?>
186
+ <h2><?php printf( __( 'Congratulations! Your new site, %s, is almost ready.' ), "<a href='http://{$domain}{$path}'>{$blog_title}</a>" ) ?></h2>
187
 
188
+ <p><?php _e( 'But, before you can start using your site, <strong>you must activate it</strong>.' ) ?></p>
189
+ <p><?php printf( __( 'Check your inbox at <strong>%s</strong> and click the link given.' ), $user_email) ?></p>
190
+ <p><?php _e( 'If you do not activate your site within two days, you will have to sign up again.' ); ?></p>
191
  <h2><?php _e( 'Still waiting for your email?' ); ?></h2>
192
  <p>
193
+ <?php _e( 'If you haven&#8217;t received your email yet, there are a number of things you can do:' ) ?>
194
  <ul id="noemail-tips">
195
+ <li><p><strong><?php _e( 'Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control.' ) ?></strong></p></li>
196
+ <li><p><?php _e( 'Check the junk or spam folder of your email client. Sometime emails wind up there by mistake.' ) ?></p></li>
197
+ <li><?php printf( __( 'Have you entered your email correctly? You have entered %s, if it&#8217;s incorrect, you will not receive your email.' ), $user_email ) ?></li>
198
  </ul>
199
  </p>
200
  <?php
201
  do_action( 'signup_finished' );
202
  } else {
203
+ _e( 'Site registration has been disabled.' );
204
  }
205
  break;
206
  case 'gimmeanotherblog':
207
  $current_user = wp_get_current_user();
208
+ if ( ! is_user_logged_in() )
209
  die();
210
 
211
  $result = wpmu_validate_blog_signup( $_POST['blogname'], $_POST['blog_title'], $current_user );
222
  $meta = apply_filters( 'signup_create_blog_meta', array( 'lang_id' => 1, 'public' => $public ) ); // deprecated
223
  $meta = apply_filters( 'add_signup_meta', $meta );
224
 
225
+ wpmu_create_blog( $domain, $path, $blog_title, $current_user->ID, $meta, $wpdb->siteid );
226
  ?>
227
+ <h2><?php printf( __( 'The site %s is yours.' ), "<a href='http://{$domain}{$path}'>{$blog_title}</a>" ) ?></h2>
228
  <p>
229
+ <?php printf( __( '<a href="http://%1$s">http://%2$s</a> is your new site. <a href="%3$s">Log in</a> as &#8220;%4$s&#8221; using your existing password.' ), $domain.$path, $domain.$path, "http://" . $domain.$path . "wp-login.php", $current_user->user_login ) ?>
230
  </p>
231
  <?php
232
  do_action( 'signup_finished' );
242
  elseif ( is_user_logged_in() == false && ( $active_signup == 'all' || $active_signup == 'user' ) )
243
  $this->signup_user( $newblogname, $user_email );
244
  elseif ( is_user_logged_in() == false && ( $active_signup == 'blog' ) )
245
+ _e( 'Sorry, new registrations are not allowed at this time.' );
246
  else
247
+ _e( 'You are logged in already. No need to register again!' );
248
 
249
  if ( $newblogname ) {
250
  $newblog = get_blogaddress_by_name( $newblogname );
251
 
252
  if ( $active_signup == 'blog' || $active_signup == 'all' )
253
+ printf( __( '<p><em>The site you were looking for, <strong>%s</strong> does not exist, but you can create it now!</em></p>' ), $newblog );
254
  else
255
+ printf( __( '<p><em>The site you were looking for, <strong>%s</strong>, does not exist.</em></p>' ), $newblog );
256
  }
257
  break;
258
  }
267
  * @since 6.1
268
  * @access public
269
  */
270
+ public function signup_header() {
271
  do_action( 'signup_header' );
272
  }
273
 
280
  * @param string $user_name The posted username
281
  * @param string $user_email The posted user e-mail
282
  */
283
+ public function signup_user( $user_name = '', $user_email = '' ) {
284
+ global $current_site, $active_signup;
285
 
286
+ $theme_my_login = Theme_My_Login::get_object();
287
+
288
+ $template =& $theme_my_login->get_active_instance();
289
 
290
  // allow definition of default variables
291
  $filtered_results = apply_filters( 'signup_user_init', array( 'user_name' => $user_name, 'user_email' => $user_email, 'errors' => $theme_my_login->errors ) );
293
  $user_email = $filtered_results['user_email'];
294
  $errors = $filtered_results['errors'];
295
 
296
+ $templates = (array) $template->get_option( 'ms_signup_user_template', array() );
 
297
  $templates[] = 'ms-signup-user-form.php';
298
 
299
+ $template->get_template( $templates, true, compact( 'current_site', 'active_signup', 'user_name', 'user_email', 'errors' ) );
300
  }
301
 
302
  /**
310
  * @param string $blogname The posted blog name
311
  * @param string $blog_title The posted blog title
312
  */
313
+ public function signup_blog( $user_name = '', $user_email = '', $blogname = '', $blog_title = '' ) {
314
+ global $current_site;
315
+
316
+ $theme_my_login = Theme_My_Login::get_object();
317
 
318
+ $template =& $theme_my_login->get_active_instance();
319
 
320
  // allow definition of default variables
321
  $filtered_results = apply_filters( 'signup_blog_init', array( 'user_name' => $user_name, 'user_email' => $user_email, 'blogname' => $blogname, 'blog_title' => $blog_title, 'errors' => $theme_my_login->errors ) );
328
  if ( empty( $blogname ) )
329
  $blogname = $user_name;
330
 
331
+ $templates = (array) $template->get_option( 'ms_signup_blog_template', array() );
 
332
  $templates[] = 'ms-signup-blog-form.php';
333
 
334
+ $template->get_template( $templates, true, compact( 'current_site', 'user_name', 'user_email', 'blogname', 'blog_title', 'errors' ) );
335
  }
336
 
337
  /**
343
  * @param string $blogname The posted blog name
344
  * @param string $blog_title The posted blog title
345
  */
346
+ public function signup_another_blog( $blogname = '', $blog_title = '' ) {
347
+ global $current_site;
348
 
349
+ $theme_my_login = Theme_My_Login::get_object();
350
+
351
+ $template =& $theme_my_login->get_active_instance();
352
 
353
  // allow definition of default variables
354
  $filtered_results = apply_filters( 'signup_another_blog_init', array( 'blogname' => $blogname, 'blog_title' => $blog_title, 'errors' => $theme_my_login->errors ) );
356
  $blog_title = $filtered_results['blog_title'];
357
  $errors = $filtered_results['errors'];
358
 
359
+ $templates = (array) $template->get_option( 'ms_signup_another_blog_template', array() );
 
360
  $templates[] = 'ms-signup-another-blog-form.php';
361
 
362
+ $template->get_template( $templates, true, compact( 'current_site', 'blogname', 'blog_title', 'errors' ) );
363
  }
364
 
365
  /**
370
  *
371
  * @param object $theme_my_login Theme_My_Login object
372
  */
373
+ public function tml_request_activate( &$theme_my_login ) {
374
  global $current_site, $wp_object_cache;
375
 
376
  if ( is_object( $wp_object_cache ) )
387
  *
388
  * @param object $template Theme_My_Login_Template object
389
  */
390
+ public function tml_display_activate( &$template ) {
391
  global $blog_id;
392
 
393
+ echo '<div class="login" id="theme-my-login' . esc_attr( $template->get_option( 'instance' ) ) . '">';
394
 
395
  if ( empty( $_GET['key'] ) && empty( $_POST['key'] ) ) { ?>
396
 
397
+ <h2><?php _e( 'Activation Key Required' ) ?></h2>
398
  <form name="activateform" id="activateform" method="post" action="<?php $template->the_action_url( 'activate' ); ?>">
399
  <p>
400
+ <label for="key<?php $template->the_instance(); ?>"><?php _e( 'Activation Key:' ) ?></label>
401
  <br /><input type="text" name="key<?php $template->the_instance(); ?>" id="key" value="" size="50" />
402
  </p>
403
  <p class="submit">
404
+ <input id="submit<?php $template->the_instance(); ?>" type="submit" name="Submit" class="submit" value="<?php esc_attr_e( 'Activate' ) ?>" />
405
  </p>
406
  </form>
407
 
408
  <?php } else {
409
 
410
+ $key = ! empty( $_GET['key'] ) ? $_GET['key'] : $_POST['key'];
411
  $result = wpmu_activate_signup( $key );
412
  if ( is_wp_error( $result ) ) {
413
  if ( 'already_active' == $result->get_error_code() || 'blog_taken' == $result->get_error_code() ) {
414
  $signup = $result->get_error_data();
415
  ?>
416
+ <h2><?php _e( 'Your account is now active!' ); ?></h2>
417
  <?php
418
  echo '<p class="lead-in">';
419
  if ( $signup->domain . $signup->path == '' ) {
420
+ printf( __( 'Your account has been activated. You may now <a href="%1$s">login</a> to the site using your chosen username of &#8220;%2$s&#8221;. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.' ), network_site_url( 'wp-login.php', 'login' ), $signup->user_login, $signup->user_email, network_site_url( 'wp-login.php?action=lostpassword', 'login' ) );
421
  } else {
422
+ printf( __( 'Your site at <a href="%1$s">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%5$s">reset your password</a>.' ), 'http://' . $signup->domain, $signup->domain, $signup->user_login, $signup->user_email, network_site_url( 'wp-login.php?action=lostpassword' ) );
423
  }
424
  echo '</p>';
425
  } else {
426
  ?>
427
+ <h2><?php _e( 'An error occurred during the activation' ); ?></h2>
428
  <?php
429
  echo '<p>' . $result->get_error_message() . '</p>';
430
  }
433
  $url = get_blogaddress_by_id( (int) $blog_id );
434
  $user = new WP_User( (int) $user_id );
435
  ?>
436
+ <h2><?php _e( 'Your account is now active!' ); ?></h2>
437
 
438
  <div id="signup-welcome">
439
+ <p><span class="h3"><?php _e( 'Username:' ); ?></span> <?php echo $user->user_login ?></p>
440
+ <p><span class="h3"><?php _e( 'Password:' ); ?></span> <?php echo $password; ?></p>
441
  </div>
442
 
443
  <?php if ( $url != network_home_url( '', 'http' ) ) : switch_to_blog( (int) $blog_id ); ?>
444
+ <p class="view"><?php printf( __( 'Your account is now activated. <a href="%1$s">View your site</a> or <a href="%2$s">Login</a>' ), $url, wp_login_url() ); ?></p>
445
  <?php restore_current_blog(); else: ?>
446
+ <p class="view"><?php printf( __( 'Your account is now activated. <a href="%1$s">Login</a> or go back to the <a href="%2$s">homepage</a>.' ), network_site_url( 'wp-login.php', 'login' ), network_home_url() ); ?></p>
447
  <?php endif;
448
  }
449
  }
456
  * @since 6.1
457
  * @access public
458
  */
459
+ public function activate_header() {
460
  do_action( 'activate_header' );
461
  do_action( 'activate_wp_head' );
462
  }
471
  * @param string $action The requested action
472
  * @return string The filtered title
473
  */
474
+ public function tml_title( $title, $action ) {
475
  if ( 'activate' == $action )
476
+ $title = __( 'Activate' );
477
  return $title;
478
  }
479
 
486
  * @param int $blog_id ID of new blog
487
  * @param int $user_id ID of blog owner
488
  */
489
+ public function wpmu_new_blog( $blog_id, $user_id ) {
490
  global $wpdb;
491
  require_once ( ABSPATH . '/wp-admin/includes/plugin.php' );
492
  if ( is_plugin_active_for_network( 'theme-my-login/theme-my-login.php' ) ) {
493
+ require_once( WP_PLUGIN_DIR . '/theme-my-login/admin/class-theme-my-login-admin.php' );
494
  switch_to_blog( $blog_id );
495
+ $admin = Theme_My_Login_Admin::get_object();
496
+ $admin->install();
497
+ unset( $admin );
498
  restore_current_blog();
499
  }
500
  }
501
 
502
  /**
503
+ * Rewrites URL's created by site_url containing wp-signup.php or wp-activate.php
504
  *
505
  * @since 6.1
506
  * @access public
510
  * @param string $orig_scheme The current connection scheme (HTTP/HTTPS)
511
  * @return string The modified URL
512
  */
513
+ public function site_url( $url, $path, $orig_scheme ) {
514
+ global $pagenow;
515
 
516
+ $theme_my_login = Theme_My_Login::get_object();
517
 
518
+ if ( in_array( $pagenow, array( 'wp-login.php', 'wp-signup.php', 'wp-activate.php' ) ) )
519
+ return $url;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
520
 
521
+ $actions = array(
522
+ 'wp-signup.php' => 'register',
523
+ 'wp-activate.php' => 'activate'
524
+ );
 
 
 
 
 
 
525
 
526
+ foreach ( $actions as $page => $action ) {
527
+ if ( false !== strpos( $url, $page ) ) {
528
+ $url = add_query_arg( 'action', $action, str_replace( $page, 'wp-login.php', $url ) );
529
  break;
530
  }
531
  }
532
  return $url;
533
  }
534
 
535
+ /**
536
+ * Rewrites URL's created by network_site_url
537
+ *
538
+ * @since 6.3
539
+ * @access public
540
+ *
541
+ * @param string $url The URL
542
+ * @param string $path The path specified
543
+ * @param string $orig_scheme The current connection scheme (HTTP/HTTPS)
544
+ * @return string The modified URL
545
+ */
546
+ public function network_site_url( $url, $path, $orig_scheme ) {
547
+ global $current_site;
548
+ $url = $this->site_url( $url, $path, $orig_scheme );
549
+ $url = Theme_My_Login::get_object()->site_url( $url, $path, $orig_scheme, $current_site->blog_id );
550
+ return $url;
551
+ }
552
+
553
  /**
554
  * Don't clean activate URL
555
  *
556
  * @since 6.1
557
  * @access public
558
  */
559
+ public function clean_url( $url, $original_url, $context ) {
560
  if ( strpos( $original_url, 'action=activate' ) !== false )
561
  return $original_url;
562
  return $url;
563
  }
564
  }
565
+ endif; // Class exists
 
 
includes/class-theme-my-login-template.php CHANGED
@@ -2,11 +2,11 @@
2
  /**
3
  * Holds the Theme My Login template class
4
  *
5
- * @package Theme My Login
6
- * @subpackage Template
7
  */
8
 
9
- if ( !class_exists( 'Theme_My_Login_Template' ) ) :
10
  /*
11
  * Theme My Login template class
12
  *
@@ -14,51 +14,62 @@ if ( !class_exists( 'Theme_My_Login_Template' ) ) :
14
  *
15
  * @since 6.0
16
  */
17
- class Theme_My_Login_Template {
18
  /**
19
- * Holds this instance
20
  *
21
- * @since 6.0
22
- * @access public
23
- * @var int
24
  */
25
- var $instance;
26
 
27
  /**
28
- * Holds this instance action
29
  *
30
  * @since 6.0
31
  * @access public
32
- * @var string
33
- */
34
- var $action;
35
-
36
- /**
37
- * Set if current instance is active
38
  *
39
- * @since 6.0
40
- * @access public
41
- * @var bool
42
  */
43
- var $is_active = false;
 
 
44
 
45
- /**
46
- * Holds instance specific template options
47
- *
48
- * @since 6.0
49
- * @access public
50
- * @var array
51
- */
52
- var $options = array();
53
 
54
  /**
55
- * Holds instance specific template errors
56
  *
57
- * @since 6.0
58
  * @access public
59
- * @var object
 
60
  */
61
- var $errors;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
 
63
  /**
64
  * Displays output according to current action
@@ -68,52 +79,52 @@ class Theme_My_Login_Template {
68
  *
69
  * @return string HTML output
70
  */
71
- function display( $action = '' ) {
72
  if ( empty( $action ) )
73
- $action = $this->action;
74
 
75
  ob_start();
76
- echo $this->options['before_widget'];
77
- if ( $this->options['show_title'] )
78
- echo $this->options['before_title'] . $this->get_title( $action ) . $this->options['after_title'] . "\n";
79
  // Is there a specified template?
80
  if ( has_action( 'tml_display_' . $action ) ) {
81
  do_action_ref_array( 'tml_display_' . $action, array( &$this ) );
82
  } else {
83
  $template = array();
84
- if ( is_user_logged_in() ) {
85
- if ( !empty( $this->options['user_template'] ) )
86
- $template[] = $this->options['user_template'];
87
  $template[] = 'user-panel.php';
88
  } else {
89
  switch ( $action ) {
90
  case 'lostpassword':
91
  case 'retrievepassword':
92
- if ( !empty( $this->options['lostpassword_template'] ) )
93
- $template[] = $this->options['lostpassword_template'];
94
  $template[] = 'lostpassword-form.php';
95
  break;
96
  case 'resetpass':
97
  case 'rp':
98
- if ( !empty( $this->options['resetpass_template'] ) )
99
- $template[] = $this->options['resetpass_template'];
100
  $template[] = 'resetpass-form.php';
101
  break;
102
  case 'register':
103
- if ( !empty( $this->options['register_template'] ) )
104
- $template[] = $this->options['register_template'];
105
  $template[] = 'register-form.php';
106
  break;
107
  case 'login':
108
  default :
109
- if ( !empty( $this->options['login_template'] ) )
110
- $template[] = $this->options['login_template'];
111
  $template[] = 'login-form.php';
112
  }
113
  }
114
  $this->get_template( $template );
115
  }
116
- echo $this->options['after_widget'] . "\n";
117
  $output = ob_get_contents();
118
  ob_end_clean();
119
  return apply_filters_ref_array( 'tml_display', array( $output, $action, &$this ) );
@@ -128,27 +139,33 @@ class Theme_My_Login_Template {
128
  * @param string $action The action to retrieve. Defaults to current action.
129
  * @return string Title of $action
130
  */
131
- function get_title( $action = '' ) {
132
  if ( empty( $action ) )
133
- $action = isset( $_REQUEST['action'] ) ? $_REQUEST['action'] : 'login';
 
 
 
134
 
135
- if ( is_user_logged_in() ) {
136
- $user = wp_get_current_user();
137
- $title = sprintf( __( 'Welcome, %s', 'theme-my-login' ), $user->display_name );
138
  } else {
139
- switch ( $action ) {
140
- case 'register':
141
- $title = __( 'Register', 'theme-my-login' );
142
- break;
143
- case 'lostpassword':
144
- case 'retrievepassword':
145
- case 'resetpass':
146
- case 'rp':
147
- $title = __( 'Lost Password', 'theme-my-login' );
148
- break;
149
- case 'login':
150
- default:
151
- $title = __( 'Log In', 'theme-my-login' );
 
 
 
 
152
  }
153
  }
154
  return apply_filters( 'tml_title', $title, $action );
@@ -162,7 +179,7 @@ class Theme_My_Login_Template {
162
  *
163
  * @param string $action The action to retieve. Defaults to current action.
164
  */
165
- function the_title( $action = '' ) {
166
  echo $this->get_title( $action );
167
  }
168
 
@@ -172,8 +189,10 @@ class Theme_My_Login_Template {
172
  * @since 6.0
173
  * @access public
174
  */
175
- function get_errors() {
176
- global $theme_my_login, $error;
 
 
177
 
178
  $wp_error =& $theme_my_login->errors;
179
 
@@ -181,13 +200,13 @@ class Theme_My_Login_Template {
181
  $wp_error = new WP_Error();
182
 
183
  // Incase a plugin uses $error rather than the $errors object
184
- if ( !empty( $error ) ) {
185
  $wp_error->add('error', $error);
186
  unset($error);
187
  }
188
 
189
  $output = '';
190
- if ( $this->is_active ) {
191
  if ( $wp_error->get_error_code() ) {
192
  $errors = '';
193
  $messages = '';
@@ -200,9 +219,9 @@ class Theme_My_Login_Template {
200
  $errors .= ' ' . $error . "<br />\n";
201
  }
202
  }
203
- if ( !empty( $errors ) )
204
  $output .= '<p class="error">' . apply_filters( 'login_errors', $errors ) . "</p>\n";
205
- if ( !empty( $messages ) )
206
  $output .= '<p class="message">' . apply_filters( 'login_messages', $messages ) . "</p>\n";
207
  }
208
  }
@@ -215,7 +234,7 @@ class Theme_My_Login_Template {
215
  * @since 6.0
216
  * @access public
217
  */
218
- function the_errors() {
219
  echo $this->get_errors();
220
  }
221
 
@@ -226,22 +245,19 @@ class Theme_My_Login_Template {
226
  * @access public
227
  *
228
  * @param string $action Action to retrieve
229
- * @param int|string $instance Optionally add an instance to the URL
230
  * @return string The requested action URL
231
  */
232
- function get_action_url( $action = 'login', $instance = '' ) {
233
- global $theme_my_login;
234
 
235
- if ( empty( $instance ) )
236
- $instance = $this->instance;
237
 
238
- if ( ( isset( $this->options[$action . '_widget'] ) && !$this->options[$action . '_widget'] ) || $theme_my_login->is_login_page() ) {
239
- $url = $theme_my_login->get_login_page_link( 'action=' . $action );
 
 
 
240
  } else {
241
- if ( empty( $instance ) )
242
- $url = Theme_My_Login::get_current_url( array( 'action' => $action ) );
243
- else
244
- $url = Theme_My_Login::get_current_url( array( 'action' => $action, 'instance' => $instance ) );
245
  }
246
 
247
  // Respect FORCE_SSL_LOGIN
@@ -258,10 +274,9 @@ class Theme_My_Login_Template {
258
  * @access public
259
  *
260
  * @param string $action Action to retrieve
261
- * @param int|string $instance Optionally add an instance to the URL
262
  */
263
- function the_action_url( $action = 'login', $instance = '' ) {
264
- echo esc_url( $this->get_action_url( $action, $instance ) );
265
  }
266
 
267
  /**
@@ -272,15 +287,32 @@ class Theme_My_Login_Template {
272
  *
273
  * @param array $args Optionally specify which actions to include/exclude. By default, all are included.
274
  */
275
- function get_action_links( $args = '' ) {
276
- $args = wp_parse_args( $args, array( 'login' => true, 'register' => true, 'lostpassword' => true ) );
 
 
 
 
 
277
  $action_links = array();
278
- if ( $args['login'] && $this->options['show_log_link'] )
279
- $action_links[] = array( 'title' => $this->get_title( 'login' ), 'url' => $this->get_action_url( 'login' ) );
280
- if ( $args['register'] && $this->options['show_reg_link'] && get_option( 'users_can_register' ) )
281
- $action_links[] = array( 'title' => $this->get_title( 'register' ), 'url' => $this->get_action_url( 'register' ) );
282
- if ( $args['lostpassword'] && $this->options['show_pass_link'] )
283
- $action_links[] = array( 'title' => $this->get_title( 'lostpassword' ), 'url' => $this->get_action_url( 'lostpassword' ) );
 
 
 
 
 
 
 
 
 
 
 
 
284
  return apply_filters( 'tml_action_links', $action_links, $args );
285
  }
286
 
@@ -292,7 +324,7 @@ class Theme_My_Login_Template {
292
  *
293
  * @param array $args Optionally specify which actions to include/exclude. By default, all are included.
294
  */
295
- function the_action_links( $args = '' ) {
296
  if ( $action_links = $this->get_action_links( $args ) ) {
297
  echo '<ul class="tml-action-links">' . "\n";
298
  foreach ( (array) $action_links as $link ) {
@@ -310,11 +342,16 @@ class Theme_My_Login_Template {
310
  *
311
  * @return array Logged-in user links
312
  */
313
- function get_user_links() {
314
  $user_links = array(
315
- array( 'title' => __( 'Dashboard', 'theme-my-login' ), 'url' => admin_url() ),
316
- array( 'title' => __( 'Profile', 'theme-my-login' ), 'url' => admin_url( 'profile.php' ) )
317
- );
 
 
 
 
 
318
  return apply_filters( 'tml_user_links', $user_links );
319
  }
320
 
@@ -324,14 +361,12 @@ class Theme_My_Login_Template {
324
  * @since 6.0
325
  * @access public
326
  */
327
- function the_user_links() {
328
  echo '<ul class="tml-user-links">';
329
- if ( $user_links = $this->get_user_links() ) {
330
- foreach ( (array) $user_links as $link ) {
331
- echo '<li><a href="' . esc_url( $link['url'] ) . '">' . esc_html( $link['title'] ) . '</a></li>' . "\n";
332
- }
333
  }
334
- echo '<li><a href="' . wp_logout_url() . '">' . __( 'Log out', 'theme-my-login' ) . '</a></li>' . "\n";
335
  echo '</ul>';
336
  }
337
 
@@ -341,10 +376,12 @@ class Theme_My_Login_Template {
341
  * @since 6.0
342
  * @access public
343
  */
344
- function the_user_avatar( $size = '' ) {
345
- global $current_user;
346
  if ( empty( $size ) )
347
- $size = $this->options['gravatar_size'];
 
 
 
348
  echo get_avatar( $current_user->ID, $size );
349
  }
350
 
@@ -357,16 +394,16 @@ class Theme_My_Login_Template {
357
  * @param string $action Action to retrieve
358
  * @return string The requested template message
359
  */
360
- function get_action_template_message( $action = '' ) {
361
  switch ( $action ) {
362
  case 'register':
363
- $message = __( 'Register For This Site', 'theme-my-login' );
364
  break;
365
  case 'lostpassword':
366
- $message = __( 'Please enter your username or email address. You will receive a link to create a new password via email.', 'theme-my-login' );
367
  break;
368
  case 'resetpass':
369
- $message = __( 'Enter your new password below.', 'theme-my-login' );
370
  break;
371
  default:
372
  $message = '';
@@ -386,8 +423,8 @@ class Theme_My_Login_Template {
386
  * @param string $before_message Text/HTML to add before the message
387
  * @param string $after_message Text/HTML to add after the message
388
  */
389
- function the_action_template_message( $action = 'login', $before_message = '<p class="message">', $after_message = '</p>' ) {
390
- if ( $message = $this->get_action_template_message( $action ) )
391
  echo $before_message . $message . $after_message;
392
  }
393
 
@@ -398,38 +435,35 @@ class Theme_My_Login_Template {
398
  * @access public
399
  *
400
  * @param string|array $template_names The template(s) to locate
401
- * @param string $template_path Directory of default template
402
  * @param bool $load If true, the template will be included if found
403
  * @param array $args Array of extra variables to make available to template
404
  * @return string|bool Template path if found, false if not
405
  */
406
- function get_template( $template_names, $template_path = '', $load = true, $args = array() ) {
407
- global $theme_my_login;
 
408
 
409
- // Shothand reference to this
410
  $template =& $this;
411
 
412
  // Easy access to current user
413
  $current_user = wp_get_current_user();
414
 
415
- if ( empty( $template_path ) )
416
- $template_path = TML_ABSPATH . '/templates';
417
-
418
  extract( apply_filters_ref_array( 'tml_template_args', array( $args, &$this ) ) );
419
 
420
- if ( !is_array( $template_names ) )
421
  $template_names = array( $template_names );
422
 
423
- if ( !$found_template = locate_template( $template_names ) ) {
424
  foreach ( $template_names as $template_name ) {
425
- if ( file_exists( rtrim( $template_path, '/' ) . '/' . $template_name ) ) {
426
- $found_template = rtrim( $template_path, '/' ) . '/' . $template_name;
427
  break;
428
  }
429
  }
430
  }
431
 
432
- $found_template = apply_filters_ref_array( 'tml_template', array( $found_template, $template_names, $template_path, &$this ) );
433
 
434
  if ( $load && $found_template ) {
435
  include( $found_template );
@@ -447,23 +481,26 @@ class Theme_My_Login_Template {
447
  * @param string $action The action
448
  * @return string The redirect URL
449
  */
450
- function get_redirect_url( $action = '' ) {
 
 
 
451
  if ( empty( $action ) )
452
- $action = $this->action;
453
 
454
  $redirect_to = isset( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
455
 
456
  switch ( $action ) {
457
  case 'lostpassword' :
458
  case 'retrievepassword' :
459
- $url = apply_filters( 'lostpassword_redirect', !empty( $redirect_to ) ? $redirect_to : Theme_My_Login::get_current_url( 'checkemail=confirm' ) );
460
  break;
461
  case 'register' :
462
- $url = apply_filters( 'registration_redirect', !empty( $redirect_to ) ? $redirect_to : Theme_My_Login::get_current_url( 'checkemail=registered' ) );
463
  break;
464
  case 'login' :
465
  default :
466
- $url = apply_filters( 'login_redirect', !empty( $redirect_to ) ? $redirect_to : admin_url(), $redirect_to, null );
467
  }
468
  return apply_filters( 'tml_redirect_url', $url, $action );
469
  }
@@ -473,9 +510,11 @@ class Theme_My_Login_Template {
473
  *
474
  * @since 6.0
475
  * @access public
 
 
476
  */
477
- function the_redirect_url() {
478
- echo esc_attr( $this->get_redirect_url() );
479
  }
480
 
481
  /**
@@ -484,8 +523,9 @@ class Theme_My_Login_Template {
484
  * @since 6.0
485
  * @access public
486
  */
487
- function the_instance() {
488
- echo esc_attr( $this->instance );
 
489
  }
490
 
491
  /**
@@ -497,8 +537,8 @@ class Theme_My_Login_Template {
497
  * @param string $value The value to retrieve
498
  * @return string|bool The value if it exists, false if not
499
  */
500
- function get_posted_value( $value ) {
501
- if ( $this->is_active && isset( $_REQUEST[$value] ) )
502
  return stripslashes( $_REQUEST[$value] );
503
  return false;
504
  }
@@ -511,77 +551,33 @@ class Theme_My_Login_Template {
511
  *
512
  * @param string $value The value to retrieve
513
  */
514
- function the_posted_value( $value ) {
515
  echo esc_attr( $this->get_posted_value( $value ) );
516
  }
517
 
518
  /**
519
- * Merges default template options with instance template options
520
  *
521
- * @since 6.0
522
  * @access public
523
  *
524
- * @param array $options Instance options
525
- */
526
- function load_options( $options = array() ) {
527
- $this->options = wp_parse_args( $options, array(
528
- 'instance' => '',
529
- 'default_action' => '',
530
- 'login_template' => '',
531
- 'register_template' => '',
532
- 'lostpassword_template' => '',
533
- 'resetpass_template' => '',
534
- 'user_template' => '',
535
- 'show_title' => true,
536
- 'show_log_link' => true,
537
- 'show_reg_link' => true,
538
- 'show_pass_link' => true,
539
- 'register_widget' => false,
540
- 'lostpassword_widget' => false,
541
- 'logged_in_widget' => true,
542
- 'show_gravatar' => true,
543
- 'gravatar_size' => 50,
544
- 'before_widget' => '',
545
- 'after_widget' => '',
546
- 'before_title' => '',
547
- 'after_title' => ''
548
- ) );
549
- }
550
-
551
- /**
552
- * PHP4 style constructor
553
- *
554
- * @since 6.0
555
- * @access public
556
- *
557
- * @param array $options Instance options
558
  */
559
- function Theme_My_Login_Template( $options = '' ) {
560
- $this->__construct( $options );
561
  }
562
 
563
  /**
564
- * PHP5 style constructor
565
  *
566
- * @since 6.0
567
  * @access public
568
  *
569
- * @param array $options Instance options
570
  */
571
- function __construct( $options = '' ) {
572
- global $theme_my_login;
573
-
574
- $this->load_options( $options );
575
-
576
- $this->action = isset( $this->options['default_action'] ) ? $this->options['default_action'] : '';
577
- $this->instance = $this->options['instance'];
578
- if ( $theme_my_login->request_instance == $this->instance ) {
579
- $this->is_active = true;
580
- $this->action = $theme_my_login->request_action;
581
- }
582
  }
583
  }
584
-
585
  endif; // Class exists
586
 
587
- ?>
2
  /**
3
  * Holds the Theme My Login template class
4
  *
5
+ * @package Theme_My_Login
6
+ * @since 6.0
7
  */
8
 
9
+ if ( ! class_exists( 'Theme_My_Login_Template' ) ) :
10
  /*
11
  * Theme My Login template class
12
  *
14
  *
15
  * @since 6.0
16
  */
17
+ class Theme_My_Login_Template extends Theme_My_Login_Abstract {
18
  /**
19
+ * Holds active instance flag
20
  *
21
+ * @since 6.3
22
+ * @access private
23
+ * @var bool
24
  */
25
+ private $is_active = false;
26
 
27
  /**
28
+ * Constructor
29
  *
30
  * @since 6.0
31
  * @access public
 
 
 
 
 
 
32
  *
33
+ * @param array $options Instance options
 
 
34
  */
35
+ public function __construct( $options = '' ) {
36
+ $options = wp_parse_args( $options );
37
+ $options = shortcode_atts( self::default_options(), $options );
38
 
39
+ $this->set_options( $options );
40
+ }
 
 
 
 
 
 
41
 
42
  /**
43
+ * Retrieves default options
44
  *
45
+ * @since 6.3
46
  * @access public
47
+ *
48
+ * @return array Default options
49
  */
50
+ public static function default_options() {
51
+ return array(
52
+ 'instance' => 0,
53
+ 'default_action' => '',
54
+ 'login_template' => '',
55
+ 'register_template' => '',
56
+ 'lostpassword_template' => '',
57
+ 'resetpass_template' => '',
58
+ 'user_template' => '',
59
+ 'show_title' => true,
60
+ 'show_log_link' => true,
61
+ 'show_reg_link' => true,
62
+ 'show_pass_link' => true,
63
+ 'logged_in_widget' => true,
64
+ 'logged_out_widget' => true,
65
+ 'show_gravatar' => true,
66
+ 'gravatar_size' => 50,
67
+ 'before_widget' => '',
68
+ 'after_widget' => '',
69
+ 'before_title' => '',
70
+ 'after_title' => ''
71
+ );
72
+ }
73
 
74
  /**
75
  * Displays output according to current action
79
  *
80
  * @return string HTML output
81
  */
82
+ public function display( $action = '' ) {
83
  if ( empty( $action ) )
84
+ $action = $this->get_option( 'default_action' );
85
 
86
  ob_start();
87
+ echo $this->get_option( 'before_widget' );
88
+ if ( $this->get_option( 'show_title' ) )
89
+ echo $this->get_option( 'before_title' ) . $this->get_title( $action ) . $this->get_option( 'after_title' ) . "\n";
90
  // Is there a specified template?
91
  if ( has_action( 'tml_display_' . $action ) ) {
92
  do_action_ref_array( 'tml_display_' . $action, array( &$this ) );
93
  } else {
94
  $template = array();
95
+ if ( is_user_logged_in() && 'login' == $action ) {
96
+ if ( $this->get_option( 'user_template' ) )
97
+ $template[] = $this->get_option( 'user_template' );
98
  $template[] = 'user-panel.php';
99
  } else {
100
  switch ( $action ) {
101
  case 'lostpassword':
102
  case 'retrievepassword':
103
+ if ( $this->get_option( 'lostpassword_template' ) )
104
+ $template[] = $this->get_option( 'lostpassword_template' );
105
  $template[] = 'lostpassword-form.php';
106
  break;
107
  case 'resetpass':
108
  case 'rp':
109
+ if ( $this->get_option( 'resetpass_template' ) )
110
+ $template[] = $this->get_option( 'resetpass_template' );
111
  $template[] = 'resetpass-form.php';
112
  break;
113
  case 'register':
114
+ if ( $this->get_option( 'register_template' ) )
115
+ $template[] = $this->get_option( 'register_template' );
116
  $template[] = 'register-form.php';
117
  break;
118
  case 'login':
119
  default :
120
+ if ( $this->get_option( 'login_template' ) )
121
+ $template[] = $this->get_option( 'login_template' );
122
  $template[] = 'login-form.php';
123
  }
124
  }
125
  $this->get_template( $template );
126
  }
127
+ echo $this->get_option( 'after_widget' ) . "\n";
128
  $output = ob_get_contents();
129
  ob_end_clean();
130
  return apply_filters_ref_array( 'tml_display', array( $output, $action, &$this ) );
139
  * @param string $action The action to retrieve. Defaults to current action.
140
  * @return string Title of $action
141
  */
142
+ public function get_title( $action = '' ) {
143
  if ( empty( $action ) )
144
+ $action = $this->get_option( 'default_action' );
145
+
146
+ if ( is_admin() )
147
+ return $title;
148
 
149
+ if ( is_user_logged_in() && 'login' == $action && $action == $this->get_option( 'default_action' ) ) {
150
+ $title = sprintf( __( 'Welcome, %s', 'theme-my-login' ), wp_get_current_user()->display_name );
 
151
  } else {
152
+ if ( $page_id = Theme_My_Login::get_page_id( $action ) ) {
153
+ $title = get_post_field( 'post_title', $page_id );
154
+ } else {
155
+ switch ( $action ) {
156
+ case 'register':
157
+ $title = __( 'Register' );
158
+ break;
159
+ case 'lostpassword':
160
+ case 'retrievepassword':
161
+ case 'resetpass':
162
+ case 'rp':
163
+ $title = __( 'Lost Password' );
164
+ break;
165
+ case 'login':
166
+ default:
167
+ $title = __( 'Log In' );
168
+ }
169
  }
170
  }
171
  return apply_filters( 'tml_title', $title, $action );
179
  *
180
  * @param string $action The action to retieve. Defaults to current action.
181
  */
182
+ public function the_title( $action = '' ) {
183
  echo $this->get_title( $action );
184
  }
185
 
189
  * @since 6.0
190
  * @access public
191
  */
192
+ public function get_errors() {
193
+ global $error;
194
+
195
+ $theme_my_login = Theme_My_Login::get_object();
196
 
197
  $wp_error =& $theme_my_login->errors;
198
 
200
  $wp_error = new WP_Error();
201
 
202
  // Incase a plugin uses $error rather than the $errors object
203
+ if ( ! empty( $error ) ) {
204
  $wp_error->add('error', $error);
205
  unset($error);
206
  }
207
 
208
  $output = '';
209
+ if ( $this->is_active() ) {
210
  if ( $wp_error->get_error_code() ) {
211
  $errors = '';
212
  $messages = '';
219
  $errors .= ' ' . $error . "<br />\n";
220
  }
221
  }
222
+ if ( ! empty( $errors ) )
223
  $output .= '<p class="error">' . apply_filters( 'login_errors', $errors ) . "</p>\n";
224
+ if ( ! empty( $messages ) )
225
  $output .= '<p class="message">' . apply_filters( 'login_messages', $messages ) . "</p>\n";
226
  }
227
  }
234
  * @since 6.0
235
  * @access public
236
  */
237
+ public function the_errors() {
238
  echo $this->get_errors();
239
  }
240
 
245
  * @access public
246
  *
247
  * @param string $action Action to retrieve
 
248
  * @return string The requested action URL
249
  */
250
+ public function get_action_url( $action = '' ) {
 
251
 
252
+ $instance = $this->get_option( 'instance' );
 
253
 
254
+ if ( $action == $this->get_option( 'default_action' ) ) {
255
+ $args = array();
256
+ if ( $instance )
257
+ $args['instance'] = $instance;
258
+ $url = Theme_My_Login_Common::get_current_url( $args );
259
  } else {
260
+ $url = Theme_My_Login::get_page_link( $action );
 
 
 
261
  }
262
 
263
  // Respect FORCE_SSL_LOGIN
274
  * @access public
275
  *
276
  * @param string $action Action to retrieve
 
277
  */
278
+ public function the_action_url( $action = 'login' ) {
279
+ echo esc_url( $this->get_action_url( $action ) );
280
  }
281
 
282
  /**
287
  *
288
  * @param array $args Optionally specify which actions to include/exclude. By default, all are included.
289
  */
290
+ public function get_action_links( $args = '' ) {
291
+ $args = wp_parse_args( $args, array(
292
+ 'login' => true,
293
+ 'register' => true,
294
+ 'lostpassword' => true
295
+ ) );
296
+
297
  $action_links = array();
298
+ if ( $args['login'] && $this->get_option( 'show_log_link' ) ) {
299
+ $action_links[] = array(
300
+ 'title' => $this->get_title( 'login' ),
301
+ 'url' => $this->get_action_url( 'login' )
302
+ );
303
+ }
304
+ if ( $args['register'] && $this->get_option( 'show_reg_link' ) && get_option( 'users_can_register' ) ) {
305
+ $action_links[] = array(
306
+ 'title' => $this->get_title( 'register' ),
307
+ 'url' => $this->get_action_url( 'register' )
308
+ );
309
+ }
310
+ if ( $args['lostpassword'] && $this->get_option( 'show_pass_link' ) ) {
311
+ $action_links[] = array(
312
+ 'title' => $this->get_title( 'lostpassword' ),
313
+ 'url' => $this->get_action_url( 'lostpassword' )
314
+ );
315
+ }
316
  return apply_filters( 'tml_action_links', $action_links, $args );
317
  }
318
 
324
  *
325
  * @param array $args Optionally specify which actions to include/exclude. By default, all are included.
326
  */
327
+ public function the_action_links( $args = '' ) {
328
  if ( $action_links = $this->get_action_links( $args ) ) {
329
  echo '<ul class="tml-action-links">' . "\n";
330
  foreach ( (array) $action_links as $link ) {
342
  *
343
  * @return array Logged-in user links
344
  */
345
+ public static function get_user_links() {
346
  $user_links = array(
347
+ array(
348
+ 'title' => __( 'Dashboard' ),
349
+ 'url' => admin_url() ),
350
+ array(
351
+ 'title' => __( 'Profile' ),
352
+ 'url' => admin_url( 'profile.php' )
353
+ )
354
+ );
355
  return apply_filters( 'tml_user_links', $user_links );
356
  }
357
 
361
  * @since 6.0
362
  * @access public
363
  */
364
+ public function the_user_links() {
365
  echo '<ul class="tml-user-links">';
366
+ foreach ( (array) self::get_user_links() as $link ) {
367
+ echo '<li><a href="' . esc_url( $link['url'] ) . '">' . esc_html( $link['title'] ) . '</a></li>' . "\n";
 
 
368
  }
369
+ echo '<li><a href="' . wp_logout_url() . '">' . self::get_title( 'logout' ) . '</a></li>' . "\n";
370
  echo '</ul>';
371
  }
372
 
376
  * @since 6.0
377
  * @access public
378
  */
379
+ public function the_user_avatar( $size = '' ) {
 
380
  if ( empty( $size ) )
381
+ $size = $this->get_option( 'gravatar_size', 50 );
382
+
383
+ $current_user = wp_get_current_user();
384
+
385
  echo get_avatar( $current_user->ID, $size );
386
  }
387
 
394
  * @param string $action Action to retrieve
395
  * @return string The requested template message
396
  */
397
+ public static function get_action_template_message( $action = '' ) {
398
  switch ( $action ) {
399
  case 'register':
400
+ $message = __( 'Register For This Site' );
401
  break;
402
  case 'lostpassword':
403
+ $message = __( 'Please enter your username or email address. You will receive a link to create a new password via email.' );
404
  break;
405
  case 'resetpass':
406
+ $message = __( 'Enter your new password below.' );
407
  break;
408
  default:
409
  $message = '';
423
  * @param string $before_message Text/HTML to add before the message
424
  * @param string $after_message Text/HTML to add after the message
425
  */
426
+ public function the_action_template_message( $action = 'login', $before_message = '<p class="message">', $after_message = '</p>' ) {
427
+ if ( $message = self::get_action_template_message( $action ) )
428
  echo $before_message . $message . $after_message;
429
  }
430
 
435
  * @access public
436
  *
437
  * @param string|array $template_names The template(s) to locate
 
438
  * @param bool $load If true, the template will be included if found
439
  * @param array $args Array of extra variables to make available to template
440
  * @return string|bool Template path if found, false if not
441
  */
442
+ public function get_template( $template_names, $load = true, $args = array() ) {
443
+
444
+ $theme_my_login = Theme_My_Login::get_object();
445
 
446
+ // User friendly access to this
447
  $template =& $this;
448
 
449
  // Easy access to current user
450
  $current_user = wp_get_current_user();
451
 
 
 
 
452
  extract( apply_filters_ref_array( 'tml_template_args', array( $args, &$this ) ) );
453
 
454
+ if ( ! is_array( $template_names ) )
455
  $template_names = array( $template_names );
456
 
457
+ if ( ! $found_template = locate_template( $template_names ) ) {
458
  foreach ( $template_names as $template_name ) {
459
+ if ( file_exists( WP_PLUGIN_DIR . '/theme-my-login/templates/' . $template_name ) ) {
460
+ $found_template = WP_PLUGIN_DIR . '/theme-my-login/templates/' . $template_name;
461
  break;
462
  }
463
  }
464
  }
465
 
466
+ $found_template = apply_filters_ref_array( 'tml_template', array( $found_template, $template_names, &$this ) );
467
 
468
  if ( $load && $found_template ) {
469
  include( $found_template );
481
  * @param string $action The action
482
  * @return string The redirect URL
483
  */
484
+ public function get_redirect_url( $action = '' ) {
485
+
486
+ $theme_my_login = Theme_My_Login::get_object();
487
+
488
  if ( empty( $action ) )
489
+ $action = $this->get_option( 'default_action' );
490
 
491
  $redirect_to = isset( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
492
 
493
  switch ( $action ) {
494
  case 'lostpassword' :
495
  case 'retrievepassword' :
496
+ $url = apply_filters( 'lostpassword_redirect', ! empty( $redirect_to ) ? $redirect_to : Theme_My_Login::get_page_link( 'login', 'checkemail=confirm' ) );
497
  break;
498
  case 'register' :
499
+ $url = apply_filters( 'registration_redirect', ! empty( $redirect_to ) ? $redirect_to : Theme_My_Login::get_page_link( 'login', 'checkemail=registered' ) );
500
  break;
501
  case 'login' :
502
  default :
503
+ $url = apply_filters( 'login_redirect', ! empty( $redirect_to ) ? $redirect_to : admin_url(), $redirect_to, null );
504
  }
505
  return apply_filters( 'tml_redirect_url', $url, $action );
506
  }
510
  *
511
  * @since 6.0
512
  * @access public
513
+ *
514
+ * @param string $action The action
515
  */
516
+ public function the_redirect_url( $action = '' ) {
517
+ echo esc_attr( $this->get_redirect_url( $action ) );
518
  }
519
 
520
  /**
523
  * @since 6.0
524
  * @access public
525
  */
526
+ public function the_instance() {
527
+ if ( $this->get_option( 'instance' ) )
528
+ echo esc_attr( $this->get_option( 'instance' ) );
529
  }
530
 
531
  /**
537
  * @param string $value The value to retrieve
538
  * @return string|bool The value if it exists, false if not
539
  */
540
+ public function get_posted_value( $value ) {
541
+ if ( $this->is_active() && isset( $_REQUEST[$value] ) )
542
  return stripslashes( $_REQUEST[$value] );
543
  return false;
544
  }
551
  *
552
  * @param string $value The value to retrieve
553
  */
554
+ public function the_posted_value( $value ) {
555
  echo esc_attr( $this->get_posted_value( $value ) );
556
  }
557
 
558
  /**
559
+ * Returns active status
560
  *
561
+ * @since 6.3
562
  * @access public
563
  *
564
+ * @return bool True if instance is active, false if not
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
565
  */
566
+ public function is_active() {
567
+ return $this->is_active;
568
  }
569
 
570
  /**
571
+ * Sets active status
572
  *
573
+ * @since 6.3
574
  * @access public
575
  *
576
+ * @param bool $active Active status
577
  */
578
+ public function set_active( $active = true ) {
579
+ $this->is_active = $active;
 
 
 
 
 
 
 
 
 
580
  }
581
  }
 
582
  endif; // Class exists
583
 
 
includes/class-theme-my-login-widget.php CHANGED
@@ -2,11 +2,10 @@
2
  /**
3
  * Holds the Theme My Login widget class
4
  *
5
- * @package Theme My Login
6
- * @subpackage Widget
7
  */
8
 
9
- if ( !class_exists( 'Theme_My_Login_Widget' ) ) :
10
  /*
11
  * Theme My Login widget class
12
  *
@@ -14,15 +13,18 @@ if ( !class_exists( 'Theme_My_Login_Widget' ) ) :
14
  */
15
  class Theme_My_Login_Widget extends WP_Widget {
16
  /**
17
- * PHP4 style constructor
18
  *
19
  * @since 6.0
20
  * @access public
21
  */
22
- function Theme_My_Login_Widget() {
23
- $widget_options = array( 'classname' => 'widget_theme_my_login', 'description' => __( 'A login form for your blog.', 'theme-my-login' ) );
24
- $this->WP_Widget( 'theme-my-login', __( 'Theme My Login', 'theme-my-login' ), $widget_options );
25
- }
 
 
 
26
 
27
  /**
28
  * Displays the widget
@@ -33,84 +35,113 @@ class Theme_My_Login_Widget extends WP_Widget {
33
  * @param array $args Display arguments including before_title, after_title, before_widget, and after_widget.
34
  * @param array $instance The settings for the particular instance of the widget
35
  */
36
- function widget( $args, $instance ) {
37
- global $theme_my_login;
 
38
 
39
- if ( is_user_logged_in() && !$instance['logged_in_widget'] )
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  return;
 
 
 
 
 
41
  $args = array_merge( $args, $instance );
 
42
  echo $theme_my_login->shortcode( $args );
43
  }
44
 
45
  /**
46
- * Updates the widget
47
- *
48
- * @since 6.0
49
- * @access public
50
- */
51
- function update( $new_instance, $old_instance ) {
52
- $instance = $old_instance;
53
- $instance['default_action'] = in_array( $new_instance['default_action'], array( 'login', 'register', 'lostpassword' ) ) ? $new_instance['default_action'] : 'login';
54
- $instance['logged_in_widget'] = empty( $new_instance['logged_in_widget'] ) ? false : true;
55
- $instance['show_title'] = empty( $new_instance['show_title'] ) ? false : true;
56
- $instance['show_log_link'] = empty( $new_instance['show_log_link'] ) ? false: true;
57
- $instance['show_reg_link'] = empty( $new_instance['show_reg_link'] ) ? false: true;
58
- $instance['show_pass_link'] = empty( $new_instance['show_pass_link'] ) ? false: true;
59
- $instance['show_gravatar'] = empty( $new_instance['show_gravatar'] ) ? false : true;
60
- $instance['gravatar_size'] = absint( $new_instance['gravatar_size'] );
61
- $instance['register_widget'] = empty( $new_instance['register_widget'] ) ? false : true;
62
- $instance['lostpassword_widget'] = empty( $new_instance['lostpassword_widget'] ) ? false : true;
63
- return $instance;
64
- }
65
 
66
  /**
67
- * Displays the widget admin form
68
- *
69
- * @since 6.0
70
- * @access public
71
- */
72
- function form( $instance ) {
73
- $defaults = array(
74
- 'default_action' => 'login',
75
- 'logged_in_widget' => 1,
76
- 'show_title' => 1,
77
- 'show_log_link' => 1,
78
- 'show_reg_link' => 1,
79
- 'show_pass_link' => 1,
80
- 'show_gravatar' => 1,
81
- 'gravatar_size' => 50,
82
- 'register_widget' => 1,
83
- 'lostpassword_widget' => 1
84
- );
85
-
86
- $instance = wp_parse_args( $instance, $defaults );
87
- $actions = array( 'login' => __( 'Login', 'theme-my-login' ), 'register' => __( 'Register', 'theme-my-login' ), 'lostpassword' => __( 'Lost Password', 'theme-my-login' ) );
88
- echo '<p>' . __( 'Default Action', 'theme-my-login' ) . '<br /><select name="' . $this->get_field_name( 'default_action' ) . '" id="' . $this->get_field_id( 'default_action' ) . '">';
89
- foreach ( $actions as $action => $title ) {
90
- $is_selected = ( $instance['default_action'] == $action ) ? ' selected="selected"' : '';
91
- echo '<option value="' . $action . '"' . $is_selected . '>' . $title . '</option>';
92
- }
93
- echo '</select></p>' . "\n";
94
- $is_checked = ( empty( $instance['logged_in_widget'] ) ) ? '' : 'checked="checked" ';
95
- echo '<p><input name="' . $this->get_field_name( 'logged_in_widget' ) . '" type="checkbox" id="' . $this->get_field_id( 'logged_in_widget' ) . '" value="1" ' . $is_checked . '/> <label for="' . $this->get_field_id( 'logged_in_widget' ) . '">' . __( 'Show When Logged In', 'theme-my-login' ) . '</label></p>' . "\n";
96
- $is_checked = ( empty( $instance['show_title'] ) ) ? '' : 'checked="checked" ';
97
- echo '<p><input name="' . $this->get_field_name( 'show_title' ) . '" type="checkbox" id="' . $this->get_field_id( 'show_title' ) . '" value="1" ' . $is_checked . '/> <label for="' . $this->get_field_id( 'show_title' ) . '">' . __( 'Show Title', 'theme-my-login' ) . '</label></p>' . "\n";
98
- $is_checked = ( empty( $instance['show_log_link'] ) ) ? '' : 'checked="checked" ';
99
- echo '<p><input name="' . $this->get_field_name( 'show_log_link' ) . '" type="checkbox" id="' . $this->get_field_id( 'show_log_link' ) . '" value="1" ' . $is_checked . '/> <label for="' . $this->get_field_id( 'show_log_link' ) . '">' . __( 'Show Login Link', 'theme-my-login' ) . '</label></p>' . "\n";
100
- $is_checked = ( empty( $instance['show_reg_link'] ) ) ? '' : 'checked="checked" ';
101
- echo '<p><input name="' . $this->get_field_name( 'show_reg_link' ) . '" type="checkbox" id="' . $this->get_field_id( 'show_reg_link' ) . '" value="1" ' . $is_checked . '/> <label for="' . $this->get_field_id( 'show_reg_link' ) . '">' . __( 'Show Register Link', 'theme-my-login' ) . '</label></p>' . "\n";
102
- $is_checked = ( empty( $instance['show_pass_link'] ) ) ? '' : 'checked="checked" ';
103
- echo '<p><input name="' . $this->get_field_name( 'show_pass_link' ) . '" type="checkbox" id="' . $this->get_field_id( 'show_pass_link' ) . '" value="1" ' . $is_checked . '/> <label for="' . $this->get_field_id( 'show_pass_link' ) . '">' . __( 'Show Lost Password Link', 'theme-my-login' ) . '</label></p>' . "\n";
104
- $is_checked = ( empty( $instance['show_gravatar'] ) ) ? '' : 'checked="checked" ';
105
- echo '<p><input name="' . $this->get_field_name( 'show_gravatar' ) . '" type="checkbox" id="' . $this->get_field_id( 'show_gravatar' ) . '" value="1" ' . $is_checked . '/> <label for="' . $this->get_field_id( 'show_gravatar' ) . '">' . __( 'Show Gravatar', 'theme-my-login' ) . '</label></p>' . "\n";
106
- echo '<p>' . __( 'Gravatar Size', 'theme-my-login' ) . ': <input name="' . $this->get_field_name( 'gravatar_size' ) . '" type="text" id="' . $this->get_field_id( 'gravatar_size' ) . '" value="' . $instance['gravatar_size'] . '" size="3" /> <label for="' . $this->get_field_id( 'gravatar_size' ) . '"></label></p>' . "\n";
107
- $is_checked = ( empty( $instance['register_widget'] ) ) ? '' : 'checked="checked" ';
108
- echo '<p><input name="' . $this->get_field_name( 'register_widget' ) . '" type="checkbox" id="' . $this->get_field_id( 'register_widget' ) . '" value="1" ' . $is_checked . '/> <label for="' . $this->get_field_id( 'register_widget' ) . '">' . __( 'Allow Registration', 'theme-my-login' ) . '</label></p>' . "\n";
109
- $is_checked = ( empty( $instance['lostpassword_widget'] ) ) ? '' : 'checked="checked" ';
110
- echo '<p><input name="' . $this->get_field_name( 'lostpassword_widget' ) . '" type="checkbox" id="' . $this->get_field_id( 'lostpassword_widget' ) . '" value="1" ' . $is_checked . '/> <label for="' . $this->get_field_id( 'lostpassword_widget' ) . '">' . __( 'Allow Password Recovery', 'theme-my-login' ) . '</label></p>' . "\n";
111
- }
112
- }
113
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
114
  endif; // Class exists
115
 
116
- ?>
2
  /**
3
  * Holds the Theme My Login widget class
4
  *
5
+ * @package Theme_My_Login
 
6
  */
7
 
8
+ if ( ! class_exists( 'Theme_My_Login_Widget' ) ) :
9
  /*
10
  * Theme My Login widget class
11
  *
13
  */
14
  class Theme_My_Login_Widget extends WP_Widget {
15
  /**
16
+ * Constructor
17
  *
18
  * @since 6.0
19
  * @access public
20
  */
21
+ public function __construct() {
22
+ $widget_options = array(
23
+ 'classname' => 'widget_theme_my_login',
24
+ 'description' => __( 'A login form for your blog.', 'theme-my-login' )
25
+ );
26
+ $this->WP_Widget( 'theme-my-login', __( 'Theme My Login', 'theme-my-login' ), $widget_options );
27
+ }
28
 
29
  /**
30
  * Displays the widget
35
  * @param array $args Display arguments including before_title, after_title, before_widget, and after_widget.
36
  * @param array $instance The settings for the particular instance of the widget
37
  */
38
+ public function widget( $args, $instance ) {
39
+
40
+ $theme_my_login = Theme_My_Login::get_object();
41
 
42
+ $instance = wp_parse_args( $instance, array(
43
+ 'default_action' => 'login',
44
+ 'logged_in_widget' => true,
45
+ 'logged_out_widget' => true,
46
+ 'show_title' => true,
47
+ 'show_log_link' => true,
48
+ 'show_reg_link' => true,
49
+ 'show_pass_link' => true,
50
+ 'show_gravatar' => true,
51
+ 'gravatar_size' => 50
52
+ ) );
53
+
54
+ // Show if logged in?
55
+ if ( is_user_logged_in() && ! $instance['logged_in_widget'] )
56
  return;
57
+
58
+ // Show if logged out?
59
+ if ( ! is_user_logged_in() && ! $instance['logged_out_widget'] )
60
+ return;
61
+
62
  $args = array_merge( $args, $instance );
63
+
64
  echo $theme_my_login->shortcode( $args );
65
  }
66
 
67
  /**
68
+ * Updates the widget
69
+ *
70
+ * @since 6.0
71
+ * @access public
72
+ */
73
+ public function update( $new_instance, $old_instance ) {
74
+ $instance = $old_instance;
75
+ $instance['default_action'] = in_array( $new_instance['default_action'], array( 'login', 'register', 'lostpassword' ) ) ? $new_instance['default_action'] : 'login';
76
+ $instance['logged_in_widget'] = ! empty( $new_instance['logged_in_widget'] );
77
+ $instance['logged_out_widget'] = ! empty( $new_instance['logged_out_widget'] );
78
+ $instance['show_title'] = ! empty( $new_instance['show_title'] );
79
+ $instance['show_log_link'] = ! empty( $new_instance['show_log_link'] );
80
+ $instance['show_reg_link'] = ! empty( $new_instance['show_reg_link'] );
81
+ $instance['show_pass_link'] = ! empty( $new_instance['show_pass_link'] );
82
+ $instance['show_gravatar'] = ! empty( $new_instance['show_gravatar'] );
83
+ $instance['gravatar_size'] = absint( $new_instance['gravatar_size'] );
84
+ return $instance;
85
+ }
 
86
 
87
  /**
88
+ * Displays the widget admin form
89
+ *
90
+ * @since 6.0
91
+ * @access public
92
+ */
93
+ public function form( $instance ) {
94
+ $defaults = array(
95
+ 'default_action' => 'login',
96
+ 'logged_in_widget' => 1,
97
+ 'logged_out_widget' => 1,
98
+ 'show_title' => 1,
99
+ 'show_log_link' => 1,
100
+ 'show_reg_link' => 1,
101
+ 'show_pass_link' => 1,
102
+ 'show_gravatar' => 1,
103
+ 'gravatar_size' => 50,
104
+ 'register_widget' => 1,
105
+ 'lostpassword_widget' => 1
106
+ );
107
+ $instance = wp_parse_args( $instance, $defaults );
108
+
109
+ $actions = array(
110
+ 'login' => __( 'Login', 'theme-my-login' ),
111
+ 'register' => __( 'Register', 'theme-my-login' ),
112
+ 'lostpassword' => __( 'Lost Password', 'theme-my-login' )
113
+ );
114
+
115
+ echo '<p>' . __( 'Default Action', 'theme-my-login' ) . '<br /><select name="' . $this->get_field_name( 'default_action' ) . '" id="' . $this->get_field_id( 'default_action' ) . '">';
116
+ foreach ( $actions as $action => $title ) {
117
+ $is_selected = ( $instance['default_action'] == $action ) ? ' selected="selected"' : '';
118
+ echo '<option value="' . $action . '"' . $is_selected . '>' . $title . '</option>';
119
+ }
120
+ echo '</select></p>' . "\n";
121
+
122
+ $is_checked = ( empty( $instance['logged_in_widget'] ) ) ? '' : 'checked="checked" ';
123
+ echo '<p><input name="' . $this->get_field_name( 'logged_in_widget' ) . '" type="checkbox" id="' . $this->get_field_id( 'logged_in_widget' ) . '" value="1" ' . $is_checked . '/> <label for="' . $this->get_field_id( 'logged_in_widget' ) . '">' . __( 'Show When Logged In', 'theme-my-login' ) . '</label></p>' . "\n";
124
+
125
+ $is_checked = ( empty( $instance['logged_out_widget'] ) ) ? '' : 'checked="checked" ';
126
+ echo '<p><input name="' . $this->get_field_name( 'logged_out_widget' ) . '" type="checkbox" id="' . $this->get_field_id( 'logged_out_widget' ) . '" value="1" ' . $is_checked . '/> <label for="' . $this->get_field_id( 'logged_out_widget' ) . '">' . __( 'Show When Logged Out', 'theme-my-login' ) . '</label></p>' . "\n";
 
 
 
 
 
 
 
127
 
128
+ $is_checked = ( empty( $instance['show_title'] ) ) ? '' : 'checked="checked" ';
129
+ echo '<p><input name="' . $this->get_field_name( 'show_title' ) . '" type="checkbox" id="' . $this->get_field_id( 'show_title' ) . '" value="1" ' . $is_checked . '/> <label for="' . $this->get_field_id( 'show_title' ) . '">' . __( 'Show Title', 'theme-my-login' ) . '</label></p>' . "\n";
130
+
131
+ $is_checked = ( empty( $instance['show_log_link'] ) ) ? '' : 'checked="checked" ';
132
+ echo '<p><input name="' . $this->get_field_name( 'show_log_link' ) . '" type="checkbox" id="' . $this->get_field_id( 'show_log_link' ) . '" value="1" ' . $is_checked . '/> <label for="' . $this->get_field_id( 'show_log_link' ) . '">' . __( 'Show Login Link', 'theme-my-login' ) . '</label></p>' . "\n";
133
+
134
+ $is_checked = ( empty( $instance['show_reg_link'] ) ) ? '' : 'checked="checked" ';
135
+ echo '<p><input name="' . $this->get_field_name( 'show_reg_link' ) . '" type="checkbox" id="' . $this->get_field_id( 'show_reg_link' ) . '" value="1" ' . $is_checked . '/> <label for="' . $this->get_field_id( 'show_reg_link' ) . '">' . __( 'Show Register Link', 'theme-my-login' ) . '</label></p>' . "\n";
136
+
137
+ $is_checked = ( empty( $instance['show_pass_link'] ) ) ? '' : 'checked="checked" ';
138
+ echo '<p><input name="' . $this->get_field_name( 'show_pass_link' ) . '" type="checkbox" id="' . $this->get_field_id( 'show_pass_link' ) . '" value="1" ' . $is_checked . '/> <label for="' . $this->get_field_id( 'show_pass_link' ) . '">' . __( 'Show Lost Password Link', 'theme-my-login' ) . '</label></p>' . "\n";
139
+
140
+ $is_checked = ( empty( $instance['show_gravatar'] ) ) ? '' : 'checked="checked" ';
141
+ echo '<p><input name="' . $this->get_field_name( 'show_gravatar' ) . '" type="checkbox" id="' . $this->get_field_id( 'show_gravatar' ) . '" value="1" ' . $is_checked . '/> <label for="' . $this->get_field_id( 'show_gravatar' ) . '">' . __( 'Show Gravatar', 'theme-my-login' ) . '</label></p>' . "\n";
142
+
143
+ echo '<p>' . __( 'Gravatar Size', 'theme-my-login' ) . ': <input name="' . $this->get_field_name( 'gravatar_size' ) . '" type="text" id="' . $this->get_field_id( 'gravatar_size' ) . '" value="' . $instance['gravatar_size'] . '" size="3" /> <label for="' . $this->get_field_id( 'gravatar_size' ) . '"></label></p>' . "\n";
144
+ }
145
+ }
146
  endif; // Class exists
147
 
 
includes/class-theme-my-login.php CHANGED
@@ -2,10 +2,11 @@
2
  /**
3
  * Holds the Theme My Login class
4
  *
5
- * @package Theme My Login
 
6
  */
7
 
8
- if ( !class_exists( 'Theme_My_Login' ) ) :
9
  /*
10
  * Theme My Login class
11
  *
@@ -13,15 +14,15 @@ if ( !class_exists( 'Theme_My_Login' ) ) :
13
  *
14
  * @since 6.0
15
  */
16
- class Theme_My_Login {
17
  /**
18
- * Holds options object
19
  *
20
- * @since 6.1
21
- * @access public
22
- * @var object
23
  */
24
- var $options;
25
 
26
  /**
27
  * Holds errors object
@@ -30,16 +31,25 @@ class Theme_My_Login {
30
  * @access public
31
  * @var object
32
  */
33
- var $errors;
 
 
 
 
 
 
 
 
 
34
 
35
  /**
36
- * Holds total instances of TML
37
  *
38
  * @since 6.0
39
  * @access public
40
- * @var int
41
  */
42
- var $count = 0;
43
 
44
  /**
45
  * Holds current instance being requested
@@ -48,115 +58,117 @@ class Theme_My_Login {
48
  * @access public
49
  * @var int
50
  */
51
- var $request_instance;
52
 
53
  /**
54
- * Holds current action being requested
55
  *
56
- * @since 6.0
57
- * @access public
58
- * @var string
59
  */
60
- var $request_action;
61
 
62
  /**
63
- * PHP4 style constructor
64
  *
65
- * @since 6.0
66
  * @access public
 
67
  */
68
- function Theme_My_Login() {
69
- $this->__construct();
70
  }
71
 
72
  /**
73
- * PHP5 constructor
74
  *
75
- * @since 6.0
76
  * @access public
 
 
77
  */
78
- function __construct() {
79
- $this->request_action = isset( $_REQUEST['action'] ) ? sanitize_user( $_REQUEST['action'], true ) : '';
80
- $this->request_instance = isset( $_REQUEST['instance'] ) ? sanitize_user( $_REQUEST['instance'], true ) : '';
81
-
82
- $this->init_options();
83
-
84
- // Load options again to allow modules to tap in
85
- add_action( 'tml_modules_loaded', array( &$this, 'init_options' ), 0 );
86
-
87
- add_filter( 'rewrite_rules_array', array( &$this, 'rewrite_rules_array' ) );
88
-
89
- add_action( 'init', array( &$this, 'init' ) );
90
- add_action( 'widgets_init', array( &$this, 'widgets_init' ) );
91
- add_action( 'parse_request', array( &$this, 'parse_request' ) );
92
-
93
- add_action( 'wp', array( &$this, 'wp' ) );
94
-
95
- add_action( 'wp_head', array( &$this, 'login_head' ) );
96
- add_action( 'wp_print_footer_scripts', array( &$this, 'print_footer_scripts' ) );
97
-
98
- add_filter( 'the_title', array( &$this, 'the_title' ), 10, 2 );
99
- add_filter( 'single_post_title', array( &$this, 'single_post_title' ) );
100
- add_filter( 'wp_setup_nav_menu_item', array( &$this, 'wp_setup_nav_menu_item' ) );
101
-
102
- add_filter( 'site_url', array( &$this, 'site_url' ), 10, 3 );
103
- add_filter( 'page_link', array( &$this, 'page_link' ), 10, 2 );
104
- add_filter( 'tml_redirect_url', array( &$this, 'tml_redirect_url' ), 10, 2 );
105
-
106
- add_filter( 'wp_list_pages_excludes', array( &$this, 'wp_list_pages_excludes' ) );
107
- add_filter( 'wp_list_pages', array( &$this, 'wp_list_pages' ) );
108
-
109
- add_action( 'wp_authenticate', array( &$this, 'wp_authenticate' ) );
110
-
111
- add_action( 'tml_new_user_registered', 'wp_new_user_notification', 10, 2 );
112
- add_action( 'tml_user_password_changed', 'wp_password_change_notification' );
113
-
114
- add_shortcode( 'theme-my-login', array( &$this, 'shortcode' ) );
115
  }
116
 
117
  /**
118
- * Initializes plugin options object
119
  *
120
- * @since 6.1
121
  * @access public
 
 
122
  */
123
- function init_options() {
124
- $this->options = new WDBJ_Plugin_Options( 'theme_my_login', apply_filters( 'tml_init_options', array(
125
- 'page_id' => 0,
126
- 'show_page' => 1,
127
- 'enable_css' => 1,
128
- 'email_login' => 1,
129
- 'active_modules' => array(),
130
- 'permalinks' => array(),
131
- 'initial_nag' => 1
132
- ) ) );
133
  }
134
 
135
  /**
136
- * Handles permalink rewrite rules
137
  *
138
- * @since 6.2.2
139
  * @access public
140
- *
141
- * @param array $rules Rewrite rules
142
- * @return array Rewrite rules
143
  */
144
- function rewrite_rules_array( $rules ) {
145
- if ( defined( 'WP_INSTALLING' ) )
146
- return $rules;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147
 
148
- $page =& get_page( $this->options->get_option( 'page_id' ) );
149
 
150
- $page_uri = get_page_uri( $page->ID );
 
 
151
 
152
- $tml_rules = array();
153
- foreach ( $this->options->get_option( 'permalinks', array() ) as $action => $slug ) {
154
- if ( !empty( $slug ) ) {
155
- $slug = str_replace( $page->post_name, $slug, $page_uri );
156
- $tml_rules["{$slug}/?$"] = "index.php?page_id={$page->ID}&action={$action}";
157
- }
 
 
 
 
158
  }
159
- return array_merge( $tml_rules, $rules );
160
  }
161
 
162
  /**
@@ -165,17 +177,26 @@ class Theme_My_Login {
165
  * @since 6.0
166
  * @access public
167
  */
168
- function init() {
169
- global $wp;
170
-
171
- load_plugin_textdomain( 'theme-my-login', '', TML_DIRNAME . '/language' );
 
 
 
 
 
 
 
 
 
 
 
172
 
173
  $this->errors = new WP_Error();
174
 
175
- if ( $this->options->get_option( 'enable_css' ) )
176
- wp_enqueue_style( 'theme-my-login', Theme_My_Login::get_stylesheet(), false, $this->options->get_option( 'version' ) );
177
-
178
- $wp->add_query_var( 'action' );
179
  }
180
 
181
  /**
@@ -184,62 +205,93 @@ class Theme_My_Login {
184
  * @since 6.0
185
  * @access public
186
  */
187
- function widgets_init() {
188
  if ( class_exists( 'Theme_My_Login_Widget' ) )
189
  register_widget( 'Theme_My_Login_Widget' );
190
  }
191
 
192
  /**
193
- * Determine if specified page is the login page
194
  *
195
- * @since 6.0
196
- * @access public
197
  *
198
- * @param int $page_id Optional. The page ID (Defaults to current page)
199
  */
200
- function is_login_page( $page_id = '' ) {
201
- if ( empty( $page_id ) ) {
202
- global $wp_query;
203
- if ( $wp_query->is_page )
204
- $page_id = $wp_query->get_queried_object_id();
 
 
 
 
 
 
 
 
 
205
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
206
 
207
- $is_login_page = ( $page_id == $this->options->get_option( 'page_id' ) );
 
208
 
209
- return apply_filters( 'tml_is_login_page', $is_login_page, $page_id );
 
 
 
 
 
 
 
 
 
210
  }
211
 
212
  /**
213
  * Proccesses the request
214
  *
215
- * Callback for "parse_request" hook in WP::parse_request()
216
  *
217
- * @see WP::parse_request()
218
- * @since 6.0
219
  * @access public
220
  */
221
- function parse_request( &$wp ) {
222
- $errors =& $this->errors;
223
- $action =& $this->request_action;
224
- if ( isset( $wp->query_vars['action'] ) ) {
225
- $action = $wp->query_vars['action'];
226
- unset( $wp->query_vars['action'] );
227
- }
228
- $instance =& $this->request_instance;
229
-
230
- if ( is_admin() )
231
- return;
232
 
233
  do_action_ref_array( 'tml_request', array( &$this ) );
234
 
235
  // allow plugins to override the default actions, and to add extra actions if they want
236
- do_action( 'login_form_' . $action );
237
 
238
- if ( has_action( 'tml_request_' . $action ) ) {
239
- do_action_ref_array( 'tml_request_' . $action, array( &$this ) );
240
  } else {
241
  $http_post = ( 'POST' == $_SERVER['REQUEST_METHOD'] );
242
- switch ( $action ) {
243
  case 'postpass' :
244
  global $wp_hasher;
245
 
@@ -265,56 +317,52 @@ class Theme_My_Login {
265
 
266
  $redirect_to = apply_filters( 'logout_redirect', site_url( 'wp-login.php?loggedout=true' ), isset( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '', $user );
267
  wp_safe_redirect( $redirect_to );
268
- exit();
269
  break;
270
  case 'lostpassword' :
271
  case 'retrievepassword' :
272
  if ( $http_post ) {
273
- $errors = $this->retrieve_password();
274
- if ( !is_wp_error( $errors ) ) {
275
- $redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : Theme_My_Login::get_current_url( 'checkemail=confirm' );
276
- if ( !empty( $instance ) )
277
- $redirect_to = add_query_arg( 'instance', $instance, $redirect_to );
278
  wp_safe_redirect( $redirect_to );
279
- exit();
280
  }
281
  }
282
 
283
  if ( isset( $_REQUEST['error'] ) && 'invalidkey' == $_REQUEST['error'] )
284
- $errors->add( 'invalidkey', __( 'Sorry, that key does not appear to be valid.', 'theme-my-login' ) );
285
 
286
  do_action( 'lost_password' );
287
  break;
288
  case 'resetpass' :
289
  case 'rp' :
290
- $user = $this->check_password_reset_key( $_REQUEST['key'], $_REQUEST['login'] );
291
 
292
  if ( is_wp_error( $user ) ) {
293
- wp_redirect( Theme_My_Login::get_current_url( 'action=lostpassword&error=invalidkey' ) );
 
294
  exit;
295
  }
296
 
297
- $errors = '';
298
-
299
  if ( isset( $_POST['pass1'] ) && $_POST['pass1'] != $_POST['pass2'] ) {
300
- $errors = new WP_Error( 'password_reset_mismatch', __( 'The passwords do not match.', 'theme-my-login' ) );
301
- } elseif ( isset( $_POST['pass1'] ) && !empty( $_POST['pass1'] ) ) {
302
- $this->reset_password( $user, $_POST['pass1'] );
303
 
304
- $redirect_to = Theme_My_Login::get_current_url( 'resetpass=complete' );
305
- if ( isset( $_REQUEST['instance'] ) & !empty( $_REQUEST['instance'] ) )
306
- $redirect_to = add_query_arg( 'instance', $_REQUEST['instance'], $redirect_to );
307
  wp_safe_redirect( $redirect_to );
308
- exit();
309
  }
310
 
311
  wp_enqueue_script( 'utils' );
312
  wp_enqueue_script( 'user-profile' );
313
  break;
314
  case 'register' :
315
- if ( !get_option( 'users_can_register' ) ) {
316
- wp_redirect( Theme_My_Login::get_current_url( 'registration=disabled' ) );
317
- exit();
 
318
  }
319
 
320
  $user_login = '';
@@ -323,14 +371,11 @@ class Theme_My_Login {
323
  $user_login = $_POST['user_login'];
324
  $user_email = $_POST['user_email'];
325
 
326
- $errors = Theme_My_Login::register_new_user( $user_login, $user_email );
327
- if ( !is_wp_error( $errors ) ) {
328
- $redirect_to = !empty( $_POST['redirect_to'] ) ? $_POST['redirect_to'] : Theme_My_Login::get_current_url( 'checkemail=registered' );
329
- if ( !empty( $instance ) )
330
- $redirect_to = add_query_arg( 'instance', $instance, $redirect_to );
331
- $redirect_to = apply_filters( 'register_redirect', $redirect_to );
332
  wp_safe_redirect( $redirect_to );
333
- exit();
334
  }
335
  }
336
  break;
@@ -340,7 +385,7 @@ class Theme_My_Login {
340
  $interim_login = isset( $_REQUEST['interim-login'] );
341
 
342
  // If the user wants ssl but the session is not ssl, force a secure cookie.
343
- if ( !empty( $_POST['log'] ) && !force_ssl_admin() ) {
344
  $user_name = sanitize_user( $_POST['log'] );
345
  if ( $user = get_user_by( 'login', $user_name ) ) {
346
  if ( get_user_option( 'use_ssl', $user->ID ) ) {
@@ -350,7 +395,7 @@ class Theme_My_Login {
350
  }
351
  }
352
 
353
- if ( !empty( $_REQUEST['redirect_to'] ) ) {
354
  $redirect_to = $_REQUEST['redirect_to'];
355
  // Redirect to https if user wants ssl
356
  if ( $secure_cookie && false !== strpos( $redirect_to, 'wp-admin' ) )
@@ -364,64 +409,53 @@ class Theme_My_Login {
364
  // If the user was redirected to a secure login form from a non-secure admin page, and secure login is required but secure admin is not, then don't use a secure
365
  // cookie and redirect back to the referring non-secure admin page. This allows logins to always be POSTed over SSL while allowing the user to choose visiting
366
  // the admin via http or https.
367
- if ( !$secure_cookie && is_ssl() && force_ssl_login() && !force_ssl_admin() && ( 0 !== strpos( $redirect_to, 'https' ) ) && ( 0 === strpos( $redirect_to, 'http' ) ) )
368
  $secure_cookie = false;
369
 
370
  if ( $http_post && isset( $_POST['log'] ) ) {
371
 
372
- // Set a cookie now to see if they are supported by the browser.
373
- setcookie( TEST_COOKIE, 'WP Cookie check', 0, COOKIEPATH, COOKIE_DOMAIN );
374
- if ( SITECOOKIEPATH != COOKIEPATH )
375
- setcookie( TEST_COOKIE, 'WP Cookie check', 0, SITECOOKIEPATH, COOKIE_DOMAIN );
376
-
377
  $user = wp_signon( '', $secure_cookie );
378
 
379
  $redirect_to = apply_filters( 'login_redirect', $redirect_to, isset( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '', $user );
380
 
381
- if ( !is_wp_error( $user ) && !$reauth ) {
382
  if ( ( empty( $redirect_to ) || $redirect_to == 'wp-admin/' || $redirect_to == admin_url() ) ) {
383
  // If the user doesn't belong to a blog, send them to user admin. If the user can't edit posts, send them to their profile.
384
- if ( is_multisite() && !get_active_blog_for_user( $user->ID ) && !is_super_admin( $user->ID ) )
385
  $redirect_to = user_admin_url();
386
- elseif ( is_multisite() && !$user->has_cap( 'read' ) )
387
  $redirect_to = get_dashboard_url( $user->ID );
388
- elseif ( !$user->has_cap( 'edit_posts' ) )
389
  $redirect_to = admin_url( 'profile.php' );
390
  }
391
  wp_safe_redirect( $redirect_to );
392
- exit();
393
  }
394
 
395
- $errors = $user;
396
  }
397
 
398
- $this->redirect_to = $redirect_to;
399
-
400
  // Clear errors if loggedout is set.
401
- if ( !empty( $_GET['loggedout'] ) || $reauth )
402
- $errors = new WP_Error();
403
-
404
- // If cookies are disabled we can't log in even with a valid user+pass
405
- if ( isset( $_POST['testcookie'] ) && empty( $_COOKIE[TEST_COOKIE] ) )
406
- $errors->add( 'test_cookie', __( '<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href="http://www.google.com/cookies.html">enable cookies</a> to use WordPress.', 'theme-my-login' ) );
407
 
408
  // Some parts of this script use the main login form to display a message
409
  if ( isset( $_GET['loggedout'] ) && true == $_GET['loggedout'] )
410
- $errors->add( 'loggedout', __( 'You are now logged out.', 'theme-my-login' ), 'message' );
411
  elseif ( isset( $_GET['registration'] ) && 'disabled' == $_GET['registration'] )
412
- $errors->add( 'registerdisabled', __( 'User registration is currently not allowed.', 'theme-my-login' ) );
413
  elseif ( isset( $_GET['checkemail'] ) && 'confirm' == $_GET['checkemail'] )
414
- $errors->add( 'confirm', __( 'Check your e-mail for the confirmation link.', 'theme-my-login' ), 'message' );
415
  elseif ( isset( $_GET['resetpass'] ) && 'complete' == $_GET['resetpass'] )
416
- $errors->add( 'password_reset', __( 'Your password has been reset.', 'theme-my-login' ), 'message' );
417
  elseif ( isset( $_GET['checkemail'] ) && 'registered' == $_GET['checkemail'] )
418
- $errors->add( 'registered', __( 'Registration complete. Please check your e-mail.', 'theme-my-login' ), 'message' );
419
  elseif ( $interim_login )
420
- $errors->add( 'expired', __( 'Your session has expired. Please log-in again.', 'theme-my-login' ), 'message' );
421
  elseif ( strpos( $redirect_to, 'about.php?updated' ) )
422
- $errors->add('updated', __( '<strong>You have successfully updated WordPress!</strong> Please log back in to experience the awesomeness.' ), 'message' );
423
  elseif ( $reauth )
424
- $errors->add( 'reauth', __( 'Please log in to continue.', 'theme-my-login' ), 'message' );
425
 
426
  // Clear any stale cookies.
427
  if ( $reauth )
@@ -432,161 +466,190 @@ class Theme_My_Login {
432
  }
433
 
434
  /**
435
- * Used to add/remove filters from login page
436
  *
437
- * @since 6.1.1
438
- * @access public
 
439
  */
440
- function wp() {
441
- global $wp_version;
 
 
442
 
443
- if ( $this->is_login_page() ) {
444
- do_action( 'login_init' );
 
 
 
 
 
 
 
 
 
 
445
 
446
- remove_action( 'wp_head', 'feed_links', 2 );
447
- remove_action( 'wp_head', 'feed_links_extra', 3 );
448
- remove_action( 'wp_head', 'rsd_link' );
449
- remove_action( 'wp_head', 'wlwmanifest_link' );
450
- remove_action( 'wp_head', 'parent_post_rel_link', 10, 0 );
451
- remove_action( 'wp_head', 'start_post_rel_link', 10, 0 );
452
- remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0 );
453
- remove_action( 'wp_head', 'rel_canonical' );
454
 
455
- // Don't index any of these forms
456
- if ( version_compare( $wp_version, '3.3', '<' ) ) {
457
- add_filter( 'pre_option_blog_public', '__return_zero' );
458
- add_action( 'login_head', 'noindex' );
459
- } else {
460
- add_action( 'login_head', 'wp_no_robots' );
461
- }
 
 
 
 
462
 
463
- if ( force_ssl_admin() && !is_ssl() ) {
464
- if ( 0 === strpos( $_SERVER['REQUEST_URI'], 'http' ) ) {
465
- wp_redirect( preg_replace( '|^http://|', 'https://', $_SERVER['REQUEST_URI'] ) );
466
- exit();
467
- } else {
468
- wp_redirect( 'https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] );
469
- exit();
470
- }
471
- }
472
  }
473
  }
474
 
475
  /**
476
- * Returns link for login page
477
  *
478
  * @since 6.0
479
  * @access public
480
- *
481
- * @param string|array $query Optional. Query arguments to add to link
482
- * @return string Login page link with optional $query arguments appended
483
  */
484
- function get_login_page_link( $query = '' ) {
485
- global $wp_rewrite;
486
-
487
- $q = wp_parse_args( $query );
488
-
489
- $page = get_page( $this->options->get_option( 'page_id' ) );
490
 
491
- $link = $wp_rewrite->get_page_permastruct();
492
- if ( !empty( $link ) ) {
493
- $link = str_replace( '%pagename%', get_page_uri( $page->ID ), $link );
494
- $action = isset( $q['action'] ) ? $q['action'] : 'login';
495
- if ( $slug = $this->options->get_option( array( 'permalinks', $action ) ) ) {
496
- $link = str_replace( $page->post_name, $slug, $link );
497
- unset( $q['action'] );
498
- }
499
- $link = home_url( $link );
500
- $link = user_trailingslashit( $link, 'page' );
501
- } else {
502
- $link = home_url( "?page_id={$page->ID}" );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
503
  }
504
-
505
- if ( !empty( $q ) )
506
- $link = add_query_arg( $q, $link );
507
-
508
- return apply_filters( 'tml_page_link', $link, $query );
509
  }
510
 
511
  /**
512
- * Changes login page link to custom permalink
513
- *
514
- * Callback for "page_link" filter in get_page_link()
515
  *
516
- * @see get_page_link()
517
- * @since 6.2
518
  * @access public
519
  *
520
- * @param string $link Page link
521
- * @param int $id Page ID
522
- * @return string Page link
523
  */
524
- function page_link( $link, $id ) {
525
- if ( $this->is_login_page( $id ) )
526
- return $this->get_login_page_link();
527
- return $link;
 
 
 
528
  }
529
 
 
 
 
 
 
530
  /**
531
- * Changes redirect URL to login page permalink for specific actions
532
  *
533
- * Callback for "tml_redirect_url" filter in Theme_My_Login_Template::get_redirect_url()
534
  *
535
- * @since 6.2
 
 
 
 
 
 
 
 
 
 
 
 
536
  * @access public
537
  *
538
- * @param string $url Redirect URL
539
- * @param string $action Requested action
540
- * @return string Redirect URL
 
 
541
  */
542
- function tml_redirect_url( $url, $action ) {
543
- global $wp_rewrite;
544
 
545
- if ( $wp_rewrite->using_permalinks() && $this->is_login_page() && $this->request_action == $action ) {
546
- if ( $slug = $this->options->get_option( 'permalinks', $action ) ) {
547
- switch ( $action ) {
548
- case 'lostpassword' :
549
- case 'retrievepassword' :
550
- case 'register' :
551
- $permalink = $this->get_login_page_link();
552
 
553
- $parsed_permalink = parse_url( $permalink );
554
- $parsed_url = parse_url( $url );
555
 
556
- $url = str_replace( $parsed_url['path'], $parsed_permalink['path'], $url );
557
- break;
558
- }
559
- }
560
  }
561
  return $url;
562
  }
563
 
564
  /**
565
- * Changes the_title() to reflect the current action
566
  *
567
- * Callback for "the_title" hook in the_title()
568
  *
569
- * @see the_title()
570
- * @since 6.0
571
- * @acess public
572
  *
573
- * @param string $title The current post title
574
- * @param int $post_id The current post ID
575
- * @return string The modified post title
576
  */
577
- function the_title( $title, $post_id = 0 ) {
578
- if ( is_admin() )
579
- return $title;
580
-
581
- if ( $this->is_login_page( $post_id ) ) {
582
- if ( !in_the_loop() ) {
583
- $title = is_user_logged_in() ? __( 'Log Out', 'theme-my-login' ) : __( 'Log In', 'theme-my-login' );
584
- } else {
585
- $action = empty( $this->request_instance ) ? $this->request_action : 'login';
586
- $title = Theme_My_Login_Template::get_title( $action );
587
- }
588
- }
589
- return $title;
590
  }
591
 
592
  /**
@@ -602,48 +665,33 @@ class Theme_My_Login {
602
  * @return string The modified post title
603
  */
604
  function single_post_title( $title ) {
605
- if ( $this->is_login_page() ) {
606
- $action = empty( $this->request_instance ) ? $this->request_action : 'login';
607
- $title = Theme_My_Login_Template::get_title( $action );
608
- }
609
  return $title;
610
  }
611
 
612
  /**
613
- * Excludes TML page if set in the admin
614
  *
615
- * Callback for "wp_list_pages_excludes" hook in wp_list_pages()
616
  *
617
- * @see wp_list_pages()
618
  * @since 6.0
619
- * @access public
620
  *
621
- * @param array $exclude_array Array of excluded pages
622
- * @return array Modified array of excluded pages
 
623
  */
624
- function wp_list_pages_excludes( $exclude_array ) {
625
- $exclude_array = (array) $exclude_array;
626
- if ( !$this->options->get_option( 'show_page' ) )
627
- $exclude_array[] = $this->options->get_option( 'page_id' );
628
- return $exclude_array;
629
- }
630
 
631
- /**
632
- * Changes login link to logout if user is logged in
633
- *
634
- * Callback for "wp_list_pages" hook in wp_list_pages()
635
- *
636
- * @see wp_list_pages()
637
- * @since 6.0
638
- * @access public
639
- *
640
- * @param string $output The output
641
- * @return string The filtered output
642
- */
643
- function wp_list_pages( $output ) {
644
- if ( is_user_logged_in() )
645
- $output = str_replace( '"' . $this->get_login_page_link() . '"', '"' . wp_logout_url() . '"', $output );
646
- return $output;
647
  }
648
 
649
  /**
@@ -658,14 +706,45 @@ class Theme_My_Login {
658
  * @param object $menu_item The menu item
659
  * @return object The (possibly) modified menu item
660
  */
661
- function wp_setup_nav_menu_item( $menu_item ) {
662
- if ( 'page' == $menu_item->object && $this->is_login_page( $menu_item->object_id ) ) {
663
- $menu_item->title = $this->the_title( $menu_item->title, $menu_item->object_id );
664
- $menu_item->url = is_user_logged_in() ? wp_logout_url() : $this->get_login_page_link();
 
 
 
 
 
665
  }
666
  return $menu_item;
667
  }
668
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
669
  /**
670
  * Handler for "theme-my-login" shortcode
671
  *
@@ -682,9 +761,8 @@ class Theme_My_Login {
682
  * - show_log_link - True to display the login link, false to hide. Defaults to true.
683
  * - show_reg_link - True to display the register link, false to hide. Defaults to true.
684
  * - show_pass_link - True to display the lost password link, false to hide. Defaults to true.
685
- * - register_widget - True to allow registration in widget, false to send to register page. Defaults to false.
686
- * - lostpassword_widget - True to allow password recovery in widget, false to send to lost password page. Defaults to false.
687
  * - logged_in_widget - True to display the widget when logged in, false to hide. Defaults to true.
 
688
  * - show_gravatar - True to display the user's gravatar, false to hide. Defaults to true.
689
  * - gravatar_size - The size of the user's gravatar. Defaults to "50".
690
  *
@@ -694,84 +772,135 @@ class Theme_My_Login {
694
  * @param string|array $atts Attributes passed from the shortcode
695
  * @return string HTML output from Theme_My_Login_Template->display()
696
  */
697
- function shortcode( $atts = '' ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
698
 
699
- if ( $this->is_login_page() && in_the_loop() ) {
700
- $atts['instance'] = '';
701
- $atts['show_title'] = false;
702
  } else {
703
- if ( !isset( $atts['instance'] ) )
704
- $atts['instance'] = $this->get_new_instance();
705
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
706
 
707
- $template =& new Theme_My_Login_Template( $atts );
 
708
 
709
- return $template->display();
 
 
 
710
  }
711
 
712
  /**
713
- * Incremenets $this->count and returns it
714
  *
715
- * @since 6.0
716
  * @access public
717
  *
718
- * @return int New value of $this->count
 
 
719
  */
720
- function get_new_instance() {
721
- $this->count++;
722
- return $this->count;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
723
  }
724
 
725
  /**
726
- * Returns current URL
727
  *
728
- * @since 6.0
729
- * @access public
730
  *
731
- * @param string $query Optionally append query to the current URL
732
- * @return string URL with optional path appended
733
  */
734
- function get_current_url( $query = '' ) {
735
- $url = remove_query_arg( array( 'instance', 'action', 'checkemail', 'error', 'loggedout', 'registered', 'redirect_to', 'updated', 'key', '_wpnonce', 'reauth', 'login' ) );
736
- if ( !empty( $query ) ) {
737
- $r = wp_parse_args( $query );
738
- foreach ( $r as $k => $v ) {
739
- if ( strpos( $v, ' ' ) !== false )
740
- $r[$k] = rawurlencode( $v );
741
- }
742
- $url = add_query_arg( $r, $url );
743
- }
744
- return $url;
745
  }
746
 
747
  /**
748
- * Rewrites URL's containing wp-login.php created by site_url()
749
  *
750
- * @since 6.0
751
- * @access public
752
  *
753
- * @param string $url The URL
754
- * @param string $path The path specified
755
- * @param string $orig_scheme The current connection scheme (HTTP/HTTPS)
756
- * @return string The modified URL
757
  */
758
- function site_url( $url, $path, $orig_scheme ) {
759
- global $pagenow;
760
- if ( 'wp-login.php' != $pagenow && strpos( $url, 'wp-login.php' ) !== false && !isset( $_REQUEST['interim-login'] ) ) {
761
- $parsed_url = parse_url( $url );
762
- $url = $this->get_login_page_link();
763
- if ( 'https' == strtolower( $orig_scheme ) )
764
- $url = preg_replace( '|^http://|', 'https://', $url );
765
- if ( isset( $parsed_url['query'] ) ) {
766
- wp_parse_str( $parsed_url['query'], $r );
767
- foreach ( $r as $k => $v ) {
768
- if ( strpos($v, ' ') !== false )
769
- $r[$k] = rawurlencode( $v );
770
- }
771
- $url = add_query_arg( $r, $url );
772
- }
773
- }
774
- return $url;
775
  }
776
 
777
  /**
@@ -785,7 +914,7 @@ class Theme_My_Login {
785
  * @param string $file Filename of stylesheet to load
786
  * @return string Path to stylesheet
787
  */
788
- function get_stylesheet( $file = 'theme-my-login.css' ) {
789
  if ( file_exists( get_stylesheet_directory() . '/' . $file ) )
790
  $stylesheet = get_stylesheet_directory_uri() . '/' . $file;
791
  elseif ( file_exists( get_template_directory() . '/' . $file ) )
@@ -796,153 +925,99 @@ class Theme_My_Login {
796
  }
797
 
798
  /**
799
- * Prints javascript in the footer
800
  *
801
- * @since 6.0
802
  * @access public
803
- */
804
- function print_footer_scripts() {
805
- if ( !$this->is_login_page() )
806
- return;
807
-
808
- $action = empty( $this->request_action ) ? 'login' : $this->request_action;
809
- switch ( $action ) {
810
- case 'lostpassword' :
811
- case 'retrievepassword' :
812
- case 'register' :
813
- ?>
814
- <script type="text/javascript">
815
- try{document.getElementById('user_login<?php echo $this->request_instance; ?>').focus();}catch(e){}
816
- if(typeof wpOnload=='function')wpOnload()
817
- </script>
818
- <?php
819
- break;
820
- case 'login' :
821
- $user_login = '';
822
- if ( isset($_POST['log']) )
823
- $user_login = ( 'incorrect_password' == $this->errors->get_error_code() || 'empty_password' == $this->errors->get_error_code() ) ? esc_attr( stripslashes( $_POST['log'] ) ) : '';
824
- ?>
825
- <script type="text/javascript">
826
- function wp_attempt_focus() {
827
- setTimeout( function() {
828
- try {
829
- <?php if ( $user_login ) { ?>
830
- d = document.getElementById('user_pass<?php echo $this->request_instance; ?>');
831
- <?php } else { ?>
832
- d = document.getElementById('user_login<?php echo $this->request_instance; ?>');
833
- <?php } ?>
834
- d.value = '';
835
- d.focus();
836
- } catch(e){}
837
- }, 200 );
838
- }
839
- wp_attempt_focus();
840
- if(typeof wpOnload=='function')wpOnload()
841
- </script>
842
- <?php
843
- break;
844
- }
845
- }
846
-
847
- /**
848
- * Calls "login_head" hook on login page
849
- *
850
- * Callback for "wp_head" hook
851
  *
852
- * @since 6.0
853
- * @access public
854
  */
855
- function login_head() {
856
- if ( $this->is_login_page() ) {
857
- do_action( 'login_enqueue_scripts' );
858
- do_action( 'login_head' );
859
- }
860
  }
861
 
862
  /**
863
- * Merges arrays recursively, replacing duplicate string keys
864
  *
865
- * @since 6.0
866
  * @access public
867
- */
868
- function array_merge_recursive() {
869
- $args = func_get_args();
870
-
871
- $result = array_shift( $args );
872
 
873
- foreach ( $args as $arg ) {
874
- foreach ( $arg as $key => $value ) {
875
- // Renumber numeric keys as array_merge() does.
876
- if ( is_numeric( $key ) ) {
877
- if ( !in_array( $value, $result ) )
878
- $result[] = $value;
879
- }
880
- // Recurse only when both values are arrays.
881
- elseif ( array_key_exists( $key, $result ) && is_array( $result[$key] ) && is_array( $value ) ) {
882
- $result[$key] = Theme_My_Login::array_merge_recursive( $result[$key], $value );
883
- }
884
- // Otherwise, use the latter value.
885
- else {
886
- $result[$key] = $value;
887
- }
888
- }
889
- }
890
- return $result;
891
  }
892
 
893
  /**
894
- * Returns active and valid TML modules
895
  *
896
- * Returns all valid modules specified via $this->options['active_modules']
897
- *
898
- * @since 6.0
899
  * @access public
 
 
900
  */
901
- function get_active_and_valid_modules() {
902
- $modules = array();
903
- $active_modules = apply_filters( 'tml_active_modules', $this->options->get_option( 'active_modules' ) );
904
- foreach ( (array) $active_modules as $module ) {
905
- // check the $plugin filename
906
- // Validate plugin filename
907
- if ( !validate_file( $module ) // $module must validate as file
908
- || '.php' == substr( $module, -4 ) // $module must end with '.php'
909
- || file_exists( TML_ABSPATH . '/modules/' . $module ) // $module must exist
910
- )
911
- $modules[] = TML_ABSPATH . '/modules/' . $module;
912
- }
913
- return $modules;
914
  }
915
 
916
  /**
917
- * Determine if $module is an active TML module
918
  *
919
- * @since 6.0
920
  * @access public
921
  *
922
- * @param string $module Filename of module to check
923
- * @return bool True if $module is active, false if not
 
924
  */
925
- function is_module_active( $module ) {
926
- $active_modules = apply_filters( 'tml_active_modules', $this->options->get_option( 'active_modules' ) );
927
- return in_array( $module, (array) $active_modules );
 
 
 
 
 
 
 
 
 
 
928
  }
929
 
930
  /**
931
- * Handles e-mail address login
 
 
932
  *
933
- * @since 6.0
934
- * @access public
 
935
  *
936
- * @param string $username Username or email
937
- * @param string $password User's password
 
938
  */
939
- function wp_authenticate( &$user_login ) {
940
- global $wpdb;
941
- if ( is_email( $user_login ) && $this->options->get_option( 'email_login' ) ) {
942
- if ( $found = $wpdb->get_var( $wpdb->prepare( "SELECT user_login FROM $wpdb->users WHERE user_email = %s", $user_login ) ) )
943
- $user_login = $found;
 
 
 
 
 
 
 
 
944
  }
945
- return;
 
 
946
  }
947
 
948
  /**
@@ -954,17 +1029,17 @@ if(typeof wpOnload=='function')wpOnload()
954
  *
955
  * @return bool|WP_Error True: when finish. WP_Error on error
956
  */
957
- function retrieve_password() {
958
  global $wpdb, $current_site;
959
 
960
  $errors = new WP_Error();
961
 
962
  if ( empty( $_POST['user_login'] ) ) {
963
- $errors->add( 'empty_username', __( '<strong>ERROR</strong>: Enter a username or e-mail address.', 'theme-my-login' ) );
964
  } else if ( strpos( $_POST['user_login'], '@' ) ) {
965
  $user_data = get_user_by_email( trim( $_POST['user_login'] ) );
966
  if ( empty( $user_data ) )
967
- $errors->add( 'invalid_email', __( '<strong>ERROR</strong>: There is no user registered with that email address.', 'theme-my-login' ) );
968
  } else {
969
  $login = trim( $_POST['user_login'] );
970
  $user_data = get_user_by( 'login', $login );
@@ -975,8 +1050,8 @@ if(typeof wpOnload=='function')wpOnload()
975
  if ( $errors->get_error_code() )
976
  return $errors;
977
 
978
- if ( !$user_data ) {
979
- $errors->add( 'invalidcombo', __( '<strong>ERROR</strong>: Invalid username or e-mail.', 'theme-my-login' ) );
980
  return $errors;
981
  }
982
 
@@ -989,8 +1064,8 @@ if(typeof wpOnload=='function')wpOnload()
989
 
990
  $allow = apply_filters( 'allow_password_reset', true, $user_data->ID );
991
 
992
- if ( !$allow )
993
- return new WP_Error( 'no_password_reset', __( 'Password reset is not allowed for this user', 'theme-my-login' ) );
994
  else if ( is_wp_error( $allow ) )
995
  return $allow;
996
 
@@ -1002,11 +1077,11 @@ if(typeof wpOnload=='function')wpOnload()
1002
  // Now insert the new md5 key into the db
1003
  $wpdb->update( $wpdb->users, array( 'user_activation_key' => $key ), array( 'user_login' => $user_login ) );
1004
  }
1005
- $message = __( 'Someone requested that the password be reset for the following account:', 'theme-my-login' ) . "\r\n\r\n";
1006
  $message .= network_home_url( '/' ) . "\r\n\r\n";
1007
- $message .= sprintf( __( 'Username: %s', 'theme-my-login' ), $user_login ) . "\r\n\r\n";
1008
- $message .= __( 'If this was a mistake, just ignore this email and nothing will happen.', 'theme-my-login' ) . "\r\n\r\n";
1009
- $message .= __( 'To reset your password, visit the following address:', 'theme-my-login' ) . "\r\n\r\n";
1010
  $message .= '<' . network_site_url( "wp-login.php?action=rp&key=$key&login=" . rawurlencode( $user_login ), 'login' ) . ">\r\n";
1011
 
1012
  if ( is_multisite() ) {
@@ -1017,13 +1092,13 @@ if(typeof wpOnload=='function')wpOnload()
1017
  $blogname = wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES );
1018
  }
1019
 
1020
- $title = sprintf( __( '[%s] Password Reset', 'theme-my-login' ), $blogname );
1021
 
1022
  $title = apply_filters( 'retrieve_password_title', $title, $user_data->ID );
1023
  $message = apply_filters( 'retrieve_password_message', $message, $key, $user_data->ID );
1024
 
1025
- if ( $message && !wp_mail( $user_email, $title, $message ) )
1026
- wp_die( __( 'The e-mail could not be sent.', 'theme-my-login' ) . "<br />\n" . __( 'Possible reason: your host may have disabled the mail() function...', 'theme-my-login' ) );
1027
 
1028
  return true;
1029
  }
@@ -1040,21 +1115,21 @@ if(typeof wpOnload=='function')wpOnload()
1040
  *
1041
  * @return object|WP_Error
1042
  */
1043
- function check_password_reset_key( $key, $login ) {
1044
  global $wpdb;
1045
 
1046
  $key = preg_replace( '/[^a-z0-9]/i', '', $key );
1047
 
1048
- if ( empty( $key ) || !is_string( $key ) )
1049
- return new WP_Error( 'invalid_key', __( 'Invalid key', 'theme-my-login' ) );
1050
 
1051
- if ( empty( $login ) || !is_string( $login ) )
1052
- return new WP_Error( 'invalid_key', __( 'Invalid key', 'theme-my-login' ) );
1053
 
1054
  $user = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->users WHERE user_activation_key = %s AND user_login = %s", $key, $login ) );
1055
 
1056
  if ( empty( $user ) )
1057
- return new WP_Error( 'invalid_key', __( 'Invalid key', 'theme-my-login' ) );
1058
 
1059
  return $user;
1060
  }
@@ -1068,7 +1143,7 @@ if(typeof wpOnload=='function')wpOnload()
1068
  *
1069
  * @param string $key Hash to validate sending user's password
1070
  */
1071
- function reset_password( $user, $new_pass ) {
1072
  do_action( 'password_reset', $user, $new_pass );
1073
 
1074
  wp_set_password( $new_pass, $user->ID );
@@ -1086,7 +1161,7 @@ if(typeof wpOnload=='function')wpOnload()
1086
  * @param string $user_email User's email address to send password and add
1087
  * @return int|WP_Error Either user's ID or error on failure.
1088
  */
1089
- function register_new_user( $user_login, $user_email ) {
1090
  $errors = new WP_Error();
1091
 
1092
  $sanitized_user_login = sanitize_user( $user_login );
@@ -1094,22 +1169,22 @@ if(typeof wpOnload=='function')wpOnload()
1094
 
1095
  // Check the username
1096
  if ( $sanitized_user_login == '' ) {
1097
- $errors->add( 'empty_username', __( '<strong>ERROR</strong>: Please enter a username.', 'theme-my-login' ) );
1098
- } elseif ( !validate_username( $user_login ) ) {
1099
- $errors->add( 'invalid_username', __( '<strong>ERROR</strong>: This username is invalid because it uses illegal characters. Please enter a valid username.', 'theme-my-login' ) );
1100
  $sanitized_user_login = '';
1101
  } elseif ( username_exists( $sanitized_user_login ) ) {
1102
- $errors->add( 'username_exists', __( '<strong>ERROR</strong>: This username is already registered, please choose another one.', 'theme-my-login' ) );
1103
  }
1104
 
1105
  // Check the e-mail address
1106
  if ( '' == $user_email ) {
1107
- $errors->add( 'empty_email', __( '<strong>ERROR</strong>: Please type your e-mail address.', 'theme-my-login' ) );
1108
- } elseif ( !is_email( $user_email ) ) {
1109
- $errors->add( 'invalid_email', __( '<strong>ERROR</strong>: The email address isn&#8217;t correct.', 'theme-my-login' ) );
1110
  $user_email = '';
1111
  } elseif ( email_exists( $user_email ) ) {
1112
- $errors->add( 'email_exists', __( '<strong>ERROR</strong>: This email is already registered, please choose another one.', 'theme-my-login' ) );
1113
  }
1114
 
1115
  do_action( 'register_post', $sanitized_user_login, $user_email, $errors );
@@ -1121,8 +1196,8 @@ if(typeof wpOnload=='function')wpOnload()
1121
 
1122
  $user_pass = apply_filters( 'tml_user_registration_pass', wp_generate_password( 12, false ) );
1123
  $user_id = wp_create_user( $sanitized_user_login, $user_pass, $user_email );
1124
- if ( !$user_id ) {
1125
- $errors->add( 'registerfail', sprintf( __( '<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href="mailto:%s">webmaster</a> !', 'theme-my-login' ), get_option( 'admin_email' ) ) );
1126
  return $errors;
1127
  }
1128
 
@@ -1133,7 +1208,5 @@ if(typeof wpOnload=='function')wpOnload()
1133
  return $user_id;
1134
  }
1135
  }
1136
-
1137
  endif; // Class exists
1138
 
1139
- ?>
2
  /**
3
  * Holds the Theme My Login class
4
  *
5
+ * @package Theme_My_Login
6
+ * @since 6.0
7
  */
8
 
9
+ if ( ! class_exists( 'Theme_My_Login' ) ) :
10
  /*
11
  * Theme My Login class
12
  *
14
  *
15
  * @since 6.0
16
  */
17
+ class Theme_My_Login extends Theme_My_Login_Abstract {
18
  /**
19
+ * Holds options key
20
  *
21
+ * @since 6.3
22
+ * @access protected
23
+ * @var string
24
  */
25
+ protected $options_key = 'theme_my_login';
26
 
27
  /**
28
  * Holds errors object
31
  * @access public
32
  * @var object
33
  */
34
+ public $errors;
35
+
36
+ /**
37
+ * Holds current page being requested
38
+ *
39
+ * @since 6.3
40
+ * @access public
41
+ * @var string
42
+ */
43
+ public $request_page;
44
 
45
  /**
46
+ * Holds current action being requested
47
  *
48
  * @since 6.0
49
  * @access public
50
+ * @var string
51
  */
52
+ public $request_action;
53
 
54
  /**
55
  * Holds current instance being requested
58
  * @access public
59
  * @var int
60
  */
61
+ public $request_instance;
62
 
63
  /**
64
+ * Holds loaded instances
65
  *
66
+ * @since 6.3
67
+ * @access protected
68
+ * @var array
69
  */
70
+ protected $loaded_instances = array();
71
 
72
  /**
73
+ * Returns singleton instance
74
  *
75
+ * @since 6.3
76
  * @access public
77
+ * @return object
78
  */
79
+ public static function get_object() {
80
+ return parent::get_object( __CLASS__ );
81
  }
82
 
83
  /**
84
+ * Returns default options
85
  *
86
+ * @since 6.3
87
  * @access public
88
+ *
89
+ * @return array Default options
90
  */
91
+ public static function default_options() {
92
+ return apply_filters( 'tml_default_options', array(
93
+ 'page_id' => 0,
94
+ 'show_page' => true,
95
+ 'enable_css' => true,
96
+ 'email_login' => true,
97
+ 'active_modules' => array()
98
+ ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
  }
100
 
101
  /**
102
+ * Returns default pages
103
  *
104
+ * @since 6.3
105
  * @access public
106
+ *
107
+ * @return array Default pages
108
  */
109
+ public static function default_pages() {
110
+ return apply_filters( 'tml_default_pages', array(
111
+ 'login' => __( 'Log In' ),
112
+ 'logout' => __( 'Log Out' ),
113
+ 'register' => __( 'Register' ),
114
+ 'lostpassword' => __( 'Lost Password' ),
115
+ 'resetpass' => __( 'Reset Password' )
116
+ ) );
 
 
117
  }
118
 
119
  /**
120
+ * Loads the plugin
121
  *
122
+ * @since 6.0
123
  * @access public
 
 
 
124
  */
125
+ protected function load() {
126
+
127
+ $this->load_instance();
128
+
129
+ add_action( 'plugins_loaded', array( &$this, 'plugins_loaded' ) );
130
+ add_action( 'init', array( &$this, 'init' ) );
131
+ add_action( 'widgets_init', array( &$this, 'widgets_init' ) );
132
+ add_action( 'pre_get_posts', array( &$this, 'pre_get_posts' ) );
133
+ add_action( 'wp', array( &$this, 'wp' ) );
134
+ add_action( 'template_redirect', array( &$this, 'template_redirect' ) );
135
+ add_action( 'wp_enqueue_scripts', array( &$this, 'wp_enqueue_scripts' ) );
136
+ add_action( 'wp_head', array( &$this, 'wp_head' ) );
137
+ add_action( 'wp_footer', array( &$this, 'wp_footer' ) );
138
+ add_action( 'wp_print_footer_scripts', array( &$this, 'wp_print_footer_scripts' ) );
139
+ add_action( 'wp_authenticate', array( &$this, 'wp_authenticate' ) );
140
+
141
+ add_filter( 'template_include', array( &$this, 'template_include' ) );
142
+ add_filter( 'site_url', array( &$this, 'site_url' ), 10, 3 );
143
+ add_filter( 'logout_url', array( &$this, 'logout_url' ), 10, 2 );
144
+ add_filter( 'single_post_title', array( &$this, 'single_post_title' ) );
145
+ add_filter( 'the_title', array( &$this, 'the_title' ), 10, 2 );
146
+ add_filter( 'wp_setup_nav_menu_item', array( &$this, 'wp_setup_nav_menu_item' ) );
147
+ add_filter( 'post_type_link', array( &$this, 'post_type_link' ), 10, 4 );
148
+
149
+ add_action( 'tml_new_user_registered', 'wp_new_user_notification', 10, 2 );
150
+ add_action( 'tml_user_password_changed', 'wp_password_change_notification' );
151
+
152
+ add_shortcode( 'theme-my-login', array( &$this, 'shortcode' ) );
153
+ }
154
 
 
155
 
156
+ /************************************************************************************************************************
157
+ * Actions
158
+ ************************************************************************************************************************/
159
 
160
+ /**
161
+ * Loads active modules
162
+ *
163
+ * @since 6.3
164
+ * @access public
165
+ */
166
+ public function plugins_loaded() {
167
+ foreach ( $this->get_option( 'active_modules', array() ) as $module ) {
168
+ if ( file_exists( WP_PLUGIN_DIR . '/theme-my-login/modules/' . $module ) )
169
+ include_once( WP_PLUGIN_DIR . '/theme-my-login/modules/' . $module );
170
  }
171
+ do_action_ref_array( 'tml_modules_loaded', array( &$this ) );
172
  }
173
 
174
  /**
177
  * @since 6.0
178
  * @access public
179
  */
180
+ public function init() {
181
+ self::load_textdomain();
182
+
183
+ register_post_type( 'tml_page', array(
184
+ 'public' => true,
185
+ 'show_in_menu' => 'theme_my_login',
186
+ 'hierarchical' => true,
187
+ 'supports' => array( 'title', 'editor', 'page-attributes' ),
188
+ 'rewrite' => false,
189
+ 'labels' => array(
190
+ 'name' => __( 'Theme My Login Pages', 'theme-my-login' ),
191
+ 'singular_name' => __( 'Theme My Login Page', 'theme-my-login' ),
192
+ 'menu_name' => __( 'Pages' )
193
+ )
194
+ ) );
195
 
196
  $this->errors = new WP_Error();
197
 
198
+ if ( ! is_admin() && $this->get_option( 'enable_css' ) )
199
+ wp_enqueue_style( 'theme-my-login', self::get_stylesheet(), false, $this->get_option( 'version' ) );
 
 
200
  }
201
 
202
  /**
205
  * @since 6.0
206
  * @access public
207
  */
208
+ public function widgets_init() {
209
  if ( class_exists( 'Theme_My_Login_Widget' ) )
210
  register_widget( 'Theme_My_Login_Widget' );
211
  }
212
 
213
  /**
214
+ * Changes post type to tml_page for TML permalinks
215
  *
216
+ * @since 6.3
 
217
  *
218
+ * @param object $wp_query WP_Query object
219
  */
220
+ public function pre_get_posts( &$wp_query ) {
221
+ global $wpdb;
222
+
223
+ if ( ! $wp_query->is_main_query() )
224
+ return;
225
+
226
+ if ( $pagename = $wp_query->get( 'pagename' ) ) {
227
+ if ( $page = get_page_by_path( $pagename, OBJECT, 'tml_page' ) ) {
228
+ $wp_query->set( 'post_type', 'tml_page' );
229
+ $wp_query->is_single = true;
230
+ $wp_query->is_page = false;
231
+ $wp_query->queried_object = $page;
232
+ $wp_query->queried_object_id = $page->ID;
233
+ }
234
  }
235
+ }
236
+
237
+ /**
238
+ * Used to add/remove filters from login page
239
+ *
240
+ * @since 6.1.1
241
+ * @access public
242
+ */
243
+ public function wp() {
244
+ if ( self::is_tml_page() ) {
245
+ do_action( 'login_init' );
246
+
247
+ remove_action( 'wp_head', 'feed_links', 2 );
248
+ remove_action( 'wp_head', 'feed_links_extra', 3 );
249
+ remove_action( 'wp_head', 'rsd_link' );
250
+ remove_action( 'wp_head', 'wlwmanifest_link' );
251
+ remove_action( 'wp_head', 'parent_post_rel_link', 10 );
252
+ remove_action( 'wp_head', 'start_post_rel_link', 10 );
253
+ remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10 );
254
+ remove_action( 'wp_head', 'rel_canonical' );
255
 
256
+ // Don't index any of these forms
257
+ add_action( 'login_head', 'wp_no_robots' );
258
 
259
+ if ( force_ssl_admin() && ! is_ssl() ) {
260
+ if ( 0 === strpos( $_SERVER['REQUEST_URI'], 'http' ) ) {
261
+ wp_redirect( preg_replace( '|^http://|', 'https://', $_SERVER['REQUEST_URI'] ) );
262
+ exit;
263
+ } else {
264
+ wp_redirect( 'https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] );
265
+ exit;
266
+ }
267
+ }
268
+ }
269
  }
270
 
271
  /**
272
  * Proccesses the request
273
  *
274
+ * Callback for "template_redirect" hook in template-loader.php
275
  *
276
+ * @since 6.3
 
277
  * @access public
278
  */
279
+ public function template_redirect() {
280
+ $this->request_action = isset( $_REQUEST['action'] ) ? sanitize_key( $_REQUEST['action'] ) : '';
281
+ if ( ! $this->request_action && self::is_tml_page() )
282
+ $this->request_action = self::get_page_action( get_the_id() );
283
+ $this->request_instance = isset( $_REQUEST['instance'] ) ? sanitize_key( $_REQUEST['instance'] ) : 0;
 
 
 
 
 
 
284
 
285
  do_action_ref_array( 'tml_request', array( &$this ) );
286
 
287
  // allow plugins to override the default actions, and to add extra actions if they want
288
+ do_action( 'login_form_' . $this->request_action );
289
 
290
+ if ( has_action( 'tml_request_' . $this->request_action ) ) {
291
+ do_action_ref_array( 'tml_request_' . $this->request_action, array( &$this ) );
292
  } else {
293
  $http_post = ( 'POST' == $_SERVER['REQUEST_METHOD'] );
294
+ switch ( $this->request_action ) {
295
  case 'postpass' :
296
  global $wp_hasher;
297
 
317
 
318
  $redirect_to = apply_filters( 'logout_redirect', site_url( 'wp-login.php?loggedout=true' ), isset( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '', $user );
319
  wp_safe_redirect( $redirect_to );
320
+ exit;
321
  break;
322
  case 'lostpassword' :
323
  case 'retrievepassword' :
324
  if ( $http_post ) {
325
+ $this->errors = self::retrieve_password();
326
+ if ( ! is_wp_error( $this->errors ) ) {
327
+ $redirect_to = ! empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : site_url( 'wp-login.php?checkemail=confirm' );
 
 
328
  wp_safe_redirect( $redirect_to );
329
+ exit;
330
  }
331
  }
332
 
333
  if ( isset( $_REQUEST['error'] ) && 'invalidkey' == $_REQUEST['error'] )
334
+ $this->errors->add( 'invalidkey', __( 'Sorry, that key does not appear to be valid.' ) );
335
 
336
  do_action( 'lost_password' );
337
  break;
338
  case 'resetpass' :
339
  case 'rp' :
340
+ $user = self::check_password_reset_key( $_REQUEST['key'], $_REQUEST['login'] );
341
 
342
  if ( is_wp_error( $user ) ) {
343
+ $redirect_to = site_url( 'wp-login.php?action=lostpassword&error=invalidkey' );
344
+ wp_redirect( $redirect_to );
345
  exit;
346
  }
347
 
 
 
348
  if ( isset( $_POST['pass1'] ) && $_POST['pass1'] != $_POST['pass2'] ) {
349
+ $this->errors->add( 'password_reset_mismatch', __( 'The passwords do not match.' ) );
350
+ } elseif ( isset( $_POST['pass1'] ) && ! empty( $_POST['pass1'] ) ) {
351
+ self::reset_password( $user, $_POST['pass1'] );
352
 
353
+ $redirect_to = site_url( 'wp-login.php?resetpass=complete' );
 
 
354
  wp_safe_redirect( $redirect_to );
355
+ exit;
356
  }
357
 
358
  wp_enqueue_script( 'utils' );
359
  wp_enqueue_script( 'user-profile' );
360
  break;
361
  case 'register' :
362
+ if ( ! get_option( 'users_can_register' ) ) {
363
+ $redirect_to = site_url( 'wp-login.php?registration=disabled' );
364
+ wp_redirect( $redirect_to );
365
+ exit;
366
  }
367
 
368
  $user_login = '';
371
  $user_login = $_POST['user_login'];
372
  $user_email = $_POST['user_email'];
373
 
374
+ $this->errors = self::register_new_user( $user_login, $user_email );
375
+ if ( ! is_wp_error( $this->errors ) ) {
376
+ $redirect_to = ! empty( $_POST['redirect_to'] ) ? $_POST['redirect_to'] : site_url( 'wp-login.php?checkemail=registered' );
 
 
 
377
  wp_safe_redirect( $redirect_to );
378
+ exit;
379
  }
380
  }
381
  break;
385
  $interim_login = isset( $_REQUEST['interim-login'] );
386
 
387
  // If the user wants ssl but the session is not ssl, force a secure cookie.
388
+ if ( ! empty( $_POST['log'] ) && ! force_ssl_admin() ) {
389
  $user_name = sanitize_user( $_POST['log'] );
390
  if ( $user = get_user_by( 'login', $user_name ) ) {
391
  if ( get_user_option( 'use_ssl', $user->ID ) ) {
395
  }
396
  }
397
 
398
+ if ( ! empty( $_REQUEST['redirect_to'] ) ) {
399
  $redirect_to = $_REQUEST['redirect_to'];
400
  // Redirect to https if user wants ssl
401
  if ( $secure_cookie && false !== strpos( $redirect_to, 'wp-admin' ) )
409
  // If the user was redirected to a secure login form from a non-secure admin page, and secure login is required but secure admin is not, then don't use a secure
410
  // cookie and redirect back to the referring non-secure admin page. This allows logins to always be POSTed over SSL while allowing the user to choose visiting
411
  // the admin via http or https.
412
+ if ( ! $secure_cookie && is_ssl() && force_ssl_login() && ! force_ssl_admin() && ( 0 !== strpos( $redirect_to, 'https' ) ) && ( 0 === strpos( $redirect_to, 'http' ) ) )
413
  $secure_cookie = false;
414
 
415
  if ( $http_post && isset( $_POST['log'] ) ) {
416
 
 
 
 
 
 
417
  $user = wp_signon( '', $secure_cookie );
418
 
419
  $redirect_to = apply_filters( 'login_redirect', $redirect_to, isset( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '', $user );
420
 
421
+ if ( ! is_wp_error( $user ) && ! $reauth ) {
422
  if ( ( empty( $redirect_to ) || $redirect_to == 'wp-admin/' || $redirect_to == admin_url() ) ) {
423
  // If the user doesn't belong to a blog, send them to user admin. If the user can't edit posts, send them to their profile.
424
+ if ( is_multisite() && ! get_active_blog_for_user( $user->ID ) && ! is_super_admin( $user->ID ) )
425
  $redirect_to = user_admin_url();
426
+ elseif ( is_multisite() && ! $user->has_cap( 'read' ) )
427
  $redirect_to = get_dashboard_url( $user->ID );
428
+ elseif ( ! $user->has_cap( 'edit_posts' ) )
429
  $redirect_to = admin_url( 'profile.php' );
430
  }
431
  wp_safe_redirect( $redirect_to );
432
+ exit;
433
  }
434
 
435
+ $this->errors = $user;
436
  }
437
 
 
 
438
  // Clear errors if loggedout is set.
439
+ if ( ! empty( $_GET['loggedout'] ) || $reauth )
440
+ $this->errors = new WP_Error();
 
 
 
 
441
 
442
  // Some parts of this script use the main login form to display a message
443
  if ( isset( $_GET['loggedout'] ) && true == $_GET['loggedout'] )
444
+ $this->errors->add( 'loggedout', __( 'You are now logged out.' ), 'message' );
445
  elseif ( isset( $_GET['registration'] ) && 'disabled' == $_GET['registration'] )
446
+ $this->errors->add( 'registerdisabled', __( 'User registration is currently not allowed.' ) );
447
  elseif ( isset( $_GET['checkemail'] ) && 'confirm' == $_GET['checkemail'] )
448
+ $this->errors->add( 'confirm', __( 'Check your e-mail for the confirmation link.' ), 'message' );
449
  elseif ( isset( $_GET['resetpass'] ) && 'complete' == $_GET['resetpass'] )
450
+ $this->errors->add( 'password_reset', __( 'Your password has been reset.' ), 'message' );
451
  elseif ( isset( $_GET['checkemail'] ) && 'registered' == $_GET['checkemail'] )
452
+ $this->errors->add( 'registered', __( 'Registration complete. Please check your e-mail.' ), 'message' );
453
  elseif ( $interim_login )
454
+ $this->errors->add( 'expired', __( 'Your session has expired. Please log-in again.' ), 'message' );
455
  elseif ( strpos( $redirect_to, 'about.php?updated' ) )
456
+ $this->errors->add('updated', __( '<strong>You have successfully updated WordPress!</strong> Please log back in to experience the awesomeness.' ), 'message' );
457
  elseif ( $reauth )
458
+ $this->errors->add( 'reauth', __( 'Please log in to continue.', 'theme-my-login' ), 'message' );
459
 
460
  // Clear any stale cookies.
461
  if ( $reauth )
466
  }
467
 
468
  /**
469
+ * Calls "login_enqueue_scripts" on login page
470
  *
471
+ * Callback for "wp_enqueue_scripts" hook
472
+ *
473
+ * @since 6.3
474
  */
475
+ public function wp_enqueue_scripts() {
476
+ if ( self::is_tml_page() )
477
+ do_action( 'login_enqueue_scripts' );
478
+ }
479
 
480
+ /**
481
+ * Calls "login_head" hook on login page
482
+ *
483
+ * Callback for "wp_head" hook
484
+ *
485
+ * @since 6.0
486
+ * @access public
487
+ */
488
+ public function wp_head() {
489
+ if ( self::is_tml_page() ) {
490
+ // This is already attached to "wp_head"
491
+ remove_action( 'login_head', 'wp_print_head_scripts', 9 );
492
 
493
+ do_action( 'login_head' );
494
+ }
495
+ }
 
 
 
 
 
496
 
497
+ /**
498
+ * Calls "login_footer" hook on login page
499
+ *
500
+ * Callback for "wp_footer" hook
501
+ *
502
+ * @since 6.3
503
+ */
504
+ public function wp_footer() {
505
+ if ( self::is_tml_page() ) {
506
+ // This is already attached to "wp_footer"
507
+ remove_action( 'login_footer', 'wp_print_footer_scripts', 20 );
508
 
509
+ do_action( 'login_footer' );
 
 
 
 
 
 
 
 
510
  }
511
  }
512
 
513
  /**
514
+ * Prints javascript in the footer
515
  *
516
  * @since 6.0
517
  * @access public
 
 
 
518
  */
519
+ public function wp_print_footer_scripts() {
520
+ if ( ! self::is_tml_page() )
521
+ return;
 
 
 
522
 
523
+ switch ( $this->request_action ) {
524
+ case 'lostpassword' :
525
+ case 'retrievepassword' :
526
+ case 'register' :
527
+ ?>
528
+ <script type="text/javascript">
529
+ try{document.getElementById('user_login').focus();}catch(e){}
530
+ if(typeof wpOnload=='function')wpOnload()
531
+ </script>
532
+ <?php
533
+ break;
534
+ case 'resetpass' :
535
+ case 'rp' :
536
+ ?>
537
+ <script type="text/javascript">
538
+ try{document.getElementById('pass1').focus();}catch(e){}
539
+ if(typeof wpOnload=='function')wpOnload()
540
+ </script>
541
+ <?php
542
+ break;
543
+ case 'login' :
544
+ $user_login = '';
545
+ if ( isset($_POST['log']) )
546
+ $user_login = ( 'incorrect_password' == $this->errors->get_error_code() || 'empty_password' == $this->errors->get_error_code() ) ? esc_attr( stripslashes( $_POST['log'] ) ) : '';
547
+ ?>
548
+ <script type="text/javascript">
549
+ function wp_attempt_focus() {
550
+ setTimeout( function() {
551
+ try {
552
+ <?php if ( $user_login ) { ?>
553
+ d = document.getElementById('user_pass');
554
+ <?php } else { ?>
555
+ d = document.getElementById('user_login');
556
+ <?php } ?>
557
+ d.value = '';
558
+ d.focus();
559
+ } catch(e){}
560
+ }, 200 );
561
+ }
562
+ wp_attempt_focus();
563
+ if(typeof wpOnload=='function')wpOnload()
564
+ </script>
565
+ <?php
566
+ break;
567
  }
 
 
 
 
 
568
  }
569
 
570
  /**
571
+ * Handles e-mail address login
 
 
572
  *
573
+ * @since 6.0
 
574
  * @access public
575
  *
576
+ * @param string $username Username or email
577
+ * @param string $password User's password
 
578
  */
579
+ public function wp_authenticate( &$user_login ) {
580
+ global $wpdb;
581
+ if ( is_email( $user_login ) && $this->get_option( 'email_login' ) ) {
582
+ if ( $found = $wpdb->get_var( $wpdb->prepare( "SELECT user_login FROM $wpdb->users WHERE user_email = %s", $user_login ) ) )
583
+ $user_login = $found;
584
+ }
585
+ return;
586
  }
587
 
588
+
589
+ /************************************************************************************************************************
590
+ * Filters
591
+ ************************************************************************************************************************/
592
+
593
  /**
594
+ * Uses Page template hierarchy for TML pages
595
  *
596
+ * @since 6.3
597
  *
598
+ * @param string $template The template to include
599
+ * @return string The template to include
600
+ */
601
+ public function template_include( $template ) {
602
+ if ( self::is_tml_page() )
603
+ $template = get_page_template();
604
+ return $template;
605
+ }
606
+
607
+ /**
608
+ * Rewrites URL's containing wp-login.php created by site_url()
609
+ *
610
+ * @since 6.0
611
  * @access public
612
  *
613
+ * @param string $url The URL
614
+ * @param string $path The path specified
615
+ * @param string $orig_scheme The current connection scheme (HTTP/HTTPS)
616
+ * @param int $blog_id Blog ID
617
+ * @return string The modified URL
618
  */
619
+ public function site_url( $url, $path, $orig_scheme ) {
620
+ global $pagenow;
621
 
622
+ if ( 'wp-login.php' != $pagenow && false !== strpos( $url, 'wp-login.php' ) && ! isset( $_REQUEST['interim-login'] ) ) {
623
+ parse_str( parse_url( $url, PHP_URL_QUERY ), $query );
 
 
 
 
 
624
 
625
+ $action = isset( $query['action'] ) ? $query['action'] : 'login';
 
626
 
627
+ $url = self::get_page_link( $action, $query );
628
+
629
+ if ( 'https' == strtolower( $orig_scheme ) )
630
+ $url = preg_replace( '|^http://|', 'https://', $url );
631
  }
632
  return $url;
633
  }
634
 
635
  /**
636
+ * Filters logout URL to allow for logout permalink
637
  *
638
+ * This is needed because WP doesn't pass the action parameter to site_url
639
  *
640
+ * @since 6.3
641
+ * @access public
 
642
  *
643
+ * @param string $logout_url Logout URL
644
+ * @param string $redirect Redirect URL
645
+ * @return string Logout URL
646
  */
647
+ public function logout_url( $logout_url, $redirect ) {
648
+ $logout_url = self::get_page_link( 'logout' );
649
+ if ( $redirect )
650
+ $logout = add_query_arg( 'redirect_to', urlencode( $redirect ), $logout_url );
651
+ $logout_url = wp_nonce_url( $logout_url, 'log-out' );
652
+ return $logout_url;
 
 
 
 
 
 
 
653
  }
654
 
655
  /**
665
  * @return string The modified post title
666
  */
667
  function single_post_title( $title ) {
668
+ if ( self::is_tml_page( 'login' ) && is_user_logged_in() )
669
+ $title = $this->get_instance()->get_title( 'login' );
 
 
670
  return $title;
671
  }
672
 
673
  /**
674
+ * Changes the_title() to reflect the current action
675
  *
676
+ * Callback for "the_title" hook in the_title()
677
  *
678
+ * @see the_title()
679
  * @since 6.0
680
+ * @acess public
681
  *
682
+ * @param string $title The current post title
683
+ * @param int $post_id The current post ID
684
+ * @return string The modified post title
685
  */
686
+ public function the_title( $title, $post_id = 0 ) {
687
+ if ( is_admin() )
688
+ return $title;
 
 
 
689
 
690
+ if ( self::is_tml_page( 'login', $post_id ) && is_user_logged_in() ) {
691
+ if ( in_the_loop() )
692
+ $title = $this->get_instance()->get_title( 'login' );
693
+ }
694
+ return $title;
 
 
 
 
 
 
 
 
 
 
 
695
  }
696
 
697
  /**
706
  * @param object $menu_item The menu item
707
  * @return object The (possibly) modified menu item
708
  */
709
+ public function wp_setup_nav_menu_item( $menu_item ) {
710
+ if ( is_admin() )
711
+ return $menu_item;
712
+
713
+ if ( 'tml_page' == $menu_item->object && self::is_tml_page( 'login', $menu_item->object_id ) ) {
714
+ if ( is_user_logged_in() ) {
715
+ $menu_item->title = $this->get_instance()->get_title( 'logout' );
716
+ $menu_item->url = wp_logout_url();
717
+ }
718
  }
719
  return $menu_item;
720
  }
721
 
722
+ /**
723
+ * Applies page permalink to TML pages
724
+ *
725
+ * @since 6.3
726
+ *
727
+ * @param string $post_link Post link
728
+ * @param object $post Post object
729
+ * @param bool $leavename
730
+ * @param bool $sample
731
+ * @return string Post link
732
+ */
733
+ public function post_type_link( $post_link, $post, $leavename, $sample ) {
734
+ global $wp_rewrite;
735
+
736
+ if ( $wp_rewrite->using_permalinks() ) {
737
+ if ( 'tml_page' == $post->post_type )
738
+ $post_link = get_page_link( $post->ID, $leavename, $sample );
739
+ }
740
+ return $post_link;
741
+ }
742
+
743
+
744
+ /************************************************************************************************************************
745
+ * Utilities
746
+ ************************************************************************************************************************/
747
+
748
  /**
749
  * Handler for "theme-my-login" shortcode
750
  *
761
  * - show_log_link - True to display the login link, false to hide. Defaults to true.
762
  * - show_reg_link - True to display the register link, false to hide. Defaults to true.
763
  * - show_pass_link - True to display the lost password link, false to hide. Defaults to true.
 
 
764
  * - logged_in_widget - True to display the widget when logged in, false to hide. Defaults to true.
765
+ * - logged_out_widget - True to display the widget when logged out, false to hide. Defaults to true.
766
  * - show_gravatar - True to display the user's gravatar, false to hide. Defaults to true.
767
  * - gravatar_size - The size of the user's gravatar. Defaults to "50".
768
  *
772
  * @param string|array $atts Attributes passed from the shortcode
773
  * @return string HTML output from Theme_My_Login_Template->display()
774
  */
775
+ public function shortcode( $atts = '' ) {
776
+ static $did_main_instance = false;
777
+
778
+ $atts = wp_parse_args( $atts );
779
+
780
+ if ( self::is_tml_page() && in_the_loop() && is_main_query() && ! $did_main_instance ) {
781
+ $instance = $this->get_instance();
782
+
783
+ if ( ! empty( $this->request_action ) )
784
+ $atts['default_action'] = $this->request_action;
785
+
786
+ if ( ! isset( $atts['show_title'] ) )
787
+ $atts['show_title'] = false;
788
+
789
+ foreach ( $atts as $option => $value ) {
790
+ $instance->set_option( $option, $value );
791
+ }
792
 
793
+ $did_main_instance = true;
 
 
794
  } else {
795
+ $instance = $this->load_instance( $atts );
 
796
  }
797
+ return $instance->display();
798
+ }
799
+
800
+ /**
801
+ * Determines if $action is for $page
802
+ *
803
+ * @since 6.3
804
+ *
805
+ * @param string $action The action to check
806
+ * @param int|object Post ID or object
807
+ * @return bool True if $action is for $page, false otherwise
808
+ */
809
+ public static function is_tml_page( $action = '', $page = '' ) {
810
+ if ( ! $page = get_post( $page ) )
811
+ return false;
812
+
813
+ if ( 'tml_page' != $page->post_type )
814
+ return false;
815
+
816
+ if ( empty( $action ) )
817
+ return true;
818
 
819
+ if ( ! $page_action = self::get_page_action( $page->ID ) )
820
+ return false;
821
 
822
+ if ( $action == $page_action )
823
+ return true;
824
+
825
+ return false;
826
  }
827
 
828
  /**
829
+ * Returns link for a login page
830
  *
831
+ * @since 6.3
832
  * @access public
833
  *
834
+ * @param string $action The action
835
+ * @param string|array $query Optional. Query arguments to add to link
836
+ * @return string Login page link with optional $query arguments appended
837
  */
838
+ public static function get_page_link( $action, $query = '' ) {
839
+ $link = self::_get_page_link( $action );
840
+
841
+ if ( ! empty( $query ) ) {
842
+ $args = wp_parse_args( $query );
843
+
844
+ if ( isset( $args['action'] ) && $action == $args['action'] )
845
+ unset( $args['action'] );
846
+
847
+ $link = add_query_arg( array_map( 'rawurlencode', $args ), $link );
848
+ }
849
+
850
+ return apply_filters( 'tml_page_link', $link, $action, $query );
851
+ }
852
+
853
+ private static function _get_page_link( $action ) {
854
+ // Check if page exists
855
+ $page_id = self::get_page_id( $action );
856
+
857
+ // If not, try for Login page, if it wasn't tried already.
858
+ if ( ! $page_id && 'login' != $action )
859
+ $page_id = self::get_page_id( 'login' );
860
+
861
+ // Return permalink if page exists
862
+ if ( $page_id )
863
+ return get_permalink( $page_id );
864
+
865
+ // Remove site_url filter so we can return wp-login.php
866
+ remove_filter( 'site_url', array( self::get_object(), 'site_url' ), 10, 3 );
867
+
868
+ // Return wp-login.php
869
+ return site_url( 'wp-login.php' );
870
  }
871
 
872
  /**
873
+ * Retrieves a page ID for an action
874
  *
875
+ * @since 6.3
 
876
  *
877
+ * @param string $action The action
878
+ * @return int|bool The page ID if exists, false otherwise
879
  */
880
+ public static function get_page_id( $action ) {
881
+ global $wpdb;
882
+
883
+ if ( 'rp' == $action )
884
+ $action = 'resetpass';
885
+ elseif ( 'retrievepassword' == $action )
886
+ $action = 'lostpassword';
887
+
888
+ return $wpdb->get_var( $wpdb->prepare( "SELECT p.ID FROM $wpdb->posts p LEFT JOIN $wpdb->postmeta pmeta ON p.ID = pmeta.post_id WHERE p.post_type = 'tml_page' AND pmeta.meta_key = '_tml_action' AND pmeta.meta_value = %s", $action ) );
 
 
889
  }
890
 
891
  /**
892
+ * Get the action for a page
893
  *
894
+ * @since 6.3
 
895
  *
896
+ * @param int|object Post ID or object
897
+ * @return string|bool Action name if exists, false otherwise
 
 
898
  */
899
+ public static function get_page_action( $page ) {
900
+ if ( ! $page = get_post( $page ) )
901
+ return false;
902
+
903
+ return get_post_meta( $page->ID, '_tml_action', true );
 
 
 
 
 
 
 
 
 
 
 
 
904
  }
905
 
906
  /**
914
  * @param string $file Filename of stylesheet to load
915
  * @return string Path to stylesheet
916
  */
917
+ public static function get_stylesheet( $file = 'theme-my-login.css' ) {
918
  if ( file_exists( get_stylesheet_directory() . '/' . $file ) )
919
  $stylesheet = get_stylesheet_directory_uri() . '/' . $file;
920
  elseif ( file_exists( get_template_directory() . '/' . $file ) )
925
  }
926
 
927
  /**
928
+ * Retrieves active instance object
929
  *
930
+ * @since 6.3
931
  * @access public
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
932
  *
933
+ * @return object Instance object
 
934
  */
935
+ public function get_active_instance() {
936
+ return $this->get_instance( (int) $this->request_instance );
 
 
 
937
  }
938
 
939
  /**
940
+ * Retrieves a loaded instance object
941
  *
942
+ * @since 6.3
943
  * @access public
944
+ *
945
+ * @param int $id Instance ID
946
+ * @return object Instance object
 
 
947
 
948
+ */
949
+ public function get_instance( $id = 0 ) {
950
+ if ( isset( $this->loaded_instances[$id] ) )
951
+ return $this->loaded_instances[$id];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
952
  }
953
 
954
  /**
955
+ * Sets an instance object
956
  *
957
+ * @since 6.3
 
 
958
  * @access public
959
+ *
960
+ * @param object $object Instance object
961
  */
962
+ public function set_instance( $object ) {
963
+ $this->loaded_instances[] =& $object;
 
 
 
 
 
 
 
 
 
 
 
964
  }
965
 
966
  /**
967
+ * Instantiates an instance
968
  *
969
+ * @since 6.3
970
  * @access public
971
  *
972
+ * @param array|string $args Array or query string of arguments
973
+
974
+ * @return object Instance object
975
  */
976
+ public function load_instance( $args = '' ) {
977
+ $args['instance'] = count( $this->loaded_instances );
978
+
979
+ $instance = new Theme_My_Login_Template( $args );
980
+
981
+ if ( $args['instance'] == $this->request_instance ) {
982
+ $instance->set_active();
983
+ $instance->set_option( 'default_action', $this->request_action );
984
+ }
985
+
986
+ $this->loaded_instances[] = $instance;
987
+
988
+ return $instance;
989
  }
990
 
991
  /**
992
+ * Load the translation file for current language. Checks the languages
993
+ * folder inside the plugin first, and then the default WordPress
994
+ * languages folder.
995
  *
996
+ * Note that custom translation files inside the plugin folder
997
+ * will be removed on plugin updates. If you're creating custom
998
+ * translation files, please use the global language folder.
999
  *
1000
+ * @since 6.3
1001
+ *
1002
+ * @return bool True on success, false on failure
1003
  */
1004
+ private static function load_textdomain() {
1005
+
1006
+ // Traditional WordPress plugin locale filter
1007
+ $locale = apply_filters( 'plugin_locale', get_locale(), 'theme-my-login' );
1008
+ $mofile = sprintf( 'theme-my-login-%s.mo', $locale );
1009
+
1010
+ // Look in global /wp-content/languages/theme-my-login folder
1011
+ if ( file_exists( WP_LANG_DIR . '/theme-my-login/' . $mofile ) ) {
1012
+ return load_textdomain( 'theme-my-login', WP_LANG_DIR . '/theme-my-login/' . $mofile );
1013
+
1014
+ // Look in local /wp-content/plugins/theme-my-login/language folder
1015
+ } elseif ( file_exists( WP_PLUGIN_DIR . '/theme-my-login/language/' . $mofile ) ) {
1016
+ return load_textdomain( 'theme-my-login', WP_PLUGIN_DIR . '/theme-my-login/language/' . $mofile );
1017
  }
1018
+
1019
+ // Nothing found
1020
+ return false;
1021
  }
1022
 
1023
  /**
1029
  *
1030
  * @return bool|WP_Error True: when finish. WP_Error on error
1031
  */
1032
+ public static function retrieve_password() {
1033
  global $wpdb, $current_site;
1034
 
1035
  $errors = new WP_Error();
1036
 
1037
  if ( empty( $_POST['user_login'] ) ) {
1038
+ $errors->add( 'empty_username', __( '<strong>ERROR</strong>: Enter a username or e-mail address.' ) );
1039
  } else if ( strpos( $_POST['user_login'], '@' ) ) {
1040
  $user_data = get_user_by_email( trim( $_POST['user_login'] ) );
1041
  if ( empty( $user_data ) )
1042
+ $errors->add( 'invalid_email', __( '<strong>ERROR</strong>: There is no user registered with that email address.' ) );
1043
  } else {
1044
  $login = trim( $_POST['user_login'] );
1045
  $user_data = get_user_by( 'login', $login );
1050
  if ( $errors->get_error_code() )
1051
  return $errors;
1052
 
1053
+ if ( ! $user_data ) {
1054
+ $errors->add( 'invalidcombo', __( '<strong>ERROR</strong>: Invalid username or e-mail.' ) );
1055
  return $errors;
1056
  }
1057
 
1064
 
1065
  $allow = apply_filters( 'allow_password_reset', true, $user_data->ID );
1066
 
1067
+ if ( ! $allow )
1068
+ return new WP_Error( 'no_password_reset', __( 'Password reset is not allowed for this user' ) );
1069
  else if ( is_wp_error( $allow ) )
1070
  return $allow;
1071
 
1077
  // Now insert the new md5 key into the db
1078
  $wpdb->update( $wpdb->users, array( 'user_activation_key' => $key ), array( 'user_login' => $user_login ) );
1079
  }
1080
+ $message = __( 'Someone requested that the password be reset for the following account:' ) . "\r\n\r\n";
1081
  $message .= network_home_url( '/' ) . "\r\n\r\n";
1082
+ $message .= sprintf( __( 'Username: %s' ), $user_login ) . "\r\n\r\n";
1083
+ $message .= __( 'If this was a mistake, just ignore this email and nothing will happen.' ) . "\r\n\r\n";
1084
+ $message .= __( 'To reset your password, visit the following address:' ) . "\r\n\r\n";
1085
  $message .= '<' . network_site_url( "wp-login.php?action=rp&key=$key&login=" . rawurlencode( $user_login ), 'login' ) . ">\r\n";
1086
 
1087
  if ( is_multisite() ) {
1092
  $blogname = wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES );
1093
  }
1094
 
1095
+ $title = sprintf( __( '[%s] Password Reset' ), $blogname );
1096
 
1097
  $title = apply_filters( 'retrieve_password_title', $title, $user_data->ID );
1098
  $message = apply_filters( 'retrieve_password_message', $message, $key, $user_data->ID );
1099
 
1100
+ if ( $message && ! wp_mail( $user_email, $title, $message ) )
1101
+ wp_die( __( 'The e-mail could not be sent.' ) . "<br />\n" . __( 'Possible reason: your host may have disabled the mail() function...' ) );
1102
 
1103
  return true;
1104
  }
1115
  *
1116
  * @return object|WP_Error
1117
  */
1118
+ public static function check_password_reset_key( $key, $login ) {
1119
  global $wpdb;
1120
 
1121
  $key = preg_replace( '/[^a-z0-9]/i', '', $key );
1122
 
1123
+ if ( empty( $key ) || ! is_string( $key ) )
1124
+ return new WP_Error( 'invalid_key', __( 'Invalid key' ) );
1125
 
1126
+ if ( empty( $login ) || ! is_string( $login ) )
1127
+ return new WP_Error( 'invalid_key', __( 'Invalid key' ) );
1128
 
1129
  $user = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->users WHERE user_activation_key = %s AND user_login = %s", $key, $login ) );
1130
 
1131
  if ( empty( $user ) )
1132
+ return new WP_Error( 'invalid_key', __( 'Invalid key' ) );
1133
 
1134
  return $user;
1135
  }
1143
  *
1144
  * @param string $key Hash to validate sending user's password
1145
  */
1146
+ public static function reset_password( $user, $new_pass ) {
1147
  do_action( 'password_reset', $user, $new_pass );
1148
 
1149
  wp_set_password( $new_pass, $user->ID );
1161
  * @param string $user_email User's email address to send password and add
1162
  * @return int|WP_Error Either user's ID or error on failure.
1163
  */
1164
+ public static function register_new_user( $user_login, $user_email ) {
1165
  $errors = new WP_Error();
1166
 
1167
  $sanitized_user_login = sanitize_user( $user_login );
1169
 
1170
  // Check the username
1171
  if ( $sanitized_user_login == '' ) {
1172
+ $errors->add( 'empty_username', __( '<strong>ERROR</strong>: Please enter a username.' ) );
1173
+ } elseif ( ! validate_username( $user_login ) ) {
1174
+ $errors->add( 'invalid_username', __( '<strong>ERROR</strong>: This username is invalid because it uses illegal characters. Please enter a valid username.' ) );
1175
  $sanitized_user_login = '';
1176
  } elseif ( username_exists( $sanitized_user_login ) ) {
1177
+ $errors->add( 'username_exists', __( '<strong>ERROR</strong>: This username is already registered, please choose another one.' ) );
1178
  }
1179
 
1180
  // Check the e-mail address
1181
  if ( '' == $user_email ) {
1182
+ $errors->add( 'empty_email', __( '<strong>ERROR</strong>: Please type your e-mail address.' ) );
1183
+ } elseif ( ! is_email( $user_email ) ) {
1184
+ $errors->add( 'invalid_email', __( '<strong>ERROR</strong>: The email address isn&#8217;t correct.' ) );
1185
  $user_email = '';
1186
  } elseif ( email_exists( $user_email ) ) {
1187
+ $errors->add( 'email_exists', __( '<strong>ERROR</strong>: This email is already registered, please choose another one.' ) );
1188
  }
1189
 
1190
  do_action( 'register_post', $sanitized_user_login, $user_email, $errors );
1196
 
1197
  $user_pass = apply_filters( 'tml_user_registration_pass', wp_generate_password( 12, false ) );
1198
  $user_id = wp_create_user( $sanitized_user_login, $user_pass, $user_email );
1199
+ if ( ! $user_id ) {
1200
+ $errors->add( 'registerfail', sprintf( __( '<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href="mailto:%s">webmaster</a> !' ), get_option( 'admin_email' ) ) );
1201
  return $errors;
1202
  }
1203
 
1208
  return $user_id;
1209
  }
1210
  }
 
1211
  endif; // Class exists
1212
 
 
language/theme-my-login-ar.mo DELETED
Binary file
language/theme-my-login-ar.po DELETED
@@ -1,1433 +0,0 @@
1
- # Copyright (C) 2012 Theme My Login
2
- # This file is distributed under the same license as the Theme My Login package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Theme My Login 6.2\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/theme-my-login\n"
7
- "POT-Creation-Date: 2012-03-06 23:00:42+00:00\n"
8
- "PO-Revision-Date: 2012-05-04 08:30-0500\n"
9
- "Last-Translator: Jeff Farthing <jeff@jfarthing.com>\n"
10
- "Language-Team: SmartData <info@smartdata.com.sa>\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-Language: Arabic\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
-
17
- #. #-#-#-#-# plugin.pot (Theme My Login 6.2-bleeding) #-#-#-#-#
18
- #. Plugin Name of the plugin/theme
19
- #: admin/class-theme-my-login-admin.php:42
20
- #: admin/class-theme-my-login-admin.php:43
21
- #: includes/class-theme-my-login-widget.php:24
22
- msgid "Theme My Login"
23
- msgstr "ثيم My login"
24
-
25
- #: admin/class-theme-my-login-admin.php:81
26
- msgid "ERROR: The module \"%1$s\" could not be activated (%2$s)."
27
- msgstr " (%2$s) الوحدة \"%1$s\" هذه تفعيل خطأ: تعذر"
28
-
29
- #: admin/class-theme-my-login-admin.php:103
30
- msgid "NOTICE:"
31
- msgstr "ملاحظة"
32
-
33
- #: admin/class-theme-my-login-admin.php:104
34
- msgid "Now that you have activated Theme My Login, please <a href=\"%s\">visit the settings page</a> and familiarize yourself with all of the available options."
35
- msgstr "لتتعرف على كل الخيارات المتاحة المرجو <a href=\"%s\"> زيارة صفحة الإعدادات</a> My login لقد قمت بتفعيل ثيم "
36
-
37
- #: admin/class-theme-my-login-admin.php:106
38
- msgid "Take me to the settings page"
39
- msgstr "خدني إلى صفحة الإعدادات"
40
-
41
- #: admin/class-theme-my-login-admin.php:119
42
- msgid "You can now login with your e-mail address or username! Try it out!"
43
- msgstr "يمكنك الدخول الآن بعنوان بريدك الإلكتروني أو اسم المستخدم! جرب القيام بذلك!"
44
-
45
- #: admin/class-theme-my-login-admin.php:120
46
- msgid "Theme My Login now utilizes a module system. Modules are similar to WordPress plugins. Each module extends the default functionality of Theme My Login. <a rel=\"tml-options\" href=\"#tml-options-modules\">Click here</a> to get started with modules now."
47
- msgstr "يستعمل الأن وحدات النظام ،الوحدات مشابهة لملحقات الووردبرس. كل وحدة تستمد وظيفتها من ثيم ماي لوجين<a rel=\"tml-options\" href=\"#tml-options-modules\"> إضغط هنا</a> للبدء مع الوحدات الآن . My login ثيم "
48
-
49
- #: admin/class-theme-my-login-admin.php:121
50
- msgid "Theme My Login now allows custom forms. You can create your own form template(s) by copying the default version(s) from \"theme-my-login/templates\" to your current theme directory. Try it out!"
51
- msgstr " إلى ملف الثيم الخاص بك . حاول القيام بذلك \"theme-my-login/templates\" يتيح الآن نماذج خاصة. يمكنك إنشاء قالبك الخاص عن طريق نسخ الإصدار الاولي من My login ثيم "
52
-
53
- #: admin/class-theme-my-login-admin.php:122
54
- msgid "You can maintain your stylesheet changes between upgrades. Just simply copy the file \"theme-my-login/theme-my-login.css\" to your current theme directory and edit it as you please!"
55
- msgstr " إلى ملف الثيم الخاص بك وعدل فيه كما تشاء \"theme-my-login/theme-my-login.css\" فقط انسخ الملف . يمكنك الحفاظ على التغييرات التي قمت بها بين ترقيات"
56
-
57
- #: admin/class-theme-my-login-admin.php:123
58
- msgid "Theme My Login provides a shortcode that you can use within your posts with multiple parameters to customize the form. Visit the <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Theme My Login Documentation</a> for usage instructions."
59
- msgstr "ثيم my login يوفر الرمز القصير التي يمكنك استخدامها في مشاركاتك مع معلمات متعددة لتخصيص النموذج. قم بزيارت <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">ارشادات ثيم my login</a>للحصول على تعليمات الاستخدام."
60
-
61
- #: admin/class-theme-my-login-admin.php:124
62
- msgid "Jeff is <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">available for hire</a>!"
63
- msgstr "Jeff <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">متوفرة للتأجير</a>!"
64
-
65
- #: admin/class-theme-my-login-admin.php:128
66
- msgid "Did You Know?"
67
- msgstr "هل تعلم !"
68
-
69
- #: admin/class-theme-my-login-admin.php:177
70
- msgid "General"
71
- msgstr "عام"
72
-
73
- #: admin/class-theme-my-login-admin.php:178
74
- msgid "Basic"
75
- msgstr "الأساسية"
76
-
77
- #: admin/class-theme-my-login-admin.php:179
78
- #: admin/class-theme-my-login-admin.php:319
79
- msgid "Modules"
80
- msgstr "وحدات"
81
-
82
- #: admin/class-theme-my-login-admin.php:181
83
- msgid "Permalinks"
84
- msgstr "روابط"
85
-
86
- #: admin/class-theme-my-login-admin.php:188
87
- msgid "Theme My Login Settings"
88
- msgstr "إعدادات ثيم My login"
89
-
90
- #: admin/class-theme-my-login-admin.php:194
91
- #: admin/class-theme-my-login-admin.php:254
92
- msgid "Save Changes"
93
- msgstr "حفظ التغييرات"
94
-
95
- #: admin/class-theme-my-login-admin.php:271
96
- msgid "Page ID"
97
- msgstr " الصفحة ID "
98
-
99
- #: admin/class-theme-my-login-admin.php:274
100
- msgid "This should be the ID of the WordPress page that includes the [theme-my-login] shortcode. By default, this page is titled \"Login\"."
101
- msgstr "يجب أن يكون هذا الرقم من الصفحة التي تحتوي على ووردبرس [theme-my-login] الرمز القصير. افتراضيا، ويحمل عنوان هذه الصفحة \"Login\". "
102
-
103
- #: admin/class-theme-my-login-admin.php:278
104
- msgid "Pagelist"
105
- msgstr "الصفحات قائمة"
106
-
107
- #: admin/class-theme-my-login-admin.php:281
108
- msgid "Show Page In Pagelist"
109
- msgstr "إظهار قائمة الصفحات"
110
-
111
- #: admin/class-theme-my-login-admin.php:282
112
- msgid "Enable this setting to add login/logout links to the pagelist generated by functions like wp_list_pages() and wp_page_menu()."
113
- msgstr "تمكين هذا الإعداد لإضافة الدخول / الخروج وصلات إلى صفحة قائمة التي تولدها وظائف مثل wp_list_pages () وwp_page_menu ()."
114
-
115
- #: admin/class-theme-my-login-admin.php:286
116
- msgid "Stylesheet"
117
- msgstr "صفحة الأنماط"
118
-
119
- #: admin/class-theme-my-login-admin.php:289
120
- msgid "Enable \"theme-my-login.css\""
121
- msgstr "تشغيل \"theme-my-login.css\""
122
-
123
- #: admin/class-theme-my-login-admin.php:290
124
- msgid "In order to keep changes between upgrades, you can store your customized \"theme-my-login.css\" in your current theme directory."
125
- msgstr "من اجل الحفاظ على التغيرات بين ترقيات، يمكنك تخزين خصائص \"theme-my-login.css\" في ملف الثيم الحالي."
126
-
127
- #: admin/class-theme-my-login-admin.php:294
128
- msgid "E-mail Login"
129
- msgstr "إيميل الدخول"
130
-
131
- #: admin/class-theme-my-login-admin.php:297
132
- msgid "Enable e-mail address login"
133
- msgstr "تمكين الدخول بالإيميل"
134
-
135
- #: admin/class-theme-my-login-admin.php:298
136
- msgid "Allows users to login using their e-mail address in place of their username."
137
- msgstr "يسمح للمستخدمين تسجيل الدخول باستخدام البريد الإلكتروني الخاصة بهم في مكان اسم المستخدم الخاص بهم."
138
-
139
- #: admin/class-theme-my-login-admin.php:323
140
- msgid "Enable %s"
141
- msgstr "تمكين %s"
142
-
143
- #: admin/class-theme-my-login-admin.php:325
144
- msgid "No modules found."
145
- msgstr "لم يعثر على وحدات "
146
-
147
- #: admin/class-theme-my-login-admin.php:343
148
- #: includes/class-theme-my-login-widget.php:87
149
- msgid "Login"
150
- msgstr "دخول"
151
-
152
- #: admin/class-theme-my-login-admin.php:344
153
- #: includes/class-theme-my-login-template.php:141
154
- #: includes/class-theme-my-login-widget.php:87
155
- #: templates/register-form.php:25
156
- msgid "Register"
157
- msgstr "التسجيل"
158
-
159
- #: admin/class-theme-my-login-admin.php:345
160
- #: includes/class-theme-my-login-template.php:147
161
- #: includes/class-theme-my-login-widget.php:87
162
- msgid "Lost Password"
163
- msgstr "فقدت كلمة السر"
164
-
165
- #: admin/class-theme-my-login-admin.php:475
166
- msgid "One of the modules is invalid."
167
- msgstr "احد الوحدات غير صالح."
168
-
169
- #: admin/class-theme-my-login-admin.php:531
170
- msgid "Invalid module path."
171
- msgstr "مسار الوحدة غير صالح."
172
-
173
- #: admin/class-theme-my-login-admin.php:533
174
- msgid "Module file does not exist."
175
- msgstr "ملف الوحدة لا وجود له."
176
-
177
- #: admin/class-theme-my-login-admin.php:537
178
- msgid "The module does not have a valid header."
179
- msgstr "الوحدة ليس لديه عنوان صحيح."
180
-
181
- #: includes/class-theme-my-login-ms-signup.php:117
182
- msgctxt "Multisite active signup type"
183
- msgid "all"
184
- msgstr "الكل"
185
-
186
- #: includes/class-theme-my-login-ms-signup.php:118
187
- msgctxt "Multisite active signup type"
188
- msgid "none"
189
- msgstr "لا شيء"
190
-
191
- #: includes/class-theme-my-login-ms-signup.php:119
192
- msgctxt "Multisite active signup type"
193
- msgid "blog"
194
- msgstr "المدونة"
195
-
196
- #: includes/class-theme-my-login-ms-signup.php:120
197
- msgctxt "Multisite active signup type"
198
- msgid "user"
199
- msgstr "المستخدم"
200
-
201
- #: includes/class-theme-my-login-ms-signup.php:123
202
- msgid "Greetings Site Administrator! You are currently allowing &#8220;%s&#8221; registrations. To change or disable registration go to your <a href=\"%s\">Options page</a>."
203
- msgstr "تحيات مدير الموقع! انت في الوقت الراهن مسجل \"٪ S\" . لتعطيل التسجيل اذهب إلى ل<a href=\"٪s\"> صفحة خيارات </a>."
204
-
205
- #: includes/class-theme-my-login-ms-signup.php:129
206
- msgid "Registration has been disabled."
207
- msgstr "لقد تم تعطيل تسجيل."
208
-
209
- #: includes/class-theme-my-login-ms-signup.php:131
210
- msgid "You must first <a href=\"%s\">log in</a>, and then you can create a new site."
211
- msgstr "يجب عليك اولا <a href=\"٪s\"> تسجيل الدخول </ a>، وبعد ذلك يمكنك إنشاء موقع جديد."
212
-
213
- #: includes/class-theme-my-login-ms-signup.php:155
214
- msgid "%s is your new username"
215
- msgstr "%s هو اسم العضو الجديد"
216
-
217
- #: includes/class-theme-my-login-ms-signup.php:156
218
- msgid "But, before you can start using your new username, <strong>you must activate it</strong>."
219
- msgstr "لكن، قبل أن تتمكن من البدء في استخدام موقعك الجديدة، <strong> يجب عليك تفعيله </strong>."
220
-
221
- #: includes/class-theme-my-login-ms-signup.php:157
222
- msgid "Check your inbox at <strong>%1$s</strong> and click the link given."
223
- msgstr "تحقق البريد الوارد الخاص بك في الموقع <strong>٪ 1 $ S </ strong> وانقر على الرابط ."
224
-
225
- #: includes/class-theme-my-login-ms-signup.php:158
226
- msgid "If you do not activate your username within two days, you will have to sign up again."
227
- msgstr "إذا لم تقم بتنشيط اسم المستخدم الخاص بك في غضون يومين، سوف تضطر للتسجيل مرة أخرى."
228
-
229
- #: includes/class-theme-my-login-ms-signup.php:162
230
- msgid "User registration has been disabled."
231
- msgstr "لقد تم تعطيل تسجيل العضو."
232
-
233
- #: includes/class-theme-my-login-ms-signup.php:194
234
- msgid "Congratulations! Your new site, %s, is almost ready."
235
- msgstr "مبروك! موقعك الجديد، %s ، يكاد يكون جاهزا."
236
-
237
- #: includes/class-theme-my-login-ms-signup.php:196
238
- msgid "But, before you can start using your site, <strong>you must activate it</strong>."
239
- msgstr "لكن، قبل أن تتمكن من البدء في استخدام موقعك الجديدة، <strong> يجب عليك تفعيله </strong>."
240
-
241
- #: includes/class-theme-my-login-ms-signup.php:197
242
- msgid "Check your inbox at <strong>%s</strong> and click the link given."
243
- msgstr "تحقق البريد الوارد الخاص بك في الموقع <strong>٪s </ strong> وانقر على االرابط الموجود"
244
-
245
- #: includes/class-theme-my-login-ms-signup.php:198
246
- msgid "If you do not activate your site within two days, you will have to sign up again."
247
- msgstr "إذا لم تقم بتنشيط موقعك في غضون يومين، سوف تضطر للتسجيل مرة أخرى."
248
-
249
- #: includes/class-theme-my-login-ms-signup.php:199
250
- msgid "Still waiting for your email?"
251
- msgstr "لا تزال في انتظار البريد الإلكتروني؟"
252
-
253
- #: includes/class-theme-my-login-ms-signup.php:201
254
- msgid "If you haven&#8217;t received your email yet, there are a number of things you can do:"
255
- msgstr "إذا لم تستلم الالرسالة الخاص بك حتى الآن، هناك عدد من الأشياء التي يمكن القيام بها:"
256
-
257
- #: includes/class-theme-my-login-ms-signup.php:203
258
- msgid "Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control."
259
- msgstr "انتظار قليلا. يمكن أحيانا أن يتأخر تسليم البريد الإلكتروني بواسطة العمليات خارج نطاق سيطرتنا."
260
-
261
- #: includes/class-theme-my-login-ms-signup.php:204
262
- msgid "Check the junk or spam folder of your email client. Sometime emails wind up there by mistake."
263
- msgstr "تحقق مجلد الرسائل غير المرغوب فيها في بريدك الإلكتروني. فو بعض الوقات تذهب الرسائل الى هناك بالخطأ."
264
-
265
- #: includes/class-theme-my-login-ms-signup.php:205
266
- msgid "Have you entered your email correctly? You have entered %s, if it&#8217;s incorrect, you will not receive your email."
267
- msgstr "هل أدخلت بريدك الإلكتروني بشكل صحيح ؟ لقد قمة بادخال %s , اذا كان غير صحيح، لن تتلقى البريد الإلكتروني الخاص بك."
268
-
269
- #: includes/class-theme-my-login-ms-signup.php:211
270
- msgid "Site registration has been disabled."
271
- msgstr "لقد تم تعطيل التسجيل على الموقع."
272
-
273
- #: includes/class-theme-my-login-ms-signup.php:235
274
- msgid "The site %s is yours."
275
- msgstr "الموقع s% لك"
276
-
277
- #: includes/class-theme-my-login-ms-signup.php:237
278
- msgid "<a href=\"http://%1$s\">http://%2$s</a> is your new site. <a href=\"%3$s\">Log in</a> as &#8220;%4$s&#8221; using your existing password."
279
- msgstr "<a href=\"http://%1$s\">http://%2$s</a>هو موقعك الجديد. <a href=\"%3$s\">سجل الدخول</a> as &#8220;%4$s&#8221;باستخدام كلمة السر الموجودة لديك."
280
-
281
- #: includes/class-theme-my-login-ms-signup.php:253
282
- msgid "Sorry, new registrations are not allowed at this time."
283
- msgstr "آسف، لا يسمح بالتسجيلات الجديدة في هذه الاوقات."
284
-
285
- #: includes/class-theme-my-login-ms-signup.php:255
286
- msgid "You are logged in already. No need to register again!"
287
- msgstr "تم تسجيل الدخول بالفعل. لا حاجة لتسجيل مرة أخرى!"
288
-
289
- #: includes/class-theme-my-login-ms-signup.php:261
290
- msgid "<p><em>The site you were looking for, <strong>%s</strong> does not exist, but you can create it now!</em></p>"
291
- msgstr "<p><em>الموقع الذي تبحث عنه،<strong>%s</strong> غير موجود ولكنك تستطيع إنشائه الآن!</em></p>"
292
-
293
- #: includes/class-theme-my-login-ms-signup.php:263
294
- msgid "<p><em>The site you were looking for, <strong>%s</strong>, does not exist.</em></p>"
295
- msgstr "<p><em>الموقع الذي تبحث عنه، <strong>%s</strong>, غير موجود.</em></p>"
296
-
297
- #: includes/class-theme-my-login-ms-signup.php:402
298
- msgid "Activation Key Required"
299
- msgstr "مفتاح التفعيل مطلوب"
300
-
301
- #: includes/class-theme-my-login-ms-signup.php:405
302
- msgid "Activation Key:"
303
- msgstr "مفتاح التفعيل:"
304
-
305
- #: includes/class-theme-my-login-ms-signup.php:409
306
- #: includes/class-theme-my-login-ms-signup.php:481
307
- msgid "Activate"
308
- msgstr "تفعيل"
309
-
310
- #: includes/class-theme-my-login-ms-signup.php:421
311
- #: includes/class-theme-my-login-ms-signup.php:441
312
- msgid "Your account is now active!"
313
- msgstr "حسابك الآن مفعل!"
314
-
315
- #: includes/class-theme-my-login-ms-signup.php:425
316
- msgid "Your account has been activated. You may now <a href=\"%1$s\">login</a> to the site using your chosen username of &#8220;%2$s&#8221;. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%4$s\">reset your password</a>."
317
- msgstr "لقد تم تنشيط حسابك. يمكنك الآن<a href=\"%1$s\">login</a> إلى الموقع باستخدام اسم المستخدم الذي اخترته &#8220;%2$s&#8221;. يرجى التحقق من بريدك الالكتروني في %3$sلكلمة السر وتعليمات الدخول. إذا كنت لم تتلقى رسالة في بريدك إلكتروني، يرجى مراجعة مجلد الرسائل غير المرغوب فيها. إذا كنت لا تزال لا تتلقى رسالة بريد إلكتروني في غضون ساعة، يمكنك <a href=\"%4$s\">إعادة تعيين كلمة السر</a>."
318
-
319
- #: includes/class-theme-my-login-ms-signup.php:427
320
- msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a>."
321
- msgstr " موقعك <a href=\"%1$s\">%2$s</a>ثم تنشيطه. يمكنك الآن تسجيل الدخول إلى موقع الويب الخاص بك باستخدام اسم المستخدم الذي اخترته &#8220;%3$s&#8221;.يرجى التحقق من بريدك الالكتروني في %4$sلكلمة السر وتعليمات الدخول. إذا كنت لم تتلقى رسالة في بريدك إلكتروني، يرجى مراجعة مجلد الرسائل غير المرغوب فيها. إذا كنت لا تزال لا تتلقى رسالة بريد إلكتروني في غضون ساعة، يمكنك <a href=\"%5$s\">إعادة تعيين كلمة السر</a>."
322
-
323
- #: includes/class-theme-my-login-ms-signup.php:432
324
- msgid "An error occurred during the activation"
325
- msgstr "حدث خطأ خلال تفعيل"
326
-
327
- #: includes/class-theme-my-login-ms-signup.php:444
328
- #: templates/ms-signup-user-form.php:16
329
- msgid "Username:"
330
- msgstr "اسم المستخدم:"
331
-
332
- #: includes/class-theme-my-login-ms-signup.php:445
333
- #: modules/custom-passwords/custom-passwords.php:29
334
- #: modules/custom-passwords/custom-passwords.php:56
335
- msgid "Password:"
336
- msgstr "كلمة السر:"
337
-
338
- #: includes/class-theme-my-login-ms-signup.php:449
339
- msgid "Your account is now activated. <a href=\"%1$s\">View your site</a> or <a href=\"%2$s\">Login</a>"
340
- msgstr "الآن حسابك منشط. <a href=\"%1$s\">شاهد موقعك</a> أو <a href=\"%2$s\">سجل الدخول</a>"
341
-
342
- #: includes/class-theme-my-login-ms-signup.php:451
343
- msgid "Your account is now activated. <a href=\"%1$s\">Login</a> or go back to the <a href=\"%2$s\">homepage</a>."
344
- msgstr "الآن حسابك منشط .<a href=\"%1$s\">سجل الدخول</a>او إرجع <a href=\"%2$s\">للصفحة الرئيسية</a>."
345
-
346
- #: includes/class-theme-my-login-template.php:137
347
- msgid "Welcome, %s"
348
- msgstr " %s مرحبا بك"
349
-
350
- #: includes/class-theme-my-login-template.php:151
351
- #: includes/class-theme-my-login.php:540
352
- #: templates/login-form.php:28
353
- msgid "Log In"
354
- msgstr "تسجيل الدخول"
355
-
356
- #: includes/class-theme-my-login-template.php:315
357
- #: modules/custom-user-links/custom-user-links.php:82
358
- msgid "Dashboard"
359
- msgstr "لوحة التحكم"
360
-
361
- #: includes/class-theme-my-login-template.php:316
362
- #: modules/custom-user-links/custom-user-links.php:83
363
- #: modules/themed-profiles/admin/themed-profiles-admin.php:66
364
- msgid "Profile"
365
- msgstr "الملف الشخصي"
366
-
367
- #: includes/class-theme-my-login-template.php:334
368
- #: modules/custom-redirection/custom-redirection.php:197
369
- msgid "Log out"
370
- msgstr "تسجيل الخروج"
371
-
372
- #: includes/class-theme-my-login-template.php:363
373
- msgid "Register For This Site"
374
- msgstr "التسجيل في هذا الموقع"
375
-
376
- #: includes/class-theme-my-login-template.php:366
377
- msgid "Please enter your username or email address. You will receive a link to create a new password via email."
378
- msgstr "الرجاء إدخال اسم المستخدم أو عنوان البريد الإلكتروني. ستحصل على رابط لإنشاء كلمة مرور جديدة عبر البريد الإلكتروني."
379
-
380
- #: includes/class-theme-my-login-template.php:369
381
- msgid "Enter your new password below."
382
- msgstr "أدخل كلمة المرور الجديدة أدناه."
383
-
384
- #: includes/class-theme-my-login-widget.php:23
385
- msgid "A login form for your blog."
386
- msgstr "استمارة دخول المدونة الخاص بك."
387
-
388
- #: includes/class-theme-my-login-widget.php:88
389
- msgid "Default Action"
390
- msgstr "الإجراأت الاساسية"
391
-
392
- #: includes/class-theme-my-login-widget.php:95
393
- msgid "Show When Logged In"
394
- msgstr "تظهر عند تسجيل الدخول"
395
-
396
- #: includes/class-theme-my-login-widget.php:97
397
- msgid "Show Title"
398
- msgstr "إظهار العنوان"
399
-
400
- #: includes/class-theme-my-login-widget.php:99
401
- msgid "Show Login Link"
402
- msgstr "إظهار رابط الدخول"
403
-
404
- #: includes/class-theme-my-login-widget.php:101
405
- msgid "Show Register Link"
406
- msgstr "اظهار رابط التسجيل"
407
-
408
- #: includes/class-theme-my-login-widget.php:103
409
- msgid "Show Lost Password Link"
410
- msgstr "اظهار رابط استرجاع كلمة السر"
411
-
412
- #: includes/class-theme-my-login-widget.php:105
413
- msgid "Show Gravatar"
414
- msgstr "إظهار الصورة الرمزية "
415
-
416
- #: includes/class-theme-my-login-widget.php:106
417
- msgid "Gravatar Size"
418
- msgstr "حجم الصورة الرمزية "
419
-
420
- #: includes/class-theme-my-login-widget.php:108
421
- msgid "Allow Registration"
422
- msgstr "السماح بالتسجيل"
423
-
424
- #: includes/class-theme-my-login-widget.php:110
425
- msgid "Allow Password Recovery"
426
- msgstr "السماح استرجاع كلمة السر"
427
-
428
- #: includes/class-theme-my-login.php:245
429
- msgid "Sorry, that key does not appear to be valid."
430
- msgstr "آسف، هذا المفتاح لا يبدو أنه صالح."
431
-
432
- #: includes/class-theme-my-login.php:261
433
- msgid "The passwords do not match."
434
- msgstr "كلمات المرور لا تتطابق."
435
-
436
- #: includes/class-theme-my-login.php:367
437
- msgid "<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href=\"http://www.google.com/cookies.html\">enable cookies</a> to use WordPress."
438
- msgstr "<strong>خطأ </strong>يتم حظر cookies أو غير مدعوم من قبل المتصفح. يجب عليك <a href=\"http://www.google.com/cookies.html\">تمكينcookies</a> لاستخدام وردبريس."
439
-
440
- #: includes/class-theme-my-login.php:371
441
- msgid "You are now logged out."
442
- msgstr "الآن تم تسجيل خروجك."
443
-
444
- #: includes/class-theme-my-login.php:373
445
- msgid "User registration is currently not allowed."
446
- msgstr "تسجيل الأعضاء غير مسموح به حاليا"
447
-
448
- #: includes/class-theme-my-login.php:375
449
- msgid "Check your e-mail for the confirmation link."
450
- msgstr "تحقق البريد الإلكتروني الخاص بك لرابط التأكيد."
451
-
452
- #: includes/class-theme-my-login.php:377
453
- msgid "Your password has been reset."
454
- msgstr "ثم إعادة كلمة السر"
455
-
456
- #: includes/class-theme-my-login.php:379
457
- msgid "Registration complete. Please check your e-mail."
458
- msgstr "التسجيل أكتمل. يرجى التحقق من البريد الإلكتروني الخاص بك."
459
-
460
- #: includes/class-theme-my-login.php:381
461
- msgid "Your session has expired. Please log-in again."
462
- msgstr " الرجاء تسجيل الدخول في مرة أخرى."
463
-
464
- #: includes/class-theme-my-login.php:383
465
- msgid "Please log in to continue."
466
- msgstr "المرجوا تسجيل الدخول للمتابعة."
467
-
468
- #: includes/class-theme-my-login.php:540
469
- msgid "Log Out"
470
- msgstr "تسجيل الخروج"
471
-
472
- #: includes/class-theme-my-login.php:925
473
- msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
474
- msgstr "<strong>خطأ </strong>: إدخال اسم المستخدم أو البريد الإلكتروني."
475
-
476
- #: includes/class-theme-my-login.php:929
477
- msgid "<strong>ERROR</strong>: There is no user registered with that email address."
478
- msgstr "<strong>خطأ </strong>لا يوجد أي مستخدم مسجل مع هذا عنوان البريد الإلكتروني."
479
-
480
- #: includes/class-theme-my-login.php:941
481
- msgid "<strong>ERROR</strong>: Invalid username or e-mail."
482
- msgstr "<strong>خطأ </strong>: إسم المستخدم أو البريد الإلكتروني غير صالح."
483
-
484
- #: includes/class-theme-my-login.php:955
485
- msgid "Password reset is not allowed for this user"
486
- msgstr "لا يجوز إعادة تعيين كلمة المرور لهذا المستخدم"
487
-
488
- #: includes/class-theme-my-login.php:967
489
- msgid "Someone requested that the password be reset for the following account:"
490
- msgstr "شخص ما طلب أن يتم إعادة تعيين كلمة المرور للحساب التالي:"
491
-
492
- #: includes/class-theme-my-login.php:969
493
- #: modules/custom-email/custom-email.php:692
494
- #: modules/custom-email/custom-email.php:709
495
- #: modules/user-moderation/admin/user-moderation-admin.php:164
496
- #: modules/user-moderation/user-moderation.php:365
497
- msgid "Username: %s"
498
- msgstr "اسم المستخدم: %s"
499
-
500
- #: includes/class-theme-my-login.php:970
501
- msgid "If this was a mistake, just ignore this email and nothing will happen."
502
- msgstr "إذا كان هذا خطأ، تجاهل هذه الرسالة ولن يحدث أي شيء."
503
-
504
- #: includes/class-theme-my-login.php:971
505
- msgid "To reset your password, visit the following address:"
506
- msgstr "إستعادة كلمة المرور، قم بزيارة العنوان التالي:"
507
-
508
- #: includes/class-theme-my-login.php:982
509
- msgid "[%s] Password Reset"
510
- msgstr "[%s] إعادة تعيين كلمة المرور"
511
-
512
- #: includes/class-theme-my-login.php:988
513
- #: modules/user-moderation/admin/user-moderation-admin.php:53
514
- #: modules/user-moderation/admin/user-moderation-admin.php:174
515
- #: modules/user-moderation/admin/user-moderation-admin.php:210
516
- msgid "The e-mail could not be sent."
517
- msgstr "لا يمكن إرسال هذه الرسالة."
518
-
519
- #: includes/class-theme-my-login.php:988
520
- #: modules/user-moderation/admin/user-moderation-admin.php:53
521
- #: modules/user-moderation/admin/user-moderation-admin.php:174
522
- #: modules/user-moderation/admin/user-moderation-admin.php:210
523
- msgid "Possible reason: your host may have disabled the mail() function..."
524
- msgstr "السبب المحتمل: المضيف الخاص بك قد قام بتعطيل البريد () وظيفة ..."
525
-
526
- #: includes/class-theme-my-login.php:1011
527
- #: includes/class-theme-my-login.php:1014
528
- #: includes/class-theme-my-login.php:1019
529
- #: modules/user-moderation/user-moderation.php:238
530
- #: modules/user-moderation/user-moderation.php:241
531
- #: modules/user-moderation/user-moderation.php:246
532
- msgid "Invalid key"
533
- msgstr "مفتاح غير صالح "
534
-
535
- #: includes/class-theme-my-login.php:1059
536
- msgid "<strong>ERROR</strong>: Please enter a username."
537
- msgstr "<strong>خطأ </strong>:الرجاء إدخال اسم مستخدم."
538
-
539
- #: includes/class-theme-my-login.php:1061
540
- msgid "<strong>ERROR</strong>: This username is invalid because it uses illegal characters. Please enter a valid username."
541
- msgstr "<strong>خطأ </strong>:هذا المستخدم غير صالح لأنه يستخدم أحرف غير شرعية. الرجاء إدخال اسم مستخدم صالح."
542
-
543
- #: includes/class-theme-my-login.php:1064
544
- msgid "<strong>ERROR</strong>: This username is already registered, please choose another one."
545
- msgstr "<strong>خطأ </strong>: هذا المستخدم مسجل ، يرجى اختيار اسم آخر."
546
-
547
- #: includes/class-theme-my-login.php:1069
548
- msgid "<strong>ERROR</strong>: Please type your e-mail address."
549
- msgstr "<strong>خطأ </strong>:يرجى كتابة البريد الإلكتروني الخاص بك ."
550
-
551
- #: includes/class-theme-my-login.php:1071
552
- msgid "<strong>ERROR</strong>: The email address isn&#8217;t correct."
553
- msgstr "<strong>خطأ </strong>:عنوان البريد الإلكتروني غير صحيح."
554
-
555
- #: includes/class-theme-my-login.php:1074
556
- msgid "<strong>ERROR</strong>: This email is already registered, please choose another one."
557
- msgstr "<strong>خطأ </strong>: هذا البريد مسجل ، يرجى اختيار بريد آخر."
558
-
559
- #: includes/class-theme-my-login.php:1087
560
- msgid "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href=\"mailto:%s\">webmaster</a> !"
561
- msgstr "<strong>خطأ </strong>:لا يمكن تسجيلك ... يرجى الاتصال <a href=\"mailto:%s\">مدير الموقع</a> !"
562
-
563
- #: modules/custom-email/admin/custom-email-admin.php:46
564
- #: modules/custom-email/admin/custom-email-admin.php:265
565
- msgid "User Notification"
566
- msgstr "تنبيهات العضو "
567
-
568
- #: modules/custom-email/admin/custom-email-admin.php:49
569
- msgid "This e-mail will be sent to a new user upon registration."
570
- msgstr "سوف يتم إرسال هذه الرسالة لمستخدم جديد عند التسجيل."
571
-
572
- #: modules/custom-email/admin/custom-email-admin.php:50
573
- #: modules/custom-email/admin/custom-email-admin.php:269
574
- msgid "Please be sure to include the variable %user_pass% if using default passwords or else the user will not know their password!"
575
- msgstr "الرجاء التأكد من إدراج المتغير %user_pass% اذا كنت تستخدم كلمات السر الأولية وإلا فإن المستخدم لن يعرف كلمة المرور الخاصة بهم!"
576
-
577
- #: modules/custom-email/admin/custom-email-admin.php:51
578
- #: modules/custom-email/admin/custom-email-admin.php:81
579
- #: modules/custom-email/admin/custom-email-admin.php:130
580
- #: modules/custom-email/admin/custom-email-admin.php:175
581
- #: modules/custom-email/admin/custom-email-admin.php:224
582
- #: modules/custom-email/admin/custom-email-admin.php:270
583
- #: modules/custom-email/admin/custom-email-admin.php:300
584
- #: modules/custom-email/admin/custom-email-admin.php:348
585
- msgid "If any field is left empty, the default will be used instead."
586
- msgstr "إذا تم ترك أي حقل فارغا، سيتم استخدام القيم الاساسية بدلا من ذلك."
587
-
588
- #: modules/custom-email/admin/custom-email-admin.php:54
589
- #: modules/custom-email/admin/custom-email-admin.php:87
590
- #: modules/custom-email/admin/custom-email-admin.php:133
591
- #: modules/custom-email/admin/custom-email-admin.php:181
592
- #: modules/custom-email/admin/custom-email-admin.php:227
593
- #: modules/custom-email/admin/custom-email-admin.php:273
594
- #: modules/custom-email/admin/custom-email-admin.php:306
595
- #: modules/custom-email/admin/custom-email-admin.php:351
596
- msgid "From Name"
597
- msgstr "من الاسم"
598
-
599
- #: modules/custom-email/admin/custom-email-admin.php:57
600
- #: modules/custom-email/admin/custom-email-admin.php:90
601
- #: modules/custom-email/admin/custom-email-admin.php:136
602
- #: modules/custom-email/admin/custom-email-admin.php:184
603
- #: modules/custom-email/admin/custom-email-admin.php:230
604
- #: modules/custom-email/admin/custom-email-admin.php:276
605
- #: modules/custom-email/admin/custom-email-admin.php:309
606
- #: modules/custom-email/admin/custom-email-admin.php:354
607
- msgid "From E-mail"
608
- msgstr "من البريد الإلكتروني"
609
-
610
- #: modules/custom-email/admin/custom-email-admin.php:60
611
- #: modules/custom-email/admin/custom-email-admin.php:93
612
- #: modules/custom-email/admin/custom-email-admin.php:139
613
- #: modules/custom-email/admin/custom-email-admin.php:187
614
- #: modules/custom-email/admin/custom-email-admin.php:233
615
- #: modules/custom-email/admin/custom-email-admin.php:279
616
- #: modules/custom-email/admin/custom-email-admin.php:312
617
- #: modules/custom-email/admin/custom-email-admin.php:357
618
- msgid "E-mail Format"
619
- msgstr " صيغة البريد الإلكتروني"
620
-
621
- #: modules/custom-email/admin/custom-email-admin.php:62
622
- #: modules/custom-email/admin/custom-email-admin.php:95
623
- #: modules/custom-email/admin/custom-email-admin.php:141
624
- #: modules/custom-email/admin/custom-email-admin.php:189
625
- #: modules/custom-email/admin/custom-email-admin.php:235
626
- #: modules/custom-email/admin/custom-email-admin.php:281
627
- #: modules/custom-email/admin/custom-email-admin.php:314
628
- #: modules/custom-email/admin/custom-email-admin.php:359
629
- msgid "Plain Text"
630
- msgstr "نص عادي"
631
-
632
- #: modules/custom-email/admin/custom-email-admin.php:63
633
- #: modules/custom-email/admin/custom-email-admin.php:96
634
- #: modules/custom-email/admin/custom-email-admin.php:142
635
- #: modules/custom-email/admin/custom-email-admin.php:190
636
- #: modules/custom-email/admin/custom-email-admin.php:236
637
- #: modules/custom-email/admin/custom-email-admin.php:282
638
- #: modules/custom-email/admin/custom-email-admin.php:315
639
- #: modules/custom-email/admin/custom-email-admin.php:360
640
- msgid "HTML"
641
- msgstr "HTML"
642
-
643
- #: modules/custom-email/admin/custom-email-admin.php:66
644
- #: modules/custom-email/admin/custom-email-admin.php:99
645
- #: modules/custom-email/admin/custom-email-admin.php:145
646
- #: modules/custom-email/admin/custom-email-admin.php:193
647
- #: modules/custom-email/admin/custom-email-admin.php:239
648
- #: modules/custom-email/admin/custom-email-admin.php:285
649
- #: modules/custom-email/admin/custom-email-admin.php:318
650
- #: modules/custom-email/admin/custom-email-admin.php:363
651
- msgid "Subject"
652
- msgstr "موضوع"
653
-
654
- #: modules/custom-email/admin/custom-email-admin.php:69
655
- #: modules/custom-email/admin/custom-email-admin.php:102
656
- #: modules/custom-email/admin/custom-email-admin.php:148
657
- #: modules/custom-email/admin/custom-email-admin.php:196
658
- #: modules/custom-email/admin/custom-email-admin.php:242
659
- #: modules/custom-email/admin/custom-email-admin.php:288
660
- #: modules/custom-email/admin/custom-email-admin.php:321
661
- #: modules/custom-email/admin/custom-email-admin.php:366
662
- msgid "Message"
663
- msgstr "الرسالة"
664
-
665
- #: modules/custom-email/admin/custom-email-admin.php:72
666
- #: modules/custom-email/admin/custom-email-admin.php:105
667
- #: modules/custom-email/admin/custom-email-admin.php:151
668
- #: modules/custom-email/admin/custom-email-admin.php:199
669
- #: modules/custom-email/admin/custom-email-admin.php:245
670
- #: modules/custom-email/admin/custom-email-admin.php:291
671
- #: modules/custom-email/admin/custom-email-admin.php:324
672
- #: modules/custom-email/admin/custom-email-admin.php:369
673
- msgid "Available Variables"
674
- msgstr " التغيرات المتاح"
675
-
676
- #: modules/custom-email/admin/custom-email-admin.php:77
677
- #: modules/custom-email/admin/custom-email-admin.php:171
678
- #: modules/custom-email/admin/custom-email-admin.php:296
679
- msgid "Admin Notification"
680
- msgstr "تنبيهات المشرف "
681
-
682
- #: modules/custom-email/admin/custom-email-admin.php:80
683
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon new user registration."
684
- msgstr "سوف يتم إرسال هذا الرسالة إلى عنوان البريد الإلكتروني أو عناوين (يمكن فصل عناوين متعددة بفواصل) المحددة أدناه، عند تسجيل مستخدم جديد."
685
-
686
- #: modules/custom-email/admin/custom-email-admin.php:84
687
- #: modules/custom-email/admin/custom-email-admin.php:178
688
- #: modules/custom-email/admin/custom-email-admin.php:303
689
- msgid "To"
690
- msgstr "إلى"
691
-
692
- #: modules/custom-email/admin/custom-email-admin.php:128
693
- msgid "This e-mail will be sent to a user when they attempt to recover their password."
694
- msgstr "سوف يتم إرسال هذه الرسالة للمستخدم عندما يحاولون استرداد كلمة المرور الخاصة بهم."
695
-
696
- #: modules/custom-email/admin/custom-email-admin.php:129
697
- msgid "Please be sure to include the variable %reseturl% or else the user will not be able to recover their password!"
698
- msgstr "الرجاء التأكد من إدراج المتغير %reseturl% وإلا فإن المستخدم لن يكون قادرا على استرداد كلمة المرور الخاصة بهم!"
699
-
700
- #: modules/custom-email/admin/custom-email-admin.php:174
701
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon user password change."
702
- msgstr "سوف يتم إرسال هذه الرسالة إلى عنوان البريد الإلكتروني أو عناوين (يمكن فصل عناوين متعددة بفواصل) المحددة أدناه، عند تغيير كلمة مرور المستخدم ."
703
-
704
- #: modules/custom-email/admin/custom-email-admin.php:201
705
- #: modules/custom-email/admin/custom-email-admin.php:326
706
- msgid "Disable Admin Notification"
707
- msgstr "تعطيل تنبيهات المشرف"
708
-
709
- #: modules/custom-email/admin/custom-email-admin.php:222
710
- msgid "This e-mail will be sent to a new user upon registration when \"E-mail Confirmation\" is checked for \"User Moderation\"."
711
- msgstr "سوف يتم إرسال هذه الرسالة الإلكترونية لمستخدم جديد عند التسجيل إذا ثم اختيار \"تأكيد البريد الإلكتروني\" في /\"تعديلات العضو/ \""
712
-
713
- #: modules/custom-email/admin/custom-email-admin.php:223
714
- msgid "Please be sure to include the variable %activateurl% or else the user will not be able to activate their account!"
715
- msgstr "الرجاء التأكد من إدراج المتغير %reseturl% وإلا فإن المستخدم لن يكون قادرا على تفعيل حسابه!"
716
-
717
- #: modules/custom-email/admin/custom-email-admin.php:268
718
- msgid "This e-mail will be sent to a new user upon admin approval when \"Admin Approval\" is checked for \"User Moderation\"."
719
- msgstr "سوف يتم إرسال هذه الرسالة الإلكترونية لمستخدم جديد بعد موافقة مشرف إذا ثم اختيار \"موافقة المسؤول \" في \" تعديلات العضو\"."
720
-
721
- #: modules/custom-email/admin/custom-email-admin.php:299
722
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below upon user registration when \"Admin Approval\" is checked for \"User Moderation\"."
723
- msgstr "سوف يتم إرسال هذه الرسالة الإلكترونية إلى عنوان البريد الإلكتروني أو عناوين (يمكن فصل عناوين متعددة بفواصل) المحددة أدناه عند تسجيل المستخدم عندما \"موافقة المسؤول \" في\" تعديلات العضو\"."
724
-
725
- #: modules/custom-email/admin/custom-email-admin.php:347
726
- msgid "This e-mail will be sent to a user who is deleted/denied when \"Admin Approval\" is checked for \"User Moderation\" and the user's role is \"Pending\"."
727
- msgstr "سوف يتم إرسال هذه الرسالة الإلكترونية للمستخدم الذي تم الحذف او النفي إذا ثم اختيار \"موافقة المسؤول \" في \" الاعتدال المستخدم\" ودور المستخدم هو \" معلقة\"."
728
-
729
- #: modules/custom-email/admin/custom-email-admin.php:390
730
- #: templates/profile-form.php:143
731
- #: templates/register-form.php:16
732
- msgid "E-mail"
733
- msgstr "البريد الإلكتروني"
734
-
735
- #: modules/custom-email/admin/custom-email-admin.php:391
736
- msgid "New User"
737
- msgstr "عضو جديد"
738
-
739
- #: modules/custom-email/admin/custom-email-admin.php:392
740
- msgid "Retrieve Password"
741
- msgstr "استرجاع كلمة المرور"
742
-
743
- #: modules/custom-email/admin/custom-email-admin.php:393
744
- #: templates/resetpass-form.php:26
745
- msgid "Reset Password"
746
- msgstr "إعادة تعيين كلمة المرور"
747
-
748
- #: modules/custom-email/admin/custom-email-admin.php:395
749
- msgid "User Activation"
750
- msgstr "تفعيل العضو"
751
-
752
- #: modules/custom-email/admin/custom-email-admin.php:396
753
- msgid "User Approval"
754
- msgstr " الموافقة على العضو"
755
-
756
- #: modules/custom-email/admin/custom-email-admin.php:397
757
- msgid "User Denial"
758
- msgstr "رفض العضو"
759
-
760
- #: modules/custom-email/custom-email.php:691
761
- msgid "New user registration on your site %s:"
762
- msgstr "تسجيل جديد للمستخدم على موقعك %s:"
763
-
764
- #: modules/custom-email/custom-email.php:693
765
- #: modules/user-moderation/user-moderation.php:366
766
- msgid "E-mail: %s"
767
- msgstr "البريد الإلكتروني: %s"
768
-
769
- #: modules/custom-email/custom-email.php:695
770
- msgid "[%s] New User Registration"
771
- msgstr "[%s] تسجيل عضو جديد"
772
-
773
- #: modules/custom-email/custom-email.php:710
774
- #: modules/user-moderation/admin/user-moderation-admin.php:165
775
- msgid "Password: %s"
776
- msgstr "[s٪] كلمة السر"
777
-
778
- #: modules/custom-email/custom-email.php:713
779
- msgid "[%s] Your username and password"
780
- msgstr "[s٪] اسم المستخدم وكلمة السر"
781
-
782
- #: modules/custom-email/custom-email.php:745
783
- msgid "[%s] Password Lost/Changed"
784
- msgstr "[s٪] استعادة كلمة المرور / تغييرها"
785
-
786
- #: modules/custom-email/custom-email.php:746
787
- msgid "Password Lost and Changed for user: %s"
788
- msgstr "نسيت كلمة السر وتغيير للمستخدم :%s"
789
-
790
- #: modules/custom-passwords/custom-passwords.php:31
791
- #: modules/custom-passwords/custom-passwords.php:63
792
- msgid "Confirm Password:"
793
- msgstr "تأكد كلمة السر "
794
-
795
- #: modules/custom-passwords/custom-passwords.php:61
796
- msgid "(Must be at least 6 characters.)"
797
- msgstr "(يجب أن تكون كلمة السر لا تقل عن 6 رموز)"
798
-
799
- #: modules/custom-passwords/custom-passwords.php:65
800
- msgid "Confirm that you've typed your password correctly."
801
- msgstr "تأكد من أن كنت قد كتبته كلمة السر الخاصة بك بشكل صحيح."
802
-
803
- #: modules/custom-passwords/custom-passwords.php:103
804
- msgid "<strong>ERROR</strong>: Please enter a password."
805
- msgstr "<strong> خطأ </ strong>: الرجاء إدخال كلمة السر."
806
-
807
- #: modules/custom-passwords/custom-passwords.php:106
808
- msgid "<strong>ERROR</strong>: Your passwords do not match."
809
- msgstr "<strong> خطأ </ strong>: كلمات السر الخاصة بك ليست متطابقة."
810
-
811
- #: modules/custom-passwords/custom-passwords.php:109
812
- msgid "<strong>ERROR</strong>: Your password must be at least 6 characters in length."
813
- msgstr "<strong> خطأ </ strong> يجب أن تكون كلمة السر لا تقل عن 6 رموز في الطول."
814
-
815
- #: modules/custom-passwords/custom-passwords.php:230
816
- msgid "Registration complete. You may now log in."
817
- msgstr " ثم اكمال التسجيل. يمكنك الآن تسجيل الدخول ."
818
-
819
- #: modules/custom-redirection/custom-redirection.php:156
820
- msgid "Redirection"
821
- msgstr "إعادة توجيه"
822
-
823
- #: modules/custom-redirection/custom-redirection.php:185
824
- msgid "Log in"
825
- msgstr "تسجيل الدخول"
826
-
827
- #: modules/custom-redirection/custom-redirection.php:187
828
- #: modules/custom-redirection/custom-redirection.php:199
829
- msgid "Default"
830
- msgstr "الاصلي"
831
-
832
- #: modules/custom-redirection/custom-redirection.php:188
833
- msgid "Check this option to send the user to their WordPress Dashboard/Profile."
834
- msgstr "تحقق هذا الخيار لإرسال المستخدم إلى لوحة الملفات على وردبريس."
835
-
836
- #: modules/custom-redirection/custom-redirection.php:189
837
- #: modules/custom-redirection/custom-redirection.php:201
838
- msgid "Referer"
839
- msgstr "المرجعية"
840
-
841
- #: modules/custom-redirection/custom-redirection.php:190
842
- msgid "Check this option to send the user back to the page they were visiting before logging in."
843
- msgstr "تحقق هذا الخيار لإرسال المستخدم للعودة إلى الصفحة اللتي كان في زيارة لها قبل تسجيل الدخول."
844
-
845
- #: modules/custom-redirection/custom-redirection.php:193
846
- #: modules/custom-redirection/custom-redirection.php:205
847
- msgid "Check this option to send the user to a custom location, specified by the textbox above."
848
- msgstr "تحقق هذا الخيار لإرسال المستخدم إلى موقع مخصص، التي يحددها النص أعلاه."
849
-
850
- #: modules/custom-redirection/custom-redirection.php:200
851
- msgid "Check this option to send the user to the log in page, displaying a message that they have successfully logged out."
852
- msgstr "تحقق هذا الخيار لإرسال المستخدم إلى صفحة الدخول، وعرض رسالة أنهم قاموا بتسجيل بنجاح."
853
-
854
- #: modules/custom-redirection/custom-redirection.php:202
855
- msgid "Check this option to send the user back to the page they were visiting before logging out. (Note: If the previous page being visited was an admin page, this can have unexpected results.)"
856
- msgstr "تحقق هذا الخيار لإرسال المستخدم للعودة إلى الصفحة اللتي كان في زيارتها قبل تسجيل الخروج. (ملاحظة: إذا كانت الصفحة السابقة يزورها كانت صفحة الإدارة، وهذا يمكن له نتائج غير متوقعة.)"
857
-
858
- #: modules/custom-user-links/admin/custom-user-links-admin.php:140
859
- msgid "User Links"
860
- msgstr "روابط المستخدم"
861
-
862
- #: modules/custom-user-links/admin/custom-user-links-admin.php:232
863
- #: modules/custom-user-links/admin/custom-user-links-admin.php:255
864
- #: modules/custom-user-links/admin/custom-user-links-admin.php:300
865
- msgid "Title"
866
- msgstr "عنوان "
867
-
868
- #: modules/custom-user-links/admin/custom-user-links-admin.php:233
869
- #: modules/custom-user-links/admin/custom-user-links-admin.php:256
870
- #: modules/custom-user-links/admin/custom-user-links-admin.php:304
871
- msgid "URL"
872
- msgstr "URL"
873
-
874
- #: modules/custom-user-links/admin/custom-user-links-admin.php:250
875
- msgid "Add New link:"
876
- msgstr "إضافة وصلة جديدة:"
877
-
878
- #: modules/custom-user-links/admin/custom-user-links-admin.php:266
879
- msgid "Add link"
880
- msgstr "إضافة وصلة"
881
-
882
- #: modules/custom-user-links/admin/custom-user-links-admin.php:306
883
- msgid "Delete"
884
- msgstr "حذف"
885
-
886
- #: modules/custom-user-links/admin/custom-user-links-admin.php:307
887
- msgid "Update"
888
- msgstr "تحديث"
889
-
890
- #: modules/security/admin/security-admin.php:32
891
- #: modules/security/admin/security-admin.php:35
892
- #: modules/user-moderation/admin/user-moderation-admin.php:34
893
- #: modules/user-moderation/admin/user-moderation-admin.php:44
894
- msgid "You can&#8217;t edit that user."
895
- msgstr "لا يمكنك تعديل هذا المستخدم."
896
-
897
- #: modules/security/admin/security-admin.php:67
898
- msgid "User locked."
899
- msgstr " مستخدم مقفل."
900
-
901
- #: modules/security/admin/security-admin.php:69
902
- msgid "User unlocked."
903
- msgstr " مستخدم مفتوح."
904
-
905
- #: modules/security/admin/security-admin.php:92
906
- msgid "Unlock"
907
- msgstr "فتح"
908
-
909
- #: modules/security/admin/security-admin.php:94
910
- msgid "Lock"
911
- msgstr "قفل"
912
-
913
- #: modules/security/admin/security-admin.php:113
914
- msgid "Security"
915
- msgstr "حماية"
916
-
917
- #: modules/security/admin/security-admin.php:132
918
- msgid "Private Site"
919
- msgstr "مواقع خاصة "
920
-
921
- #: modules/security/admin/security-admin.php:135
922
- msgid "Require users to be logged in to view site"
923
- msgstr "تطلب من المستخدمين تسجيل الدخول لمشاهدة "
924
-
925
- #: modules/security/admin/security-admin.php:139
926
- msgid "Login Attempts"
927
- msgstr "محاولات لتسجيل الدخول"
928
-
929
- #: modules/security/admin/security-admin.php:144
930
- msgid "minute(s)"
931
- msgstr "دقيقة "
932
-
933
- #: modules/security/admin/security-admin.php:145
934
- msgid "hour(s)"
935
- msgstr "ساعة"
936
-
937
- #: modules/security/admin/security-admin.php:146
938
- msgid "day(s)"
939
- msgstr "ايام"
940
-
941
- #: modules/security/admin/security-admin.php:169
942
- msgid "After %1$s failed login attempts within %2$s %3$s, lockout the account for %4$s %5$s."
943
- msgstr "بعد فشل٪ 1 $ S محاولات تسجيل الدخول في٪ 2 $ S٪ 3 $ S، اغلاق الحساب ل4٪ 5٪ $ S $ S."
944
-
945
- #: modules/security/security.php:64
946
- #: modules/security/security.php:90
947
- msgid "<strong>ERROR</strong>: This account has been locked because of too many failed login attempts. You may try again in %s."
948
- msgstr "<strong> خطأ </ strong> : تم إغلاق هذا الحساب بسبب الكثير من محاولات الدخول الفاشلة. حاول مرة أخر بعد %s"
949
-
950
- #: modules/security/security.php:66
951
- msgid "<strong>ERROR</strong>: This account has been locked."
952
- msgstr "<strong> خطأ </ strong> : تم إغلاق هذا الحساب "
953
-
954
- #: modules/security/security.php:126
955
- msgid "Failed Login Attempts"
956
- msgstr "محاولة تسجيل دخول فاشلة "
957
-
958
- #: modules/security/security.php:130
959
- msgid "IP Address"
960
- msgstr "IP عنوان ال"
961
-
962
- #: modules/security/security.php:131
963
- msgid "Date"
964
- msgstr "تاريخ"
965
-
966
- #: modules/security/security.php:134
967
- msgid "Y/m/d g:i:s A"
968
- msgstr "Y/m/d g:i:s A"
969
-
970
- #: modules/security/security.php:139
971
- msgid "%s ago"
972
- msgstr "منذ %s"
973
-
974
- #: modules/security/security.php:141
975
- msgid "Y/m/d"
976
- msgstr "تحت عنوان البيانات"
977
-
978
- #: modules/themed-profiles/admin/themed-profiles-admin.php:23
979
- #: modules/themed-profiles/admin/themed-profiles-admin.php:42
980
- msgid "Themed Profiles"
981
- msgstr "تحت عنوان البيانات"
982
-
983
- #: modules/themed-profiles/admin/themed-profiles-admin.php:51
984
- msgid "Restrict Admin Access"
985
- msgstr "تقييد وصول مشرف"
986
-
987
- #: modules/themed-profiles/themed-profiles.php:123
988
- #: templates/profile-form.php:182
989
- #: templates/resetpass-form.php:19
990
- msgid "Strength indicator"
991
- msgstr "مؤشر القوة"
992
-
993
- #: modules/themed-profiles/themed-profiles.php:124
994
- msgid "Very weak"
995
- msgstr "ضعيف جدا"
996
-
997
- #: modules/themed-profiles/themed-profiles.php:125
998
- msgid "Weak"
999
- msgstr "ضعيف"
1000
-
1001
- #. translators: password strength
1002
- #: modules/themed-profiles/themed-profiles.php:127
1003
- msgctxt "password strength"
1004
- msgid "Medium"
1005
- msgstr "​​متوسط"
1006
-
1007
- #: modules/themed-profiles/themed-profiles.php:128
1008
- msgid "Strong"
1009
- msgstr "قوي"
1010
-
1011
- #: modules/themed-profiles/themed-profiles.php:138
1012
- msgid "You do not have permission to edit this user."
1013
- msgstr "أنت لا تملك الصلاحيات لتعديل هذا المستخدم."
1014
-
1015
- #: modules/themed-profiles/themed-profiles.php:154
1016
- msgid "Profile updated."
1017
- msgstr "تحديث ملفك الشخصي ."
1018
-
1019
- #: modules/themed-profiles/themed-profiles.php:243
1020
- msgid "Your Profile"
1021
- msgstr "الملف الخاص بك"
1022
-
1023
- #: modules/user-moderation/admin/user-moderation-admin.php:75
1024
- msgid "User approved."
1025
- msgstr "مستخدم موافق."
1026
-
1027
- #: modules/user-moderation/admin/user-moderation-admin.php:77
1028
- msgid "Activation sent."
1029
- msgstr "إرسال التنشيط."
1030
-
1031
- #: modules/user-moderation/admin/user-moderation-admin.php:105
1032
- msgid "Resend Activation"
1033
- msgstr "إعادة إرسال التفعيل"
1034
-
1035
- #: modules/user-moderation/admin/user-moderation-admin.php:110
1036
- msgid "Approve"
1037
- msgstr "الموافقة "
1038
-
1039
- #: modules/user-moderation/admin/user-moderation-admin.php:163
1040
- msgid "You have been approved access to %s"
1041
- msgstr "لقد ثم السماح لك لذخول إلى %s"
1042
-
1043
- #: modules/user-moderation/admin/user-moderation-admin.php:168
1044
- msgid "[%s] Registration Approved"
1045
- msgstr "[%s] الموافقة على التسجيل"
1046
-
1047
- #: modules/user-moderation/admin/user-moderation-admin.php:203
1048
- msgid "You have been denied access to %s"
1049
- msgstr "لقد ثم منعك من الدخول ل %s"
1050
-
1051
- #: modules/user-moderation/admin/user-moderation-admin.php:204
1052
- msgid "[%s] Registration Denied"
1053
- msgstr "[%s] رفض التسجيل"
1054
-
1055
- #: modules/user-moderation/admin/user-moderation-admin.php:226
1056
- msgid "Moderation"
1057
- msgstr "وسطية"
1058
-
1059
- #: modules/user-moderation/admin/user-moderation-admin.php:242
1060
- msgid "User Moderation"
1061
- msgstr "المستخدم وسطية"
1062
-
1063
- #: modules/user-moderation/admin/user-moderation-admin.php:245
1064
- msgid "None"
1065
- msgstr "None"
1066
-
1067
- #: modules/user-moderation/admin/user-moderation-admin.php:246
1068
- msgid "Check this option to require no moderation."
1069
- msgstr "تحقق هذا الخيار لا يحتاج إلى اي تعديل."
1070
-
1071
- #: modules/user-moderation/admin/user-moderation-admin.php:248
1072
- msgid "E-mail Confirmation"
1073
- msgstr "التفعيل عن طريق البريد الإلكتروني "
1074
-
1075
- #: modules/user-moderation/admin/user-moderation-admin.php:249
1076
- msgid "Check this option to require new users to confirm their e-mail address before they may log in."
1077
- msgstr "تحقق هذا الخيار يتطلب من المستخدمين الجدد تأكيد عنوان البريد الإلكتروني قبل أن يستطيعوا تسجيل الدخول."
1078
-
1079
- #: modules/user-moderation/admin/user-moderation-admin.php:251
1080
- msgid "Admin Approval"
1081
- msgstr "موافقة المشرف "
1082
-
1083
- #: modules/user-moderation/admin/user-moderation-admin.php:252
1084
- msgid "Check this option to require new users to be approved by an administrator before they may log in."
1085
- msgstr "تحقق هذا الخيار يتطلب أن تتم الموافقة على المستخدمين الجدد من قبل مسؤول قبل أن يعودوا تسجيل الدخول."
1086
-
1087
- #: modules/user-moderation/admin/user-moderation-admin.php:269
1088
- msgid "User Moderation is not currently compatible with multisite."
1089
- msgstr "اعتدال المستخدم غير متوافق حاليا مع تعدد المواقع."
1090
-
1091
- #: modules/user-moderation/user-moderation.php:163
1092
- msgid "<strong>ERROR</strong>: You have not yet confirmed your e-mail address. <a href=\"%s\">Resend activation</a>?"
1093
- msgstr "<strong> خطأ </ strong> : أنت لم تؤكد حتى الآن لديك عنوان بريد إلكتروني. href=\"٪s\"> <a إعادة إرسال طلب تفعيل </ أ>؟"
1094
-
1095
- #: modules/user-moderation/user-moderation.php:166
1096
- msgid "<strong>ERROR</strong>: Your registration has not yet been approved."
1097
- msgstr "<strong> خطأ </ strong> : تسجيلك لم يثم الموافقة عليه حتى الآن."
1098
-
1099
- #: modules/user-moderation/user-moderation.php:328
1100
- msgid "[%s] Activate Your Account"
1101
- msgstr "[٪s] تفعيل حسابك"
1102
-
1103
- #: modules/user-moderation/user-moderation.php:329
1104
- msgid "Thanks for registering at %s! To complete the activation of your account please click the following link: "
1105
- msgstr "شكرا لتسجيل في٪ s! لاستكمال تفعيل حسابك، الرجاء الضغط على الرابط التالي:"
1106
-
1107
- #: modules/user-moderation/user-moderation.php:362
1108
- msgid "[%s] New User Awaiting Approval"
1109
- msgstr "[٪s] عضو جديد ينتظر الموافقة"
1110
-
1111
- #: modules/user-moderation/user-moderation.php:364
1112
- msgid "New user requires approval on your blog %s:"
1113
- msgstr "مستخدم جديد يتطلب موافقتك على المدونة الخاصة بك"
1114
-
1115
- #: modules/user-moderation/user-moderation.php:367
1116
- msgid "To approve or deny this user:"
1117
- msgstr "الموافقة أو الرفض لهذا المستخدم:"
1118
-
1119
- #: modules/user-moderation/user-moderation.php:388
1120
- msgid "Your registration was successful but you must now confirm your email address before you can log in. Please check your email and click on the link provided."
1121
- msgstr "ثم التسجيل بناجح ولكن يجب ان يثم الموافقة من قبل مسؤول قبل أن تتمكن من تسجيل الدخول. يرجى التحقق من بريدك الالكتروني وانقر على الرابط المقدم."
1122
-
1123
- #: modules/user-moderation/user-moderation.php:390
1124
- msgid "Your registration was successful but you must now be approved by an administrator before you can log in. You will be notified by e-mail once your account has been reviewed."
1125
- msgstr "ثم التسجيل بناجح ولكن يجب ان يثم الموافقة من قبل مسؤول قبل أن تتمكن من تسجيل الدخول. وسيتم إبلاغك عن طريق البريد الالكتروني عند مراجعةحسابك."
1126
-
1127
- #: modules/user-moderation/user-moderation.php:393
1128
- msgid "Your account has been activated. You may now log in."
1129
- msgstr "لقد تم تنشيط حسابك. يمكنك الآن تسجيل الدخول فيها."
1130
-
1131
- #: modules/user-moderation/user-moderation.php:395
1132
- msgid "Your account has been activated. Please check your e-mail for your password."
1133
- msgstr "لقد تم تنشيط حسابك. يرجى التحقق من البريد الإلكتروني الخاص بك لمعرفة كلمة السر."
1134
-
1135
- #: modules/user-moderation/user-moderation.php:397
1136
- msgid "<strong>ERROR</strong>: Sorry, that key does not appear to be valid."
1137
- msgstr "<strong> خطأ </ strong> : آسف، هذا المفتاح لا يبدو أنه صالح."
1138
-
1139
- #: modules/user-moderation/user-moderation.php:400
1140
- msgid "<strong>ERROR</strong>: Sorry, the activation e-mail could not be sent."
1141
- msgstr "<strong> خطأ </ strong> : عفوا، لا يمكن إرسال ايميل التفعيل ."
1142
-
1143
- #: modules/user-moderation/user-moderation.php:402
1144
- msgid "The activation e-mail has been sent to the e-mail address with which you registered. Please check your email and click on the link provided."
1145
- msgstr "تم ارسال تفعيل إلى عنوان البريد الإلكتروني الذي قمت بالتسجيل به . يرجى التحقق من بريدك الالكتروني وانقر على هذا الرابط ."
1146
-
1147
- #: templates/login-form.php:12
1148
- #: templates/profile-form.php:91
1149
- #: templates/register-form.php:12
1150
- msgid "Username"
1151
- msgstr "اسم المستخدم"
1152
-
1153
- #: templates/login-form.php:16
1154
- msgid "Password"
1155
- msgstr "كلمة السر"
1156
-
1157
- #: templates/login-form.php:25
1158
- msgid "Remember Me"
1159
- msgstr "تذكرني"
1160
-
1161
- #: templates/lostpassword-form.php:12
1162
- msgid "Username or E-mail:"
1163
- msgstr "اسم المستخدم أو البريد الإلكتروني:"
1164
-
1165
- #: templates/lostpassword-form.php:20
1166
- msgid "Get New Password"
1167
- msgstr "الحصول على كلمة مرور جديدة"
1168
-
1169
- #: templates/ms-signup-another-blog-form.php:7
1170
- msgid "Get <em>another</em> %s site in seconds"
1171
- msgstr "الحصول على موقع %s<em> آخر </ em> في ثوان"
1172
-
1173
- #: templates/ms-signup-another-blog-form.php:10
1174
- msgid "There was a problem, please correct the form below and try again."
1175
- msgstr "كانت هناك مشكلة، يرجى تصحيح النموذج التالي وحاول مرة أخرى."
1176
-
1177
- #: templates/ms-signup-another-blog-form.php:13
1178
- msgid "Welcome back, %s. By filling out the form below, you can <strong>add another site to your account</strong>. There is no limit to the number of sites you can have, so create to your heart&#8217;s content, but write responsibly!"
1179
- msgstr "مرحبا بك مرة أخرى، ق٪. عن طريق ملء الاستمارة أدناه، يمكنك إضافة موقع آخر على <strong> إلى حسابك </ strong>. ليس هناك حد لعدد المواقع التي يمكن أن تضيفها، وخلق ذلك إلى محتوى قلبك، ولكن اكتب بمسؤولية!"
1180
-
1181
- #: templates/ms-signup-another-blog-form.php:18
1182
- msgid "Sites you are already a member of:"
1183
- msgstr "مواقع كنت بالفعل عضوا فيها:"
1184
-
1185
- #: templates/ms-signup-another-blog-form.php:27
1186
- msgid "If you&#8217;re not going to use a great site domain, leave it for a new user. Now have at it!"
1187
- msgstr "إذا كنت لا تنوي استخدام نطاق موقع كبير، أتركه لمستخدم جديد. الآن خده !"
1188
-
1189
- #: templates/ms-signup-another-blog-form.php:33
1190
- #: templates/ms-signup-blog-form.php:17
1191
- msgid "Site Name:"
1192
- msgstr "اسم الموقع"
1193
-
1194
- #: templates/ms-signup-another-blog-form.php:35
1195
- #: templates/ms-signup-blog-form.php:19
1196
- msgid "Site Domain:"
1197
- msgstr "نطاق الموقع:"
1198
-
1199
- #: templates/ms-signup-another-blog-form.php:52
1200
- #: templates/ms-signup-blog-form.php:36
1201
- msgid "sitename"
1202
- msgstr "اسم الموقع"
1203
-
1204
- #: templates/ms-signup-another-blog-form.php:54
1205
- #: templates/ms-signup-blog-form.php:38
1206
- msgid "domain"
1207
- msgstr "النطاق"
1208
-
1209
- #: templates/ms-signup-another-blog-form.php:55
1210
- #: templates/ms-signup-blog-form.php:39
1211
- msgid "Your address will be %s."
1212
- msgstr "سوف يكون عنوانك s٪."
1213
-
1214
- #: templates/ms-signup-another-blog-form.php:55
1215
- #: templates/ms-signup-blog-form.php:39
1216
- msgid "Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!"
1217
- msgstr "يجب أن تكون على الأقل 4 رموز، حروف وأرقام فقط. إنه لا يمكن تغييرها لذا اختر بعناية!"
1218
-
1219
- #: templates/ms-signup-another-blog-form.php:58
1220
- #: templates/ms-signup-blog-form.php:42
1221
- msgid "Site Title:"
1222
- msgstr "عنوان الموقع:"
1223
-
1224
- #: templates/ms-signup-another-blog-form.php:66
1225
- #: templates/ms-signup-blog-form.php:50
1226
- msgid "Privacy:"
1227
- msgstr "الخصوصية:"
1228
-
1229
- #: templates/ms-signup-another-blog-form.php:67
1230
- #: templates/ms-signup-blog-form.php:51
1231
- msgid "Allow my site to appear in search engines like Google, Technorati, and in public listings around this network."
1232
- msgstr "السماح للموقع من الظهور في محركات البحث مثل جوجل، تيكنوراتي، والقوائم العامة للشبكة."
1233
-
1234
- #: templates/ms-signup-another-blog-form.php:71
1235
- #: templates/ms-signup-blog-form.php:55
1236
- msgid "Yes"
1237
- msgstr "نعم"
1238
-
1239
- #: templates/ms-signup-another-blog-form.php:75
1240
- #: templates/ms-signup-blog-form.php:59
1241
- msgid "No"
1242
- msgstr "لا "
1243
-
1244
- #: templates/ms-signup-another-blog-form.php:85
1245
- msgid "Create Site"
1246
- msgstr "إنشاء موقع"
1247
-
1248
- #: templates/ms-signup-blog-form.php:69
1249
- msgid "Signup"
1250
- msgstr "الاشتراك"
1251
-
1252
- #: templates/ms-signup-user-form.php:7
1253
- msgid "Get your own %s account in seconds"
1254
- msgstr " في ثوان %s أحصل على حسابك الخاص "
1255
-
1256
- #: templates/ms-signup-user-form.php:22
1257
- msgid "(Must be at least 4 characters, letters and numbers only.)"
1258
- msgstr "(يجب أن يكون على الأقل 4 رموز، حروف وأرقام فقط.)"
1259
-
1260
- #: templates/ms-signup-user-form.php:24
1261
- msgid "Email&nbsp;Address:"
1262
- msgstr "عنوان البريد الإلكتروني:"
1263
-
1264
- #: templates/ms-signup-user-form.php:30
1265
- msgid "We send your registration email to this address. (Double-check your email address before continuing.)"
1266
- msgstr "سنرسل بريدك الإلكتروني المستعمل في التسجيل إلى هذا العنوان. (انقر نقرا مزدوجا للتحقق من عنوان بريدك الإلكتروني قبل المتابعة.)"
1267
-
1268
- #: templates/ms-signup-user-form.php:47
1269
- msgid "Gimme a site!"
1270
- msgstr "اعطني موقع!"
1271
-
1272
- #: templates/ms-signup-user-form.php:50
1273
- msgid "Just a username, please."
1274
- msgstr "فقط اسم المستخدم، من فضلك."
1275
-
1276
- #: templates/ms-signup-user-form.php:54
1277
- msgid "Next"
1278
- msgstr "التالي"
1279
-
1280
- #: templates/profile-form.php:26
1281
- msgid "Personal Options"
1282
- msgstr "خيارات شخصية"
1283
-
1284
- #: templates/profile-form.php:31
1285
- msgid "Visual Editor"
1286
- msgstr "المحرر المرئي"
1287
-
1288
- #: templates/profile-form.php:32
1289
- msgid "Disable the visual editor when writing"
1290
- msgstr "تعطيل المحرر المرئي أثناء كتابة"
1291
-
1292
- #: templates/profile-form.php:37
1293
- msgid "Admin Color Scheme"
1294
- msgstr "مشرف نظام الألوان"
1295
-
1296
- #: templates/profile-form.php:44
1297
- msgid "Keyboard Shortcuts"
1298
- msgstr "اختصارات لوحة المفاتيح"
1299
-
1300
- #: templates/profile-form.php:45
1301
- msgid "Enable keyboard shortcuts for comment moderation."
1302
- msgstr "تمكين اختصارات لوحة المفاتيح للالإشراف على التعليقات."
1303
-
1304
- #: templates/profile-form.php:45
1305
- msgid "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">More information</a>"
1306
- msgstr "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">مزيد من المعلومات</a>"
1307
-
1308
- #: templates/profile-form.php:51
1309
- #: templates/profile-form.php:54
1310
- msgid "Toolbar"
1311
- msgstr "شريط الأدوات"
1312
-
1313
- #: templates/profile-form.php:57
1314
- msgid "Show Toolbar when viewing site"
1315
- msgstr "عرض شريط الأدوات عند مشاهدة الموقع"
1316
-
1317
- #: templates/profile-form.php:63
1318
- #: templates/profile-form.php:66
1319
- msgid "Show Admin Bar"
1320
- msgstr "عرض شريط المدير"
1321
-
1322
- #. translators: Show admin bar when viewing site
1323
- #: templates/profile-form.php:69
1324
- msgid "when viewing site"
1325
- msgstr "عند مشاهدة الموقع"
1326
-
1327
- #. translators: Show admin bar in dashboard
1328
- #: templates/profile-form.php:74
1329
- msgid "in dashboard"
1330
- msgstr "في لوحة المعلومات"
1331
-
1332
- #: templates/profile-form.php:87
1333
- msgid "Name"
1334
- msgstr "الاسم"
1335
-
1336
- #: templates/profile-form.php:92
1337
- msgid "Your username cannot be changed."
1338
- msgstr "لا يمكن تغيي اسم المستخدم"
1339
-
1340
- #: templates/profile-form.php:96
1341
- msgid "First name"
1342
- msgstr "الإسم الشخصي"
1343
-
1344
- #: templates/profile-form.php:101
1345
- msgid "Last name"
1346
- msgstr "اسم العائلة"
1347
-
1348
- #: templates/profile-form.php:106
1349
- msgid "Nickname"
1350
- msgstr "كنية"
1351
-
1352
- #: templates/profile-form.php:106
1353
- #: templates/profile-form.php:143
1354
- msgid "(required)"
1355
- msgstr "(مطلوب)"
1356
-
1357
- #: templates/profile-form.php:111
1358
- msgid "Display name publicly as"
1359
- msgstr "عرض الاسم علنا ك"
1360
-
1361
- #: templates/profile-form.php:139
1362
- msgid "Contact Info"
1363
- msgstr "معلومات الاتصال"
1364
-
1365
- #: templates/profile-form.php:148
1366
- msgid "Website"
1367
- msgstr "الموقع"
1368
-
1369
- #: templates/profile-form.php:165
1370
- msgid "About Yourself"
1371
- msgstr "معلومات عن نفسك"
1372
-
1373
- #: templates/profile-form.php:169
1374
- msgid "Biographical Info"
1375
- msgstr "معلومات السيرة الذاتية "
1376
-
1377
- #: templates/profile-form.php:171
1378
- msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
1379
- msgstr "شارك بالقليل من المعلومات من سيرتك الذاتية لملء التعريف الخاص بك. قد يتم إظهار ذلك علنا​​."
1380
-
1381
- #: templates/profile-form.php:179
1382
- msgid "New Password"
1383
- msgstr "كلمة سر جديدة"
1384
-
1385
- #: templates/profile-form.php:180
1386
- msgid "If you would like to change the password type a new one. Otherwise leave this blank."
1387
- msgstr "إذا كنت ترغب في تغيير كلمة السر اكتب واحدة جديدة. وإلا اترك هذا المكان فارغا."
1388
-
1389
- #: templates/profile-form.php:181
1390
- msgid "Type your new password again."
1391
- msgstr "اكتب كلمة المرور الجديدة مرة أخرى."
1392
-
1393
- #: templates/profile-form.php:183
1394
- #: templates/resetpass-form.php:20
1395
- msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
1396
- msgstr "تلميح: كلمة المرور يجب أن تتكون على الأقل من سبعة رموز. لجعلها أكثر قوة، استخدم والأرقام والرموز! \" ? $ % ^ &amp; )."
1397
-
1398
- #: templates/profile-form.php:197
1399
- msgid "Additional Capabilities"
1400
- msgstr "قدرات إضافية"
1401
-
1402
- #: templates/profile-form.php:216
1403
- msgid "Update Profile"
1404
- msgstr "تحديث الملف الشخصي"
1405
-
1406
- #: templates/register-form.php:23
1407
- msgid "A password will be e-mailed to you."
1408
- msgstr "سوف يثم ارسال كلمة السر الخاصة بك بالبريد الإلكتروني."
1409
-
1410
- #: templates/resetpass-form.php:12
1411
- msgid "New password"
1412
- msgstr "كلمة سر جديدة"
1413
-
1414
- #: templates/resetpass-form.php:16
1415
- msgid "Confirm new password"
1416
- msgstr "تأكيد كلمة السر الجديدة"
1417
-
1418
- #. Plugin URI of the plugin/theme
1419
- msgid "http://www.jfarthing.com/wordpress-plugins/theme-my-login/"
1420
- msgstr "http://www.jfarthing.com/wordpress-plugins/theme-my-login/"
1421
-
1422
- #. Description of the plugin/theme
1423
- msgid "Themes the WordPress login, registration and forgot password pages according to your theme."
1424
- msgstr "ثيمات وردبريس الدخول ، تسجيل وصفحات نسيان كلمة السر الخاصة بك وفقا للموضوع."
1425
-
1426
- #. Author of the plugin/theme
1427
- msgid "Jeff Farthing"
1428
- msgstr "جيف ربع البنس"
1429
-
1430
- #. Author URI of the plugin/theme
1431
- msgid "http://www.jfarthing.com"
1432
- msgstr "http://www.jfarthing.com"
1433
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
language/theme-my-login-da_DK.mo DELETED
Binary file
language/theme-my-login-da_DK.po DELETED
@@ -1,1448 +0,0 @@
1
- # Copyright (C) 2012 Theme My Login
2
- # This file is distributed under the same license as the Theme My Login package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Theme My Login 6.2\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/theme-my-login\n"
7
- "POT-Creation-Date: 2012-03-08 16:19:05+00:00\n"
8
- "PO-Revision-Date: 2012-03-08 14:36-0500\n"
9
- "Last-Translator: Jeff Farthing <jeff@jfarthing.com>\n"
10
- "Language-Team: Kim Hansen <kim@happyhansen.dk>\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
- "X-Poedit-Language: Danish\n"
16
- "X-Poedit-Country: DENMARK\n"
17
- "X-Poedit-SourceCharset: utf-8\n"
18
-
19
- #. #-#-#-#-# plugin.pot (Theme My Login 6.2) #-#-#-#-#
20
- #. Plugin Name of the plugin/theme
21
- #: admin/class-theme-my-login-admin.php:42
22
- #: admin/class-theme-my-login-admin.php:43
23
- #: includes/class-theme-my-login-widget.php:24
24
- msgid "Theme My Login"
25
- msgstr "Theme My Login"
26
-
27
- #: admin/class-theme-my-login-admin.php:81
28
- msgid "ERROR: The module \"%1$s\" could not be activated (%2$s)."
29
- msgstr "FEJL: Modulet \"%1$s\" kunne ikke aktiveres (%2$s)."
30
-
31
- #: admin/class-theme-my-login-admin.php:103
32
- msgid "NOTICE:"
33
- msgstr "BEMÆRK:"
34
-
35
- #: admin/class-theme-my-login-admin.php:104
36
- msgid "Now that you have activated Theme My Login, please <a href=\"%s\">visit the settings page</a> and familiarize yourself with all of the available options."
37
- msgstr "Nu du har aktiveret Theme My Login, bedes du <a href=\"%s\">gå til indstillingssiden</a> og gør dig selv fortrolig med alle de tilgængelige indstillinger."
38
-
39
- #: admin/class-theme-my-login-admin.php:106
40
- msgid "Take me to the settings page"
41
- msgstr "Jeg ønsker at gå til siden med indstillinger"
42
-
43
- #: admin/class-theme-my-login-admin.php:119
44
- msgid "You can now login with your e-mail address or username! Try it out!"
45
- msgstr "Du kan nu logge ind med din e-mail-adresse eller dit brugernavn! Prøv det!"
46
-
47
- #: admin/class-theme-my-login-admin.php:120
48
- msgid "Theme My Login now utilizes a module system. Modules are similar to WordPress plugins. Each module extends the default functionality of Theme My Login. <a rel=\"tml-options\" href=\"#tml-options-modules\">Click here</a> to get started with modules now."
49
- msgstr "Theme My Login benytter nu et modul-system. Modulerne er magen til WordPress plugins. Hvert modul udvider standard funktionaliteten i Theme My Login. <a rel=\"tml-options\" href=\"#tml-options-modules\">Klik her</a> for at komme i gang med moduler nu."
50
-
51
- #: admin/class-theme-my-login-admin.php:121
52
- msgid "Theme My Login now allows custom forms. You can create your own form template(s) by copying the default version(s) from \"theme-my-login/templates\" to your current theme directory. Try it out!"
53
- msgstr "Theme My Login giver nu mulighed for brugerdefinerede formularer. Du kan oprette dine egne formularskabeloner ved at kopiere en standardudgave fra \"theme-my-login/templates\" til dit aktuelle temas mappe. Prøv det!"
54
-
55
- #: admin/class-theme-my-login-admin.php:122
56
- msgid "You can maintain your stylesheet changes between upgrades. Just simply copy the file \"theme-my-login/theme-my-login.css\" to your current theme directory and edit it as you please!"
57
- msgstr "Du kan beholde dine ændringer i stylesheetet mellem opdateringer. Du skal blot kopiere filen \"/theme-my-login/theme-my-login.css\" til dit aktuelle temas mappe og redigere den, som du har lyst!"
58
-
59
- #: admin/class-theme-my-login-admin.php:123
60
- msgid "Theme My Login provides a shortcode that you can use within your posts with multiple parameters to customize the form. Visit the <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Theme My Login Documentation</a> for usage instructions."
61
- msgstr "Theme My Login har <span title=\"shortcodes\">shortcodes</span>, med mange parametre som du kan benytte i dine indlæg for at tilpasse formularen. Gå til <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Theme My Login-dokumentation</a> for at få brugervejledning."
62
-
63
- #: admin/class-theme-my-login-admin.php:124
64
- msgid "Jeff is <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">available for hire</a>!"
65
- msgstr "Jeff kan <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">hyres til opgaver</a>!"
66
-
67
- #: admin/class-theme-my-login-admin.php:128
68
- msgid "Did You Know?"
69
- msgstr "Vidste du?"
70
-
71
- #: admin/class-theme-my-login-admin.php:177
72
- msgid "General"
73
- msgstr "Generelt"
74
-
75
- #: admin/class-theme-my-login-admin.php:178
76
- msgid "Basic"
77
- msgstr "Grundlæggende"
78
-
79
- #: admin/class-theme-my-login-admin.php:179
80
- #: admin/class-theme-my-login-admin.php:319
81
- msgid "Modules"
82
- msgstr "Moduler"
83
-
84
- #: admin/class-theme-my-login-admin.php:181
85
- msgid "Permalinks"
86
- msgstr "Permalinks"
87
-
88
- #: admin/class-theme-my-login-admin.php:188
89
- msgid "Theme My Login Settings"
90
- msgstr "Indstillinger for Theme My Login"
91
-
92
- #: admin/class-theme-my-login-admin.php:194
93
- #: admin/class-theme-my-login-admin.php:254
94
- msgid "Save Changes"
95
- msgstr "Gem ændringer"
96
-
97
- #: admin/class-theme-my-login-admin.php:271
98
- msgid "Page ID"
99
- msgstr "Side-id"
100
-
101
- #: admin/class-theme-my-login-admin.php:274
102
- msgid "This should be the ID of the WordPress page that includes the [theme-my-login] shortcode. By default, this page is titled \"Login\"."
103
- msgstr "Dette skal være id&#39;en på WordPress-siden, som indeholder [theme-my-login-page]-kortkoden. Som standard har denne side titlen \"Login\"."
104
-
105
- #: admin/class-theme-my-login-admin.php:278
106
- msgid "Pagelist"
107
- msgstr "Sideliste"
108
-
109
- #: admin/class-theme-my-login-admin.php:281
110
- msgid "Show Page In Pagelist"
111
- msgstr "Vis side i Sideliste"
112
-
113
- #: admin/class-theme-my-login-admin.php:282
114
- msgid "Enable this setting to add login/logout links to the pagelist generated by functions like wp_list_pages() and wp_page_menu()."
115
- msgstr "Aktivér denne indstilling for at tilføje login/logout-links til listen af sider genereret af funktioner som wp_list_pages() og wp_page_menu()."
116
-
117
- #: admin/class-theme-my-login-admin.php:286
118
- msgid "Stylesheet"
119
- msgstr "Stylesheet"
120
-
121
- #: admin/class-theme-my-login-admin.php:289
122
- msgid "Enable \"theme-my-login.css\""
123
- msgstr "Aktivér \"theme-my-login.css\""
124
-
125
- #: admin/class-theme-my-login-admin.php:290
126
- msgid "In order to keep changes between upgrades, you can store your customized \"theme-my-login.css\" in your current theme directory."
127
- msgstr "For at bevare ændringer mellem opdateringer, kan du gemme din tilpassede \"theme-my-login.css\"-fil i dit aktuelle temas mappe."
128
-
129
- #: admin/class-theme-my-login-admin.php:294
130
- msgid "E-mail Login"
131
- msgstr "E-mail logind"
132
-
133
- #: admin/class-theme-my-login-admin.php:297
134
- msgid "Enable e-mail address login"
135
- msgstr "Aktiver e-mail-adresse logind"
136
-
137
- #: admin/class-theme-my-login-admin.php:298
138
- msgid "Allows users to login using their e-mail address in place of their username."
139
- msgstr "Tillad brugere at logge ind ved brug af deres e-mail-adresse istedet for deres brugernavn."
140
-
141
- #: admin/class-theme-my-login-admin.php:323
142
- msgid "Enable %s"
143
- msgstr "Aktivér %s"
144
-
145
- #: admin/class-theme-my-login-admin.php:325
146
- msgid "No modules found."
147
- msgstr "Ingen moduler fundet."
148
-
149
- #: admin/class-theme-my-login-admin.php:343
150
- #: includes/class-theme-my-login-widget.php:87
151
- msgid "Login"
152
- msgstr "Log ind"
153
-
154
- #: admin/class-theme-my-login-admin.php:344
155
- #: includes/class-theme-my-login-template.php:141
156
- #: includes/class-theme-my-login-widget.php:87
157
- #: templates/register-form.php:25
158
- msgid "Register"
159
- msgstr "Registrér"
160
-
161
- #: admin/class-theme-my-login-admin.php:345
162
- #: includes/class-theme-my-login-template.php:147
163
- #: includes/class-theme-my-login-widget.php:87
164
- msgid "Lost Password"
165
- msgstr "Mistet kodeord"
166
-
167
- #: admin/class-theme-my-login-admin.php:475
168
- msgid "One of the modules is invalid."
169
- msgstr "En af modulerne er ugyldig."
170
-
171
- #: admin/class-theme-my-login-admin.php:531
172
- msgid "Invalid module path."
173
- msgstr "Ugyldig sti til modul."
174
-
175
- #: admin/class-theme-my-login-admin.php:533
176
- msgid "Module file does not exist."
177
- msgstr "Modulfilen eksisterer ikke."
178
-
179
- #: admin/class-theme-my-login-admin.php:537
180
- msgid "The module does not have a valid header."
181
- msgstr "Modulet har ikke en gyldig header."
182
-
183
- # @ default
184
- #: includes/class-theme-my-login-ms-signup.php:117
185
- msgctxt "Multisite active signup type"
186
- msgid "all"
187
- msgstr "alle"
188
-
189
- # @ default
190
- #: includes/class-theme-my-login-ms-signup.php:118
191
- msgctxt "Multisite active signup type"
192
- msgid "none"
193
- msgstr "ingen"
194
-
195
- # @ default
196
- #: includes/class-theme-my-login-ms-signup.php:119
197
- msgctxt "Multisite active signup type"
198
- msgid "blog"
199
- msgstr "blog"
200
-
201
- # @ default
202
- #: includes/class-theme-my-login-ms-signup.php:120
203
- msgctxt "Multisite active signup type"
204
- msgid "user"
205
- msgstr "bruger"
206
-
207
- # @ default
208
- #: includes/class-theme-my-login-ms-signup.php:123
209
- msgid "Greetings Site Administrator! You are currently allowing &#8220;%s&#8221; registrations. To change or disable registration go to your <a href=\"%s\">Options page</a>."
210
- msgstr "Goddag hjemmeside-administrator! Du tillader &#8220;%s&#8221; registreringer for øjeblikket. For at ændre eller deaktivere registreringer gå til din <a href=\"%s\">Indstillingsside</a>."
211
-
212
- #: includes/class-theme-my-login-ms-signup.php:129
213
- msgid "Registration has been disabled."
214
- msgstr "Registrering er deaktiveret."
215
-
216
- #: includes/class-theme-my-login-ms-signup.php:131
217
- msgid "You must first <a href=\"%s\">log in</a>, and then you can create a new site."
218
- msgstr "Du skal først <a href=\"%s\">logge ind</a>, og derefter kan du oprette en ny webside."
219
-
220
- #: includes/class-theme-my-login-ms-signup.php:155
221
- msgid "%s is your new username"
222
- msgstr "%s er dit nye brugernavn"
223
-
224
- #: includes/class-theme-my-login-ms-signup.php:156
225
- msgid "But, before you can start using your new username, <strong>you must activate it</strong>."
226
- msgstr "Men, før du kan begynde at bruge dit nye brugernavn, <strong>skal du aktivere det</strong>."
227
-
228
- #: includes/class-theme-my-login-ms-signup.php:157
229
- msgid "Check your inbox at <strong>%1$s</strong> and click the link given."
230
- msgstr "Kontroller din indbakke på <strong>%1$s</strong> og klik på det fremsendte link."
231
-
232
- #: includes/class-theme-my-login-ms-signup.php:158
233
- msgid "If you do not activate your username within two days, you will have to sign up again."
234
- msgstr "Hvis du ikke aktiverer dit brugernavn inden for to dage, er du nødt til at tilmelde dig igen."
235
-
236
- #: includes/class-theme-my-login-ms-signup.php:162
237
- msgid "User registration has been disabled."
238
- msgstr "Bruger-registrering er deaktiveret."
239
-
240
- #: includes/class-theme-my-login-ms-signup.php:194
241
- msgid "Congratulations! Your new site, %s, is almost ready."
242
- msgstr "Tillykke! Din nye webside, %s, er næsten klar."
243
-
244
- #: includes/class-theme-my-login-ms-signup.php:196
245
- msgid "But, before you can start using your site, <strong>you must activate it</strong>."
246
- msgstr "Men, før du kan begynde at benytte din hjemmeside, <strong>skal du aktivere den</strong>."
247
-
248
- #: includes/class-theme-my-login-ms-signup.php:197
249
- msgid "Check your inbox at <strong>%s</strong> and click the link given."
250
- msgstr "Kontroller din indbakke på <strong>%s</strong> og klik på det fremsendte link."
251
-
252
- #: includes/class-theme-my-login-ms-signup.php:198
253
- msgid "If you do not activate your site within two days, you will have to sign up again."
254
- msgstr "Hvis du ikke aktiverer din hjemmeside inden for to dage, er du nødt til at tilmelde dig igen."
255
-
256
- # @ default
257
- #: includes/class-theme-my-login-ms-signup.php:199
258
- msgid "Still waiting for your email?"
259
- msgstr "Venter du stadig på din e-mail?"
260
-
261
- #: includes/class-theme-my-login-ms-signup.php:201
262
- msgid "If you haven&#8217;t received your email yet, there are a number of things you can do:"
263
- msgstr "Hvis du ikke har modtaget din E-mail endnu, er der forskellige ting du kan gøre:"
264
-
265
- #: includes/class-theme-my-login-ms-signup.php:203
266
- msgid "Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control."
267
- msgstr "Vent lidt endnu. Nogle gange kan afleveringen af en E-mail være forsinket af årsager uden for din kontrol."
268
-
269
- #: includes/class-theme-my-login-ms-signup.php:204
270
- msgid "Check the junk or spam folder of your email client. Sometime emails wind up there by mistake."
271
- msgstr "Kontroller junk eller spam-mappen i din E-mail-klient. Engang imellem ender e-mails der ved en fejltagelse."
272
-
273
- #: includes/class-theme-my-login-ms-signup.php:205
274
- msgid "Have you entered your email correctly? You have entered %s, if it&#8217;s incorrect, you will not receive your email."
275
- msgstr "Har du indtastet din E-mail korrekt? Du har indtastet %s, hvis det er forkert vil du ikke modtage din E-mail."
276
-
277
- #: includes/class-theme-my-login-ms-signup.php:211
278
- msgid "Site registration has been disabled."
279
- msgstr "Hjemmeside-registrering er deaktiveret."
280
-
281
- #: includes/class-theme-my-login-ms-signup.php:235
282
- msgid "The site %s is yours."
283
- msgstr "Hjemmesiden %s er din."
284
-
285
- #: includes/class-theme-my-login-ms-signup.php:237
286
- msgid "<a href=\"http://%1$s\">http://%2$s</a> is your new site. <a href=\"%3$s\">Log in</a> as &#8220;%4$s&#8221; using your existing password."
287
- msgstr "<a href=\"http://%1$s\">http://%2$s</a> er din nye hjemmeside. <a href=\"%3$s\">Log ind</a> som &#8220;%4$s&#8221; med dit eksisterende kodeord."
288
-
289
- #: includes/class-theme-my-login-ms-signup.php:253
290
- msgid "Sorry, new registrations are not allowed at this time."
291
- msgstr "Beklager, nye registreringer er ikke tilladt på nuværende tidspunkt."
292
-
293
- #: includes/class-theme-my-login-ms-signup.php:255
294
- msgid "You are logged in already. No need to register again!"
295
- msgstr "Du er allerede logget ind. Der er ingen grund til at tilmelde dig igen!"
296
-
297
- #: includes/class-theme-my-login-ms-signup.php:261
298
- msgid "<p><em>The site you were looking for, <strong>%s</strong> does not exist, but you can create it now!</em></p>"
299
- msgstr "<p><em>Hjemmesiden du leder efter, <strong>%s</strong> eksisterer ikke, men du kan oprette den nu!</em></p>"
300
-
301
- #: includes/class-theme-my-login-ms-signup.php:263
302
- msgid "<p><em>The site you were looking for, <strong>%s</strong>, does not exist.</em></p>"
303
- msgstr "<p><em>Hjemmesiden du leder efter, <strong>%s</strong>, eksisterer ikke.</em></p>"
304
-
305
- #: includes/class-theme-my-login-ms-signup.php:402
306
- msgid "Activation Key Required"
307
- msgstr "Aktiveringsnøgle kræves"
308
-
309
- #: includes/class-theme-my-login-ms-signup.php:405
310
- msgid "Activation Key:"
311
- msgstr "Aktiveringsnøgle:"
312
-
313
- #: includes/class-theme-my-login-ms-signup.php:409
314
- #: includes/class-theme-my-login-ms-signup.php:481
315
- msgid "Activate"
316
- msgstr "Aktivér"
317
-
318
- #: includes/class-theme-my-login-ms-signup.php:421
319
- #: includes/class-theme-my-login-ms-signup.php:441
320
- msgid "Your account is now active!"
321
- msgstr "Din konto er nu aktiv!"
322
-
323
- #: includes/class-theme-my-login-ms-signup.php:425
324
- msgid "Your account has been activated. You may now <a href=\"%1$s\">login</a> to the site using your chosen username of &#8220;%2$s&#8221;. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%4$s\">reset your password</a>."
325
- msgstr "Din konto er aktiveret. Du kan nu <a href=\"%1$s\">logge ind</a> på hjemmesiden ved brug af dit valgte brugernavn &#8220;%2$s&#8221;. Kontrollér venligst din E-mail indbakke %3$s for din adgangskode og log-ind instruktioner. Hvis du ikke modtager en E-mail, så kontrollér venligst din junk eller spam-mappe.Hvis du ikke har modtaget en E-mail inden for én time, kan du <a href=\"%4$s\">nulstille din adgangskode</a>."
326
-
327
- #: includes/class-theme-my-login-ms-signup.php:427
328
- msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a>."
329
- msgstr "Din hjemmeside <a href=\"%1$s\">%2$s</a> er aktiveret. Du kan nu logge ind på din hjemmeside ved brug af dit valgte brugernavn &#8220;%3$s&#8221;. Kontrollér venligst din E-mail indbakke %4$s for din adgangskode og log-ind instruktioner. Hvis du ikke modtager en E-mail, så kontrollér venligst din junk eller spam-mappe.Hvis du ikke har modtaget en E-mail inden for én time, kan du <a href=\"%5$s\">nulstille din adgangskode</a>."
330
-
331
- #: includes/class-theme-my-login-ms-signup.php:432
332
- msgid "An error occurred during the activation"
333
- msgstr "Der opstod en fejl under aktiveringen"
334
-
335
- #: includes/class-theme-my-login-ms-signup.php:444
336
- #: templates/ms-signup-user-form.php:16
337
- msgid "Username:"
338
- msgstr "Brugernavn:"
339
-
340
- #: includes/class-theme-my-login-ms-signup.php:445
341
- #: modules/custom-passwords/custom-passwords.php:29
342
- #: modules/custom-passwords/custom-passwords.php:56
343
- msgid "Password:"
344
- msgstr "Adgangskode:"
345
-
346
- #: includes/class-theme-my-login-ms-signup.php:449
347
- msgid "Your account is now activated. <a href=\"%1$s\">View your site</a> or <a href=\"%2$s\">Login</a>"
348
- msgstr "Din konto er nu aktiveret. <a href=\"%1$s\">Se din hjemmeside</a> eller <a href=\"%2$s\">Log ind</a>"
349
-
350
- #: includes/class-theme-my-login-ms-signup.php:451
351
- msgid "Your account is now activated. <a href=\"%1$s\">Login</a> or go back to the <a href=\"%2$s\">homepage</a>."
352
- msgstr "Din konto er nu aktiveret. <a href=\"%1$s\">Log ind</a> eller vend tilbage til <a href=\"%2$s\">hjemmeside</a>."
353
-
354
- #: includes/class-theme-my-login-template.php:137
355
- msgid "Welcome, %s"
356
- msgstr "Velkommen, %s"
357
-
358
- #: includes/class-theme-my-login-template.php:151
359
- #: includes/class-theme-my-login.php:540
360
- #: templates/login-form.php:28
361
- msgid "Log In"
362
- msgstr "Log ind"
363
-
364
- #: includes/class-theme-my-login-template.php:315
365
- #: modules/custom-user-links/custom-user-links.php:82
366
- msgid "Dashboard"
367
- msgstr "Kontrolpanel"
368
-
369
- #: includes/class-theme-my-login-template.php:316
370
- #: modules/custom-user-links/custom-user-links.php:83
371
- #: modules/themed-profiles/admin/themed-profiles-admin.php:66
372
- msgid "Profile"
373
- msgstr "Profil"
374
-
375
- #: includes/class-theme-my-login-template.php:334
376
- #: modules/custom-redirection/custom-redirection.php:197
377
- msgid "Log out"
378
- msgstr "Log ud"
379
-
380
- #: includes/class-theme-my-login-template.php:363
381
- msgid "Register For This Site"
382
- msgstr "Registrér dig på dette site"
383
-
384
- #: includes/class-theme-my-login-template.php:366
385
- msgid "Please enter your username or email address. You will receive a link to create a new password via email."
386
- msgstr "Indtast venligst dit brugernavn eller E-mail-adresse. Du vil herefter modtage et link til oprettelse af en ny adgangskode via E-mail."
387
-
388
- #: includes/class-theme-my-login-template.php:369
389
- msgid "Enter your new password below."
390
- msgstr "Indtast din nye adgangskode herunder."
391
-
392
- #: includes/class-theme-my-login-widget.php:23
393
- msgid "A login form for your blog."
394
- msgstr "En log-ind formular til din blog."
395
-
396
- #: includes/class-theme-my-login-widget.php:88
397
- msgid "Default Action"
398
- msgstr "Standardhandling"
399
-
400
- #: includes/class-theme-my-login-widget.php:95
401
- msgid "Show When Logged In"
402
- msgstr "Vis, når logget ind"
403
-
404
- #: includes/class-theme-my-login-widget.php:97
405
- msgid "Show Title"
406
- msgstr "Vis titel"
407
-
408
- #: includes/class-theme-my-login-widget.php:99
409
- msgid "Show Login Link"
410
- msgstr "Vis log-ind link"
411
-
412
- #: includes/class-theme-my-login-widget.php:101
413
- msgid "Show Register Link"
414
- msgstr "Vis registringslink"
415
-
416
- #: includes/class-theme-my-login-widget.php:103
417
- msgid "Show Lost Password Link"
418
- msgstr "Vis Glemt adgangskode-link"
419
-
420
- #: includes/class-theme-my-login-widget.php:105
421
- msgid "Show Gravatar"
422
- msgstr "Vis gravatar"
423
-
424
- #: includes/class-theme-my-login-widget.php:106
425
- msgid "Gravatar Size"
426
- msgstr "Gravatar-størrelse"
427
-
428
- #: includes/class-theme-my-login-widget.php:108
429
- msgid "Allow Registration"
430
- msgstr "Tillad registrering"
431
-
432
- #: includes/class-theme-my-login-widget.php:110
433
- msgid "Allow Password Recovery"
434
- msgstr "Tillad at få nyt kodeord"
435
-
436
- #: includes/class-theme-my-login.php:245
437
- msgid "Sorry, that key does not appear to be valid."
438
- msgstr "Desværre. Den nøgle ser ikke ud til at være gyldig."
439
-
440
- #: includes/class-theme-my-login.php:261
441
- msgid "The passwords do not match."
442
- msgstr "Adgangskoderne stemmer ikke overens."
443
-
444
- #: includes/class-theme-my-login.php:367
445
- msgid "<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href=\"http://www.google.com/cookies.html\">enable cookies</a> to use WordPress."
446
- msgstr "<strong>FEJL</strong>: Cookies er blokeret eller ikke understøttet af din browser. Du skal <a href=\"http://www.google.com/cookies.html\">aktivere cookies</a> for at bruge WordPress."
447
-
448
- #: includes/class-theme-my-login.php:371
449
- msgid "You are now logged out."
450
- msgstr "Du er nu logget ud."
451
-
452
- #: includes/class-theme-my-login.php:373
453
- msgid "User registration is currently not allowed."
454
- msgstr "Registrering af brugere er i øjeblikket ikke tilladt."
455
-
456
- #: includes/class-theme-my-login.php:375
457
- msgid "Check your e-mail for the confirmation link."
458
- msgstr "Tjek din e-mail for bekræftelseslinket."
459
-
460
- #: includes/class-theme-my-login.php:377
461
- msgid "Your password has been reset."
462
- msgstr "Din adgangskode er nulstillet."
463
-
464
- #: includes/class-theme-my-login.php:379
465
- msgid "Registration complete. Please check your e-mail."
466
- msgstr "Registrering er færdig. Tjek din e-mail."
467
-
468
- #: includes/class-theme-my-login.php:381
469
- msgid "Your session has expired. Please log-in again."
470
- msgstr "Din session er udløbet. Log venligst ind igen."
471
-
472
- #: includes/class-theme-my-login.php:383
473
- msgid "Please log in to continue."
474
- msgstr "Log ind for at fortsætte."
475
-
476
- #: includes/class-theme-my-login.php:540
477
- msgid "Log Out"
478
- msgstr "Log ud"
479
-
480
- #: includes/class-theme-my-login.php:925
481
- msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
482
- msgstr "<strong>FEJL</strong>: Skriv et brugernavn eller e-mail-adresse."
483
-
484
- #: includes/class-theme-my-login.php:929
485
- msgid "<strong>ERROR</strong>: There is no user registered with that email address."
486
- msgstr "<strong>FEJL</strong>: Der er ingen bruger registreret med den e-mail-adresse."
487
-
488
- #: includes/class-theme-my-login.php:941
489
- msgid "<strong>ERROR</strong>: Invalid username or e-mail."
490
- msgstr "<strong>FEJL</strong>: Ugyldigt brugernavn eller e-mail."
491
-
492
- #: includes/class-theme-my-login.php:955
493
- msgid "Password reset is not allowed for this user"
494
- msgstr "Man kan ikke nulstille kodeord for denne bruger"
495
-
496
- #: includes/class-theme-my-login.php:967
497
- msgid "Someone requested that the password be reset for the following account:"
498
- msgstr "En person har anmodet om at få nulstillet kodeordet til følgende konto:"
499
-
500
- #: includes/class-theme-my-login.php:969
501
- #: modules/custom-email/custom-email.php:692
502
- #: modules/custom-email/custom-email.php:709
503
- #: modules/user-moderation/admin/user-moderation-admin.php:164
504
- #: modules/user-moderation/user-moderation.php:365
505
- msgid "Username: %s"
506
- msgstr "Brugernavn: %s"
507
-
508
- #: includes/class-theme-my-login.php:970
509
- msgid "If this was a mistake, just ignore this email and nothing will happen."
510
- msgstr "Hvis dette var en fejl kan du bare ignorere denne e-mail, så vil intet ske."
511
-
512
- #: includes/class-theme-my-login.php:971
513
- msgid "To reset your password, visit the following address:"
514
- msgstr "Besøg følgende adresse for at nulstille dit kodeord:"
515
-
516
- #: includes/class-theme-my-login.php:982
517
- msgid "[%s] Password Reset"
518
- msgstr "[%s] Nulstilling af kodeord"
519
-
520
- #: includes/class-theme-my-login.php:988
521
- #: modules/user-moderation/admin/user-moderation-admin.php:53
522
- #: modules/user-moderation/admin/user-moderation-admin.php:174
523
- #: modules/user-moderation/admin/user-moderation-admin.php:210
524
- msgid "The e-mail could not be sent."
525
- msgstr "E-mailen kunne ikke sendes."
526
-
527
- #: includes/class-theme-my-login.php:988
528
- #: modules/user-moderation/admin/user-moderation-admin.php:53
529
- #: modules/user-moderation/admin/user-moderation-admin.php:174
530
- #: modules/user-moderation/admin/user-moderation-admin.php:210
531
- msgid "Possible reason: your host may have disabled the mail() function..."
532
- msgstr "Mulig grund: Din host har muligvis slået funktionen mail() fra..."
533
-
534
- #: includes/class-theme-my-login.php:1011
535
- #: includes/class-theme-my-login.php:1014
536
- #: includes/class-theme-my-login.php:1019
537
- #: modules/user-moderation/user-moderation.php:238
538
- #: modules/user-moderation/user-moderation.php:241
539
- #: modules/user-moderation/user-moderation.php:246
540
- msgid "Invalid key"
541
- msgstr "Ugyldig kode"
542
-
543
- #: includes/class-theme-my-login.php:1059
544
- msgid "<strong>ERROR</strong>: Please enter a username."
545
- msgstr "<strong>FEJL</strong>: Skriv venligst et brugernavn."
546
-
547
- #: includes/class-theme-my-login.php:1061
548
- msgid "<strong>ERROR</strong>: This username is invalid because it uses illegal characters. Please enter a valid username."
549
- msgstr "<strong>FEJL</strong>: Brugernavnet er ugyldigt, fordi det indeholder tegn, der ikke er tilladte. Skriv venligst et gyldigt brugernavn."
550
-
551
- #: includes/class-theme-my-login.php:1064
552
- msgid "<strong>ERROR</strong>: This username is already registered, please choose another one."
553
- msgstr "<strong>FEJL</strong>: Brugernavnet findes allerede; vælg venligst et andet."
554
-
555
- #: includes/class-theme-my-login.php:1069
556
- msgid "<strong>ERROR</strong>: Please type your e-mail address."
557
- msgstr "<strong>FEJL</strong>: Skriv venligst din e-mail-adresse."
558
-
559
- #: includes/class-theme-my-login.php:1071
560
- msgid "<strong>ERROR</strong>: The email address isn&#8217;t correct."
561
- msgstr "<strong>FEJL</strong>: E-mail-adressen er ikke korrekt."
562
-
563
- #: includes/class-theme-my-login.php:1074
564
- msgid "<strong>ERROR</strong>: This email is already registered, please choose another one."
565
- msgstr "<strong>FEJL</strong>: E-mail-adressen er allerede registreret; vælg venligst en anden."
566
-
567
- #: includes/class-theme-my-login.php:1087
568
- msgid "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href=\"mailto:%s\">webmaster</a> !"
569
- msgstr "<strong>FEJL</strong>: Registrering mislykkedes ... kontakt venligst <a href=\"mailto:%s\">webmasteren</a>!"
570
-
571
- #: modules/custom-email/admin/custom-email-admin.php:46
572
- #: modules/custom-email/admin/custom-email-admin.php:265
573
- msgid "User Notification"
574
- msgstr "Underretning til bruger"
575
-
576
- #: modules/custom-email/admin/custom-email-admin.php:49
577
- msgid "This e-mail will be sent to a new user upon registration."
578
- msgstr "Denne e-mail sendes til en ny bruger ved registrering."
579
-
580
- #: modules/custom-email/admin/custom-email-admin.php:50
581
- #: modules/custom-email/admin/custom-email-admin.php:269
582
- msgid "Please be sure to include the variable %user_pass% if using default passwords or else the user will not know their password!"
583
- msgstr "Sørg for at bruge variablen %user_pass%, hvis du bruger standardadgangskoder. Ellers får brugeren ikke sin adgangskode."
584
-
585
- #: modules/custom-email/admin/custom-email-admin.php:51
586
- #: modules/custom-email/admin/custom-email-admin.php:81
587
- #: modules/custom-email/admin/custom-email-admin.php:130
588
- #: modules/custom-email/admin/custom-email-admin.php:175
589
- #: modules/custom-email/admin/custom-email-admin.php:224
590
- #: modules/custom-email/admin/custom-email-admin.php:270
591
- #: modules/custom-email/admin/custom-email-admin.php:300
592
- #: modules/custom-email/admin/custom-email-admin.php:348
593
- msgid "If any field is left empty, the default will be used instead."
594
- msgstr "Hvis en af disse felter ikke udfyldes, bruges standardværdien i stedet."
595
-
596
- #: modules/custom-email/admin/custom-email-admin.php:54
597
- #: modules/custom-email/admin/custom-email-admin.php:87
598
- #: modules/custom-email/admin/custom-email-admin.php:133
599
- #: modules/custom-email/admin/custom-email-admin.php:181
600
- #: modules/custom-email/admin/custom-email-admin.php:227
601
- #: modules/custom-email/admin/custom-email-admin.php:273
602
- #: modules/custom-email/admin/custom-email-admin.php:306
603
- #: modules/custom-email/admin/custom-email-admin.php:351
604
- msgid "From Name"
605
- msgstr "Fra-Navn"
606
-
607
- #: modules/custom-email/admin/custom-email-admin.php:57
608
- #: modules/custom-email/admin/custom-email-admin.php:90
609
- #: modules/custom-email/admin/custom-email-admin.php:136
610
- #: modules/custom-email/admin/custom-email-admin.php:184
611
- #: modules/custom-email/admin/custom-email-admin.php:230
612
- #: modules/custom-email/admin/custom-email-admin.php:276
613
- #: modules/custom-email/admin/custom-email-admin.php:309
614
- #: modules/custom-email/admin/custom-email-admin.php:354
615
- msgid "From E-mail"
616
- msgstr "Fra-E-mail"
617
-
618
- #: modules/custom-email/admin/custom-email-admin.php:60
619
- #: modules/custom-email/admin/custom-email-admin.php:93
620
- #: modules/custom-email/admin/custom-email-admin.php:139
621
- #: modules/custom-email/admin/custom-email-admin.php:187
622
- #: modules/custom-email/admin/custom-email-admin.php:233
623
- #: modules/custom-email/admin/custom-email-admin.php:279
624
- #: modules/custom-email/admin/custom-email-admin.php:312
625
- #: modules/custom-email/admin/custom-email-admin.php:357
626
- msgid "E-mail Format"
627
- msgstr "E-mail-format"
628
-
629
- #: modules/custom-email/admin/custom-email-admin.php:62
630
- #: modules/custom-email/admin/custom-email-admin.php:95
631
- #: modules/custom-email/admin/custom-email-admin.php:141
632
- #: modules/custom-email/admin/custom-email-admin.php:189
633
- #: modules/custom-email/admin/custom-email-admin.php:235
634
- #: modules/custom-email/admin/custom-email-admin.php:281
635
- #: modules/custom-email/admin/custom-email-admin.php:314
636
- #: modules/custom-email/admin/custom-email-admin.php:359
637
- msgid "Plain Text"
638
- msgstr "Almindelig tekst"
639
-
640
- #: modules/custom-email/admin/custom-email-admin.php:63
641
- #: modules/custom-email/admin/custom-email-admin.php:96
642
- #: modules/custom-email/admin/custom-email-admin.php:142
643
- #: modules/custom-email/admin/custom-email-admin.php:190
644
- #: modules/custom-email/admin/custom-email-admin.php:236
645
- #: modules/custom-email/admin/custom-email-admin.php:282
646
- #: modules/custom-email/admin/custom-email-admin.php:315
647
- #: modules/custom-email/admin/custom-email-admin.php:360
648
- msgid "HTML"
649
- msgstr "HTML"
650
-
651
- #: modules/custom-email/admin/custom-email-admin.php:66
652
- #: modules/custom-email/admin/custom-email-admin.php:99
653
- #: modules/custom-email/admin/custom-email-admin.php:145
654
- #: modules/custom-email/admin/custom-email-admin.php:193
655
- #: modules/custom-email/admin/custom-email-admin.php:239
656
- #: modules/custom-email/admin/custom-email-admin.php:285
657
- #: modules/custom-email/admin/custom-email-admin.php:318
658
- #: modules/custom-email/admin/custom-email-admin.php:363
659
- msgid "Subject"
660
- msgstr "Emne"
661
-
662
- #: modules/custom-email/admin/custom-email-admin.php:69
663
- #: modules/custom-email/admin/custom-email-admin.php:102
664
- #: modules/custom-email/admin/custom-email-admin.php:148
665
- #: modules/custom-email/admin/custom-email-admin.php:196
666
- #: modules/custom-email/admin/custom-email-admin.php:242
667
- #: modules/custom-email/admin/custom-email-admin.php:288
668
- #: modules/custom-email/admin/custom-email-admin.php:321
669
- #: modules/custom-email/admin/custom-email-admin.php:366
670
- msgid "Message"
671
- msgstr "Besked"
672
-
673
- #: modules/custom-email/admin/custom-email-admin.php:72
674
- #: modules/custom-email/admin/custom-email-admin.php:105
675
- #: modules/custom-email/admin/custom-email-admin.php:151
676
- #: modules/custom-email/admin/custom-email-admin.php:199
677
- #: modules/custom-email/admin/custom-email-admin.php:245
678
- #: modules/custom-email/admin/custom-email-admin.php:291
679
- #: modules/custom-email/admin/custom-email-admin.php:324
680
- #: modules/custom-email/admin/custom-email-admin.php:369
681
- msgid "Available Variables"
682
- msgstr "Tilgængelige variabler"
683
-
684
- #: modules/custom-email/admin/custom-email-admin.php:77
685
- #: modules/custom-email/admin/custom-email-admin.php:171
686
- #: modules/custom-email/admin/custom-email-admin.php:296
687
- msgid "Admin Notification"
688
- msgstr "Underretning til admin"
689
-
690
- #: modules/custom-email/admin/custom-email-admin.php:80
691
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon new user registration."
692
- msgstr "Denne e-mail sendes til den eller de e-mail-adresser (flere adresser skal adskilles af kommaer), der indtastes nedenfor, når en ny bruger har registreret sig."
693
-
694
- #: modules/custom-email/admin/custom-email-admin.php:84
695
- #: modules/custom-email/admin/custom-email-admin.php:178
696
- #: modules/custom-email/admin/custom-email-admin.php:303
697
- msgid "To"
698
- msgstr "Til"
699
-
700
- #: modules/custom-email/admin/custom-email-admin.php:128
701
- msgid "This e-mail will be sent to a user when they attempt to recover their password."
702
- msgstr "Denne e-mail sendes til en bruger, når de forsøger at få en ny adgangskode."
703
-
704
- #: modules/custom-email/admin/custom-email-admin.php:129
705
- msgid "Please be sure to include the variable %reseturl% or else the user will not be able to recover their password!"
706
- msgstr "Sørg for at bruge variablen %reseturl%. Ellers vil brugeren ikke kunne få en ny adgangskode!"
707
-
708
- #: modules/custom-email/admin/custom-email-admin.php:174
709
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon user password change."
710
- msgstr "Denne e-mail sendes til den eller de e-mail-adresser (flere adresser skal adskilles af kommaer), der indtastes nedenfor, når der er blevet ændret et password."
711
-
712
- #: modules/custom-email/admin/custom-email-admin.php:201
713
- #: modules/custom-email/admin/custom-email-admin.php:326
714
- msgid "Disable Admin Notification"
715
- msgstr "Deaktivér besked til admin"
716
-
717
- #: modules/custom-email/admin/custom-email-admin.php:222
718
- msgid "This e-mail will be sent to a new user upon registration when \"E-mail Confirmation\" is checked for \"User Moderation\"."
719
- msgstr "Denne e-mail sendes til nye brugere, når de har registreret sig, hvis \"E-mail bekræftelse\" er krydset af under \"Brugergodkendelse\"."
720
-
721
- #: modules/custom-email/admin/custom-email-admin.php:223
722
- msgid "Please be sure to include the variable %activateurl% or else the user will not be able to activate their account!"
723
- msgstr "Sørg for at bruge variablen %activeurl%. Ellers kan brugeren ikke aktivere sin konto!"
724
-
725
- #: modules/custom-email/admin/custom-email-admin.php:268
726
- msgid "This e-mail will be sent to a new user upon admin approval when \"Admin Approval\" is checked for \"User Moderation\"."
727
- msgstr "Denne e-mail sendes til en ny bruger, når administrator har godkendt ham, hvis \"Admin-godkendelse\" er krydset af under \"Brugergodkendelse\"."
728
-
729
- #: modules/custom-email/admin/custom-email-admin.php:299
730
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below upon user registration when \"Admin Approval\" is checked for \"User Moderation\"."
731
- msgstr "Denne e-mail sendes til e-mail-adressen eller -adresserne (flere adresser adskilles af kommaer) opført nedenfor, når en bruger har registreret sig, hvis \"Admin-godkendelse\" er markeret ud for \"Brugergodkendelse\"."
732
-
733
- #: modules/custom-email/admin/custom-email-admin.php:347
734
- msgid "This e-mail will be sent to a user who is deleted/denied when \"Admin Approval\" is checked for \"User Moderation\" and the user's role is \"Pending\"."
735
- msgstr "Denne e-mail sendes til en bruger, som er slettet/nægtet adgang, hvis \"Admin-godkendelse\" er krydset af under \"Brugergodkendelse\", og hvis brugerens rolle er \"Afventer\"."
736
-
737
- #: modules/custom-email/admin/custom-email-admin.php:390
738
- #: templates/profile-form.php:143
739
- #: templates/register-form.php:16
740
- msgid "E-mail"
741
- msgstr "E-mail"
742
-
743
- #: modules/custom-email/admin/custom-email-admin.php:391
744
- msgid "New User"
745
- msgstr "Ny bruger"
746
-
747
- #: modules/custom-email/admin/custom-email-admin.php:392
748
- msgid "Retrieve Password"
749
- msgstr "Generhverv kodeord"
750
-
751
- #: modules/custom-email/admin/custom-email-admin.php:393
752
- #: templates/resetpass-form.php:26
753
- msgid "Reset Password"
754
- msgstr "Nulstil kodeord"
755
-
756
- #: modules/custom-email/admin/custom-email-admin.php:395
757
- msgid "User Activation"
758
- msgstr "Brugeraktivering"
759
-
760
- #: modules/custom-email/admin/custom-email-admin.php:396
761
- msgid "User Approval"
762
- msgstr "Godkendelse af bruger"
763
-
764
- #: modules/custom-email/admin/custom-email-admin.php:397
765
- msgid "User Denial"
766
- msgstr "Afvisning af bruger"
767
-
768
- #: modules/custom-email/custom-email.php:691
769
- msgid "New user registration on your site %s:"
770
- msgstr "Ny brugerregistrering på dit site %s:"
771
-
772
- #: modules/custom-email/custom-email.php:693
773
- #: modules/user-moderation/user-moderation.php:366
774
- msgid "E-mail: %s"
775
- msgstr "E-mail: %s"
776
-
777
- #: modules/custom-email/custom-email.php:695
778
- msgid "[%s] New User Registration"
779
- msgstr "[%s] Ny brugerregistrering"
780
-
781
- #: modules/custom-email/custom-email.php:710
782
- #: modules/user-moderation/admin/user-moderation-admin.php:165
783
- msgid "Password: %s"
784
- msgstr "Adgangskode: %s"
785
-
786
- #: modules/custom-email/custom-email.php:713
787
- msgid "[%s] Your username and password"
788
- msgstr "[%s] Dit brugernavn og adgangskode"
789
-
790
- # @ default
791
- #: modules/custom-email/custom-email.php:745
792
- msgid "[%s] Password Lost/Changed"
793
- msgstr "[%s] Kodeord tabt/ændret"
794
-
795
- # @ default
796
- #: modules/custom-email/custom-email.php:746
797
- msgid "Password Lost and Changed for user: %s"
798
- msgstr "Kodeord mistet og ændret for bruger: %s"
799
-
800
- #: modules/custom-passwords/custom-passwords.php:31
801
- #: modules/custom-passwords/custom-passwords.php:63
802
- msgid "Confirm Password:"
803
- msgstr "Bekræft adgangskode:"
804
-
805
- #: modules/custom-passwords/custom-passwords.php:61
806
- msgid "(Must be at least 6 characters.)"
807
- msgstr "(Skal minimum være 6 karakterer.)"
808
-
809
- #: modules/custom-passwords/custom-passwords.php:65
810
- msgid "Confirm that you've typed your password correctly."
811
- msgstr "Bekræft at du har indtastet dit nye kodeord korrekt."
812
-
813
- #: modules/custom-passwords/custom-passwords.php:103
814
- msgid "<strong>ERROR</strong>: Please enter a password."
815
- msgstr "<strong>FEJL</strong>: Indtast venligst en adgangskode."
816
-
817
- #: modules/custom-passwords/custom-passwords.php:106
818
- msgid "<strong>ERROR</strong>: Your passwords do not match."
819
- msgstr "<strong>FEJL</strong>: Dine adgangskoder matcher ikke."
820
-
821
- #: modules/custom-passwords/custom-passwords.php:109
822
- msgid "<strong>ERROR</strong>: Your password must be at least 6 characters in length."
823
- msgstr "<strong>FEJL</strong>: Din adgangskode skal være på mindst seks tegn."
824
-
825
- #: modules/custom-passwords/custom-passwords.php:230
826
- msgid "Registration complete. You may now log in."
827
- msgstr "Registrering er færdig. Du kan logge ind nu."
828
-
829
- #: modules/custom-redirection/custom-redirection.php:156
830
- msgid "Redirection"
831
- msgstr "<span title=\"Redirection\">Viderestilling</span>"
832
-
833
- #: modules/custom-redirection/custom-redirection.php:185
834
- msgid "Log in"
835
- msgstr "Log ind"
836
-
837
- #: modules/custom-redirection/custom-redirection.php:187
838
- #: modules/custom-redirection/custom-redirection.php:199
839
- msgid "Default"
840
- msgstr "Standard"
841
-
842
- #: modules/custom-redirection/custom-redirection.php:188
843
- msgid "Check this option to send the user to their WordPress Dashboard/Profile."
844
- msgstr "Kryds af her, hvis du vil sende brugeren videre til deres WordPress-kontrolpanel/profil."
845
-
846
- #: modules/custom-redirection/custom-redirection.php:189
847
- #: modules/custom-redirection/custom-redirection.php:201
848
- msgid "Referer"
849
- msgstr "Referrer"
850
-
851
- #: modules/custom-redirection/custom-redirection.php:190
852
- msgid "Check this option to send the user back to the page they were visiting before logging in."
853
- msgstr "Kryds af her, hvis du vil sende brugeren tilbage til den side, de besøgte, før de loggede ind."
854
-
855
- #: modules/custom-redirection/custom-redirection.php:193
856
- #: modules/custom-redirection/custom-redirection.php:205
857
- msgid "Check this option to send the user to a custom location, specified by the textbox above."
858
- msgstr "Kryds af her, hvis du vil sende brugeren til det sted, der er angivet i tekstboksen ovenfor."
859
-
860
- #: modules/custom-redirection/custom-redirection.php:200
861
- msgid "Check this option to send the user to the log in page, displaying a message that they have successfully logged out."
862
- msgstr "Kryds af her, hvis du vil vise en besked om, at brugeren har logget sig ud, og sende ham videre til logind-siden."
863
-
864
- #: modules/custom-redirection/custom-redirection.php:202
865
- msgid "Check this option to send the user back to the page they were visiting before logging out. (Note: If the previous page being visited was an admin page, this can have unexpected results.)"
866
- msgstr "Kryds af her, hvis du vil sende brugeren tilbage til den side, han besøgte, før han loggede ud. (Bemærk, at hvis den forrige side var en admin-side, kan det få uventede resultater.)"
867
-
868
- #: modules/custom-user-links/admin/custom-user-links-admin.php:140
869
- msgid "User Links"
870
- msgstr "Brugerlinks"
871
-
872
- #: modules/custom-user-links/admin/custom-user-links-admin.php:232
873
- #: modules/custom-user-links/admin/custom-user-links-admin.php:255
874
- #: modules/custom-user-links/admin/custom-user-links-admin.php:300
875
- msgid "Title"
876
- msgstr "Titel"
877
-
878
- #: modules/custom-user-links/admin/custom-user-links-admin.php:233
879
- #: modules/custom-user-links/admin/custom-user-links-admin.php:256
880
- #: modules/custom-user-links/admin/custom-user-links-admin.php:304
881
- msgid "URL"
882
- msgstr "URL"
883
-
884
- #: modules/custom-user-links/admin/custom-user-links-admin.php:250
885
- msgid "Add New link:"
886
- msgstr "Tilføj nyt link:"
887
-
888
- #: modules/custom-user-links/admin/custom-user-links-admin.php:266
889
- msgid "Add link"
890
- msgstr "Tilføj link"
891
-
892
- # @ default
893
- #: modules/custom-user-links/admin/custom-user-links-admin.php:306
894
- msgid "Delete"
895
- msgstr "Slet"
896
-
897
- # @ default
898
- #: modules/custom-user-links/admin/custom-user-links-admin.php:307
899
- msgid "Update"
900
- msgstr "Opdatér"
901
-
902
- #: modules/security/admin/security-admin.php:32
903
- #: modules/security/admin/security-admin.php:35
904
- #: modules/user-moderation/admin/user-moderation-admin.php:34
905
- #: modules/user-moderation/admin/user-moderation-admin.php:44
906
- msgid "You can&#8217;t edit that user."
907
- msgstr "Du kan ikke redigere den bruger."
908
-
909
- #: modules/security/admin/security-admin.php:67
910
- msgid "User locked."
911
- msgstr "Bruger spærret."
912
-
913
- #: modules/security/admin/security-admin.php:69
914
- msgid "User unlocked."
915
- msgstr "Brugers spærring ophævet."
916
-
917
- #: modules/security/admin/security-admin.php:92
918
- msgid "Unlock"
919
- msgstr "Fjern spærring"
920
-
921
- #: modules/security/admin/security-admin.php:94
922
- msgid "Lock"
923
- msgstr "Spær"
924
-
925
- #: modules/security/admin/security-admin.php:113
926
- msgid "Security"
927
- msgstr "Sikkerhed"
928
-
929
- #: modules/security/admin/security-admin.php:132
930
- msgid "Private Site"
931
- msgstr "Privat hjemmeside"
932
-
933
- #: modules/security/admin/security-admin.php:135
934
- msgid "Require users to be logged in to view site"
935
- msgstr "Kræver at brugere er logget ind for at kunne se hjemmesiden"
936
-
937
- #: modules/security/admin/security-admin.php:139
938
- msgid "Login Attempts"
939
- msgstr "Log-ind forsøg"
940
-
941
- #: modules/security/admin/security-admin.php:144
942
- msgid "minute(s)"
943
- msgstr "minut(ter)"
944
-
945
- #: modules/security/admin/security-admin.php:145
946
- msgid "hour(s)"
947
- msgstr "time(r)"
948
-
949
- #: modules/security/admin/security-admin.php:146
950
- msgid "day(s)"
951
- msgstr "dag(e)"
952
-
953
- #: modules/security/admin/security-admin.php:169
954
- msgid "After %1$s failed login attempts within %2$s %3$s, lockout the account for %4$s %5$s."
955
- msgstr "Efter %1$s mislykkede loginforsøg indenfor %2$s %3$s skal kontoen spærres i %4$s %5$s."
956
-
957
- #: modules/security/security.php:64
958
- #: modules/security/security.php:90
959
- msgid "<strong>ERROR</strong>: This account has been locked because of too many failed login attempts. You may try again in %s."
960
- msgstr "<strong>FEJL</strong>: Denne konto er blevet spærret på grund af for mange loginforsøg. Du kan evt. prøve igen om %s."
961
-
962
- #: modules/security/security.php:66
963
- msgid "<strong>ERROR</strong>: This account has been locked."
964
- msgstr "<strong>FEJL</strong>: Denne konto er blevet spærret."
965
-
966
- #: modules/security/security.php:126
967
- msgid "Failed Login Attempts"
968
- msgstr "Mislykket logind-forsøg"
969
-
970
- #: modules/security/security.php:130
971
- msgid "IP Address"
972
- msgstr "IP-adresse"
973
-
974
- # @ default
975
- #: modules/security/security.php:131
976
- msgid "Date"
977
- msgstr "Dato"
978
-
979
- #: modules/security/security.php:134
980
- msgid "Y/m/d g:i:s A"
981
- msgstr "Y/m/d g:i:s A"
982
-
983
- #: modules/security/security.php:139
984
- msgid "%s ago"
985
- msgstr "%s siden"
986
-
987
- #: modules/security/security.php:141
988
- msgid "Y/m/d"
989
- msgstr "Y/m/d"
990
-
991
- #: modules/themed-profiles/admin/themed-profiles-admin.php:23
992
- #: modules/themed-profiles/admin/themed-profiles-admin.php:42
993
- msgid "Themed Profiles"
994
- msgstr "Tematiserede profiler"
995
-
996
- #: modules/themed-profiles/admin/themed-profiles-admin.php:51
997
- msgid "Restrict Admin Access"
998
- msgstr "Begræns administrator adgang"
999
-
1000
- #: modules/themed-profiles/themed-profiles.php:123
1001
- #: templates/profile-form.php:182
1002
- #: templates/resetpass-form.php:19
1003
- msgid "Strength indicator"
1004
- msgstr "Styrke-indikator"
1005
-
1006
- #: modules/themed-profiles/themed-profiles.php:124
1007
- msgid "Very weak"
1008
- msgstr "Meget svag"
1009
-
1010
- #: modules/themed-profiles/themed-profiles.php:125
1011
- msgid "Weak"
1012
- msgstr "Svag"
1013
-
1014
- #. translators: password strength
1015
- #: modules/themed-profiles/themed-profiles.php:127
1016
- msgctxt "password strength"
1017
- msgid "Medium"
1018
- msgstr "Middel"
1019
-
1020
- #: modules/themed-profiles/themed-profiles.php:128
1021
- msgid "Strong"
1022
- msgstr "Stærk"
1023
-
1024
- #: modules/themed-profiles/themed-profiles.php:138
1025
- msgid "You do not have permission to edit this user."
1026
- msgstr "Du har ikke tilladelse til at redigere denne bruger."
1027
-
1028
- #: modules/themed-profiles/themed-profiles.php:154
1029
- msgid "Profile updated."
1030
- msgstr "Profil opdateret."
1031
-
1032
- #: modules/themed-profiles/themed-profiles.php:243
1033
- msgid "Your Profile"
1034
- msgstr "Din profil"
1035
-
1036
- #: modules/user-moderation/admin/user-moderation-admin.php:75
1037
- msgid "User approved."
1038
- msgstr "Bruger godkendt."
1039
-
1040
- #: modules/user-moderation/admin/user-moderation-admin.php:77
1041
- msgid "Activation sent."
1042
- msgstr "Aktiverings-e-mail sendt."
1043
-
1044
- #: modules/user-moderation/admin/user-moderation-admin.php:105
1045
- msgid "Resend Activation"
1046
- msgstr "Send aktiverings-e-mail igen"
1047
-
1048
- #: modules/user-moderation/admin/user-moderation-admin.php:110
1049
- msgid "Approve"
1050
- msgstr "Godkende"
1051
-
1052
- #: modules/user-moderation/admin/user-moderation-admin.php:163
1053
- msgid "You have been approved access to %s"
1054
- msgstr "Du er blevet givet adgang til %s"
1055
-
1056
- #: modules/user-moderation/admin/user-moderation-admin.php:168
1057
- msgid "[%s] Registration Approved"
1058
- msgstr "[%s] Registrering godkendt"
1059
-
1060
- #: modules/user-moderation/admin/user-moderation-admin.php:203
1061
- msgid "You have been denied access to %s"
1062
- msgstr "Du er nægtet adgang til %s"
1063
-
1064
- #: modules/user-moderation/admin/user-moderation-admin.php:204
1065
- msgid "[%s] Registration Denied"
1066
- msgstr "[%s] Registrering afvist."
1067
-
1068
- #: modules/user-moderation/admin/user-moderation-admin.php:226
1069
- msgid "Moderation"
1070
- msgstr "Godkendelse"
1071
-
1072
- #: modules/user-moderation/admin/user-moderation-admin.php:242
1073
- msgid "User Moderation"
1074
- msgstr "Godkendelse af bruger"
1075
-
1076
- #: modules/user-moderation/admin/user-moderation-admin.php:245
1077
- msgid "None"
1078
- msgstr "Ingen"
1079
-
1080
- #: modules/user-moderation/admin/user-moderation-admin.php:246
1081
- msgid "Check this option to require no moderation."
1082
- msgstr "Kryds af her, hvis der ingen godkendelse skal være."
1083
-
1084
- #: modules/user-moderation/admin/user-moderation-admin.php:248
1085
- msgid "E-mail Confirmation"
1086
- msgstr "Bekræftelses-E-mail"
1087
-
1088
- #: modules/user-moderation/admin/user-moderation-admin.php:249
1089
- msgid "Check this option to require new users to confirm their e-mail address before they may log in."
1090
- msgstr "Kryds af her, hvis nye brugere skal bekræfte deres e-mail-adresser, før de kan logge ind."
1091
-
1092
- #: modules/user-moderation/admin/user-moderation-admin.php:251
1093
- msgid "Admin Approval"
1094
- msgstr "Admin-godkendelse"
1095
-
1096
- #: modules/user-moderation/admin/user-moderation-admin.php:252
1097
- msgid "Check this option to require new users to be approved by an administrator before they may log in."
1098
- msgstr "Kryds af her, hvis nye brugere skal godkendes af en administrator, før de kan logge ind."
1099
-
1100
- #: modules/user-moderation/admin/user-moderation-admin.php:269
1101
- msgid "User Moderation is not currently compatible with multisite."
1102
- msgstr "Bruger-tilpasning er ikke kompatibelt med multisite."
1103
-
1104
- #: modules/user-moderation/user-moderation.php:163
1105
- msgid "<strong>ERROR</strong>: You have not yet confirmed your e-mail address. <a href=\"%s\">Resend activation</a>?"
1106
- msgstr "<strong>FEJL</strong>: Du har ikke bekræftet din e-mail-adresse endnu. <a href=\"%s\">Send aktiverings-e-mail igen</a>?"
1107
-
1108
- #: modules/user-moderation/user-moderation.php:166
1109
- msgid "<strong>ERROR</strong>: Your registration has not yet been approved."
1110
- msgstr "<strong>FEJL</strong>: Din registrering er endnu ikke blevet godkendt."
1111
-
1112
- #: modules/user-moderation/user-moderation.php:328
1113
- msgid "[%s] Activate Your Account"
1114
- msgstr "[%s] Aktivér din konto"
1115
-
1116
- #: modules/user-moderation/user-moderation.php:329
1117
- msgid "Thanks for registering at %s! To complete the activation of your account please click the following link: "
1118
- msgstr "Tak, fordi du har registreret dig på %s! For at aktivere din konto skal du venligst klikke på følgende link: "
1119
-
1120
- #: modules/user-moderation/user-moderation.php:362
1121
- msgid "[%s] New User Awaiting Approval"
1122
- msgstr "[%s] Ny bruger afventer godkendelse"
1123
-
1124
- #: modules/user-moderation/user-moderation.php:364
1125
- msgid "New user requires approval on your blog %s:"
1126
- msgstr "Ny bruger på din blog %s kræver godkendelse:"
1127
-
1128
- #: modules/user-moderation/user-moderation.php:367
1129
- msgid "To approve or deny this user:"
1130
- msgstr "For at godkende eller afvise denne bruger:"
1131
-
1132
- #: modules/user-moderation/user-moderation.php:388
1133
- msgid "Your registration was successful but you must now confirm your email address before you can log in. Please check your email and click on the link provided."
1134
- msgstr "Din registrering blev gennemført. Du skal nu bekræfte din e-mail-adresse, før du kan logge ind. Tjek venligst din e-mail og klik på det link, du har fået tilsendt."
1135
-
1136
- #: modules/user-moderation/user-moderation.php:390
1137
- msgid "Your registration was successful but you must now be approved by an administrator before you can log in. You will be notified by e-mail once your account has been reviewed."
1138
- msgstr "Din registrering blev gennemført. Den skal nu godkendes af en administrator, før du kan logge ind. Du vil få besked pr. e-mail, når din konto er blevet tjekket."
1139
-
1140
- #: modules/user-moderation/user-moderation.php:393
1141
- msgid "Your account has been activated. You may now log in."
1142
- msgstr "Din konto er blevet aktiveret. Du kan logge ind nu."
1143
-
1144
- #: modules/user-moderation/user-moderation.php:395
1145
- msgid "Your account has been activated. Please check your e-mail for your password."
1146
- msgstr "Din konto er blevet aktiveret. Tjek venligst din e-mail for din adgangskode."
1147
-
1148
- #: modules/user-moderation/user-moderation.php:397
1149
- msgid "<strong>ERROR</strong>: Sorry, that key does not appear to be valid."
1150
- msgstr "<strong>FEJL</strong>: Beklager, koden ser ikke ud til at være gyldig."
1151
-
1152
- #: modules/user-moderation/user-moderation.php:400
1153
- msgid "<strong>ERROR</strong>: Sorry, the activation e-mail could not be sent."
1154
- msgstr "<strong>FEJL</strong>: Beklager, aktiverings-e-mailen kunne ikke sendes."
1155
-
1156
- #: modules/user-moderation/user-moderation.php:402
1157
- msgid "The activation e-mail has been sent to the e-mail address with which you registered. Please check your email and click on the link provided."
1158
- msgstr "Din aktiverings-e-mail er blevet sendt til den e-mail-adresse, du registrerede dig med. Tjek venligst din e-mail og klik på det link, du har fået tilsendt."
1159
-
1160
- #: templates/login-form.php:12
1161
- #: templates/profile-form.php:91
1162
- #: templates/register-form.php:12
1163
- msgid "Username"
1164
- msgstr "Brugernavn"
1165
-
1166
- #: templates/login-form.php:16
1167
- msgid "Password"
1168
- msgstr "Adgangskode"
1169
-
1170
- #: templates/login-form.php:25
1171
- msgid "Remember Me"
1172
- msgstr "Husk mig"
1173
-
1174
- #: templates/lostpassword-form.php:12
1175
- msgid "Username or E-mail:"
1176
- msgstr "Brugernavn eller e-mail:"
1177
-
1178
- #: templates/lostpassword-form.php:20
1179
- msgid "Get New Password"
1180
- msgstr "Få nyt kodeord"
1181
-
1182
- #: templates/ms-signup-another-blog-form.php:7
1183
- msgid "Get <em>another</em> %s site in seconds"
1184
- msgstr "Få <em>en anden</em> %s hjemmeside på få sekunder"
1185
-
1186
- #: templates/ms-signup-another-blog-form.php:10
1187
- msgid "There was a problem, please correct the form below and try again."
1188
- msgstr "Der opstod et problem, ret venligst formularen herunder og prøv igen."
1189
-
1190
- #: templates/ms-signup-another-blog-form.php:13
1191
- msgid "Welcome back, %s. By filling out the form below, you can <strong>add another site to your account</strong>. There is no limit to the number of sites you can have, so create to your heart&#8217;s content, but write responsibly!"
1192
- msgstr "Velkommen tilbage, %s. Ved at udfylde nedenstående formular, kan du <strong> tilføje et andet websted til din konto </strong>. Der er ingen begrænsninger i antallet af Websteder du kan eje, så opret dit favorit-indhold, men skriv ansvarligt!"
1193
-
1194
- #: templates/ms-signup-another-blog-form.php:18
1195
- msgid "Sites you are already a member of:"
1196
- msgstr "Hjemmesider som du allerede er medlem af"
1197
-
1198
- #: templates/ms-signup-another-blog-form.php:27
1199
- msgid "If you&#8217;re not going to use a great site domain, leave it for a new user. Now have at it!"
1200
- msgstr "Hvis du ikke har tænkt dig at bruge en godt domæne, så overlad det til en ny bruger. Og nu i gang!"
1201
-
1202
- #: templates/ms-signup-another-blog-form.php:33
1203
- #: templates/ms-signup-blog-form.php:17
1204
- msgid "Site Name:"
1205
- msgstr "Hjemmesidenavn:"
1206
-
1207
- #: templates/ms-signup-another-blog-form.php:35
1208
- #: templates/ms-signup-blog-form.php:19
1209
- msgid "Site Domain:"
1210
- msgstr "Hjemmeside-domæne:"
1211
-
1212
- # @ default
1213
- #: templates/ms-signup-another-blog-form.php:52
1214
- #: templates/ms-signup-blog-form.php:36
1215
- msgid "sitename"
1216
- msgstr "Hjemmesidenavn"
1217
-
1218
- #: templates/ms-signup-another-blog-form.php:54
1219
- #: templates/ms-signup-blog-form.php:38
1220
- msgid "domain"
1221
- msgstr "domæne"
1222
-
1223
- #: templates/ms-signup-another-blog-form.php:55
1224
- #: templates/ms-signup-blog-form.php:39
1225
- msgid "Your address will be %s."
1226
- msgstr "Din adresse vil være %s"
1227
-
1228
- #: templates/ms-signup-another-blog-form.php:55
1229
- #: templates/ms-signup-blog-form.php:39
1230
- msgid "Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!"
1231
- msgstr "Skal være mindst 4 karakterer, kun bogstaver og tal. Det kan ikke ændres, så vælg det med omhu!"
1232
-
1233
- #: templates/ms-signup-another-blog-form.php:58
1234
- #: templates/ms-signup-blog-form.php:42
1235
- msgid "Site Title:"
1236
- msgstr "Hjemmeside-titel:"
1237
-
1238
- #: templates/ms-signup-another-blog-form.php:66
1239
- #: templates/ms-signup-blog-form.php:50
1240
- msgid "Privacy:"
1241
- msgstr "Beskyttelse af personlige oplysninger:"
1242
-
1243
- #: templates/ms-signup-another-blog-form.php:67
1244
- #: templates/ms-signup-blog-form.php:51
1245
- msgid "Allow my site to appear in search engines like Google, Technorati, and in public listings around this network."
1246
- msgstr "Tillad at min hjemmeside vises i søgemaskiner som Google, Technorati, samt på lister i offentlige netværk."
1247
-
1248
- #: templates/ms-signup-another-blog-form.php:71
1249
- #: templates/ms-signup-blog-form.php:55
1250
- msgid "Yes"
1251
- msgstr "Ja"
1252
-
1253
- #: templates/ms-signup-another-blog-form.php:75
1254
- #: templates/ms-signup-blog-form.php:59
1255
- msgid "No"
1256
- msgstr "Nej"
1257
-
1258
- #: templates/ms-signup-another-blog-form.php:85
1259
- msgid "Create Site"
1260
- msgstr "Opret hjemmeside"
1261
-
1262
- #: templates/ms-signup-blog-form.php:69
1263
- msgid "Signup"
1264
- msgstr "Tilmeld"
1265
-
1266
- #: templates/ms-signup-user-form.php:7
1267
- msgid "Get your own %s account in seconds"
1268
- msgstr "Få din egen %s konto på få sekunder"
1269
-
1270
- #: templates/ms-signup-user-form.php:22
1271
- msgid "(Must be at least 4 characters, letters and numbers only.)"
1272
- msgstr "(Skal minimum være 4 karakterer, kun bogstaver og tal.)"
1273
-
1274
- #: templates/ms-signup-user-form.php:24
1275
- msgid "Email&nbsp;Address:"
1276
- msgstr "E-mail&nbsp;Addresse:"
1277
-
1278
- #: templates/ms-signup-user-form.php:30
1279
- msgid "We send your registration email to this address. (Double-check your email address before continuing.)"
1280
- msgstr "Vi sender din registrerings-E-mail til denne adresse. (Dobbelttjek din E-mail-adresse før du fortsætter.)"
1281
-
1282
- #: templates/ms-signup-user-form.php:47
1283
- msgid "Gimme a site!"
1284
- msgstr "Giv mig et websted!"
1285
-
1286
- #: templates/ms-signup-user-form.php:50
1287
- msgid "Just a username, please."
1288
- msgstr "Kun et brugernavn, tak."
1289
-
1290
- #: templates/ms-signup-user-form.php:54
1291
- msgid "Next"
1292
- msgstr "Næste"
1293
-
1294
- #: templates/profile-form.php:26
1295
- msgid "Personal Options"
1296
- msgstr "Personlige indstillinger"
1297
-
1298
- #: templates/profile-form.php:31
1299
- msgid "Visual Editor"
1300
- msgstr "Visual Editor"
1301
-
1302
- #: templates/profile-form.php:32
1303
- msgid "Disable the visual editor when writing"
1304
- msgstr "Deaktiver Visual Editor når der skrives"
1305
-
1306
- #: templates/profile-form.php:37
1307
- msgid "Admin Color Scheme"
1308
- msgstr "Admin farveskema"
1309
-
1310
- #: templates/profile-form.php:44
1311
- msgid "Keyboard Shortcuts"
1312
- msgstr "Tastaturgenveje"
1313
-
1314
- #: templates/profile-form.php:45
1315
- msgid "Enable keyboard shortcuts for comment moderation."
1316
- msgstr "Aktivér tastaturgenveje for kommentarer."
1317
-
1318
- #: templates/profile-form.php:45
1319
- msgid "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">More information</a>"
1320
- msgstr "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">Mere information</a>"
1321
-
1322
- #: templates/profile-form.php:51
1323
- #: templates/profile-form.php:54
1324
- msgid "Toolbar"
1325
- msgstr "Værktøjslinje"
1326
-
1327
- #: templates/profile-form.php:57
1328
- msgid "Show Toolbar when viewing site"
1329
- msgstr "Vis værktøjslinje når hjemmesiden vises"
1330
-
1331
- #: templates/profile-form.php:63
1332
- #: templates/profile-form.php:66
1333
- msgid "Show Admin Bar"
1334
- msgstr "Vis administrator-bjælken"
1335
-
1336
- #. translators: Show admin bar when viewing site
1337
- #: templates/profile-form.php:69
1338
- msgid "when viewing site"
1339
- msgstr "når hjemmesiden vises"
1340
-
1341
- #. translators: Show admin bar in dashboard
1342
- #: templates/profile-form.php:74
1343
- msgid "in dashboard"
1344
- msgstr "i kontrolpanelet"
1345
-
1346
- #: templates/profile-form.php:87
1347
- msgid "Name"
1348
- msgstr "Navn"
1349
-
1350
- #: templates/profile-form.php:92
1351
- msgid "Your username cannot be changed."
1352
- msgstr "Dit brugernavn kan ikke ændres"
1353
-
1354
- #: templates/profile-form.php:96
1355
- msgid "First name"
1356
- msgstr "Fornavn"
1357
-
1358
- #: templates/profile-form.php:101
1359
- msgid "Last name"
1360
- msgstr "Efternavn"
1361
-
1362
- #: templates/profile-form.php:106
1363
- msgid "Nickname"
1364
- msgstr "Kaldenavn"
1365
-
1366
- #: templates/profile-form.php:106
1367
- #: templates/profile-form.php:143
1368
- msgid "(required)"
1369
- msgstr "(skal udfyldes)"
1370
-
1371
- #: templates/profile-form.php:111
1372
- msgid "Display name publicly as"
1373
- msgstr "Vis navn offentligt som"
1374
-
1375
- #: templates/profile-form.php:139
1376
- msgid "Contact Info"
1377
- msgstr "Kontaktinformationer"
1378
-
1379
- #: templates/profile-form.php:148
1380
- msgid "Website"
1381
- msgstr "Website"
1382
-
1383
- #: templates/profile-form.php:165
1384
- msgid "About Yourself"
1385
- msgstr "Om dig"
1386
-
1387
- #: templates/profile-form.php:169
1388
- msgid "Biographical Info"
1389
- msgstr "Biografisk info"
1390
-
1391
- #: templates/profile-form.php:171
1392
- msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
1393
- msgstr "Del lidt biografiske informationer om dig selv i din profil. De er tilgængelige for andre."
1394
-
1395
- #: templates/profile-form.php:179
1396
- msgid "New Password"
1397
- msgstr "Nyt kodeord"
1398
-
1399
- #: templates/profile-form.php:180
1400
- msgid "If you would like to change the password type a new one. Otherwise leave this blank."
1401
- msgstr "Hvis du vil ændre brugerens kodeord, skal du skrive et nyt. Ellers skal du bare lade være med at udfylde feltet."
1402
-
1403
- #: templates/profile-form.php:181
1404
- msgid "Type your new password again."
1405
- msgstr "Skriv din adgangskode igen."
1406
-
1407
- # @ default
1408
- #: templates/profile-form.php:183
1409
- #: templates/resetpass-form.php:20
1410
- msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
1411
- msgstr "Tip: Dit kodeord skal være mindst syv tegn langt. For at gøre det stærkere bør du bruge store og små bogstaver, tal og symboler som ! \" ? $ % ^ &amp; )."
1412
-
1413
- #: templates/profile-form.php:197
1414
- msgid "Additional Capabilities"
1415
- msgstr "Yderligere muligheder"
1416
-
1417
- #: templates/profile-form.php:216
1418
- msgid "Update Profile"
1419
- msgstr "Opdatér profil"
1420
-
1421
- #: templates/register-form.php:23
1422
- msgid "A password will be e-mailed to you."
1423
- msgstr "Et kodeord vil blive mailet til dig."
1424
-
1425
- #: templates/resetpass-form.php:12
1426
- msgid "New password"
1427
- msgstr "Ny adgangskode"
1428
-
1429
- #: templates/resetpass-form.php:16
1430
- msgid "Confirm new password"
1431
- msgstr "Bekræft ny adgangskode"
1432
-
1433
- #. Plugin URI of the plugin/theme
1434
- msgid "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/"
1435
- msgstr "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/"
1436
-
1437
- #. Description of the plugin/theme
1438
- msgid "Themes the WordPress login, registration and forgot password pages according to your theme."
1439
- msgstr "Tematiserede Wordpress logind, registrering og glemte adgangskode-siden ifølge til dit tema."
1440
-
1441
- #. Author of the plugin/theme
1442
- msgid "Jeff Farthing"
1443
- msgstr "Jeff Farthing"
1444
-
1445
- #. Author URI of the plugin/theme
1446
- msgid "http://www.jfarthing.com"
1447
- msgstr "http://www.jfarthing.com"
1448
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
language/theme-my-login-de_DE.mo DELETED
Binary file
language/theme-my-login-de_DE.po DELETED
@@ -1,1441 +0,0 @@
1
- # Copyright (C) 2012 Theme My Login
2
- # This file is distributed under the same license as the Theme My Login package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Theme My Login 6.2\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/theme-my-login\n"
7
- "POT-Creation-Date: 2012-03-08 16:19:05+00:00\n"
8
- "PO-Revision-Date: 2012-03-10 10:04-0500\n"
9
- "Last-Translator: Jeff Farthing <jeff@jfarthing.com>\n"
10
- "Language-Team: Torsten Liebig <torsten.liebig@web.de>\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
- "X-Poedit-Language: German\n"
16
- "X-Poedit-Country: GERMANY\n"
17
- "X-Poedit-SourceCharset: utf-8\n"
18
-
19
- #. #-#-#-#-# plugin.pot (Theme My Login 6.2) #-#-#-#-#
20
- #. Plugin Name of the plugin/theme
21
- #: admin/class-theme-my-login-admin.php:42
22
- #: admin/class-theme-my-login-admin.php:43
23
- #: includes/class-theme-my-login-widget.php:24
24
- msgid "Theme My Login"
25
- msgstr "Theme My Login"
26
-
27
- #: admin/class-theme-my-login-admin.php:81
28
- msgid "ERROR: The module \"%1$s\" could not be activated (%2$s)."
29
- msgstr "FEHLER: Das Modul \"%1$s\" konnte nicht aktiviert werden (%2$s)."
30
-
31
- #: admin/class-theme-my-login-admin.php:103
32
- msgid "NOTICE:"
33
- msgstr "HINWEIS:"
34
-
35
- #: admin/class-theme-my-login-admin.php:104
36
- msgid "Now that you have activated Theme My Login, please <a href=\"%s\">visit the settings page</a> and familiarize yourself with all of the available options."
37
- msgstr "Theme My Login erfolgreich aktiviert. Bitte besuche die <a href=\"%s\">Einstellungs-Seite</a>, um dich mit den verfügbaren Optionen vertraut zu machen."
38
-
39
- #: admin/class-theme-my-login-admin.php:106
40
- msgid "Take me to the settings page"
41
- msgstr "Zur Einstellungs-Seite"
42
-
43
- #: admin/class-theme-my-login-admin.php:119
44
- msgid "You can now login with your e-mail address or username! Try it out!"
45
- msgstr "Du kannst dich jetzt mit deiner E-Mail oder deinem Benutzernamen anmelden. Probier es aus!"
46
-
47
- #: admin/class-theme-my-login-admin.php:120
48
- msgid "Theme My Login now utilizes a module system. Modules are similar to WordPress plugins. Each module extends the default functionality of Theme My Login. <a rel=\"tml-options\" href=\"#tml-options-modules\">Click here</a> to get started with modules now."
49
- msgstr "Theme My Login arbeitet jetzt mit einem Modul-System. Module sind so ähnlich wie WordPress-Plugins. Jedes Modul erweitert die Standard-Funktionalität von Theme My Login. <a rel=\"tml-options\" href=\"#tml-options-modules\">Klicke hier</a> um die Module einzurichten."
50
-
51
- #: admin/class-theme-my-login-admin.php:121
52
- msgid "Theme My Login now allows custom forms. You can create your own form template(s) by copying the default version(s) from \"theme-my-login/templates\" to your current theme directory. Try it out!"
53
- msgstr "Theme My Login erlaubt jetzt eigene Formulare. Du kannst deinen eigenen Formular-Templates anlegen, indem du die Default-Version(en) aus \"theme-my-login/templates\" in dein Theme-Verzeichnis kopierst. Probier es aus!"
54
-
55
- #: admin/class-theme-my-login-admin.php:122
56
- msgid "You can maintain your stylesheet changes between upgrades. Just simply copy the file \"theme-my-login/theme-my-login.css\" to your current theme directory and edit it as you please!"
57
- msgstr "Um Veränderungen zwischen Upgrades zu bewahren, lege die von dir angepasste \"theme-my-login.css\" einfach in dein aktuelles Theme-Verzeichnis."
58
-
59
- #: admin/class-theme-my-login-admin.php:123
60
- msgid "Theme My Login provides a shortcode that you can use within your posts with multiple parameters to customize the form. Visit the <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Theme My Login Documentation</a> for usage instructions."
61
- msgstr "Theme My Login stellt einen Shortcode bereit, mit dem du das Login-Formular bequem in beliebige Artikel integrieren kannst. Besuche die <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Theme My Login Dokumentation</a>für Tipps und Tricks zur Verwendung des Shortcodes und eine Übersicht der verfügbaren Paramenter."
62
-
63
- #: admin/class-theme-my-login-admin.php:124
64
- msgid "Jeff is <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">available for hire</a>!"
65
- msgstr "Jeff ist <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">für Projekte verfügbar</a>!"
66
-
67
- #: admin/class-theme-my-login-admin.php:128
68
- msgid "Did You Know?"
69
- msgstr "Wusstest du schon?"
70
-
71
- #: admin/class-theme-my-login-admin.php:177
72
- msgid "General"
73
- msgstr "Allgemein"
74
-
75
- #: admin/class-theme-my-login-admin.php:178
76
- msgid "Basic"
77
- msgstr "Basis"
78
-
79
- #: admin/class-theme-my-login-admin.php:179
80
- #: admin/class-theme-my-login-admin.php:319
81
- msgid "Modules"
82
- msgstr "Module"
83
-
84
- #: admin/class-theme-my-login-admin.php:181
85
- msgid "Permalinks"
86
- msgstr "Permalinks"
87
-
88
- #: admin/class-theme-my-login-admin.php:188
89
- msgid "Theme My Login Settings"
90
- msgstr "Theme-My-Login-Einstellungen"
91
-
92
- #: admin/class-theme-my-login-admin.php:194
93
- #: admin/class-theme-my-login-admin.php:254
94
- msgid "Save Changes"
95
- msgstr "Änderungen speichern"
96
-
97
- #: admin/class-theme-my-login-admin.php:271
98
- msgid "Page ID"
99
- msgstr "Seiten-ID"
100
-
101
- #: admin/class-theme-my-login-admin.php:274
102
- msgid "This should be the ID of the WordPress page that includes the [theme-my-login] shortcode. By default, this page is titled \"Login\"."
103
- msgstr "Dies sollte die ID der WordPress-Seite sein, die den [theme-my-login-Seite] Shortcode beinhaltet. Standardmäßig ist dies die Seite mit dem Titel \"Login\"."
104
-
105
- #: admin/class-theme-my-login-admin.php:278
106
- msgid "Pagelist"
107
- msgstr "Seiten-Liste"
108
-
109
- #: admin/class-theme-my-login-admin.php:281
110
- msgid "Show Page In Pagelist"
111
- msgstr "Zeige Seite auf Seiten-Liste"
112
-
113
- #: admin/class-theme-my-login-admin.php:282
114
- msgid "Enable this setting to add login/logout links to the pagelist generated by functions like wp_list_pages() and wp_page_menu()."
115
- msgstr "Aktivieren Sie diese Einstellung, um Login-/Logout-Links zur Seitenliste hinzuzufügen, die durch Funktionen wie wp_list_pages() erzeugt und wp_page_menu() worden sind."
116
-
117
- #: admin/class-theme-my-login-admin.php:286
118
- msgid "Stylesheet"
119
- msgstr "Stylesheet"
120
-
121
- #: admin/class-theme-my-login-admin.php:289
122
- msgid "Enable \"theme-my-login.css\""
123
- msgstr "Aktiviere \"theme-my-login.css\""
124
-
125
- #: admin/class-theme-my-login-admin.php:290
126
- msgid "In order to keep changes between upgrades, you can store your customized \"theme-my-login.css\" in your current theme directory."
127
- msgstr "Um Veränderungen zwischen Upgrades zu bewahren, können Sie Ihre individuelle \"theme-my-login.css\" in Ihr aktuelles Theme-Verzeichnis speichern."
128
-
129
- #: admin/class-theme-my-login-admin.php:294
130
- msgid "E-mail Login"
131
- msgstr "E-Mail Anmelden"
132
-
133
- #: admin/class-theme-my-login-admin.php:297
134
- msgid "Enable e-mail address login"
135
- msgstr "Login per E-Mail erlauben"
136
-
137
- #: admin/class-theme-my-login-admin.php:298
138
- msgid "Allows users to login using their e-mail address in place of their username."
139
- msgstr "Benutzern erlauben, sich mit ihrer E-Mail-Adresse statt ihrem Benutzername einzuloggen."
140
-
141
- #: admin/class-theme-my-login-admin.php:323
142
- msgid "Enable %s"
143
- msgstr "Aktiviere %s"
144
-
145
- #: admin/class-theme-my-login-admin.php:325
146
- msgid "No modules found."
147
- msgstr "Keine Module gefunden."
148
-
149
- #: admin/class-theme-my-login-admin.php:343
150
- #: includes/class-theme-my-login-widget.php:87
151
- msgid "Login"
152
- msgstr "Einloggen"
153
-
154
- #: admin/class-theme-my-login-admin.php:344
155
- #: includes/class-theme-my-login-template.php:141
156
- #: includes/class-theme-my-login-widget.php:87
157
- #: templates/register-form.php:25
158
- msgid "Register"
159
- msgstr "Registrieren"
160
-
161
- #: admin/class-theme-my-login-admin.php:345
162
- #: includes/class-theme-my-login-template.php:147
163
- #: includes/class-theme-my-login-widget.php:87
164
- msgid "Lost Password"
165
- msgstr "Kennwort vergessen"
166
-
167
- #: admin/class-theme-my-login-admin.php:475
168
- msgid "One of the modules is invalid."
169
- msgstr "Eines der Plugins ist ungültig."
170
-
171
- #: admin/class-theme-my-login-admin.php:531
172
- msgid "Invalid module path."
173
- msgstr "Ungültiger Plugin-Pfad."
174
-
175
- #: admin/class-theme-my-login-admin.php:533
176
- msgid "Module file does not exist."
177
- msgstr "Plugin-Datei existiert nicht."
178
-
179
- #: admin/class-theme-my-login-admin.php:537
180
- msgid "The module does not have a valid header."
181
- msgstr "Das Plugin verfügt über keinen gültigen Header."
182
-
183
- #: includes/class-theme-my-login-ms-signup.php:117
184
- msgctxt "Multisite active signup type"
185
- msgid "all"
186
- msgstr "Benutzern und Blogs"
187
-
188
- #: includes/class-theme-my-login-ms-signup.php:118
189
- msgctxt "Multisite active signup type"
190
- msgid "none"
191
- msgstr "keinen neuen Blogs oder Benutzern"
192
-
193
- #: includes/class-theme-my-login-ms-signup.php:119
194
- msgctxt "Multisite active signup type"
195
- msgid "blog"
196
- msgstr "Blogs"
197
-
198
- #: includes/class-theme-my-login-ms-signup.php:120
199
- msgctxt "Multisite active signup type"
200
- msgid "user"
201
- msgstr "Benutzern"
202
-
203
- #: includes/class-theme-my-login-ms-signup.php:123
204
- msgid "Greetings Site Administrator! You are currently allowing &#8220;%s&#8221; registrations. To change or disable registration go to your <a href=\"%s\">Options page</a>."
205
- msgstr "Hallo, Administrator! Du hast zurzeit das Registrieren von %s erlaubt. Um diese Einstellungen zu ändern, öffne die <a href=\"%s\">Blog-Netzwerk Einstellungen</a>."
206
-
207
- #: includes/class-theme-my-login-ms-signup.php:129
208
- msgid "Registration has been disabled."
209
- msgstr "Die Registrierung wurde deaktiviert."
210
-
211
- #: includes/class-theme-my-login-ms-signup.php:131
212
- msgid "You must first <a href=\"%s\">log in</a>, and then you can create a new site."
213
- msgstr "Du musst dich zuerst <a href=\"%s\">einloggen</a>, um einen Blog anlegen zu können."
214
-
215
- #: includes/class-theme-my-login-ms-signup.php:155
216
- msgid "%s is your new username"
217
- msgstr "%s ist dein neuer Benutzername"
218
-
219
- #: includes/class-theme-my-login-ms-signup.php:156
220
- msgid "But, before you can start using your new username, <strong>you must activate it</strong>."
221
- msgstr "Bevor du jedoch loslegen und ihn nutzen kannst, musst du ihn erst <strong>aktivieren</strong>."
222
-
223
- #: includes/class-theme-my-login-ms-signup.php:157
224
- msgid "Check your inbox at <strong>%1$s</strong> and click the link given."
225
- msgstr "Prüfe deine E-Mails der Adresse <strong>%1$s</strong> und klicke in der Registrierungsmail auf den aufgeführten Link."
226
-
227
- #: includes/class-theme-my-login-ms-signup.php:158
228
- msgid "If you do not activate your username within two days, you will have to sign up again."
229
- msgstr "Wenn du deinen Benutzernamen nicht innerhalb von zwei Tagen aktivierst, musst du dich erneut registrieren."
230
-
231
- #: includes/class-theme-my-login-ms-signup.php:162
232
- msgid "User registration has been disabled."
233
- msgstr "Die Benutzerregistrierung wurde deaktiviert."
234
-
235
- #: includes/class-theme-my-login-ms-signup.php:194
236
- msgid "Congratulations! Your new site, %s, is almost ready."
237
- msgstr "Herzlichen Glückwunsch! Deine neuer Blog – %s – ist beinahe fertig."
238
-
239
- #: includes/class-theme-my-login-ms-signup.php:196
240
- msgid "But, before you can start using your site, <strong>you must activate it</strong>."
241
- msgstr "Doch bevor du deinen Blog nutzen kannst, musst du ihn erst <strong>aktivieren</strong>."
242
-
243
- #: includes/class-theme-my-login-ms-signup.php:197
244
- msgid "Check your inbox at <strong>%s</strong> and click the link given."
245
- msgstr "Prüfe deine E-Mails der Adresse <strong>%s</strong> und klicke in der E-Mail auf den enthaltenen Link."
246
-
247
- #: includes/class-theme-my-login-ms-signup.php:198
248
- msgid "If you do not activate your site within two days, you will have to sign up again."
249
- msgstr "Falls du deinen Blog nicht innerhalb von zwei Tagen aktivierst, musst du ihn von neuem Registrieren."
250
-
251
- #: includes/class-theme-my-login-ms-signup.php:199
252
- msgid "Still waiting for your email?"
253
- msgstr "Wartest du noch auf deine Email?"
254
-
255
- #: includes/class-theme-my-login-ms-signup.php:201
256
- msgid "If you haven&#8217;t received your email yet, there are a number of things you can do:"
257
- msgstr "Falls du deine E-Mail noch nicht erhalten hast, kannst du folgende Dinge tun:"
258
-
259
- #: includes/class-theme-my-login-ms-signup.php:203
260
- msgid "Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control."
261
- msgstr "Bitte warte noch ein bisschen. Manchmal verzögert sich die Zustellung von E-Mails, ohne dass wir etwas dagegen tun können."
262
-
263
- #: includes/class-theme-my-login-ms-signup.php:204
264
- msgid "Check the junk or spam folder of your email client. Sometime emails wind up there by mistake."
265
- msgstr "Überprüfe deinen Junk/SPAM-Ordner deines E-Mail-Postfachs, da E-Mails manchmal fälschlicherweise als SPAM erkannt werden."
266
-
267
- #: includes/class-theme-my-login-ms-signup.php:205
268
- msgid "Have you entered your email correctly? You have entered %s, if it&#8217;s incorrect, you will not receive your email."
269
- msgstr "Hast du deine E-Mail-Adresse korrekt eingegeben? Falls die angegebene Adresse %s falsch ist, so wirst du keine E-Mail erhalten."
270
-
271
- #: includes/class-theme-my-login-ms-signup.php:211
272
- msgid "Site registration has been disabled."
273
- msgstr "Das Registrieren von Blogs ist deaktiviert."
274
-
275
- #: includes/class-theme-my-login-ms-signup.php:235
276
- msgid "The site %s is yours."
277
- msgstr "msgstr \"Hast du deine E-Mail-Adresse korrekt eingegeben? Falls die angegebene Adresse %s falsch ist, so wirst du keine E-Mail erhalten.\""
278
-
279
- #: includes/class-theme-my-login-ms-signup.php:237
280
- msgid "<a href=\"http://%1$s\">http://%2$s</a> is your new site. <a href=\"%3$s\">Log in</a> as &#8220;%4$s&#8221; using your existing password."
281
- msgstr "<a href=\"http://%1$s\">http://%2$s</a> ist dein neues Blog. <a href=\"%3$s\">Melde dich an</a> als &#8220;%4$s&#8221; und verwende dein angegebenes Passwort."
282
-
283
- #: includes/class-theme-my-login-ms-signup.php:253
284
- msgid "Sorry, new registrations are not allowed at this time."
285
- msgstr "Entschuldigung, aber Registrierungen sind zurzeit nicht möglich."
286
-
287
- #: includes/class-theme-my-login-ms-signup.php:255
288
- msgid "You are logged in already. No need to register again!"
289
- msgstr "Du bist bereits angemeldet und brauchst dich nicht erneut zu registrieren!"
290
-
291
- #: includes/class-theme-my-login-ms-signup.php:261
292
- msgid "<p><em>The site you were looking for, <strong>%s</strong> does not exist, but you can create it now!</em></p>"
293
- msgstr "<p><em>Der von dir gesuchte Blog <strong>%s</strong> existiert nicht, aber du kannst ihn selber anlegen.</em></p>"
294
-
295
- #: includes/class-theme-my-login-ms-signup.php:263
296
- msgid "<p><em>The site you were looking for, <strong>%s</strong>, does not exist.</em></p>"
297
- msgstr "<p><em>Der Blog nach dem du gesucht hast <strong>%s</strong>, existiert nicht.</em></p>"
298
-
299
- #: includes/class-theme-my-login-ms-signup.php:402
300
- msgid "Activation Key Required"
301
- msgstr "Der Aktivierungsschlüssel wird benötigt"
302
-
303
- #: includes/class-theme-my-login-ms-signup.php:405
304
- msgid "Activation Key:"
305
- msgstr "Aktivierungsschlüssel"
306
-
307
- #: includes/class-theme-my-login-ms-signup.php:409
308
- #: includes/class-theme-my-login-ms-signup.php:481
309
- msgid "Activate"
310
- msgstr "Aktivieren"
311
-
312
- #: includes/class-theme-my-login-ms-signup.php:421
313
- #: includes/class-theme-my-login-ms-signup.php:441
314
- msgid "Your account is now active!"
315
- msgstr "Dein Benutzerkonto ist nun aktiviert!"
316
-
317
- #: includes/class-theme-my-login-ms-signup.php:425
318
- msgid "Your account has been activated. You may now <a href=\"%1$s\">login</a> to the site using your chosen username of &#8220;%2$s&#8221;. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%4$s\">reset your password</a>."
319
- msgstr ""
320
- "Dein Benutzerkonto wurde aktiviert. Du kannst dich nun mit deinem Benutzernamen &#8220;%2$s&#8221; <a href=\"%1$s\">einloggen</a>.\n"
321
- "Bitte überprüfe dein E-Mail-Postfach mit der Adresse %3$s, um dein Passwort zu erhalten. \n"
322
- "Solltest du keine E-Mail bekommen haben, so überprüfe deinen Junk-/SPAM-Ordner, da die Mail fälschlicherweise als SPAM identifiziert worden sein könnte. \n"
323
- "Falls du in einer Stunde immer noch keine Mail bekommen hast, so kannst du auch dein <a href=\"%4$s\">Passwort zurücksetzen</a>. "
324
-
325
- #: includes/class-theme-my-login-ms-signup.php:427
326
- msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a>."
327
- msgstr ""
328
- "Dein Blog bei <a href=\"%1$s\">%2$s</a> ist nun aktiv. \n"
329
- "\"Du kannst dich jetzt mit deinem gewählten Benutzernamen &#8220;%3$s&#8221; einloggen. Bitte überprüfe deine E-Mails unter der Adresse %4$s für dein Passwort. Falls du noch keine Mail erhalten hast, überprüfe deinen Junk/SPAM-Ordner. Solltest du die E-Mail nicht innerhalb einer Stunde erhalten, so kannst du auch dein <a href=\"%5$s\">Passwort zurücksetzen</a>."
330
-
331
- #: includes/class-theme-my-login-ms-signup.php:432
332
- msgid "An error occurred during the activation"
333
- msgstr "Ein Fehler ist während der Anmeldung aufgetreten."
334
-
335
- #: includes/class-theme-my-login-ms-signup.php:444
336
- #: templates/ms-signup-user-form.php:16
337
- msgid "Username:"
338
- msgstr "Benutzername:"
339
-
340
- #: includes/class-theme-my-login-ms-signup.php:445
341
- #: modules/custom-passwords/custom-passwords.php:29
342
- #: modules/custom-passwords/custom-passwords.php:56
343
- msgid "Password:"
344
- msgstr "Kennwort:"
345
-
346
- #: includes/class-theme-my-login-ms-signup.php:449
347
- msgid "Your account is now activated. <a href=\"%1$s\">View your site</a> or <a href=\"%2$s\">Login</a>"
348
- msgstr "Dein Benutzerkonto ist jetzt aktiviert. <a href=\"%1$s\">Besuche deinen Blog</a> oder <a href=\"%2$s\">melde dich an</a>."
349
-
350
- #: includes/class-theme-my-login-ms-signup.php:451
351
- msgid "Your account is now activated. <a href=\"%1$s\">Login</a> or go back to the <a href=\"%2$s\">homepage</a>."
352
- msgstr "Dein Benutzerkonto ist jetzt aktiviert. <a href=\"%1$s\">Melde dich an</a> oder gehe zurück <a href=\"%2$s\">zur Startseite.</a>."
353
-
354
- #: includes/class-theme-my-login-template.php:137
355
- msgid "Welcome, %s"
356
- msgstr "Willkommen, %s"
357
-
358
- #: includes/class-theme-my-login-template.php:151
359
- #: includes/class-theme-my-login.php:540
360
- #: templates/login-form.php:28
361
- msgid "Log In"
362
- msgstr "Anmelden"
363
-
364
- #: includes/class-theme-my-login-template.php:315
365
- #: modules/custom-user-links/custom-user-links.php:82
366
- msgid "Dashboard"
367
- msgstr "Armaturenbrett"
368
-
369
- #: includes/class-theme-my-login-template.php:316
370
- #: modules/custom-user-links/custom-user-links.php:83
371
- #: modules/themed-profiles/admin/themed-profiles-admin.php:66
372
- msgid "Profile"
373
- msgstr "Profil"
374
-
375
- #: includes/class-theme-my-login-template.php:334
376
- #: modules/custom-redirection/custom-redirection.php:197
377
- msgid "Log out"
378
- msgstr "Ausloggen"
379
-
380
- #: includes/class-theme-my-login-template.php:363
381
- msgid "Register For This Site"
382
- msgstr "Registriere dich für diese Seite"
383
-
384
- #: includes/class-theme-my-login-template.php:366
385
- msgid "Please enter your username or email address. You will receive a link to create a new password via email."
386
- msgstr "Bitte gib deinen Benutzernamen oder deine E-Mail-Adresse hier ein. Du bekommst eine E-Mail zugesandt, mit deren Hilfe du ein neues Passwort erstellen kannst."
387
-
388
- #: includes/class-theme-my-login-template.php:369
389
- msgid "Enter your new password below."
390
- msgstr "Gib bitte hier dein neues Passwort ein."
391
-
392
- #: includes/class-theme-my-login-widget.php:23
393
- msgid "A login form for your blog."
394
- msgstr "Ein Login-Formular für Ihr Blog."
395
-
396
- #: includes/class-theme-my-login-widget.php:88
397
- msgid "Default Action"
398
- msgstr "Voreinstellung"
399
-
400
- #: includes/class-theme-my-login-widget.php:95
401
- msgid "Show When Logged In"
402
- msgstr "Anzeigen sofern angemeldet"
403
-
404
- #: includes/class-theme-my-login-widget.php:97
405
- msgid "Show Title"
406
- msgstr "Titel anzeigen"
407
-
408
- #: includes/class-theme-my-login-widget.php:99
409
- msgid "Show Login Link"
410
- msgstr "Login-Link anzeigen"
411
-
412
- #: includes/class-theme-my-login-widget.php:101
413
- msgid "Show Register Link"
414
- msgstr "Registrier-Link zeigen"
415
-
416
- #: includes/class-theme-my-login-widget.php:103
417
- msgid "Show Lost Password Link"
418
- msgstr "Passwort-vergessen-Link anzeigen"
419
-
420
- #: includes/class-theme-my-login-widget.php:105
421
- msgid "Show Gravatar"
422
- msgstr "Gravatar anzeigen"
423
-
424
- #: includes/class-theme-my-login-widget.php:106
425
- msgid "Gravatar Size"
426
- msgstr "Gravatar-Größe"
427
-
428
- #: includes/class-theme-my-login-widget.php:108
429
- msgid "Allow Registration"
430
- msgstr "Registrierung erlauben"
431
-
432
- #: includes/class-theme-my-login-widget.php:110
433
- msgid "Allow Password Recovery"
434
- msgstr "Kennwort-Neuerstellung erlauben"
435
-
436
- #: includes/class-theme-my-login.php:245
437
- msgid "Sorry, that key does not appear to be valid."
438
- msgstr "Diese Angabe scheint leider nicht richtig zu sein..."
439
-
440
- #: includes/class-theme-my-login.php:261
441
- msgid "The passwords do not match."
442
- msgstr "Die Passwörter stimmen nicht überein."
443
-
444
- #: includes/class-theme-my-login.php:367
445
- msgid "<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href=\"http://www.google.com/cookies.html\">enable cookies</a> to use WordPress."
446
- msgstr "<strong>Fehler:</strong> Cookies werden von deinem Browser blockiert oder nicht unterstützt. Um WordPress zu benutzen, musst du <a href='http://www.google.com/cookies.html'>Cookies erlauben</a>."
447
-
448
- #: includes/class-theme-my-login.php:371
449
- msgid "You are now logged out."
450
- msgstr "Sie sind nun abgemeldet."
451
-
452
- #: includes/class-theme-my-login.php:373
453
- msgid "User registration is currently not allowed."
454
- msgstr "Benutzer-Registrierung ist derzeit nicht erlaubt."
455
-
456
- #: includes/class-theme-my-login.php:375
457
- msgid "Check your e-mail for the confirmation link."
458
- msgstr "Überprüfen Sie Ihre E-Mails für die Bestätigung."
459
-
460
- #: includes/class-theme-my-login.php:377
461
- msgid "Your password has been reset."
462
- msgstr "Dein Passwort wurde zurückgesetzt."
463
-
464
- #: includes/class-theme-my-login.php:379
465
- msgid "Registration complete. Please check your e-mail."
466
- msgstr "Anmeldung abgeschlossen. Bitte überprüfen Sie Ihre E-Mails."
467
-
468
- #: includes/class-theme-my-login.php:381
469
- msgid "Your session has expired. Please log-in again."
470
- msgstr "Deine Session ist abgelaufen. Bitte melde dich erneut an."
471
-
472
- #: includes/class-theme-my-login.php:383
473
- msgid "Please log in to continue."
474
- msgstr "Bitte melde dich an, um fortzufahren."
475
-
476
- #: includes/class-theme-my-login.php:540
477
- msgid "Log Out"
478
- msgstr "Ausloggen"
479
-
480
- #: includes/class-theme-my-login.php:925
481
- msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
482
- msgstr "<strong>ACHTUNG</strong>: Bitte einen Benutzernamen oder eine E-Mail-Adresse angeben."
483
-
484
- #: includes/class-theme-my-login.php:929
485
- msgid "<strong>ERROR</strong>: There is no user registered with that email address."
486
- msgstr "<strong>FEHLER</strong>: Es ist niemand mit diesem Benutzernamen registriert."
487
-
488
- #: includes/class-theme-my-login.php:941
489
- msgid "<strong>ERROR</strong>: Invalid username or e-mail."
490
- msgstr "<strong>FEHLER</strong>: Benutzername oder E-Mail-Adresse sind nicht bekannt."
491
-
492
- #: includes/class-theme-my-login.php:955
493
- msgid "Password reset is not allowed for this user"
494
- msgstr "Ein Zurücksetzen des Passworts ist für diesen Nutzer nicht erlaubt."
495
-
496
- #: includes/class-theme-my-login.php:967
497
- msgid "Someone requested that the password be reset for the following account:"
498
- msgstr "Jemand hat das Zurücksetzen des Passworts für folgendes Benutzerkonto angefordert:"
499
-
500
- #: includes/class-theme-my-login.php:969
501
- #: modules/custom-email/custom-email.php:692
502
- #: modules/custom-email/custom-email.php:709
503
- #: modules/user-moderation/admin/user-moderation-admin.php:164
504
- #: modules/user-moderation/user-moderation.php:365
505
- msgid "Username: %s"
506
- msgstr "Benutzername: %s"
507
-
508
- #: includes/class-theme-my-login.php:970
509
- msgid "If this was a mistake, just ignore this email and nothing will happen."
510
- msgstr "Falls dies nicht beabsichtigt war, ignoriere einfach diese E-Mail. Es wird dann nichts passieren."
511
-
512
- #: includes/class-theme-my-login.php:971
513
- msgid "To reset your password, visit the following address:"
514
- msgstr "Um dein Passwort zurückzusetzen, besuche folgende Adresse:"
515
-
516
- #: includes/class-theme-my-login.php:982
517
- msgid "[%s] Password Reset"
518
- msgstr "[%s] Passwort-Erneuerung"
519
-
520
- #: includes/class-theme-my-login.php:988
521
- #: modules/user-moderation/admin/user-moderation-admin.php:53
522
- #: modules/user-moderation/admin/user-moderation-admin.php:174
523
- #: modules/user-moderation/admin/user-moderation-admin.php:210
524
- msgid "The e-mail could not be sent."
525
- msgstr "Die E-Mail konnte leider nicht versendet werden."
526
-
527
- #: includes/class-theme-my-login.php:988
528
- #: modules/user-moderation/admin/user-moderation-admin.php:53
529
- #: modules/user-moderation/admin/user-moderation-admin.php:174
530
- #: modules/user-moderation/admin/user-moderation-admin.php:210
531
- msgid "Possible reason: your host may have disabled the mail() function..."
532
- msgstr "Möglicher Grund: Der Server hat die mail() function nicht aktiviert."
533
-
534
- #: includes/class-theme-my-login.php:1011
535
- #: includes/class-theme-my-login.php:1014
536
- #: includes/class-theme-my-login.php:1019
537
- #: modules/user-moderation/user-moderation.php:238
538
- #: modules/user-moderation/user-moderation.php:241
539
- #: modules/user-moderation/user-moderation.php:246
540
- msgid "Invalid key"
541
- msgstr "Ungültige Eingabe"
542
-
543
- #: includes/class-theme-my-login.php:1059
544
- msgid "<strong>ERROR</strong>: Please enter a username."
545
- msgstr "<strong>ACHTUNG</strong>: Bitte Benutzernamen eingeben"
546
-
547
- #: includes/class-theme-my-login.php:1061
548
- msgid "<strong>ERROR</strong>: This username is invalid because it uses illegal characters. Please enter a valid username."
549
- msgstr "<strong>Fehler:</strong> Dieser Benutzername kann nicht verwendet werden da er ungültige Zeichen enthält. Bitte gib einen gültigen Benutzernamen an."
550
-
551
- #: includes/class-theme-my-login.php:1064
552
- msgid "<strong>ERROR</strong>: This username is already registered, please choose another one."
553
- msgstr "<strong>FEHLER</strong>: Dieser Benutzername ist bereits vergeben - bitte wählen Sie einen anderen."
554
-
555
- #: includes/class-theme-my-login.php:1069
556
- msgid "<strong>ERROR</strong>: Please type your e-mail address."
557
- msgstr "<strong>FEHLER</strong>: Bitte geben Sie Ihre E-Mail-Adresse an."
558
-
559
- #: includes/class-theme-my-login.php:1071
560
- msgid "<strong>ERROR</strong>: The email address isn&#8217;t correct."
561
- msgstr "<strong>FEHLER</strong>: Diese Adresse ist nicht gültig"
562
-
563
- #: includes/class-theme-my-login.php:1074
564
- msgid "<strong>ERROR</strong>: This email is already registered, please choose another one."
565
- msgstr "<strong>FEHLER</strong>: Diese E-Mail-Adresse wird bereits verwendet - bitte geben Sie eine andere an."
566
-
567
- #: includes/class-theme-my-login.php:1087
568
- msgid "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href=\"mailto:%s\">webmaster</a> !"
569
- msgstr "<strong>FEHLER</strong>: Sie konnten leider nicht angemeldet werden. Bitte kontaktieren Sie den <a href=\"mailto:%s\">Administrator</a>!"
570
-
571
- #: modules/custom-email/admin/custom-email-admin.php:46
572
- #: modules/custom-email/admin/custom-email-admin.php:265
573
- msgid "User Notification"
574
- msgstr "Benutzer-Benachrichtigung"
575
-
576
- #: modules/custom-email/admin/custom-email-admin.php:49
577
- msgid "This e-mail will be sent to a new user upon registration."
578
- msgstr "Diese E-Mail wird an einen neuen Nutzer bei der Registrierung zugesandt."
579
-
580
- #: modules/custom-email/admin/custom-email-admin.php:50
581
- #: modules/custom-email/admin/custom-email-admin.php:269
582
- msgid "Please be sure to include the variable %user_pass% if using default passwords or else the user will not know their password!"
583
- msgstr "Bitte achten Sie auf die Variable %user_pass% bei Verwendung von Standard-Kennwörter - anderenfalls kennen Benutzer ihr Passwort nicht!"
584
-
585
- #: modules/custom-email/admin/custom-email-admin.php:51
586
- #: modules/custom-email/admin/custom-email-admin.php:81
587
- #: modules/custom-email/admin/custom-email-admin.php:130
588
- #: modules/custom-email/admin/custom-email-admin.php:175
589
- #: modules/custom-email/admin/custom-email-admin.php:224
590
- #: modules/custom-email/admin/custom-email-admin.php:270
591
- #: modules/custom-email/admin/custom-email-admin.php:300
592
- #: modules/custom-email/admin/custom-email-admin.php:348
593
- msgid "If any field is left empty, the default will be used instead."
594
- msgstr "Sofern ein Feld leer bleibt, wird die Voreinstellung stattdessen verwendet."
595
-
596
- #: modules/custom-email/admin/custom-email-admin.php:54
597
- #: modules/custom-email/admin/custom-email-admin.php:87
598
- #: modules/custom-email/admin/custom-email-admin.php:133
599
- #: modules/custom-email/admin/custom-email-admin.php:181
600
- #: modules/custom-email/admin/custom-email-admin.php:227
601
- #: modules/custom-email/admin/custom-email-admin.php:273
602
- #: modules/custom-email/admin/custom-email-admin.php:306
603
- #: modules/custom-email/admin/custom-email-admin.php:351
604
- msgid "From Name"
605
- msgstr "Von (Name)"
606
-
607
- #: modules/custom-email/admin/custom-email-admin.php:57
608
- #: modules/custom-email/admin/custom-email-admin.php:90
609
- #: modules/custom-email/admin/custom-email-admin.php:136
610
- #: modules/custom-email/admin/custom-email-admin.php:184
611
- #: modules/custom-email/admin/custom-email-admin.php:230
612
- #: modules/custom-email/admin/custom-email-admin.php:276
613
- #: modules/custom-email/admin/custom-email-admin.php:309
614
- #: modules/custom-email/admin/custom-email-admin.php:354
615
- msgid "From E-mail"
616
- msgstr "Von E-Mail"
617
-
618
- #: modules/custom-email/admin/custom-email-admin.php:60
619
- #: modules/custom-email/admin/custom-email-admin.php:93
620
- #: modules/custom-email/admin/custom-email-admin.php:139
621
- #: modules/custom-email/admin/custom-email-admin.php:187
622
- #: modules/custom-email/admin/custom-email-admin.php:233
623
- #: modules/custom-email/admin/custom-email-admin.php:279
624
- #: modules/custom-email/admin/custom-email-admin.php:312
625
- #: modules/custom-email/admin/custom-email-admin.php:357
626
- msgid "E-mail Format"
627
- msgstr "E-Mail-Format"
628
-
629
- #: modules/custom-email/admin/custom-email-admin.php:62
630
- #: modules/custom-email/admin/custom-email-admin.php:95
631
- #: modules/custom-email/admin/custom-email-admin.php:141
632
- #: modules/custom-email/admin/custom-email-admin.php:189
633
- #: modules/custom-email/admin/custom-email-admin.php:235
634
- #: modules/custom-email/admin/custom-email-admin.php:281
635
- #: modules/custom-email/admin/custom-email-admin.php:314
636
- #: modules/custom-email/admin/custom-email-admin.php:359
637
- msgid "Plain Text"
638
- msgstr "Plain Text"
639
-
640
- #: modules/custom-email/admin/custom-email-admin.php:63
641
- #: modules/custom-email/admin/custom-email-admin.php:96
642
- #: modules/custom-email/admin/custom-email-admin.php:142
643
- #: modules/custom-email/admin/custom-email-admin.php:190
644
- #: modules/custom-email/admin/custom-email-admin.php:236
645
- #: modules/custom-email/admin/custom-email-admin.php:282
646
- #: modules/custom-email/admin/custom-email-admin.php:315
647
- #: modules/custom-email/admin/custom-email-admin.php:360
648
- msgid "HTML"
649
- msgstr "HTML"
650
-
651
- #: modules/custom-email/admin/custom-email-admin.php:66
652
- #: modules/custom-email/admin/custom-email-admin.php:99
653
- #: modules/custom-email/admin/custom-email-admin.php:145
654
- #: modules/custom-email/admin/custom-email-admin.php:193
655
- #: modules/custom-email/admin/custom-email-admin.php:239
656
- #: modules/custom-email/admin/custom-email-admin.php:285
657
- #: modules/custom-email/admin/custom-email-admin.php:318
658
- #: modules/custom-email/admin/custom-email-admin.php:363
659
- msgid "Subject"
660
- msgstr "Gegenstand"
661
-
662
- #: modules/custom-email/admin/custom-email-admin.php:69
663
- #: modules/custom-email/admin/custom-email-admin.php:102
664
- #: modules/custom-email/admin/custom-email-admin.php:148
665
- #: modules/custom-email/admin/custom-email-admin.php:196
666
- #: modules/custom-email/admin/custom-email-admin.php:242
667
- #: modules/custom-email/admin/custom-email-admin.php:288
668
- #: modules/custom-email/admin/custom-email-admin.php:321
669
- #: modules/custom-email/admin/custom-email-admin.php:366
670
- msgid "Message"
671
- msgstr "Nachricht"
672
-
673
- #: modules/custom-email/admin/custom-email-admin.php:72
674
- #: modules/custom-email/admin/custom-email-admin.php:105
675
- #: modules/custom-email/admin/custom-email-admin.php:151
676
- #: modules/custom-email/admin/custom-email-admin.php:199
677
- #: modules/custom-email/admin/custom-email-admin.php:245
678
- #: modules/custom-email/admin/custom-email-admin.php:291
679
- #: modules/custom-email/admin/custom-email-admin.php:324
680
- #: modules/custom-email/admin/custom-email-admin.php:369
681
- msgid "Available Variables"
682
- msgstr "Verfügbare Variablen"
683
-
684
- #: modules/custom-email/admin/custom-email-admin.php:77
685
- #: modules/custom-email/admin/custom-email-admin.php:171
686
- #: modules/custom-email/admin/custom-email-admin.php:296
687
- msgid "Admin Notification"
688
- msgstr "Admin-Benachrichtigung"
689
-
690
- #: modules/custom-email/admin/custom-email-admin.php:80
691
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon new user registration."
692
- msgstr "Diese E-Mail wird an die unten stehende(n) Adresse oder Adressen (mehrere Adressen können durch Komma getrennt werden), nachdem sich ein neuer Nutzer registriert hat."
693
-
694
- #: modules/custom-email/admin/custom-email-admin.php:84
695
- #: modules/custom-email/admin/custom-email-admin.php:178
696
- #: modules/custom-email/admin/custom-email-admin.php:303
697
- msgid "To"
698
- msgstr "An"
699
-
700
- #: modules/custom-email/admin/custom-email-admin.php:128
701
- msgid "This e-mail will be sent to a user when they attempt to recover their password."
702
- msgstr "Diese E-Mail wird an einen Benutzer gesendet, sofern versucht wird, das Kennwort zurückzusetzen."
703
-
704
- #: modules/custom-email/admin/custom-email-admin.php:129
705
- msgid "Please be sure to include the variable %reseturl% or else the user will not be able to recover their password!"
706
- msgstr "Bitte achten Sie auf die Variable %reseturl% - sonst sind Benutzer nicht in der Lage, ihr Kennwort zu erneuern!"
707
-
708
- #: modules/custom-email/admin/custom-email-admin.php:174
709
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon user password change."
710
- msgstr "Diese E-Mail wird an die unten stehende(n) Adresse oder Adressen (mehrere Adressen können durch Komma getrennt werden), nachdem ein Nutzer sein Kennwort geändert hat."
711
-
712
- #: modules/custom-email/admin/custom-email-admin.php:201
713
- #: modules/custom-email/admin/custom-email-admin.php:326
714
- msgid "Disable Admin Notification"
715
- msgstr "Deaktivieren Admin-Benachrichtigung"
716
-
717
- #: modules/custom-email/admin/custom-email-admin.php:222
718
- msgid "This e-mail will be sent to a new user upon registration when \"E-mail Confirmation\" is checked for \"User Moderation\"."
719
- msgstr "Diese E-Mail wird an einen neuen Benutzer bei der Anmeldung geschickt, sobald \"E-Mail-Bestätigung\" für \"Benutzer-Moderation\" überprüft ist."
720
-
721
- #: modules/custom-email/admin/custom-email-admin.php:223
722
- msgid "Please be sure to include the variable %activateurl% or else the user will not be able to activate their account!"
723
- msgstr "Bitte achten Sie auf die Variable %activateurl% - sonst können Benutzer ihr Konto nicht aktivieren!"
724
-
725
- #: modules/custom-email/admin/custom-email-admin.php:268
726
- msgid "This e-mail will be sent to a new user upon admin approval when \"Admin Approval\" is checked for \"User Moderation\"."
727
- msgstr "Diese E-Mail wird an einen neuen Benutzer nach Admin-Genehmigung geschickt, sofern \"Admin Approval\" für \"User Moderation\" ausgewählt ist."
728
-
729
- #: modules/custom-email/admin/custom-email-admin.php:299
730
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below upon user registration when \"Admin Approval\" is checked for \"User Moderation\"."
731
- msgstr "Diese E-Mail wird an die unten stehende(n) Adresse oder Adressen (mehrere Adressen können durch Komma getrennt werden), nachdem sich ein neuer Nutzer registriert hat."
732
-
733
- #: modules/custom-email/admin/custom-email-admin.php:347
734
- msgid "This e-mail will be sent to a user who is deleted/denied when \"Admin Approval\" is checked for \"User Moderation\" and the user's role is \"Pending\"."
735
- msgstr "Diese E-Mail wird an einen Benutzer gesendet, der gelöscht/verweigert worden ist, sofern \"Admin Approval\" für \\\"User Moderation\" und die Rolle des Benutzers auf \"Pending\" gesetzt ist."
736
-
737
- #: modules/custom-email/admin/custom-email-admin.php:390
738
- #: templates/profile-form.php:143
739
- #: templates/register-form.php:16
740
- msgid "E-mail"
741
- msgstr "E-Mail"
742
-
743
- #: modules/custom-email/admin/custom-email-admin.php:391
744
- msgid "New User"
745
- msgstr "Neuer Benutzer"
746
-
747
- #: modules/custom-email/admin/custom-email-admin.php:392
748
- msgid "Retrieve Password"
749
- msgstr "Kennwort abrufen"
750
-
751
- #: modules/custom-email/admin/custom-email-admin.php:393
752
- #: templates/resetpass-form.php:26
753
- msgid "Reset Password"
754
- msgstr "Kennwort zurücksetzen"
755
-
756
- #: modules/custom-email/admin/custom-email-admin.php:395
757
- msgid "User Activation"
758
- msgstr "Benutzer-Aktivierung"
759
-
760
- #: modules/custom-email/admin/custom-email-admin.php:396
761
- msgid "User Approval"
762
- msgstr "Benutzer-Bestätigung"
763
-
764
- #: modules/custom-email/admin/custom-email-admin.php:397
765
- msgid "User Denial"
766
- msgstr "Benutzer-Sperre"
767
-
768
- #: modules/custom-email/custom-email.php:691
769
- msgid "New user registration on your site %s:"
770
- msgstr "Neue Benutzerregistrierung in deinem Blog %s:"
771
-
772
- #: modules/custom-email/custom-email.php:693
773
- #: modules/user-moderation/user-moderation.php:366
774
- msgid "E-mail: %s"
775
- msgstr "E-Mail:% s"
776
-
777
- #: modules/custom-email/custom-email.php:695
778
- msgid "[%s] New User Registration"
779
- msgstr "[%s] Neuregistrierung"
780
-
781
- #: modules/custom-email/custom-email.php:710
782
- #: modules/user-moderation/admin/user-moderation-admin.php:165
783
- msgid "Password: %s"
784
- msgstr "Kennwort: %s"
785
-
786
- #: modules/custom-email/custom-email.php:713
787
- msgid "[%s] Your username and password"
788
- msgstr "[%s] Ihr Benutzername und Passwort"
789
-
790
- #: modules/custom-email/custom-email.php:745
791
- msgid "[%s] Password Lost/Changed"
792
- msgstr "[%s] Kennwort verloren bzw. modifiziert"
793
-
794
- #: modules/custom-email/custom-email.php:746
795
- msgid "Password Lost and Changed for user: %s"
796
- msgstr "Kennwort vergessen und modifiziert für Benutzer:% s"
797
-
798
- #: modules/custom-passwords/custom-passwords.php:31
799
- #: modules/custom-passwords/custom-passwords.php:63
800
- msgid "Confirm Password:"
801
- msgstr "Kennwort bestätigen:"
802
-
803
- #: modules/custom-passwords/custom-passwords.php:61
804
- msgid "(Must be at least 6 characters.)"
805
- msgstr "(mindestens 6 Zeichen)"
806
-
807
- #: modules/custom-passwords/custom-passwords.php:65
808
- msgid "Confirm that you've typed your password correctly."
809
- msgstr "Bestätige, dass du dein Kennwort korrekt eingetippt hast."
810
-
811
- #: modules/custom-passwords/custom-passwords.php:103
812
- msgid "<strong>ERROR</strong>: Please enter a password."
813
- msgstr "<strong>FEHLER:</strong> Bitte geben Sie ein Kennwort ein."
814
-
815
- #: modules/custom-passwords/custom-passwords.php:106
816
- msgid "<strong>ERROR</strong>: Your passwords do not match."
817
- msgstr "<strong>FEHLER:</strong> Ihre Passwörter stimmen nicht überein."
818
-
819
- #: modules/custom-passwords/custom-passwords.php:109
820
- msgid "<strong>ERROR</strong>: Your password must be at least 6 characters in length."
821
- msgstr "<strong>FEHLER:</strong> Ihr Kennwort muss mindestens 6 Zeichen lang sein."
822
-
823
- #: modules/custom-passwords/custom-passwords.php:230
824
- msgid "Registration complete. You may now log in."
825
- msgstr "Anmeldung abgeschlossen. Sie können sich nun anmelden."
826
-
827
- #: modules/custom-redirection/custom-redirection.php:156
828
- msgid "Redirection"
829
- msgstr "Umleitung"
830
-
831
- #: modules/custom-redirection/custom-redirection.php:185
832
- msgid "Log in"
833
- msgstr "Einloggen"
834
-
835
- #: modules/custom-redirection/custom-redirection.php:187
836
- #: modules/custom-redirection/custom-redirection.php:199
837
- msgid "Default"
838
- msgstr "Voreinstellung"
839
-
840
- #: modules/custom-redirection/custom-redirection.php:188
841
- msgid "Check this option to send the user to their WordPress Dashboard/Profile."
842
- msgstr "Aktivieren Sie diese Option, um den Benutzer zum Dashboard bzw. Profil zu verweisen."
843
-
844
- #: modules/custom-redirection/custom-redirection.php:189
845
- #: modules/custom-redirection/custom-redirection.php:201
846
- msgid "Referer"
847
- msgstr "Referer"
848
-
849
- #: modules/custom-redirection/custom-redirection.php:190
850
- msgid "Check this option to send the user back to the page they were visiting before logging in."
851
- msgstr "Aktivieren Sie diese Option, um den Benutzer zurück auf die Seite zu leiten, auf der er vor dem Anmeldeversuch war."
852
-
853
- #: modules/custom-redirection/custom-redirection.php:193
854
- #: modules/custom-redirection/custom-redirection.php:205
855
- msgid "Check this option to send the user to a custom location, specified by the textbox above."
856
- msgstr "Aktivieren Sie diese Option, um den Benutzer zu einem benutzerdefinierten Speicherort zu verweisen (spezifiziert durch die Textbox oben)."
857
-
858
- #: modules/custom-redirection/custom-redirection.php:200
859
- msgid "Check this option to send the user to the log in page, displaying a message that they have successfully logged out."
860
- msgstr "Aktivieren Sie diese Option, um den Benutzer auf die Login-Seite zu verweisen, verbunden mit der Nachricht, sich erfolgreich abgemeldet zu haben."
861
-
862
- #: modules/custom-redirection/custom-redirection.php:202
863
- msgid "Check this option to send the user back to the page they were visiting before logging out. (Note: If the previous page being visited was an admin page, this can have unexpected results.)"
864
- msgstr "Aktivieren Sie diese Option, um den Benutzer zurück auf die Seite zu verweisen, bevor er versucht hat, sich abzumelden. (Hinweis: Wenn die vorherige Seite eine Admin-Seite war, kann dies unerwartete Folgen haben.)"
865
-
866
- #: modules/custom-user-links/admin/custom-user-links-admin.php:140
867
- msgid "User Links"
868
- msgstr "Benutzer-Links"
869
-
870
- #: modules/custom-user-links/admin/custom-user-links-admin.php:232
871
- #: modules/custom-user-links/admin/custom-user-links-admin.php:255
872
- #: modules/custom-user-links/admin/custom-user-links-admin.php:300
873
- msgid "Title"
874
- msgstr "Titel"
875
-
876
- #: modules/custom-user-links/admin/custom-user-links-admin.php:233
877
- #: modules/custom-user-links/admin/custom-user-links-admin.php:256
878
- #: modules/custom-user-links/admin/custom-user-links-admin.php:304
879
- msgid "URL"
880
- msgstr "URL"
881
-
882
- #: modules/custom-user-links/admin/custom-user-links-admin.php:250
883
- msgid "Add New link:"
884
- msgstr "Neuen Link hinzufügen:"
885
-
886
- #: modules/custom-user-links/admin/custom-user-links-admin.php:266
887
- msgid "Add link"
888
- msgstr "Link hinzufügen"
889
-
890
- #: modules/custom-user-links/admin/custom-user-links-admin.php:306
891
- msgid "Delete"
892
- msgstr "Löschen"
893
-
894
- #: modules/custom-user-links/admin/custom-user-links-admin.php:307
895
- msgid "Update"
896
- msgstr "Aktualisieren"
897
-
898
- #: modules/security/admin/security-admin.php:32
899
- #: modules/security/admin/security-admin.php:35
900
- #: modules/user-moderation/admin/user-moderation-admin.php:34
901
- #: modules/user-moderation/admin/user-moderation-admin.php:44
902
- msgid "You can&#8217;t edit that user."
903
- msgstr "Sie können diesen Benutzer nicht bearbeiten."
904
-
905
- #: modules/security/admin/security-admin.php:67
906
- msgid "User locked."
907
- msgstr "Nutzer gesperrt."
908
-
909
- #: modules/security/admin/security-admin.php:69
910
- msgid "User unlocked."
911
- msgstr "Nutzer entsperrt."
912
-
913
- #: modules/security/admin/security-admin.php:92
914
- msgid "Unlock"
915
- msgstr "Entsperren"
916
-
917
- #: modules/security/admin/security-admin.php:94
918
- msgid "Lock"
919
- msgstr "Sperren"
920
-
921
- #: modules/security/admin/security-admin.php:113
922
- msgid "Security"
923
- msgstr "Sicherheit"
924
-
925
- #: modules/security/admin/security-admin.php:132
926
- msgid "Private Site"
927
- msgstr "Private Seite"
928
-
929
- #: modules/security/admin/security-admin.php:135
930
- msgid "Require users to be logged in to view site"
931
- msgstr "Nur angemeldete Nutzer können die Seite sehen"
932
-
933
- #: modules/security/admin/security-admin.php:139
934
- msgid "Login Attempts"
935
- msgstr "Anmeldeversuche"
936
-
937
- #: modules/security/admin/security-admin.php:144
938
- msgid "minute(s)"
939
- msgstr "Minute(n)"
940
-
941
- #: modules/security/admin/security-admin.php:145
942
- msgid "hour(s)"
943
- msgstr "Stunde(n)"
944
-
945
- #: modules/security/admin/security-admin.php:146
946
- msgid "day(s)"
947
- msgstr "Tag(e)"
948
-
949
- #: modules/security/admin/security-admin.php:169
950
- msgid "After %1$s failed login attempts within %2$s %3$s, lockout the account for %4$s %5$s."
951
- msgstr "Nach %1$s fehlgeschlagenen Login-Versuchen innerhalb von %2$s %3$s, sperre das Konto für %4$s %5$s."
952
-
953
- #: modules/security/security.php:64
954
- #: modules/security/security.php:90
955
- msgid "<strong>ERROR</strong>: This account has been locked because of too many failed login attempts. You may try again in %s."
956
- msgstr "<strong>FEHLER</strong>: Dieser Account ist wegen zu vieler fehlgeschlagener Login-Versuche gesperrt worden. Du kannst es in %s erneut versuchen."
957
-
958
- #: modules/security/security.php:66
959
- msgid "<strong>ERROR</strong>: This account has been locked."
960
- msgstr "<strong>FEHLER:</strong> Dieses Konto wurde gesperrt."
961
-
962
- #: modules/security/security.php:126
963
- msgid "Failed Login Attempts"
964
- msgstr "Fehlgeschlagene Anmeldeversuche"
965
-
966
- #: modules/security/security.php:130
967
- msgid "IP Address"
968
- msgstr "IP-Adresse"
969
-
970
- #: modules/security/security.php:131
971
- msgid "Date"
972
- msgstr "Datum"
973
-
974
- #: modules/security/security.php:134
975
- msgid "Y/m/d g:i:s A"
976
- msgstr "d.m.Y H:i"
977
-
978
- #: modules/security/security.php:139
979
- msgid "%s ago"
980
- msgstr "vor %s"
981
-
982
- #: modules/security/security.php:141
983
- msgid "Y/m/d"
984
- msgstr "d.m.Y"
985
-
986
- #: modules/themed-profiles/admin/themed-profiles-admin.php:23
987
- #: modules/themed-profiles/admin/themed-profiles-admin.php:42
988
- msgid "Themed Profiles"
989
- msgstr "Nutzerprofile im Stil des Themes"
990
-
991
- #: modules/themed-profiles/admin/themed-profiles-admin.php:51
992
- msgid "Restrict Admin Access"
993
- msgstr "Zugriff auf Adminbereich einschränken"
994
-
995
- #: modules/themed-profiles/themed-profiles.php:123
996
- #: templates/profile-form.php:182
997
- #: templates/resetpass-form.php:19
998
- msgid "Strength indicator"
999
- msgstr "Stärke-Indikator"
1000
-
1001
- #: modules/themed-profiles/themed-profiles.php:124
1002
- msgid "Very weak"
1003
- msgstr "Sehr schwach"
1004
-
1005
- #: modules/themed-profiles/themed-profiles.php:125
1006
- msgid "Weak"
1007
- msgstr "Schwach"
1008
-
1009
- #. translators: password strength
1010
- #: modules/themed-profiles/themed-profiles.php:127
1011
- msgctxt "password strength"
1012
- msgid "Medium"
1013
- msgstr "Mittel"
1014
-
1015
- #: modules/themed-profiles/themed-profiles.php:128
1016
- msgid "Strong"
1017
- msgstr "Stark"
1018
-
1019
- #: modules/themed-profiles/themed-profiles.php:138
1020
- msgid "You do not have permission to edit this user."
1021
- msgstr "Sie haben keine Berechtigung, um diesen Benutzer zu bearbeiten."
1022
-
1023
- #: modules/themed-profiles/themed-profiles.php:154
1024
- msgid "Profile updated."
1025
- msgstr "Profil aktualisiert."
1026
-
1027
- #: modules/themed-profiles/themed-profiles.php:243
1028
- msgid "Your Profile"
1029
- msgstr "Ihr Profil"
1030
-
1031
- #: modules/user-moderation/admin/user-moderation-admin.php:75
1032
- msgid "User approved."
1033
- msgstr "Benutzer freigegeben."
1034
-
1035
- #: modules/user-moderation/admin/user-moderation-admin.php:77
1036
- msgid "Activation sent."
1037
- msgstr "Aktivierung versendet."
1038
-
1039
- #: modules/user-moderation/admin/user-moderation-admin.php:105
1040
- msgid "Resend Activation"
1041
- msgstr "Aktivierung erneut versenden"
1042
-
1043
- #: modules/user-moderation/admin/user-moderation-admin.php:110
1044
- msgid "Approve"
1045
- msgstr "Freigeben"
1046
-
1047
- #: modules/user-moderation/admin/user-moderation-admin.php:163
1048
- msgid "You have been approved access to %s"
1049
- msgstr "Sie haben jetzt Zugang zu %s"
1050
-
1051
- #: modules/user-moderation/admin/user-moderation-admin.php:168
1052
- msgid "[%s] Registration Approved"
1053
- msgstr "[%s] Registrierung bestätigt"
1054
-
1055
- #: modules/user-moderation/admin/user-moderation-admin.php:203
1056
- msgid "You have been denied access to %s"
1057
- msgstr "Sie haben keinen Zugang zu %s"
1058
-
1059
- #: modules/user-moderation/admin/user-moderation-admin.php:204
1060
- msgid "[%s] Registration Denied"
1061
- msgstr "[%s] Registrierung verweigert"
1062
-
1063
- #: modules/user-moderation/admin/user-moderation-admin.php:226
1064
- msgid "Moderation"
1065
- msgstr "Moderation"
1066
-
1067
- #: modules/user-moderation/admin/user-moderation-admin.php:242
1068
- msgid "User Moderation"
1069
- msgstr "Benutzer-Moderation"
1070
-
1071
- #: modules/user-moderation/admin/user-moderation-admin.php:245
1072
- msgid "None"
1073
- msgstr "Keine"
1074
-
1075
- #: modules/user-moderation/admin/user-moderation-admin.php:246
1076
- msgid "Check this option to require no moderation."
1077
- msgstr "Aktivieren Sie diese Option, um keine Moderation zu verlangen."
1078
-
1079
- #: modules/user-moderation/admin/user-moderation-admin.php:248
1080
- msgid "E-mail Confirmation"
1081
- msgstr "E-Mail-Bestätigung"
1082
-
1083
- #: modules/user-moderation/admin/user-moderation-admin.php:249
1084
- msgid "Check this option to require new users to confirm their e-mail address before they may log in."
1085
- msgstr "Aktivieren Sie diese Option, um zu verlangen, dass neue Benutzer ihre E-Mail-Adresse bestätigen müssen, bevor sie sich anmelden können."
1086
-
1087
- #: modules/user-moderation/admin/user-moderation-admin.php:251
1088
- msgid "Admin Approval"
1089
- msgstr "Admin-Freigabe"
1090
-
1091
- #: modules/user-moderation/admin/user-moderation-admin.php:252
1092
- msgid "Check this option to require new users to be approved by an administrator before they may log in."
1093
- msgstr "Aktivieren Sie diese Option, um zu verlangen, dass neue Benutzer von einem Administrator genehmigt werden, bevor sie sich anmelden können."
1094
-
1095
- #: modules/user-moderation/admin/user-moderation-admin.php:269
1096
- msgid "User Moderation is not currently compatible with multisite."
1097
- msgstr "Benutzer-Registrierung ist derzeit nicht mit Multisite kompatibel."
1098
-
1099
- #: modules/user-moderation/user-moderation.php:163
1100
- msgid "<strong>ERROR</strong>: You have not yet confirmed your e-mail address. <a href=\"%s\">Resend activation</a>?"
1101
- msgstr "<strong>FEHLER:</strong> Sie haben Ihre E-Mail-Adresse noch nicht bestätigt. <a href=\"%s\">Aktivierung erneut versenden</a>?"
1102
-
1103
- #: modules/user-moderation/user-moderation.php:166
1104
- msgid "<strong>ERROR</strong>: Your registration has not yet been approved."
1105
- msgstr "<strong>FEHLER:</strong> Ihre Registrierung ist noch nicht genehmigt worden."
1106
-
1107
- #: modules/user-moderation/user-moderation.php:328
1108
- msgid "[%s] Activate Your Account"
1109
- msgstr "[%s] Aktivieren Sie Ihr Konto"
1110
-
1111
- #: modules/user-moderation/user-moderation.php:329
1112
- msgid "Thanks for registering at %s! To complete the activation of your account please click the following link: "
1113
- msgstr "Vielen Dank für Ihre Registrierung bei %s! Zur vollständigen Aktivierung Ihres Kontos klicken Sie bitte auf den folgenden Link:"
1114
-
1115
- #: modules/user-moderation/user-moderation.php:362
1116
- msgid "[%s] New User Awaiting Approval"
1117
- msgstr "[%s] Neuer Benutzer wartet auf die Genehmigung"
1118
-
1119
- #: modules/user-moderation/user-moderation.php:364
1120
- msgid "New user requires approval on your blog %s:"
1121
- msgstr "Neuer Benutzer bedarf der Zustimmung auf Ihrem Blog %s:"
1122
-
1123
- #: modules/user-moderation/user-moderation.php:367
1124
- msgid "To approve or deny this user:"
1125
- msgstr "Um diesen Benutzer zu genehmigen oder zu verweigern:"
1126
-
1127
- #: modules/user-moderation/user-moderation.php:388
1128
- msgid "Your registration was successful but you must now confirm your email address before you can log in. Please check your email and click on the link provided."
1129
- msgstr "Ihre Anmeldung war erfolgreich, aber zuvor bestätigen Sie bitte Ihre E-Mail-Adresse, bevor Sie sich anmelden. Überprüfen Sie bitte Ihre E-Mail und klicken Sie auf den Link."
1130
-
1131
- #: modules/user-moderation/user-moderation.php:390
1132
- msgid "Your registration was successful but you must now be approved by an administrator before you can log in. You will be notified by e-mail once your account has been reviewed."
1133
- msgstr "Ihre Anmeldung war erfolgreich, allerdings muss Ihr Konto zuvor von einem Administrator freigeschaltet werden, bevor Sie sich anmelden können. Ihre Benachrichtigung erhalten Sie anschließend per E-Mail."
1134
-
1135
- #: modules/user-moderation/user-moderation.php:393
1136
- msgid "Your account has been activated. You may now log in."
1137
- msgstr "Ihr Konto wurde aktiviert. Sie können sich nun anmelden."
1138
-
1139
- #: modules/user-moderation/user-moderation.php:395
1140
- msgid "Your account has been activated. Please check your e-mail for your password."
1141
- msgstr "Ihr Konto wurde aktiviert. Bitte überprüfen Sie Ihre E-Mails nach Ihrem Kennwort."
1142
-
1143
- #: modules/user-moderation/user-moderation.php:397
1144
- msgid "<strong>ERROR</strong>: Sorry, that key does not appear to be valid."
1145
- msgstr "<strong>FEHLER:</strong> Schade, dieser Wert scheint nicht gültig zu sein."
1146
-
1147
- #: modules/user-moderation/user-moderation.php:400
1148
- msgid "<strong>ERROR</strong>: Sorry, the activation e-mail could not be sent."
1149
- msgstr "<strong>FEHLER:</strong> Verzeihung, die Aktivierungsmail konnte nicht gesendet werden."
1150
-
1151
- #: modules/user-moderation/user-moderation.php:402
1152
- msgid "The activation e-mail has been sent to the e-mail address with which you registered. Please check your email and click on the link provided."
1153
- msgstr "Die Aktivierungsmail wurde an die E-Mail-Adresse gesendet, unter der du dich registriert hast. Bitte prüfe deine Mail und klicke auf den Link, den wir dir gesendet haben."
1154
-
1155
- #: templates/login-form.php:12
1156
- #: templates/profile-form.php:91
1157
- #: templates/register-form.php:12
1158
- msgid "Username"
1159
- msgstr "Benutzername"
1160
-
1161
- #: templates/login-form.php:16
1162
- msgid "Password"
1163
- msgstr "Kennwort"
1164
-
1165
- #: templates/login-form.php:25
1166
- msgid "Remember Me"
1167
- msgstr "Eingabe merken"
1168
-
1169
- #: templates/lostpassword-form.php:12
1170
- msgid "Username or E-mail:"
1171
- msgstr "Benutzername oder E-Mail:"
1172
-
1173
- #: templates/lostpassword-form.php:20
1174
- msgid "Get New Password"
1175
- msgstr "Neues Kennwort anfordern"
1176
-
1177
- #: templates/ms-signup-another-blog-form.php:7
1178
- msgid "Get <em>another</em> %s site in seconds"
1179
- msgstr "Erstelle einen <em>weiteren</em> %s Blog in Sekunden"
1180
-
1181
- #: templates/ms-signup-another-blog-form.php:10
1182
- msgid "There was a problem, please correct the form below and try again."
1183
- msgstr "Es trat ein Fehler auf. Bitte korrigiere die Eingaben und versuche es noch einmal."
1184
-
1185
- #: templates/ms-signup-another-blog-form.php:13
1186
- msgid "Welcome back, %s. By filling out the form below, you can <strong>add another site to your account</strong>. There is no limit to the number of sites you can have, so create to your heart&#8217;s content, but write responsibly!"
1187
- msgstr "Willkommen zurück, %s. In dem du dieses Formular ausfüllst, kannst du einen <strong>weiteren Blog</strong> für dein Benutzerkonto anlegen. Es gibt hierfür keine Begrenzung, also zögere nicht."
1188
-
1189
- #: templates/ms-signup-another-blog-form.php:18
1190
- msgid "Sites you are already a member of:"
1191
- msgstr "Du bist bereits Mitglied der folgenden Blogs:"
1192
-
1193
- #: templates/ms-signup-another-blog-form.php:27
1194
- msgid "If you&#8217;re not going to use a great site domain, leave it for a new user. Now have at it!"
1195
- msgstr "Suche dir nun einen weiteren Blog-Namen und Blog-Titel aus."
1196
-
1197
- #: templates/ms-signup-another-blog-form.php:33
1198
- #: templates/ms-signup-blog-form.php:17
1199
- msgid "Site Name:"
1200
- msgstr "Name des Blogs:"
1201
-
1202
- #: templates/ms-signup-another-blog-form.php:35
1203
- #: templates/ms-signup-blog-form.php:19
1204
- msgid "Site Domain:"
1205
- msgstr "Blog-Domain:"
1206
-
1207
- #: templates/ms-signup-another-blog-form.php:52
1208
- #: templates/ms-signup-blog-form.php:36
1209
- msgid "sitename"
1210
- msgstr "Blogname"
1211
-
1212
- #: templates/ms-signup-another-blog-form.php:54
1213
- #: templates/ms-signup-blog-form.php:38
1214
- msgid "domain"
1215
- msgstr "Domain"
1216
-
1217
- #: templates/ms-signup-another-blog-form.php:55
1218
- #: templates/ms-signup-blog-form.php:39
1219
- msgid "Your address will be %s."
1220
- msgstr "Deine Blog-Adresse wird %s lauten."
1221
-
1222
- #: templates/ms-signup-another-blog-form.php:55
1223
- #: templates/ms-signup-blog-form.php:39
1224
- msgid "Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!"
1225
- msgstr "Sie muss aus mindestens vier Zeichen bestehen, wobei du bitte nur Zahlen und Buchstaben verwenden solltest. Prüfe deine Eingabe sorgfältig, da diese Angabe später nicht mehr geändert werden kann."
1226
-
1227
- #: templates/ms-signup-another-blog-form.php:58
1228
- #: templates/ms-signup-blog-form.php:42
1229
- msgid "Site Title:"
1230
- msgstr "Blog-Titel:"
1231
-
1232
- #: templates/ms-signup-another-blog-form.php:66
1233
- #: templates/ms-signup-blog-form.php:50
1234
- msgid "Privacy:"
1235
- msgstr "Datenschutz:"
1236
-
1237
- #: templates/ms-signup-another-blog-form.php:67
1238
- #: templates/ms-signup-blog-form.php:51
1239
- msgid "Allow my site to appear in search engines like Google, Technorati, and in public listings around this network."
1240
- msgstr "Ich möchte, dass mein Blog in Suchmaschinen wie Google oder Technorati und öffentlichen Listen dieses Blog-Netzwerks erscheint."
1241
-
1242
- #: templates/ms-signup-another-blog-form.php:71
1243
- #: templates/ms-signup-blog-form.php:55
1244
- msgid "Yes"
1245
- msgstr "Ja"
1246
-
1247
- #: templates/ms-signup-another-blog-form.php:75
1248
- #: templates/ms-signup-blog-form.php:59
1249
- msgid "No"
1250
- msgstr "Nein"
1251
-
1252
- #: templates/ms-signup-another-blog-form.php:85
1253
- msgid "Create Site"
1254
- msgstr "Blog erstellen"
1255
-
1256
- #: templates/ms-signup-blog-form.php:69
1257
- msgid "Signup"
1258
- msgstr "Registrieren"
1259
-
1260
- #: templates/ms-signup-user-form.php:7
1261
- msgid "Get your own %s account in seconds"
1262
- msgstr "Registriere dich in nur wenigen Sekunden bei %s."
1263
-
1264
- #: templates/ms-signup-user-form.php:22
1265
- msgid "(Must be at least 4 characters, letters and numbers only.)"
1266
- msgstr "(Es müssen mindestens 4 Zeichen sein, bitte nur Buchstaben und Zahlen.)"
1267
-
1268
- #: templates/ms-signup-user-form.php:24
1269
- msgid "Email&nbsp;Address:"
1270
- msgstr "E-Mail-Addresse:"
1271
-
1272
- #: templates/ms-signup-user-form.php:30
1273
- msgid "We send your registration email to this address. (Double-check your email address before continuing.)"
1274
- msgstr "Wir verschicken deine Registrierungs-E-Mail an diese Adresse. (Überprüfe also nochmal deine E-Mail-Adresse bevor du fortfährst.)"
1275
-
1276
- #: templates/ms-signup-user-form.php:47
1277
- msgid "Gimme a site!"
1278
- msgstr "Gib mir einen Blog!"
1279
-
1280
- #: templates/ms-signup-user-form.php:50
1281
- msgid "Just a username, please."
1282
- msgstr "Ich möche nur einen Benutzernamen, keinen Blog."
1283
-
1284
- #: templates/ms-signup-user-form.php:54
1285
- msgid "Next"
1286
- msgstr "Nächster Schritt"
1287
-
1288
- #: templates/profile-form.php:26
1289
- msgid "Personal Options"
1290
- msgstr "Persönliche Optionen"
1291
-
1292
- #: templates/profile-form.php:31
1293
- msgid "Visual Editor"
1294
- msgstr "Visueller Editor"
1295
-
1296
- #: templates/profile-form.php:32
1297
- msgid "Disable the visual editor when writing"
1298
- msgstr "Beim Schreiben den WYSIWYG-Editor <u>nicht</u> benutzen"
1299
-
1300
- #: templates/profile-form.php:37
1301
- msgid "Admin Color Scheme"
1302
- msgstr "Farbschema verwalten"
1303
-
1304
- #: templates/profile-form.php:44
1305
- msgid "Keyboard Shortcuts"
1306
- msgstr "Tastaturkürzel"
1307
-
1308
- #: templates/profile-form.php:45
1309
- msgid "Enable keyboard shortcuts for comment moderation."
1310
- msgstr "Tastaturkürzel für die Kommentarmoderation aktivieren."
1311
-
1312
- #: templates/profile-form.php:45
1313
- msgid "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">More information</a>"
1314
- msgstr "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">More information (engl.)</a>"
1315
-
1316
- #: templates/profile-form.php:51
1317
- #: templates/profile-form.php:54
1318
- msgid "Toolbar"
1319
- msgstr "Werkzeugleiste"
1320
-
1321
- #: templates/profile-form.php:57
1322
- msgid "Show Toolbar when viewing site"
1323
- msgstr "Werkzeuge für mich auf der Website anzeigen"
1324
-
1325
- #: templates/profile-form.php:63
1326
- #: templates/profile-form.php:66
1327
- msgid "Show Admin Bar"
1328
- msgstr "Zeige Adminleiste"
1329
-
1330
- #. translators: Show admin bar when viewing site
1331
- #: templates/profile-form.php:69
1332
- msgid "when viewing site"
1333
- msgstr "auf der Website"
1334
-
1335
- #. translators: Show admin bar in dashboard
1336
- #: templates/profile-form.php:74
1337
- msgid "in dashboard"
1338
- msgstr "im Administrationsbereich"
1339
-
1340
- #: templates/profile-form.php:87
1341
- msgid "Name"
1342
- msgstr "Name"
1343
-
1344
- #: templates/profile-form.php:92
1345
- msgid "Your username cannot be changed."
1346
- msgstr "Ihr Benutzername kann nicht geändert werden."
1347
-
1348
- #: templates/profile-form.php:96
1349
- msgid "First name"
1350
- msgstr "Vorname"
1351
-
1352
- #: templates/profile-form.php:101
1353
- msgid "Last name"
1354
- msgstr "Nachname"
1355
-
1356
- #: templates/profile-form.php:106
1357
- msgid "Nickname"
1358
- msgstr "Spitzname"
1359
-
1360
- #: templates/profile-form.php:106
1361
- #: templates/profile-form.php:143
1362
- msgid "(required)"
1363
- msgstr "(erforderlich)"
1364
-
1365
- #: templates/profile-form.php:111
1366
- msgid "Display name publicly as"
1367
- msgstr "Namensanzeige öffentlich als"
1368
-
1369
- #: templates/profile-form.php:139
1370
- msgid "Contact Info"
1371
- msgstr "Kontakt-Information"
1372
-
1373
- #: templates/profile-form.php:148
1374
- msgid "Website"
1375
- msgstr "Webseite"
1376
-
1377
- #: templates/profile-form.php:165
1378
- msgid "About Yourself"
1379
- msgstr "Über mich"
1380
-
1381
- #: templates/profile-form.php:169
1382
- msgid "Biographical Info"
1383
- msgstr "Biographische Informationen"
1384
-
1385
- #: templates/profile-form.php:171
1386
- msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
1387
- msgstr "Teilen Sie einige biografische Informationen zur Ergänzung Ihres Profils mit. Diese können öffentlich angezeigt werden."
1388
-
1389
- #: templates/profile-form.php:179
1390
- msgid "New Password"
1391
- msgstr "Neues Kennwort"
1392
-
1393
- #: templates/profile-form.php:180
1394
- msgid "If you would like to change the password type a new one. Otherwise leave this blank."
1395
- msgstr "Wenn Sie das Kennwort möchten, geben Sie bitte ein neues ein. Andernfalls lassen Sie dieses Feld leer."
1396
-
1397
- #: templates/profile-form.php:181
1398
- msgid "Type your new password again."
1399
- msgstr "Geben Sie das neue Kennwort erneut ein."
1400
-
1401
- #: templates/profile-form.php:183
1402
- #: templates/resetpass-form.php:20
1403
- msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
1404
- msgstr "Hinweis: Das Passwort sollte mindestens sieben Zeichen lang sein. Um es stärker zu machen, verwenden Sie Groß-und Kleinbuchstaben, Ziffern und Sonderzeichen wie ! \" ? $% ^ &amp;)."
1405
-
1406
- #: templates/profile-form.php:197
1407
- msgid "Additional Capabilities"
1408
- msgstr "Zusätzliche Funktionen"
1409
-
1410
- #: templates/profile-form.php:216
1411
- msgid "Update Profile"
1412
- msgstr "Profil aktualisieren"
1413
-
1414
- #: templates/register-form.php:23
1415
- msgid "A password will be e-mailed to you."
1416
- msgstr "Ein Kennwort wird per E-Mail zugeschickt."
1417
-
1418
- #: templates/resetpass-form.php:12
1419
- msgid "New password"
1420
- msgstr "Neues Passwort"
1421
-
1422
- #: templates/resetpass-form.php:16
1423
- msgid "Confirm new password"
1424
- msgstr "Neues Passwort bestätigen"
1425
-
1426
- #. Plugin URI of the plugin/theme
1427
- msgid "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/"
1428
- msgstr "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/"
1429
-
1430
- #. Description of the plugin/theme
1431
- msgid "Themes the WordPress login, registration and forgot password pages according to your theme."
1432
- msgstr "Passt das WordPress Login, die Registrierungs- und die Passwort-Vergessen-Seite an dein Theme an."
1433
-
1434
- #. Author of the plugin/theme
1435
- msgid "Jeff Farthing"
1436
- msgstr "Jeff Farthing"
1437
-
1438
- #. Author URI of the plugin/theme
1439
- msgid "http://www.jfarthing.com"
1440
- msgstr "http://www.jfarthing.com"
1441
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
language/theme-my-login-el.mo DELETED
Binary file
language/theme-my-login-el.po DELETED
@@ -1,1434 +0,0 @@
1
- # Copyright (C) 2012 Theme My Login
2
- # This file is distributed under the same license as the Theme My Login package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Theme My Login 6.2\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/theme-my-login\n"
7
- "POT-Creation-Date: 2012-03-08 16:19:05+00:00\n"
8
- "PO-Revision-Date: 2012-03-22 09:10-0500\n"
9
- "Last-Translator: Jeff Farthing <jeff@jfarthing.com>\n"
10
- "Language-Team: Wordpress Greek Translations by PowerSupport <translations@wordpress-greek-translations.co.cc>\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-Language: Greek\n"
15
- "X-Poedit-Country: GREECE\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
-
18
- #. #-#-#-#-# plugin.pot (Theme My Login 6.2) #-#-#-#-#
19
- #. Plugin Name of the plugin/theme
20
- #: admin/class-theme-my-login-admin.php:42
21
- #: admin/class-theme-my-login-admin.php:43
22
- #: includes/class-theme-my-login-widget.php:24
23
- msgid "Theme My Login"
24
- msgstr "Theme My Login - Ελληνική Έκδοση"
25
-
26
- #: admin/class-theme-my-login-admin.php:81
27
- msgid "ERROR: The module \"%1$s\" could not be activated (%2$s)."
28
- msgstr "ΣΦΑΛΜΑ: Το πρόσθετο \"%1$s\" δεν ενεργοποιήθηκε (%2$s)."
29
-
30
- #: admin/class-theme-my-login-admin.php:103
31
- msgid "NOTICE:"
32
- msgstr "ΑΝΑΚΟΙΝΩΣΗ:"
33
-
34
- #: admin/class-theme-my-login-admin.php:104
35
- msgid "Now that you have activated Theme My Login, please <a href=\"%s\">visit the settings page</a> and familiarize yourself with all of the available options."
36
- msgstr "Τώρα που ενεργοποιήσατε το Theme My Login, παρακαλώ <a href=\"%s\">επισκεφθείτε την σελίδα ρυθμίσεων</a> και εξοικειωθείτε με όλες τις διαθέσιμες επιλογές."
37
-
38
- #: admin/class-theme-my-login-admin.php:106
39
- msgid "Take me to the settings page"
40
- msgstr "Μεταφορά στην σελίδα ρυθμίσεων"
41
-
42
- #: admin/class-theme-my-login-admin.php:119
43
- msgid "You can now login with your e-mail address or username! Try it out!"
44
- msgstr "Μπορείτε τώρα να συνδεθείτε με το όνομα χρήστη ή το email σας! Δοκιμάστε το!"
45
-
46
- #: admin/class-theme-my-login-admin.php:120
47
- msgid "Theme My Login now utilizes a module system. Modules are similar to WordPress plugins. Each module extends the default functionality of Theme My Login. <a rel=\"tml-options\" href=\"#tml-options-modules\">Click here</a> to get started with modules now."
48
- msgstr "Το Theme My Login χρησιμοποιεί τώρα ένα σύστημα πρόσθετων. Τα πρόσθετα αυτά μοιάζουν με τα πρόσθετα του Wordpress.Κάθε πρόσθετο επεκτείνει την λειτουργικότητα του Theme My Login. <a rel=\"tml-options\" href=\"#tml-modules\">Κάντε Κλικ Εδώ</a> για να ξεκινήσετε με τα πρόσθετα τώρα."
49
-
50
- #: admin/class-theme-my-login-admin.php:121
51
- msgid "Theme My Login now allows custom forms. You can create your own form template(s) by copying the default version(s) from \"theme-my-login/templates\" to your current theme directory. Try it out!"
52
- msgstr "Το Theme My Login τώρα επιτρέπει προσαρμοσμένες φόρμεσ. Μπορείτε να δημιουργήσετε το δικόσας πρότυπο φόρμας αντιγράφοντας την προεπιλεγμενη φόρμα από το \"theme-my-login/templates\" στον φάκλεο του θέματος που χρησιμοποιείτε τώρα. Δοκιμάστε το."
53
-
54
- #: admin/class-theme-my-login-admin.php:122
55
- msgid "You can maintain your stylesheet changes between upgrades. Just simply copy the file \"theme-my-login/theme-my-login.css\" to your current theme directory and edit it as you please!"
56
- msgstr "Μπορείτε να διατηρήσετε τις αλλάγες του stylesheet που έχετε κάνει σε τυχόν αναβαθμίσεις. Απλά αντιγράψτε το αρχείο \"theme-my-login/theme-my-login.css\" στον φάκελο του θέματος που χρησιμοποιείτε και επεξεργαστείτε το!"
57
-
58
- #: admin/class-theme-my-login-admin.php:123
59
- msgid "Theme My Login provides a shortcode that you can use within your posts with multiple parameters to customize the form. Visit the <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Theme My Login Documentation</a> for usage instructions."
60
- msgstr "Το Theme My Login σας παρέχει ένα shortcode το οποίο μπορείτε να χρησιμοποιήσετε στα δημοσιεύματα σας με πολλαπλές παράμετρους για την προσαρμογή της φόρμας σας. Επισκεφθείτε το <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Theme My Login Documentation</a> για οδηγίες χρήσης."
61
-
62
- #: admin/class-theme-my-login-admin.php:124
63
- msgid "Jeff is <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">available for hire</a>!"
64
- msgstr "Jeff is <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">available for hire</a>!"
65
-
66
- #: admin/class-theme-my-login-admin.php:128
67
- msgid "Did You Know?"
68
- msgstr "Ξέρατε;"
69
-
70
- #: admin/class-theme-my-login-admin.php:177
71
- msgid "General"
72
- msgstr "Γενικά"
73
-
74
- #: admin/class-theme-my-login-admin.php:178
75
- msgid "Basic"
76
- msgstr "Βασικά"
77
-
78
- #: admin/class-theme-my-login-admin.php:179
79
- #: admin/class-theme-my-login-admin.php:319
80
- msgid "Modules"
81
- msgstr "Πρόσθετα"
82
-
83
- #: admin/class-theme-my-login-admin.php:181
84
- msgid "Permalinks"
85
- msgstr "Μόνιμοι σύνδεσμοι"
86
-
87
- #: admin/class-theme-my-login-admin.php:188
88
- msgid "Theme My Login Settings"
89
- msgstr "Ρυθμίσεις του Theme My Login"
90
-
91
- #: admin/class-theme-my-login-admin.php:194
92
- #: admin/class-theme-my-login-admin.php:254
93
- msgid "Save Changes"
94
- msgstr "Αποθήκευση Αλλαγών"
95
-
96
- #: admin/class-theme-my-login-admin.php:271
97
- msgid "Page ID"
98
- msgstr "ID Σελίδας"
99
-
100
- #: admin/class-theme-my-login-admin.php:274
101
- msgid "This should be the ID of the WordPress page that includes the [theme-my-login] shortcode. By default, this page is titled \"Login\"."
102
- msgstr "Αυτό πρέπει να είναι το ID της σελίδας του Wordpress που περιέχει το shortcode [theme-my-login]. Η προεπιλεγμένη σελίδα έχει τίτλο \"Login\"."
103
-
104
- #: admin/class-theme-my-login-admin.php:278
105
- msgid "Pagelist"
106
- msgstr "Λίστα Σελίδων"
107
-
108
- #: admin/class-theme-my-login-admin.php:281
109
- msgid "Show Page In Pagelist"
110
- msgstr "Εμφάνιση Σελίδας στην Λίστα Σελίδων"
111
-
112
- #: admin/class-theme-my-login-admin.php:282
113
- msgid "Enable this setting to add login/logout links to the pagelist generated by functions like wp_list_pages() and wp_page_menu()."
114
- msgstr "Ενεργοποιήστε αυτή την επιλογή για να προστεθούν σύνδεσμοι των σελίδων συνδεσης και αποσύνδεσης στις λίστες σελίδων που δημιουργούνται με functions όπως wp_list_pages() και wp_page_menu()."
115
-
116
- #: admin/class-theme-my-login-admin.php:286
117
- msgid "Stylesheet"
118
- msgstr "Stylesheet"
119
-
120
- #: admin/class-theme-my-login-admin.php:289
121
- msgid "Enable \"theme-my-login.css\""
122
- msgstr "Ενεροποίηση του \"theme-my-login.css\""
123
-
124
- #: admin/class-theme-my-login-admin.php:290
125
- msgid "In order to keep changes between upgrades, you can store your customized \"theme-my-login.css\" in your current theme directory."
126
- msgstr "Για να μην χαθούν οι αλλαγές που κάνετε σε τυχόν αναβάθμιση, μπορείτε να αποθηκεύσετε το επεξεργασμένο \"theme-my-login.css\" στον φάκελο του θέματος που χρησιμοποιέιτε."
127
-
128
- #: admin/class-theme-my-login-admin.php:294
129
- msgid "E-mail Login"
130
- msgstr "Email σύνδεση"
131
-
132
- #: admin/class-theme-my-login-admin.php:297
133
- msgid "Enable e-mail address login"
134
- msgstr "Ενεργοποίηση σύνδεσης με διεύθυνση email"
135
-
136
- #: admin/class-theme-my-login-admin.php:298
137
- msgid "Allows users to login using their e-mail address in place of their username."
138
- msgstr "Επιτρέψτε στους χρήστες βα συνδέονται με τη διεύθυνση email τους στη θέση του ονόματος χρήστη."
139
-
140
- #: admin/class-theme-my-login-admin.php:323
141
- msgid "Enable %s"
142
- msgstr "Ενεργοποήση %s"
143
-
144
- #: admin/class-theme-my-login-admin.php:325
145
- msgid "No modules found."
146
- msgstr "Δεν βρέθηκαν πρόσθετα."
147
-
148
- #: admin/class-theme-my-login-admin.php:343
149
- #: includes/class-theme-my-login-widget.php:87
150
- msgid "Login"
151
- msgstr "Σύνδεση"
152
-
153
- #: admin/class-theme-my-login-admin.php:344
154
- #: includes/class-theme-my-login-template.php:141
155
- #: includes/class-theme-my-login-widget.php:87
156
- #: templates/register-form.php:25
157
- msgid "Register"
158
- msgstr "Εγγραφή"
159
-
160
- #: admin/class-theme-my-login-admin.php:345
161
- #: includes/class-theme-my-login-template.php:147
162
- #: includes/class-theme-my-login-widget.php:87
163
- msgid "Lost Password"
164
- msgstr "Ξέχασα τον Κωδικό μου"
165
-
166
- #: admin/class-theme-my-login-admin.php:475
167
- msgid "One of the modules is invalid."
168
- msgstr "Ένα από τα πρόσθετα είναι άκυρο."
169
-
170
- #: admin/class-theme-my-login-admin.php:531
171
- msgid "Invalid module path."
172
- msgstr "Άκυρη διαδρομή πρόσθετου."
173
-
174
- #: admin/class-theme-my-login-admin.php:533
175
- msgid "Module file does not exist."
176
- msgstr "Το αρχείο του πρόσθετου δεν υπάρχει."
177
-
178
- #: admin/class-theme-my-login-admin.php:537
179
- msgid "The module does not have a valid header."
180
- msgstr "Το πρόσθετο δεν έχει έγκυρο Header."
181
-
182
- #: includes/class-theme-my-login-ms-signup.php:117
183
- msgctxt "Multisite active signup type"
184
- msgid "all"
185
- msgstr "όλα"
186
-
187
- #: includes/class-theme-my-login-ms-signup.php:118
188
- msgctxt "Multisite active signup type"
189
- msgid "none"
190
- msgstr "κανένα"
191
-
192
- #: includes/class-theme-my-login-ms-signup.php:119
193
- msgctxt "Multisite active signup type"
194
- msgid "blog"
195
- msgstr "ιστολόγιο"
196
-
197
- #: includes/class-theme-my-login-ms-signup.php:120
198
- msgctxt "Multisite active signup type"
199
- msgid "user"
200
- msgstr "χρήστης"
201
-
202
- #: includes/class-theme-my-login-ms-signup.php:123
203
- msgid "Greetings Site Administrator! You are currently allowing &#8220;%s&#8221; registrations. To change or disable registration go to your <a href=\"%s\">Options page</a>."
204
- msgstr "Χαιρετίσματα διαχειριστή! Αυτή τη στιγμή επιτρέπετε &#8220;%s&#8221; εγγραφές. Για να αλλάξετε ή να απενεργοποιήσετε τις εγγραφές πηγαίνετε <a href=\"%s\">στη σελίδα επιλογών</a>."
205
-
206
- #: includes/class-theme-my-login-ms-signup.php:129
207
- msgid "Registration has been disabled."
208
- msgstr "Η εγγραφή έχει απενεργοποιηθεί."
209
-
210
- #: includes/class-theme-my-login-ms-signup.php:131
211
- msgid "You must first <a href=\"%s\">log in</a>, and then you can create a new site."
212
- msgstr "Πρέπει πρώτα να <a href=\"%s\">συνδεθείτε</a>, και μετά μπορείτε να δημιουργήσετε έναν νέο ιστοχώρο."
213
-
214
- #: includes/class-theme-my-login-ms-signup.php:155
215
- msgid "%s is your new username"
216
- msgstr "%s είναι το όνομα χρήστη"
217
-
218
- #: includes/class-theme-my-login-ms-signup.php:156
219
- msgid "But, before you can start using your new username, <strong>you must activate it</strong>."
220
- msgstr "Αλλά, πριν χρησιμοποιήσετε το όνομα χρήστη, <strong>θα πρέπει να το ενεργοποιήσετε</strong>."
221
-
222
- #: includes/class-theme-my-login-ms-signup.php:157
223
- msgid "Check your inbox at <strong>%1$s</strong> and click the link given."
224
- msgstr "Ελέγξτε τα εισερχόμενά σας <strong>%1$s</strong> και πατήστε τον σύνδεσμο."
225
-
226
- #: includes/class-theme-my-login-ms-signup.php:158
227
- msgid "If you do not activate your username within two days, you will have to sign up again."
228
- msgstr "Αν δεν ενεργοποιήσετε το λογαριασμό σας μέσα σε δύο ημέρες, θα πρέπει να επανεγγραφείτε."
229
-
230
- #: includes/class-theme-my-login-ms-signup.php:162
231
- msgid "User registration has been disabled."
232
- msgstr "Οι εγγραφές νέων χρηστών δεν επιτρέπονται."
233
-
234
- #: includes/class-theme-my-login-ms-signup.php:194
235
- msgid "Congratulations! Your new site, %s, is almost ready."
236
- msgstr "Συγχαρητήρια! Ο νέος ιστοχώρος σας, %s, είναι σχεδόν έτοιμος."
237
-
238
- #: includes/class-theme-my-login-ms-signup.php:196
239
- msgid "But, before you can start using your site, <strong>you must activate it</strong>."
240
- msgstr "Αλλά, πριν ξεκινήσετε να χρησιμοποιείτε τον ιστόχωρό σας, <strong>πρέπει να τον ενεργοποιήσετε</strong>."
241
-
242
- #: includes/class-theme-my-login-ms-signup.php:197
243
- msgid "Check your inbox at <strong>%s</strong> and click the link given."
244
- msgstr "Ελέγξτε τα εισερχόμενά σας <strong>%s</strong> και πατήστε στον σύνδεσμο που σας δίνεται."
245
-
246
- #: includes/class-theme-my-login-ms-signup.php:198
247
- msgid "If you do not activate your site within two days, you will have to sign up again."
248
- msgstr "Αν δεν ενεργοποιήσετε τον ιστόχωρό σας μέσα σε δύο ημέρες, θα πρέπει να ξανακάνετε εγγραφή."
249
-
250
- #: includes/class-theme-my-login-ms-signup.php:199
251
- msgid "Still waiting for your email?"
252
- msgstr "Ακόμα περιμένετε το email;"
253
-
254
- #: includes/class-theme-my-login-ms-signup.php:201
255
- msgid "If you haven&#8217;t received your email yet, there are a number of things you can do:"
256
- msgstr "Αν δεν έχετε λάβει ακόμα το email, Μπορείτε να κάνετε τα εξής:"
257
-
258
- #: includes/class-theme-my-login-ms-signup.php:203
259
- msgid "Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control."
260
- msgstr "Περιμένετε λίγο ακόμα. Μερικές φορές η παράδοση καθυστερεί για λόγους εκτός του δικού μας ελέγχου."
261
-
262
- #: includes/class-theme-my-login-ms-signup.php:204
263
- msgid "Check the junk or spam folder of your email client. Sometime emails wind up there by mistake."
264
- msgstr "Ελέγξτε τα ανεπιθύμητα ή τον κάδο απορριμάτων του email σας. Μερικές φορές καταλήγουν εκεί από λάθος."
265
-
266
- #: includes/class-theme-my-login-ms-signup.php:205
267
- msgid "Have you entered your email correctly? You have entered %s, if it&#8217;s incorrect, you will not receive your email."
268
- msgstr "Εισάγατε τη διεύθυνσής σας σωστά; Εισάγατε %s, αν είναι λάθος δε θα λάβετε το email."
269
-
270
- #: includes/class-theme-my-login-ms-signup.php:211
271
- msgid "Site registration has been disabled."
272
- msgstr "Οι εγγραφές νέων ιστοχώρων δεν επιτρέπονται."
273
-
274
- #: includes/class-theme-my-login-ms-signup.php:235
275
- msgid "The site %s is yours."
276
- msgstr "Ο ιστοχώρος %s ε'ιναι δικό σας."
277
-
278
- #: includes/class-theme-my-login-ms-signup.php:237
279
- msgid "<a href=\"http://%1$s\">http://%2$s</a> is your new site. <a href=\"%3$s\">Log in</a> as &#8220;%4$s&#8221; using your existing password."
280
- msgstr "<a href=\"http://%1$s\">http://%2$s</a> είναι ο νέος σας ιστοχώρος. <a href=\"%3$s\">Συνδεθείτε</a> ως &#8220;%4$s&#8221; χρησιμοποιώντας τον κωδικό σας."
281
-
282
- #: includes/class-theme-my-login-ms-signup.php:253
283
- msgid "Sorry, new registrations are not allowed at this time."
284
- msgstr "Οι εγγραφές νέων χρηστών δεν επιτρέπονται."
285
-
286
- #: includes/class-theme-my-login-ms-signup.php:255
287
- msgid "You are logged in already. No need to register again!"
288
- msgstr "Είστε ήδη συνδεδεμένος. Δε χρειάζεται να κάνετε εγγραφή!"
289
-
290
- #: includes/class-theme-my-login-ms-signup.php:261
291
- msgid "<p><em>The site you were looking for, <strong>%s</strong> does not exist, but you can create it now!</em></p>"
292
- msgstr "<p><em>Ο ιστοχώρος που ψάχνετε, <strong>%s</strong> δεν υπάρχει, αλλά μπορείτε να τον δημιουργήσετε!</em></p>"
293
-
294
- #: includes/class-theme-my-login-ms-signup.php:263
295
- msgid "<p><em>The site you were looking for, <strong>%s</strong>, does not exist.</em></p>"
296
- msgstr "<p><em>Ο ιστοχώρος που ψάχνετε, <strong>%s</strong>, δεν υπάρχει.</em></p>"
297
-
298
- #: includes/class-theme-my-login-ms-signup.php:402
299
- msgid "Activation Key Required"
300
- msgstr "Το κλειδί ενεργοποίησης είναι απαραίτητο."
301
-
302
- #: includes/class-theme-my-login-ms-signup.php:405
303
- msgid "Activation Key:"
304
- msgstr "Κλειδί ενεργοποίησης:"
305
-
306
- #: includes/class-theme-my-login-ms-signup.php:409
307
- #: includes/class-theme-my-login-ms-signup.php:481
308
- msgid "Activate"
309
- msgstr "Ενεργοποίηση"
310
-
311
- #: includes/class-theme-my-login-ms-signup.php:421
312
- #: includes/class-theme-my-login-ms-signup.php:441
313
- msgid "Your account is now active!"
314
- msgstr "Ο λογαριασμός σας ενεργοποιήθηκε!"
315
-
316
- #: includes/class-theme-my-login-ms-signup.php:425
317
- msgid "Your account has been activated. You may now <a href=\"%1$s\">login</a> to the site using your chosen username of &#8220;%2$s&#8221;. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%4$s\">reset your password</a>."
318
- msgstr "Ο λογαριασμός σας ενεργοποιήθηκε. Μπορείτε να <a href=\"%1$s\">συνδεθείτε</a> στον ιστοχώρο σαςμε το όνομα χρήστη &#8220;%2$s&#8221;. Παρακαλώ ελέγξτετα εισερμχόμενά σας %3$s για τον κωδικό σας και τις οδηγίες σύνδεσης. Αν δεν έχετε λάβει email, ελέγξτε τον κάδο απορριμάτων. Αν δεν λάβετε email στην επόμενη ώρα, μπορείτε να <a href=\"%4$s\">επαναφέρετε τον κωδικό σας</a>."
319
-
320
- #: includes/class-theme-my-login-ms-signup.php:427
321
- msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a>."
322
- msgstr "Ο ιστοχώρος σας <a href=\"%1$s\">%2$s</a> είναι ενεργοποιημένος. Μπορείτε να συνδεθείτε χρησιμοποιώντας το όνομα χρήστη &#8220;%3$s&#8221;. Παρακαλώ,ελέγξτε τα email σας %4$s για ναδείτε τον κωδικό σας και τις οδηγίες σύνδεσης. Αν δεν έχετε λάβει email, ελέγξτε τα ανεπιθύμητα ή τον κάδο απορριμάτων. Αν για μια ώρα ακόμα δεν έχετε λάβει email, μπορείτε να <a href=\"%5$s\">επαναφέρετε τον κωδικό σας</a>."
323
-
324
- #: includes/class-theme-my-login-ms-signup.php:432
325
- msgid "An error occurred during the activation"
326
- msgstr "Ένα λάθος προέκυψε κατά την ενεργοποίηση"
327
-
328
- #: includes/class-theme-my-login-ms-signup.php:444
329
- #: templates/ms-signup-user-form.php:16
330
- msgid "Username:"
331
- msgstr "Όνομα Χρήστη:"
332
-
333
- #: includes/class-theme-my-login-ms-signup.php:445
334
- #: modules/custom-passwords/custom-passwords.php:29
335
- #: modules/custom-passwords/custom-passwords.php:56
336
- msgid "Password:"
337
- msgstr "Κωδικός:"
338
-
339
- #: includes/class-theme-my-login-ms-signup.php:449
340
- msgid "Your account is now activated. <a href=\"%1$s\">View your site</a> or <a href=\"%2$s\">Login</a>"
341
- msgstr "Ο λογαριασμός σας ενεργοποιήθηκε. <a href=\"%1$s\">Δείτε τον ιστοχώρο σας</a> ή <a href=\"%2$s\">Συνδεθείτε</a>"
342
-
343
- #: includes/class-theme-my-login-ms-signup.php:451
344
- msgid "Your account is now activated. <a href=\"%1$s\">Login</a> or go back to the <a href=\"%2$s\">homepage</a>."
345
- msgstr "Ο λογαριασμός σας ενεργοποιήθηκε. <a href=\"%1$s\">Συνδεθείτε</a> ή επιστρέψτε στην <a href=\"%2$s\">αρχική σελίδα</a>."
346
-
347
- #: includes/class-theme-my-login-template.php:137
348
- msgid "Welcome, %s"
349
- msgstr "Καλώς Ήρθατε, %s"
350
-
351
- #: includes/class-theme-my-login-template.php:151
352
- #: includes/class-theme-my-login.php:540
353
- #: templates/login-form.php:28
354
- msgid "Log In"
355
- msgstr "Σύνδεση"
356
-
357
- #: includes/class-theme-my-login-template.php:315
358
- #: modules/custom-user-links/custom-user-links.php:82
359
- msgid "Dashboard"
360
- msgstr "Πίνακας Ελέγχου"
361
-
362
- #: includes/class-theme-my-login-template.php:316
363
- #: modules/custom-user-links/custom-user-links.php:83
364
- #: modules/themed-profiles/admin/themed-profiles-admin.php:66
365
- msgid "Profile"
366
- msgstr "Προφίλ"
367
-
368
- #: includes/class-theme-my-login-template.php:334
369
- #: modules/custom-redirection/custom-redirection.php:197
370
- msgid "Log out"
371
- msgstr "Αποσύνδεση"
372
-
373
- #: includes/class-theme-my-login-template.php:363
374
- msgid "Register For This Site"
375
- msgstr "Εγγραφή σε αυτόν τον Ιστότοπο"
376
-
377
- #: includes/class-theme-my-login-template.php:366
378
- msgid "Please enter your username or email address. You will receive a link to create a new password via email."
379
- msgstr "Παρακαλώ εισάγετε το όνομα χρήστη ή την διεύθυνση email σας. Θα λάβετε έναν σύνδεσμο για να δημιουργήσετε νέο κωδικό μέσω email."
380
-
381
- #: includes/class-theme-my-login-template.php:369
382
- msgid "Enter your new password below."
383
- msgstr "Εισάγετε τον νέο κωδικό."
384
-
385
- #: includes/class-theme-my-login-widget.php:23
386
- msgid "A login form for your blog."
387
- msgstr "Μία φόρμα σύνδεσης χρηστών για τον ιστότοπο σας."
388
-
389
- #: includes/class-theme-my-login-widget.php:88
390
- msgid "Default Action"
391
- msgstr "Προεπιλεγμένη Ενέργεια"
392
-
393
- #: includes/class-theme-my-login-widget.php:95
394
- msgid "Show When Logged In"
395
- msgstr "Εμφάνιση όταν ο χρήστης είναι συνδεμένος"
396
-
397
- #: includes/class-theme-my-login-widget.php:97
398
- msgid "Show Title"
399
- msgstr "Εμφάνιση Τίτλου"
400
-
401
- #: includes/class-theme-my-login-widget.php:99
402
- msgid "Show Login Link"
403
- msgstr "Εμφάνιση σύνδεσμου Σύνδεσης"
404
-
405
- #: includes/class-theme-my-login-widget.php:101
406
- msgid "Show Register Link"
407
- msgstr "Εμφάνιση σύνδεσμου Εγγραφής"
408
-
409
- #: includes/class-theme-my-login-widget.php:103
410
- msgid "Show Lost Password Link"
411
- msgstr "Εμφάνιση σύνδεσμου Ξεχασμένου Κωδικού"
412
-
413
- #: includes/class-theme-my-login-widget.php:105
414
- msgid "Show Gravatar"
415
- msgstr "Εμφάνιση Gravatar"
416
-
417
- #: includes/class-theme-my-login-widget.php:106
418
- msgid "Gravatar Size"
419
- msgstr "Μέγεθος Gravatar"
420
-
421
- #: includes/class-theme-my-login-widget.php:108
422
- msgid "Allow Registration"
423
- msgstr "Επέτρεψε τις Εγγραφές"
424
-
425
- #: includes/class-theme-my-login-widget.php:110
426
- msgid "Allow Password Recovery"
427
- msgstr "Επέτρεψε Ανάκτηση Κωδικού"
428
-
429
- #: includes/class-theme-my-login.php:245
430
- msgid "Sorry, that key does not appear to be valid."
431
- msgstr "Με συγχωρείτε, αυτό το κλειδί δεν είναι έγκυρο."
432
-
433
- #: includes/class-theme-my-login.php:261
434
- msgid "The passwords do not match."
435
- msgstr "Οι Κωδικοί δεν ταιριάζουν."
436
-
437
- #: includes/class-theme-my-login.php:367
438
- msgid "<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href=\"http://www.google.com/cookies.html\">enable cookies</a> to use WordPress."
439
- msgstr "<strong>ΣΦΑΛΜΑ</strong>: Τα Cookies είναι μπλοκαρισμένα ή δεν υποστηρίζονται απο τον browser σας. Θα πρέπει να <a href=\"http://www.google.com/cookies.html\">ενεργοποιήσετε τα cookies</a> για να συνδεθείτε σε αυτόν τον ιστότοπο."
440
-
441
- #: includes/class-theme-my-login.php:371
442
- msgid "You are now logged out."
443
- msgstr "Έχετε Αποσυνδεθεί."
444
-
445
- #: includes/class-theme-my-login.php:373
446
- msgid "User registration is currently not allowed."
447
- msgstr "Οι εγγραφές νέων χρηστών δεν επιτρέπονται."
448
-
449
- #: includes/class-theme-my-login.php:375
450
- msgid "Check your e-mail for the confirmation link."
451
- msgstr "Ελέγξτε το email σας για τον σύνδεσμο επιβεβαίωσης/"
452
-
453
- #: includes/class-theme-my-login.php:377
454
- msgid "Your password has been reset."
455
- msgstr "Ο κωδικός σας επαναδημιουργήθηκε."
456
-
457
- #: includes/class-theme-my-login.php:379
458
- msgid "Registration complete. Please check your e-mail."
459
- msgstr "Η εγγραφή ολοκληρώθηκε. Παρακαλούμε, ελέγξτε το email σας."
460
-
461
- #: includes/class-theme-my-login.php:381
462
- msgid "Your session has expired. Please log-in again."
463
- msgstr "Η σύνδεση σας έληξε. Παρακαλούμε, συνδεθείτε ξανά."
464
-
465
- #: includes/class-theme-my-login.php:383
466
- msgid "Please log in to continue."
467
- msgstr "Παρακαλώ συνδεθείτε για να συνεχίσετε."
468
-
469
- #: includes/class-theme-my-login.php:540
470
- msgid "Log Out"
471
- msgstr "Αποσύνδεση"
472
-
473
- #: includes/class-theme-my-login.php:925
474
- msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
475
- msgstr "<strong>ΣΦΑΛΜΑ</strong>: Εισάγετε το όνομα χρήστη ή το email σας."
476
-
477
- #: includes/class-theme-my-login.php:929
478
- msgid "<strong>ERROR</strong>: There is no user registered with that email address."
479
- msgstr "<strong>ΣΦΑΛΜΑ</strong>: Δεν υπάρχει χρήστης εγγεγραμένος με αυτό το email."
480
-
481
- #: includes/class-theme-my-login.php:941
482
- msgid "<strong>ERROR</strong>: Invalid username or e-mail."
483
- msgstr "<strong>ΣΦΑΛΜΑ</strong>: Λάθος Όνομα Χρήστη ή email."
484
-
485
- #: includes/class-theme-my-login.php:955
486
- msgid "Password reset is not allowed for this user"
487
- msgstr "Η επαναφοράς κωδικού πρόσβασης δεν επιτρέπεται για αυτόν τον χρήστη"
488
-
489
- #: includes/class-theme-my-login.php:967
490
- msgid "Someone requested that the password be reset for the following account:"
491
- msgstr "Κάποιος ζήτησε την επαναφορά του κωδικού πρόσβασης σε αυτόν τον λογαριασμό:"
492
-
493
- #: includes/class-theme-my-login.php:969
494
- #: modules/custom-email/custom-email.php:692
495
- #: modules/custom-email/custom-email.php:709
496
- #: modules/user-moderation/admin/user-moderation-admin.php:164
497
- #: modules/user-moderation/user-moderation.php:365
498
- msgid "Username: %s"
499
- msgstr "Όνομα Χρήστη: %s"
500
-
501
- #: includes/class-theme-my-login.php:970
502
- msgid "If this was a mistake, just ignore this email and nothing will happen."
503
- msgstr "Αν αυτό ήταν λάθος, αγνοήστε αυτό το email και δε θα γίνει τίποτα."
504
-
505
- #: includes/class-theme-my-login.php:971
506
- msgid "To reset your password, visit the following address:"
507
- msgstr "Για να επαναφέρετε τον κωδικό σας επισκευθείτε την παρακάτω διεύθυνση:"
508
-
509
- #: includes/class-theme-my-login.php:982
510
- msgid "[%s] Password Reset"
511
- msgstr "[%s] Επαναφορά Κωδικού"
512
-
513
- #: includes/class-theme-my-login.php:988
514
- #: modules/user-moderation/admin/user-moderation-admin.php:53
515
- #: modules/user-moderation/admin/user-moderation-admin.php:174
516
- #: modules/user-moderation/admin/user-moderation-admin.php:210
517
- msgid "The e-mail could not be sent."
518
- msgstr "Δεν ήταν δυνατόν να σταλεί το email."
519
-
520
- #: includes/class-theme-my-login.php:988
521
- #: modules/user-moderation/admin/user-moderation-admin.php:53
522
- #: modules/user-moderation/admin/user-moderation-admin.php:174
523
- #: modules/user-moderation/admin/user-moderation-admin.php:210
524
- msgid "Possible reason: your host may have disabled the mail() function..."
525
- msgstr "Πιθανή αιτία: ο παροχέας σας έχει απενεργοποιήσει το mail() function."
526
-
527
- #: includes/class-theme-my-login.php:1011
528
- #: includes/class-theme-my-login.php:1014
529
- #: includes/class-theme-my-login.php:1019
530
- #: modules/user-moderation/user-moderation.php:238
531
- #: modules/user-moderation/user-moderation.php:241
532
- #: modules/user-moderation/user-moderation.php:246
533
- msgid "Invalid key"
534
- msgstr "Άκυρο Κλειδί"
535
-
536
- #: includes/class-theme-my-login.php:1059
537
- msgid "<strong>ERROR</strong>: Please enter a username."
538
- msgstr "<strong>ΣΦΑΛΜΑ</strong>: Παρακαλώ εισάγετε ένα Όνομα Χρήστη."
539
-
540
- #: includes/class-theme-my-login.php:1061
541
- msgid "<strong>ERROR</strong>: This username is invalid because it uses illegal characters. Please enter a valid username."
542
- msgstr "<strong>ΣΦΑΛΜΑ</strong>: Αυτό το Όνομα Χρήστη είναι άκυρο διότι χρησιμοποιέι μη επιτρεπόμενους χαρακτήρες. Παρακαλώ εισάγετε ένα έγκυρο Όνομα Χρήστη."
543
-
544
- #: includes/class-theme-my-login.php:1064
545
- msgid "<strong>ERROR</strong>: This username is already registered, please choose another one."
546
- msgstr "<strong>ΣΦΑΛΜΑ</strong>: Αυτό το Όνομα Χρήστη χρησιμοποιείται ήδη. Παρακαλώ, διαλέξτε κάποιο άλλο."
547
-
548
- #: includes/class-theme-my-login.php:1069
549
- msgid "<strong>ERROR</strong>: Please type your e-mail address."
550
- msgstr "<strong>ΣΦΑΛΜΑ</strong>: Παρακαλώ, εισάγετε το email σας."
551
-
552
- #: includes/class-theme-my-login.php:1071
553
- msgid "<strong>ERROR</strong>: The email address isn&#8217;t correct."
554
- msgstr "<strong>ΣΦΑΛΜΑ</strong>: Το eimail αυτό είναι λάθος."
555
-
556
- #: includes/class-theme-my-login.php:1074
557
- msgid "<strong>ERROR</strong>: This email is already registered, please choose another one."
558
- msgstr "<strong>ΣΦΑΛΜΑ</strong>: Το email αυτό έχει ήδη χρησιμοποιηθεί για άλλη εγγραφή. Παρακαλώ, εισάγετε κάποιο άλλο."
559
-
560
- #: includes/class-theme-my-login.php:1087
561
- msgid "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href=\"mailto:%s\">webmaster</a> !"
562
- msgstr "<strong>ΣΦΑΛΜΑ</strong>: Δεν ήταν δυνατόν αν πραγματοποιηθεί η εγγραφή.... Παρακαλώ επικοινωνήστε με τον <a href=\"mailto:%s\">Διαχειριστή</a> !"
563
-
564
- #: modules/custom-email/admin/custom-email-admin.php:46
565
- #: modules/custom-email/admin/custom-email-admin.php:265
566
- msgid "User Notification"
567
- msgstr "Κοινοποίηση στον Χρήστη"
568
-
569
- #: modules/custom-email/admin/custom-email-admin.php:49
570
- msgid "This e-mail will be sent to a new user upon registration."
571
- msgstr "Αυτό το email θα σταλεί με την εγγραφή νέου χρήστη."
572
-
573
- #: modules/custom-email/admin/custom-email-admin.php:50
574
- #: modules/custom-email/admin/custom-email-admin.php:269
575
- msgid "Please be sure to include the variable %user_pass% if using default passwords or else the user will not know their password!"
576
- msgstr "Παρακαλώ σιγουρευτείτε ότι έχετε συμπεριλάβει την μεταβλητή αν χρησιμοποιείτε προεπιλεγμένους κωδικούς αλλιώς ο χρήστης δεν θα γνωρίζει τον κωδικό του!"
577
-
578
- #: modules/custom-email/admin/custom-email-admin.php:51
579
- #: modules/custom-email/admin/custom-email-admin.php:81
580
- #: modules/custom-email/admin/custom-email-admin.php:130
581
- #: modules/custom-email/admin/custom-email-admin.php:175
582
- #: modules/custom-email/admin/custom-email-admin.php:224
583
- #: modules/custom-email/admin/custom-email-admin.php:270
584
- #: modules/custom-email/admin/custom-email-admin.php:300
585
- #: modules/custom-email/admin/custom-email-admin.php:348
586
- msgid "If any field is left empty, the default will be used instead."
587
- msgstr "Αν κάποιο πεδίο είναι κενό, θα χρησιμοποιηθεί η προκαθορισμένη τιμή."
588
-
589
- #: modules/custom-email/admin/custom-email-admin.php:54
590
- #: modules/custom-email/admin/custom-email-admin.php:87
591
- #: modules/custom-email/admin/custom-email-admin.php:133
592
- #: modules/custom-email/admin/custom-email-admin.php:181
593
- #: modules/custom-email/admin/custom-email-admin.php:227
594
- #: modules/custom-email/admin/custom-email-admin.php:273
595
- #: modules/custom-email/admin/custom-email-admin.php:306
596
- #: modules/custom-email/admin/custom-email-admin.php:351
597
- msgid "From Name"
598
- msgstr "Από Όνομα"
599
-
600
- #: modules/custom-email/admin/custom-email-admin.php:57
601
- #: modules/custom-email/admin/custom-email-admin.php:90
602
- #: modules/custom-email/admin/custom-email-admin.php:136
603
- #: modules/custom-email/admin/custom-email-admin.php:184
604
- #: modules/custom-email/admin/custom-email-admin.php:230
605
- #: modules/custom-email/admin/custom-email-admin.php:276
606
- #: modules/custom-email/admin/custom-email-admin.php:309
607
- #: modules/custom-email/admin/custom-email-admin.php:354
608
- msgid "From E-mail"
609
- msgstr "Από email"
610
-
611
- #: modules/custom-email/admin/custom-email-admin.php:60
612
- #: modules/custom-email/admin/custom-email-admin.php:93
613
- #: modules/custom-email/admin/custom-email-admin.php:139
614
- #: modules/custom-email/admin/custom-email-admin.php:187
615
- #: modules/custom-email/admin/custom-email-admin.php:233
616
- #: modules/custom-email/admin/custom-email-admin.php:279
617
- #: modules/custom-email/admin/custom-email-admin.php:312
618
- #: modules/custom-email/admin/custom-email-admin.php:357
619
- msgid "E-mail Format"
620
- msgstr "Email Format"
621
-
622
- #: modules/custom-email/admin/custom-email-admin.php:62
623
- #: modules/custom-email/admin/custom-email-admin.php:95
624
- #: modules/custom-email/admin/custom-email-admin.php:141
625
- #: modules/custom-email/admin/custom-email-admin.php:189
626
- #: modules/custom-email/admin/custom-email-admin.php:235
627
- #: modules/custom-email/admin/custom-email-admin.php:281
628
- #: modules/custom-email/admin/custom-email-admin.php:314
629
- #: modules/custom-email/admin/custom-email-admin.php:359
630
- msgid "Plain Text"
631
- msgstr "Απλό κείμενο"
632
-
633
- #: modules/custom-email/admin/custom-email-admin.php:63
634
- #: modules/custom-email/admin/custom-email-admin.php:96
635
- #: modules/custom-email/admin/custom-email-admin.php:142
636
- #: modules/custom-email/admin/custom-email-admin.php:190
637
- #: modules/custom-email/admin/custom-email-admin.php:236
638
- #: modules/custom-email/admin/custom-email-admin.php:282
639
- #: modules/custom-email/admin/custom-email-admin.php:315
640
- #: modules/custom-email/admin/custom-email-admin.php:360
641
- msgid "HTML"
642
- msgstr "HTML"
643
-
644
- #: modules/custom-email/admin/custom-email-admin.php:66
645
- #: modules/custom-email/admin/custom-email-admin.php:99
646
- #: modules/custom-email/admin/custom-email-admin.php:145
647
- #: modules/custom-email/admin/custom-email-admin.php:193
648
- #: modules/custom-email/admin/custom-email-admin.php:239
649
- #: modules/custom-email/admin/custom-email-admin.php:285
650
- #: modules/custom-email/admin/custom-email-admin.php:318
651
- #: modules/custom-email/admin/custom-email-admin.php:363
652
- msgid "Subject"
653
- msgstr "Θέμα"
654
-
655
- #: modules/custom-email/admin/custom-email-admin.php:69
656
- #: modules/custom-email/admin/custom-email-admin.php:102
657
- #: modules/custom-email/admin/custom-email-admin.php:148
658
- #: modules/custom-email/admin/custom-email-admin.php:196
659
- #: modules/custom-email/admin/custom-email-admin.php:242
660
- #: modules/custom-email/admin/custom-email-admin.php:288
661
- #: modules/custom-email/admin/custom-email-admin.php:321
662
- #: modules/custom-email/admin/custom-email-admin.php:366
663
- msgid "Message"
664
- msgstr "Μήνυμα"
665
-
666
- #: modules/custom-email/admin/custom-email-admin.php:72
667
- #: modules/custom-email/admin/custom-email-admin.php:105
668
- #: modules/custom-email/admin/custom-email-admin.php:151
669
- #: modules/custom-email/admin/custom-email-admin.php:199
670
- #: modules/custom-email/admin/custom-email-admin.php:245
671
- #: modules/custom-email/admin/custom-email-admin.php:291
672
- #: modules/custom-email/admin/custom-email-admin.php:324
673
- #: modules/custom-email/admin/custom-email-admin.php:369
674
- msgid "Available Variables"
675
- msgstr "Διαθέσιμες Μεταβλητές"
676
-
677
- #: modules/custom-email/admin/custom-email-admin.php:77
678
- #: modules/custom-email/admin/custom-email-admin.php:171
679
- #: modules/custom-email/admin/custom-email-admin.php:296
680
- msgid "Admin Notification"
681
- msgstr "Κοινοποίηση Διαχειριστή"
682
-
683
- #: modules/custom-email/admin/custom-email-admin.php:80
684
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon new user registration."
685
- msgstr "Αυτό το email θα σταλεί στην ή στις διευθύνσεις email (οι πολλαπλές διευθύνσεις πρέπει να διαχωρίζονται με κόμα) που ορίζονται παρακάτω, για κάθε νέα εγγραφή."
686
-
687
- #: modules/custom-email/admin/custom-email-admin.php:84
688
- #: modules/custom-email/admin/custom-email-admin.php:178
689
- #: modules/custom-email/admin/custom-email-admin.php:303
690
- msgid "To"
691
- msgstr "Προς"
692
-
693
- #: modules/custom-email/admin/custom-email-admin.php:128
694
- msgid "This e-mail will be sent to a user when they attempt to recover their password."
695
- msgstr "Αυτό το email θα στέλνεται στον χρήστη όταν προσπαθεί να ανακτήσει τον κωδικό του."
696
-
697
- #: modules/custom-email/admin/custom-email-admin.php:129
698
- msgid "Please be sure to include the variable %reseturl% or else the user will not be able to recover their password!"
699
- msgstr "Παρακαλώ σιγουρευτείτε ότι έχετε συμπεριλάβει την μεταβλητή αλλιώς ο χρήστης δεν θα μπορέσει να ανακτήσει τον κωδικό του!"
700
-
701
- #: modules/custom-email/admin/custom-email-admin.php:174
702
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon user password change."
703
- msgstr "Αυτό το email θα σταλεί στην ή στις διευθύνσεις email (οι πολλαπλές διευθύνσεις πρέπει να διαχωρίζονται με κόμα) που ορίζονται παρακάτω, για κάθε αλλαγή κωδικού."
704
-
705
- #: modules/custom-email/admin/custom-email-admin.php:201
706
- #: modules/custom-email/admin/custom-email-admin.php:326
707
- msgid "Disable Admin Notification"
708
- msgstr "Απενεργοποίηση Κοινοποίησης Διαχειριστή."
709
-
710
- #: modules/custom-email/admin/custom-email-admin.php:222
711
- msgid "This e-mail will be sent to a new user upon registration when \"E-mail Confirmation\" is checked for \"User Moderation\"."
712
- msgstr "Αυτό το email θα σταλεί σε έναν νέο χρήστη όταν η \"Επιβεβαίωση Email\" είναι ενεργοποιημένη για τον \"Έλεγχο Χρήστη\"."
713
-
714
- #: modules/custom-email/admin/custom-email-admin.php:223
715
- msgid "Please be sure to include the variable %activateurl% or else the user will not be able to activate their account!"
716
- msgstr "Παρακαλώ σιγουρευτείτε ότι έχετε συμπεριλάβει την μεταβλητή αλλιώς ο χρήστης δεν θα μπορεί να ενεργοποιήσει τον λογαριασμό του!"
717
-
718
- #: modules/custom-email/admin/custom-email-admin.php:268
719
- msgid "This e-mail will be sent to a new user upon admin approval when \"Admin Approval\" is checked for \"User Moderation\"."
720
- msgstr "Αυτό το email θα σταλεί σε έναν νέο χρήστη όταν εγκριθεί από έναν διαχειριστή και η \"Έγκριση Διαχειριστή\" είναι ενεργοποιημένη για τον \"Έλεγχο Χρήστη\"."
721
-
722
- #: modules/custom-email/admin/custom-email-admin.php:299
723
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below upon user registration when \"Admin Approval\" is checked for \"User Moderation\"."
724
- msgstr "Αυτό το email θα σταλεί στην ή στις διευθύνσεις (οι πολλαπλές διευθύνσεις θα πρέπει να διαχωρίζονται με κόμα) που ορίζονται παρακάτω, κατά την εγγραφή νέου χρήστη όταν η \"Έγκριση Διαχειριστή\" είναι ενεργοποιημένη για τον \"Έλεγχο Χρήστη\"."
725
-
726
- #: modules/custom-email/admin/custom-email-admin.php:347
727
- msgid "This e-mail will be sent to a user who is deleted/denied when \"Admin Approval\" is checked for \"User Moderation\" and the user's role is \"Pending\"."
728
- msgstr "Αυτό το email θα σταλεί σε έναν νέο χρήστη όταν διαγράφεται ή δεν εγκρίνεται από έναν διαχειριστή και ι η \"Έγκριση Διαχειριστή\" είναι ενεργοποιημένη για τον \"Έλεγχο Χρήστη\"."
729
-
730
- #: modules/custom-email/admin/custom-email-admin.php:390
731
- #: templates/profile-form.php:143
732
- #: templates/register-form.php:16
733
- msgid "E-mail"
734
- msgstr "E-Mail"
735
-
736
- #: modules/custom-email/admin/custom-email-admin.php:391
737
- msgid "New User"
738
- msgstr "Νέος Χρήστης"
739
-
740
- #: modules/custom-email/admin/custom-email-admin.php:392
741
- msgid "Retrieve Password"
742
- msgstr "Ανάκτηση Κωδικού"
743
-
744
- #: modules/custom-email/admin/custom-email-admin.php:393
745
- #: templates/resetpass-form.php:26
746
- msgid "Reset Password"
747
- msgstr "Επαναφορά Κωδικού"
748
-
749
- #: modules/custom-email/admin/custom-email-admin.php:395
750
- msgid "User Activation"
751
- msgstr "Ενεργοποίηση Χρήστη"
752
-
753
- #: modules/custom-email/admin/custom-email-admin.php:396
754
- msgid "User Approval"
755
- msgstr "Έγκριση Χρήστη"
756
-
757
- #: modules/custom-email/admin/custom-email-admin.php:397
758
- msgid "User Denial"
759
- msgstr "Άρνηση Χρήστη"
760
-
761
- #: modules/custom-email/custom-email.php:691
762
- msgid "New user registration on your site %s:"
763
- msgstr "Νέα Εγγραφή Χρήστη στον ιστότοπο %s:"
764
-
765
- #: modules/custom-email/custom-email.php:693
766
- #: modules/user-moderation/user-moderation.php:366
767
- msgid "E-mail: %s"
768
- msgstr "E-mail: %s"
769
-
770
- #: modules/custom-email/custom-email.php:695
771
- msgid "[%s] New User Registration"
772
- msgstr "[%s] Εγγραφή Νέου Χρήστη"
773
-
774
- #: modules/custom-email/custom-email.php:710
775
- #: modules/user-moderation/admin/user-moderation-admin.php:165
776
- msgid "Password: %s"
777
- msgstr "Κωδικός: %s"
778
-
779
- #: modules/custom-email/custom-email.php:713
780
- msgid "[%s] Your username and password"
781
- msgstr "[%s] Το Όνομα Χρήστη και ο Κωδικός σας"
782
-
783
- #: modules/custom-email/custom-email.php:745
784
- msgid "[%s] Password Lost/Changed"
785
- msgstr "[%s] Αλλαγή Κωδικού ή Χαμένος Κωδικός"
786
-
787
- #: modules/custom-email/custom-email.php:746
788
- msgid "Password Lost and Changed for user: %s"
789
- msgstr "Χαμένος Κωδικός και αλλαγή του για τον χρήστη: %s"
790
-
791
- #: modules/custom-passwords/custom-passwords.php:31
792
- #: modules/custom-passwords/custom-passwords.php:63
793
- msgid "Confirm Password:"
794
- msgstr "Επιβεβαίωση Κωδικού:"
795
-
796
- #: modules/custom-passwords/custom-passwords.php:61
797
- msgid "(Must be at least 6 characters.)"
798
- msgstr "(Πρέπει να είναι τουλάχιστον 6 χαρακτήρες.)"
799
-
800
- #: modules/custom-passwords/custom-passwords.php:65
801
- msgid "Confirm that you've typed your password correctly."
802
- msgstr "Επιβεβαιώστε ότι έχετε εισάγει σωστά τον κωδικό σας."
803
-
804
- #: modules/custom-passwords/custom-passwords.php:103
805
- msgid "<strong>ERROR</strong>: Please enter a password."
806
- msgstr "<strong>ΣΦΑΛΜΑ</strong>: Παρακαλώ εισάγετε έναν Κωδικό"
807
-
808
- #: modules/custom-passwords/custom-passwords.php:106
809
- msgid "<strong>ERROR</strong>: Your passwords do not match."
810
- msgstr "<strong>ΣΦΑΛΜΑ</strong>: Οι Κωδικοί δεν ταιριάζουν."
811
-
812
- #: modules/custom-passwords/custom-passwords.php:109
813
- msgid "<strong>ERROR</strong>: Your password must be at least 6 characters in length."
814
- msgstr "<strong>ΣΦΑΛΜΑ</strong>: Ο Κωδικός σας θα πρέπει να είναι τουλάχιστον 6 χαρακτήρες."
815
-
816
- #: modules/custom-passwords/custom-passwords.php:230
817
- msgid "Registration complete. You may now log in."
818
- msgstr "Η εγγραφή ολοκληρώθηκε. Μπορείτε τώρα να συνδεθείτε."
819
-
820
- #: modules/custom-redirection/custom-redirection.php:156
821
- msgid "Redirection"
822
- msgstr "Μεταφορά σε"
823
-
824
- #: modules/custom-redirection/custom-redirection.php:185
825
- msgid "Log in"
826
- msgstr "Σύνδεση"
827
-
828
- #: modules/custom-redirection/custom-redirection.php:187
829
- #: modules/custom-redirection/custom-redirection.php:199
830
- msgid "Default"
831
- msgstr "Προεπιλεγμένο"
832
-
833
- #: modules/custom-redirection/custom-redirection.php:188
834
- msgid "Check this option to send the user to their WordPress Dashboard/Profile."
835
- msgstr "Κάντε αυτή την επιλογή για να στέλνετε τον χρήστη στο Προφίλ του η στον Πίνακα Ελέγχου."
836
-
837
- #: modules/custom-redirection/custom-redirection.php:189
838
- #: modules/custom-redirection/custom-redirection.php:201
839
- msgid "Referer"
840
- msgstr "Referer"
841
-
842
- #: modules/custom-redirection/custom-redirection.php:190
843
- msgid "Check this option to send the user back to the page they were visiting before logging in."
844
- msgstr "Κάντε αυτή την επιλογή για να στείλετε τον χρήστη πίσω στην σελίδα που είχε επισκευθεί πριν κάνει σύνδεση."
845
-
846
- #: modules/custom-redirection/custom-redirection.php:193
847
- #: modules/custom-redirection/custom-redirection.php:205
848
- msgid "Check this option to send the user to a custom location, specified by the textbox above."
849
- msgstr "Κάντε αυτή την επιλογή για να στείλετε τον χρήστη σε μια προκαθορισμένη σελίδα, η οποία δηλώνεται στο παρακάτω κουτί."
850
-
851
- #: modules/custom-redirection/custom-redirection.php:200
852
- msgid "Check this option to send the user to the log in page, displaying a message that they have successfully logged out."
853
- msgstr "Κάντε αυτή την επιλογή για να στείλετε τον χρήστη στην σελίδα σύνδεσης, εμφανίζοντας ένα μήνυμα ότι συνδέθηκε με επιτυχία."
854
-
855
- #: modules/custom-redirection/custom-redirection.php:202
856
- msgid "Check this option to send the user back to the page they were visiting before logging out. (Note: If the previous page being visited was an admin page, this can have unexpected results.)"
857
- msgstr "Κάντε αυτή την επιλογή για να στείλετε τον χρήστη πίσω στην σελίδα που επισκεύθυημε πριν κάνει αποσύνδεση. (Σημ. Αν η προηγούμενη σελίδα που είχε επισκευθεί ήταν σελίδα διαχειριστή, αυτό θα έχει ανεπιθύμητα αποτελέσματα.)"
858
-
859
- #: modules/custom-user-links/admin/custom-user-links-admin.php:140
860
- msgid "User Links"
861
- msgstr "Σύνδεσμοι Χρηστών"
862
-
863
- #: modules/custom-user-links/admin/custom-user-links-admin.php:232
864
- #: modules/custom-user-links/admin/custom-user-links-admin.php:255
865
- #: modules/custom-user-links/admin/custom-user-links-admin.php:300
866
- msgid "Title"
867
- msgstr "Τίτλος"
868
-
869
- #: modules/custom-user-links/admin/custom-user-links-admin.php:233
870
- #: modules/custom-user-links/admin/custom-user-links-admin.php:256
871
- #: modules/custom-user-links/admin/custom-user-links-admin.php:304
872
- msgid "URL"
873
- msgstr "URL"
874
-
875
- #: modules/custom-user-links/admin/custom-user-links-admin.php:250
876
- msgid "Add New link:"
877
- msgstr "Πρόσθεση Νέου Σύνδεσμου:"
878
-
879
- #: modules/custom-user-links/admin/custom-user-links-admin.php:266
880
- msgid "Add link"
881
- msgstr "Πρόσθεσε Σύνδεσμο"
882
-
883
- #: modules/custom-user-links/admin/custom-user-links-admin.php:306
884
- msgid "Delete"
885
- msgstr "Διαγραφή"
886
-
887
- #: modules/custom-user-links/admin/custom-user-links-admin.php:307
888
- msgid "Update"
889
- msgstr "Ενημέρωση"
890
-
891
- #: modules/security/admin/security-admin.php:32
892
- #: modules/security/admin/security-admin.php:35
893
- #: modules/user-moderation/admin/user-moderation-admin.php:34
894
- #: modules/user-moderation/admin/user-moderation-admin.php:44
895
- msgid "You can&#8217;t edit that user."
896
- msgstr "Δεν μπορείτε να επεξεργαστείτε αυτόν τον χρήστη."
897
-
898
- #: modules/security/admin/security-admin.php:67
899
- msgid "User locked."
900
- msgstr "Ι χρήστης Κλειδώθηκε."
901
-
902
- #: modules/security/admin/security-admin.php:69
903
- msgid "User unlocked."
904
- msgstr "Ο Χρήστης Ξεκλειδώθηκε."
905
-
906
- #: modules/security/admin/security-admin.php:92
907
- msgid "Unlock"
908
- msgstr "Ξεκλειδωμα"
909
-
910
- #: modules/security/admin/security-admin.php:94
911
- msgid "Lock"
912
- msgstr "Κλείδωμα"
913
-
914
- #: modules/security/admin/security-admin.php:113
915
- msgid "Security"
916
- msgstr "Ασφάλεια"
917
-
918
- #: modules/security/admin/security-admin.php:132
919
- msgid "Private Site"
920
- msgstr "Προσωπικός Ιστοχώρος"
921
-
922
- #: modules/security/admin/security-admin.php:135
923
- msgid "Require users to be logged in to view site"
924
- msgstr "Χρειάζεται οι χρήστες να είναι συνδεδεμένοι για να δούνε τον ιστοχώρο."
925
-
926
- #: modules/security/admin/security-admin.php:139
927
- msgid "Login Attempts"
928
- msgstr "Προσπάθειες Σύνδεσης"
929
-
930
- #: modules/security/admin/security-admin.php:144
931
- msgid "minute(s)"
932
- msgstr "λεπτό(-ά)"
933
-
934
- #: modules/security/admin/security-admin.php:145
935
- msgid "hour(s)"
936
- msgstr "ώρα(-ες)"
937
-
938
- #: modules/security/admin/security-admin.php:146
939
- msgid "day(s)"
940
- msgstr "μέρα(-ες)"
941
-
942
- #: modules/security/admin/security-admin.php:169
943
- msgid "After %1$s failed login attempts within %2$s %3$s, lockout the account for %4$s %5$s."
944
- msgstr "Μετά από %1$s ανεπιτυχής προσπάθειες σύνδεσης μέσα σε %2$s %3$s, κλείδωσε τον λογαριασμό για %4$s %5$s."
945
-
946
- #: modules/security/security.php:64
947
- #: modules/security/security.php:90
948
- msgid "<strong>ERROR</strong>: This account has been locked because of too many failed login attempts. You may try again in %s."
949
- msgstr "<strong>ΣΦΑΛΜΑ</strong>: Ο λογαριασμός αυτός κλειδώθηκε διότι έγιναν πολλές αποτυχημένες προσπάθειες για σύνδεση. Μπορείτε να ξαναδοκιμάσετε σε %s."
950
-
951
- #: modules/security/security.php:66
952
- msgid "<strong>ERROR</strong>: This account has been locked."
953
- msgstr "<strong>ΣΦΑΛΜΑ</strong>: Ο λογαριασμός αυτός κλειδώθηκε."
954
-
955
- #: modules/security/security.php:126
956
- msgid "Failed Login Attempts"
957
- msgstr "Αποτυχήμενες Προσπάθειες Σύνδεσης"
958
-
959
- #: modules/security/security.php:130
960
- msgid "IP Address"
961
- msgstr "Διεύθυνση IP"
962
-
963
- #: modules/security/security.php:131
964
- msgid "Date"
965
- msgstr "Ημερομηνία"
966
-
967
- #: modules/security/security.php:134
968
- msgid "Y/m/d g:i:s A"
969
- msgstr "Ε/μ/η g:i:s A"
970
-
971
- #: modules/security/security.php:139
972
- msgid "%s ago"
973
- msgstr "%s πριν"
974
-
975
- #: modules/security/security.php:141
976
- msgid "Y/m/d"
977
- msgstr "Ε/μ/η"
978
-
979
- #: modules/themed-profiles/admin/themed-profiles-admin.php:23
980
- #: modules/themed-profiles/admin/themed-profiles-admin.php:42
981
- msgid "Themed Profiles"
982
- msgstr "θεματικές προφίλ"
983
-
984
- #: modules/themed-profiles/admin/themed-profiles-admin.php:51
985
- msgid "Restrict Admin Access"
986
- msgstr "Περιορισμός πρόσβασης διαχειριστή"
987
-
988
- #: modules/themed-profiles/themed-profiles.php:123
989
- #: templates/profile-form.php:182
990
- #: templates/resetpass-form.php:19
991
- msgid "Strength indicator"
992
- msgstr "Δείκτης Δύναμης Κωδικού"
993
-
994
- #: modules/themed-profiles/themed-profiles.php:124
995
- msgid "Very weak"
996
- msgstr "Πολύ Αδύναμος"
997
-
998
- #: modules/themed-profiles/themed-profiles.php:125
999
- msgid "Weak"
1000
- msgstr "Αδύναμος"
1001
-
1002
- #. translators: password strength
1003
- #: modules/themed-profiles/themed-profiles.php:127
1004
- msgctxt "password strength"
1005
- msgid "Medium"
1006
- msgstr "Μεσαία Δύναμη"
1007
-
1008
- #: modules/themed-profiles/themed-profiles.php:128
1009
- msgid "Strong"
1010
- msgstr "Δυνατός"
1011
-
1012
- #: modules/themed-profiles/themed-profiles.php:138
1013
- msgid "You do not have permission to edit this user."
1014
- msgstr "Δεν έχετε άδεια να επεξεργαστείτε αυτόν τον χρήστη."
1015
-
1016
- #: modules/themed-profiles/themed-profiles.php:154
1017
- msgid "Profile updated."
1018
- msgstr "Το προφίλ ενημερώθηκε."
1019
-
1020
- #: modules/themed-profiles/themed-profiles.php:243
1021
- msgid "Your Profile"
1022
- msgstr "Το Προφίλ σας"
1023
-
1024
- #: modules/user-moderation/admin/user-moderation-admin.php:75
1025
- msgid "User approved."
1026
- msgstr "Ο Χρήστης Εγκρίθηκε."
1027
-
1028
- #: modules/user-moderation/admin/user-moderation-admin.php:77
1029
- msgid "Activation sent."
1030
- msgstr "Η ενεργοποίηση εστάλλει."
1031
-
1032
- #: modules/user-moderation/admin/user-moderation-admin.php:105
1033
- msgid "Resend Activation"
1034
- msgstr "Αποστολή Ενεργοποίησης ξανά"
1035
-
1036
- #: modules/user-moderation/admin/user-moderation-admin.php:110
1037
- msgid "Approve"
1038
- msgstr "Έγκριση"
1039
-
1040
- #: modules/user-moderation/admin/user-moderation-admin.php:163
1041
- msgid "You have been approved access to %s"
1042
- msgstr "Έχει εγκριθεί η πρόσβαση σας στο %s"
1043
-
1044
- #: modules/user-moderation/admin/user-moderation-admin.php:168
1045
- msgid "[%s] Registration Approved"
1046
- msgstr "[%s] Έγκριση Εγγραφής"
1047
-
1048
- #: modules/user-moderation/admin/user-moderation-admin.php:203
1049
- msgid "You have been denied access to %s"
1050
- msgstr "Σας έχει απαγορευτεί η πρόσβαση σας στο %s"
1051
-
1052
- #: modules/user-moderation/admin/user-moderation-admin.php:204
1053
- msgid "[%s] Registration Denied"
1054
- msgstr "[%s] Άρνηση Εγγραφής"
1055
-
1056
- #: modules/user-moderation/admin/user-moderation-admin.php:226
1057
- msgid "Moderation"
1058
- msgstr "Έλεγχος"
1059
-
1060
- #: modules/user-moderation/admin/user-moderation-admin.php:242
1061
- msgid "User Moderation"
1062
- msgstr "Έλεγχος Χρήστη"
1063
-
1064
- #: modules/user-moderation/admin/user-moderation-admin.php:245
1065
- msgid "None"
1066
- msgstr "Κανένα"
1067
-
1068
- #: modules/user-moderation/admin/user-moderation-admin.php:246
1069
- msgid "Check this option to require no moderation."
1070
- msgstr "Επιλέξτε αυτό για να μην απαιτείται έλεγχος."
1071
-
1072
- #: modules/user-moderation/admin/user-moderation-admin.php:248
1073
- msgid "E-mail Confirmation"
1074
- msgstr "Επιβεβαίωση Email"
1075
-
1076
- #: modules/user-moderation/admin/user-moderation-admin.php:249
1077
- msgid "Check this option to require new users to confirm their e-mail address before they may log in."
1078
- msgstr "Επιλέξτε αυτό εάν θέλετε οι νέοι χρήστες να επιβεβαιώνουν το email τους προτού να μπορέσουν να συνδεθούν."
1079
-
1080
- #: modules/user-moderation/admin/user-moderation-admin.php:251
1081
- msgid "Admin Approval"
1082
- msgstr "Έγκριση Διαχειριστή"
1083
-
1084
- #: modules/user-moderation/admin/user-moderation-admin.php:252
1085
- msgid "Check this option to require new users to be approved by an administrator before they may log in."
1086
- msgstr "Επιλέξτε αυτό εάν θέλετε οι νέοι χρήστες να εγκρίνονται απο έναν διαχειριστή προτού να μπορέσουν να συνδεθούν."
1087
-
1088
- #: modules/user-moderation/admin/user-moderation-admin.php:269
1089
- msgid "User Moderation is not currently compatible with multisite."
1090
- msgstr "O Έλεγχος Χρήστη δεν είναι συμβατός με εγκατάσταση multisite."
1091
-
1092
- #: modules/user-moderation/user-moderation.php:163
1093
- msgid "<strong>ERROR</strong>: You have not yet confirmed your e-mail address. <a href=\"%s\">Resend activation</a>?"
1094
- msgstr "<strong>ΣΦΑΛΜΑ</strong>: Δεν έχετε επιβεβαιώσει το email σας ακόμα. <a href=\"%s\">Αποστολή email επιβεβαίωσης</a>?"
1095
-
1096
- #: modules/user-moderation/user-moderation.php:166
1097
- msgid "<strong>ERROR</strong>: Your registration has not yet been approved."
1098
- msgstr "strong>ΣΦΑΛΜΑ</strong>: Ο λογαριασμός σας δεν έχει εγκριθεί ακόμα."
1099
-
1100
- #: modules/user-moderation/user-moderation.php:328
1101
- msgid "[%s] Activate Your Account"
1102
- msgstr "[%s] Ενεργοποιήστε τον λογαριασμό σας"
1103
-
1104
- #: modules/user-moderation/user-moderation.php:329
1105
- msgid "Thanks for registering at %s! To complete the activation of your account please click the following link: "
1106
- msgstr "Ευχαριστούμε για την εγγραφή σας στο %s! Για να ολοκληρωθεί η ενεργοποίηση του λογαριασμού σας, παρακαλούμε κάντε κλικ στον παρακάτω σύνδεσμο:"
1107
-
1108
- #: modules/user-moderation/user-moderation.php:362
1109
- msgid "[%s] New User Awaiting Approval"
1110
- msgstr "[%s] Νέος Χρήστης αναμένει έγκριση"
1111
-
1112
- #: modules/user-moderation/user-moderation.php:364
1113
- msgid "New user requires approval on your blog %s:"
1114
- msgstr "Ένας νέος χρήστης αναμένει έγκριση στον ιστότοπο σας %s:"
1115
-
1116
- #: modules/user-moderation/user-moderation.php:367
1117
- msgid "To approve or deny this user:"
1118
- msgstr "Για να εγκρίνετε ή όχι τον χρήστη αυτό:"
1119
-
1120
- #: modules/user-moderation/user-moderation.php:388
1121
- msgid "Your registration was successful but you must now confirm your email address before you can log in. Please check your email and click on the link provided."
1122
- msgstr "Η εγγραφή σας ήταν επιτυχής αλλά τώρα θα πρέπει να επιβεβαιώσε τε το email σας πριν να συνδεθείτε. Παρακαλούμε ελέγξτε το email σας και κάντε κλικ στον σύνδεσμο που συμπεριλαμβάνεται σε αυτό."
1123
-
1124
- #: modules/user-moderation/user-moderation.php:390
1125
- msgid "Your registration was successful but you must now be approved by an administrator before you can log in. You will be notified by e-mail once your account has been reviewed."
1126
- msgstr "Η εγγραφή σας ήταν επιτυχής αλλά τώρα θα πρέπει να εγκριθεί από έναν διαχειριστή πριν συνδεθείτε. Θα ενημερωθείτε μέσω email όταν ο λογαριασμός σας ελεχθεί."
1127
-
1128
- #: modules/user-moderation/user-moderation.php:393
1129
- msgid "Your account has been activated. You may now log in."
1130
- msgstr "Ο λογαριασμός σας ενεργοποιήθηκε. Μπορείτε να συνδεθείτε τώρα."
1131
-
1132
- #: modules/user-moderation/user-moderation.php:395
1133
- msgid "Your account has been activated. Please check your e-mail for your password."
1134
- msgstr "Ο λογαριασμός σας ενεργοποιήθηκε. Παρακαλούμε ελέγξτε το email σας για τον κωδικό σας."
1135
-
1136
- #: modules/user-moderation/user-moderation.php:397
1137
- msgid "<strong>ERROR</strong>: Sorry, that key does not appear to be valid."
1138
- msgstr "<strong>ΣΦΑΛΜΑ</strong>: Μας συγχωρείτε αλλά αυτό το κλειδί είναι άκυρο."
1139
-
1140
- #: modules/user-moderation/user-moderation.php:400
1141
- msgid "<strong>ERROR</strong>: Sorry, the activation e-mail could not be sent."
1142
- msgstr "<strong>ΣΦΑΛΜΑ</strong>: Μας συγχωρείτε αλλά δεν μπόρεσε να σταλεί το email ενεργοποίησης."
1143
-
1144
- #: modules/user-moderation/user-moderation.php:402
1145
- msgid "The activation e-mail has been sent to the e-mail address with which you registered. Please check your email and click on the link provided."
1146
- msgstr "Το email ενεργοποίησης εστάλει στην διεύθυνση που εισάγατε κατά την εγγραφή. Παρακαλούμε ελέγξτε το email σας και κάντε κλικ στον σύνδεσμο που συμπεριλαμβάνεται σε αυτό."
1147
-
1148
- #: templates/login-form.php:12
1149
- #: templates/profile-form.php:91
1150
- #: templates/register-form.php:12
1151
- msgid "Username"
1152
- msgstr "Όνομα Χρήστη"
1153
-
1154
- #: templates/login-form.php:16
1155
- msgid "Password"
1156
- msgstr "Κωδικός"
1157
-
1158
- #: templates/login-form.php:25
1159
- msgid "Remember Me"
1160
- msgstr "Να με θυμάσαι"
1161
-
1162
- #: templates/lostpassword-form.php:12
1163
- msgid "Username or E-mail:"
1164
- msgstr "Όνομα Χρήστη ή email"
1165
-
1166
- #: templates/lostpassword-form.php:20
1167
- msgid "Get New Password"
1168
- msgstr "Αποστολή Νέου Κωδικού"
1169
-
1170
- #: templates/ms-signup-another-blog-form.php:7
1171
- msgid "Get <em>another</em> %s site in seconds"
1172
- msgstr "Αποκτήστε <em>ένα ακόμη</em> %s ιστοχώρο σε δευτερόλεπτα"
1173
-
1174
- #: templates/ms-signup-another-blog-form.php:10
1175
- msgid "There was a problem, please correct the form below and try again."
1176
- msgstr "Σφάλμα, παρακαλώ διορθώστε την παρακάτω φόρμα και ξαναπροσπαθήστε."
1177
-
1178
- #: templates/ms-signup-another-blog-form.php:13
1179
- msgid "Welcome back, %s. By filling out the form below, you can <strong>add another site to your account</strong>. There is no limit to the number of sites you can have, so create to your heart&#8217;s content, but write responsibly!"
1180
- msgstr "Καλής ήλθες, %s. Συμπλήρωσε την παρακάτω φόρμα, για να <strong>προσθέσεις έναν ακόμα ιστοχώρο στον λογαριασμό σου</strong>. Δεν υπάρχει όριο στο αριθμό των ιστοχώρων που μπορείς να δημιουργήσεις!"
1181
-
1182
- #: templates/ms-signup-another-blog-form.php:18
1183
- msgid "Sites you are already a member of:"
1184
- msgstr "Οι ιστοχώροι στους οποίους είστε μέλος:"
1185
-
1186
- #: templates/ms-signup-another-blog-form.php:27
1187
- msgid "If you&#8217;re not going to use a great site domain, leave it for a new user. Now have at it!"
1188
- msgstr "Αν δεν χρησιμοποιήσετε το domain, αφήστε το για κάποιον άλλον."
1189
-
1190
- #: templates/ms-signup-another-blog-form.php:33
1191
- #: templates/ms-signup-blog-form.php:17
1192
- msgid "Site Name:"
1193
- msgstr "Όνομα ιστοχώρου:"
1194
-
1195
- #: templates/ms-signup-another-blog-form.php:35
1196
- #: templates/ms-signup-blog-form.php:19
1197
- msgid "Site Domain:"
1198
- msgstr "Τομέας ιστοτόπου"
1199
-
1200
- #: templates/ms-signup-another-blog-form.php:52
1201
- #: templates/ms-signup-blog-form.php:36
1202
- msgid "sitename"
1203
- msgstr "όνομα ιστοχώρου"
1204
-
1205
- #: templates/ms-signup-another-blog-form.php:54
1206
- #: templates/ms-signup-blog-form.php:38
1207
- msgid "domain"
1208
- msgstr "_Τομέας:"
1209
-
1210
- #: templates/ms-signup-another-blog-form.php:55
1211
- #: templates/ms-signup-blog-form.php:39
1212
- msgid "Your address will be %s."
1213
- msgstr "Η διεύθυνσή σας θα είναι %s."
1214
-
1215
- #: templates/ms-signup-another-blog-form.php:55
1216
- #: templates/ms-signup-blog-form.php:39
1217
- msgid "Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!"
1218
- msgstr "Πρέπει να είναι 4 χαρακτήρες τουλάχιστον, γράμματα ή αριθμοί μόνο. Δε μπορεί να αλλαχθεί, οπότε επιλέξτε προσεκτικά!"
1219
-
1220
- #: templates/ms-signup-another-blog-form.php:58
1221
- #: templates/ms-signup-blog-form.php:42
1222
- msgid "Site Title:"
1223
- msgstr "Τίτλος ιστοχώρου:"
1224
-
1225
- #: templates/ms-signup-another-blog-form.php:66
1226
- #: templates/ms-signup-blog-form.php:50
1227
- msgid "Privacy:"
1228
- msgstr "Απόρρητο:"
1229
-
1230
- #: templates/ms-signup-another-blog-form.php:67
1231
- #: templates/ms-signup-blog-form.php:51
1232
- msgid "Allow my site to appear in search engines like Google, Technorati, and in public listings around this network."
1233
- msgstr "Επιτρέψτε ο ιστόχωρός μου να εμφανίζεται σε μηχανές αναζήτησης, όπως Google, Technorati και σε δημόσιες λίστες."
1234
-
1235
- #: templates/ms-signup-another-blog-form.php:71
1236
- #: templates/ms-signup-blog-form.php:55
1237
- msgid "Yes"
1238
- msgstr "Ναι"
1239
-
1240
- #: templates/ms-signup-another-blog-form.php:75
1241
- #: templates/ms-signup-blog-form.php:59
1242
- msgid "No"
1243
- msgstr "Κανένα"
1244
-
1245
- #: templates/ms-signup-another-blog-form.php:85
1246
- msgid "Create Site"
1247
- msgstr "Δημιουργία Ιστοχώρου"
1248
-
1249
- #: templates/ms-signup-blog-form.php:69
1250
- msgid "Signup"
1251
- msgstr "Εγγραφή"
1252
-
1253
- #: templates/ms-signup-user-form.php:7
1254
- msgid "Get your own %s account in seconds"
1255
- msgstr "Αποκτήστε τον δικό σας %s λογαριασμό σε δευτερόλεπτα"
1256
-
1257
- #: templates/ms-signup-user-form.php:22
1258
- msgid "(Must be at least 4 characters, letters and numbers only.)"
1259
- msgstr "(Πρέπει να είναι τουλάχιστον 4 χαρακτήρες, γράμματα ή αριθμοί μόνο.)"
1260
-
1261
- #: templates/ms-signup-user-form.php:24
1262
- msgid "Email&nbsp;Address:"
1263
- msgstr "Email&nbsp;Διεύθυνση:"
1264
-
1265
- #: templates/ms-signup-user-form.php:30
1266
- msgid "We send your registration email to this address. (Double-check your email address before continuing.)"
1267
- msgstr "Στέλνουμε το Mail εγγραφής σε αυτήν τη διεύθυνση. (Ελέγξτε τη διεύθυνσή σας.)"
1268
-
1269
- #: templates/ms-signup-user-form.php:47
1270
- msgid "Gimme a site!"
1271
- msgstr "Δώσε μου έναν ιστοχώρο!"
1272
-
1273
- #: templates/ms-signup-user-form.php:50
1274
- msgid "Just a username, please."
1275
- msgstr "Ένα όνομα χρήστη, παρακαλώ."
1276
-
1277
- #: templates/ms-signup-user-form.php:54
1278
- msgid "Next"
1279
- msgstr "Επόμενο"
1280
-
1281
- #: templates/profile-form.php:26
1282
- msgid "Personal Options"
1283
- msgstr "Προσωπικές Επιλογές"
1284
-
1285
- #: templates/profile-form.php:31
1286
- msgid "Visual Editor"
1287
- msgstr "Επεξεργαστής WYSIWYG"
1288
-
1289
- #: templates/profile-form.php:32
1290
- msgid "Disable the visual editor when writing"
1291
- msgstr "Απενεργοποιήστε τον visual editor όταν γράφετε"
1292
-
1293
- #: templates/profile-form.php:37
1294
- msgid "Admin Color Scheme"
1295
- msgstr "Χρώμα περιβάλλοντος διαχείρισης"
1296
-
1297
- #: templates/profile-form.php:44
1298
- msgid "Keyboard Shortcuts"
1299
- msgstr "Συντομεύσεις πληκτρολογίου"
1300
-
1301
- #: templates/profile-form.php:45
1302
- msgid "Enable keyboard shortcuts for comment moderation."
1303
- msgstr "Ενεργοποιήστε τις συντομεύσεις πληκτρολογίου για τον έλεγχο σχολίων."
1304
-
1305
- #: templates/profile-form.php:45
1306
- msgid "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">More information</a>"
1307
- msgstr "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">Περισσότερες πληροφορίες</a>"
1308
-
1309
- #: templates/profile-form.php:51
1310
- #: templates/profile-form.php:54
1311
- msgid "Toolbar"
1312
- msgstr "Μπάρα Εργαλείων"
1313
-
1314
- #: templates/profile-form.php:57
1315
- msgid "Show Toolbar when viewing site"
1316
- msgstr "Εμφάνιση Μπάρας Εργαλείων όταν βλέπετε τον ιστοχώρο"
1317
-
1318
- #: templates/profile-form.php:63
1319
- #: templates/profile-form.php:66
1320
- msgid "Show Admin Bar"
1321
- msgstr "Εμφάνιση Μπάρας Διαχείρισης"
1322
-
1323
- #. translators: Show admin bar when viewing site
1324
- #: templates/profile-form.php:69
1325
- msgid "when viewing site"
1326
- msgstr "όταν βλέπετε τον ιστοχώρο"
1327
-
1328
- #. translators: Show admin bar in dashboard
1329
- #: templates/profile-form.php:74
1330
- msgid "in dashboard"
1331
- msgstr "στον Πίνακα Ελέγχου"
1332
-
1333
- #: templates/profile-form.php:87
1334
- msgid "Name"
1335
- msgstr "Όνομα"
1336
-
1337
- #: templates/profile-form.php:92
1338
- msgid "Your username cannot be changed."
1339
- msgstr "Το όνομα Χρήστη δεν μπορεί να αλλάξει."
1340
-
1341
- #: templates/profile-form.php:96
1342
- msgid "First name"
1343
- msgstr "Όνομα"
1344
-
1345
- #: templates/profile-form.php:101
1346
- msgid "Last name"
1347
- msgstr "Επώνυμο"
1348
-
1349
- #: templates/profile-form.php:106
1350
- msgid "Nickname"
1351
- msgstr "Παρατσούκλι"
1352
-
1353
- #: templates/profile-form.php:106
1354
- #: templates/profile-form.php:143
1355
- msgid "(required)"
1356
- msgstr "(απαιτείται)"
1357
-
1358
- #: templates/profile-form.php:111
1359
- msgid "Display name publicly as"
1360
- msgstr "Όνομα που θα εμφανίζεται Δημόσια"
1361
-
1362
- #: templates/profile-form.php:139
1363
- msgid "Contact Info"
1364
- msgstr "Πληροφορίες Επικοινωνίας"
1365
-
1366
- #: templates/profile-form.php:148
1367
- msgid "Website"
1368
- msgstr "Ιστότοπος"
1369
-
1370
- #: templates/profile-form.php:165
1371
- msgid "About Yourself"
1372
- msgstr "Λίγα λόγια για εσάς"
1373
-
1374
- #: templates/profile-form.php:169
1375
- msgid "Biographical Info"
1376
- msgstr "Βιογραφικό"
1377
-
1378
- #: templates/profile-form.php:171
1379
- msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
1380
- msgstr "Μοιραστοίμε μερικές βιογραφικές πληροφορίες για να συμπληρωθεί το πρφίλ σας. Αυτά μπορεί να εμφανίζονται δημόσια."
1381
-
1382
- #: templates/profile-form.php:179
1383
- msgid "New Password"
1384
- msgstr "Νέος Κωδικός"
1385
-
1386
- #: templates/profile-form.php:180
1387
- msgid "If you would like to change the password type a new one. Otherwise leave this blank."
1388
- msgstr "Αν θέλετε να αλλάξετε τον κωδικό σας, εισάγετε τον εδώ. Αλλιώς αφήστε το κενό."
1389
-
1390
- #: templates/profile-form.php:181
1391
- msgid "Type your new password again."
1392
- msgstr "Εισάγετε τον νέο κωδικό ξανά."
1393
-
1394
- #: templates/profile-form.php:183
1395
- #: templates/resetpass-form.php:20
1396
- msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
1397
- msgstr "Σημείωση: Ο Κωδικός θα πρέπει να είναι τουλάχιστον 7 χαρακτήρες. Για να τον κάνετε πιο δυνατό χρησιμοποιείστε πεζά και κεφαλαία γράμματα, αριθμούς και σύμβολα όπως ! \" ? $ % ^ &amp; )."
1398
-
1399
- #: templates/profile-form.php:197
1400
- msgid "Additional Capabilities"
1401
- msgstr "Πρόσθετες Δυνατότητες"
1402
-
1403
- #: templates/profile-form.php:216
1404
- msgid "Update Profile"
1405
- msgstr "Ενημέρωση Προφίλ"
1406
-
1407
- #: templates/register-form.php:23
1408
- msgid "A password will be e-mailed to you."
1409
- msgstr "Θα λάβετε τον Κωδικό με email."
1410
-
1411
- #: templates/resetpass-form.php:12
1412
- msgid "New password"
1413
- msgstr "Νέος Κωδικός"
1414
-
1415
- #: templates/resetpass-form.php:16
1416
- msgid "Confirm new password"
1417
- msgstr "Επιβεβαίωση Κωδικού:"
1418
-
1419
- #. Plugin URI of the plugin/theme
1420
- msgid "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/"
1421
- msgstr "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/"
1422
-
1423
- #. Description of the plugin/theme
1424
- msgid "Themes the WordPress login, registration and forgot password pages according to your theme."
1425
- msgstr "Δημιουργεί σελίδες για Συνδεση, Εγγραφή και Επαναφορά Κωδικού βασισμένες στο Θέμα του Wordpress που χρησιμοποιείτε."
1426
-
1427
- #. Author of the plugin/theme
1428
- msgid "Jeff Farthing"
1429
- msgstr "Jeff Farthing"
1430
-
1431
- #. Author URI of the plugin/theme
1432
- msgid "http://www.jfarthing.com"
1433
- msgstr "http://www.jfarthing.com"
1434
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
language/theme-my-login-es_ES.mo DELETED
Binary file
language/theme-my-login-es_ES.po DELETED
@@ -1,1434 +0,0 @@
1
- # Copyright (C) 2012 Theme My Login
2
- # This file is distributed under the same license as the Theme My Login package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Theme My Login 6.2\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/theme-my-login\n"
7
- "POT-Creation-Date: 2012-03-08 16:19:05+00:00\n"
8
- "PO-Revision-Date: 2012-05-28 16:50-0500\n"
9
- "Last-Translator: Jeff Farthing <jeff@jfarthing.com>\n"
10
- "Language-Team: Ivan de la Jara <unsleep.com@gmail.com>\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-Language: Spanish\n"
15
- "X-Poedit-Country: SPAIN\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
-
18
- #. #-#-#-#-# plugin.pot (Theme My Login 6.2) #-#-#-#-#
19
- #. Plugin Name of the plugin/theme
20
- #: admin/class-theme-my-login-admin.php:42
21
- #: admin/class-theme-my-login-admin.php:43
22
- #: includes/class-theme-my-login-widget.php:24
23
- msgid "Theme My Login"
24
- msgstr "Theme My Login"
25
-
26
- #: admin/class-theme-my-login-admin.php:81
27
- msgid "ERROR: The module \"%1$s\" could not be activated (%2$s)."
28
- msgstr "ERROR: El módulo \"%1$s\" no se pudo activar (%2$s)."
29
-
30
- #: admin/class-theme-my-login-admin.php:103
31
- msgid "NOTICE:"
32
- msgstr "AVISO:"
33
-
34
- #: admin/class-theme-my-login-admin.php:104
35
- msgid "Now that you have activated Theme My Login, please <a href=\"%s\">visit the settings page</a> and familiarize yourself with all of the available options."
36
- msgstr "Ahora que ha activado Theme My Login, por favor, visite <a href=\"%s\">la página de configuración</ a> y familiarizarse con todas las opciones disponibles."
37
-
38
- #: admin/class-theme-my-login-admin.php:106
39
- msgid "Take me to the settings page"
40
- msgstr "Llévame a la página de configuración"
41
-
42
- #: admin/class-theme-my-login-admin.php:119
43
- msgid "You can now login with your e-mail address or username! Try it out!"
44
- msgstr "Ahora puede iniciar sesión con su dirección de correo electrónico o nombre de usuario! ¡Pruébalo!"
45
-
46
- #: admin/class-theme-my-login-admin.php:120
47
- msgid "Theme My Login now utilizes a module system. Modules are similar to WordPress plugins. Each module extends the default functionality of Theme My Login. <a rel=\"tml-options\" href=\"#tml-options-modules\">Click here</a> to get started with modules now."
48
- msgstr "Theme My Login ahora utiliza un sistema de módulos. Los módulos son similares a los plugins de WordPress. Cada módulo extiende la funcionalidad por defecto de Theme My Login. <a rel=\"tml-options\" href=\"#tml-options-modules\"+>Haga clic aquí</a> para empezar a trabajar con módulos de ahora."
49
-
50
- #: admin/class-theme-my-login-admin.php:121
51
- msgid "Theme My Login now allows custom forms. You can create your own form template(s) by copying the default version(s) from \"theme-my-login/templates\" to your current theme directory. Try it out!"
52
- msgstr "Theme My Login permite ahora a los formularios personalizados. Usted puede crear su propia plantilla de formulario (s), copiando la versión por defecto (s) de \"theme-my-login/templates\" a su directorio del tema actual. ¡Pruébalo!"
53
-
54
- #: admin/class-theme-my-login-admin.php:122
55
- msgid "You can maintain your stylesheet changes between upgrades. Just simply copy the file \"theme-my-login/theme-my-login.css\" to your current theme directory and edit it as you please!"
56
- msgstr "Usted puede mantener los cambios de hojas de estilo entre las actualizaciones. Sólo basta con copiar el archivo \"theme-my-login/theme-my-login.css\" en el directorio de tema actual y modificarlo a su gusto!"
57
-
58
- #: admin/class-theme-my-login-admin.php:123
59
- msgid "Theme My Login provides a shortcode that you can use within your posts with multiple parameters to customize the form. Visit the <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Theme My Login Documentation</a> for usage instructions."
60
- msgstr "Theme My Login proporciona un código corto que se puede utilizar dentro de tus mensajes con varios parámetros para personalizar el formulario. Visite el <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Theme My Login Documentación</a> para obtener instrucciones de uso."
61
-
62
- #: admin/class-theme-my-login-admin.php:124
63
- msgid "Jeff is <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">available for hire</a>!"
64
- msgstr "Jeff está <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">disponible para alquiler</a>!"
65
-
66
- #: admin/class-theme-my-login-admin.php:128
67
- msgid "Did You Know?"
68
- msgstr "¿Sabía usted?"
69
-
70
- #: admin/class-theme-my-login-admin.php:177
71
- msgid "General"
72
- msgstr "General"
73
-
74
- #: admin/class-theme-my-login-admin.php:178
75
- msgid "Basic"
76
- msgstr "Básico"
77
-
78
- #: admin/class-theme-my-login-admin.php:179
79
- #: admin/class-theme-my-login-admin.php:319
80
- msgid "Modules"
81
- msgstr "Modulos"
82
-
83
- #: admin/class-theme-my-login-admin.php:181
84
- msgid "Permalinks"
85
- msgstr "Enlaces permanentes"
86
-
87
- #: admin/class-theme-my-login-admin.php:188
88
- msgid "Theme My Login Settings"
89
- msgstr "Configuración Theme My Login"
90
-
91
- #: admin/class-theme-my-login-admin.php:194
92
- #: admin/class-theme-my-login-admin.php:254
93
- msgid "Save Changes"
94
- msgstr "Salvar Cambios"
95
-
96
- #: admin/class-theme-my-login-admin.php:271
97
- msgid "Page ID"
98
- msgstr "ID de página"
99
-
100
- #: admin/class-theme-my-login-admin.php:274
101
- msgid "This should be the ID of the WordPress page that includes the [theme-my-login] shortcode. By default, this page is titled \"Login\"."
102
- msgstr "Este debe ser el ID de la página de WordPress, que incluye el codigo [theme-my-login]. Por defecto, esta página se titula \"Login\"."
103
-
104
- #: admin/class-theme-my-login-admin.php:278
105
- msgid "Pagelist"
106
- msgstr "Lista de páginas"
107
-
108
- #: admin/class-theme-my-login-admin.php:281
109
- msgid "Show Page In Pagelist"
110
- msgstr "Mostrar en la lista de páginas"
111
-
112
- #: admin/class-theme-my-login-admin.php:282
113
- msgid "Enable this setting to add login/logout links to the pagelist generated by functions like wp_list_pages() and wp_page_menu()."
114
- msgstr "Habilitar esta opción para añadir los enlaces Iniciar/Cerrar Sesión a la Lista de Páginas generadas por funciones como wp_list_pages() y wp_page_menu()."
115
-
116
- #: admin/class-theme-my-login-admin.php:286
117
- msgid "Stylesheet"
118
- msgstr "Hoja de estilos"
119
-
120
- #: admin/class-theme-my-login-admin.php:289
121
- msgid "Enable \"theme-my-login.css\""
122
- msgstr "Habilitar \"theme-my-login.css\""
123
-
124
- #: admin/class-theme-my-login-admin.php:290
125
- msgid "In order to keep changes between upgrades, you can store your customized \"theme-my-login.css\" in your current theme directory."
126
- msgstr "A fin de mantener los cambios entre actualizaciones, puede almacenar su \"theme-my-login.css\" personalizado en su directorio de temas actuales."
127
-
128
- #: admin/class-theme-my-login-admin.php:294
129
- msgid "E-mail Login"
130
- msgstr "E-mail Login"
131
-
132
- #: admin/class-theme-my-login-admin.php:297
133
- msgid "Enable e-mail address login"
134
- msgstr "Habilitar el correo electrónico de inicio de sesión de direcciones"
135
-
136
- #: admin/class-theme-my-login-admin.php:298
137
- msgid "Allows users to login using their e-mail address in place of their username."
138
- msgstr "Permite a los usuarios iniciar la sesión utilizando su dirección de correo electrónico en lugar de su nombre de usuario."
139
-
140
- #: admin/class-theme-my-login-admin.php:323
141
- msgid "Enable %s"
142
- msgstr "Habilitar %s"
143
-
144
- #: admin/class-theme-my-login-admin.php:325
145
- msgid "No modules found."
146
- msgstr "No se encontraron modulos."
147
-
148
- #: admin/class-theme-my-login-admin.php:343
149
- #: includes/class-theme-my-login-widget.php:87
150
- msgid "Login"
151
- msgstr "Iniciar Sesión"
152
-
153
- #: admin/class-theme-my-login-admin.php:344
154
- #: includes/class-theme-my-login-template.php:141
155
- #: includes/class-theme-my-login-widget.php:87
156
- #: templates/register-form.php:25
157
- msgid "Register"
158
- msgstr "Registro"
159
-
160
- #: admin/class-theme-my-login-admin.php:345
161
- #: includes/class-theme-my-login-template.php:147
162
- #: includes/class-theme-my-login-widget.php:87
163
- msgid "Lost Password"
164
- msgstr "Recuperar Contraseña"
165
-
166
- #: admin/class-theme-my-login-admin.php:475
167
- msgid "One of the modules is invalid."
168
- msgstr "Uno de los módulos no es válida."
169
-
170
- #: admin/class-theme-my-login-admin.php:531
171
- msgid "Invalid module path."
172
- msgstr "Ruta del módulo no válido."
173
-
174
- #: admin/class-theme-my-login-admin.php:533
175
- msgid "Module file does not exist."
176
- msgstr "Módulo de archivo no existe."
177
-
178
- #: admin/class-theme-my-login-admin.php:537
179
- msgid "The module does not have a valid header."
180
- msgstr "El módulo no tiene una cabecera válida."
181
-
182
- #: includes/class-theme-my-login-ms-signup.php:117
183
- msgctxt "Multisite active signup type"
184
- msgid "all"
185
- msgstr "todo"
186
-
187
- #: includes/class-theme-my-login-ms-signup.php:118
188
- msgctxt "Multisite active signup type"
189
- msgid "none"
190
- msgstr "ninguno"
191
-
192
- #: includes/class-theme-my-login-ms-signup.php:119
193
- msgctxt "Multisite active signup type"
194
- msgid "blog"
195
- msgstr "blog"
196
-
197
- #: includes/class-theme-my-login-ms-signup.php:120
198
- msgctxt "Multisite active signup type"
199
- msgid "user"
200
- msgstr "usuario"
201
-
202
- #: includes/class-theme-my-login-ms-signup.php:123
203
- msgid "Greetings Site Administrator! You are currently allowing &#8220;%s&#8221; registrations. To change or disable registration go to your <a href=\"%s\">Options page</a>."
204
- msgstr "¡Felicidades administrador del sitio! Ahora ya permites registros de &#8220;%s&#8221;. Para cambiarlo o desactivar los registros ve a tu <a href=\"%s\">página de opciones</a>."
205
-
206
- #: includes/class-theme-my-login-ms-signup.php:129
207
- msgid "Registration has been disabled."
208
- msgstr "Los registros están deshabilitados."
209
-
210
- #: includes/class-theme-my-login-ms-signup.php:131
211
- msgid "You must first <a href=\"%s\">log in</a>, and then you can create a new site."
212
- msgstr "Primero debes <a href=\"%s\">iniciar sesión</a>, después podrás crear un sitio nuevo."
213
-
214
- #: includes/class-theme-my-login-ms-signup.php:155
215
- msgid "%s is your new username"
216
- msgstr "%s es tu nuevo nombre de usuario"
217
-
218
- #: includes/class-theme-my-login-ms-signup.php:156
219
- msgid "But, before you can start using your new username, <strong>you must activate it</strong>."
220
- msgstr "Pero, antes de poder comenzar a usar tu nuevo nombre de usuario, <strong>debes activarlo</strong>."
221
-
222
- #: includes/class-theme-my-login-ms-signup.php:157
223
- msgid "Check your inbox at <strong>%1$s</strong> and click the link given."
224
- msgstr "Comprueba la bandeja de entrada de <strong>%1$s</strong> y haz clic en el enlace que encontrarás."
225
-
226
- #: includes/class-theme-my-login-ms-signup.php:158
227
- msgid "If you do not activate your username within two days, you will have to sign up again."
228
- msgstr "Si no activas tu nombre de usuario en dos días, deberás registrarte de nuevo."
229
-
230
- #: includes/class-theme-my-login-ms-signup.php:162
231
- msgid "User registration has been disabled."
232
- msgstr "No se permite el registro de nuevos usuarios."
233
-
234
- #: includes/class-theme-my-login-ms-signup.php:194
235
- msgid "Congratulations! Your new site, %s, is almost ready."
236
- msgstr "¡Felicidades! Tu nuevo sitio , %s, ya está listo."
237
-
238
- #: includes/class-theme-my-login-ms-signup.php:196
239
- msgid "But, before you can start using your site, <strong>you must activate it</strong>."
240
- msgstr "Pero, antes de que puedas comenzar a usar tu sitio, <strong>debes activarlo</strong>."
241
-
242
- #: includes/class-theme-my-login-ms-signup.php:197
243
- msgid "Check your inbox at <strong>%s</strong> and click the link given."
244
- msgstr "Comprueba la bandeja de entrada de <strong>%s</strong> y haz clic en el enlace que encontrarás."
245
-
246
- #: includes/class-theme-my-login-ms-signup.php:198
247
- msgid "If you do not activate your site within two days, you will have to sign up again."
248
- msgstr "Si no activas tu sitio en dos días, deberás registrarte de nuevo."
249
-
250
- #: includes/class-theme-my-login-ms-signup.php:199
251
- msgid "Still waiting for your email?"
252
- msgstr "¿Continúas esperando el correo electrónico?"
253
-
254
- #: includes/class-theme-my-login-ms-signup.php:201
255
- msgid "If you haven&#8217;t received your email yet, there are a number of things you can do:"
256
- msgstr "Si todavía no has recibido el correo electrónico, hay una serie de acciones que puedes realizar:"
257
-
258
- #: includes/class-theme-my-login-ms-signup.php:203
259
- msgid "Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control."
260
- msgstr "Espera un poco más. Hay veces, que el correo electrónico puede tardar en salir, por razones que escapan a nuestro control."
261
-
262
- #: includes/class-theme-my-login-ms-signup.php:204
263
- msgid "Check the junk or spam folder of your email client. Sometime emails wind up there by mistake."
264
- msgstr "Comprueba la carpeta de correo basura, correo no deseado o spam de tu cliente de correo electrónico o correo web. A veces los correos electrónicos acaban ahí por equivocación."
265
-
266
- #: includes/class-theme-my-login-ms-signup.php:205
267
- msgid "Have you entered your email correctly? You have entered %s, if it&#8217;s incorrect, you will not receive your email."
268
- msgstr "¿Has introducido tu correo electrónico correctamente? Has introducido %s, si es incorrecto no lo recibirás."
269
-
270
- #: includes/class-theme-my-login-ms-signup.php:211
271
- msgid "Site registration has been disabled."
272
- msgstr "No se permiten nuevos registros de sitios."
273
-
274
- #: includes/class-theme-my-login-ms-signup.php:235
275
- msgid "The site %s is yours."
276
- msgstr "El sitio %s es tuyo."
277
-
278
- #: includes/class-theme-my-login-ms-signup.php:237
279
- msgid "<a href=\"http://%1$s\">http://%2$s</a> is your new site. <a href=\"%3$s\">Log in</a> as &#8220;%4$s&#8221; using your existing password."
280
- msgstr "<a href=\"http://%1$s\">http://%2$s</a> es tu nuevo sitio. <a href=\"%3$s\">Accede</a> como &#8220;%4$s&#8221; usando tu contraseña actual."
281
-
282
- #: includes/class-theme-my-login-ms-signup.php:253
283
- msgid "Sorry, new registrations are not allowed at this time."
284
- msgstr "Disculpa, los nuevos registros están deshabilitados."
285
-
286
- #: includes/class-theme-my-login-ms-signup.php:255
287
- msgid "You are logged in already. No need to register again!"
288
- msgstr "Ya te has identificado. ¡No necesitas registrarte de nuevo!"
289
-
290
- #: includes/class-theme-my-login-ms-signup.php:261
291
- msgid "<p><em>The site you were looking for, <strong>%s</strong> does not exist, but you can create it now!</em></p>"
292
- msgstr "<p><em>El sitio que estás buscando, <strong>%s</strong> no existe pero puedes crearlo ahora.</em></p>"
293
-
294
- #: includes/class-theme-my-login-ms-signup.php:263
295
- msgid "<p><em>The site you were looking for, <strong>%s</strong>, does not exist.</em></p>"
296
- msgstr "<p><em>El sitio que estás buscando, <strong>%s</strong> no existe pero puedes crearlo ahora.</em></p>"
297
-
298
- #: includes/class-theme-my-login-ms-signup.php:402
299
- msgid "Activation Key Required"
300
- msgstr "Requiere clave de activación"
301
-
302
- #: includes/class-theme-my-login-ms-signup.php:405
303
- msgid "Activation Key:"
304
- msgstr "Clave de activación:"
305
-
306
- #: includes/class-theme-my-login-ms-signup.php:409
307
- #: includes/class-theme-my-login-ms-signup.php:481
308
- msgid "Activate"
309
- msgstr "Activar"
310
-
311
- #: includes/class-theme-my-login-ms-signup.php:421
312
- #: includes/class-theme-my-login-ms-signup.php:441
313
- msgid "Your account is now active!"
314
- msgstr "¡Tu cuenta ahora está activada!"
315
-
316
- #: includes/class-theme-my-login-ms-signup.php:425
317
- msgid "Your account has been activated. You may now <a href=\"%1$s\">login</a> to the site using your chosen username of &#8220;%2$s&#8221;. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%4$s\">reset your password</a>."
318
- msgstr "Se ha activado tu cuenta. Ahora puedes <a href=\"%1$s\">acceder</a> al sitio usando el nombre de usuario que elegiste de &#8220;%2$s&#8221;. Por favor, revisa tu bandeja de entrada del correo electrónico %3$s para obtener tu contraseña e instrucciones de acceso. Si no recibes un correo electrónico revisa la carpeta de spam. Si aún así no recibes un correo electrónico en una hora puedes <a href=\"%4$s\">reiniciar tu contraseña aquí</a>."
319
-
320
- #: includes/class-theme-my-login-ms-signup.php:427
321
- msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a>."
322
- msgstr "Tu sitio en <a href=\"%1$s\">%2$s</a> está activo. Ahora puedes acceder a tu sitio usando el nombre de usuario elegido de &#8220;%3$s&#8221;. Por favor, revisa la bandeja de entrada de %4$s para ver tu contraseña e instrucciones de acceso. Si no recibes un correo electrónico revisa la bandeja de spam. Si ni aún así recibieras un correo electrónico en una hora puedes <a href=\"%5$s\">reiniciar tu contraseña</a>."
323
-
324
- #: includes/class-theme-my-login-ms-signup.php:432
325
- msgid "An error occurred during the activation"
326
- msgstr "Ha habido un error en la activación"
327
-
328
- #: includes/class-theme-my-login-ms-signup.php:444
329
- #: templates/ms-signup-user-form.php:16
330
- msgid "Username:"
331
- msgstr "Nombre de usuario:"
332
-
333
- #: includes/class-theme-my-login-ms-signup.php:445
334
- #: modules/custom-passwords/custom-passwords.php:29
335
- #: modules/custom-passwords/custom-passwords.php:56
336
- msgid "Password:"
337
- msgstr "Contraseña:"
338
-
339
- #: includes/class-theme-my-login-ms-signup.php:449
340
- msgid "Your account is now activated. <a href=\"%1$s\">View your site</a> or <a href=\"%2$s\">Login</a>"
341
- msgstr "Tu cuenta se ha activado. <a href=\"%1$s\">Visualiza tu sitio</a> o <a href=\"%2$s\">Accede</a>"
342
-
343
- #: includes/class-theme-my-login-ms-signup.php:451
344
- msgid "Your account is now activated. <a href=\"%1$s\">Login</a> or go back to the <a href=\"%2$s\">homepage</a>."
345
- msgstr "Tu cuenta se ha activado. <a href=\"%1$s\">Accede</a> o vuelve a la <a href=\"%2$s\">página de inicio</a>."
346
-
347
- #: includes/class-theme-my-login-template.php:137
348
- msgid "Welcome, %s"
349
- msgstr "Bienvenido, %s"
350
-
351
- #: includes/class-theme-my-login-template.php:151
352
- #: includes/class-theme-my-login.php:540
353
- #: templates/login-form.php:28
354
- msgid "Log In"
355
- msgstr "Iniciar Sesión"
356
-
357
- #: includes/class-theme-my-login-template.php:315
358
- #: modules/custom-user-links/custom-user-links.php:82
359
- msgid "Dashboard"
360
- msgstr "Tablero"
361
-
362
- #: includes/class-theme-my-login-template.php:316
363
- #: modules/custom-user-links/custom-user-links.php:83
364
- #: modules/themed-profiles/admin/themed-profiles-admin.php:66
365
- msgid "Profile"
366
- msgstr "Perfil"
367
-
368
- #: includes/class-theme-my-login-template.php:334
369
- #: modules/custom-redirection/custom-redirection.php:197
370
- msgid "Log out"
371
- msgstr "Cerrar Sesión"
372
-
373
- #: includes/class-theme-my-login-template.php:363
374
- msgid "Register For This Site"
375
- msgstr "Regístrate en este sitio"
376
-
377
- #: includes/class-theme-my-login-template.php:366
378
- msgid "Please enter your username or email address. You will receive a link to create a new password via email."
379
- msgstr "Por favor, ingrese su nombre de usuario o dirección de correo electrónico. Usted recibirá un enlace para crear una nueva contraseña por correo electrónico."
380
-
381
- #: includes/class-theme-my-login-template.php:369
382
- msgid "Enter your new password below."
383
- msgstr "Introduce tu nueva contraseña abajo."
384
-
385
- #: includes/class-theme-my-login-widget.php:23
386
- msgid "A login form for your blog."
387
- msgstr "Un formulario de acceso para tu blog."
388
-
389
- #: includes/class-theme-my-login-widget.php:88
390
- msgid "Default Action"
391
- msgstr "Acción por defecto"
392
-
393
- #: includes/class-theme-my-login-widget.php:95
394
- msgid "Show When Logged In"
395
- msgstr "Mostrar cuando este iniciada la sesión"
396
-
397
- #: includes/class-theme-my-login-widget.php:97
398
- msgid "Show Title"
399
- msgstr "Mostrar Título"
400
-
401
- #: includes/class-theme-my-login-widget.php:99
402
- msgid "Show Login Link"
403
- msgstr "Mostrar vínculo de Inicio de sesión"
404
-
405
- #: includes/class-theme-my-login-widget.php:101
406
- msgid "Show Register Link"
407
- msgstr "Mostrar vículo de Registro"
408
-
409
- #: includes/class-theme-my-login-widget.php:103
410
- msgid "Show Lost Password Link"
411
- msgstr "Mostrar vínculo de Recuperar contraseña"
412
-
413
- #: includes/class-theme-my-login-widget.php:105
414
- msgid "Show Gravatar"
415
- msgstr "Mostrar Gravatar"
416
-
417
- #: includes/class-theme-my-login-widget.php:106
418
- msgid "Gravatar Size"
419
- msgstr "Tamaño del Gravatar"
420
-
421
- #: includes/class-theme-my-login-widget.php:108
422
- msgid "Allow Registration"
423
- msgstr "Permitir Registro"
424
-
425
- #: includes/class-theme-my-login-widget.php:110
426
- msgid "Allow Password Recovery"
427
- msgstr "Permitir Recuperación de Contraseña"
428
-
429
- #: includes/class-theme-my-login.php:245
430
- msgid "Sorry, that key does not appear to be valid."
431
- msgstr "Lo sentimos, esa clave no parece ser válida."
432
-
433
- #: includes/class-theme-my-login.php:261
434
- msgid "The passwords do not match."
435
- msgstr "Las contraseñas no coinciden."
436
-
437
- #: includes/class-theme-my-login.php:367
438
- msgid "<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href=\"http://www.google.com/cookies.html\">enable cookies</a> to use WordPress."
439
- msgstr "<strong>ERROR</strong>: Las Cookies están bloqueadas o no las soporta tu navegador. Debes <a href='http://www.google.com/cookies.html'>habilitar las cookies</a> para usar WordPress."
440
-
441
- #: includes/class-theme-my-login.php:371
442
- msgid "You are now logged out."
443
- msgstr "Ahora estás Desconectado."
444
-
445
- #: includes/class-theme-my-login.php:373
446
- msgid "User registration is currently not allowed."
447
- msgstr "El registro de usuarios no está permitido actualmente."
448
-
449
- #: includes/class-theme-my-login.php:375
450
- msgid "Check your e-mail for the confirmation link."
451
- msgstr "Revise su correo electrónico para el enlace de confirmación. No olvide revisar la Bandeja de Correo no deseado, SPAM."
452
-
453
- #: includes/class-theme-my-login.php:377
454
- msgid "Your password has been reset."
455
- msgstr "Tu contraseña ha sido restaurada."
456
-
457
- #: includes/class-theme-my-login.php:379
458
- msgid "Registration complete. Please check your e-mail."
459
- msgstr "Registro completo. Por favor, consulte su correo electrónico. No olvide revisar la Bandeja de Correo no deseado, SPAM."
460
-
461
- #: includes/class-theme-my-login.php:381
462
- msgid "Your session has expired. Please log-in again."
463
- msgstr "Tu sesión ha expirado. Vuelve a acceder."
464
-
465
- #: includes/class-theme-my-login.php:383
466
- msgid "Please log in to continue."
467
- msgstr "Inicia sesión para continuar."
468
-
469
- #: includes/class-theme-my-login.php:540
470
- msgid "Log Out"
471
- msgstr "Cerrar Sesión"
472
-
473
- #: includes/class-theme-my-login.php:925
474
- msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
475
- msgstr "<strong>ERROR </ strong>: Introduzca un nombre de usuario o dirección de correo electrónico."
476
-
477
- #: includes/class-theme-my-login.php:929
478
- msgid "<strong>ERROR</strong>: There is no user registered with that email address."
479
- msgstr "<strong>ERROR </ strong>: No hay un usuario registrado con esa dirección de correo electrónico."
480
-
481
- #: includes/class-theme-my-login.php:941
482
- msgid "<strong>ERROR</strong>: Invalid username or e-mail."
483
- msgstr "<strong>ERROR </ strong>: Nombre de usuario o correo electrónico no validosl."
484
-
485
- #: includes/class-theme-my-login.php:955
486
- msgid "Password reset is not allowed for this user"
487
- msgstr "El restablecimiento de contraseña no está permitido para este usuario"
488
-
489
- #: includes/class-theme-my-login.php:967
490
- msgid "Someone requested that the password be reset for the following account:"
491
- msgstr "Alguien ha solicitado que sea restaurada la contraseña de la siguiente cuenta:"
492
-
493
- #: includes/class-theme-my-login.php:969
494
- #: modules/custom-email/custom-email.php:692
495
- #: modules/custom-email/custom-email.php:709
496
- #: modules/user-moderation/admin/user-moderation-admin.php:164
497
- #: modules/user-moderation/user-moderation.php:365
498
- msgid "Username: %s"
499
- msgstr "Usuario: %s"
500
-
501
- #: includes/class-theme-my-login.php:970
502
- msgid "If this was a mistake, just ignore this email and nothing will happen."
503
- msgstr "Si ha sido un error, ignora este correo y no pasará nada."
504
-
505
- #: includes/class-theme-my-login.php:971
506
- msgid "To reset your password, visit the following address:"
507
- msgstr "Para restaurar la contraseña, visita la siguiente dirección:"
508
-
509
- #: includes/class-theme-my-login.php:982
510
- msgid "[%s] Password Reset"
511
- msgstr "[%s] Reestablecer Contraseña"
512
-
513
- #: includes/class-theme-my-login.php:988
514
- #: modules/user-moderation/admin/user-moderation-admin.php:53
515
- #: modules/user-moderation/admin/user-moderation-admin.php:174
516
- #: modules/user-moderation/admin/user-moderation-admin.php:210
517
- msgid "The e-mail could not be sent."
518
- msgstr "El e-mail no pudo ser enviado."
519
-
520
- #: includes/class-theme-my-login.php:988
521
- #: modules/user-moderation/admin/user-moderation-admin.php:53
522
- #: modules/user-moderation/admin/user-moderation-admin.php:174
523
- #: modules/user-moderation/admin/user-moderation-admin.php:210
524
- msgid "Possible reason: your host may have disabled the mail() function..."
525
- msgstr "Posible razón: su hosting ha desactivado la función mail()..."
526
-
527
- #: includes/class-theme-my-login.php:1011
528
- #: includes/class-theme-my-login.php:1014
529
- #: includes/class-theme-my-login.php:1019
530
- #: modules/user-moderation/user-moderation.php:238
531
- #: modules/user-moderation/user-moderation.php:241
532
- #: modules/user-moderation/user-moderation.php:246
533
- msgid "Invalid key"
534
- msgstr "Clave no válida"
535
-
536
- #: includes/class-theme-my-login.php:1059
537
- msgid "<strong>ERROR</strong>: Please enter a username."
538
- msgstr "<strong>ERROR </ strong>: Por favor, introduzca un nombre de usuario."
539
-
540
- #: includes/class-theme-my-login.php:1061
541
- msgid "<strong>ERROR</strong>: This username is invalid because it uses illegal characters. Please enter a valid username."
542
- msgstr "<strong>ERROR</strong>: Este nombre de usuario no es válido, ya que usa caracteres no permitidos. Por favor, introduce un nombre de usuario válido."
543
-
544
- #: includes/class-theme-my-login.php:1064
545
- msgid "<strong>ERROR</strong>: This username is already registered, please choose another one."
546
- msgstr "<strong>ERROR </ strong>: Este nombre de usuario ya está registrado, por favor, elija otro."
547
-
548
- #: includes/class-theme-my-login.php:1069
549
- msgid "<strong>ERROR</strong>: Please type your e-mail address."
550
- msgstr "<strong>ERROR </ strong>: Por favor escriba su dirección de correo electrónico."
551
-
552
- #: includes/class-theme-my-login.php:1071
553
- msgid "<strong>ERROR</strong>: The email address isn&#8217;t correct."
554
- msgstr "<strong>ERROR </ strong>: La dirección de correo electrónico no es correcta."
555
-
556
- #: includes/class-theme-my-login.php:1074
557
- msgid "<strong>ERROR</strong>: This email is already registered, please choose another one."
558
- msgstr "<strong>ERROR </ strong>: Este correo electrónico ya está registrado, por favor, elija otro."
559
-
560
- #: includes/class-theme-my-login.php:1087
561
- msgid "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href=\"mailto:%s\">webmaster</a> !"
562
- msgstr "<strong>ERROR </ strong>: No se pudo registrar... por favor, póngase en contacto con el <a href=\"mailto:%s\"> webmaster</ a>!"
563
-
564
- #: modules/custom-email/admin/custom-email-admin.php:46
565
- #: modules/custom-email/admin/custom-email-admin.php:265
566
- msgid "User Notification"
567
- msgstr "Notificación del Usuario"
568
-
569
- #: modules/custom-email/admin/custom-email-admin.php:49
570
- msgid "This e-mail will be sent to a new user upon registration."
571
- msgstr "Este e-mail será enviado a un nuevo usuario al registrarse."
572
-
573
- #: modules/custom-email/admin/custom-email-admin.php:50
574
- #: modules/custom-email/admin/custom-email-admin.php:269
575
- msgid "Please be sure to include the variable %user_pass% if using default passwords or else the user will not know their password!"
576
- msgstr "Por favor, asegúrese de incluir la variable de %user_pass% si se utiliza contraseñas por defecto, o bien el usuario no conoce su contraseña!"
577
-
578
- #: modules/custom-email/admin/custom-email-admin.php:51
579
- #: modules/custom-email/admin/custom-email-admin.php:81
580
- #: modules/custom-email/admin/custom-email-admin.php:130
581
- #: modules/custom-email/admin/custom-email-admin.php:175
582
- #: modules/custom-email/admin/custom-email-admin.php:224
583
- #: modules/custom-email/admin/custom-email-admin.php:270
584
- #: modules/custom-email/admin/custom-email-admin.php:300
585
- #: modules/custom-email/admin/custom-email-admin.php:348
586
- msgid "If any field is left empty, the default will be used instead."
587
- msgstr "Si algún campo se deja vacío, el valor por defecto se utilizará en su lugar."
588
-
589
- #: modules/custom-email/admin/custom-email-admin.php:54
590
- #: modules/custom-email/admin/custom-email-admin.php:87
591
- #: modules/custom-email/admin/custom-email-admin.php:133
592
- #: modules/custom-email/admin/custom-email-admin.php:181
593
- #: modules/custom-email/admin/custom-email-admin.php:227
594
- #: modules/custom-email/admin/custom-email-admin.php:273
595
- #: modules/custom-email/admin/custom-email-admin.php:306
596
- #: modules/custom-email/admin/custom-email-admin.php:351
597
- msgid "From Name"
598
- msgstr "De Nombre"
599
-
600
- #: modules/custom-email/admin/custom-email-admin.php:57
601
- #: modules/custom-email/admin/custom-email-admin.php:90
602
- #: modules/custom-email/admin/custom-email-admin.php:136
603
- #: modules/custom-email/admin/custom-email-admin.php:184
604
- #: modules/custom-email/admin/custom-email-admin.php:230
605
- #: modules/custom-email/admin/custom-email-admin.php:276
606
- #: modules/custom-email/admin/custom-email-admin.php:309
607
- #: modules/custom-email/admin/custom-email-admin.php:354
608
- msgid "From E-mail"
609
- msgstr "De Correo electrónico"
610
-
611
- #: modules/custom-email/admin/custom-email-admin.php:60
612
- #: modules/custom-email/admin/custom-email-admin.php:93
613
- #: modules/custom-email/admin/custom-email-admin.php:139
614
- #: modules/custom-email/admin/custom-email-admin.php:187
615
- #: modules/custom-email/admin/custom-email-admin.php:233
616
- #: modules/custom-email/admin/custom-email-admin.php:279
617
- #: modules/custom-email/admin/custom-email-admin.php:312
618
- #: modules/custom-email/admin/custom-email-admin.php:357
619
- msgid "E-mail Format"
620
- msgstr "Formato del correo electrónico"
621
-
622
- #: modules/custom-email/admin/custom-email-admin.php:62
623
- #: modules/custom-email/admin/custom-email-admin.php:95
624
- #: modules/custom-email/admin/custom-email-admin.php:141
625
- #: modules/custom-email/admin/custom-email-admin.php:189
626
- #: modules/custom-email/admin/custom-email-admin.php:235
627
- #: modules/custom-email/admin/custom-email-admin.php:281
628
- #: modules/custom-email/admin/custom-email-admin.php:314
629
- #: modules/custom-email/admin/custom-email-admin.php:359
630
- msgid "Plain Text"
631
- msgstr "Texto sin formato"
632
-
633
- #: modules/custom-email/admin/custom-email-admin.php:63
634
- #: modules/custom-email/admin/custom-email-admin.php:96
635
- #: modules/custom-email/admin/custom-email-admin.php:142
636
- #: modules/custom-email/admin/custom-email-admin.php:190
637
- #: modules/custom-email/admin/custom-email-admin.php:236
638
- #: modules/custom-email/admin/custom-email-admin.php:282
639
- #: modules/custom-email/admin/custom-email-admin.php:315
640
- #: modules/custom-email/admin/custom-email-admin.php:360
641
- msgid "HTML"
642
- msgstr "HTML"
643
-
644
- #: modules/custom-email/admin/custom-email-admin.php:66
645
- #: modules/custom-email/admin/custom-email-admin.php:99
646
- #: modules/custom-email/admin/custom-email-admin.php:145
647
- #: modules/custom-email/admin/custom-email-admin.php:193
648
- #: modules/custom-email/admin/custom-email-admin.php:239
649
- #: modules/custom-email/admin/custom-email-admin.php:285
650
- #: modules/custom-email/admin/custom-email-admin.php:318
651
- #: modules/custom-email/admin/custom-email-admin.php:363
652
- msgid "Subject"
653
- msgstr "Título"
654
-
655
- #: modules/custom-email/admin/custom-email-admin.php:69
656
- #: modules/custom-email/admin/custom-email-admin.php:102
657
- #: modules/custom-email/admin/custom-email-admin.php:148
658
- #: modules/custom-email/admin/custom-email-admin.php:196
659
- #: modules/custom-email/admin/custom-email-admin.php:242
660
- #: modules/custom-email/admin/custom-email-admin.php:288
661
- #: modules/custom-email/admin/custom-email-admin.php:321
662
- #: modules/custom-email/admin/custom-email-admin.php:366
663
- msgid "Message"
664
- msgstr "Mensaje"
665
-
666
- #: modules/custom-email/admin/custom-email-admin.php:72
667
- #: modules/custom-email/admin/custom-email-admin.php:105
668
- #: modules/custom-email/admin/custom-email-admin.php:151
669
- #: modules/custom-email/admin/custom-email-admin.php:199
670
- #: modules/custom-email/admin/custom-email-admin.php:245
671
- #: modules/custom-email/admin/custom-email-admin.php:291
672
- #: modules/custom-email/admin/custom-email-admin.php:324
673
- #: modules/custom-email/admin/custom-email-admin.php:369
674
- msgid "Available Variables"
675
- msgstr "Variables Disponibles"
676
-
677
- #: modules/custom-email/admin/custom-email-admin.php:77
678
- #: modules/custom-email/admin/custom-email-admin.php:171
679
- #: modules/custom-email/admin/custom-email-admin.php:296
680
- msgid "Admin Notification"
681
- msgstr "Notificación de Administración"
682
-
683
- #: modules/custom-email/admin/custom-email-admin.php:80
684
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon new user registration."
685
- msgstr "Este e-mail será enviado a la dirección de correo electrónico o direcciones (varias direcciones pueden estar separados por comas) se especifica a continuación, al registro de nuevos usuarios."
686
-
687
- #: modules/custom-email/admin/custom-email-admin.php:84
688
- #: modules/custom-email/admin/custom-email-admin.php:178
689
- #: modules/custom-email/admin/custom-email-admin.php:303
690
- msgid "To"
691
- msgstr "a"
692
-
693
- #: modules/custom-email/admin/custom-email-admin.php:128
694
- msgid "This e-mail will be sent to a user when they attempt to recover their password."
695
- msgstr "Este e-mail será enviado a un usuario cuando intente recuperar su contraseña."
696
-
697
- #: modules/custom-email/admin/custom-email-admin.php:129
698
- msgid "Please be sure to include the variable %reseturl% or else the user will not be able to recover their password!"
699
- msgstr "Por favor, asegúrese de incluir la variable de %reseturl% o de lo contrario el usuario no será capaz de recuperar su contraseña!"
700
-
701
- #: modules/custom-email/admin/custom-email-admin.php:174
702
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon user password change."
703
- msgstr "Este e-mail será enviado a la dirección de correo electrónico o direcciones (varias direcciones pueden estar separados por comas) se especifica a continuación, en el cambio de contraseña de usuario."
704
-
705
- #: modules/custom-email/admin/custom-email-admin.php:201
706
- #: modules/custom-email/admin/custom-email-admin.php:326
707
- msgid "Disable Admin Notification"
708
- msgstr "Deshabilitar Notificación al Administrador"
709
-
710
- #: modules/custom-email/admin/custom-email-admin.php:222
711
- msgid "This e-mail will be sent to a new user upon registration when \"E-mail Confirmation\" is checked for \"User Moderation\"."
712
- msgstr "Este e-mail será enviado a un nuevo usuario al momento de la inscripción \"e-mail de confirmación\" está marcada por \"moderación de usuario\"."
713
-
714
- #: modules/custom-email/admin/custom-email-admin.php:223
715
- msgid "Please be sure to include the variable %activateurl% or else the user will not be able to activate their account!"
716
- msgstr "Por favor, asegúrese de incluir la variable de %activateurl% o de lo contrario el usuario no podrá activar su cuenta!"
717
-
718
- #: modules/custom-email/admin/custom-email-admin.php:268
719
- msgid "This e-mail will be sent to a new user upon admin approval when \"Admin Approval\" is checked for \"User Moderation\"."
720
- msgstr "Este e-mail será enviado a un nuevo usuario a la aprobación de administrador cuando \"de aprobación de administrador\" está marcada por \"la moderación del usuario\"."
721
-
722
- #: modules/custom-email/admin/custom-email-admin.php:299
723
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below upon user registration when \"Admin Approval\" is checked for \"User Moderation\"."
724
- msgstr "Este e-mail será enviado a la dirección de correo electrónico o direcciones (varias direcciones pueden estar separados por comas) se especifica a continuación en el registro del usuario, cuando \"de aprobación de administrador\" está marcada por \"la moderación del usuario\"."
725
-
726
- #: modules/custom-email/admin/custom-email-admin.php:347
727
- msgid "This e-mail will be sent to a user who is deleted/denied when \"Admin Approval\" is checked for \"User Moderation\" and the user's role is \"Pending\"."
728
- msgstr "Este e-mail será enviado a un usuario que se elimina/denegado cuando \"de aprobación de administrador\" está marcada por \"la moderación de usuario\" y la función del usuario es \"Pendiente\"."
729
-
730
- #: modules/custom-email/admin/custom-email-admin.php:390
731
- #: templates/profile-form.php:143
732
- #: templates/register-form.php:16
733
- msgid "E-mail"
734
- msgstr "Correo electrónico"
735
-
736
- #: modules/custom-email/admin/custom-email-admin.php:391
737
- msgid "New User"
738
- msgstr "Nuevo Usuario"
739
-
740
- #: modules/custom-email/admin/custom-email-admin.php:392
741
- msgid "Retrieve Password"
742
- msgstr "Recuperar Contraseña"
743
-
744
- #: modules/custom-email/admin/custom-email-admin.php:393
745
- #: templates/resetpass-form.php:26
746
- msgid "Reset Password"
747
- msgstr "Reestablecer Contraseña"
748
-
749
- #: modules/custom-email/admin/custom-email-admin.php:395
750
- msgid "User Activation"
751
- msgstr "Activación de Usuario"
752
-
753
- #: modules/custom-email/admin/custom-email-admin.php:396
754
- msgid "User Approval"
755
- msgstr "Aprobación de Usuario"
756
-
757
- #: modules/custom-email/admin/custom-email-admin.php:397
758
- msgid "User Denial"
759
- msgstr "Denegación de Usuario"
760
-
761
- #: modules/custom-email/custom-email.php:691
762
- msgid "New user registration on your site %s:"
763
- msgstr "Registrado un nuevo usuario en tu sitio %s:"
764
-
765
- #: modules/custom-email/custom-email.php:693
766
- #: modules/user-moderation/user-moderation.php:366
767
- msgid "E-mail: %s"
768
- msgstr "Correo Electrónico: %s"
769
-
770
- #: modules/custom-email/custom-email.php:695
771
- msgid "[%s] New User Registration"
772
- msgstr "[%s] Nuevo Usuario Registrado"
773
-
774
- #: modules/custom-email/custom-email.php:710
775
- #: modules/user-moderation/admin/user-moderation-admin.php:165
776
- msgid "Password: %s"
777
- msgstr "Contraseña: %s"
778
-
779
- #: modules/custom-email/custom-email.php:713
780
- msgid "[%s] Your username and password"
781
- msgstr "[%s] Tu usuario y contraseña"
782
-
783
- #: modules/custom-email/custom-email.php:745
784
- msgid "[%s] Password Lost/Changed"
785
- msgstr "[%s] Contraseña perdida/Cambiada"
786
-
787
- #: modules/custom-email/custom-email.php:746
788
- msgid "Password Lost and Changed for user: %s"
789
- msgstr "Contraseña perdida, y cambiada para el usuario: %s"
790
-
791
- #: modules/custom-passwords/custom-passwords.php:31
792
- #: modules/custom-passwords/custom-passwords.php:63
793
- msgid "Confirm Password:"
794
- msgstr "Confirmar Contraseña:"
795
-
796
- #: modules/custom-passwords/custom-passwords.php:61
797
- msgid "(Must be at least 6 characters.)"
798
- msgstr "(Debe tener al menos 6 caracteres.)"
799
-
800
- #: modules/custom-passwords/custom-passwords.php:65
801
- msgid "Confirm that you've typed your password correctly."
802
- msgstr "Confirme que ha escrito correctamente su contraseña."
803
-
804
- #: modules/custom-passwords/custom-passwords.php:103
805
- msgid "<strong>ERROR</strong>: Please enter a password."
806
- msgstr "<strong>ERROR </ strong>: Por favor, introduzca una contraseña."
807
-
808
- #: modules/custom-passwords/custom-passwords.php:106
809
- msgid "<strong>ERROR</strong>: Your passwords do not match."
810
- msgstr "<strong>ERROR </ strong>: Las contraseñas no coinciden."
811
-
812
- #: modules/custom-passwords/custom-passwords.php:109
813
- msgid "<strong>ERROR</strong>: Your password must be at least 6 characters in length."
814
- msgstr "<strong>ERROR </ strong>: Su contraseña debe tener al menos 6 caracteres de longitud."
815
-
816
- #: modules/custom-passwords/custom-passwords.php:230
817
- msgid "Registration complete. You may now log in."
818
- msgstr "Registro completado. Ahora puedes Iniciar Sesión."
819
-
820
- #: modules/custom-redirection/custom-redirection.php:156
821
- msgid "Redirection"
822
- msgstr "Redirección"
823
-
824
- #: modules/custom-redirection/custom-redirection.php:185
825
- msgid "Log in"
826
- msgstr "Iniciar Sesión"
827
-
828
- #: modules/custom-redirection/custom-redirection.php:187
829
- #: modules/custom-redirection/custom-redirection.php:199
830
- msgid "Default"
831
- msgstr "Por Defecto"
832
-
833
- #: modules/custom-redirection/custom-redirection.php:188
834
- msgid "Check this option to send the user to their WordPress Dashboard/Profile."
835
- msgstr "Marque esta opción para enviar al usuario a su panel de WordPress/Perfil."
836
-
837
- #: modules/custom-redirection/custom-redirection.php:189
838
- #: modules/custom-redirection/custom-redirection.php:201
839
- msgid "Referer"
840
- msgstr "Referido"
841
-
842
- #: modules/custom-redirection/custom-redirection.php:190
843
- msgid "Check this option to send the user back to the page they were visiting before logging in."
844
- msgstr "Marque esta opción para enviar al usuario a la página que se visita antes de iniciar sesión pulg"
845
-
846
- #: modules/custom-redirection/custom-redirection.php:193
847
- #: modules/custom-redirection/custom-redirection.php:205
848
- msgid "Check this option to send the user to a custom location, specified by the textbox above."
849
- msgstr "Marque esta opción para enviar al usuario a una ubicación personalizada, a que el cuadro de texto anterior."
850
-
851
- #: modules/custom-redirection/custom-redirection.php:200
852
- msgid "Check this option to send the user to the log in page, displaying a message that they have successfully logged out."
853
- msgstr "Marque esta opción para enviar al usuario en el registro en la página, mostrando un mensaje que han tenido éxito en la sesión."
854
-
855
- #: modules/custom-redirection/custom-redirection.php:202
856
- msgid "Check this option to send the user back to the page they were visiting before logging out. (Note: If the previous page being visited was an admin page, this can have unexpected results.)"
857
- msgstr "Marque esta opción para enviar al usuario a la página que se visita antes de salir. (Nota: Si la página anterior que se visita es una página de administración, esto puede tener resultados inesperados.)"
858
-
859
- #: modules/custom-user-links/admin/custom-user-links-admin.php:140
860
- msgid "User Links"
861
- msgstr "Vínculos de Usuario"
862
-
863
- #: modules/custom-user-links/admin/custom-user-links-admin.php:232
864
- #: modules/custom-user-links/admin/custom-user-links-admin.php:255
865
- #: modules/custom-user-links/admin/custom-user-links-admin.php:300
866
- msgid "Title"
867
- msgstr "Título"
868
-
869
- #: modules/custom-user-links/admin/custom-user-links-admin.php:233
870
- #: modules/custom-user-links/admin/custom-user-links-admin.php:256
871
- #: modules/custom-user-links/admin/custom-user-links-admin.php:304
872
- msgid "URL"
873
- msgstr "URL"
874
-
875
- #: modules/custom-user-links/admin/custom-user-links-admin.php:250
876
- msgid "Add New link:"
877
- msgstr "Añadir Nuevo vínculo:"
878
-
879
- #: modules/custom-user-links/admin/custom-user-links-admin.php:266
880
- msgid "Add link"
881
- msgstr "Añadir vínculo"
882
-
883
- #: modules/custom-user-links/admin/custom-user-links-admin.php:306
884
- msgid "Delete"
885
- msgstr "Borrar"
886
-
887
- #: modules/custom-user-links/admin/custom-user-links-admin.php:307
888
- msgid "Update"
889
- msgstr "Actualizar"
890
-
891
- #: modules/security/admin/security-admin.php:32
892
- #: modules/security/admin/security-admin.php:35
893
- #: modules/user-moderation/admin/user-moderation-admin.php:34
894
- #: modules/user-moderation/admin/user-moderation-admin.php:44
895
- msgid "You can&#8217;t edit that user."
896
- msgstr "Usted no puede editar ese usuario."
897
-
898
- #: modules/security/admin/security-admin.php:67
899
- msgid "User locked."
900
- msgstr "Usuario bloqueado."
901
-
902
- #: modules/security/admin/security-admin.php:69
903
- msgid "User unlocked."
904
- msgstr "Usuario desbloqueado."
905
-
906
- #: modules/security/admin/security-admin.php:92
907
- msgid "Unlock"
908
- msgstr "desbloquear"
909
-
910
- #: modules/security/admin/security-admin.php:94
911
- msgid "Lock"
912
- msgstr "bloquear"
913
-
914
- #: modules/security/admin/security-admin.php:113
915
- msgid "Security"
916
- msgstr "seguridad"
917
-
918
- #: modules/security/admin/security-admin.php:132
919
- msgid "Private Site"
920
- msgstr "sitio privado"
921
-
922
- #: modules/security/admin/security-admin.php:135
923
- msgid "Require users to be logged in to view site"
924
- msgstr "Requerir a los usuarios que se registren para ver el sitio"
925
-
926
- #: modules/security/admin/security-admin.php:139
927
- msgid "Login Attempts"
928
- msgstr "Los intentos de inicio de sesión"
929
-
930
- #: modules/security/admin/security-admin.php:144
931
- msgid "minute(s)"
932
- msgstr "minuto(s)"
933
-
934
- #: modules/security/admin/security-admin.php:145
935
- msgid "hour(s)"
936
- msgstr "hora(s)"
937
-
938
- #: modules/security/admin/security-admin.php:146
939
- msgid "day(s)"
940
- msgstr "día(s)"
941
-
942
- #: modules/security/admin/security-admin.php:169
943
- msgid "After %1$s failed login attempts within %2$s %3$s, lockout the account for %4$s %5$s."
944
- msgstr "Después del %1$s de intentos de login fallidos dentro de %2$s %3$s, el bloqueo de la cuenta de %4$s %5$s."
945
-
946
- #: modules/security/security.php:64
947
- #: modules/security/security.php:90
948
- msgid "<strong>ERROR</strong>: This account has been locked because of too many failed login attempts. You may try again in %s."
949
- msgstr "<strong>ERROR</strong>: Esta cuenta ha sido bloqueada debido a los intentos de conexión fallidos demasiadas. Puede intentar de nuevo en %s."
950
-
951
- #: modules/security/security.php:66
952
- msgid "<strong>ERROR</strong>: This account has been locked."
953
- msgstr "<strong>ERROR</strong>: Esta cuenta ha sido bloqueada."
954
-
955
- #: modules/security/security.php:126
956
- msgid "Failed Login Attempts"
957
- msgstr "Intentos de conexión fallidos"
958
-
959
- #: modules/security/security.php:130
960
- msgid "IP Address"
961
- msgstr "Dirección IP"
962
-
963
- #: modules/security/security.php:131
964
- msgid "Date"
965
- msgstr "Fecha"
966
-
967
- #: modules/security/security.php:134
968
- msgid "Y/m/d g:i:s A"
969
- msgstr "d/m/Y G:i"
970
-
971
- #: modules/security/security.php:139
972
- msgid "%s ago"
973
- msgstr "%s hace"
974
-
975
- #: modules/security/security.php:141
976
- msgid "Y/m/d"
977
- msgstr "d/m/Y"
978
-
979
- #: modules/themed-profiles/admin/themed-profiles-admin.php:23
980
- #: modules/themed-profiles/admin/themed-profiles-admin.php:42
981
- msgid "Themed Profiles"
982
- msgstr "Perfiles Temáticos"
983
-
984
- #: modules/themed-profiles/admin/themed-profiles-admin.php:51
985
- msgid "Restrict Admin Access"
986
- msgstr "Restringir el acceso de administración"
987
-
988
- #: modules/themed-profiles/themed-profiles.php:123
989
- #: templates/profile-form.php:182
990
- #: templates/resetpass-form.php:19
991
- msgid "Strength indicator"
992
- msgstr "Indicador de nivel de seguridad"
993
-
994
- #: modules/themed-profiles/themed-profiles.php:124
995
- msgid "Very weak"
996
- msgstr "Muy débil"
997
-
998
- #: modules/themed-profiles/themed-profiles.php:125
999
- msgid "Weak"
1000
- msgstr "Débil"
1001
-
1002
- #. translators: password strength
1003
- #: modules/themed-profiles/themed-profiles.php:127
1004
- msgctxt "password strength"
1005
- msgid "Medium"
1006
- msgstr "Medio"
1007
-
1008
- #: modules/themed-profiles/themed-profiles.php:128
1009
- msgid "Strong"
1010
- msgstr "Fuerte"
1011
-
1012
- #: modules/themed-profiles/themed-profiles.php:138
1013
- msgid "You do not have permission to edit this user."
1014
- msgstr "Usted no tiene permiso para editar este usuario."
1015
-
1016
- #: modules/themed-profiles/themed-profiles.php:154
1017
- msgid "Profile updated."
1018
- msgstr "Perfil actualizado."
1019
-
1020
- #: modules/themed-profiles/themed-profiles.php:243
1021
- msgid "Your Profile"
1022
- msgstr "Tu Perfil"
1023
-
1024
- #: modules/user-moderation/admin/user-moderation-admin.php:75
1025
- msgid "User approved."
1026
- msgstr "Usuario autorizado."
1027
-
1028
- #: modules/user-moderation/admin/user-moderation-admin.php:77
1029
- msgid "Activation sent."
1030
- msgstr "La activación enviado."
1031
-
1032
- #: modules/user-moderation/admin/user-moderation-admin.php:105
1033
- msgid "Resend Activation"
1034
- msgstr "Reenviar Activación"
1035
-
1036
- #: modules/user-moderation/admin/user-moderation-admin.php:110
1037
- msgid "Approve"
1038
- msgstr "Aprobar"
1039
-
1040
- #: modules/user-moderation/admin/user-moderation-admin.php:163
1041
- msgid "You have been approved access to %s"
1042
- msgstr "Usted tiene aprobado el acceso a %s"
1043
-
1044
- #: modules/user-moderation/admin/user-moderation-admin.php:168
1045
- msgid "[%s] Registration Approved"
1046
- msgstr "[%s] Registro Aprobado"
1047
-
1048
- #: modules/user-moderation/admin/user-moderation-admin.php:203
1049
- msgid "You have been denied access to %s"
1050
- msgstr "Se le ha denegado el acceso a %s"
1051
-
1052
- #: modules/user-moderation/admin/user-moderation-admin.php:204
1053
- msgid "[%s] Registration Denied"
1054
- msgstr "[%s] Registro Rechazado"
1055
-
1056
- #: modules/user-moderation/admin/user-moderation-admin.php:226
1057
- msgid "Moderation"
1058
- msgstr "Moderación"
1059
-
1060
- #: modules/user-moderation/admin/user-moderation-admin.php:242
1061
- msgid "User Moderation"
1062
- msgstr "Moderación de Usuario"
1063
-
1064
- #: modules/user-moderation/admin/user-moderation-admin.php:245
1065
- msgid "None"
1066
- msgstr "Ninguno"
1067
-
1068
- #: modules/user-moderation/admin/user-moderation-admin.php:246
1069
- msgid "Check this option to require no moderation."
1070
- msgstr "Marque esta opción para no requieren moderación."
1071
-
1072
- #: modules/user-moderation/admin/user-moderation-admin.php:248
1073
- msgid "E-mail Confirmation"
1074
- msgstr "Correo electrónico de confirmación"
1075
-
1076
- #: modules/user-moderation/admin/user-moderation-admin.php:249
1077
- msgid "Check this option to require new users to confirm their e-mail address before they may log in."
1078
- msgstr "Marque esta opción para requerir que los usuarios nuevos para confirmar su dirección de correo electrónico antes de que puedan entrar"
1079
-
1080
- #: modules/user-moderation/admin/user-moderation-admin.php:251
1081
- msgid "Admin Approval"
1082
- msgstr "Aprobación de Administrador"
1083
-
1084
- #: modules/user-moderation/admin/user-moderation-admin.php:252
1085
- msgid "Check this option to require new users to be approved by an administrator before they may log in."
1086
- msgstr "Marque esta opción para requerir que los usuarios nuevos que ser aprobado por un administrador antes de que puedan entrar"
1087
-
1088
- #: modules/user-moderation/admin/user-moderation-admin.php:269
1089
- msgid "User Moderation is not currently compatible with multisite."
1090
- msgstr "La moderación de usuario no es actualmente compatible con múltiples sitios."
1091
-
1092
- #: modules/user-moderation/user-moderation.php:163
1093
- msgid "<strong>ERROR</strong>: You have not yet confirmed your e-mail address. <a href=\"%s\">Resend activation</a>?"
1094
- msgstr "<strong>ERROR</strong>: Aún no ha confirmado su dirección de correo electrónico. <a href=\"%s\">Reenviar la activación</a>?"
1095
-
1096
- #: modules/user-moderation/user-moderation.php:166
1097
- msgid "<strong>ERROR</strong>: Your registration has not yet been approved."
1098
- msgstr "<strong>ERROR </ strong>: Su registro no ha sido aprobado todavía."
1099
-
1100
- #: modules/user-moderation/user-moderation.php:328
1101
- msgid "[%s] Activate Your Account"
1102
- msgstr "[%s] Activa tu Cuenta"
1103
-
1104
- #: modules/user-moderation/user-moderation.php:329
1105
- msgid "Thanks for registering at %s! To complete the activation of your account please click the following link: "
1106
- msgstr "Gracias por registrarse en%s! Para completar la activación de su cuenta, por favor haga clic en el siguiente enlace:"
1107
-
1108
- #: modules/user-moderation/user-moderation.php:362
1109
- msgid "[%s] New User Awaiting Approval"
1110
- msgstr "[%s] Nuevo usuario en espera de aprobación"
1111
-
1112
- #: modules/user-moderation/user-moderation.php:364
1113
- msgid "New user requires approval on your blog %s:"
1114
- msgstr "Nuevo usuario requiere aprobación en su blog %s:"
1115
-
1116
- #: modules/user-moderation/user-moderation.php:367
1117
- msgid "To approve or deny this user:"
1118
- msgstr "To approve or deny this user:"
1119
-
1120
- #: modules/user-moderation/user-moderation.php:388
1121
- msgid "Your registration was successful but you must now confirm your email address before you can log in. Please check your email and click on the link provided."
1122
- msgstr "Su registro se realizó correctamente, pero ahora debe confirmar su dirección de correo electrónico antes de poder Iniciar Sesión. Por favor, consulte su correo electrónico y haga clic en el enlace proporcionado."
1123
-
1124
- #: modules/user-moderation/user-moderation.php:390
1125
- msgid "Your registration was successful but you must now be approved by an administrator before you can log in. You will be notified by e-mail once your account has been reviewed."
1126
- msgstr "Su registro tuvo éxito, pero ahora debe ser aprobado por un administrador antes de poder Iniciar Sesión. Usted será notificado por correo electrónico una vez que su cuenta haya sido revisada."
1127
-
1128
- #: modules/user-moderation/user-moderation.php:393
1129
- msgid "Your account has been activated. You may now log in."
1130
- msgstr "Su cuenta ha sido activada. Ahora puedes Iniciar Sesión."
1131
-
1132
- #: modules/user-moderation/user-moderation.php:395
1133
- msgid "Your account has been activated. Please check your e-mail for your password."
1134
- msgstr "Su cuenta ha sido activada. Por favor, consulte su correo electrónico para ver su contraseña."
1135
-
1136
- #: modules/user-moderation/user-moderation.php:397
1137
- msgid "<strong>ERROR</strong>: Sorry, that key does not appear to be valid."
1138
- msgstr "<strong>ERROR </ strong>: Lo sentimos, esa clave no parece ser válida."
1139
-
1140
- #: modules/user-moderation/user-moderation.php:400
1141
- msgid "<strong>ERROR</strong>: Sorry, the activation e-mail could not be sent."
1142
- msgstr "<strong>ERROR</strong>: Lo sentimos, la activación por e-mail no se pudo enviar."
1143
-
1144
- #: modules/user-moderation/user-moderation.php:402
1145
- msgid "The activation e-mail has been sent to the e-mail address with which you registered. Please check your email and click on the link provided."
1146
- msgstr "La activación de e-mail ha sido enviado a la dirección de correo electrónico con la cual se registró. Por favor, consultar su correo electrónico y haga clic en el enlace proporcionado."
1147
-
1148
- #: templates/login-form.php:12
1149
- #: templates/profile-form.php:91
1150
- #: templates/register-form.php:12
1151
- msgid "Username"
1152
- msgstr "Nombre de usuario"
1153
-
1154
- #: templates/login-form.php:16
1155
- msgid "Password"
1156
- msgstr "Contraseña"
1157
-
1158
- #: templates/login-form.php:25
1159
- msgid "Remember Me"
1160
- msgstr "Recuérdame"
1161
-
1162
- #: templates/lostpassword-form.php:12
1163
- msgid "Username or E-mail:"
1164
- msgstr "Nombre de usuario o Correo electrónico:"
1165
-
1166
- #: templates/lostpassword-form.php:20
1167
- msgid "Get New Password"
1168
- msgstr "Obtener nueva contraseña"
1169
-
1170
- #: templates/ms-signup-another-blog-form.php:7
1171
- msgid "Get <em>another</em> %s site in seconds"
1172
- msgstr "Consigue <em>otro</em> sitio en %s en segundos"
1173
-
1174
- #: templates/ms-signup-another-blog-form.php:10
1175
- msgid "There was a problem, please correct the form below and try again."
1176
- msgstr "Hubo un problema, revisa el formulario y prueba de nuevo."
1177
-
1178
- #: templates/ms-signup-another-blog-form.php:13
1179
- msgid "Welcome back, %s. By filling out the form below, you can <strong>add another site to your account</strong>. There is no limit to the number of sites you can have, so create to your heart&#8217;s content, but write responsibly!"
1180
- msgstr "Bienvenido de nuevo %s. Rellenando el siguiente formulario, puedes <strong>añadir otro sitio a tu cuenta</strong>. No hay límite en el número de sitios que puedas tener, por tanto, crea los que necesites, pero escribe con responsabilidad."
1181
-
1182
- #: templates/ms-signup-another-blog-form.php:18
1183
- msgid "Sites you are already a member of:"
1184
- msgstr "Eres miembro de los siguientes sitios:"
1185
-
1186
- #: templates/ms-signup-another-blog-form.php:27
1187
- msgid "If you&#8217;re not going to use a great site domain, leave it for a new user. Now have at it!"
1188
- msgstr "Si no vas a usar un dominio de un sitio, por favor, libéralo para que otro lo pueda usar. Ahora ¡consigue uno!"
1189
-
1190
- #: templates/ms-signup-another-blog-form.php:33
1191
- #: templates/ms-signup-blog-form.php:17
1192
- msgid "Site Name:"
1193
- msgstr "Nombre del sitio:"
1194
-
1195
- #: templates/ms-signup-another-blog-form.php:35
1196
- #: templates/ms-signup-blog-form.php:19
1197
- msgid "Site Domain:"
1198
- msgstr "Dominio del sitio:"
1199
-
1200
- #: templates/ms-signup-another-blog-form.php:52
1201
- #: templates/ms-signup-blog-form.php:36
1202
- msgid "sitename"
1203
- msgstr "nombresitio"
1204
-
1205
- #: templates/ms-signup-another-blog-form.php:54
1206
- #: templates/ms-signup-blog-form.php:38
1207
- msgid "domain"
1208
- msgstr "dominio"
1209
-
1210
- #: templates/ms-signup-another-blog-form.php:55
1211
- #: templates/ms-signup-blog-form.php:39
1212
- msgid "Your address will be %s."
1213
- msgstr "Tu dirección será %s."
1214
-
1215
- #: templates/ms-signup-another-blog-form.php:55
1216
- #: templates/ms-signup-blog-form.php:39
1217
- msgid "Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!"
1218
- msgstr "Debe tener al menos 4 caracteres, letras y números solamente. ¡No se puede cambiar, así que elige con cuidado!"
1219
-
1220
- #: templates/ms-signup-another-blog-form.php:58
1221
- #: templates/ms-signup-blog-form.php:42
1222
- msgid "Site Title:"
1223
- msgstr "Título del sitio:"
1224
-
1225
- #: templates/ms-signup-another-blog-form.php:66
1226
- #: templates/ms-signup-blog-form.php:50
1227
- msgid "Privacy:"
1228
- msgstr "Privacidad:"
1229
-
1230
- #: templates/ms-signup-another-blog-form.php:67
1231
- #: templates/ms-signup-blog-form.php:51
1232
- msgid "Allow my site to appear in search engines like Google, Technorati, and in public listings around this network."
1233
- msgstr "Permitir que mi sitio aparezca en motores de búsqueda como Google y Technorati y en los listados públicos de esta red."
1234
-
1235
- #: templates/ms-signup-another-blog-form.php:71
1236
- #: templates/ms-signup-blog-form.php:55
1237
- msgid "Yes"
1238
- msgstr "Sí"
1239
-
1240
- #: templates/ms-signup-another-blog-form.php:75
1241
- #: templates/ms-signup-blog-form.php:59
1242
- msgid "No"
1243
- msgstr "No"
1244
-
1245
- #: templates/ms-signup-another-blog-form.php:85
1246
- msgid "Create Site"
1247
- msgstr "Crear sitio"
1248
-
1249
- #: templates/ms-signup-blog-form.php:69
1250
- msgid "Signup"
1251
- msgstr "Registrarse"
1252
-
1253
- #: templates/ms-signup-user-form.php:7
1254
- msgid "Get your own %s account in seconds"
1255
- msgstr "Consigue tu propia cuenta %s en segundos."
1256
-
1257
- #: templates/ms-signup-user-form.php:22
1258
- msgid "(Must be at least 4 characters, letters and numbers only.)"
1259
- msgstr "(Deben tener como mínimo 4 caracteres, solo letras y números.)"
1260
-
1261
- #: templates/ms-signup-user-form.php:24
1262
- msgid "Email&nbsp;Address:"
1263
- msgstr "Dirección de correo electrónico:"
1264
-
1265
- #: templates/ms-signup-user-form.php:30
1266
- msgid "We send your registration email to this address. (Double-check your email address before continuing.)"
1267
- msgstr "Enviaremos los datos de registro a esta dirección de correo electrónico. Comprueba bien esta dirección antes de continuar."
1268
-
1269
- #: templates/ms-signup-user-form.php:47
1270
- msgid "Gimme a site!"
1271
- msgstr "¡Dame un sitio!"
1272
-
1273
- #: templates/ms-signup-user-form.php:50
1274
- msgid "Just a username, please."
1275
- msgstr "Solo el nombre de usuario, gracias."
1276
-
1277
- #: templates/ms-signup-user-form.php:54
1278
- msgid "Next"
1279
- msgstr "Siguiente"
1280
-
1281
- #: templates/profile-form.php:26
1282
- msgid "Personal Options"
1283
- msgstr "Opciones Personales"
1284
-
1285
- #: templates/profile-form.php:31
1286
- msgid "Visual Editor"
1287
- msgstr "Editor visual"
1288
-
1289
- #: templates/profile-form.php:32
1290
- msgid "Disable the visual editor when writing"
1291
- msgstr "Desactivar el editor visual al escribir"
1292
-
1293
- #: templates/profile-form.php:37
1294
- msgid "Admin Color Scheme"
1295
- msgstr "Esquema de color de administración"
1296
-
1297
- #: templates/profile-form.php:44
1298
- msgid "Keyboard Shortcuts"
1299
- msgstr "Atajos de teclado"
1300
-
1301
- #: templates/profile-form.php:45
1302
- msgid "Enable keyboard shortcuts for comment moderation."
1303
- msgstr "Activar los atajos del teclado para la moderación de comentarios."
1304
-
1305
- #: templates/profile-form.php:45
1306
- msgid "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">More information</a>"
1307
- msgstr "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">Más información</a>"
1308
-
1309
- #: templates/profile-form.php:51
1310
- #: templates/profile-form.php:54
1311
- msgid "Toolbar"
1312
- msgstr "Barra de herramientas"
1313
-
1314
- #: templates/profile-form.php:57
1315
- msgid "Show Toolbar when viewing site"
1316
- msgstr "Muestra la barra de herramientas en el sitio"
1317
-
1318
- #: templates/profile-form.php:63
1319
- #: templates/profile-form.php:66
1320
- msgid "Show Admin Bar"
1321
- msgstr "Mostrar la barra de administración"
1322
-
1323
- #. translators: Show admin bar when viewing site
1324
- #: templates/profile-form.php:69
1325
- msgid "when viewing site"
1326
- msgstr "cuando se esté viendo el sitio"
1327
-
1328
- #. translators: Show admin bar in dashboard
1329
- #: templates/profile-form.php:74
1330
- msgid "in dashboard"
1331
- msgstr "en el escritorio"
1332
-
1333
- #: templates/profile-form.php:87
1334
- msgid "Name"
1335
- msgstr "Nombre"
1336
-
1337
- #: templates/profile-form.php:92
1338
- msgid "Your username cannot be changed."
1339
- msgstr "Su nombre de usuario no puede ser cambiado."
1340
-
1341
- #: templates/profile-form.php:96
1342
- msgid "First name"
1343
- msgstr "Nombre"
1344
-
1345
- #: templates/profile-form.php:101
1346
- msgid "Last name"
1347
- msgstr "Apellidos"
1348
-
1349
- #: templates/profile-form.php:106
1350
- msgid "Nickname"
1351
- msgstr "Sobrenombre"
1352
-
1353
- #: templates/profile-form.php:106
1354
- #: templates/profile-form.php:143
1355
- msgid "(required)"
1356
- msgstr "(obligatorio)"
1357
-
1358
- #: templates/profile-form.php:111
1359
- msgid "Display name publicly as"
1360
- msgstr "Mostrarme públicamente con el nombre"
1361
-
1362
- #: templates/profile-form.php:139
1363
- msgid "Contact Info"
1364
- msgstr "Información de Contacto"
1365
-
1366
- #: templates/profile-form.php:148
1367
- msgid "Website"
1368
- msgstr "Web"
1369
-
1370
- #: templates/profile-form.php:165
1371
- msgid "About Yourself"
1372
- msgstr "Sobre ti"
1373
-
1374
- #: templates/profile-form.php:169
1375
- msgid "Biographical Info"
1376
- msgstr "Información biografica"
1377
-
1378
- #: templates/profile-form.php:171
1379
- msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
1380
- msgstr "Comparta un poco de información biográfica para rellenar su perfil. Esto puede ser mostrado en público."
1381
-
1382
- #: templates/profile-form.php:179
1383
- msgid "New Password"
1384
- msgstr "Nueva Contraseña"
1385
-
1386
- #: templates/profile-form.php:180
1387
- msgid "If you would like to change the password type a new one. Otherwise leave this blank."
1388
- msgstr "Si desea cambiar la contraseña escriba una nueva. De lo contrario, déjelo en blanco."
1389
-
1390
- #: templates/profile-form.php:181
1391
- msgid "Type your new password again."
1392
- msgstr "Escriba su nueva contraseña de nuevo."
1393
-
1394
- #: templates/profile-form.php:183
1395
- #: templates/resetpass-form.php:20
1396
- msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
1397
- msgstr "Sugerencia: La contraseña debe tener al menos siete caracteres de longitud. Para hacerla más fuerte, utilice letras mayúsculas y minúsculas, números y símbolos como ! \" ? $ % ^ &amp; )."
1398
-
1399
- #: templates/profile-form.php:197
1400
- msgid "Additional Capabilities"
1401
- msgstr "Capacidades adicionales"
1402
-
1403
- #: templates/profile-form.php:216
1404
- msgid "Update Profile"
1405
- msgstr "Actualizar Perfil"
1406
-
1407
- #: templates/register-form.php:23
1408
- msgid "A password will be e-mailed to you."
1409
- msgstr "Una contraseña será enviada a tu correo electrónico."
1410
-
1411
- #: templates/resetpass-form.php:12
1412
- msgid "New password"
1413
- msgstr "Nueva contraseña"
1414
-
1415
- #: templates/resetpass-form.php:16
1416
- msgid "Confirm new password"
1417
- msgstr "Confirma la nueva contraseña"
1418
-
1419
- #. Plugin URI of the plugin/theme
1420
- msgid "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/"
1421
- msgstr "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login-plugin"
1422
-
1423
- #. Description of the plugin/theme
1424
- msgid "Themes the WordPress login, registration and forgot password pages according to your theme."
1425
- msgstr "Themes de WordPress para las páginas de iniciar sesion, registro y recuperar contraseña acorde a su Theme."
1426
-
1427
- #. Author of the plugin/theme
1428
- msgid "Jeff Farthing"
1429
- msgstr "Jeff Farthing"
1430
-
1431
- #. Author URI of the plugin/theme
1432
- msgid "http://www.jfarthing.com"
1433
- msgstr "http://www.jfarthing.com"
1434
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
language/theme-my-login-fi.mo DELETED
Binary file
language/theme-my-login-fi.po DELETED
@@ -1,1433 +0,0 @@
1
- # Copyright (C) 2012 Theme My Login
2
- # This file is distributed under the same license as the Theme My Login package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Theme My Login 6.2\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/theme-my-login\n"
7
- "POT-Creation-Date: 2012-03-08 16:19:05+00:00\n"
8
- "PO-Revision-Date: 2012-03-09 16:33-0500\n"
9
- "Last-Translator: Jeff Farthing <jeff@jfarthing.com>\n"
10
- "Language-Team: Vili Maunula <vili.maunula@gmail.com>\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-Language: Finnish\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
-
17
- #. #-#-#-#-# plugin.pot (Theme My Login 6.2) #-#-#-#-#
18
- #. Plugin Name of the plugin/theme
19
- #: admin/class-theme-my-login-admin.php:42
20
- #: admin/class-theme-my-login-admin.php:43
21
- #: includes/class-theme-my-login-widget.php:24
22
- msgid "Theme My Login"
23
- msgstr "Theme My Login"
24
-
25
- #: admin/class-theme-my-login-admin.php:81
26
- msgid "ERROR: The module \"%1$s\" could not be activated (%2$s)."
27
- msgstr "VIRHE: Modulia \"%1$s\" ei saatu aktivoitua (%2$s)."
28
-
29
- #: admin/class-theme-my-login-admin.php:103
30
- msgid "NOTICE:"
31
- msgstr "HUOM! "
32
-
33
- #: admin/class-theme-my-login-admin.php:104
34
- msgid "Now that you have activated Theme My Login, please <a href=\"%s\">visit the settings page</a> and familiarize yourself with all of the available options."
35
- msgstr "Nyt kun olet aktivoinut Theme My Loginin, <a href=\"%s\">vieraile asetuksissa</a> ja tutustu tarjolla oleviin asetuksiin."
36
-
37
- #: admin/class-theme-my-login-admin.php:106
38
- msgid "Take me to the settings page"
39
- msgstr "Vie minut asetuksiin"
40
-
41
- #: admin/class-theme-my-login-admin.php:119
42
- msgid "You can now login with your e-mail address or username! Try it out!"
43
- msgstr "Voit nyt kirjautua sisään sähköpostiosoitteellasi tai käyttäjätunnuksellasi. Kokeile!"
44
-
45
- #: admin/class-theme-my-login-admin.php:120
46
- msgid "Theme My Login now utilizes a module system. Modules are similar to WordPress plugins. Each module extends the default functionality of Theme My Login. <a rel=\"tml-options\" href=\"#tml-options-modules\">Click here</a> to get started with modules now."
47
- msgstr "Theme My Login käyttää nykyään moduulista järjestelmää. Moduulit ovat WordPressin lisäosion kaltaisia asioita. Jokainen moduuli lisää Theme My Loginin toimintoja. <a rel=\"tml-options\" href=\"#tml-options-modules\">Klikkaa tässä</a> tutustuaksesi moduuleihin."
48
-
49
- #: admin/class-theme-my-login-admin.php:121
50
- msgid "Theme My Login now allows custom forms. You can create your own form template(s) by copying the default version(s) from \"theme-my-login/templates\" to your current theme directory. Try it out!"
51
- msgstr "Theme My Login sallii nykyään muokattujen lomakkeiden käytön. Voit luoda omia lomakepohjia kopioimalla niiden perusversiot \"theme-my-login/templates\" -hakemistosta käyttämäsi teeman hakemistoon. Kokeile!"
52
-
53
- #: admin/class-theme-my-login-admin.php:122
54
- msgid "You can maintain your stylesheet changes between upgrades. Just simply copy the file \"theme-my-login/theme-my-login.css\" to your current theme directory and edit it as you please!"
55
- msgstr "On mahdollista ylläpitää tyyliohjeiden muutokset päivityksestä toiseen. Kopioi tiedosto \"theme-my-login/theme-my-login.css\" nykyisen teemasi hakemistoon ja muokkaa sitä vapaasti!"
56
-
57
- #: admin/class-theme-my-login-admin.php:123
58
- msgid "Theme My Login provides a shortcode that you can use within your posts with multiple parameters to customize the form. Visit the <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Theme My Login Documentation</a> for usage instructions."
59
- msgstr "Theme My Login tarjoaa pikakoodin, jota voit käyttää artikkeleissasi kustomoidaksesi lomakkeen. Katso käyttöohjeet sivulta <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Theme My Login Documentation</a>."
60
-
61
- #: admin/class-theme-my-login-admin.php:124
62
- msgid "Jeff is <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">available for hire</a>!"
63
- msgstr "Jeff on <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">palkattavissa</a>!"
64
-
65
- #: admin/class-theme-my-login-admin.php:128
66
- msgid "Did You Know?"
67
- msgstr "Tiesitkö?"
68
-
69
- #: admin/class-theme-my-login-admin.php:177
70
- msgid "General"
71
- msgstr "Yleiset asetukset"
72
-
73
- #: admin/class-theme-my-login-admin.php:178
74
- msgid "Basic"
75
- msgstr "Perusasetukset"
76
-
77
- #: admin/class-theme-my-login-admin.php:179
78
- #: admin/class-theme-my-login-admin.php:319
79
- msgid "Modules"
80
- msgstr "Moduulit"
81
-
82
- #: admin/class-theme-my-login-admin.php:181
83
- msgid "Permalinks"
84
- msgstr "Osoiterakenne"
85
-
86
- #: admin/class-theme-my-login-admin.php:188
87
- msgid "Theme My Login Settings"
88
- msgstr "Theme My Loginin asetukset"
89
-
90
- #: admin/class-theme-my-login-admin.php:194
91
- #: admin/class-theme-my-login-admin.php:254
92
- msgid "Save Changes"
93
- msgstr "Tallenna Muutokset"
94
-
95
- #: admin/class-theme-my-login-admin.php:271
96
- msgid "Page ID"
97
- msgstr "Sivun ID"
98
-
99
- #: admin/class-theme-my-login-admin.php:274
100
- msgid "This should be the ID of the WordPress page that includes the [theme-my-login] shortcode. By default, this page is titled \"Login\"."
101
- msgstr "Tämän tulee olla sen WordPress-sivun ID joka sisältää [theme-my-login] -tekstin. Oletuksena tämä sivu on nimeltään \"Login\"."
102
-
103
- #: admin/class-theme-my-login-admin.php:278
104
- msgid "Pagelist"
105
- msgstr "Sivulistaus"
106
-
107
- #: admin/class-theme-my-login-admin.php:281
108
- msgid "Show Page In Pagelist"
109
- msgstr "Näytä sivulistauksessa"
110
-
111
- #: admin/class-theme-my-login-admin.php:282
112
- msgid "Enable this setting to add login/logout links to the pagelist generated by functions like wp_list_pages() and wp_page_menu()."
113
- msgstr "Aktivoi tämä asetus lisätäksesi sisään- ja uloskirjautumislinkit wp_list_pages() ja wp_page_menu() -funktioiden kaltaisten funktioiden luomiin sivulistoihin."
114
-
115
- #: admin/class-theme-my-login-admin.php:286
116
- msgid "Stylesheet"
117
- msgstr "Tyyliohjeet"
118
-
119
- #: admin/class-theme-my-login-admin.php:289
120
- msgid "Enable \"theme-my-login.css\""
121
- msgstr "Aktivoi \"theme-my-login.css\""
122
-
123
- #: admin/class-theme-my-login-admin.php:290
124
- msgid "In order to keep changes between upgrades, you can store your customized \"theme-my-login.css\" in your current theme directory."
125
- msgstr "Pitääksesi muutokset päivityksestä toiseen, voit tallentaa muokatun \"theme-my-login.css\" -tiedoston nykyisen teemasi hakemistoon."
126
-
127
- #: admin/class-theme-my-login-admin.php:294
128
- msgid "E-mail Login"
129
- msgstr "Sähköpostiosoitteella sisäänkirjautuminen"
130
-
131
- #: admin/class-theme-my-login-admin.php:297
132
- msgid "Enable e-mail address login"
133
- msgstr "Aktivoi sisäänkirjautuminen sähköpostiosoitteella"
134
-
135
- #: admin/class-theme-my-login-admin.php:298
136
- msgid "Allows users to login using their e-mail address in place of their username."
137
- msgstr "Mahdollistaa sen, että käyttäjä voi käyttäjätunnuksensa sijaan kirjautua sisään sähköpostiosoitteellaan."
138
-
139
- #: admin/class-theme-my-login-admin.php:323
140
- msgid "Enable %s"
141
- msgstr "Aktivoi %s"
142
-
143
- #: admin/class-theme-my-login-admin.php:325
144
- msgid "No modules found."
145
- msgstr "Moduuleita ei löytynyt."
146
-
147
- #: admin/class-theme-my-login-admin.php:343
148
- #: includes/class-theme-my-login-widget.php:87
149
- msgid "Login"
150
- msgstr "Kirjaudu sisään"
151
-
152
- #: admin/class-theme-my-login-admin.php:344
153
- #: includes/class-theme-my-login-template.php:141
154
- #: includes/class-theme-my-login-widget.php:87
155
- #: templates/register-form.php:25
156
- msgid "Register"
157
- msgstr "Rekisteröidy"
158
-
159
- #: admin/class-theme-my-login-admin.php:345
160
- #: includes/class-theme-my-login-template.php:147
161
- #: includes/class-theme-my-login-widget.php:87
162
- msgid "Lost Password"
163
- msgstr "Unohditko salasanasi?"
164
-
165
- #: admin/class-theme-my-login-admin.php:475
166
- msgid "One of the modules is invalid."
167
- msgstr "Yksi moduuleista on virheellinen."
168
-
169
- #: admin/class-theme-my-login-admin.php:531
170
- msgid "Invalid module path."
171
- msgstr "Virheellinen polku moduulille."
172
-
173
- #: admin/class-theme-my-login-admin.php:533
174
- msgid "Module file does not exist."
175
- msgstr "Moduulitiedostoa ei ole."
176
-
177
- #: admin/class-theme-my-login-admin.php:537
178
- msgid "The module does not have a valid header."
179
- msgstr "Moduulilla ei ole kelvollista ylätunnistetta."
180
-
181
- #: includes/class-theme-my-login-ms-signup.php:117
182
- msgctxt "Multisite active signup type"
183
- msgid "all"
184
- msgstr "kaikki"
185
-
186
- #: includes/class-theme-my-login-ms-signup.php:118
187
- msgctxt "Multisite active signup type"
188
- msgid "none"
189
- msgstr "ei mikään"
190
-
191
- #: includes/class-theme-my-login-ms-signup.php:119
192
- msgctxt "Multisite active signup type"
193
- msgid "blog"
194
- msgstr "blogi"
195
-
196
- #: includes/class-theme-my-login-ms-signup.php:120
197
- msgctxt "Multisite active signup type"
198
- msgid "user"
199
- msgstr "käyttäjä"
200
-
201
- #: includes/class-theme-my-login-ms-signup.php:123
202
- msgid "Greetings Site Administrator! You are currently allowing &#8220;%s&#8221; registrations. To change or disable registration go to your <a href=\"%s\">Options page</a>."
203
- msgstr "Tervehdys Järjestelmänvalvoja! Rekisteröintiasetukset ovat nyt moodissa \"%s\". Voit muuttaa tai poistaa rekisteröintiasetuksia <a href=\"%s\">Asetukset-sivulla</a>."
204
-
205
- #: includes/class-theme-my-login-ms-signup.php:129
206
- msgid "Registration has been disabled."
207
- msgstr "Rekisteröitymistä ei tällä hetkellä sallita."
208
-
209
- #: includes/class-theme-my-login-ms-signup.php:131
210
- msgid "You must first <a href=\"%s\">log in</a>, and then you can create a new site."
211
- msgstr "<a href=\"%s\">Kirjaudu sisään</a>, niin voit luoda uuden sivuston."
212
-
213
- #: includes/class-theme-my-login-ms-signup.php:155
214
- msgid "%s is your new username"
215
- msgstr "%s on uusi käyttäjätunnuksesi"
216
-
217
- #: includes/class-theme-my-login-ms-signup.php:156
218
- msgid "But, before you can start using your new username, <strong>you must activate it</strong>."
219
- msgstr "Ennen kuin voit aloittaa käyttämään uutta käyttäjätunnustasi, <strong>sinun täytyy aktivoida se</strong>."
220
-
221
- #: includes/class-theme-my-login-ms-signup.php:157
222
- msgid "Check your inbox at <strong>%1$s</strong> and click the link given."
223
- msgstr "Tarkista sähköpostisi <strong>%1$s</strong> saapuneet -kansio ja napsauta annettua linkkiä."
224
-
225
- #: includes/class-theme-my-login-ms-signup.php:158
226
- msgid "If you do not activate your username within two days, you will have to sign up again."
227
- msgstr "Mikäli et aktivoi käyttäjätunnustasi kahden vuorokauden kuluessa, sinun täytyy rekisteröityä uudelleen."
228
-
229
- #: includes/class-theme-my-login-ms-signup.php:162
230
- msgid "User registration has been disabled."
231
- msgstr "Käyttäjärekisteröintiä ei tällä hetkellä sallita."
232
-
233
- #: includes/class-theme-my-login-ms-signup.php:194
234
- msgid "Congratulations! Your new site, %s, is almost ready."
235
- msgstr "Onnittelut! Uusi sivustosi %s, on lähes valmis."
236
-
237
- #: includes/class-theme-my-login-ms-signup.php:196
238
- msgid "But, before you can start using your site, <strong>you must activate it</strong>."
239
- msgstr "Ennen kuin voi aloittaa käyttämään sivustoasi, <strong>sinun täytyy aktivoida se</strong>."
240
-
241
- #: includes/class-theme-my-login-ms-signup.php:197
242
- msgid "Check your inbox at <strong>%s</strong> and click the link given."
243
- msgstr "Tarkista postilaatikkosi (<strong>%s </strong>) ja klikkaa annettua linkkiä."
244
-
245
- #: includes/class-theme-my-login-ms-signup.php:198
246
- msgid "If you do not activate your site within two days, you will have to sign up again."
247
- msgstr "Mikäli et aktivoi sivustoasi kahden vuorokauden kuluessa, sinun täytyy rekisteröityä uudelleen."
248
-
249
- #: includes/class-theme-my-login-ms-signup.php:199
250
- msgid "Still waiting for your email?"
251
- msgstr "Odotatko vielä sähköpostia?"
252
-
253
- #: includes/class-theme-my-login-ms-signup.php:201
254
- msgid "If you haven&#8217;t received your email yet, there are a number of things you can do:"
255
- msgstr "Jos et ole saanut sähköpostia vielä, voit toimia seuraavasti:"
256
-
257
- #: includes/class-theme-my-login-ms-signup.php:203
258
- msgid "Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control."
259
- msgstr "Odota vähän pidempään. Joskus sähköpostin toimitus voi viivästyä meistä riippumattomista syistä."
260
-
261
- #: includes/class-theme-my-login-ms-signup.php:204
262
- msgid "Check the junk or spam folder of your email client. Sometime emails wind up there by mistake."
263
- msgstr "Tarkista sähköpostiohjelmasi roskapostikansio. Joskus sähköpostit päätyvät sinne vahingossa."
264
-
265
- #: includes/class-theme-my-login-ms-signup.php:205
266
- msgid "Have you entered your email correctly? You have entered %s, if it&#8217;s incorrect, you will not receive your email."
267
- msgstr "Kirjoititko sähköpostiosoitteesi oikein? Annoit osoitteeksi %s ; jos se on väärä, et tule saamaan sähköpostia."
268
-
269
- #: includes/class-theme-my-login-ms-signup.php:211
270
- msgid "Site registration has been disabled."
271
- msgstr "Sivustojen rekisteröintiä ei tällä hetkellä sallita."
272
-
273
- #: includes/class-theme-my-login-ms-signup.php:235
274
- msgid "The site %s is yours."
275
- msgstr "Sivusto %s on nyt sinun."
276
-
277
- #: includes/class-theme-my-login-ms-signup.php:237
278
- msgid "<a href=\"http://%1$s\">http://%2$s</a> is your new site. <a href=\"%3$s\">Log in</a> as &#8220;%4$s&#8221; using your existing password."
279
- msgstr "<a href=\"http://%1$s\">http://%2$s</a> on uusi sivustosi. <a href=\"%3$s\">Kirjaudu sisään</a> käyttäjätunnuksella &#8220;%4$s&#8221; käyttäen salasanaasi."
280
-
281
- #: includes/class-theme-my-login-ms-signup.php:253
282
- msgid "Sorry, new registrations are not allowed at this time."
283
- msgstr "Pahoittelut, uusia rekisteröintejä ei oteta juuri nyt vastaan."
284
-
285
- #: includes/class-theme-my-login-ms-signup.php:255
286
- msgid "You are logged in already. No need to register again!"
287
- msgstr "Olet jo kirjautunut sisään. Sinun ei tarvitse rekisteröityä uudestaan!"
288
-
289
- #: includes/class-theme-my-login-ms-signup.php:261
290
- msgid "<p><em>The site you were looking for, <strong>%s</strong> does not exist, but you can create it now!</em></p>"
291
- msgstr "<p><em>Etsimääsi sivustoa <strong>%s</strong> ei ole olemassa, mutta voit luoda sen nyt!</em></p>"
292
-
293
- #: includes/class-theme-my-login-ms-signup.php:263
294
- msgid "<p><em>The site you were looking for, <strong>%s</strong>, does not exist.</em></p>"
295
- msgstr "<p><em>Etsimääsi sivustoa <strong>%s</strong> ei ole olemassa.</em></p>"
296
-
297
- #: includes/class-theme-my-login-ms-signup.php:402
298
- msgid "Activation Key Required"
299
- msgstr "Aktivointiavain vaaditaan"
300
-
301
- #: includes/class-theme-my-login-ms-signup.php:405
302
- msgid "Activation Key:"
303
- msgstr "Aktivointiavain:"
304
-
305
- #: includes/class-theme-my-login-ms-signup.php:409
306
- #: includes/class-theme-my-login-ms-signup.php:481
307
- msgid "Activate"
308
- msgstr "Ota käyttöön"
309
-
310
- #: includes/class-theme-my-login-ms-signup.php:421
311
- #: includes/class-theme-my-login-ms-signup.php:441
312
- msgid "Your account is now active!"
313
- msgstr "Tilisi on nyt aktivoitu!"
314
-
315
- #: includes/class-theme-my-login-ms-signup.php:425
316
- msgid "Your account has been activated. You may now <a href=\"%1$s\">login</a> to the site using your chosen username of &#8220;%2$s&#8221;. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%4$s\">reset your password</a>."
317
- msgstr "Käyttäjätilisi on aktivoitu. Voit nyt <a href=\"%1$s\">kirjautua sisään</a> sivustolle käyttäen käyttäjätunnustasi &#8220;%2$s&#8221;. Tarkista sähköpostilaatikkosi osoitteessa %3$s salasanasi ja sisäänkirjautumisohjeiden osalta. Jos sähköposti ei näytä saapuvan, tarkista roskapostilaatikkosi. Jos sähköposti ei saavu sinulle tunnin sisällä, voit <a href=\"%4$s\">resetoida salasanasi</a>."
318
-
319
- #: includes/class-theme-my-login-ms-signup.php:427
320
- msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a>."
321
- msgstr "Sivustosi osoitteessa <a href=\"%1$s\">%2$s</a> on nyt aktivoitu. Voit nyt kirjautua sisään valitsemallasi käyttäjätunnuksella &#8220;%3$s&#8221;. Tarkista sähköpostilaatikkosi osoitteessa %4$s nähdäksesi salasanasi ja ohjeet sisäänkirjautumiselle. Jos sähköposti ei näytä saapuvan, tarkista roskapostilaatikkosi. Jos sähköposti ei saavu sinulle tunnin sisällä, voit <a href=\"%4$s\">resetoida salasanasi</a>."
322
-
323
- #: includes/class-theme-my-login-ms-signup.php:432
324
- msgid "An error occurred during the activation"
325
- msgstr "Aktivoinnissa tapahtui virhe"
326
-
327
- #: includes/class-theme-my-login-ms-signup.php:444
328
- #: templates/ms-signup-user-form.php:16
329
- msgid "Username:"
330
- msgstr "Käyttäjänimi:"
331
-
332
- #: includes/class-theme-my-login-ms-signup.php:445
333
- #: modules/custom-passwords/custom-passwords.php:29
334
- #: modules/custom-passwords/custom-passwords.php:56
335
- msgid "Password:"
336
- msgstr "Salasana:"
337
-
338
- #: includes/class-theme-my-login-ms-signup.php:449
339
- msgid "Your account is now activated. <a href=\"%1$s\">View your site</a> or <a href=\"%2$s\">Login</a>"
340
- msgstr "Tilisi on aktivoitu. <a href=\"%1$s\">Mene sivustosi etusivulle</a> tai <a href=\"%2$s\">kirjaudu sisään</a>"
341
-
342
- #: includes/class-theme-my-login-ms-signup.php:451
343
- msgid "Your account is now activated. <a href=\"%1$s\">Login</a> or go back to the <a href=\"%2$s\">homepage</a>."
344
- msgstr "Tilisi on aktivoitu. <a href=\"%1$s\">Kirjaudu sisään</a> tai palaa <a href=\"%2$s\">etusivulle</a>."
345
-
346
- #: includes/class-theme-my-login-template.php:137
347
- msgid "Welcome, %s"
348
- msgstr "Tervetuloa, %s"
349
-
350
- #: includes/class-theme-my-login-template.php:151
351
- #: includes/class-theme-my-login.php:540
352
- #: templates/login-form.php:28
353
- msgid "Log In"
354
- msgstr "Kirjaudu sisään"
355
-
356
- #: includes/class-theme-my-login-template.php:315
357
- #: modules/custom-user-links/custom-user-links.php:82
358
- msgid "Dashboard"
359
- msgstr "Ohjausnäkymä"
360
-
361
- #: includes/class-theme-my-login-template.php:316
362
- #: modules/custom-user-links/custom-user-links.php:83
363
- #: modules/themed-profiles/admin/themed-profiles-admin.php:66
364
- msgid "Profile"
365
- msgstr "Profiili"
366
-
367
- #: includes/class-theme-my-login-template.php:334
368
- #: modules/custom-redirection/custom-redirection.php:197
369
- msgid "Log out"
370
- msgstr "Uloskirjautuminen"
371
-
372
- #: includes/class-theme-my-login-template.php:363
373
- msgid "Register For This Site"
374
- msgstr "Rekisteröidy sivun käyttäjäksi"
375
-
376
- #: includes/class-theme-my-login-template.php:366
377
- msgid "Please enter your username or email address. You will receive a link to create a new password via email."
378
- msgstr "Syötä käyttäjätunnus tai sähköpostiosoite. Tulet saamaan linkin salasanan vaihtamiseen sähköpostitse."
379
-
380
- #: includes/class-theme-my-login-template.php:369
381
- msgid "Enter your new password below."
382
- msgstr "Kirjoita uusi salasanasi alle."
383
-
384
- #: includes/class-theme-my-login-widget.php:23
385
- msgid "A login form for your blog."
386
- msgstr "Sisäänkirjautumislomake blogiisi."
387
-
388
- #: includes/class-theme-my-login-widget.php:88
389
- msgid "Default Action"
390
- msgstr "Oletustoiminto"
391
-
392
- #: includes/class-theme-my-login-widget.php:95
393
- msgid "Show When Logged In"
394
- msgstr "Näytä sisäänkirjautuneelle"
395
-
396
- #: includes/class-theme-my-login-widget.php:97
397
- msgid "Show Title"
398
- msgstr "Näytä otsikko"
399
-
400
- #: includes/class-theme-my-login-widget.php:99
401
- msgid "Show Login Link"
402
- msgstr "Näytä sisäänkirjautumislinkki"
403
-
404
- #: includes/class-theme-my-login-widget.php:101
405
- msgid "Show Register Link"
406
- msgstr "Näytä rekisteröitymislinkki"
407
-
408
- #: includes/class-theme-my-login-widget.php:103
409
- msgid "Show Lost Password Link"
410
- msgstr "Näytä kadonneen salasanan linkki"
411
-
412
- #: includes/class-theme-my-login-widget.php:105
413
- msgid "Show Gravatar"
414
- msgstr "Näytä Gravatar"
415
-
416
- #: includes/class-theme-my-login-widget.php:106
417
- msgid "Gravatar Size"
418
- msgstr "Gravatarin koko"
419
-
420
- #: includes/class-theme-my-login-widget.php:108
421
- msgid "Allow Registration"
422
- msgstr "Mahdollista rekisteröityminen"
423
-
424
- #: includes/class-theme-my-login-widget.php:110
425
- msgid "Allow Password Recovery"
426
- msgstr "Mahdollista salasanan palauttaminen"
427
-
428
- #: includes/class-theme-my-login.php:245
429
- msgid "Sorry, that key does not appear to be valid."
430
- msgstr "Kyseinen avain ei näytä olevan kelvollinen."
431
-
432
- #: includes/class-theme-my-login.php:261
433
- msgid "The passwords do not match."
434
- msgstr "Salasanat eivät täsmää."
435
-
436
- #: includes/class-theme-my-login.php:367
437
- msgid "<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href=\"http://www.google.com/cookies.html\">enable cookies</a> to use WordPress."
438
- msgstr "<strong>VIRHE</strong>: Selaimesi joko estää evästeet tai ei tue niiden käyttöä. Sinun tulee <a href=\"http://www.google.com/cookies.html\">sallia evästeet</a> käyttääksesi WordPressiä."
439
-
440
- #: includes/class-theme-my-login.php:371
441
- msgid "You are now logged out."
442
- msgstr "Olet nyt kirjautunut ulos."
443
-
444
- #: includes/class-theme-my-login.php:373
445
- msgid "User registration is currently not allowed."
446
- msgstr "Rekisteröityminen ei ole tällä hetkellä käytössä."
447
-
448
- #: includes/class-theme-my-login.php:375
449
- msgid "Check your e-mail for the confirmation link."
450
- msgstr "Katso vahvistuslinkki sähköpostistasi."
451
-
452
- #: includes/class-theme-my-login.php:377
453
- msgid "Your password has been reset."
454
- msgstr "Salasanasi on palautettu."
455
-
456
- #: includes/class-theme-my-login.php:379
457
- msgid "Registration complete. Please check your e-mail."
458
- msgstr "Rekisteröityminen on tehty. Tarkista sähköpostisi."
459
-
460
- #: includes/class-theme-my-login.php:381
461
- msgid "Your session has expired. Please log-in again."
462
- msgstr "Sessiosi on päättynyt. Kirjaudu sisään uudestaan."
463
-
464
- #: includes/class-theme-my-login.php:383
465
- msgid "Please log in to continue."
466
- msgstr "Kirjaudu sisään jatkaaksesi eteenpäin."
467
-
468
- #: includes/class-theme-my-login.php:540
469
- msgid "Log Out"
470
- msgstr "Kirjaudu ulos"
471
-
472
- #: includes/class-theme-my-login.php:925
473
- msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
474
- msgstr "<strong>VIRHE</strong>: Lisää käyttäjänimi tai sähköpostiosoite."
475
-
476
- #: includes/class-theme-my-login.php:929
477
- msgid "<strong>ERROR</strong>: There is no user registered with that email address."
478
- msgstr "<strong>VIRHE</strong>: Kyseisellä sähköpostiosoitteella ei ole rekisteröityneitä käyttäjiä."
479
-
480
- #: includes/class-theme-my-login.php:941
481
- msgid "<strong>ERROR</strong>: Invalid username or e-mail."
482
- msgstr "<strong>VIRHE</strong>: Käyttäjänimi tai sähköpostiosoite ei ole kelvollinen."
483
-
484
- #: includes/class-theme-my-login.php:955
485
- msgid "Password reset is not allowed for this user"
486
- msgstr "Salasanan resetointia ei sallita tälle käyttäjälle"
487
-
488
- #: includes/class-theme-my-login.php:967
489
- msgid "Someone requested that the password be reset for the following account:"
490
- msgstr "Jo pyysi, että seuraavan tilin salasana vaihdettaisiin:"
491
-
492
- #: includes/class-theme-my-login.php:969
493
- #: modules/custom-email/custom-email.php:692
494
- #: modules/custom-email/custom-email.php:709
495
- #: modules/user-moderation/admin/user-moderation-admin.php:164
496
- #: modules/user-moderation/user-moderation.php:365
497
- msgid "Username: %s"
498
- msgstr "Käyttäjänimi: %s"
499
-
500
- #: includes/class-theme-my-login.php:970
501
- msgid "If this was a mistake, just ignore this email and nothing will happen."
502
- msgstr "Mikäli tämä on virhe, voit jättää tämän viestin huomiotta."
503
-
504
- #: includes/class-theme-my-login.php:971
505
- msgid "To reset your password, visit the following address:"
506
- msgstr "Palauttaaksesi salasanasi, käy seuraavassa osoitteessa:"
507
-
508
- #: includes/class-theme-my-login.php:982
509
- msgid "[%s] Password Reset"
510
- msgstr "[%s] Salasanan resetointi"
511
-
512
- #: includes/class-theme-my-login.php:988
513
- #: modules/user-moderation/admin/user-moderation-admin.php:53
514
- #: modules/user-moderation/admin/user-moderation-admin.php:174
515
- #: modules/user-moderation/admin/user-moderation-admin.php:210
516
- msgid "The e-mail could not be sent."
517
- msgstr "Sähköpostia ei pystytty lähettämään."
518
-
519
- #: includes/class-theme-my-login.php:988
520
- #: modules/user-moderation/admin/user-moderation-admin.php:53
521
- #: modules/user-moderation/admin/user-moderation-admin.php:174
522
- #: modules/user-moderation/admin/user-moderation-admin.php:210
523
- msgid "Possible reason: your host may have disabled the mail() function..."
524
- msgstr "Mahdollinen syy: palveluntarjoajasi on estänyt mail() -funktion toiminnan..."
525
-
526
- #: includes/class-theme-my-login.php:1011
527
- #: includes/class-theme-my-login.php:1014
528
- #: includes/class-theme-my-login.php:1019
529
- #: modules/user-moderation/user-moderation.php:238
530
- #: modules/user-moderation/user-moderation.php:241
531
- #: modules/user-moderation/user-moderation.php:246
532
- msgid "Invalid key"
533
- msgstr "Kelvoton avain"
534
-
535
- #: includes/class-theme-my-login.php:1059
536
- msgid "<strong>ERROR</strong>: Please enter a username."
537
- msgstr "<strong>VIRHE</strong>: Anna käyttäjänimi."
538
-
539
- #: includes/class-theme-my-login.php:1061
540
- msgid "<strong>ERROR</strong>: This username is invalid because it uses illegal characters. Please enter a valid username."
541
- msgstr "<strong>VIRHE</strong>: Tämä käyttäjänimi ei kelpaa, koska se käyttää sopimattomia kirjaimia. Anna kelvollinen käyttäjänimi."
542
-
543
- #: includes/class-theme-my-login.php:1064
544
- msgid "<strong>ERROR</strong>: This username is already registered, please choose another one."
545
- msgstr "<strong>VIRHE</strong>: Tämä käyttäjätunnus on jo käytössä. Valitse toinen tunnus."
546
-
547
- #: includes/class-theme-my-login.php:1069
548
- msgid "<strong>ERROR</strong>: Please type your e-mail address."
549
- msgstr "<strong>VIRHE</strong>: Anna sähköpostiosoite."
550
-
551
- #: includes/class-theme-my-login.php:1071
552
- msgid "<strong>ERROR</strong>: The email address isn&#8217;t correct."
553
- msgstr "<strong>VIRHE</strong>: Antamasi sähköpostiosoite ei ole kelvollinen."
554
-
555
- #: includes/class-theme-my-login.php:1074
556
- msgid "<strong>ERROR</strong>: This email is already registered, please choose another one."
557
- msgstr "<strong>VIRHE</strong>: Tämä sähköpostiosoite on jo rekisteröity. Valitse toinen sähköpostiosoite."
558
-
559
- #: includes/class-theme-my-login.php:1087
560
- msgid "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href=\"mailto:%s\">webmaster</a> !"
561
- msgstr "<strong>VIRHE</strong>: Rekisteröityminen epäonnistui. Ota yhteyttä <a href=\"mailto:%s\">webmasteriin</a> !"
562
-
563
- #: modules/custom-email/admin/custom-email-admin.php:46
564
- #: modules/custom-email/admin/custom-email-admin.php:265
565
- msgid "User Notification"
566
- msgstr "Käyttäjäilmoitus"
567
-
568
- #: modules/custom-email/admin/custom-email-admin.php:49
569
- msgid "This e-mail will be sent to a new user upon registration."
570
- msgstr "Tämä sähköposti lähetetään uudelle käyttäjälle rekisteröitymisen yhteydessä."
571
-
572
- #: modules/custom-email/admin/custom-email-admin.php:50
573
- #: modules/custom-email/admin/custom-email-admin.php:269
574
- msgid "Please be sure to include the variable %user_pass% if using default passwords or else the user will not know their password!"
575
- msgstr "Muista lisätä muuttuja %user_pass% jos käytät WordPressin generoimia oletussalasanoja, tai muuten käyttäjä ei voi tietää salasanaansa!"
576
-
577
- #: modules/custom-email/admin/custom-email-admin.php:51
578
- #: modules/custom-email/admin/custom-email-admin.php:81
579
- #: modules/custom-email/admin/custom-email-admin.php:130
580
- #: modules/custom-email/admin/custom-email-admin.php:175
581
- #: modules/custom-email/admin/custom-email-admin.php:224
582
- #: modules/custom-email/admin/custom-email-admin.php:270
583
- #: modules/custom-email/admin/custom-email-admin.php:300
584
- #: modules/custom-email/admin/custom-email-admin.php:348
585
- msgid "If any field is left empty, the default will be used instead."
586
- msgstr "Jos jokin kenttä on jätetty tyhjäksi, sen kohdalla käytetään oletusarvoa."
587
-
588
- #: modules/custom-email/admin/custom-email-admin.php:54
589
- #: modules/custom-email/admin/custom-email-admin.php:87
590
- #: modules/custom-email/admin/custom-email-admin.php:133
591
- #: modules/custom-email/admin/custom-email-admin.php:181
592
- #: modules/custom-email/admin/custom-email-admin.php:227
593
- #: modules/custom-email/admin/custom-email-admin.php:273
594
- #: modules/custom-email/admin/custom-email-admin.php:306
595
- #: modules/custom-email/admin/custom-email-admin.php:351
596
- msgid "From Name"
597
- msgstr "Lähettäjän nimi"
598
-
599
- #: modules/custom-email/admin/custom-email-admin.php:57
600
- #: modules/custom-email/admin/custom-email-admin.php:90
601
- #: modules/custom-email/admin/custom-email-admin.php:136
602
- #: modules/custom-email/admin/custom-email-admin.php:184
603
- #: modules/custom-email/admin/custom-email-admin.php:230
604
- #: modules/custom-email/admin/custom-email-admin.php:276
605
- #: modules/custom-email/admin/custom-email-admin.php:309
606
- #: modules/custom-email/admin/custom-email-admin.php:354
607
- msgid "From E-mail"
608
- msgstr "Lähettäjän sähköpostiosoite"
609
-
610
- #: modules/custom-email/admin/custom-email-admin.php:60
611
- #: modules/custom-email/admin/custom-email-admin.php:93
612
- #: modules/custom-email/admin/custom-email-admin.php:139
613
- #: modules/custom-email/admin/custom-email-admin.php:187
614
- #: modules/custom-email/admin/custom-email-admin.php:233
615
- #: modules/custom-email/admin/custom-email-admin.php:279
616
- #: modules/custom-email/admin/custom-email-admin.php:312
617
- #: modules/custom-email/admin/custom-email-admin.php:357
618
- msgid "E-mail Format"
619
- msgstr "Sähköpostin formaatti"
620
-
621
- #: modules/custom-email/admin/custom-email-admin.php:62
622
- #: modules/custom-email/admin/custom-email-admin.php:95
623
- #: modules/custom-email/admin/custom-email-admin.php:141
624
- #: modules/custom-email/admin/custom-email-admin.php:189
625
- #: modules/custom-email/admin/custom-email-admin.php:235
626
- #: modules/custom-email/admin/custom-email-admin.php:281
627
- #: modules/custom-email/admin/custom-email-admin.php:314
628
- #: modules/custom-email/admin/custom-email-admin.php:359
629
- msgid "Plain Text"
630
- msgstr "Pelkkä teksti"
631
-
632
- #: modules/custom-email/admin/custom-email-admin.php:63
633
- #: modules/custom-email/admin/custom-email-admin.php:96
634
- #: modules/custom-email/admin/custom-email-admin.php:142
635
- #: modules/custom-email/admin/custom-email-admin.php:190
636
- #: modules/custom-email/admin/custom-email-admin.php:236
637
- #: modules/custom-email/admin/custom-email-admin.php:282
638
- #: modules/custom-email/admin/custom-email-admin.php:315
639
- #: modules/custom-email/admin/custom-email-admin.php:360
640
- msgid "HTML"
641
- msgstr "Koodi"
642
-
643
- #: modules/custom-email/admin/custom-email-admin.php:66
644
- #: modules/custom-email/admin/custom-email-admin.php:99
645
- #: modules/custom-email/admin/custom-email-admin.php:145
646
- #: modules/custom-email/admin/custom-email-admin.php:193
647
- #: modules/custom-email/admin/custom-email-admin.php:239
648
- #: modules/custom-email/admin/custom-email-admin.php:285
649
- #: modules/custom-email/admin/custom-email-admin.php:318
650
- #: modules/custom-email/admin/custom-email-admin.php:363
651
- msgid "Subject"
652
- msgstr "Otsikko"
653
-
654
- #: modules/custom-email/admin/custom-email-admin.php:69
655
- #: modules/custom-email/admin/custom-email-admin.php:102
656
- #: modules/custom-email/admin/custom-email-admin.php:148
657
- #: modules/custom-email/admin/custom-email-admin.php:196
658
- #: modules/custom-email/admin/custom-email-admin.php:242
659
- #: modules/custom-email/admin/custom-email-admin.php:288
660
- #: modules/custom-email/admin/custom-email-admin.php:321
661
- #: modules/custom-email/admin/custom-email-admin.php:366
662
- msgid "Message"
663
- msgstr "Viesti"
664
-
665
- #: modules/custom-email/admin/custom-email-admin.php:72
666
- #: modules/custom-email/admin/custom-email-admin.php:105
667
- #: modules/custom-email/admin/custom-email-admin.php:151
668
- #: modules/custom-email/admin/custom-email-admin.php:199
669
- #: modules/custom-email/admin/custom-email-admin.php:245
670
- #: modules/custom-email/admin/custom-email-admin.php:291
671
- #: modules/custom-email/admin/custom-email-admin.php:324
672
- #: modules/custom-email/admin/custom-email-admin.php:369
673
- msgid "Available Variables"
674
- msgstr "Käytössä olevat muuttujat"
675
-
676
- #: modules/custom-email/admin/custom-email-admin.php:77
677
- #: modules/custom-email/admin/custom-email-admin.php:171
678
- #: modules/custom-email/admin/custom-email-admin.php:296
679
- msgid "Admin Notification"
680
- msgstr "Ylläpitäjän muistutus"
681
-
682
- #: modules/custom-email/admin/custom-email-admin.php:80
683
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon new user registration."
684
- msgstr "Uuden rekisteröitymisen yhteydessä tämä sähköposti lähetetään osoitteeseen tai osoitteisiin jotka on nimetty alla (useamman osoitteen tapauksessa osoitteet voi eritellä toisistaan pilkulla)."
685
-
686
- #: modules/custom-email/admin/custom-email-admin.php:84
687
- #: modules/custom-email/admin/custom-email-admin.php:178
688
- #: modules/custom-email/admin/custom-email-admin.php:303
689
- msgid "To"
690
- msgstr "Vastaanottaja"
691
-
692
- #: modules/custom-email/admin/custom-email-admin.php:128
693
- msgid "This e-mail will be sent to a user when they attempt to recover their password."
694
- msgstr "Tämä sähköposti lähetetään käyttäjälle salasanan palautuspyynnön yhteydessä."
695
-
696
- #: modules/custom-email/admin/custom-email-admin.php:129
697
- msgid "Please be sure to include the variable %reseturl% or else the user will not be able to recover their password!"
698
- msgstr "Muista lisätä muuttuja %reseturl% tai muuten käyttäjä ei pysty palauttamaan salasanaansa!"
699
-
700
- #: modules/custom-email/admin/custom-email-admin.php:174
701
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon user password change."
702
- msgstr "Tämä sähköposti lähetetään alla mainittuun osoitteeseen tai osoitteisiin käyttäjän vaihtaessa salasanaa (useamman osoitteen tapauksessa osoitteet voi eritellä toisistaan pilkulla)."
703
-
704
- #: modules/custom-email/admin/custom-email-admin.php:201
705
- #: modules/custom-email/admin/custom-email-admin.php:326
706
- msgid "Disable Admin Notification"
707
- msgstr "Älä lähetä ilmoitusta ylläpitäjälle"
708
-
709
- #: modules/custom-email/admin/custom-email-admin.php:222
710
- msgid "This e-mail will be sent to a new user upon registration when \"E-mail Confirmation\" is checked for \"User Moderation\"."
711
- msgstr "Tämä sähköposti lähetetään uudelle käyttäjälle rekisteröitymisen yhteydessä jos \"Sähköpostin vahvistus\" on valittuna kohdassa \"Käyttäjän moderointi\"."
712
-
713
- #: modules/custom-email/admin/custom-email-admin.php:223
714
- msgid "Please be sure to include the variable %activateurl% or else the user will not be able to activate their account!"
715
- msgstr "Muita käyttää muuttujaa %activateurl% tai muuten käyttäjä ei pysty aktivoimaan tiliään!"
716
-
717
- #: modules/custom-email/admin/custom-email-admin.php:268
718
- msgid "This e-mail will be sent to a new user upon admin approval when \"Admin Approval\" is checked for \"User Moderation\"."
719
- msgstr "Tämä sähköposti lähetetään uudelle käyttäjälle ylläpitäjän suorittaman hyväksymisen jälkeen jos \"Ylläpitäjän hyväksyminen\" on valittuna kohdasta \"Käyttajän moderointi\"."
720
-
721
- #: modules/custom-email/admin/custom-email-admin.php:299
722
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below upon user registration when \"Admin Approval\" is checked for \"User Moderation\"."
723
- msgstr "Tämä sähköposti lähetetään alla olevaan osoitteeseen tai osoitteisiin (useamman osoitteen tapauksessa osoitteet tulee erottaa toisistaan pilkuilla) kun käyttäjä rekisteröityy ja \"Ylläpitäjän hyväksyminen\" on valittuna kohdassa \"Käyttäjän moderointi\"."
724
-
725
- #: modules/custom-email/admin/custom-email-admin.php:347
726
- msgid "This e-mail will be sent to a user who is deleted/denied when \"Admin Approval\" is checked for \"User Moderation\" and the user's role is \"Pending\"."
727
- msgstr "Tämä sähköposti lähetetään käyttäjälle joka on poistettu tai hylätty, jos \"Ylläpitäjän hyväksyminen\" on valittuna kohdasta \"Käyttäjän moderointi\" ja käyttäjän rooli on \"Käsittelemätön\"."
728
-
729
- #: modules/custom-email/admin/custom-email-admin.php:390
730
- #: templates/profile-form.php:143
731
- #: templates/register-form.php:16
732
- msgid "E-mail"
733
- msgstr "Sähköpostiosoite"
734
-
735
- #: modules/custom-email/admin/custom-email-admin.php:391
736
- msgid "New User"
737
- msgstr "Uusi käyttäjä"
738
-
739
- #: modules/custom-email/admin/custom-email-admin.php:392
740
- msgid "Retrieve Password"
741
- msgstr "Salasanan palautus"
742
-
743
- #: modules/custom-email/admin/custom-email-admin.php:393
744
- #: templates/resetpass-form.php:26
745
- msgid "Reset Password"
746
- msgstr "Salasanan resetointi"
747
-
748
- #: modules/custom-email/admin/custom-email-admin.php:395
749
- msgid "User Activation"
750
- msgstr "Käyttäjän aktivointi"
751
-
752
- #: modules/custom-email/admin/custom-email-admin.php:396
753
- msgid "User Approval"
754
- msgstr "Käyttäjän hyväksyminen"
755
-
756
- #: modules/custom-email/admin/custom-email-admin.php:397
757
- msgid "User Denial"
758
- msgstr "Käyttäjän hylkääminen"
759
-
760
- #: modules/custom-email/custom-email.php:691
761
- msgid "New user registration on your site %s:"
762
- msgstr "Uusi rekisteröityminen sivustolle %s:"
763
-
764
- #: modules/custom-email/custom-email.php:693
765
- #: modules/user-moderation/user-moderation.php:366
766
- msgid "E-mail: %s"
767
- msgstr "Sähköposti: %s"
768
-
769
- #: modules/custom-email/custom-email.php:695
770
- msgid "[%s] New User Registration"
771
- msgstr "[%s] Uusi rekisteröityminen"
772
-
773
- #: modules/custom-email/custom-email.php:710
774
- #: modules/user-moderation/admin/user-moderation-admin.php:165
775
- msgid "Password: %s"
776
- msgstr "Salasana: %s"
777
-
778
- #: modules/custom-email/custom-email.php:713
779
- msgid "[%s] Your username and password"
780
- msgstr "[%s] Käyttäjänimesi ja salasanasi"
781
-
782
- #: modules/custom-email/custom-email.php:745
783
- msgid "[%s] Password Lost/Changed"
784
- msgstr "[%s] Salasana kadonnut/muuttunut"
785
-
786
- #: modules/custom-email/custom-email.php:746
787
- msgid "Password Lost and Changed for user: %s"
788
- msgstr "Salasana kadonnut ja muutettu käyttäjälle: %s"
789
-
790
- #: modules/custom-passwords/custom-passwords.php:31
791
- #: modules/custom-passwords/custom-passwords.php:63
792
- msgid "Confirm Password:"
793
- msgstr "Vahvista salasana:"
794
-
795
- #: modules/custom-passwords/custom-passwords.php:61
796
- msgid "(Must be at least 6 characters.)"
797
- msgstr "(Täytyy olla vähintään 6 merkkiä.)"
798
-
799
- #: modules/custom-passwords/custom-passwords.php:65
800
- msgid "Confirm that you've typed your password correctly."
801
- msgstr "Vahvista, että olet kirjoittanut salasanasi oikein."
802
-
803
- #: modules/custom-passwords/custom-passwords.php:103
804
- msgid "<strong>ERROR</strong>: Please enter a password."
805
- msgstr "<strong>VIRHE</strong>: Anna salasana."
806
-
807
- #: modules/custom-passwords/custom-passwords.php:106
808
- msgid "<strong>ERROR</strong>: Your passwords do not match."
809
- msgstr "<strong>VIRHE</strong>: Annetut salasanat ovat erilaisia."
810
-
811
- #: modules/custom-passwords/custom-passwords.php:109
812
- msgid "<strong>ERROR</strong>: Your password must be at least 6 characters in length."
813
- msgstr "<strong>VIRHE</strong>: Salasanan tulee olla ainakin kuusi merkkiä pitkä."
814
-
815
- #: modules/custom-passwords/custom-passwords.php:230
816
- msgid "Registration complete. You may now log in."
817
- msgstr "Rekisteröityminen on suoritettu. Voit nyt kirjautua sisään."
818
-
819
- #: modules/custom-redirection/custom-redirection.php:156
820
- msgid "Redirection"
821
- msgstr "Uudelleenohjaus"
822
-
823
- #: modules/custom-redirection/custom-redirection.php:185
824
- msgid "Log in"
825
- msgstr "Sisäänkirjautuminen"
826
-
827
- #: modules/custom-redirection/custom-redirection.php:187
828
- #: modules/custom-redirection/custom-redirection.php:199
829
- msgid "Default"
830
- msgstr "Oletus"
831
-
832
- #: modules/custom-redirection/custom-redirection.php:188
833
- msgid "Check this option to send the user to their WordPress Dashboard/Profile."
834
- msgstr "Valitse tämä lähettääksesi käyttäjä heidän WordPress ohjausnäkymään/profiiliinsa"
835
-
836
- #: modules/custom-redirection/custom-redirection.php:189
837
- #: modules/custom-redirection/custom-redirection.php:201
838
- msgid "Referer"
839
- msgstr "Viittaaja"
840
-
841
- #: modules/custom-redirection/custom-redirection.php:190
842
- msgid "Check this option to send the user back to the page they were visiting before logging in."
843
- msgstr "Valitse tämä lähettääksesi käyttäjä sivulle, jolla hän oli ennen sisäänkirjautumista."
844
-
845
- #: modules/custom-redirection/custom-redirection.php:193
846
- #: modules/custom-redirection/custom-redirection.php:205
847
- msgid "Check this option to send the user to a custom location, specified by the textbox above."
848
- msgstr "Valitse tämä lähettääksesi käyttäjä yllä annettuun osoitteeseen."
849
-
850
- #: modules/custom-redirection/custom-redirection.php:200
851
- msgid "Check this option to send the user to the log in page, displaying a message that they have successfully logged out."
852
- msgstr "Valitse tämä lähettääksesi käyttäjä sisäänkirjautumissivulle, jossa näytetään viesti että hän on kirjautunut ulos onnistuneesti."
853
-
854
- #: modules/custom-redirection/custom-redirection.php:202
855
- msgid "Check this option to send the user back to the page they were visiting before logging out. (Note: If the previous page being visited was an admin page, this can have unexpected results.)"
856
- msgstr "Valitse tämä lähettääksesi käyttäjä sivulle, jolla hän oli ennen uloskirjautumista. (Huom: Jos edellinen sivu oli admin-sivu, tällä voi olla arvaamattomia seurauksia.)"
857
-
858
- #: modules/custom-user-links/admin/custom-user-links-admin.php:140
859
- msgid "User Links"
860
- msgstr "Käyttäjälinkit"
861
-
862
- #: modules/custom-user-links/admin/custom-user-links-admin.php:232
863
- #: modules/custom-user-links/admin/custom-user-links-admin.php:255
864
- #: modules/custom-user-links/admin/custom-user-links-admin.php:300
865
- msgid "Title"
866
- msgstr "Otsikko"
867
-
868
- #: modules/custom-user-links/admin/custom-user-links-admin.php:233
869
- #: modules/custom-user-links/admin/custom-user-links-admin.php:256
870
- #: modules/custom-user-links/admin/custom-user-links-admin.php:304
871
- msgid "URL"
872
- msgstr "URL"
873
-
874
- #: modules/custom-user-links/admin/custom-user-links-admin.php:250
875
- msgid "Add New link:"
876
- msgstr "Lisää uusi linkki:"
877
-
878
- #: modules/custom-user-links/admin/custom-user-links-admin.php:266
879
- msgid "Add link"
880
- msgstr "Lisää linkki"
881
-
882
- #: modules/custom-user-links/admin/custom-user-links-admin.php:306
883
- msgid "Delete"
884
- msgstr "Poista"
885
-
886
- #: modules/custom-user-links/admin/custom-user-links-admin.php:307
887
- msgid "Update"
888
- msgstr "Päivitä"
889
-
890
- #: modules/security/admin/security-admin.php:32
891
- #: modules/security/admin/security-admin.php:35
892
- #: modules/user-moderation/admin/user-moderation-admin.php:34
893
- #: modules/user-moderation/admin/user-moderation-admin.php:44
894
- msgid "You can&#8217;t edit that user."
895
- msgstr "Et voi muokata kyseistä käyttäjää."
896
-
897
- #: modules/security/admin/security-admin.php:67
898
- msgid "User locked."
899
- msgstr "Käyttäjä lukittu."
900
-
901
- #: modules/security/admin/security-admin.php:69
902
- msgid "User unlocked."
903
- msgstr "Käyttäjän lukitus poistettu."
904
-
905
- #: modules/security/admin/security-admin.php:92
906
- msgid "Unlock"
907
- msgstr "Poista lukitus"
908
-
909
- #: modules/security/admin/security-admin.php:94
910
- msgid "Lock"
911
- msgstr "Lukitse"
912
-
913
- #: modules/security/admin/security-admin.php:113
914
- msgid "Security"
915
- msgstr "Turvallisuus"
916
-
917
- #: modules/security/admin/security-admin.php:132
918
- msgid "Private Site"
919
- msgstr "Yksityinen sivusto"
920
-
921
- #: modules/security/admin/security-admin.php:135
922
- msgid "Require users to be logged in to view site"
923
- msgstr "Edellytä käyttäjiä kirjautumaan sisään nähdäkseen sivuston"
924
-
925
- #: modules/security/admin/security-admin.php:139
926
- msgid "Login Attempts"
927
- msgstr "Sisäänkirjautumisyritykset"
928
-
929
- #: modules/security/admin/security-admin.php:144
930
- msgid "minute(s)"
931
- msgstr "minuutin"
932
-
933
- #: modules/security/admin/security-admin.php:145
934
- msgid "hour(s)"
935
- msgstr "tunnin"
936
-
937
- #: modules/security/admin/security-admin.php:146
938
- msgid "day(s)"
939
- msgstr "päivän"
940
-
941
- #: modules/security/admin/security-admin.php:169
942
- msgid "After %1$s failed login attempts within %2$s %3$s, lockout the account for %4$s %5$s."
943
- msgstr "%1$s epäonnistuneen sisäänkirjautumisyrityksen jälkeen jotka ovat tapahtuneet %2$s %3$s sisällä, lukitse käyttäjätili %4$s %5$s ajaksi."
944
-
945
- #: modules/security/security.php:64
946
- #: modules/security/security.php:90
947
- msgid "<strong>ERROR</strong>: This account has been locked because of too many failed login attempts. You may try again in %s."
948
- msgstr "<strong>VIRHE</strong>: Tämä käyttäjätili on lukittu liian monen epäonnistuneen sisäänkirjautumisyrityksen johdosta. Voit yrittää uudelleen %s kuluttua."
949
-
950
- #: modules/security/security.php:66
951
- msgid "<strong>ERROR</strong>: This account has been locked."
952
- msgstr "<strong>VIRHE</strong>: Käyttäjätili on lukittu."
953
-
954
- #: modules/security/security.php:126
955
- msgid "Failed Login Attempts"
956
- msgstr "Epäonnistuneet sisäänkirjautumisyritykset"
957
-
958
- #: modules/security/security.php:130
959
- msgid "IP Address"
960
- msgstr "IP-osoite"
961
-
962
- #: modules/security/security.php:131
963
- msgid "Date"
964
- msgstr "Päivämäärä"
965
-
966
- #: modules/security/security.php:134
967
- msgid "Y/m/d g:i:s A"
968
- msgstr "j.n.Y G.i"
969
-
970
- #: modules/security/security.php:139
971
- msgid "%s ago"
972
- msgstr "%s sitten"
973
-
974
- #: modules/security/security.php:141
975
- msgid "Y/m/d"
976
- msgstr "j.n.Y"
977
-
978
- #: modules/themed-profiles/admin/themed-profiles-admin.php:23
979
- #: modules/themed-profiles/admin/themed-profiles-admin.php:42
980
- msgid "Themed Profiles"
981
- msgstr "Teemoitetut profiilit"
982
-
983
- #: modules/themed-profiles/admin/themed-profiles-admin.php:51
984
- msgid "Restrict Admin Access"
985
- msgstr "Rajoita adminiin pääsy"
986
-
987
- #: modules/themed-profiles/themed-profiles.php:123
988
- #: templates/profile-form.php:182
989
- #: templates/resetpass-form.php:19
990
- msgid "Strength indicator"
991
- msgstr "Vahvuusmittari"
992
-
993
- #: modules/themed-profiles/themed-profiles.php:124
994
- msgid "Very weak"
995
- msgstr "Erittäin heikko"
996
-
997
- #: modules/themed-profiles/themed-profiles.php:125
998
- msgid "Weak"
999
- msgstr "Heikko"
1000
-
1001
- #. translators: password strength
1002
- #: modules/themed-profiles/themed-profiles.php:127
1003
- msgctxt "password strength"
1004
- msgid "Medium"
1005
- msgstr "Keskiverto"
1006
-
1007
- #: modules/themed-profiles/themed-profiles.php:128
1008
- msgid "Strong"
1009
- msgstr "Vahva"
1010
-
1011
- #: modules/themed-profiles/themed-profiles.php:138
1012
- msgid "You do not have permission to edit this user."
1013
- msgstr "Sinulla ei ole oikeuksia muokata tätä käyttäjää."
1014
-
1015
- #: modules/themed-profiles/themed-profiles.php:154
1016
- msgid "Profile updated."
1017
- msgstr "Profiili päivitetty."
1018
-
1019
- #: modules/themed-profiles/themed-profiles.php:243
1020
- msgid "Your Profile"
1021
- msgstr "Omat tiedot"
1022
-
1023
- #: modules/user-moderation/admin/user-moderation-admin.php:75
1024
- msgid "User approved."
1025
- msgstr "Käyttäjä hyväksytty."
1026
-
1027
- #: modules/user-moderation/admin/user-moderation-admin.php:77
1028
- msgid "Activation sent."
1029
- msgstr "Aktivointi lähetetty."
1030
-
1031
- #: modules/user-moderation/admin/user-moderation-admin.php:105
1032
- msgid "Resend Activation"
1033
- msgstr "Lähetä aktivointi uudelleen."
1034
-
1035
- #: modules/user-moderation/admin/user-moderation-admin.php:110
1036
- msgid "Approve"
1037
- msgstr "Hyväksy"
1038
-
1039
- #: modules/user-moderation/admin/user-moderation-admin.php:163
1040
- msgid "You have been approved access to %s"
1041
- msgstr "Sinulle on myönnetty pääsy kohteeseen %s"
1042
-
1043
- #: modules/user-moderation/admin/user-moderation-admin.php:168
1044
- msgid "[%s] Registration Approved"
1045
- msgstr "[%s] Rekisteröityminen hyväksytty"
1046
-
1047
- #: modules/user-moderation/admin/user-moderation-admin.php:203
1048
- msgid "You have been denied access to %s"
1049
- msgstr "Pääsysi sivustolle %s on evätty."
1050
-
1051
- #: modules/user-moderation/admin/user-moderation-admin.php:204
1052
- msgid "[%s] Registration Denied"
1053
- msgstr "[%s] Rekisteröityminen hylätty"
1054
-
1055
- #: modules/user-moderation/admin/user-moderation-admin.php:226
1056
- msgid "Moderation"
1057
- msgstr "Moderointi"
1058
-
1059
- #: modules/user-moderation/admin/user-moderation-admin.php:242
1060
- msgid "User Moderation"
1061
- msgstr "Käyttäjän moderointi"
1062
-
1063
- #: modules/user-moderation/admin/user-moderation-admin.php:245
1064
- msgid "None"
1065
- msgstr "Ei mitään"
1066
-
1067
- #: modules/user-moderation/admin/user-moderation-admin.php:246
1068
- msgid "Check this option to require no moderation."
1069
- msgstr "Valitse tämä jos et halua käyttää moderointia."
1070
-
1071
- #: modules/user-moderation/admin/user-moderation-admin.php:248
1072
- msgid "E-mail Confirmation"
1073
- msgstr "Sähköpostin vahvistus"
1074
-
1075
- #: modules/user-moderation/admin/user-moderation-admin.php:249
1076
- msgid "Check this option to require new users to confirm their e-mail address before they may log in."
1077
- msgstr "Valitse tämä, jos haluat että uudet käyttäjät vahvistavat sähköpostiosoitteensa ennen kuin he voivat kirjautua sisään."
1078
-
1079
- #: modules/user-moderation/admin/user-moderation-admin.php:251
1080
- msgid "Admin Approval"
1081
- msgstr "Ylläpitäjän hyväksyminen"
1082
-
1083
- #: modules/user-moderation/admin/user-moderation-admin.php:252
1084
- msgid "Check this option to require new users to be approved by an administrator before they may log in."
1085
- msgstr "Valitse tämä, jos haluat että ylläpitäjä hyväksyy uudet käyttäjät ennen kuin he voivat kirjautua sisään."
1086
-
1087
- #: modules/user-moderation/admin/user-moderation-admin.php:269
1088
- msgid "User Moderation is not currently compatible with multisite."
1089
- msgstr "Käyttäjämoderointi ei ole tällä hetkellä yhteensopiva multisiten kanssa."
1090
-
1091
- #: modules/user-moderation/user-moderation.php:163
1092
- msgid "<strong>ERROR</strong>: You have not yet confirmed your e-mail address. <a href=\"%s\">Resend activation</a>?"
1093
- msgstr "<strong>VIRHE</strong>: Et ole vielä vahvistanut sähköpostiosoitettasi. Haluatko, että <a href=\"%s\">aktivointi lähetetään uudelleen</a>?"
1094
-
1095
- #: modules/user-moderation/user-moderation.php:166
1096
- msgid "<strong>ERROR</strong>: Your registration has not yet been approved."
1097
- msgstr "<strong>VIRHE</strong>: Rekisteröitymistäsi ei ole vielä hyväksytty."
1098
-
1099
- #: modules/user-moderation/user-moderation.php:328
1100
- msgid "[%s] Activate Your Account"
1101
- msgstr "[%s] Aktivoi tilisi"
1102
-
1103
- #: modules/user-moderation/user-moderation.php:329
1104
- msgid "Thanks for registering at %s! To complete the activation of your account please click the following link: "
1105
- msgstr "Kiitoksia rekisteröitymisestäsi sivustolla %s! Aktivoidaksesi käyttäjätilisi, klikkaa alla olevaa linkkiä:"
1106
-
1107
- #: modules/user-moderation/user-moderation.php:362
1108
- msgid "[%s] New User Awaiting Approval"
1109
- msgstr "[%s] Uusi käyttäjä odottaa hyväksymistä"
1110
-
1111
- #: modules/user-moderation/user-moderation.php:364
1112
- msgid "New user requires approval on your blog %s:"
1113
- msgstr "Uusi käyttäjä tarvitsee hyväksynnän sivustolle %s:"
1114
-
1115
- #: modules/user-moderation/user-moderation.php:367
1116
- msgid "To approve or deny this user:"
1117
- msgstr "Hyväksyäksesi tai hylätäksesi käyttäjän:"
1118
-
1119
- #: modules/user-moderation/user-moderation.php:388
1120
- msgid "Your registration was successful but you must now confirm your email address before you can log in. Please check your email and click on the link provided."
1121
- msgstr "Rekisteröitymisesi onnistui, mutta ennen kuin voit kirjautua sisään sinun tulee vahvistaa sähköpostiosoitteesi. Tarkista sähköpostisi ja klikkaa sinne lähetettyä linkkiä."
1122
-
1123
- #: modules/user-moderation/user-moderation.php:390
1124
- msgid "Your registration was successful but you must now be approved by an administrator before you can log in. You will be notified by e-mail once your account has been reviewed."
1125
- msgstr "Rekisteröitymisesi onnistui, mutta sivuston ylläpitäjän on hyväksyttävä käyttäjätilisi ennen kuin voit kirjautua sisään. Saat sähköpostin kun rekisteröitymisesi on käsitelty."
1126
-
1127
- #: modules/user-moderation/user-moderation.php:393
1128
- msgid "Your account has been activated. You may now log in."
1129
- msgstr "Käyttäjätilisi on aktivoitu. Voit nyt kirjautua sisään."
1130
-
1131
- #: modules/user-moderation/user-moderation.php:395
1132
- msgid "Your account has been activated. Please check your e-mail for your password."
1133
- msgstr "Käyttäjätilisi on aktivoitu. Salasana on lähetetty sähköpostiosoitteeseesi."
1134
-
1135
- #: modules/user-moderation/user-moderation.php:397
1136
- msgid "<strong>ERROR</strong>: Sorry, that key does not appear to be valid."
1137
- msgstr "<strong>VIRHE</strong>: Avain ei kelpaa."
1138
-
1139
- #: modules/user-moderation/user-moderation.php:400
1140
- msgid "<strong>ERROR</strong>: Sorry, the activation e-mail could not be sent."
1141
- msgstr "<strong>VIRHE</strong>: Aktivointisähköpostia ei saatu lähetettyä."
1142
-
1143
- #: modules/user-moderation/user-moderation.php:402
1144
- msgid "The activation e-mail has been sent to the e-mail address with which you registered. Please check your email and click on the link provided."
1145
- msgstr "Aktivointisähköposti on lähetetty sähköpostiosoitteeseen jolla rekisteröidyit. Tarkista sähköpostisi ja klikkaa sähköpostissa annettua linkkiä."
1146
-
1147
- #: templates/login-form.php:12
1148
- #: templates/profile-form.php:91
1149
- #: templates/register-form.php:12
1150
- msgid "Username"
1151
- msgstr "Käyttäjänimi"
1152
-
1153
- #: templates/login-form.php:16
1154
- msgid "Password"
1155
- msgstr "Salasana"
1156
-
1157
- #: templates/login-form.php:25
1158
- msgid "Remember Me"
1159
- msgstr "Muista minut"
1160
-
1161
- #: templates/lostpassword-form.php:12
1162
- msgid "Username or E-mail:"
1163
- msgstr "Käyttäjänimi tai sähköpostiosoite:"
1164
-
1165
- #: templates/lostpassword-form.php:20
1166
- msgid "Get New Password"
1167
- msgstr "Pyydä uusi salasana"
1168
-
1169
- #: templates/ms-signup-another-blog-form.php:7
1170
- msgid "Get <em>another</em> %s site in seconds"
1171
- msgstr "Luo <em>toinen</em> %s sivusto hetkessä"
1172
-
1173
- #: templates/ms-signup-another-blog-form.php:10
1174
- msgid "There was a problem, please correct the form below and try again."
1175
- msgstr "Lomakkeesta löytyi virheitä, korjaa virheet ja yritä uudelleen."
1176
-
1177
- #: templates/ms-signup-another-blog-form.php:13
1178
- msgid "Welcome back, %s. By filling out the form below, you can <strong>add another site to your account</strong>. There is no limit to the number of sites you can have, so create to your heart&#8217;s content, but write responsibly!"
1179
- msgstr "Tervetuloa takaisin, %s. Täyttämällä alla olevan lomakkeen, voit <strong>perustaa uuden sivuston</strong>. Sivustojen lukumäärää ei ole rajoitettu, joten luo niitä niin monta kuin haluat, mutta kirjoita vastuullisesti!"
1180
-
1181
- #: templates/ms-signup-another-blog-form.php:18
1182
- msgid "Sites you are already a member of:"
1183
- msgstr "Sivustot, joiden jäsen olet:"
1184
-
1185
- #: templates/ms-signup-another-blog-form.php:27
1186
- msgid "If you&#8217;re not going to use a great site domain, leave it for a new user. Now have at it!"
1187
- msgstr "Mikäli et aio käyttää sivuston verkkotunnusta, jätä se uusille käyttäjille. "
1188
-
1189
- #: templates/ms-signup-another-blog-form.php:33
1190
- #: templates/ms-signup-blog-form.php:17
1191
- msgid "Site Name:"
1192
- msgstr "Sivuston nimi:"
1193
-
1194
- #: templates/ms-signup-another-blog-form.php:35
1195
- #: templates/ms-signup-blog-form.php:19
1196
- msgid "Site Domain:"
1197
- msgstr "Sivuston verkkotunnus:"
1198
-
1199
- #: templates/ms-signup-another-blog-form.php:52
1200
- #: templates/ms-signup-blog-form.php:36
1201
- msgid "sitename"
1202
- msgstr "sivustonnimi"
1203
-
1204
- #: templates/ms-signup-another-blog-form.php:54
1205
- #: templates/ms-signup-blog-form.php:38
1206
- msgid "domain"
1207
- msgstr "verkkotunnus"
1208
-
1209
- #: templates/ms-signup-another-blog-form.php:55
1210
- #: templates/ms-signup-blog-form.php:39
1211
- msgid "Your address will be %s."
1212
- msgstr "Sivustosi osoite on %s."
1213
-
1214
- #: templates/ms-signup-another-blog-form.php:55
1215
- #: templates/ms-signup-blog-form.php:39
1216
- msgid "Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!"
1217
- msgstr "Sisällettävä ainakin 4 merkkiä, vain kirjaimet ja numerot hyväksytään. Tunnusta ei voi muuttaa, joten valitse harkiten!"
1218
-
1219
- #: templates/ms-signup-another-blog-form.php:58
1220
- #: templates/ms-signup-blog-form.php:42
1221
- msgid "Site Title:"
1222
- msgstr "Sivuston otsikko:"
1223
-
1224
- #: templates/ms-signup-another-blog-form.php:66
1225
- #: templates/ms-signup-blog-form.php:50
1226
- msgid "Privacy:"
1227
- msgstr "Tietosuoja:"
1228
-
1229
- #: templates/ms-signup-another-blog-form.php:67
1230
- #: templates/ms-signup-blog-form.php:51
1231
- msgid "Allow my site to appear in search engines like Google, Technorati, and in public listings around this network."
1232
- msgstr "Salli sivuston näkyvän hakukoneissa kuten Google, Technorati ja julkisissa listauksissa tässä sivustokokonaisuudessa."
1233
-
1234
- #: templates/ms-signup-another-blog-form.php:71
1235
- #: templates/ms-signup-blog-form.php:55
1236
- msgid "Yes"
1237
- msgstr "Kyllä"
1238
-
1239
- #: templates/ms-signup-another-blog-form.php:75
1240
- #: templates/ms-signup-blog-form.php:59
1241
- msgid "No"
1242
- msgstr "Ei"
1243
-
1244
- #: templates/ms-signup-another-blog-form.php:85
1245
- msgid "Create Site"
1246
- msgstr "Luo sivusto"
1247
-
1248
- #: templates/ms-signup-blog-form.php:69
1249
- msgid "Signup"
1250
- msgstr "Rekisteröidy"
1251
-
1252
- #: templates/ms-signup-user-form.php:7
1253
- msgid "Get your own %s account in seconds"
1254
- msgstr "Luo oma %s käyttäjätilisi hetkessä"
1255
-
1256
- #: templates/ms-signup-user-form.php:22
1257
- msgid "(Must be at least 4 characters, letters and numbers only.)"
1258
- msgstr "(Vähintään 4 merkkiä, ainoastaan kirjaimia ja numeroita.)"
1259
-
1260
- #: templates/ms-signup-user-form.php:24
1261
- msgid "Email&nbsp;Address:"
1262
- msgstr "Sähköpostiosoite:"
1263
-
1264
- #: templates/ms-signup-user-form.php:30
1265
- msgid "We send your registration email to this address. (Double-check your email address before continuing.)"
1266
- msgstr "Lähetämme rekisteröintisähköpostisi tähän osoitteeseen. Tarkista se vielä ennen kuin jatkat!"
1267
-
1268
- #: templates/ms-signup-user-form.php:47
1269
- msgid "Gimme a site!"
1270
- msgstr "Anna minulle sivusto!"
1271
-
1272
- #: templates/ms-signup-user-form.php:50
1273
- msgid "Just a username, please."
1274
- msgstr "Vain käyttäjänimi, kiitos."
1275
-
1276
- #: templates/ms-signup-user-form.php:54
1277
- msgid "Next"
1278
- msgstr "Seuraava"
1279
-
1280
- #: templates/profile-form.php:26
1281
- msgid "Personal Options"
1282
- msgstr "Henkilökohtaiset asetukset"
1283
-
1284
- #: templates/profile-form.php:31
1285
- msgid "Visual Editor"
1286
- msgstr "Graafinen muokkain"
1287
-
1288
- #: templates/profile-form.php:32
1289
- msgid "Disable the visual editor when writing"
1290
- msgstr "Ota graafinen muokkain pois käytöstä"
1291
-
1292
- #: templates/profile-form.php:37
1293
- msgid "Admin Color Scheme"
1294
- msgstr "Hallintapaneelin väri"
1295
-
1296
- #: templates/profile-form.php:44
1297
- msgid "Keyboard Shortcuts"
1298
- msgstr "Näppäimistön pikavalinnat"
1299
-
1300
- #: templates/profile-form.php:45
1301
- msgid "Enable keyboard shortcuts for comment moderation."
1302
- msgstr "Ota pikanäppäimet käyttöön kommenttien hallintaa varten."
1303
-
1304
- #: templates/profile-form.php:45
1305
- msgid "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">More information</a>"
1306
- msgstr "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">Lisätietoa</a>"
1307
-
1308
- #: templates/profile-form.php:51
1309
- #: templates/profile-form.php:54
1310
- msgid "Toolbar"
1311
- msgstr "työkalupalkki"
1312
-
1313
- #: templates/profile-form.php:57
1314
- msgid "Show Toolbar when viewing site"
1315
- msgstr "Näytä työkalupalkki kun tarkastelet sivustoa"
1316
-
1317
- #: templates/profile-form.php:63
1318
- #: templates/profile-form.php:66
1319
- msgid "Show Admin Bar"
1320
- msgstr "Näytä hallintapalkki"
1321
-
1322
- #. translators: Show admin bar when viewing site
1323
- #: templates/profile-form.php:69
1324
- msgid "when viewing site"
1325
- msgstr "kun tarkastelet sivustoa"
1326
-
1327
- #. translators: Show admin bar in dashboard
1328
- #: templates/profile-form.php:74
1329
- msgid "in dashboard"
1330
- msgstr "hallintanäkymässä"
1331
-
1332
- #: templates/profile-form.php:87
1333
- msgid "Name"
1334
- msgstr "Nimi"
1335
-
1336
- #: templates/profile-form.php:92
1337
- msgid "Your username cannot be changed."
1338
- msgstr "Käyttäjänimeä ei voi vaihtaa."
1339
-
1340
- #: templates/profile-form.php:96
1341
- msgid "First name"
1342
- msgstr "Etunimi"
1343
-
1344
- #: templates/profile-form.php:101
1345
- msgid "Last name"
1346
- msgstr "Sukunimi"
1347
-
1348
- #: templates/profile-form.php:106
1349
- msgid "Nickname"
1350
- msgstr "Kutsumanimi"
1351
-
1352
- #: templates/profile-form.php:106
1353
- #: templates/profile-form.php:143
1354
- msgid "(required)"
1355
- msgstr "(pakollinen)"
1356
-
1357
- #: templates/profile-form.php:111
1358
- msgid "Display name publicly as"
1359
- msgstr "Julkisesti näytetty nimi"
1360
-
1361
- #: templates/profile-form.php:139
1362
- msgid "Contact Info"
1363
- msgstr "Yhteystiedot"
1364
-
1365
- #: templates/profile-form.php:148
1366
- msgid "Website"
1367
- msgstr "Kotisivut"
1368
-
1369
- #: templates/profile-form.php:165
1370
- msgid "About Yourself"
1371
- msgstr "Tietoa sinusta"
1372
-
1373
- #: templates/profile-form.php:169
1374
- msgid "Biographical Info"
1375
- msgstr "Elämäkerrallista tietoa"
1376
-
1377
- #: templates/profile-form.php:171
1378
- msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
1379
- msgstr "Jaa hieman tietoa itsestäsi profiilissasi. Tämä tieto saaatetaan näyttää julkisesti."
1380
-
1381
- #: templates/profile-form.php:179
1382
- msgid "New Password"
1383
- msgstr "Uusi salasana"
1384
-
1385
- #: templates/profile-form.php:180
1386
- msgid "If you would like to change the password type a new one. Otherwise leave this blank."
1387
- msgstr "Jos haluat muuttaa salasanasi, kirjoita uusi salasana. Muussa tapauksessa jätä tyhjäksi."
1388
-
1389
- #: templates/profile-form.php:181
1390
- msgid "Type your new password again."
1391
- msgstr "Kirjoita uusi salasanasi uudelleen."
1392
-
1393
- #: templates/profile-form.php:183
1394
- #: templates/resetpass-form.php:20
1395
- msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
1396
- msgstr "Vinkki: Salasanan tulisi olla ainakin seitsemän merkkiä pitkä. Tehdäksesi siitä vahvan, käytä sekä isoja että pieniä kirjaimia, numeroita ja symboleja kuten ! \" ? $ % ^ &amp; )."
1397
-
1398
- #: templates/profile-form.php:197
1399
- msgid "Additional Capabilities"
1400
- msgstr "Muita käyttömahdollisuuksia"
1401
-
1402
- #: templates/profile-form.php:216
1403
- msgid "Update Profile"
1404
- msgstr "Päivitä profiilia"
1405
-
1406
- #: templates/register-form.php:23
1407
- msgid "A password will be e-mailed to you."
1408
- msgstr "Salasana lähetetään sinulle sähköpostitse."
1409
-
1410
- #: templates/resetpass-form.php:12
1411
- msgid "New password"
1412
- msgstr "Uusi salasana"
1413
-
1414
- #: templates/resetpass-form.php:16
1415
- msgid "Confirm new password"
1416
- msgstr "Varmista uusi salasana"
1417
-
1418
- #. Plugin URI of the plugin/theme
1419
- msgid "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/"
1420
- msgstr "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/"
1421
-
1422
- #. Description of the plugin/theme
1423
- msgid "Themes the WordPress login, registration and forgot password pages according to your theme."
1424
- msgstr "Sulauttaa WordPressin sisäänkirjautumisen, rekisteröitymisen ja unohtuneen salasanan sivun käyttämääsi teemaan."
1425
-
1426
- #. Author of the plugin/theme
1427
- msgid "Jeff Farthing"
1428
- msgstr "Jeff Farthing"
1429
-
1430
- #. Author URI of the plugin/theme
1431
- msgid "http://www.jfarthing.com"
1432
- msgstr "http://www.jfarthing.com"
1433
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
language/theme-my-login-fr_FR.mo DELETED
Binary file
language/theme-my-login-fr_FR.po DELETED
@@ -1,1437 +0,0 @@
1
- # Copyright (C) 2012 Theme My Login
2
- # This file is distributed under the same license as the Theme My Login package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Theme My Login 6.2\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/theme-my-login\n"
7
- "POT-Creation-Date: 2012-03-08 16:19:05+00:00\n"
8
- "PO-Revision-Date: 2012-03-08 16:05-0500\n"
9
- "Last-Translator: Jeff Farthing <jeff@jfarthing.com>\n"
10
- "Language-Team: \n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "Plural-Forms: nplurals=2; plural=n>1\n"
15
- "X-Poedit-Language: French\n"
16
- "X-Poedit-Country: FRANCE\n"
17
- "X-Poedit-SourceCharset: utf-8\n"
18
-
19
- #. #-#-#-#-# plugin.pot (Theme My Login 6.2) #-#-#-#-#
20
- #. Plugin Name of the plugin/theme
21
- #: admin/class-theme-my-login-admin.php:42
22
- #: admin/class-theme-my-login-admin.php:43
23
- #: includes/class-theme-my-login-widget.php:24
24
- msgid "Theme My Login"
25
- msgstr "Theme My Login"
26
-
27
- #: admin/class-theme-my-login-admin.php:81
28
- msgid "ERROR: The module \"%1$s\" could not be activated (%2$s)."
29
- msgstr "ERREUR : Le module \"%1$s\" ne pouvait pas être activé (%2$s)."
30
-
31
- #: admin/class-theme-my-login-admin.php:103
32
- msgid "NOTICE:"
33
- msgstr "REMARQUE :"
34
-
35
- #: admin/class-theme-my-login-admin.php:104
36
- msgid "Now that you have activated Theme My Login, please <a href=\"%s\">visit the settings page</a> and familiarize yourself with all of the available options."
37
- msgstr "Maintenant que vous avez activé Theme My Login, merci de <a href=\"%s\">visitez la page des paramètres</a> et de vous familiariser avec toutes les options disponibles."
38
-
39
- #: admin/class-theme-my-login-admin.php:106
40
- msgid "Take me to the settings page"
41
- msgstr "Aller à la page des paramètres"
42
-
43
- #: admin/class-theme-my-login-admin.php:119
44
- msgid "You can now login with your e-mail address or username! Try it out!"
45
- msgstr "Vous pouvez maintenant vous connecter avec votre adresse e-mail ou nom d'utilisateur! Essayez-le !"
46
-
47
- #: admin/class-theme-my-login-admin.php:120
48
- msgid "Theme My Login now utilizes a module system. Modules are similar to WordPress plugins. Each module extends the default functionality of Theme My Login. <a rel=\"tml-options\" href=\"#tml-options-modules\">Click here</a> to get started with modules now."
49
- msgstr "Theme My Login utilise maintenant un système de modules. Les modules sont semblables à des plugins WordPress. Chaque module étend la fonctionnalité par défaut de Theme My Login. <a rel=\"tml-options\" href=\"#tml-options-modules\">Cliquez ici</ a> pour commencer avec les modules maintenant."
50
-
51
- #: admin/class-theme-my-login-admin.php:121
52
- msgid "Theme My Login now allows custom forms. You can create your own form template(s) by copying the default version(s) from \"theme-my-login/templates\" to your current theme directory. Try it out!"
53
- msgstr "Theme My Login permet maintenant des formulaires personnalisés. Vous pouvez créer votre propre modèle de formulaire en copiant la version par défaut à partir de \"theme-my-login/templates\" dans le répertoire de votre thème actuel. Essayez-le !"
54
-
55
- #: admin/class-theme-my-login-admin.php:122
56
- msgid "You can maintain your stylesheet changes between upgrades. Just simply copy the file \"theme-my-login/theme-my-login.css\" to your current theme directory and edit it as you please!"
57
- msgstr "Vous pouvez garder les changements de votre feuille de style entre les mises à jours. Copiez le fichier \"theme-my-login/theme-my-login.css\" dans le répertoire de votre thème actuel."
58
-
59
- #: admin/class-theme-my-login-admin.php:123
60
- msgid "Theme My Login provides a shortcode that you can use within your posts with multiple parameters to customize the form. Visit the <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Theme My Login Documentation</a> for usage instructions."
61
- msgstr "Theme My Login fournit un shortcode que vous pouvez utiliser dans vos articles avec plusieurs paramètres pour personnaliser le formulaire. Visiter la <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Documentation</a> pour les instructions d'usage."
62
-
63
- #: admin/class-theme-my-login-admin.php:124
64
- msgid "Jeff is <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">available for hire</a>!"
65
- msgstr "Jeff est <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">disponible pour l'engagement</a>!"
66
-
67
- #: admin/class-theme-my-login-admin.php:128
68
- msgid "Did You Know?"
69
- msgstr "Le Saviez-Vous ?"
70
-
71
- #: admin/class-theme-my-login-admin.php:177
72
- msgid "General"
73
- msgstr "Général"
74
-
75
- #: admin/class-theme-my-login-admin.php:178
76
- msgid "Basic"
77
- msgstr "Principal"
78
-
79
- #: admin/class-theme-my-login-admin.php:179
80
- #: admin/class-theme-my-login-admin.php:319
81
- msgid "Modules"
82
- msgstr "Modules"
83
-
84
- #: admin/class-theme-my-login-admin.php:181
85
- msgid "Permalinks"
86
- msgstr "Permaliens"
87
-
88
- #: admin/class-theme-my-login-admin.php:188
89
- msgid "Theme My Login Settings"
90
- msgstr "Paramètres Theme My Login"
91
-
92
- #: admin/class-theme-my-login-admin.php:194
93
- #: admin/class-theme-my-login-admin.php:254
94
- msgid "Save Changes"
95
- msgstr "Enregistrer les modifications"
96
-
97
- #: admin/class-theme-my-login-admin.php:271
98
- msgid "Page ID"
99
- msgstr "Page ID"
100
-
101
- #: admin/class-theme-my-login-admin.php:274
102
- msgid "This should be the ID of the WordPress page that includes the [theme-my-login] shortcode. By default, this page is titled \"Login\"."
103
- msgstr "Cela devrait être l'ID de la page WordPress qui inclut le shortcode [theme-my-login]. Par défaut, cette page est intitulée \"Login\"."
104
-
105
- #: admin/class-theme-my-login-admin.php:278
106
- msgid "Pagelist"
107
- msgstr "Pagelist"
108
-
109
- #: admin/class-theme-my-login-admin.php:281
110
- msgid "Show Page In Pagelist"
111
- msgstr "Voir la Page Dans la Pagelist"
112
-
113
- #: admin/class-theme-my-login-admin.php:282
114
- msgid "Enable this setting to add login/logout links to the pagelist generated by functions like wp_list_pages() and wp_page_menu()."
115
- msgstr "Activez ce paramètre pour ajouter les liens Connexion / Déconnexion à la pagelist généré par des fonctions comme wp_list_pages() et wp_page_menu()."
116
-
117
- #: admin/class-theme-my-login-admin.php:286
118
- msgid "Stylesheet"
119
- msgstr "Feuille de style"
120
-
121
- #: admin/class-theme-my-login-admin.php:289
122
- msgid "Enable \"theme-my-login.css\""
123
- msgstr "Activer \"theme-my-login.css\""
124
-
125
- #: admin/class-theme-my-login-admin.php:290
126
- msgid "In order to keep changes between upgrades, you can store your customized \"theme-my-login.css\" in your current theme directory."
127
- msgstr "Afin de garder les changements entre les mises à jours, vous pouvez stocker vos données personnalisées \"theme-my-login.css\" dans le répertoire de votre thème actuel."
128
-
129
- #: admin/class-theme-my-login-admin.php:294
130
- msgid "E-mail Login"
131
- msgstr "connexion e-mail"
132
-
133
- #: admin/class-theme-my-login-admin.php:297
134
- msgid "Enable e-mail address login"
135
- msgstr "Activer la connexion adresse e-mail"
136
-
137
- #: admin/class-theme-my-login-admin.php:298
138
- msgid "Allows users to login using their e-mail address in place of their username."
139
- msgstr "Permet aux utilisateurs de se connecter en utilisant leur adresse e-mail à la place de leur nom d'utilisateur."
140
-
141
- #: admin/class-theme-my-login-admin.php:323
142
- msgid "Enable %s"
143
- msgstr "Activer %s"
144
-
145
- #: admin/class-theme-my-login-admin.php:325
146
- msgid "No modules found."
147
- msgstr "Pas de modules trouvés."
148
-
149
- #: admin/class-theme-my-login-admin.php:343
150
- #: includes/class-theme-my-login-widget.php:87
151
- msgid "Login"
152
- msgstr "Connexion"
153
-
154
- #: admin/class-theme-my-login-admin.php:344
155
- #: includes/class-theme-my-login-template.php:141
156
- #: includes/class-theme-my-login-widget.php:87
157
- #: templates/register-form.php:25
158
- msgid "Register"
159
- msgstr "Inscrivez-vous"
160
-
161
- #: admin/class-theme-my-login-admin.php:345
162
- #: includes/class-theme-my-login-template.php:147
163
- #: includes/class-theme-my-login-widget.php:87
164
- msgid "Lost Password"
165
- msgstr "Mot de passe perdu ?"
166
-
167
- #: admin/class-theme-my-login-admin.php:475
168
- msgid "One of the modules is invalid."
169
- msgstr "Un des modules est invalide."
170
-
171
- #: admin/class-theme-my-login-admin.php:531
172
- msgid "Invalid module path."
173
- msgstr "Chemin du module invalide."
174
-
175
- #: admin/class-theme-my-login-admin.php:533
176
- msgid "Module file does not exist."
177
- msgstr "Le fichier du module n'existe pas."
178
-
179
- #: admin/class-theme-my-login-admin.php:537
180
- msgid "The module does not have a valid header."
181
- msgstr "Le module n'a pas une en-tête valide."
182
-
183
- #: includes/class-theme-my-login-ms-signup.php:117
184
- msgctxt "Multisite active signup type"
185
- msgid "all"
186
- msgstr "tout"
187
-
188
- #: includes/class-theme-my-login-ms-signup.php:118
189
- msgctxt "Multisite active signup type"
190
- msgid "none"
191
- msgstr "aucun"
192
-
193
- #: includes/class-theme-my-login-ms-signup.php:119
194
- msgctxt "Multisite active signup type"
195
- msgid "blog"
196
- msgstr "blog"
197
-
198
- #: includes/class-theme-my-login-ms-signup.php:120
199
- msgctxt "Multisite active signup type"
200
- msgid "user"
201
- msgstr "utilisateur"
202
-
203
- #: includes/class-theme-my-login-ms-signup.php:123
204
- msgid "Greetings Site Administrator! You are currently allowing &#8220;%s&#8221; registrations. To change or disable registration go to your <a href=\"%s\">Options page</a>."
205
- msgstr "Salutations, cher administrateur du site&nbsp;! Vous acceptez actuellement les inscriptions de type &laquo;&nbsp;%s&nbsp;&raquo;. Pour modifier ou désactiver les inscriptions, allez sur votre <a href=\"%s\">page d&rsquo;options</a>."
206
-
207
- #: includes/class-theme-my-login-ms-signup.php:129
208
- msgid "Registration has been disabled."
209
- msgstr "Les inscriptions ne sont pas autorisées pour le moment."
210
-
211
- #: includes/class-theme-my-login-ms-signup.php:131
212
- msgid "You must first <a href=\"%s\">log in</a>, and then you can create a new site."
213
- msgstr "Vous devez d&rsquo;abord <a href=\"%s\">vous connecter</a> avant de pouvoir créer un nouveau site."
214
-
215
- #: includes/class-theme-my-login-ms-signup.php:155
216
- msgid "%s is your new username"
217
- msgstr "Votre nouvel identifiant est %s"
218
-
219
- #: includes/class-theme-my-login-ms-signup.php:156
220
- msgid "But, before you can start using your new username, <strong>you must activate it</strong>."
221
- msgstr "Mais, avant d&#8217;utiliser votre nouvel identifiant, <strong>vous devez l&#8217;activer</strong>."
222
-
223
- #: includes/class-theme-my-login-ms-signup.php:157
224
- msgid "Check your inbox at <strong>%1$s</strong> and click the link given."
225
- msgstr "Consultez la boite de réception à l&rsquo;adresse <strong>%1$s</strong>, et cliquez sur le lien qui vous a été envoyé. Au cas où, vérifiez également votre dossier &laquo;&nbsp;spam&nbsp;&raquo;."
226
-
227
- #: includes/class-theme-my-login-ms-signup.php:158
228
- msgid "If you do not activate your username within two days, you will have to sign up again."
229
- msgstr "Si vous n&#8217;activez pas votre compte sous deux jours, vous devrez vous réinscrire."
230
-
231
- #: includes/class-theme-my-login-ms-signup.php:162
232
- msgid "User registration has been disabled."
233
- msgstr "Les inscriptions d&rsquo;utilisateurs sont désactivées."
234
-
235
- #: includes/class-theme-my-login-ms-signup.php:194
236
- msgid "Congratulations! Your new site, %s, is almost ready."
237
- msgstr "Félicitations&nbsp;! Votre nouveau site, %s, est presque prêt."
238
-
239
- #: includes/class-theme-my-login-ms-signup.php:196
240
- msgid "But, before you can start using your site, <strong>you must activate it</strong>."
241
- msgstr "Mais, avant d&#8217;utiliser votre nouveau site, <strong>vous devez l&#8217;activer</strong>."
242
-
243
- #: includes/class-theme-my-login-ms-signup.php:197
244
- msgid "Check your inbox at <strong>%s</strong> and click the link given."
245
- msgstr "Consultez la boite de réception de l&rsquo;adresse <strong>%s</strong>, et cliquez sur le lien qui vous a été envoyé."
246
-
247
- #: includes/class-theme-my-login-ms-signup.php:198
248
- msgid "If you do not activate your site within two days, you will have to sign up again."
249
- msgstr "Si vous n&rsquo;activez pas votre site sous deux jours, vous devrez le recréer."
250
-
251
- #: includes/class-theme-my-login-ms-signup.php:199
252
- msgid "Still waiting for your email?"
253
- msgstr "Toujours à attendre votre message&nbsp;?"
254
-
255
- #: includes/class-theme-my-login-ms-signup.php:201
256
- msgid "If you haven&#8217;t received your email yet, there are a number of things you can do:"
257
- msgstr "Si vous n&rsquo;avez encore pas reçu votre message, il existe un certain nombre de choses que vous pouvez faire&nbsp;:"
258
-
259
- #: includes/class-theme-my-login-ms-signup.php:203
260
- msgid "Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control."
261
- msgstr "Patienter encore quelque temps. Parfois, la livraison des messages peut être retardée par des processus en dehors de notre contrôle."
262
-
263
- #: includes/class-theme-my-login-ms-signup.php:204
264
- msgid "Check the junk or spam folder of your email client. Sometime emails wind up there by mistake."
265
- msgstr "Vérifier le courrier indésirable (ou dossier spam) de votre client de messagerie. Parfois, certains messages arrivent là par erreur."
266
-
267
- #: includes/class-theme-my-login-ms-signup.php:205
268
- msgid "Have you entered your email correctly? You have entered %s, if it&#8217;s incorrect, you will not receive your email."
269
- msgstr "Avez-vous correctement saisi votre adresse de messagerie&nbsp;? Vous aviez saisi %s, mais si ce n&rsquo;est pas correct, vous ne recevrez pas de message."
270
-
271
- #: includes/class-theme-my-login-ms-signup.php:211
272
- msgid "Site registration has been disabled."
273
- msgstr "Les inscriptions de sites sont désactivées."
274
-
275
- #: includes/class-theme-my-login-ms-signup.php:235
276
- msgid "The site %s is yours."
277
- msgstr "Le site %s est à vous."
278
-
279
- #: includes/class-theme-my-login-ms-signup.php:237
280
- msgid "<a href=\"http://%1$s\">http://%2$s</a> is your new site. <a href=\"%3$s\">Log in</a> as &#8220;%4$s&#8221; using your existing password."
281
- msgstr "<a href=\"http://%1$s\">http://%2$s</a> est votre nouveau site. <a href=\"%3$s\">Connectez-vous</a> avec l&rsquo;identifiant &laquo;&nbsp;%4$s&nbsp;&raquo;, à l&rsquo;aide de votre mot de passe actuel."
282
-
283
- #: includes/class-theme-my-login-ms-signup.php:253
284
- msgid "Sorry, new registrations are not allowed at this time."
285
- msgstr "Désolé, il n&rsquo;est pas possible de s&rsquo;enregistrer à l&rsquo;heure actuelle."
286
-
287
- #: includes/class-theme-my-login-ms-signup.php:255
288
- msgid "You are logged in already. No need to register again!"
289
- msgstr "Vous êtes déjà connecté. Pas besoin de vous réinscrire&nbsp;!"
290
-
291
- #: includes/class-theme-my-login-ms-signup.php:261
292
- msgid "<p><em>The site you were looking for, <strong>%s</strong> does not exist, but you can create it now!</em></p>"
293
- msgstr "<p><em>Le site que vous cherchez (<strong>%s</strong>) n&rsquo;existe pas, mais vous pouvez le créer immédiatement&nbsp;!</em></p>"
294
-
295
- #: includes/class-theme-my-login-ms-signup.php:263
296
- msgid "<p><em>The site you were looking for, <strong>%s</strong>, does not exist.</em></p>"
297
- msgstr "<p><em>Le site que vous cherchez (<strong>%s</strong>) n&rsquo;existe pas.</em></p>"
298
-
299
- #: includes/class-theme-my-login-ms-signup.php:402
300
- msgid "Activation Key Required"
301
- msgstr "Clef d&rsquo;activation requise"
302
-
303
- #: includes/class-theme-my-login-ms-signup.php:405
304
- msgid "Activation Key:"
305
- msgstr "Clef d&rsquo;activation&nbsp;:"
306
-
307
- #: includes/class-theme-my-login-ms-signup.php:409
308
- #: includes/class-theme-my-login-ms-signup.php:481
309
- msgid "Activate"
310
- msgstr "Activer"
311
-
312
- #: includes/class-theme-my-login-ms-signup.php:421
313
- #: includes/class-theme-my-login-ms-signup.php:441
314
- msgid "Your account is now active!"
315
- msgstr "Votre compte est maintenant activé&nbsp;!"
316
-
317
- #: includes/class-theme-my-login-ms-signup.php:425
318
- msgid "Your account has been activated. You may now <a href=\"%1$s\">login</a> to the site using your chosen username of &#8220;%2$s&#8221;. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%4$s\">reset your password</a>."
319
- msgstr "Votre compte vient d&rsquo;être activé. Vous pouvez dès maintenant vous <a href=\"%1$s\">connecter</a> à votre site en utilisant votre identifiant &#8220;%2$s&#8221;. Vous trouverez dans votre messagerie à %3$s un message contenant votre mot de passe, ainsi que les instructions pour vous connecter. Si vous ne recevez pas ce message, pensez à consulter le dossier &laquo;&nbsp;spam&nbsp;&raquo; de votre messagerie. Si vous ne recevez pas votre mot de passe dans l&rsquo;heure, vous pouvez <a href=\"%4$s\">réinitialiser votre mot de passe</a>."
320
-
321
- #: includes/class-theme-my-login-ms-signup.php:427
322
- msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a>."
323
- msgstr "Votre site est activé à <a href=\"%1$s\">%2$s</a>. Vous pouvez dès maintenant vous connecter à ce site en utilisant l&rsquo;identifiant choisi &laquo;&nbsp;%3$s&nbsp;&raquo;. Vous trouverez dans votre messagerie (sur %4$s) un message vous donnant votre mot de passe et identifiant, ainsi que les instructions pour vous connecter. Si vous ne recevez pas ce message, pensez à consulter le dossier &laquo;&nbsp;spam&nbsp;&raquo; de votre client de messagerie. Si vous ne recevez pas votre mot de passe dans moins d&rsquo;une heure, vous pouvez <a href=\"%5$s\">réinitialiser votre mot de passe</a>."
324
-
325
- #: includes/class-theme-my-login-ms-signup.php:432
326
- msgid "An error occurred during the activation"
327
- msgstr "Une erreur est survenue lors de l&rsquo;activation"
328
-
329
- #: includes/class-theme-my-login-ms-signup.php:444
330
- #: templates/ms-signup-user-form.php:16
331
- msgid "Username:"
332
- msgstr "Identifiant&nbsp;:"
333
-
334
- #: includes/class-theme-my-login-ms-signup.php:445
335
- #: modules/custom-passwords/custom-passwords.php:29
336
- #: modules/custom-passwords/custom-passwords.php:56
337
- msgid "Password:"
338
- msgstr "Mot de passe :"
339
-
340
- #: includes/class-theme-my-login-ms-signup.php:449
341
- msgid "Your account is now activated. <a href=\"%1$s\">View your site</a> or <a href=\"%2$s\">Login</a>"
342
- msgstr "Votre compte est maintenant activé. <a href=\"%1$s\">Consultez votre site</a> ou <a href=\"%2$s\">connectez-vous</a>"
343
-
344
- #: includes/class-theme-my-login-ms-signup.php:451
345
- msgid "Your account is now activated. <a href=\"%1$s\">Login</a> or go back to the <a href=\"%2$s\">homepage</a>."
346
- msgstr "Votre compte est maintenant activé. <a href=\"%1$s\">Connectez-vous</a> ou retournez sur la <a href=\"%2$s\">page d&rsquo;accueil</a>."
347
-
348
- #: includes/class-theme-my-login-template.php:137
349
- msgid "Welcome, %s"
350
- msgstr "Bienvenue, %s"
351
-
352
- #: includes/class-theme-my-login-template.php:151
353
- #: includes/class-theme-my-login.php:540
354
- #: templates/login-form.php:28
355
- msgid "Log In"
356
- msgstr "Connexion"
357
-
358
- #: includes/class-theme-my-login-template.php:315
359
- #: modules/custom-user-links/custom-user-links.php:82
360
- msgid "Dashboard"
361
- msgstr "Tableau de bord"
362
-
363
- #: includes/class-theme-my-login-template.php:316
364
- #: modules/custom-user-links/custom-user-links.php:83
365
- #: modules/themed-profiles/admin/themed-profiles-admin.php:66
366
- msgid "Profile"
367
- msgstr "Profil"
368
-
369
- #: includes/class-theme-my-login-template.php:334
370
- #: modules/custom-redirection/custom-redirection.php:197
371
- msgid "Log out"
372
- msgstr "Déconnexion"
373
-
374
- #: includes/class-theme-my-login-template.php:363
375
- msgid "Register For This Site"
376
- msgstr "S'inscrire sur ce site"
377
-
378
- #: includes/class-theme-my-login-template.php:366
379
- msgid "Please enter your username or email address. You will receive a link to create a new password via email."
380
- msgstr "Merci de saisir votre identifiant ou votre adresse de messagerie. Un lien permettant de créer un nouveau mot de passe vous sera envoyé par e-mail."
381
-
382
- #: includes/class-theme-my-login-template.php:369
383
- msgid "Enter your new password below."
384
- msgstr "Veuillez saisir une deuxième fois votre nouveau mot de passe ci-dessous."
385
-
386
- #: includes/class-theme-my-login-widget.php:23
387
- msgid "A login form for your blog."
388
- msgstr "Un formulaire de connexion pour votre blog."
389
-
390
- #: includes/class-theme-my-login-widget.php:88
391
- msgid "Default Action"
392
- msgstr "Action par Défaut"
393
-
394
- #: includes/class-theme-my-login-widget.php:95
395
- msgid "Show When Logged In"
396
- msgstr "Afficher Lorsque vous êtes Connecté"
397
-
398
- #: includes/class-theme-my-login-widget.php:97
399
- msgid "Show Title"
400
- msgstr "Afficher le Titre"
401
-
402
- #: includes/class-theme-my-login-widget.php:99
403
- msgid "Show Login Link"
404
- msgstr "Afficher lien de Connexion"
405
-
406
- #: includes/class-theme-my-login-widget.php:101
407
- msgid "Show Register Link"
408
- msgstr "Afficher le lien d'Enregistrement"
409
-
410
- #: includes/class-theme-my-login-widget.php:103
411
- msgid "Show Lost Password Link"
412
- msgstr "Afficher le lien Mot de Passe Perdu"
413
-
414
- #: includes/class-theme-my-login-widget.php:105
415
- msgid "Show Gravatar"
416
- msgstr "Afficher le Gravatar"
417
-
418
- #: includes/class-theme-my-login-widget.php:106
419
- msgid "Gravatar Size"
420
- msgstr "Taille du Gravatar"
421
-
422
- #: includes/class-theme-my-login-widget.php:108
423
- msgid "Allow Registration"
424
- msgstr "Permettre l'Enregistrement"
425
-
426
- #: includes/class-theme-my-login-widget.php:110
427
- msgid "Allow Password Recovery"
428
- msgstr "Permettre la Récupération du Mot de Passe"
429
-
430
- #: includes/class-theme-my-login.php:245
431
- msgid "Sorry, that key does not appear to be valid."
432
- msgstr "Désolé, cette clef ne semble pas être valide."
433
-
434
- #: includes/class-theme-my-login.php:261
435
- msgid "The passwords do not match."
436
- msgstr "Vos mots de passe ne correspondent pas."
437
-
438
- #: includes/class-theme-my-login.php:367
439
- msgid "<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href=\"http://www.google.com/cookies.html\">enable cookies</a> to use WordPress."
440
- msgstr "<strong>ERREUR</strong> : Les cookies sont bloqués ou non supportés par votre navigateur. Vous devez <a href='http://www.google.com/cookies.html'>activer les cookies</ a> pour utiliser WordPress."
441
-
442
- #: includes/class-theme-my-login.php:371
443
- msgid "You are now logged out."
444
- msgstr "Vous êtes maintenant déconnecté."
445
-
446
- #: includes/class-theme-my-login.php:373
447
- msgid "User registration is currently not allowed."
448
- msgstr "L'enregistrement d'utilisateur n'est pas autorisé actuellement."
449
-
450
- #: includes/class-theme-my-login.php:375
451
- msgid "Check your e-mail for the confirmation link."
452
- msgstr "Vérifiez votre e-mail pour le lien de confirmation."
453
-
454
- #: includes/class-theme-my-login.php:377
455
- msgid "Your password has been reset."
456
- msgstr "Votre mot de passe a été réinitialisé."
457
-
458
- #: includes/class-theme-my-login.php:379
459
- msgid "Registration complete. Please check your e-mail."
460
- msgstr "Inscription complète. Merci de vérifier votre compte de messagerie."
461
-
462
- #: includes/class-theme-my-login.php:381
463
- msgid "Your session has expired. Please log-in again."
464
- msgstr "Votre session a expiré. Merci de vous reconnecter."
465
-
466
- #: includes/class-theme-my-login.php:383
467
- msgid "Please log in to continue."
468
- msgstr "S'il vous plaît vous connecter pour continuer."
469
-
470
- #: includes/class-theme-my-login.php:540
471
- msgid "Log Out"
472
- msgstr "Déconnexion"
473
-
474
- #: includes/class-theme-my-login.php:925
475
- msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
476
- msgstr "<strong>ERREUR</strong> : Entrez un nom d'utilisateur ou une adresse e-mail."
477
-
478
- #: includes/class-theme-my-login.php:929
479
- msgid "<strong>ERROR</strong>: There is no user registered with that email address."
480
- msgstr "<strong>ERREUR</strong> : Il n'y a pas d'utilisateur enregistré avec cette adresse e-mail."
481
-
482
- #: includes/class-theme-my-login.php:941
483
- msgid "<strong>ERROR</strong>: Invalid username or e-mail."
484
- msgstr "<strong>ERREUR</strong> : Nom d'utilisateur ou e-mail invalide."
485
-
486
- #: includes/class-theme-my-login.php:955
487
- msgid "Password reset is not allowed for this user"
488
- msgstr "Récuperation de mot de passe non autorisé pour cet utilisateur"
489
-
490
- #: includes/class-theme-my-login.php:967
491
- msgid "Someone requested that the password be reset for the following account:"
492
- msgstr "Quelqu'un a demandé le renouvellement de son mot de passe pour le compte suivant :"
493
-
494
- #: includes/class-theme-my-login.php:969
495
- #: modules/custom-email/custom-email.php:692
496
- #: modules/custom-email/custom-email.php:709
497
- #: modules/user-moderation/admin/user-moderation-admin.php:164
498
- #: modules/user-moderation/user-moderation.php:365
499
- msgid "Username: %s"
500
- msgstr "Nom d'utilisateur : %s"
501
-
502
- #: includes/class-theme-my-login.php:970
503
- msgid "If this was a mistake, just ignore this email and nothing will happen."
504
- msgstr "S'il s'agit d'une erreur, ignorez ce message et la demande ne sera pas prise en compte."
505
-
506
- #: includes/class-theme-my-login.php:971
507
- msgid "To reset your password, visit the following address:"
508
- msgstr "Pour renouveler votre mot de passe, cliquez sur le lien suivant :"
509
-
510
- #: includes/class-theme-my-login.php:982
511
- msgid "[%s] Password Reset"
512
- msgstr "[%s] Mot de passe oublié ?"
513
-
514
- #: includes/class-theme-my-login.php:988
515
- #: modules/user-moderation/admin/user-moderation-admin.php:53
516
- #: modules/user-moderation/admin/user-moderation-admin.php:174
517
- #: modules/user-moderation/admin/user-moderation-admin.php:210
518
- msgid "The e-mail could not be sent."
519
- msgstr "L'e-mail n'a pas pu être envoyé."
520
-
521
- #: includes/class-theme-my-login.php:988
522
- #: modules/user-moderation/admin/user-moderation-admin.php:53
523
- #: modules/user-moderation/admin/user-moderation-admin.php:174
524
- #: modules/user-moderation/admin/user-moderation-admin.php:210
525
- msgid "Possible reason: your host may have disabled the mail() function..."
526
- msgstr "Cause possible: Vous avez désactivé la fonction mail() de votre hôte..."
527
-
528
- #: includes/class-theme-my-login.php:1011
529
- #: includes/class-theme-my-login.php:1014
530
- #: includes/class-theme-my-login.php:1019
531
- #: modules/user-moderation/user-moderation.php:238
532
- #: modules/user-moderation/user-moderation.php:241
533
- #: modules/user-moderation/user-moderation.php:246
534
- msgid "Invalid key"
535
- msgstr "Clé non valide"
536
-
537
- #: includes/class-theme-my-login.php:1059
538
- msgid "<strong>ERROR</strong>: Please enter a username."
539
- msgstr "<strong>ERREUR</strong> : Merci d'entrer un nom d'utilisateur."
540
-
541
- #: includes/class-theme-my-login.php:1061
542
- msgid "<strong>ERROR</strong>: This username is invalid because it uses illegal characters. Please enter a valid username."
543
- msgstr "<strong>ERREUR</strong> : Ce nom d'utilisateur n'est pas valide car il utilise des caractères illégaux. Merci d'entrer un nom d'utilisateur valide."
544
-
545
- #: includes/class-theme-my-login.php:1064
546
- msgid "<strong>ERROR</strong>: This username is already registered, please choose another one."
547
- msgstr "<strong>ERREUR</strong> : Ce nom d'utilisateur existe déjà, merci d'en choisir un autre."
548
-
549
- #: includes/class-theme-my-login.php:1069
550
- msgid "<strong>ERROR</strong>: Please type your e-mail address."
551
- msgstr "<strong>ERREUR</strong> : Merci d'entrer votre adresse email"
552
-
553
- #: includes/class-theme-my-login.php:1071
554
- msgid "<strong>ERROR</strong>: The email address isn&#8217;t correct."
555
- msgstr "<strong>ERREUR</strong > : L'adresse email n'est pas correcte."
556
-
557
- #: includes/class-theme-my-login.php:1074
558
- msgid "<strong>ERROR</strong>: This email is already registered, please choose another one."
559
- msgstr "<strong>ERREUR</strong> : Cet email existe déjà, merci d'en choisir une autre."
560
-
561
- #: includes/class-theme-my-login.php:1087
562
- msgid "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href=\"mailto:%s\">webmaster</a> !"
563
- msgstr "<strong>ERREUR</strong> : Impossible de vous inscrire... Merci de contacter le <a href=\"mailto:%s\">webmaster</a> !"
564
-
565
- #: modules/custom-email/admin/custom-email-admin.php:46
566
- #: modules/custom-email/admin/custom-email-admin.php:265
567
- msgid "User Notification"
568
- msgstr "Notification Utilisateur"
569
-
570
- #: modules/custom-email/admin/custom-email-admin.php:49
571
- msgid "This e-mail will be sent to a new user upon registration."
572
- msgstr "Cet e-mail sera envoyé à un nouvel utilisateur lors de l'inscription."
573
-
574
- #: modules/custom-email/admin/custom-email-admin.php:50
575
- #: modules/custom-email/admin/custom-email-admin.php:269
576
- msgid "Please be sure to include the variable %user_pass% if using default passwords or else the user will not know their password!"
577
- msgstr "Merci d'inclure la variable %user_pass% si vous utilisez des mots de passe par défaut ou sinon l'utilisateur ne saura pas son mot de passe!"
578
-
579
- #: modules/custom-email/admin/custom-email-admin.php:51
580
- #: modules/custom-email/admin/custom-email-admin.php:81
581
- #: modules/custom-email/admin/custom-email-admin.php:130
582
- #: modules/custom-email/admin/custom-email-admin.php:175
583
- #: modules/custom-email/admin/custom-email-admin.php:224
584
- #: modules/custom-email/admin/custom-email-admin.php:270
585
- #: modules/custom-email/admin/custom-email-admin.php:300
586
- #: modules/custom-email/admin/custom-email-admin.php:348
587
- msgid "If any field is left empty, the default will be used instead."
588
- msgstr "Si un champ est laissé vide, la valeur par défaut sera utilisée à la place."
589
-
590
- #: modules/custom-email/admin/custom-email-admin.php:54
591
- #: modules/custom-email/admin/custom-email-admin.php:87
592
- #: modules/custom-email/admin/custom-email-admin.php:133
593
- #: modules/custom-email/admin/custom-email-admin.php:181
594
- #: modules/custom-email/admin/custom-email-admin.php:227
595
- #: modules/custom-email/admin/custom-email-admin.php:273
596
- #: modules/custom-email/admin/custom-email-admin.php:306
597
- #: modules/custom-email/admin/custom-email-admin.php:351
598
- msgid "From Name"
599
- msgstr "Depuis votre Nom"
600
-
601
- #: modules/custom-email/admin/custom-email-admin.php:57
602
- #: modules/custom-email/admin/custom-email-admin.php:90
603
- #: modules/custom-email/admin/custom-email-admin.php:136
604
- #: modules/custom-email/admin/custom-email-admin.php:184
605
- #: modules/custom-email/admin/custom-email-admin.php:230
606
- #: modules/custom-email/admin/custom-email-admin.php:276
607
- #: modules/custom-email/admin/custom-email-admin.php:309
608
- #: modules/custom-email/admin/custom-email-admin.php:354
609
- msgid "From E-mail"
610
- msgstr "Depuis votre E-mail"
611
-
612
- #: modules/custom-email/admin/custom-email-admin.php:60
613
- #: modules/custom-email/admin/custom-email-admin.php:93
614
- #: modules/custom-email/admin/custom-email-admin.php:139
615
- #: modules/custom-email/admin/custom-email-admin.php:187
616
- #: modules/custom-email/admin/custom-email-admin.php:233
617
- #: modules/custom-email/admin/custom-email-admin.php:279
618
- #: modules/custom-email/admin/custom-email-admin.php:312
619
- #: modules/custom-email/admin/custom-email-admin.php:357
620
- msgid "E-mail Format"
621
- msgstr "Format E-mail "
622
-
623
- #: modules/custom-email/admin/custom-email-admin.php:62
624
- #: modules/custom-email/admin/custom-email-admin.php:95
625
- #: modules/custom-email/admin/custom-email-admin.php:141
626
- #: modules/custom-email/admin/custom-email-admin.php:189
627
- #: modules/custom-email/admin/custom-email-admin.php:235
628
- #: modules/custom-email/admin/custom-email-admin.php:281
629
- #: modules/custom-email/admin/custom-email-admin.php:314
630
- #: modules/custom-email/admin/custom-email-admin.php:359
631
- msgid "Plain Text"
632
- msgstr "Le texte brut"
633
-
634
- #: modules/custom-email/admin/custom-email-admin.php:63
635
- #: modules/custom-email/admin/custom-email-admin.php:96
636
- #: modules/custom-email/admin/custom-email-admin.php:142
637
- #: modules/custom-email/admin/custom-email-admin.php:190
638
- #: modules/custom-email/admin/custom-email-admin.php:236
639
- #: modules/custom-email/admin/custom-email-admin.php:282
640
- #: modules/custom-email/admin/custom-email-admin.php:315
641
- #: modules/custom-email/admin/custom-email-admin.php:360
642
- msgid "HTML"
643
- msgstr "HTML"
644
-
645
- #: modules/custom-email/admin/custom-email-admin.php:66
646
- #: modules/custom-email/admin/custom-email-admin.php:99
647
- #: modules/custom-email/admin/custom-email-admin.php:145
648
- #: modules/custom-email/admin/custom-email-admin.php:193
649
- #: modules/custom-email/admin/custom-email-admin.php:239
650
- #: modules/custom-email/admin/custom-email-admin.php:285
651
- #: modules/custom-email/admin/custom-email-admin.php:318
652
- #: modules/custom-email/admin/custom-email-admin.php:363
653
- msgid "Subject"
654
- msgstr "Sujet"
655
-
656
- #: modules/custom-email/admin/custom-email-admin.php:69
657
- #: modules/custom-email/admin/custom-email-admin.php:102
658
- #: modules/custom-email/admin/custom-email-admin.php:148
659
- #: modules/custom-email/admin/custom-email-admin.php:196
660
- #: modules/custom-email/admin/custom-email-admin.php:242
661
- #: modules/custom-email/admin/custom-email-admin.php:288
662
- #: modules/custom-email/admin/custom-email-admin.php:321
663
- #: modules/custom-email/admin/custom-email-admin.php:366
664
- msgid "Message"
665
- msgstr "Message"
666
-
667
- #: modules/custom-email/admin/custom-email-admin.php:72
668
- #: modules/custom-email/admin/custom-email-admin.php:105
669
- #: modules/custom-email/admin/custom-email-admin.php:151
670
- #: modules/custom-email/admin/custom-email-admin.php:199
671
- #: modules/custom-email/admin/custom-email-admin.php:245
672
- #: modules/custom-email/admin/custom-email-admin.php:291
673
- #: modules/custom-email/admin/custom-email-admin.php:324
674
- #: modules/custom-email/admin/custom-email-admin.php:369
675
- msgid "Available Variables"
676
- msgstr "Variables disponibles"
677
-
678
- #: modules/custom-email/admin/custom-email-admin.php:77
679
- #: modules/custom-email/admin/custom-email-admin.php:171
680
- #: modules/custom-email/admin/custom-email-admin.php:296
681
- msgid "Admin Notification"
682
- msgstr "Notification Administrateur"
683
-
684
- #: modules/custom-email/admin/custom-email-admin.php:80
685
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon new user registration."
686
- msgstr "Cet e-mail sera envoyé à la ou les addresses e-mail (les adresses multiples sont séparées par des virgules) précisées ci-dessous lors de l'inscription de nouveaux utilisateurs."
687
-
688
- #: modules/custom-email/admin/custom-email-admin.php:84
689
- #: modules/custom-email/admin/custom-email-admin.php:178
690
- #: modules/custom-email/admin/custom-email-admin.php:303
691
- msgid "To"
692
- msgstr "A"
693
-
694
- #: modules/custom-email/admin/custom-email-admin.php:128
695
- msgid "This e-mail will be sent to a user when they attempt to recover their password."
696
- msgstr "Cet e-mail sera envoyé à un utilisateur quand il essaiera de récupérer son mot de passe."
697
-
698
- #: modules/custom-email/admin/custom-email-admin.php:129
699
- msgid "Please be sure to include the variable %reseturl% or else the user will not be able to recover their password!"
700
- msgstr "Merci d'inclure la variable %reseturl% ou sinon l'utilisateur ne sera pas en mesure de récupérer son mot de passe !"
701
-
702
- #: modules/custom-email/admin/custom-email-admin.php:174
703
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon user password change."
704
- msgstr "Cet e-mail sera envoyé à la ou les addresses e-mail (les adresses multiples sont séparées par des virgules) précisées ci-dessous en cas de changement de mot de passe utilisateur."
705
-
706
- #: modules/custom-email/admin/custom-email-admin.php:201
707
- #: modules/custom-email/admin/custom-email-admin.php:326
708
- msgid "Disable Admin Notification"
709
- msgstr "Désactiver Notification Administrateur"
710
-
711
- #: modules/custom-email/admin/custom-email-admin.php:222
712
- msgid "This e-mail will be sent to a new user upon registration when \"E-mail Confirmation\" is checked for \"User Moderation\"."
713
- msgstr "Cet e-mail sera envoyé à un nouvel utilisateur lors de l'inscription lorsque \"E-Mail de Confirmation\" est coché pour la \"Modération Utilisateur\"."
714
-
715
- #: modules/custom-email/admin/custom-email-admin.php:223
716
- msgid "Please be sure to include the variable %activateurl% or else the user will not be able to activate their account!"
717
- msgstr "Merci d'inclure la variable %activateurl% ou sinon l'utilsateur ne sera pas capable d'activer son compte!"
718
-
719
- #: modules/custom-email/admin/custom-email-admin.php:268
720
- msgid "This e-mail will be sent to a new user upon admin approval when \"Admin Approval\" is checked for \"User Moderation\"."
721
- msgstr "Cet e-mail sera envoyé à un nouvel utilisateur sur approbation de l'administrateur lorsque l'\"Approbation Administrateur\" est cochée pour la \"Modération Utilisateur\"."
722
-
723
- #: modules/custom-email/admin/custom-email-admin.php:299
724
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below upon user registration when \"Admin Approval\" is checked for \"User Moderation\"."
725
- msgstr "Cet e-mail sera envoyé à la ou les addresses e-mail (les adresses multiples sont séparées par des virgules) précisées ci-dessous lors de l'enregistrement lorsque l'\"Approbation Administrateur\" est cochée pour la \"Modération Utilisateur\"."
726
-
727
- #: modules/custom-email/admin/custom-email-admin.php:347
728
- msgid "This e-mail will be sent to a user who is deleted/denied when \"Admin Approval\" is checked for \"User Moderation\" and the user's role is \"Pending\"."
729
- msgstr "Cet e-mail sera envoyé à un utilisateur supprimé/refusé quand l'\"Approbation Administrateur\" est cochée pour la \"Modération Utilisateur\" et que le rôle de l'ututilisateur est en \"Attente\"."
730
-
731
- #: modules/custom-email/admin/custom-email-admin.php:390
732
- #: templates/profile-form.php:143
733
- #: templates/register-form.php:16
734
- msgid "E-mail"
735
- msgstr "E-mail"
736
-
737
- #: modules/custom-email/admin/custom-email-admin.php:391
738
- msgid "New User"
739
- msgstr "Nouvel Utilisateur"
740
-
741
- #: modules/custom-email/admin/custom-email-admin.php:392
742
- msgid "Retrieve Password"
743
- msgstr "Récupérer le mot de passe"
744
-
745
- #: modules/custom-email/admin/custom-email-admin.php:393
746
- #: templates/resetpass-form.php:26
747
- msgid "Reset Password"
748
- msgstr "Réinitialiser le mot de passe"
749
-
750
- #: modules/custom-email/admin/custom-email-admin.php:395
751
- msgid "User Activation"
752
- msgstr "Activation Utilisateur"
753
-
754
- #: modules/custom-email/admin/custom-email-admin.php:396
755
- msgid "User Approval"
756
- msgstr "Approbation Utilisateur"
757
-
758
- #: modules/custom-email/admin/custom-email-admin.php:397
759
- msgid "User Denial"
760
- msgstr "Déni de l'Utilisateur"
761
-
762
- #: modules/custom-email/custom-email.php:691
763
- msgid "New user registration on your site %s:"
764
- msgstr "Nouvel enregistrement d'utilisateur sur votre site %s :"
765
-
766
- #: modules/custom-email/custom-email.php:693
767
- #: modules/user-moderation/user-moderation.php:366
768
- msgid "E-mail: %s"
769
- msgstr "E-mail : %s"
770
-
771
- #: modules/custom-email/custom-email.php:695
772
- msgid "[%s] New User Registration"
773
- msgstr "[%s] Inscription Nouveau Membre"
774
-
775
- #: modules/custom-email/custom-email.php:710
776
- #: modules/user-moderation/admin/user-moderation-admin.php:165
777
- msgid "Password: %s"
778
- msgstr "Mot de passe : %s"
779
-
780
- #: modules/custom-email/custom-email.php:713
781
- msgid "[%s] Your username and password"
782
- msgstr "[%s] Votre nom d'utilisateur et mot de passe"
783
-
784
- #: modules/custom-email/custom-email.php:745
785
- msgid "[%s] Password Lost/Changed"
786
- msgstr "[%s] Mot de passe Perdu/Changé"
787
-
788
- #: modules/custom-email/custom-email.php:746
789
- msgid "Password Lost and Changed for user: %s"
790
- msgstr "Mot de passe perdu et changé pour l'utilisateur : %s"
791
-
792
- #: modules/custom-passwords/custom-passwords.php:31
793
- #: modules/custom-passwords/custom-passwords.php:63
794
- msgid "Confirm Password:"
795
- msgstr "Confirmer le mot de passe :"
796
-
797
- #: modules/custom-passwords/custom-passwords.php:61
798
- msgid "(Must be at least 6 characters.)"
799
- msgstr "(Doit être au moins 6 caractères.)"
800
-
801
- #: modules/custom-passwords/custom-passwords.php:65
802
- msgid "Confirm that you've typed your password correctly."
803
- msgstr "Confirmez que vous avez tapé votre mot de passe correctement."
804
-
805
- #: modules/custom-passwords/custom-passwords.php:103
806
- msgid "<strong>ERROR</strong>: Please enter a password."
807
- msgstr "<strong>ERREUR</strong> : Merci d'entrer un mot de passe."
808
-
809
- #: modules/custom-passwords/custom-passwords.php:106
810
- msgid "<strong>ERROR</strong>: Your passwords do not match."
811
- msgstr "<strong>ERREUR</strong> : Vos mots de passe ne correspondent pas."
812
-
813
- #: modules/custom-passwords/custom-passwords.php:109
814
- msgid "<strong>ERROR</strong>: Your password must be at least 6 characters in length."
815
- msgstr "<strong>ERREUR</strong> : Votre mot de passe doit comporter au moins 6 caractères."
816
-
817
- #: modules/custom-passwords/custom-passwords.php:230
818
- msgid "Registration complete. You may now log in."
819
- msgstr "Inscription complète. Vous pouvez maintenant vous connecter."
820
-
821
- #: modules/custom-redirection/custom-redirection.php:156
822
- msgid "Redirection"
823
- msgstr "Redirection"
824
-
825
- #: modules/custom-redirection/custom-redirection.php:185
826
- msgid "Log in"
827
- msgstr "Connexion"
828
-
829
- #: modules/custom-redirection/custom-redirection.php:187
830
- #: modules/custom-redirection/custom-redirection.php:199
831
- msgid "Default"
832
- msgstr "Défaut"
833
-
834
- #: modules/custom-redirection/custom-redirection.php:188
835
- msgid "Check this option to send the user to their WordPress Dashboard/Profile."
836
- msgstr "Cochez cette option pour renvoyer l'utilisateur vers leur Tableau de bord/Profil WordPress."
837
-
838
- #: modules/custom-redirection/custom-redirection.php:189
839
- #: modules/custom-redirection/custom-redirection.php:201
840
- msgid "Referer"
841
- msgstr "Diriger vers"
842
-
843
- #: modules/custom-redirection/custom-redirection.php:190
844
- msgid "Check this option to send the user back to the page they were visiting before logging in."
845
- msgstr "Cochez cette option pour renvoyer l'utilisateur vers la page qu'il visitait avant de se connecter."
846
-
847
- #: modules/custom-redirection/custom-redirection.php:193
848
- #: modules/custom-redirection/custom-redirection.php:205
849
- msgid "Check this option to send the user to a custom location, specified by the textbox above."
850
- msgstr "Cochez cette option pour renvoyer l'utilisateur vers un emplacement personnalisé, spécifié dans la zone de texte ci-dessus."
851
-
852
- #: modules/custom-redirection/custom-redirection.php:200
853
- msgid "Check this option to send the user to the log in page, displaying a message that they have successfully logged out."
854
- msgstr "Cochez cette option pour renvoyer l'utilisateur vers la page de connexion, en affichant un message comme quoi ils ont réussi à se déconnecter."
855
-
856
- #: modules/custom-redirection/custom-redirection.php:202
857
- msgid "Check this option to send the user back to the page they were visiting before logging out. (Note: If the previous page being visited was an admin page, this can have unexpected results.)"
858
- msgstr "Cochez cette option pour renvoyer l'utilisateur vers la page qu'il visitait avant de se déconnecter. (Note : Si la page qu'il visitait était une page d'administration alors ceci peut avoir des résultats inattendus.)"
859
-
860
- #: modules/custom-user-links/admin/custom-user-links-admin.php:140
861
- msgid "User Links"
862
- msgstr "Liens Utilisateur"
863
-
864
- #: modules/custom-user-links/admin/custom-user-links-admin.php:232
865
- #: modules/custom-user-links/admin/custom-user-links-admin.php:255
866
- #: modules/custom-user-links/admin/custom-user-links-admin.php:300
867
- msgid "Title"
868
- msgstr "Titre"
869
-
870
- #: modules/custom-user-links/admin/custom-user-links-admin.php:233
871
- #: modules/custom-user-links/admin/custom-user-links-admin.php:256
872
- #: modules/custom-user-links/admin/custom-user-links-admin.php:304
873
- msgid "URL"
874
- msgstr "URL"
875
-
876
- #: modules/custom-user-links/admin/custom-user-links-admin.php:250
877
- msgid "Add New link:"
878
- msgstr "Ajouter un Nouveau Lien:"
879
-
880
- #: modules/custom-user-links/admin/custom-user-links-admin.php:266
881
- msgid "Add link"
882
- msgstr "Ajouter un lien"
883
-
884
- #: modules/custom-user-links/admin/custom-user-links-admin.php:306
885
- msgid "Delete"
886
- msgstr "Supprimer"
887
-
888
- #: modules/custom-user-links/admin/custom-user-links-admin.php:307
889
- msgid "Update"
890
- msgstr "Mettre à jour"
891
-
892
- #: modules/security/admin/security-admin.php:32
893
- #: modules/security/admin/security-admin.php:35
894
- #: modules/user-moderation/admin/user-moderation-admin.php:34
895
- #: modules/user-moderation/admin/user-moderation-admin.php:44
896
- msgid "You can&#8217;t edit that user."
897
- msgstr "Vous ne pouvez pas modifier cet utilisateur."
898
-
899
- #: modules/security/admin/security-admin.php:67
900
- msgid "User locked."
901
- msgstr "Utilisateur verrouillé."
902
-
903
- #: modules/security/admin/security-admin.php:69
904
- msgid "User unlocked."
905
- msgstr "Utilisateur déverrouillé."
906
-
907
- #: modules/security/admin/security-admin.php:92
908
- msgid "Unlock"
909
- msgstr "Déverrouillé"
910
-
911
- #: modules/security/admin/security-admin.php:94
912
- msgid "Lock"
913
- msgstr "Verrouillé"
914
-
915
- #: modules/security/admin/security-admin.php:113
916
- msgid "Security"
917
- msgstr "Sécurité"
918
-
919
- #: modules/security/admin/security-admin.php:132
920
- msgid "Private Site"
921
- msgstr "Site privé"
922
-
923
- #: modules/security/admin/security-admin.php:135
924
- msgid "Require users to be logged in to view site"
925
- msgstr "Demander aux utilisateurs d'être connectés pour accéder au site"
926
-
927
- #: modules/security/admin/security-admin.php:139
928
- msgid "Login Attempts"
929
- msgstr "Tentatives de Connexion"
930
-
931
- #: modules/security/admin/security-admin.php:144
932
- msgid "minute(s)"
933
- msgstr "minute(s)"
934
-
935
- #: modules/security/admin/security-admin.php:145
936
- msgid "hour(s)"
937
- msgstr "heure(s)"
938
-
939
- #: modules/security/admin/security-admin.php:146
940
- msgid "day(s)"
941
- msgstr "jour(s)"
942
-
943
- #: modules/security/admin/security-admin.php:169
944
- msgid "After %1$s failed login attempts within %2$s %3$s, lockout the account for %4$s %5$s."
945
- msgstr "Après %1$s tentatives de connexion infructueuses dans les %2$s %3$s, verrouiller le compte pour %4$s %5$s."
946
-
947
- #: modules/security/security.php:64
948
- #: modules/security/security.php:90
949
- msgid "<strong>ERROR</strong>: This account has been locked because of too many failed login attempts. You may try again in %s."
950
- msgstr "<strong>ERREUR</strong> : Ce compte a été verrouillé en raison de trop nombreuses tentatives de connexion. Vous pouvez essayer de nouveau dans %s."
951
-
952
- #: modules/security/security.php:66
953
- msgid "<strong>ERROR</strong>: This account has been locked."
954
- msgstr "<strong>ERREUR</strong> : Ce compte a été verrouillé."
955
-
956
- #: modules/security/security.php:126
957
- msgid "Failed Login Attempts"
958
- msgstr "Tentatives de connexion infructueuses"
959
-
960
- #: modules/security/security.php:130
961
- msgid "IP Address"
962
- msgstr "adresse IP"
963
-
964
- #: modules/security/security.php:131
965
- msgid "Date"
966
- msgstr "Date"
967
-
968
- #: modules/security/security.php:134
969
- msgid "Y/m/d g:i:s A"
970
- msgstr ""
971
- "d/m/Y \\à G \\h i \\m\\i\\n"
972
- " s \\s"
973
-
974
- #: modules/security/security.php:139
975
- msgid "%s ago"
976
- msgstr "Il ya %s"
977
-
978
- #: modules/security/security.php:141
979
- msgid "Y/m/d"
980
- msgstr "d/m/Y"
981
-
982
- #: modules/themed-profiles/admin/themed-profiles-admin.php:23
983
- #: modules/themed-profiles/admin/themed-profiles-admin.php:42
984
- msgid "Themed Profiles"
985
- msgstr "profils thématiques"
986
-
987
- #: modules/themed-profiles/admin/themed-profiles-admin.php:51
988
- msgid "Restrict Admin Access"
989
- msgstr "Restreindre l'accès admin"
990
-
991
- #: modules/themed-profiles/themed-profiles.php:123
992
- #: templates/profile-form.php:182
993
- #: templates/resetpass-form.php:19
994
- msgid "Strength indicator"
995
- msgstr "Indicateur de sécurité"
996
-
997
- #: modules/themed-profiles/themed-profiles.php:124
998
- msgid "Very weak"
999
- msgstr "Très faible"
1000
-
1001
- #: modules/themed-profiles/themed-profiles.php:125
1002
- msgid "Weak"
1003
- msgstr "Faible"
1004
-
1005
- #. translators: password strength
1006
- #: modules/themed-profiles/themed-profiles.php:127
1007
- msgctxt "password strength"
1008
- msgid "Medium"
1009
- msgstr "Moyen"
1010
-
1011
- #: modules/themed-profiles/themed-profiles.php:128
1012
- msgid "Strong"
1013
- msgstr "Fort"
1014
-
1015
- #: modules/themed-profiles/themed-profiles.php:138
1016
- msgid "You do not have permission to edit this user."
1017
- msgstr "Vous n'avez pas la permission de modifier cet utilisateur."
1018
-
1019
- #: modules/themed-profiles/themed-profiles.php:154
1020
- msgid "Profile updated."
1021
- msgstr "Profil mis à jour"
1022
-
1023
- #: modules/themed-profiles/themed-profiles.php:243
1024
- msgid "Your Profile"
1025
- msgstr "Votre profil"
1026
-
1027
- #: modules/user-moderation/admin/user-moderation-admin.php:75
1028
- msgid "User approved."
1029
- msgstr "Utilisateur approuvé."
1030
-
1031
- #: modules/user-moderation/admin/user-moderation-admin.php:77
1032
- msgid "Activation sent."
1033
- msgstr "Activation envoyée."
1034
-
1035
- #: modules/user-moderation/admin/user-moderation-admin.php:105
1036
- msgid "Resend Activation"
1037
- msgstr "Renvoyer l'Activation"
1038
-
1039
- #: modules/user-moderation/admin/user-moderation-admin.php:110
1040
- msgid "Approve"
1041
- msgstr "Approuver"
1042
-
1043
- #: modules/user-moderation/admin/user-moderation-admin.php:163
1044
- msgid "You have been approved access to %s"
1045
- msgstr "Vous avez approuvé l'accès à %s"
1046
-
1047
- #: modules/user-moderation/admin/user-moderation-admin.php:168
1048
- msgid "[%s] Registration Approved"
1049
- msgstr "[%s] Enregistrement Approuvé(s)"
1050
-
1051
- #: modules/user-moderation/admin/user-moderation-admin.php:203
1052
- msgid "You have been denied access to %s"
1053
- msgstr "Vous avez refusé l'accès à %s"
1054
-
1055
- #: modules/user-moderation/admin/user-moderation-admin.php:204
1056
- msgid "[%s] Registration Denied"
1057
- msgstr "[%s] Enregistrement Refusé(s)"
1058
-
1059
- #: modules/user-moderation/admin/user-moderation-admin.php:226
1060
- msgid "Moderation"
1061
- msgstr "Modération"
1062
-
1063
- #: modules/user-moderation/admin/user-moderation-admin.php:242
1064
- msgid "User Moderation"
1065
- msgstr "Modération Utilisateur"
1066
-
1067
- #: modules/user-moderation/admin/user-moderation-admin.php:245
1068
- msgid "None"
1069
- msgstr "Aucun"
1070
-
1071
- #: modules/user-moderation/admin/user-moderation-admin.php:246
1072
- msgid "Check this option to require no moderation."
1073
- msgstr "Cochez cette option pour ne pas avoir de modération."
1074
-
1075
- #: modules/user-moderation/admin/user-moderation-admin.php:248
1076
- msgid "E-mail Confirmation"
1077
- msgstr "E-Mail de Confirmation"
1078
-
1079
- #: modules/user-moderation/admin/user-moderation-admin.php:249
1080
- msgid "Check this option to require new users to confirm their e-mail address before they may log in."
1081
- msgstr "Cochez cette option pour exiger que les nouveaux utilisateurs doivent confirmer leur adresse e-mail avant de pouvoir se connecter."
1082
-
1083
- #: modules/user-moderation/admin/user-moderation-admin.php:251
1084
- msgid "Admin Approval"
1085
- msgstr "Approbation Administrateur"
1086
-
1087
- #: modules/user-moderation/admin/user-moderation-admin.php:252
1088
- msgid "Check this option to require new users to be approved by an administrator before they may log in."
1089
- msgstr "Cochez cette option pour exiger que les nouveaux utilisateurs doivent être approuvé par un administrateur avant de pouvoir se connecter."
1090
-
1091
- #: modules/user-moderation/admin/user-moderation-admin.php:269
1092
- msgid "User Moderation is not currently compatible with multisite."
1093
- msgstr "Modération utilisateur n'est pas actuellement compatible avec multisite."
1094
-
1095
- #: modules/user-moderation/user-moderation.php:163
1096
- msgid "<strong>ERROR</strong>: You have not yet confirmed your e-mail address. <a href=\"%s\">Resend activation</a>?"
1097
- msgstr "<strong> ERREUR</strong> : Vous n'avez pas encore confirmé votre adresse e-mail. <a href=\"%s\">Renvoyer l'Activation</a> ?"
1098
-
1099
- #: modules/user-moderation/user-moderation.php:166
1100
- msgid "<strong>ERROR</strong>: Your registration has not yet been approved."
1101
- msgstr "<strong>ERREUR</strong> : Votre inscription n'a pas encore été approuvée."
1102
-
1103
- #: modules/user-moderation/user-moderation.php:328
1104
- msgid "[%s] Activate Your Account"
1105
- msgstr "[%s] Activer Votre Compte"
1106
-
1107
- #: modules/user-moderation/user-moderation.php:329
1108
- msgid "Thanks for registering at %s! To complete the activation of your account please click the following link: "
1109
- msgstr "Merci pour votre inscription sur %s! Pour terminer l'activation de votre compte merci de cliquer sur le lien suivant : "
1110
-
1111
- #: modules/user-moderation/user-moderation.php:362
1112
- msgid "[%s] New User Awaiting Approval"
1113
- msgstr "[%s] Nouveaux Membres en Attente de Validation"
1114
-
1115
- #: modules/user-moderation/user-moderation.php:364
1116
- msgid "New user requires approval on your blog %s:"
1117
- msgstr "Nouvel utilisateur requiert l'approbation pour votre blog %s :"
1118
-
1119
- #: modules/user-moderation/user-moderation.php:367
1120
- msgid "To approve or deny this user:"
1121
- msgstr "Approuver ou refuser cet utilisateur :"
1122
-
1123
- #: modules/user-moderation/user-moderation.php:388
1124
- msgid "Your registration was successful but you must now confirm your email address before you can log in. Please check your email and click on the link provided."
1125
- msgstr "Votre inscription a réussie mais vous devez maintenant confirmer votre adresse e-mail pour pouvoir vous connecter. Merci de vérifier votre email et de cliquer sur le lien fourni."
1126
-
1127
- #: modules/user-moderation/user-moderation.php:390
1128
- msgid "Your registration was successful but you must now be approved by an administrator before you can log in. You will be notified by e-mail once your account has been reviewed."
1129
- msgstr "Votre inscription a réussie mais vous devez maintenant être approuvé par l'administrateur avant de pouvoir vous connecter. Vous serez averti par e-mail dès que votre compte aura été approuvé"
1130
-
1131
- #: modules/user-moderation/user-moderation.php:393
1132
- msgid "Your account has been activated. You may now log in."
1133
- msgstr "Votre compte a été activé. Vous pouvez désormais vous connecter."
1134
-
1135
- #: modules/user-moderation/user-moderation.php:395
1136
- msgid "Your account has been activated. Please check your e-mail for your password."
1137
- msgstr "Votre compte a été activé. Merci de vérifier votre e-mail pour votre mot de passe."
1138
-
1139
- #: modules/user-moderation/user-moderation.php:397
1140
- msgid "<strong>ERROR</strong>: Sorry, that key does not appear to be valid."
1141
- msgstr "<strong>ERREUR</strong> : Désolé, cette clef ne semble pas être valide."
1142
-
1143
- #: modules/user-moderation/user-moderation.php:400
1144
- msgid "<strong>ERROR</strong>: Sorry, the activation e-mail could not be sent."
1145
- msgstr "<strong>ERREUR</strong> : Désolé, cette clef ne semble pas être valide."
1146
-
1147
- #: modules/user-moderation/user-moderation.php:402
1148
- msgid "The activation e-mail has been sent to the e-mail address with which you registered. Please check your email and click on the link provided."
1149
- msgstr "L'e-mail d'activation a été envoyé sur l'e-mail référencée pour l'inscription. Merci de vérifier votre email et de cliquer sur le lien fourni."
1150
-
1151
- #: templates/login-form.php:12
1152
- #: templates/profile-form.php:91
1153
- #: templates/register-form.php:12
1154
- msgid "Username"
1155
- msgstr "Nom d'utilisateur"
1156
-
1157
- #: templates/login-form.php:16
1158
- msgid "Password"
1159
- msgstr "Mot de passe"
1160
-
1161
- #: templates/login-form.php:25
1162
- msgid "Remember Me"
1163
- msgstr "Se souvenir de moi"
1164
-
1165
- #: templates/lostpassword-form.php:12
1166
- msgid "Username or E-mail:"
1167
- msgstr "Nom d'utilisateur ou E-mail:"
1168
-
1169
- #: templates/lostpassword-form.php:20
1170
- msgid "Get New Password"
1171
- msgstr "Obtenir un nouveau mot de passe"
1172
-
1173
- #: templates/ms-signup-another-blog-form.php:7
1174
- msgid "Get <em>another</em> %s site in seconds"
1175
- msgstr "Ouvrir <em>un autre</em> site %s en quelques secondes"
1176
-
1177
- #: templates/ms-signup-another-blog-form.php:10
1178
- msgid "There was a problem, please correct the form below and try again."
1179
- msgstr "Il y a eu un problème, merci de remplir le formulaire ci-dessous et réessayer."
1180
-
1181
- #: templates/ms-signup-another-blog-form.php:13
1182
- msgid "Welcome back, %s. By filling out the form below, you can <strong>add another site to your account</strong>. There is no limit to the number of sites you can have, so create to your heart&#8217;s content, but write responsibly!"
1183
- msgstr "Heureux de voir revoir, %s&nbsp;! En remplissant le formulaire ci-dessous, vous pouvez <strong>ajouter un autre site à votre compte</strong>. Il n&rsquo;y a pas de limite au nombre de sites dont vous pouvez disposer, donc créez-en autant que vous le souhaitez, mais écrivez avec pondération&nbsp;!"
1184
-
1185
- #: templates/ms-signup-another-blog-form.php:18
1186
- msgid "Sites you are already a member of:"
1187
- msgstr "Les sites que vous possédez déjà&nbsp;:"
1188
-
1189
- #: templates/ms-signup-another-blog-form.php:27
1190
- msgid "If you&#8217;re not going to use a great site domain, leave it for a new user. Now have at it!"
1191
- msgstr "Si vous ne comptez pas utiliser ce superbe nom de domaine, laissez-le à un autre utilisateur. Et maintenant, lancez-vous&nbsp;!"
1192
-
1193
- #: templates/ms-signup-another-blog-form.php:33
1194
- #: templates/ms-signup-blog-form.php:17
1195
- msgid "Site Name:"
1196
- msgstr "Nom du site&nbsp;:"
1197
-
1198
- #: templates/ms-signup-another-blog-form.php:35
1199
- #: templates/ms-signup-blog-form.php:19
1200
- msgid "Site Domain:"
1201
- msgstr "Domaine du site&nbsp;:"
1202
-
1203
- #: templates/ms-signup-another-blog-form.php:52
1204
- #: templates/ms-signup-blog-form.php:36
1205
- msgid "sitename"
1206
- msgstr "nomdusite"
1207
-
1208
- #: templates/ms-signup-another-blog-form.php:54
1209
- #: templates/ms-signup-blog-form.php:38
1210
- msgid "domain"
1211
- msgstr "domaine"
1212
-
1213
- #: templates/ms-signup-another-blog-form.php:55
1214
- #: templates/ms-signup-blog-form.php:39
1215
- msgid "Your address will be %s."
1216
- msgstr "Votre adresse sera %s."
1217
-
1218
- #: templates/ms-signup-another-blog-form.php:55
1219
- #: templates/ms-signup-blog-form.php:39
1220
- msgid "Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!"
1221
- msgstr "Doit contenir au moins 4 caractères, avec uniquement des lettres et des chiffres. Vous ne pourrez pas en changer, donc choisissez bien&nbsp;!"
1222
-
1223
- #: templates/ms-signup-another-blog-form.php:58
1224
- #: templates/ms-signup-blog-form.php:42
1225
- msgid "Site Title:"
1226
- msgstr "Titre du site&nbsp;:"
1227
-
1228
- #: templates/ms-signup-another-blog-form.php:66
1229
- #: templates/ms-signup-blog-form.php:50
1230
- msgid "Privacy:"
1231
- msgstr "Vie privée&nbsp;:"
1232
-
1233
- #: templates/ms-signup-another-blog-form.php:67
1234
- #: templates/ms-signup-blog-form.php:51
1235
- msgid "Allow my site to appear in search engines like Google, Technorati, and in public listings around this network."
1236
- msgstr "Autoriser mon site à apparaitre dans les moteurs de recherche comme Google, Technorati, et les listes publiques liées à ce réseau."
1237
-
1238
- #: templates/ms-signup-another-blog-form.php:71
1239
- #: templates/ms-signup-blog-form.php:55
1240
- msgid "Yes"
1241
- msgstr "Oui"
1242
-
1243
- #: templates/ms-signup-another-blog-form.php:75
1244
- #: templates/ms-signup-blog-form.php:59
1245
- msgid "No"
1246
- msgstr "Non"
1247
-
1248
- #: templates/ms-signup-another-blog-form.php:85
1249
- msgid "Create Site"
1250
- msgstr "Créer un site"
1251
-
1252
- #: templates/ms-signup-blog-form.php:69
1253
- msgid "Signup"
1254
- msgstr "Inscription"
1255
-
1256
- #: templates/ms-signup-user-form.php:7
1257
- msgid "Get your own %s account in seconds"
1258
- msgstr "Créez votre propre compte %s en quelques secondes"
1259
-
1260
- #: templates/ms-signup-user-form.php:22
1261
- msgid "(Must be at least 4 characters, letters and numbers only.)"
1262
- msgstr "(Doit contenir au moins 4 caractères, uniquement des lettres ou des chiffres.)"
1263
-
1264
- #: templates/ms-signup-user-form.php:24
1265
- msgid "Email&nbsp;Address:"
1266
- msgstr "Adresse de messagerie&nbsp;:"
1267
-
1268
- #: templates/ms-signup-user-form.php:30
1269
- msgid "We send your registration email to this address. (Double-check your email address before continuing.)"
1270
- msgstr "Nous enverrons votre confirmation d&rsquo;inscription à cette adresse. Vérifiez donc bien qu&rsquo;elle est correcte avant de continuer."
1271
-
1272
- #: templates/ms-signup-user-form.php:47
1273
- msgid "Gimme a site!"
1274
- msgstr "Je veux un site&nbsp;!"
1275
-
1276
- #: templates/ms-signup-user-form.php:50
1277
- msgid "Just a username, please."
1278
- msgstr "Juste l&#8217;identifiant, s&#8217;il vous plaît."
1279
-
1280
- #: templates/ms-signup-user-form.php:54
1281
- msgid "Next"
1282
- msgstr "Suivant"
1283
-
1284
- #: templates/profile-form.php:26
1285
- msgid "Personal Options"
1286
- msgstr "Options personnelles"
1287
-
1288
- #: templates/profile-form.php:31
1289
- msgid "Visual Editor"
1290
- msgstr "Éditeur visuel"
1291
-
1292
- #: templates/profile-form.php:32
1293
- msgid "Disable the visual editor when writing"
1294
- msgstr "Désactiver l&rsquo;éditeur visuel pour écrire"
1295
-
1296
- #: templates/profile-form.php:37
1297
- msgid "Admin Color Scheme"
1298
- msgstr "Couleurs de l&rsquo;interface d&rsquo;administration"
1299
-
1300
- #: templates/profile-form.php:44
1301
- msgid "Keyboard Shortcuts"
1302
- msgstr "Raccourcis clavier"
1303
-
1304
- #: templates/profile-form.php:45
1305
- msgid "Enable keyboard shortcuts for comment moderation."
1306
- msgstr "Activer les raccourcis clavier pour la modération de commentaires."
1307
-
1308
- #: templates/profile-form.php:45
1309
- msgid "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">More information</a>"
1310
- msgstr "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">Plus d&rsquo;information (en)</a>"
1311
-
1312
- #: templates/profile-form.php:51
1313
- #: templates/profile-form.php:54
1314
- msgid "Toolbar"
1315
- msgstr "Barre d&rsquo;outils"
1316
-
1317
- #: templates/profile-form.php:57
1318
- msgid "Show Toolbar when viewing site"
1319
- msgstr "Afficher la barre d&rsquo;outils lorsque vous visitez le site"
1320
-
1321
- #: templates/profile-form.php:63
1322
- #: templates/profile-form.php:66
1323
- msgid "Show Admin Bar"
1324
- msgstr "Afficher la barre d&rsquo;administration"
1325
-
1326
- #. translators: Show admin bar when viewing site
1327
- #: templates/profile-form.php:69
1328
- msgid "when viewing site"
1329
- msgstr "sur les pages du site"
1330
-
1331
- #. translators: Show admin bar in dashboard
1332
- #: templates/profile-form.php:74
1333
- msgid "in dashboard"
1334
- msgstr "sur le tableau de bord"
1335
-
1336
- #: templates/profile-form.php:87
1337
- msgid "Name"
1338
- msgstr "Nom"
1339
-
1340
- #: templates/profile-form.php:92
1341
- msgid "Your username cannot be changed."
1342
- msgstr "Cette option ne peut pas être changée."
1343
-
1344
- #: templates/profile-form.php:96
1345
- msgid "First name"
1346
- msgstr "Prénom"
1347
-
1348
- #: templates/profile-form.php:101
1349
- msgid "Last name"
1350
- msgstr "Nom de famille"
1351
-
1352
- #: templates/profile-form.php:106
1353
- msgid "Nickname"
1354
- msgstr "Pseudo"
1355
-
1356
- #: templates/profile-form.php:106
1357
- #: templates/profile-form.php:143
1358
- msgid "(required)"
1359
- msgstr "(requis)"
1360
-
1361
- #: templates/profile-form.php:111
1362
- msgid "Display name publicly as"
1363
- msgstr "Nom à afficher publiquement"
1364
-
1365
- #: templates/profile-form.php:139
1366
- msgid "Contact Info"
1367
- msgstr "Coordonnées"
1368
-
1369
- #: templates/profile-form.php:148
1370
- msgid "Website"
1371
- msgstr "Site Web"
1372
-
1373
- #: templates/profile-form.php:165
1374
- msgid "About Yourself"
1375
- msgstr "À propos de Vous"
1376
-
1377
- #: templates/profile-form.php:169
1378
- msgid "Biographical Info"
1379
- msgstr "Informations biographiques"
1380
-
1381
- #: templates/profile-form.php:171
1382
- msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
1383
- msgstr "Partagez un peu d'informations biographiques pour remplir votre profil. Ceci peut être montré publiquement."
1384
-
1385
- #: templates/profile-form.php:179
1386
- msgid "New Password"
1387
- msgstr "Nouveau mot de passe"
1388
-
1389
- #: templates/profile-form.php:180
1390
- msgid "If you would like to change the password type a new one. Otherwise leave this blank."
1391
- msgstr "Si vous souhaitez changer le mot de passe encodez-en un nouveau. <br />Sinon laissez ce champ vide."
1392
-
1393
- #: templates/profile-form.php:181
1394
- msgid "Type your new password again."
1395
- msgstr "Encodez-le une nouvelle fois."
1396
-
1397
- #: templates/profile-form.php:183
1398
- #: templates/resetpass-form.php:20
1399
- msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
1400
- msgstr "Astuce: Le mot de passe doit avoir au moins 7 caractères. <br/>Pour le rendre plus sûr, utiliser des majuscules et minuscules, chiffres et symboles tels que ! \" ? $ % ^ &amp; )."
1401
-
1402
- #: templates/profile-form.php:197
1403
- msgid "Additional Capabilities"
1404
- msgstr "Possibilités supplémentaires"
1405
-
1406
- #: templates/profile-form.php:216
1407
- msgid "Update Profile"
1408
- msgstr "Modifier votre profil"
1409
-
1410
- #: templates/register-form.php:23
1411
- msgid "A password will be e-mailed to you."
1412
- msgstr "Un mot de passe vous sera envoyé par e-mail."
1413
-
1414
- #: templates/resetpass-form.php:12
1415
- msgid "New password"
1416
- msgstr "Permaliens"
1417
-
1418
- #: templates/resetpass-form.php:16
1419
- msgid "Confirm new password"
1420
- msgstr "Confirmer le nouveau mot de passe"
1421
-
1422
- #. Plugin URI of the plugin/theme
1423
- msgid "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/"
1424
- msgstr "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/"
1425
-
1426
- #. Description of the plugin/theme
1427
- msgid "Themes the WordPress login, registration and forgot password pages according to your theme."
1428
- msgstr "Thèmes pour la connexion, l'enregistrement et mot de passe oublié WordPress en fonction de votre thème."
1429
-
1430
- #. Author of the plugin/theme
1431
- msgid "Jeff Farthing"
1432
- msgstr "Jeff Farthing"
1433
-
1434
- #. Author URI of the plugin/theme
1435
- msgid "http://www.jfarthing.com"
1436
- msgstr "http://www.jfarthing.com"
1437
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
language/theme-my-login-hu_HU.mo DELETED
Binary file
language/theme-my-login-hu_HU.po DELETED
@@ -1,1434 +0,0 @@
1
- # Copyright (C) 2012 Theme My Login
2
- # This file is distributed under the same license as the Theme My Login package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Theme My Login 6.2\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/theme-my-login\n"
7
- "POT-Creation-Date: 2012-03-08 16:19:05+00:00\n"
8
- "PO-Revision-Date: 2012-03-09 15:00-0500\n"
9
- "Last-Translator: Jeff Farthing <jeff@jfarthing.com>\n"
10
- "Language-Team: Zoltán János Jánosi <jazoja4@gmail.com>\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-Country: HUNGARY\n"
15
- "X-Poedit-Language: Hungarian\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
-
18
- #. #-#-#-#-# plugin.pot (Theme My Login 6.2) #-#-#-#-#
19
- #. Plugin Name of the plugin/theme
20
- #: admin/class-theme-my-login-admin.php:42
21
- #: admin/class-theme-my-login-admin.php:43
22
- #: includes/class-theme-my-login-widget.php:24
23
- msgid "Theme My Login"
24
- msgstr "Theme My Login"
25
-
26
- #: admin/class-theme-my-login-admin.php:81
27
- msgid "ERROR: The module \"%1$s\" could not be activated (%2$s)."
28
- msgstr "HIBA: A \"%1$s\" modult nem sikerült aktiválni (%2$s)."
29
-
30
- #: admin/class-theme-my-login-admin.php:103
31
- msgid "NOTICE:"
32
- msgstr "MEGJEGYZÉS:"
33
-
34
- #: admin/class-theme-my-login-admin.php:104
35
- msgid "Now that you have activated Theme My Login, please <a href=\"%s\">visit the settings page</a> and familiarize yourself with all of the available options."
36
- msgstr "Most, hogy a Them My Login aktiválva van, kérem <a href=\"%s\">nézze át a beállítások oldalt</a> és ismerkedjen meg az elérhető lehetőségekkel."
37
-
38
- #: admin/class-theme-my-login-admin.php:106
39
- msgid "Take me to the settings page"
40
- msgstr "Vigyen a beállítások oldalra"
41
-
42
- #: admin/class-theme-my-login-admin.php:119
43
- msgid "You can now login with your e-mail address or username! Try it out!"
44
- msgstr "Felhasználónévvel és e-levélcímmel is be lehet lépni. Próbálja ki!"
45
-
46
- #: admin/class-theme-my-login-admin.php:120
47
- msgid "Theme My Login now utilizes a module system. Modules are similar to WordPress plugins. Each module extends the default functionality of Theme My Login. <a rel=\"tml-options\" href=\"#tml-options-modules\">Click here</a> to get started with modules now."
48
- msgstr "A Theme My Login egy modulrendszert használ. A modulok hasonlóak a WordPress beépülőkhöz. Minden modul kibővíti a Theme My Login lehetőségeit. <a rel=\"tml-options\" href=\"#tml-modules\">Kattintson ide</a> a modulok használatának elkezdéséhez."
49
-
50
- #: admin/class-theme-my-login-admin.php:121
51
- msgid "Theme My Login now allows custom forms. You can create your own form template(s) by copying the default version(s) from \"theme-my-login/templates\" to your current theme directory. Try it out!"
52
- msgstr "Theme My Login egyedi űrlapok használatát is lehetővé teszi. Saját sablont úgy hozhat létre, hogy lemásolja az alap verziót a \"theme-my-login/templates\" könyvtárból az aktuális téma-könyvtárba. Próbálja ki!"
53
-
54
- #: admin/class-theme-my-login-admin.php:122
55
- msgid "You can maintain your stylesheet changes between upgrades. Just simply copy the file \"theme-my-login/theme-my-login.css\" to your current theme directory and edit it as you please!"
56
- msgstr "A styluslapban történt módosítások frissítések közti megtartásához másolja a \"theme-my-login/theme-my-login.css\" fájlt az aktuális téma-könyvtárba, és ott szerkessze."
57
-
58
- #: admin/class-theme-my-login-admin.php:123
59
- msgid "Theme My Login provides a shortcode that you can use within your posts with multiple parameters to customize the form. Visit the <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Theme My Login Documentation</a> for usage instructions."
60
- msgstr "Theme My Login elérhetővé tesz egy rövid kódot, amit paraméterezve egyedi űrlapok jeleníthetők meg a bejegyzésekben. Nézz meg a <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Theme My Login dokumentációt</a> használati útmutatóért."
61
-
62
- #: admin/class-theme-my-login-admin.php:124
63
- msgid "Jeff is <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">available for hire</a>!"
64
- msgstr "Jeff <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">felbérelhető</a>!"
65
-
66
- #: admin/class-theme-my-login-admin.php:128
67
- msgid "Did You Know?"
68
- msgstr "Tudta, hogy ...?"
69
-
70
- #: admin/class-theme-my-login-admin.php:177
71
- msgid "General"
72
- msgstr "Általános"
73
-
74
- #: admin/class-theme-my-login-admin.php:178
75
- msgid "Basic"
76
- msgstr "Alap"
77
-
78
- #: admin/class-theme-my-login-admin.php:179
79
- #: admin/class-theme-my-login-admin.php:319
80
- msgid "Modules"
81
- msgstr "Modulok"
82
-
83
- #: admin/class-theme-my-login-admin.php:181
84
- msgid "Permalinks"
85
- msgstr "Közvetlen linkek"
86
-
87
- #: admin/class-theme-my-login-admin.php:188
88
- msgid "Theme My Login Settings"
89
- msgstr "Theme My Login beállítások"
90
-
91
- #: admin/class-theme-my-login-admin.php:194
92
- #: admin/class-theme-my-login-admin.php:254
93
- msgid "Save Changes"
94
- msgstr "Változások mentése"
95
-
96
- #: admin/class-theme-my-login-admin.php:271
97
- msgid "Page ID"
98
- msgstr "Oldal ID"
99
-
100
- #: admin/class-theme-my-login-admin.php:274
101
- msgid "This should be the ID of the WordPress page that includes the [theme-my-login] shortcode. By default, this page is titled \"Login\"."
102
- msgstr "Ez annak az oldalnak az ID-ja, amelyik a [theme-my-login] rövid kódot tartalmazza. Ennek cím alapesetben \"Login\"."
103
-
104
- #: admin/class-theme-my-login-admin.php:278
105
- msgid "Pagelist"
106
- msgstr "Oldallista"
107
-
108
- #: admin/class-theme-my-login-admin.php:281
109
- msgid "Show Page In Pagelist"
110
- msgstr "Oldal mutatása az oldallistában"
111
-
112
- #: admin/class-theme-my-login-admin.php:282
113
- msgid "Enable this setting to add login/logout links to the pagelist generated by functions like wp_list_pages() and wp_page_menu()."
114
- msgstr "Jelölje be ezt, ha azt szeretné, hogy az oldalfelsoroló függvények, mint pl a wp_list_pages() és wp_page_menu() felsorolják a belépés/kilépés oldalakat."
115
-
116
- #: admin/class-theme-my-login-admin.php:286
117
- msgid "Stylesheet"
118
- msgstr "Stíluslap"
119
-
120
- #: admin/class-theme-my-login-admin.php:289
121
- msgid "Enable \"theme-my-login.css\""
122
- msgstr "Stíluslap „theme-my-login.css” engedélyezése"
123
-
124
- #: admin/class-theme-my-login-admin.php:290
125
- msgid "In order to keep changes between upgrades, you can store your customized \"theme-my-login.css\" in your current theme directory."
126
- msgstr "Az egyedi stílusok megőrzéséhez, az aktuális téma-könyvtárban lehet egy „theme-my-login.css” fájl."
127
-
128
- #: admin/class-theme-my-login-admin.php:294
129
- msgid "E-mail Login"
130
- msgstr "Belépés email-el"
131
-
132
- #: admin/class-theme-my-login-admin.php:297
133
- msgid "Enable e-mail address login"
134
- msgstr "E-mail címmel történő bejelentkezés engedélyezése"
135
-
136
- #: admin/class-theme-my-login-admin.php:298
137
- msgid "Allows users to login using their e-mail address in place of their username."
138
- msgstr "Felhasználói név helyett e-mail címmel történő bejelentkezés engedélyezése."
139
-
140
- #: admin/class-theme-my-login-admin.php:323
141
- msgid "Enable %s"
142
- msgstr "%s engedélyezése"
143
-
144
- #: admin/class-theme-my-login-admin.php:325
145
- msgid "No modules found."
146
- msgstr "Nincsenek modulok."
147
-
148
- #: admin/class-theme-my-login-admin.php:343
149
- #: includes/class-theme-my-login-widget.php:87
150
- msgid "Login"
151
- msgstr "Belépés"
152
-
153
- #: admin/class-theme-my-login-admin.php:344
154
- #: includes/class-theme-my-login-template.php:141
155
- #: includes/class-theme-my-login-widget.php:87
156
- #: templates/register-form.php:25
157
- msgid "Register"
158
- msgstr "Regisztráció"
159
-
160
- #: admin/class-theme-my-login-admin.php:345
161
- #: includes/class-theme-my-login-template.php:147
162
- #: includes/class-theme-my-login-widget.php:87
163
- msgid "Lost Password"
164
- msgstr "Elfelejtett jelszó"
165
-
166
- #: admin/class-theme-my-login-admin.php:475
167
- msgid "One of the modules is invalid."
168
- msgstr "Az egyik modul érvénytelen."
169
-
170
- #: admin/class-theme-my-login-admin.php:531
171
- msgid "Invalid module path."
172
- msgstr "Érvénytelen modul elérési út."
173
-
174
- #: admin/class-theme-my-login-admin.php:533
175
- msgid "Module file does not exist."
176
- msgstr "A modulfájl nem létezik."
177
-
178
- #: admin/class-theme-my-login-admin.php:537
179
- msgid "The module does not have a valid header."
180
- msgstr "A modulnak nincs érvényes fejléce."
181
-
182
- #: includes/class-theme-my-login-ms-signup.php:117
183
- msgctxt "Multisite active signup type"
184
- msgid "all"
185
- msgstr "összes"
186
-
187
- #: includes/class-theme-my-login-ms-signup.php:118
188
- msgctxt "Multisite active signup type"
189
- msgid "none"
190
- msgstr "nem"
191
-
192
- #: includes/class-theme-my-login-ms-signup.php:119
193
- msgctxt "Multisite active signup type"
194
- msgid "blog"
195
- msgstr "honlap"
196
-
197
- #: includes/class-theme-my-login-ms-signup.php:120
198
- msgctxt "Multisite active signup type"
199
- msgid "user"
200
- msgstr "felhasználó"
201
-
202
- #: includes/class-theme-my-login-ms-signup.php:123
203
- msgid "Greetings Site Administrator! You are currently allowing &#8220;%s&#8221; registrations. To change or disable registration go to your <a href=\"%s\">Options page</a>."
204
- msgstr "Üdvözletünk Honlap Adminisztrátor! Jelenleg &#8220;%s&#8221; regisztrációját engedélyezése történik. A regisztráció kikapcsolása, vagy módosítása a <a href=\"%s\">Beállítások oldalon</a> lehetséges."
205
-
206
- #: includes/class-theme-my-login-ms-signup.php:129
207
- msgid "Registration has been disabled."
208
- msgstr "A regisztráció jelenleg nem elérhető."
209
-
210
- #: includes/class-theme-my-login-ms-signup.php:131
211
- msgid "You must first <a href=\"%s\">log in</a>, and then you can create a new site."
212
- msgstr "Elöszőr <a href=\"%s\">be kell jelentkezni</a>, csak azutánk lehet új honlapot létrehozni."
213
-
214
- #: includes/class-theme-my-login-ms-signup.php:155
215
- msgid "%s is your new username"
216
- msgstr "Az új felhasználó neved: %s"
217
-
218
- #: includes/class-theme-my-login-ms-signup.php:156
219
- msgid "But, before you can start using your new username, <strong>you must activate it</strong>."
220
- msgstr "Mielőtt használatba vehetnéd az új felhasználó neved, <strong>aktiválnod kell</strong>."
221
-
222
- #: includes/class-theme-my-login-ms-signup.php:157
223
- msgid "Check your inbox at <strong>%1$s</strong> and click the link given."
224
- msgstr "Ellenőrizd a(z) <strong>%1$s</strong> postafiókod, és kattints a kapott linkre."
225
-
226
- #: includes/class-theme-my-login-ms-signup.php:158
227
- msgid "If you do not activate your username within two days, you will have to sign up again."
228
- msgstr "Ha nem aktiválod a felhasználó neved két napon belül, újra kell regisztrálnod."
229
-
230
- #: includes/class-theme-my-login-ms-signup.php:162
231
- msgid "User registration has been disabled."
232
- msgstr "Felhasználók regisztrációja jelenleg nem lehetséges."
233
-
234
- #: includes/class-theme-my-login-ms-signup.php:194
235
- msgid "Congratulations! Your new site, %s, is almost ready."
236
- msgstr "Gratulálunk! Az új honlap - %s - rendelkezésre áll!"
237
-
238
- #: includes/class-theme-my-login-ms-signup.php:196
239
- msgid "But, before you can start using your site, <strong>you must activate it</strong>."
240
- msgstr "Mielőtt használatba lenne véve az új honlap, <strong>aktiválni kell</strong>."
241
-
242
- #: includes/class-theme-my-login-ms-signup.php:197
243
- msgid "Check your inbox at <strong>%s</strong> and click the link given."
244
- msgstr "A(z) <strong>%1$s</strong> bejövő fiókot kell ellenőrizni, és a kapott linkre kattintani."
245
-
246
- #: includes/class-theme-my-login-ms-signup.php:198
247
- msgid "If you do not activate your site within two days, you will have to sign up again."
248
- msgstr "Amennyiben kettő napon belül nem történik meg az aktiválás, a rendszer a kérést törli, és újból kell kezdeni a regisztrációt."
249
-
250
- #: includes/class-theme-my-login-ms-signup.php:199
251
- msgid "Still waiting for your email?"
252
- msgstr "Még mindig az e-mailedre vársz?"
253
-
254
- #: includes/class-theme-my-login-ms-signup.php:201
255
- msgid "If you haven&#8217;t received your email yet, there are a number of things you can do:"
256
- msgstr "Amennyiben még mindig nem érkezett meg az email, van néhány dolog aminek utána kell nézni:"
257
-
258
- #: includes/class-theme-my-login-ms-signup.php:203
259
- msgid "Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control."
260
- msgstr "Egy kis türelmet kérünk.... Az emailek továbbítása néha lassulhat, és ennek orvoslása kívül esik a mi befolyásolási lehetőségeinken."
261
-
262
- #: includes/class-theme-my-login-ms-signup.php:204
263
- msgid "Check the junk or spam folder of your email client. Sometime emails wind up there by mistake."
264
- msgstr "Ellenőrizni kell a levelező-rendszerben a levélszemét-, és/vagy a spam könyvtárat is. Néha, véletlenül, ott kötnek ki az emailek."
265
-
266
- #: includes/class-theme-my-login-ms-signup.php:205
267
- msgid "Have you entered your email correctly? You have entered %s, if it&#8217;s incorrect, you will not receive your email."
268
- msgstr "Helyes email cím került megadásra? A megadott email cím: %s. Ammennyiben ez nem helyes, akkor nem fognak megérkezni az emailek."
269
-
270
- #: includes/class-theme-my-login-ms-signup.php:211
271
- msgid "Site registration has been disabled."
272
- msgstr "Honlap regisztráció kikapcsolva."
273
-
274
- #: includes/class-theme-my-login-ms-signup.php:235
275
- msgid "The site %s is yours."
276
- msgstr "A(z) %s honlap már az Öné!"
277
-
278
- #: includes/class-theme-my-login-ms-signup.php:237
279
- msgid "<a href=\"http://%1$s\">http://%2$s</a> is your new site. <a href=\"%3$s\">Log in</a> as &#8220;%4$s&#8221; using your existing password."
280
- msgstr "<a href=\"http://%1$s\">http://%2$s</a> az új honlap. <a href=\"%3$s\">Bejelentkezés</a>, mint \"%4$s\", a megadott jelszó használatával."
281
-
282
- #: includes/class-theme-my-login-ms-signup.php:253
283
- msgid "Sorry, new registrations are not allowed at this time."
284
- msgstr "Elnézést, jelenleg a regisztráció nem engedélyezett."
285
-
286
- #: includes/class-theme-my-login-ms-signup.php:255
287
- msgid "You are logged in already. No need to register again!"
288
- msgstr "A bejelentkezés már megtörtént, nincs szükség ismételt regisztrációra!"
289
-
290
- #: includes/class-theme-my-login-ms-signup.php:261
291
- msgid "<p><em>The site you were looking for, <strong>%s</strong> does not exist, but you can create it now!</em></p>"
292
- msgstr "<p><em>A keresett <strong>%s</strong> honlap nem található, de akár most létrehozható!</em></p>"
293
-
294
- #: includes/class-theme-my-login-ms-signup.php:263
295
- msgid "<p><em>The site you were looking for, <strong>%s</strong>, does not exist.</em></p>"
296
- msgstr "<p><em>A keresett <strong>%s</strong> honlap nem létezik!</em></p>"
297
-
298
- #: includes/class-theme-my-login-ms-signup.php:402
299
- msgid "Activation Key Required"
300
- msgstr "Az aktiváló kulcs megadása kötelező"
301
-
302
- #: includes/class-theme-my-login-ms-signup.php:405
303
- msgid "Activation Key:"
304
- msgstr "Aktiválási kulcs:"
305
-
306
- #: includes/class-theme-my-login-ms-signup.php:409
307
- #: includes/class-theme-my-login-ms-signup.php:481
308
- msgid "Activate"
309
- msgstr "Bekapcsol"
310
-
311
- #: includes/class-theme-my-login-ms-signup.php:421
312
- #: includes/class-theme-my-login-ms-signup.php:441
313
- msgid "Your account is now active!"
314
- msgstr "A felhasználói fiók aktiválva!"
315
-
316
- #: includes/class-theme-my-login-ms-signup.php:425
317
- msgid "Your account has been activated. You may now <a href=\"%1$s\">login</a> to the site using your chosen username of &#8220;%2$s&#8221;. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%4$s\">reset your password</a>."
318
- msgstr "A felhasználói fiók aktiválásra került. Most már lehetőség van <a href=\"%1$s\">Belépni a honlapra</a> a választott &#8220;%2$s&#8221; felhasználói névvel. A jelszóval és a belépéssel kapcsolatos tájékoztatásért ellenőrizni kell a megadott email fiókot: %3$s. Amennyiben nem érkezett email, érdemes ellenőrizni a levelező rendszerének levélszemét (spam) tárolóját is . Amennyiben egyáltalán nem érkezik email egy órán belül, úgy ismét lehet kérni a <a href=\"%4$s\">jelszó újragenerálása</a>t."
319
-
320
- #: includes/class-theme-my-login-ms-signup.php:427
321
- msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a>."
322
- msgstr "Gratulálunk! <br /> A(z)<a href=\"%1$s\">%2$s</a> honlap aktiválásra került.<br /> A honlapra a(z) &#8220;%3$s&#8221; választott felhasználói névvel be lehet lépni. Kérjük, ellenőrizze az email fiókot (%4$s) a jelszó és belépési információk adataiért. Amennyiben ez az email nem érkezik meg, javasoljuk a levélszemét-mappa ellenőrzését is. Amennyiben egy órán belül nem érkezik meg a jelszót tartalmazó email, a <a href=\"%5$s\">jelszó beállítása</a>feliratra kattintva lehet új jelszót kérni."
323
-
324
- #: includes/class-theme-my-login-ms-signup.php:432
325
- msgid "An error occurred during the activation"
326
- msgstr "Hiba történt az aktiválás közben. Újra kellene próbálkozni..."
327
-
328
- #: includes/class-theme-my-login-ms-signup.php:444
329
- #: templates/ms-signup-user-form.php:16
330
- msgid "Username:"
331
- msgstr "Felhasználónév:"
332
-
333
- #: includes/class-theme-my-login-ms-signup.php:445
334
- #: modules/custom-passwords/custom-passwords.php:29
335
- #: modules/custom-passwords/custom-passwords.php:56
336
- msgid "Password:"
337
- msgstr "Jelszó:"
338
-
339
- #: includes/class-theme-my-login-ms-signup.php:449
340
- msgid "Your account is now activated. <a href=\"%1$s\">View your site</a> or <a href=\"%2$s\">Login</a>"
341
- msgstr "A felhasználói fiók bekapcsolva. <a href=\"%1$s\">A honlap megtekintése</a>, vagy <a href=\"%2$s\">bejelentkezés</a>!"
342
-
343
- #: includes/class-theme-my-login-ms-signup.php:451
344
- msgid "Your account is now activated. <a href=\"%1$s\">Login</a> or go back to the <a href=\"%2$s\">homepage</a>."
345
- msgstr "A felhasználói fiók bekapcsolva. <a href=\"%1$s\">Bejelentkezés</a>, vagy vissza a<a href=\"%2$s\">főoldal</a>ra."
346
-
347
- #: includes/class-theme-my-login-template.php:137
348
- msgid "Welcome, %s"
349
- msgstr "Üdv, %s"
350
-
351
- #: includes/class-theme-my-login-template.php:151
352
- #: includes/class-theme-my-login.php:540
353
- #: templates/login-form.php:28
354
- msgid "Log In"
355
- msgstr "Belépés"
356
-
357
- #: includes/class-theme-my-login-template.php:315
358
- #: modules/custom-user-links/custom-user-links.php:82
359
- msgid "Dashboard"
360
- msgstr "Vezérlő panel"
361
-
362
- #: includes/class-theme-my-login-template.php:316
363
- #: modules/custom-user-links/custom-user-links.php:83
364
- #: modules/themed-profiles/admin/themed-profiles-admin.php:66
365
- msgid "Profile"
366
- msgstr "Profil"
367
-
368
- #: includes/class-theme-my-login-template.php:334
369
- #: modules/custom-redirection/custom-redirection.php:197
370
- msgid "Log out"
371
- msgstr "Kilépés"
372
-
373
- #: includes/class-theme-my-login-template.php:363
374
- msgid "Register For This Site"
375
- msgstr "Regisztrálás erre az oldalra"
376
-
377
- #: includes/class-theme-my-login-template.php:366
378
- msgid "Please enter your username or email address. You will receive a link to create a new password via email."
379
- msgstr "A felhasználónév vagy email cím megadását követően a rendszer új jelszót fog emailben küldeni."
380
-
381
- #: includes/class-theme-my-login-template.php:369
382
- msgid "Enter your new password below."
383
- msgstr "Az új jelszót alul meg kell adni."
384
-
385
- #: includes/class-theme-my-login-widget.php:23
386
- msgid "A login form for your blog."
387
- msgstr "Belépés űrlap a bloghoz."
388
-
389
- #: includes/class-theme-my-login-widget.php:88
390
- msgid "Default Action"
391
- msgstr "Alapért. művelet"
392
-
393
- #: includes/class-theme-my-login-widget.php:95
394
- msgid "Show When Logged In"
395
- msgstr "Mutassa, ha belépett"
396
-
397
- #: includes/class-theme-my-login-widget.php:97
398
- msgid "Show Title"
399
- msgstr "Cím megjelenítése"
400
-
401
- #: includes/class-theme-my-login-widget.php:99
402
- msgid "Show Login Link"
403
- msgstr "Belépés link megjelenítése"
404
-
405
- #: includes/class-theme-my-login-widget.php:101
406
- msgid "Show Register Link"
407
- msgstr "Regisztrálás link megjelenítése"
408
-
409
- #: includes/class-theme-my-login-widget.php:103
410
- msgid "Show Lost Password Link"
411
- msgstr "Elfelejtett jelszó link megjelenítése"
412
-
413
- #: includes/class-theme-my-login-widget.php:105
414
- msgid "Show Gravatar"
415
- msgstr "Gravatar mutatása"
416
-
417
- #: includes/class-theme-my-login-widget.php:106
418
- msgid "Gravatar Size"
419
- msgstr "Gravatar mérete"
420
-
421
- #: includes/class-theme-my-login-widget.php:108
422
- msgid "Allow Registration"
423
- msgstr "Regisztráció engedélyezése"
424
-
425
- #: includes/class-theme-my-login-widget.php:110
426
- msgid "Allow Password Recovery"
427
- msgstr "Jelszó visszaszerzés engedélyezése"
428
-
429
- #: includes/class-theme-my-login.php:245
430
- msgid "Sorry, that key does not appear to be valid."
431
- msgstr "Bocsi, ez a kulcs érvénytelennek tűnik."
432
-
433
- #: includes/class-theme-my-login.php:261
434
- msgid "The passwords do not match."
435
- msgstr "Nem egyezik a jelszó. Újabb próbát kérünk!"
436
-
437
- #: includes/class-theme-my-login.php:367
438
- msgid "<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href=\"http://www.google.com/cookies.html\">enable cookies</a> to use WordPress."
439
- msgstr "<strong>HIBA</strong>: A sütik le vannak tiltva. A WordPress használatához <a href=\"http://www.google.com/cookies.html\">engedélyezni kell a sütiket</a>."
440
-
441
- #: includes/class-theme-my-login.php:371
442
- msgid "You are now logged out."
443
- msgstr "Most ki van lépve."
444
-
445
- #: includes/class-theme-my-login.php:373
446
- msgid "User registration is currently not allowed."
447
- msgstr "A regisztráció jelenleg nincs engedélyezve."
448
-
449
- #: includes/class-theme-my-login.php:375
450
- msgid "Check your e-mail for the confirmation link."
451
- msgstr "A megerősítő hivatkozást keresse az e-levelei között."
452
-
453
- #: includes/class-theme-my-login.php:377
454
- msgid "Your password has been reset."
455
- msgstr "A kérésnek megfelelően új jelszó került létrehozásra."
456
-
457
- #: includes/class-theme-my-login.php:379
458
- msgid "Registration complete. Please check your e-mail."
459
- msgstr "Regisztráció kész. Kérem nézze meg az e-leveleit!"
460
-
461
- #: includes/class-theme-my-login.php:381
462
- msgid "Your session has expired. Please log-in again."
463
- msgstr "A munkamenet lejárt. Kérem lépjen be újra."
464
-
465
- #: includes/class-theme-my-login.php:383
466
- msgid "Please log in to continue."
467
- msgstr "Kérem jelentkezzen be a folytatáshoz."
468
-
469
- #: includes/class-theme-my-login.php:540
470
- msgid "Log Out"
471
- msgstr "Kilépés"
472
-
473
- #: includes/class-theme-my-login.php:925
474
- msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
475
- msgstr "<strong>HIBA</strong>: Adjon meg felhasználónevet vagy e-levélcímet."
476
-
477
- #: includes/class-theme-my-login.php:929
478
- msgid "<strong>ERROR</strong>: There is no user registered with that email address."
479
- msgstr "<strong>HIBA</strong>: Nincs regisztrálca felhasználó ezzel az e-levélcímmel."
480
-
481
- #: includes/class-theme-my-login.php:941
482
- msgid "<strong>ERROR</strong>: Invalid username or e-mail."
483
- msgstr "<strong>HIBA</strong>: Érvénytelen felhasználónév vagy e-levélcím."
484
-
485
- #: includes/class-theme-my-login.php:955
486
- msgid "Password reset is not allowed for this user"
487
- msgstr "A jelszó-módosítás nem engedélyezett ennek a felhasználónak"
488
-
489
- #: includes/class-theme-my-login.php:967
490
- msgid "Someone requested that the password be reset for the following account:"
491
- msgstr "Valaki új jelszó generálását kérte az alábbi felhasználói fiókhoz:"
492
-
493
- #: includes/class-theme-my-login.php:969
494
- #: modules/custom-email/custom-email.php:692
495
- #: modules/custom-email/custom-email.php:709
496
- #: modules/user-moderation/admin/user-moderation-admin.php:164
497
- #: modules/user-moderation/user-moderation.php:365
498
- msgid "Username: %s"
499
- msgstr "Felhasználónév: %s"
500
-
501
- #: includes/class-theme-my-login.php:970
502
- msgid "If this was a mistake, just ignore this email and nothing will happen."
503
- msgstr "Amennyiben nem Ön kérte, egyszerűen hagyja figyelmen kívül ezt az emailt, és semmi sem fog történni."
504
-
505
- #: includes/class-theme-my-login.php:971
506
- msgid "To reset your password, visit the following address:"
507
- msgstr "Új jelszó generálásához kattintás a következő linkre !"
508
-
509
- #: includes/class-theme-my-login.php:982
510
- msgid "[%s] Password Reset"
511
- msgstr "[%s] Jelszó módosítás"
512
-
513
- #: includes/class-theme-my-login.php:988
514
- #: modules/user-moderation/admin/user-moderation-admin.php:53
515
- #: modules/user-moderation/admin/user-moderation-admin.php:174
516
- #: modules/user-moderation/admin/user-moderation-admin.php:210
517
- msgid "The e-mail could not be sent."
518
- msgstr "Az e-levelet nem sikerült elküldeni."
519
-
520
- #: includes/class-theme-my-login.php:988
521
- #: modules/user-moderation/admin/user-moderation-admin.php:53
522
- #: modules/user-moderation/admin/user-moderation-admin.php:174
523
- #: modules/user-moderation/admin/user-moderation-admin.php:210
524
- msgid "Possible reason: your host may have disabled the mail() function..."
525
- msgstr "Lehetséges ok: a gépen ki lehet kapcsolva a mail() függvény..."
526
-
527
- #: includes/class-theme-my-login.php:1011
528
- #: includes/class-theme-my-login.php:1014
529
- #: includes/class-theme-my-login.php:1019
530
- #: modules/user-moderation/user-moderation.php:238
531
- #: modules/user-moderation/user-moderation.php:241
532
- #: modules/user-moderation/user-moderation.php:246
533
- msgid "Invalid key"
534
- msgstr "Érvénytelen kulcs"
535
-
536
- #: includes/class-theme-my-login.php:1059
537
- msgid "<strong>ERROR</strong>: Please enter a username."
538
- msgstr "<strong>ERROR</strong>: Please enter a username."
539
-
540
- #: includes/class-theme-my-login.php:1061
541
- msgid "<strong>ERROR</strong>: This username is invalid because it uses illegal characters. Please enter a valid username."
542
- msgstr "<strong>HIBA</strong>: Ez a felhasználónév nem érvényes, mert érvénytelen karaktereket használ. Kérem adjon meg érvényes felhasználónevet."
543
-
544
- #: includes/class-theme-my-login.php:1064
545
- msgid "<strong>ERROR</strong>: This username is already registered, please choose another one."
546
- msgstr "<strong>HIBA</strong>: Ez a felhasználónév már foglalt, kérem válasszon másikat."
547
-
548
- #: includes/class-theme-my-login.php:1069
549
- msgid "<strong>ERROR</strong>: Please type your e-mail address."
550
- msgstr "<strong>HIBA</strong>: Kérem írja be az e-levélcímét."
551
-
552
- #: includes/class-theme-my-login.php:1071
553
- msgid "<strong>ERROR</strong>: The email address isn&#8217;t correct."
554
- msgstr "<strong>HIBA</strong>: Az e-levélcím nem helyes."
555
-
556
- #: includes/class-theme-my-login.php:1074
557
- msgid "<strong>ERROR</strong>: This email is already registered, please choose another one."
558
- msgstr "<strong>HIBA</strong>: Ez az e-levélcím már be van regisztrálva, kérem válasszon másikat."
559
-
560
- #: includes/class-theme-my-login.php:1087
561
- msgid "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href=\"mailto:%s\">webmaster</a> !"
562
- msgstr "<strong>HIBA</strong>: Nem sikerült a regisztráció... kérem lépjen kapcsolatba a <a href=\"mailto:%s\">webmester</a>rel!"
563
-
564
- #: modules/custom-email/admin/custom-email-admin.php:46
565
- #: modules/custom-email/admin/custom-email-admin.php:265
566
- msgid "User Notification"
567
- msgstr "Felhasználó értesítés"
568
-
569
- #: modules/custom-email/admin/custom-email-admin.php:49
570
- msgid "This e-mail will be sent to a new user upon registration."
571
- msgstr "Ezt az e-levelet az új felhasználók kapják meg regisztrációkor."
572
-
573
- #: modules/custom-email/admin/custom-email-admin.php:50
574
- #: modules/custom-email/admin/custom-email-admin.php:269
575
- msgid "Please be sure to include the variable %user_pass% if using default passwords or else the user will not know their password!"
576
- msgstr "Győződjön meg róla, hogy a %user_pass% változó szerepel a levélben ha kiosztott jelszót használ, különben a felhasználó nem fogja tudni a jelszavát!"
577
-
578
- #: modules/custom-email/admin/custom-email-admin.php:51
579
- #: modules/custom-email/admin/custom-email-admin.php:81
580
- #: modules/custom-email/admin/custom-email-admin.php:130
581
- #: modules/custom-email/admin/custom-email-admin.php:175
582
- #: modules/custom-email/admin/custom-email-admin.php:224
583
- #: modules/custom-email/admin/custom-email-admin.php:270
584
- #: modules/custom-email/admin/custom-email-admin.php:300
585
- #: modules/custom-email/admin/custom-email-admin.php:348
586
- msgid "If any field is left empty, the default will be used instead."
587
- msgstr "Ha bármelyik mező üresen marad, akkor az alapérték kerül felhasználásra."
588
-
589
- #: modules/custom-email/admin/custom-email-admin.php:54
590
- #: modules/custom-email/admin/custom-email-admin.php:87
591
- #: modules/custom-email/admin/custom-email-admin.php:133
592
- #: modules/custom-email/admin/custom-email-admin.php:181
593
- #: modules/custom-email/admin/custom-email-admin.php:227
594
- #: modules/custom-email/admin/custom-email-admin.php:273
595
- #: modules/custom-email/admin/custom-email-admin.php:306
596
- #: modules/custom-email/admin/custom-email-admin.php:351
597
- msgid "From Name"
598
- msgstr "Küldő neve"
599
-
600
- #: modules/custom-email/admin/custom-email-admin.php:57
601
- #: modules/custom-email/admin/custom-email-admin.php:90
602
- #: modules/custom-email/admin/custom-email-admin.php:136
603
- #: modules/custom-email/admin/custom-email-admin.php:184
604
- #: modules/custom-email/admin/custom-email-admin.php:230
605
- #: modules/custom-email/admin/custom-email-admin.php:276
606
- #: modules/custom-email/admin/custom-email-admin.php:309
607
- #: modules/custom-email/admin/custom-email-admin.php:354
608
- msgid "From E-mail"
609
- msgstr "Füldő e-levélcíme"
610
-
611
- #: modules/custom-email/admin/custom-email-admin.php:60
612
- #: modules/custom-email/admin/custom-email-admin.php:93
613
- #: modules/custom-email/admin/custom-email-admin.php:139
614
- #: modules/custom-email/admin/custom-email-admin.php:187
615
- #: modules/custom-email/admin/custom-email-admin.php:233
616
- #: modules/custom-email/admin/custom-email-admin.php:279
617
- #: modules/custom-email/admin/custom-email-admin.php:312
618
- #: modules/custom-email/admin/custom-email-admin.php:357
619
- msgid "E-mail Format"
620
- msgstr "E-levél formátum"
621
-
622
- #: modules/custom-email/admin/custom-email-admin.php:62
623
- #: modules/custom-email/admin/custom-email-admin.php:95
624
- #: modules/custom-email/admin/custom-email-admin.php:141
625
- #: modules/custom-email/admin/custom-email-admin.php:189
626
- #: modules/custom-email/admin/custom-email-admin.php:235
627
- #: modules/custom-email/admin/custom-email-admin.php:281
628
- #: modules/custom-email/admin/custom-email-admin.php:314
629
- #: modules/custom-email/admin/custom-email-admin.php:359
630
- msgid "Plain Text"
631
- msgstr "Sima szöveg"
632
-
633
- #: modules/custom-email/admin/custom-email-admin.php:63
634
- #: modules/custom-email/admin/custom-email-admin.php:96
635
- #: modules/custom-email/admin/custom-email-admin.php:142
636
- #: modules/custom-email/admin/custom-email-admin.php:190
637
- #: modules/custom-email/admin/custom-email-admin.php:236
638
- #: modules/custom-email/admin/custom-email-admin.php:282
639
- #: modules/custom-email/admin/custom-email-admin.php:315
640
- #: modules/custom-email/admin/custom-email-admin.php:360
641
- msgid "HTML"
642
- msgstr "HTML"
643
-
644
- #: modules/custom-email/admin/custom-email-admin.php:66
645
- #: modules/custom-email/admin/custom-email-admin.php:99
646
- #: modules/custom-email/admin/custom-email-admin.php:145
647
- #: modules/custom-email/admin/custom-email-admin.php:193
648
- #: modules/custom-email/admin/custom-email-admin.php:239
649
- #: modules/custom-email/admin/custom-email-admin.php:285
650
- #: modules/custom-email/admin/custom-email-admin.php:318
651
- #: modules/custom-email/admin/custom-email-admin.php:363
652
- msgid "Subject"
653
- msgstr "Téma"
654
-
655
- #: modules/custom-email/admin/custom-email-admin.php:69
656
- #: modules/custom-email/admin/custom-email-admin.php:102
657
- #: modules/custom-email/admin/custom-email-admin.php:148
658
- #: modules/custom-email/admin/custom-email-admin.php:196
659
- #: modules/custom-email/admin/custom-email-admin.php:242
660
- #: modules/custom-email/admin/custom-email-admin.php:288
661
- #: modules/custom-email/admin/custom-email-admin.php:321
662
- #: modules/custom-email/admin/custom-email-admin.php:366
663
- msgid "Message"
664
- msgstr "Üzenet"
665
-
666
- #: modules/custom-email/admin/custom-email-admin.php:72
667
- #: modules/custom-email/admin/custom-email-admin.php:105
668
- #: modules/custom-email/admin/custom-email-admin.php:151
669
- #: modules/custom-email/admin/custom-email-admin.php:199
670
- #: modules/custom-email/admin/custom-email-admin.php:245
671
- #: modules/custom-email/admin/custom-email-admin.php:291
672
- #: modules/custom-email/admin/custom-email-admin.php:324
673
- #: modules/custom-email/admin/custom-email-admin.php:369
674
- msgid "Available Variables"
675
- msgstr "Használható változók"
676
-
677
- #: modules/custom-email/admin/custom-email-admin.php:77
678
- #: modules/custom-email/admin/custom-email-admin.php:171
679
- #: modules/custom-email/admin/custom-email-admin.php:296
680
- msgid "Admin Notification"
681
- msgstr "Admin értesítés"
682
-
683
- #: modules/custom-email/admin/custom-email-admin.php:80
684
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon new user registration."
685
- msgstr "Ez az e-levél az alább megadott címre vagy címekre (több címet vesszővel választhat el) lesz elküldve új felhasználó regisztrációjakor."
686
-
687
- #: modules/custom-email/admin/custom-email-admin.php:84
688
- #: modules/custom-email/admin/custom-email-admin.php:178
689
- #: modules/custom-email/admin/custom-email-admin.php:303
690
- msgid "To"
691
- msgstr "Címzett"
692
-
693
- #: modules/custom-email/admin/custom-email-admin.php:128
694
- msgid "This e-mail will be sent to a user when they attempt to recover their password."
695
- msgstr "Ezt az e-levelt az a felhasználó kapja, amelyik új jelszót kér."
696
-
697
- #: modules/custom-email/admin/custom-email-admin.php:129
698
- msgid "Please be sure to include the variable %reseturl% or else the user will not be able to recover their password!"
699
- msgstr "Kérem győződjön meg róla, hogy a %reseturl% változó szerelep a levélben, különben a felhasználó nem tudja visszaszerezni a jelszavát!"
700
-
701
- #: modules/custom-email/admin/custom-email-admin.php:174
702
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon user password change."
703
- msgstr "Ez az e-levél az alább megadott e-levél címre vagy címekre (többet vesszővel elválasztva lehet megadni) lesz elküldve felhasználók jelszó módosításakor."
704
-
705
- #: modules/custom-email/admin/custom-email-admin.php:201
706
- #: modules/custom-email/admin/custom-email-admin.php:326
707
- msgid "Disable Admin Notification"
708
- msgstr "Admin értesítés kikapcsolása"
709
-
710
- #: modules/custom-email/admin/custom-email-admin.php:222
711
- msgid "This e-mail will be sent to a new user upon registration when \"E-mail Confirmation\" is checked for \"User Moderation\"."
712
- msgstr "Ez az e-levél új felhasználóknak lesz kiküldve regisztrációkor, ha az \"e-levél megerősítése\" be van jelölve a \"Felhasználó moderáció\" beállításoknál."
713
-
714
- #: modules/custom-email/admin/custom-email-admin.php:223
715
- msgid "Please be sure to include the variable %activateurl% or else the user will not be able to activate their account!"
716
- msgstr "Kérem győződjön meg róla, hogy az %activateurl% változó szerepel a levélben, különben a felhasználó nem tudja aktiválni a hozzáférését!"
717
-
718
- #: modules/custom-email/admin/custom-email-admin.php:268
719
- msgid "This e-mail will be sent to a new user upon admin approval when \"Admin Approval\" is checked for \"User Moderation\"."
720
- msgstr "Ez az e-levél új felhasználóknak lesz kiküldve adminisztátori megerősítéskor."
721
-
722
- #: modules/custom-email/admin/custom-email-admin.php:299
723
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below upon user registration when \"Admin Approval\" is checked for \"User Moderation\"."
724
- msgstr "Ez az e-levél az alább megadott e-levél címre vagy címekre (több címet vesszővel elválasztva lehet megadni) lesz elkülve felhasználók regisztrációjakor, ha a \"Felhasználó moderáció\" beállításoknál az \"Adminisztrátori megerősítés\" be van jelölve."
725
-
726
- #: modules/custom-email/admin/custom-email-admin.php:347
727
- msgid "This e-mail will be sent to a user who is deleted/denied when \"Admin Approval\" is checked for \"User Moderation\" and the user's role is \"Pending\"."
728
- msgstr "Ez az e-levél azon felhasználóknek lesz elküldve, akiket \"függőben\" állapotból az adminisztrátor töröl/visszautasít (ha az \"Adminisztrátori megerősítés\" be van jelölve)."
729
-
730
- #: modules/custom-email/admin/custom-email-admin.php:390
731
- #: templates/profile-form.php:143
732
- #: templates/register-form.php:16
733
- msgid "E-mail"
734
- msgstr "E-levél"
735
-
736
- #: modules/custom-email/admin/custom-email-admin.php:391
737
- msgid "New User"
738
- msgstr "Új felhasználó"
739
-
740
- #: modules/custom-email/admin/custom-email-admin.php:392
741
- msgid "Retrieve Password"
742
- msgstr "Jelszó visszaszerzése"
743
-
744
- #: modules/custom-email/admin/custom-email-admin.php:393
745
- #: templates/resetpass-form.php:26
746
- msgid "Reset Password"
747
- msgstr "Új jelszó kérése"
748
-
749
- #: modules/custom-email/admin/custom-email-admin.php:395
750
- msgid "User Activation"
751
- msgstr "Felhasználó aktiválás"
752
-
753
- #: modules/custom-email/admin/custom-email-admin.php:396
754
- msgid "User Approval"
755
- msgstr "Felhasználó megerősítés"
756
-
757
- #: modules/custom-email/admin/custom-email-admin.php:397
758
- msgid "User Denial"
759
- msgstr "Felhasználó elutasítás"
760
-
761
- #: modules/custom-email/custom-email.php:691
762
- msgid "New user registration on your site %s:"
763
- msgstr "Új regisztráció %s oldalon:"
764
-
765
- #: modules/custom-email/custom-email.php:693
766
- #: modules/user-moderation/user-moderation.php:366
767
- msgid "E-mail: %s"
768
- msgstr "E-levél: %s"
769
-
770
- #: modules/custom-email/custom-email.php:695
771
- msgid "[%s] New User Registration"
772
- msgstr "[%s] Új felhasználó regisztráció"
773
-
774
- #: modules/custom-email/custom-email.php:710
775
- #: modules/user-moderation/admin/user-moderation-admin.php:165
776
- msgid "Password: %s"
777
- msgstr "Jelszó: %s"
778
-
779
- #: modules/custom-email/custom-email.php:713
780
- msgid "[%s] Your username and password"
781
- msgstr "[%s] Felhasználónév és jelszó"
782
-
783
- #: modules/custom-email/custom-email.php:745
784
- msgid "[%s] Password Lost/Changed"
785
- msgstr "[%s] Jelszó elveszett/módosult"
786
-
787
- #: modules/custom-email/custom-email.php:746
788
- msgid "Password Lost and Changed for user: %s"
789
- msgstr "Elveszett jelszó módosítva egy felhasználónak: %s"
790
-
791
- #: modules/custom-passwords/custom-passwords.php:31
792
- #: modules/custom-passwords/custom-passwords.php:63
793
- msgid "Confirm Password:"
794
- msgstr "Jelszó megerősítése:"
795
-
796
- #: modules/custom-passwords/custom-passwords.php:61
797
- msgid "(Must be at least 6 characters.)"
798
- msgstr "(Legalább 6 karakternek kell lennie.)"
799
-
800
- #: modules/custom-passwords/custom-passwords.php:65
801
- msgid "Confirm that you've typed your password correctly."
802
- msgstr "Kérem erősítse meg, hogy a jelszavát helyesen adta meg."
803
-
804
- #: modules/custom-passwords/custom-passwords.php:103
805
- msgid "<strong>ERROR</strong>: Please enter a password."
806
- msgstr "<strong>HIBA</strong>: Kérem adja meg a jelszót."
807
-
808
- #: modules/custom-passwords/custom-passwords.php:106
809
- msgid "<strong>ERROR</strong>: Your passwords do not match."
810
- msgstr "<strong>HIBA</strong>: A jelszavak nem egyeznek."
811
-
812
- #: modules/custom-passwords/custom-passwords.php:109
813
- msgid "<strong>ERROR</strong>: Your password must be at least 6 characters in length."
814
- msgstr "<strong>HIBA</strong>: A jelszónak legalább 6 karakter hosszúnak kell lennie."
815
-
816
- #: modules/custom-passwords/custom-passwords.php:230
817
- msgid "Registration complete. You may now log in."
818
- msgstr "Regisztráció kész. Most már be lehet lépni."
819
-
820
- #: modules/custom-redirection/custom-redirection.php:156
821
- msgid "Redirection"
822
- msgstr "Átirányítás"
823
-
824
- #: modules/custom-redirection/custom-redirection.php:185
825
- msgid "Log in"
826
- msgstr "Belépés"
827
-
828
- #: modules/custom-redirection/custom-redirection.php:187
829
- #: modules/custom-redirection/custom-redirection.php:199
830
- msgid "Default"
831
- msgstr "Alapérték"
832
-
833
- #: modules/custom-redirection/custom-redirection.php:188
834
- msgid "Check this option to send the user to their WordPress Dashboard/Profile."
835
- msgstr "Jelölje be ezt, hogy a felhasználót a vezérlőpultra/profiljához irányítsa."
836
-
837
- #: modules/custom-redirection/custom-redirection.php:189
838
- #: modules/custom-redirection/custom-redirection.php:201
839
- msgid "Referer"
840
- msgstr "Forrás"
841
-
842
- #: modules/custom-redirection/custom-redirection.php:190
843
- msgid "Check this option to send the user back to the page they were visiting before logging in."
844
- msgstr "Jelölje be ezt, ha a felhasználót vissza szeretné irányítani belépés után a belépés előtti oldalra."
845
-
846
- #: modules/custom-redirection/custom-redirection.php:193
847
- #: modules/custom-redirection/custom-redirection.php:205
848
- msgid "Check this option to send the user to a custom location, specified by the textbox above."
849
- msgstr "Jelölje be ezt, ha a felhasználót egy egyedi helyre szeretné irányítani, amit a fenti szövegdobozban ad meg."
850
-
851
- #: modules/custom-redirection/custom-redirection.php:200
852
- msgid "Check this option to send the user to the log in page, displaying a message that they have successfully logged out."
853
- msgstr "Jelölje be ezt, ha a felhasználót a belépési oldalra szeretné irányítani, ahol megjelenik a sikeres kilépés üzenet."
854
-
855
- #: modules/custom-redirection/custom-redirection.php:202
856
- msgid "Check this option to send the user back to the page they were visiting before logging out. (Note: If the previous page being visited was an admin page, this can have unexpected results.)"
857
- msgstr "Jelölje be ezt, hogy a felhasználók kilépés után arra az oldalra legyenek irányítva, ahol kilépés előtt voltak. (Megjegyzés: ha az előző oldal egy admin oldal volt, akkor ennek váratlan eredménye lehet.)"
858
-
859
- #: modules/custom-user-links/admin/custom-user-links-admin.php:140
860
- msgid "User Links"
861
- msgstr "Felhasználói hivatkozások"
862
-
863
- #: modules/custom-user-links/admin/custom-user-links-admin.php:232
864
- #: modules/custom-user-links/admin/custom-user-links-admin.php:255
865
- #: modules/custom-user-links/admin/custom-user-links-admin.php:300
866
- msgid "Title"
867
- msgstr "Cím"
868
-
869
- #: modules/custom-user-links/admin/custom-user-links-admin.php:233
870
- #: modules/custom-user-links/admin/custom-user-links-admin.php:256
871
- #: modules/custom-user-links/admin/custom-user-links-admin.php:304
872
- msgid "URL"
873
- msgstr "URL"
874
-
875
- #: modules/custom-user-links/admin/custom-user-links-admin.php:250
876
- msgid "Add New link:"
877
- msgstr "Új link hozzáadása:"
878
-
879
- #: modules/custom-user-links/admin/custom-user-links-admin.php:266
880
- msgid "Add link"
881
- msgstr "Új link"
882
-
883
- #: modules/custom-user-links/admin/custom-user-links-admin.php:306
884
- msgid "Delete"
885
- msgstr "Törlés"
886
-
887
- #: modules/custom-user-links/admin/custom-user-links-admin.php:307
888
- msgid "Update"
889
- msgstr "Frisítés"
890
-
891
- #: modules/security/admin/security-admin.php:32
892
- #: modules/security/admin/security-admin.php:35
893
- #: modules/user-moderation/admin/user-moderation-admin.php:34
894
- #: modules/user-moderation/admin/user-moderation-admin.php:44
895
- msgid "You can&#8217;t edit that user."
896
- msgstr "Azt a felhasználót nem szerkesztheti"
897
-
898
- #: modules/security/admin/security-admin.php:67
899
- msgid "User locked."
900
- msgstr "Felhasználó zárolva."
901
-
902
- #: modules/security/admin/security-admin.php:69
903
- msgid "User unlocked."
904
- msgstr "Felhasználó zárolás megszüntetve."
905
-
906
- #: modules/security/admin/security-admin.php:92
907
- msgid "Unlock"
908
- msgstr "Zárolás megszüntetése"
909
-
910
- #: modules/security/admin/security-admin.php:94
911
- msgid "Lock"
912
- msgstr "Zárolás"
913
-
914
- #: modules/security/admin/security-admin.php:113
915
- msgid "Security"
916
- msgstr "Biztonság"
917
-
918
- #: modules/security/admin/security-admin.php:132
919
- msgid "Private Site"
920
- msgstr "Privát weboldal"
921
-
922
- #: modules/security/admin/security-admin.php:135
923
- msgid "Require users to be logged in to view site"
924
- msgstr "Bejelentkezés megkövetelése a weboldal megtekintéséhez"
925
-
926
- #: modules/security/admin/security-admin.php:139
927
- msgid "Login Attempts"
928
- msgstr "Belépési kísérletek"
929
-
930
- #: modules/security/admin/security-admin.php:144
931
- msgid "minute(s)"
932
- msgstr "perc"
933
-
934
- #: modules/security/admin/security-admin.php:145
935
- msgid "hour(s)"
936
- msgstr "óra"
937
-
938
- #: modules/security/admin/security-admin.php:146
939
- msgid "day(s)"
940
- msgstr "nap"
941
-
942
- #: modules/security/admin/security-admin.php:169
943
- msgid "After %1$s failed login attempts within %2$s %3$s, lockout the account for %4$s %5$s."
944
- msgstr "%1$s sikertelen belépési kísérlet után (%2$s %3$s belül), hozzáférés kizárása %4$s %5$s másodpercre."
945
-
946
- #: modules/security/security.php:64
947
- #: modules/security/security.php:90
948
- msgid "<strong>ERROR</strong>: This account has been locked because of too many failed login attempts. You may try again in %s."
949
- msgstr "<strong>HIBA</strong>: Ez a hozzáférés zárolva lett a túl sok sikertelen belépési kísérlet miatt. Újra lehet próbálkozni %s múlva."
950
-
951
- #: modules/security/security.php:66
952
- msgid "<strong>ERROR</strong>: This account has been locked."
953
- msgstr "<strong>HIBA</strong>: Ez a hozzáférés zárolva lett."
954
-
955
- #: modules/security/security.php:126
956
- msgid "Failed Login Attempts"
957
- msgstr "Sikertelen belépési kísérletek"
958
-
959
- #: modules/security/security.php:130
960
- msgid "IP Address"
961
- msgstr "IP cím"
962
-
963
- #: modules/security/security.php:131
964
- msgid "Date"
965
- msgstr "Dátum"
966
-
967
- #: modules/security/security.php:134
968
- msgid "Y/m/d g:i:s A"
969
- msgstr "Y-m-d H:i"
970
-
971
- #: modules/security/security.php:139
972
- msgid "%s ago"
973
- msgstr "%s idővel korábban"
974
-
975
- #: modules/security/security.php:141
976
- msgid "Y/m/d"
977
- msgstr "Y-m-d"
978
-
979
- #: modules/themed-profiles/admin/themed-profiles-admin.php:23
980
- #: modules/themed-profiles/admin/themed-profiles-admin.php:42
981
- msgid "Themed Profiles"
982
- msgstr "Profil oldal kinézetei"
983
-
984
- #: modules/themed-profiles/admin/themed-profiles-admin.php:51
985
- msgid "Restrict Admin Access"
986
- msgstr "Rendszergazdai hozzáférés korlátozása (?-ford.)"
987
-
988
- #: modules/themed-profiles/themed-profiles.php:123
989
- #: templates/profile-form.php:182
990
- #: templates/resetpass-form.php:19
991
- msgid "Strength indicator"
992
- msgstr "Erősség jelző"
993
-
994
- #: modules/themed-profiles/themed-profiles.php:124
995
- msgid "Very weak"
996
- msgstr "Nagyon gyenge"
997
-
998
- #: modules/themed-profiles/themed-profiles.php:125
999
- msgid "Weak"
1000
- msgstr "Gyenge"
1001
-
1002
- #. translators: password strength
1003
- #: modules/themed-profiles/themed-profiles.php:127
1004
- msgctxt "password strength"
1005
- msgid "Medium"
1006
- msgstr "Átlagos"
1007
-
1008
- #: modules/themed-profiles/themed-profiles.php:128
1009
- msgid "Strong"
1010
- msgstr "Erős"
1011
-
1012
- #: modules/themed-profiles/themed-profiles.php:138
1013
- msgid "You do not have permission to edit this user."
1014
- msgstr "Nincs jogosultsága a felhasználó szerkesztéséhez."
1015
-
1016
- #: modules/themed-profiles/themed-profiles.php:154
1017
- msgid "Profile updated."
1018
- msgstr "Profil frissítve."
1019
-
1020
- #: modules/themed-profiles/themed-profiles.php:243
1021
- msgid "Your Profile"
1022
- msgstr "Profilja"
1023
-
1024
- #: modules/user-moderation/admin/user-moderation-admin.php:75
1025
- msgid "User approved."
1026
- msgstr "Felhasználó megerősítve."
1027
-
1028
- #: modules/user-moderation/admin/user-moderation-admin.php:77
1029
- msgid "Activation sent."
1030
- msgstr "Aktiváció elküldve."
1031
-
1032
- #: modules/user-moderation/admin/user-moderation-admin.php:105
1033
- msgid "Resend Activation"
1034
- msgstr "Aktiváció újraküldése"
1035
-
1036
- #: modules/user-moderation/admin/user-moderation-admin.php:110
1037
- msgid "Approve"
1038
- msgstr "Megerősítés"
1039
-
1040
- #: modules/user-moderation/admin/user-moderation-admin.php:163
1041
- msgid "You have been approved access to %s"
1042
- msgstr "Megerősítést kapott a hozzáférése ide: %s"
1043
-
1044
- #: modules/user-moderation/admin/user-moderation-admin.php:168
1045
- msgid "[%s] Registration Approved"
1046
- msgstr "[%s] Regisztráció megerősítve"
1047
-
1048
- #: modules/user-moderation/admin/user-moderation-admin.php:203
1049
- msgid "You have been denied access to %s"
1050
- msgstr "A hozzáférés megtagadva ide: %s"
1051
-
1052
- #: modules/user-moderation/admin/user-moderation-admin.php:204
1053
- msgid "[%s] Registration Denied"
1054
- msgstr "[%s] Regisztráció megtagadva"
1055
-
1056
- #: modules/user-moderation/admin/user-moderation-admin.php:226
1057
- msgid "Moderation"
1058
- msgstr "Moderáció"
1059
-
1060
- #: modules/user-moderation/admin/user-moderation-admin.php:242
1061
- msgid "User Moderation"
1062
- msgstr "Felhasználó moderáció"
1063
-
1064
- #: modules/user-moderation/admin/user-moderation-admin.php:245
1065
- msgid "None"
1066
- msgstr "Nincs"
1067
-
1068
- #: modules/user-moderation/admin/user-moderation-admin.php:246
1069
- msgid "Check this option to require no moderation."
1070
- msgstr "Jelölje be ezt, ha nincs szükség moderációra."
1071
-
1072
- #: modules/user-moderation/admin/user-moderation-admin.php:248
1073
- msgid "E-mail Confirmation"
1074
- msgstr "E-levél megerősítés"
1075
-
1076
- #: modules/user-moderation/admin/user-moderation-admin.php:249
1077
- msgid "Check this option to require new users to confirm their e-mail address before they may log in."
1078
- msgstr "Jelölje be ezt, ha az új felhasználóknak meg kell erősíteni az e-levélcímüket belépés előtt."
1079
-
1080
- #: modules/user-moderation/admin/user-moderation-admin.php:251
1081
- msgid "Admin Approval"
1082
- msgstr "Admin megerősítés"
1083
-
1084
- #: modules/user-moderation/admin/user-moderation-admin.php:252
1085
- msgid "Check this option to require new users to be approved by an administrator before they may log in."
1086
- msgstr "Jelölje be ezt, ha azt szeretné, hogy az új felhasználók ne tudjanak belépni administrátori megerősítés előtt."
1087
-
1088
- #: modules/user-moderation/admin/user-moderation-admin.php:269
1089
- msgid "User Moderation is not currently compatible with multisite."
1090
- msgstr "A felhasználói moderáció jelenleg nem kompatibilis a Multisite funkcióval."
1091
-
1092
- #: modules/user-moderation/user-moderation.php:163
1093
- msgid "<strong>ERROR</strong>: You have not yet confirmed your e-mail address. <a href=\"%s\">Resend activation</a>?"
1094
- msgstr "<strong>HIBA</strong>: Még nem erősítette meg az e-levélcímét. <a href=\"%s\">Aktiváció újraküldése</a>?"
1095
-
1096
- #: modules/user-moderation/user-moderation.php:166
1097
- msgid "<strong>ERROR</strong>: Your registration has not yet been approved."
1098
- msgstr "<strong>HIBA</strong>: A regisztrációja még nem lett megerősítve."
1099
-
1100
- #: modules/user-moderation/user-moderation.php:328
1101
- msgid "[%s] Activate Your Account"
1102
- msgstr "[%s] Hozzáférés aktiválása"
1103
-
1104
- #: modules/user-moderation/user-moderation.php:329
1105
- msgid "Thanks for registering at %s! To complete the activation of your account please click the following link: "
1106
- msgstr "Köszönjük, hogy regisztrált a(z) %s oldalon! Az aktiválás befejezéséhez kérjük kattintson az alábbi hivatkozásra:"
1107
-
1108
- #: modules/user-moderation/user-moderation.php:362
1109
- msgid "[%s] New User Awaiting Approval"
1110
- msgstr "[%s] Új felhasználó vár megerősítésre"
1111
-
1112
- #: modules/user-moderation/user-moderation.php:364
1113
- msgid "New user requires approval on your blog %s:"
1114
- msgstr "Új felhasználó vár megerősítésre a blogján %s:"
1115
-
1116
- #: modules/user-moderation/user-moderation.php:367
1117
- msgid "To approve or deny this user:"
1118
- msgstr "Felhasználó megerősítése vagy elutasítása:"
1119
-
1120
- #: modules/user-moderation/user-moderation.php:388
1121
- msgid "Your registration was successful but you must now confirm your email address before you can log in. Please check your email and click on the link provided."
1122
- msgstr "A regisztráció sikeres volt, de meg kell erősíteni az e-levélcímet az első belépés előtt. Kérem nézze meg az e-leveleit és kattintson a küldött hivatkozásra."
1123
-
1124
- #: modules/user-moderation/user-moderation.php:390
1125
- msgid "Your registration was successful but you must now be approved by an administrator before you can log in. You will be notified by e-mail once your account has been reviewed."
1126
- msgstr "A regisztráció sikeres volt, de az adminisztátornak meg kell erősítenie azt az első belépés előtt. E-levélben kap majd értesítést, ha ez megtörtént."
1127
-
1128
- #: modules/user-moderation/user-moderation.php:393
1129
- msgid "Your account has been activated. You may now log in."
1130
- msgstr "A hozzáférése aktiválva lett. Máris beléphet."
1131
-
1132
- #: modules/user-moderation/user-moderation.php:395
1133
- msgid "Your account has been activated. Please check your e-mail for your password."
1134
- msgstr "A hozzáférése aktiválva lett. A jelszavát e-levélben kapta meg."
1135
-
1136
- #: modules/user-moderation/user-moderation.php:397
1137
- msgid "<strong>ERROR</strong>: Sorry, that key does not appear to be valid."
1138
- msgstr "<strong>HIBA</strong>: Bocsi, ez a kulcs érvénytelennek tűnik."
1139
-
1140
- #: modules/user-moderation/user-moderation.php:400
1141
- msgid "<strong>ERROR</strong>: Sorry, the activation e-mail could not be sent."
1142
- msgstr "<strong>HIBA</strong>: Bocsi, az aktivációs e-levelet nem sikerült elküldeni."
1143
-
1144
- #: modules/user-moderation/user-moderation.php:402
1145
- msgid "The activation e-mail has been sent to the e-mail address with which you registered. Please check your email and click on the link provided."
1146
- msgstr "Az aktivációs e-levél ki lett küldve az e-levélcímre, amivel regisztrált. Kérem nézze meg e-leveleit, és kattintson a küldött hivatkozásra."
1147
-
1148
- #: templates/login-form.php:12
1149
- #: templates/profile-form.php:91
1150
- #: templates/register-form.php:12
1151
- msgid "Username"
1152
- msgstr "Felhasználónév"
1153
-
1154
- #: templates/login-form.php:16
1155
- msgid "Password"
1156
- msgstr "Jelszó"
1157
-
1158
- #: templates/login-form.php:25
1159
- msgid "Remember Me"
1160
- msgstr "Emlékezzen rám"
1161
-
1162
- #: templates/lostpassword-form.php:12
1163
- msgid "Username or E-mail:"
1164
- msgstr "Felhasználónév vagy jelszó"
1165
-
1166
- #: templates/lostpassword-form.php:20
1167
- msgid "Get New Password"
1168
- msgstr "Új jelszó kérése"
1169
-
1170
- #: templates/ms-signup-another-blog-form.php:7
1171
- msgid "Get <em>another</em> %s site in seconds"
1172
- msgstr "Legyen <em>egy másik</em> %shonlapja másodperceken belül"
1173
-
1174
- #: templates/ms-signup-another-blog-form.php:10
1175
- msgid "There was a problem, please correct the form below and try again."
1176
- msgstr "Hiba keletkezett, kérlek javítsd ki a fenti űrlapot, és próbáld újra."
1177
-
1178
- #: templates/ms-signup-another-blog-form.php:13
1179
- msgid "Welcome back, %s. By filling out the form below, you can <strong>add another site to your account</strong>. There is no limit to the number of sites you can have, so create to your heart&#8217;s content, but write responsibly!"
1180
- msgstr "Üdvözlet ismét, kedves %s! Az űrlap kitöltésével <strong>további honlapot lehet hozzáadni a felhasználói fiókhoz</strong>. Nincs korlátozás arra vonatkozólag, hogy hány honlapja lehet valakinek.<strong> Alkoss szíved szerint, de gondozd felelősségteljesen!</strong>"
1181
-
1182
- #: templates/ms-signup-another-blog-form.php:18
1183
- msgid "Sites you are already a member of:"
1184
- msgstr "Honlapok, melyeknek már tagja:"
1185
-
1186
- #: templates/ms-signup-another-blog-form.php:27
1187
- msgid "If you&#8217;re not going to use a great site domain, leave it for a new user. Now have at it!"
1188
- msgstr "Ha nem szeretnénk használni egy remek honlap domain nevet, akkor legyen szívünk meghagyni más felhasználó számára! De most még szabad... :)"
1189
-
1190
- #: templates/ms-signup-another-blog-form.php:33
1191
- #: templates/ms-signup-blog-form.php:17
1192
- msgid "Site Name:"
1193
- msgstr "Honlap neve:"
1194
-
1195
- #: templates/ms-signup-another-blog-form.php:35
1196
- #: templates/ms-signup-blog-form.php:19
1197
- msgid "Site Domain:"
1198
- msgstr "Honlap domain:"
1199
-
1200
- #: templates/ms-signup-another-blog-form.php:52
1201
- #: templates/ms-signup-blog-form.php:36
1202
- msgid "sitename"
1203
- msgstr "honlapnév"
1204
-
1205
- #: templates/ms-signup-another-blog-form.php:54
1206
- #: templates/ms-signup-blog-form.php:38
1207
- msgid "domain"
1208
- msgstr "domain"
1209
-
1210
- #: templates/ms-signup-another-blog-form.php:55
1211
- #: templates/ms-signup-blog-form.php:39
1212
- msgid "Your address will be %s."
1213
- msgstr "Honlap domain:"
1214
-
1215
- #: templates/ms-signup-another-blog-form.php:55
1216
- #: templates/ms-signup-blog-form.php:39
1217
- msgid "Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!"
1218
- msgstr "Legalább 4 karakternek kell lennie, csak betűket és számokat tartalmazhat. Nem lehet megváltoztatni, szóval körültekintően kell választani."
1219
-
1220
- #: templates/ms-signup-another-blog-form.php:58
1221
- #: templates/ms-signup-blog-form.php:42
1222
- msgid "Site Title:"
1223
- msgstr "Honlap címe:"
1224
-
1225
- #: templates/ms-signup-another-blog-form.php:66
1226
- #: templates/ms-signup-blog-form.php:50
1227
- msgid "Privacy:"
1228
- msgstr "Titoktartás:"
1229
-
1230
- #: templates/ms-signup-another-blog-form.php:67
1231
- #: templates/ms-signup-blog-form.php:51
1232
- msgid "Allow my site to appear in search engines like Google, Technorati, and in public listings around this network."
1233
- msgstr "Engedélyezem, hogy a honlapom megjelenjen a keresőkben, mint amilyen a Google vagy a Technorati, és a nyilvános listákban is."
1234
-
1235
- #: templates/ms-signup-another-blog-form.php:71
1236
- #: templates/ms-signup-blog-form.php:55
1237
- msgid "Yes"
1238
- msgstr "Igen"
1239
-
1240
- #: templates/ms-signup-another-blog-form.php:75
1241
- #: templates/ms-signup-blog-form.php:59
1242
- msgid "No"
1243
- msgstr "Nem"
1244
-
1245
- #: templates/ms-signup-another-blog-form.php:85
1246
- msgid "Create Site"
1247
- msgstr "Honlap létrehozása"
1248
-
1249
- #: templates/ms-signup-blog-form.php:69
1250
- msgid "Signup"
1251
- msgstr "Elfogadom"
1252
-
1253
- #: templates/ms-signup-user-form.php:7
1254
- msgid "Get your own %s account in seconds"
1255
- msgstr "Szerezd meg a saját %s felhasználói fiókod másodpercek alatt"
1256
-
1257
- #: templates/ms-signup-user-form.php:22
1258
- msgid "(Must be at least 4 characters, letters and numbers only.)"
1259
- msgstr "(Legalább 4 karakter hosszúnak kell lennie, csak betűket és számokat tartalmazhat)"
1260
-
1261
- #: templates/ms-signup-user-form.php:24
1262
- msgid "Email&nbsp;Address:"
1263
- msgstr "E-mail&nbsp;cím"
1264
-
1265
- #: templates/ms-signup-user-form.php:30
1266
- msgid "We send your registration email to this address. (Double-check your email address before continuing.)"
1267
- msgstr "A regisztrációs emailt erre a címre küldjük. (A folytatás előtt kétszer is ellenőrizzük az email címet!)"
1268
-
1269
- #: templates/ms-signup-user-form.php:47
1270
- msgid "Gimme a site!"
1271
- msgstr "Kérek egy honlapot!"
1272
-
1273
- #: templates/ms-signup-user-form.php:50
1274
- msgid "Just a username, please."
1275
- msgstr "Csak felhasználónevet kérek."
1276
-
1277
- #: templates/ms-signup-user-form.php:54
1278
- msgid "Next"
1279
- msgstr "Következő "
1280
-
1281
- #: templates/profile-form.php:26
1282
- msgid "Personal Options"
1283
- msgstr "Személyes beállítások"
1284
-
1285
- #: templates/profile-form.php:31
1286
- msgid "Visual Editor"
1287
- msgstr "Vizuális szerkesztő"
1288
-
1289
- #: templates/profile-form.php:32
1290
- msgid "Disable the visual editor when writing"
1291
- msgstr "Szövegszerkesztő kikapcsolása bejegyzés írásakor"
1292
-
1293
- #: templates/profile-form.php:37
1294
- msgid "Admin Color Scheme"
1295
- msgstr "Admin színséma"
1296
-
1297
- #: templates/profile-form.php:44
1298
- msgid "Keyboard Shortcuts"
1299
- msgstr "Gyorsbillentyűk"
1300
-
1301
- #: templates/profile-form.php:45
1302
- msgid "Enable keyboard shortcuts for comment moderation."
1303
- msgstr "Gyorsbillentyűk bekapcsolása a hozzászólás moderálásához"
1304
-
1305
- #: templates/profile-form.php:45
1306
- msgid "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">More information</a>"
1307
- msgstr "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">További információ</a> (angol)"
1308
-
1309
- #: templates/profile-form.php:51
1310
- #: templates/profile-form.php:54
1311
- msgid "Toolbar"
1312
- msgstr "Eszköztár"
1313
-
1314
- #: templates/profile-form.php:57
1315
- msgid "Show Toolbar when viewing site"
1316
- msgstr "Eszköztár mutatása az oldal megtekintésekor"
1317
-
1318
- #: templates/profile-form.php:63
1319
- #: templates/profile-form.php:66
1320
- msgid "Show Admin Bar"
1321
- msgstr "Mutassa az Admin sávot"
1322
-
1323
- #. translators: Show admin bar when viewing site
1324
- #: templates/profile-form.php:69
1325
- msgid "when viewing site"
1326
- msgstr "honlap megtekintésekor"
1327
-
1328
- #. translators: Show admin bar in dashboard
1329
- #: templates/profile-form.php:74
1330
- msgid "in dashboard"
1331
- msgstr "a vezérlőpulton"
1332
-
1333
- #: templates/profile-form.php:87
1334
- msgid "Name"
1335
- msgstr "Név"
1336
-
1337
- #: templates/profile-form.php:92
1338
- msgid "Your username cannot be changed."
1339
- msgstr "A felhasználónevet nem lehet módosítani."
1340
-
1341
- #: templates/profile-form.php:96
1342
- msgid "First name"
1343
- msgstr "Keresztnév"
1344
-
1345
- #: templates/profile-form.php:101
1346
- msgid "Last name"
1347
- msgstr "Családnév"
1348
-
1349
- #: templates/profile-form.php:106
1350
- msgid "Nickname"
1351
- msgstr "Becenév"
1352
-
1353
- #: templates/profile-form.php:106
1354
- #: templates/profile-form.php:143
1355
- msgid "(required)"
1356
- msgstr "(szükséges)"
1357
-
1358
- #: templates/profile-form.php:111
1359
- msgid "Display name publicly as"
1360
- msgstr "Név publikus megjelenítése"
1361
-
1362
- #: templates/profile-form.php:139
1363
- msgid "Contact Info"
1364
- msgstr "Kapcsolat infó"
1365
-
1366
- #: templates/profile-form.php:148
1367
- msgid "Website"
1368
- msgstr "Weboldal"
1369
-
1370
- #: templates/profile-form.php:165
1371
- msgid "About Yourself"
1372
- msgstr "Önmagáról"
1373
-
1374
- #: templates/profile-form.php:169
1375
- msgid "Biographical Info"
1376
- msgstr "Önéletrajzi infó"
1377
-
1378
- #: templates/profile-form.php:171
1379
- msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
1380
- msgstr "Adjon meg egy kis életrajzi információt a profiljához. Ez nyilánosan megjelenhet."
1381
-
1382
- #: templates/profile-form.php:179
1383
- msgid "New Password"
1384
- msgstr "Új jelszó"
1385
-
1386
- #: templates/profile-form.php:180
1387
- msgid "If you would like to change the password type a new one. Otherwise leave this blank."
1388
- msgstr "Ha módosítani kívánja a jelszavát, akkor adjon meg egy újat. Egyébként hagyja üresen."
1389
-
1390
- #: templates/profile-form.php:181
1391
- msgid "Type your new password again."
1392
- msgstr "Írja be újra az új jelszavát."
1393
-
1394
- #: templates/profile-form.php:183
1395
- #: templates/resetpass-form.php:20
1396
- msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
1397
- msgstr "Tipp: A jelszó legyen legalább hét karakter hosszú. Legyen benne kis- és nagybetű, szám és szimbólum is, pl: ! ? $ % ^ ( ) stb."
1398
-
1399
- #: templates/profile-form.php:197
1400
- msgid "Additional Capabilities"
1401
- msgstr "További lehetőségek"
1402
-
1403
- #: templates/profile-form.php:216
1404
- msgid "Update Profile"
1405
- msgstr "Profil frissítése"
1406
-
1407
- #: templates/register-form.php:23
1408
- msgid "A password will be e-mailed to you."
1409
- msgstr "A jelszót e-levélben fogja megkapni."
1410
-
1411
- #: templates/resetpass-form.php:12
1412
- msgid "New password"
1413
- msgstr "Új jelszó"
1414
-
1415
- #: templates/resetpass-form.php:16
1416
- msgid "Confirm new password"
1417
- msgstr "Az új jelszó megerősítése"
1418
-
1419
- #. Plugin URI of the plugin/theme
1420
- msgid "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/"
1421
- msgstr "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/"
1422
-
1423
- #. Description of the plugin/theme
1424
- msgid "Themes the WordPress login, registration and forgot password pages according to your theme."
1425
- msgstr "A WordPress belépést, regisztrációt és elvesztett jelszót teszi témázhatóvá az aktuális téma szerint."
1426
-
1427
- #. Author of the plugin/theme
1428
- msgid "Jeff Farthing"
1429
- msgstr "Jeff Farthing"
1430
-
1431
- #. Author URI of the plugin/theme
1432
- msgid "http://www.jfarthing.com"
1433
- msgstr "http://www.jfarthing.com"
1434
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
language/theme-my-login-it_IT.mo DELETED
Binary file
language/theme-my-login-it_IT.po DELETED
@@ -1,1434 +0,0 @@
1
- # Copyright (C) 2012 Theme My Login
2
- # This file is distributed under the same license as the Theme My Login package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Theme My Login 6.2\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/theme-my-login\n"
7
- "POT-Creation-Date: 2012-03-08 16:19:05+00:00\n"
8
- "PO-Revision-Date: 2012-03-12 09:35-0500\n"
9
- "Last-Translator: Jeff Farthing <jeff@jfarthing.com>\n"
10
- "Language-Team: Paolo <paolo@lyrica.it>\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-Language: Italian\n"
15
- "X-Poedit-Country: ITALY\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
-
18
- #. #-#-#-#-# plugin.pot (Theme My Login 6.2) #-#-#-#-#
19
- #. Plugin Name of the plugin/theme
20
- #: admin/class-theme-my-login-admin.php:42
21
- #: admin/class-theme-my-login-admin.php:43
22
- #: includes/class-theme-my-login-widget.php:24
23
- msgid "Theme My Login"
24
- msgstr "Theme My Login"
25
-
26
- #: admin/class-theme-my-login-admin.php:81
27
- msgid "ERROR: The module \"%1$s\" could not be activated (%2$s)."
28
- msgstr "ERRORE: il modulo \"$%1$s\" non pu&#242; essere attivato (%2$s)."
29
-
30
- #: admin/class-theme-my-login-admin.php:103
31
- msgid "NOTICE:"
32
- msgstr "AVVISO:"
33
-
34
- #: admin/class-theme-my-login-admin.php:104
35
- msgid "Now that you have activated Theme My Login, please <a href=\"%s\">visit the settings page</a> and familiarize yourself with all of the available options."
36
- msgstr "Adesso che hai attivato Theme My Login, per favore <a href=\"%s\">visita la pagina di configurazione</a> e prova tu stesso le opzioni disponibili."
37
-
38
- #: admin/class-theme-my-login-admin.php:106
39
- msgid "Take me to the settings page"
40
- msgstr "Portami alla pagina di configurazione"
41
-
42
- #: admin/class-theme-my-login-admin.php:119
43
- msgid "You can now login with your e-mail address or username! Try it out!"
44
- msgstr "Adesso puoi effettuare il login con il tuo indirizzo e-mail o il tuo username! Prova!"
45
-
46
- #: admin/class-theme-my-login-admin.php:120
47
- msgid "Theme My Login now utilizes a module system. Modules are similar to WordPress plugins. Each module extends the default functionality of Theme My Login. <a rel=\"tml-options\" href=\"#tml-options-modules\">Click here</a> to get started with modules now."
48
- msgstr "Theme My Login adesso utilizza un modulo di sistema. I moduli sono simili ai plugins di Wordpress. Ogni modulo estende le funzionalità di default di Theme My Login. <a rel=\"tml-options\" href=\"#tml-options-modules\">Clicca qui</a> per iniziare con i moduli adesso."
49
-
50
- #: admin/class-theme-my-login-admin.php:121
51
- msgid "Theme My Login now allows custom forms. You can create your own form template(s) by copying the default version(s) from \"theme-my-login/templates\" to your current theme directory. Try it out!"
52
- msgstr "Theme My Login adesso permette di avere form personalizzati. Puoi creare il tuo form template copiando la versione di default da \"theme-my-login/templates\" alla tua directory del tema. Prova!"
53
-
54
- #: admin/class-theme-my-login-admin.php:122
55
- msgid "You can maintain your stylesheet changes between upgrades. Just simply copy the file \"theme-my-login/theme-my-login.css\" to your current theme directory and edit it as you please!"
56
- msgstr "Per mantenere le tue modifiche in seguito ad aggiornamenti, copia il file \"theme-my-login/theme-my-login.css\" nella directory del tuo tema."
57
-
58
- #: admin/class-theme-my-login-admin.php:123
59
- msgid "Theme My Login provides a shortcode that you can use within your posts with multiple parameters to customize the form. Visit the <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Theme My Login Documentation</a> for usage instructions."
60
- msgstr "Theme My Login prevede un shortcode che puoi usare all'interno dei tuoi post con parametri multipli per personalizzare il form. Visita <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Theme My Login Documentation</a> per le istruzione sull'uso."
61
-
62
- #: admin/class-theme-my-login-admin.php:124
63
- msgid "Jeff is <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">available for hire</a>!"
64
- msgstr "Jeff &#232; <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">disponibile per un impiego</a>!"
65
-
66
- #: admin/class-theme-my-login-admin.php:128
67
- msgid "Did You Know?"
68
- msgstr "Lo sapevi?"
69
-
70
- #: admin/class-theme-my-login-admin.php:177
71
- msgid "General"
72
- msgstr "Generale"
73
-
74
- #: admin/class-theme-my-login-admin.php:178
75
- msgid "Basic"
76
- msgstr "Base"
77
-
78
- #: admin/class-theme-my-login-admin.php:179
79
- #: admin/class-theme-my-login-admin.php:319
80
- msgid "Modules"
81
- msgstr "Moduli"
82
-
83
- #: admin/class-theme-my-login-admin.php:181
84
- msgid "Permalinks"
85
- msgstr "Permalink"
86
-
87
- #: admin/class-theme-my-login-admin.php:188
88
- msgid "Theme My Login Settings"
89
- msgstr "Configurazione Theme My Login"
90
-
91
- #: admin/class-theme-my-login-admin.php:194
92
- #: admin/class-theme-my-login-admin.php:254
93
- msgid "Save Changes"
94
- msgstr "Salva le modifiche"
95
-
96
- #: admin/class-theme-my-login-admin.php:271
97
- msgid "Page ID"
98
- msgstr "ID pagina"
99
-
100
- #: admin/class-theme-my-login-admin.php:274
101
- msgid "This should be the ID of the WordPress page that includes the [theme-my-login] shortcode. By default, this page is titled \"Login\"."
102
- msgstr "Questo dovrebbe essere l&#39;ID della pagina di WordPress che include il shortcut di [theme-my-login]. Per default, questa pagina &#232; intitolata \"Login\"."
103
-
104
- #: admin/class-theme-my-login-admin.php:278
105
- msgid "Pagelist"
106
- msgstr "Lista pagine"
107
-
108
- #: admin/class-theme-my-login-admin.php:281
109
- msgid "Show Page In Pagelist"
110
- msgstr "Visualizza la pagina nella lista pagine"
111
-
112
- #: admin/class-theme-my-login-admin.php:282
113
- msgid "Enable this setting to add login/logout links to the pagelist generated by functions like wp_list_pages() and wp_page_menu()."
114
- msgstr "Abilita questa voce per aggiungere il link login/logout alla lista delle pagine generata da funzioni come wp_list_pages() e wp_page_menu()."
115
-
116
- #: admin/class-theme-my-login-admin.php:286
117
- msgid "Stylesheet"
118
- msgstr "Foglio di stile"
119
-
120
- #: admin/class-theme-my-login-admin.php:289
121
- msgid "Enable \"theme-my-login.css\""
122
- msgstr "Abilita \"theme-my-login.css\""
123
-
124
- #: admin/class-theme-my-login-admin.php:290
125
- msgid "In order to keep changes between upgrades, you can store your customized \"theme-my-login.css\" in your current theme directory."
126
- msgstr "Per mantenere le tue modifiche in seguito ad aggiornamenti, puoi salvare le tue impostazioni personali \"theme-my-login.css\" nella tua theme directory."
127
-
128
- #: admin/class-theme-my-login-admin.php:294
129
- msgid "E-mail Login"
130
- msgstr "e-mail login"
131
-
132
- #: admin/class-theme-my-login-admin.php:297
133
- msgid "Enable e-mail address login"
134
- msgstr "Abilita il login con indirizzo e-mail"
135
-
136
- #: admin/class-theme-my-login-admin.php:298
137
- msgid "Allows users to login using their e-mail address in place of their username."
138
- msgstr "Permetti agli utenti di effettuare il login usando il loro indirizzo e-mail al posto dello username."
139
-
140
- #: admin/class-theme-my-login-admin.php:323
141
- msgid "Enable %s"
142
- msgstr "Abilita %s"
143
-
144
- #: admin/class-theme-my-login-admin.php:325
145
- msgid "No modules found."
146
- msgstr "Nessun modulo trovato."
147
-
148
- #: admin/class-theme-my-login-admin.php:343
149
- #: includes/class-theme-my-login-widget.php:87
150
- msgid "Login"
151
- msgstr "Login"
152
-
153
- #: admin/class-theme-my-login-admin.php:344
154
- #: includes/class-theme-my-login-template.php:141
155
- #: includes/class-theme-my-login-widget.php:87
156
- #: templates/register-form.php:25
157
- msgid "Register"
158
- msgstr "Registrati"
159
-
160
- #: admin/class-theme-my-login-admin.php:345
161
- #: includes/class-theme-my-login-template.php:147
162
- #: includes/class-theme-my-login-widget.php:87
163
- msgid "Lost Password"
164
- msgstr "Recupera password"
165
-
166
- #: admin/class-theme-my-login-admin.php:475
167
- msgid "One of the modules is invalid."
168
- msgstr "Uno dei plugin non &#232; valido."
169
-
170
- #: admin/class-theme-my-login-admin.php:531
171
- msgid "Invalid module path."
172
- msgstr "Percorso del plugin non valido"
173
-
174
- #: admin/class-theme-my-login-admin.php:533
175
- msgid "Module file does not exist."
176
- msgstr "Il file del plugin non esiste."
177
-
178
- #: admin/class-theme-my-login-admin.php:537
179
- msgid "The module does not have a valid header."
180
- msgstr "Il plugin non ha un header valido."
181
-
182
- #: includes/class-theme-my-login-ms-signup.php:117
183
- msgctxt "Multisite active signup type"
184
- msgid "all"
185
- msgstr "tutti"
186
-
187
- #: includes/class-theme-my-login-ms-signup.php:118
188
- msgctxt "Multisite active signup type"
189
- msgid "none"
190
- msgstr "nessuno"
191
-
192
- #: includes/class-theme-my-login-ms-signup.php:119
193
- msgctxt "Multisite active signup type"
194
- msgid "blog"
195
- msgstr "blog"
196
-
197
- #: includes/class-theme-my-login-ms-signup.php:120
198
- msgctxt "Multisite active signup type"
199
- msgid "user"
200
- msgstr "utente"
201
-
202
- #: includes/class-theme-my-login-ms-signup.php:123
203
- msgid "Greetings Site Administrator! You are currently allowing &#8220;%s&#8221; registrations. To change or disable registration go to your <a href=\"%s\">Options page</a>."
204
- msgstr "Salve amministratore del sito! Attualmente stai permettendo &#8220;%s&#8221; registrazioni. Per cambiare o disabilitare le registrazioni vai alla tua <a href=\"%s\">Pagina delle opzioni</a>."
205
-
206
- #: includes/class-theme-my-login-ms-signup.php:129
207
- msgid "Registration has been disabled."
208
- msgstr "La registrazione è stata disabilitata."
209
-
210
- #: includes/class-theme-my-login-ms-signup.php:131
211
- msgid "You must first <a href=\"%s\">log in</a>, and then you can create a new site."
212
- msgstr "Occorre aver eseguito prima il <a href=\"%s\">login</a> e dopo sarà possibile creare un nuovo blog."
213
-
214
- #: includes/class-theme-my-login-ms-signup.php:155
215
- msgid "%s is your new username"
216
- msgstr "%s è il nuovo nome utente"
217
-
218
- #: includes/class-theme-my-login-ms-signup.php:156
219
- msgid "But, before you can start using your new username, <strong>you must activate it</strong>."
220
- msgstr "Ma prima di poter inziare ad utilizzare il proprio nome utente <strong>bisogna attivarlo</strong>."
221
-
222
- #: includes/class-theme-my-login-ms-signup.php:157
223
- msgid "Check your inbox at <strong>%1$s</strong> and click the link given."
224
- msgstr "Controlla la tua casella di posta su <strong>%1$s</strong> e clicca sul link indicato. "
225
-
226
- #: includes/class-theme-my-login-ms-signup.php:158
227
- msgid "If you do not activate your username within two days, you will have to sign up again."
228
- msgstr "Se non si attiva il proprio nome utente entro due giorni, occorrerà registrarsi nuovamente."
229
-
230
- #: includes/class-theme-my-login-ms-signup.php:162
231
- msgid "User registration has been disabled."
232
- msgstr "La registrazione utenti è disabilitata."
233
-
234
- #: includes/class-theme-my-login-ms-signup.php:194
235
- msgid "Congratulations! Your new site, %s, is almost ready."
236
- msgstr "Congratulazioni! Il tuo nuovo blog, %s, è quasi pronto."
237
-
238
- #: includes/class-theme-my-login-ms-signup.php:196
239
- msgid "But, before you can start using your site, <strong>you must activate it</strong>."
240
- msgstr "Ma, prima di poter iniziare ad utilizzare queso sito <strong>occorre attivarlo</strong>."
241
-
242
- #: includes/class-theme-my-login-ms-signup.php:197
243
- msgid "Check your inbox at <strong>%s</strong> and click the link given."
244
- msgstr "Controlla la propria casella di posta su <strong>%s</strong> e fare clic sul link fornito. "
245
-
246
- #: includes/class-theme-my-login-ms-signup.php:198
247
- msgid "If you do not activate your site within two days, you will have to sign up again."
248
- msgstr "Se non si attiva il proprio sito entro due giorni si dovrà ripetere la sottoscrizione."
249
-
250
- #: includes/class-theme-my-login-ms-signup.php:199
251
- msgid "Still waiting for your email?"
252
- msgstr "Si sta ancora aspettando l'email?"
253
-
254
- #: includes/class-theme-my-login-ms-signup.php:201
255
- msgid "If you haven&#8217;t received your email yet, there are a number of things you can do:"
256
- msgstr "Se non si è ancora ricevuta l'email, vi sono una serie di cose che è possibile fare:"
257
-
258
- #: includes/class-theme-my-login-ms-signup.php:203
259
- msgid "Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control."
260
- msgstr "Attendere un po'. Alcune volte la consegna delle email può venir ritardata da processi al di fuori del nostro controllo."
261
-
262
- #: includes/class-theme-my-login-ms-signup.php:204
263
- msgid "Check the junk or spam folder of your email client. Sometime emails wind up there by mistake."
264
- msgstr "Controllare la cartella Cestino o Spam del proprio programma email. A volte le email finiscono lì per errore."
265
-
266
- #: includes/class-theme-my-login-ms-signup.php:205
267
- msgid "Have you entered your email correctly? You have entered %s, if it&#8217;s incorrect, you will not receive your email."
268
- msgstr "Si è inserito un indirizzo email corretto? Pensiamo sia %s ma se lo si è immesso sbagliato non si riceverà nulla."
269
-
270
- #: includes/class-theme-my-login-ms-signup.php:211
271
- msgid "Site registration has been disabled."
272
- msgstr "La registrazione dei blog è stata disabilitata."
273
-
274
- #: includes/class-theme-my-login-ms-signup.php:235
275
- msgid "The site %s is yours."
276
- msgstr "The sito %s è di vostra proprietà."
277
-
278
- #: includes/class-theme-my-login-ms-signup.php:237
279
- msgid "<a href=\"http://%1$s\">http://%2$s</a> is your new site. <a href=\"%3$s\">Log in</a> as &#8220;%4$s&#8221; using your existing password."
280
- msgstr "<a href=\"http://%1$s\">http://%2$s</a> è il vostro nuovo blog. Effettuare la <a href=\"%3$s\">Login</a> come \"%4$s\" utilizzando la propria password."
281
-
282
- #: includes/class-theme-my-login-ms-signup.php:253
283
- msgid "Sorry, new registrations are not allowed at this time."
284
- msgstr "Al momento non si accettano nuove registrazioni."
285
-
286
- #: includes/class-theme-my-login-ms-signup.php:255
287
- msgid "You are logged in already. No need to register again!"
288
- msgstr "Si è già fatto il login. Non serve registrarsi nuovamente!"
289
-
290
- #: includes/class-theme-my-login-ms-signup.php:261
291
- msgid "<p><em>The site you were looking for, <strong>%s</strong> does not exist, but you can create it now!</em></p>"
292
- msgstr "<p><em>Il blog che si sta cercando, <strong>%s</strong> non esiste ma è possibile crearlo ora!</em></p>"
293
-
294
- #: includes/class-theme-my-login-ms-signup.php:263
295
- msgid "<p><em>The site you were looking for, <strong>%s</strong>, does not exist.</em></p>"
296
- msgstr "<p><em>Il sito che si sta cercando, <strong>%s</strong> non esiste.</em></p>"
297
-
298
- #: includes/class-theme-my-login-ms-signup.php:402
299
- msgid "Activation Key Required"
300
- msgstr "&Egrave; richiesta una chiave di attivazione"
301
-
302
- #: includes/class-theme-my-login-ms-signup.php:405
303
- msgid "Activation Key:"
304
- msgstr "Chiave di attivazione:"
305
-
306
- #: includes/class-theme-my-login-ms-signup.php:409
307
- #: includes/class-theme-my-login-ms-signup.php:481
308
- msgid "Activate"
309
- msgstr "Attiva"
310
-
311
- #: includes/class-theme-my-login-ms-signup.php:421
312
- #: includes/class-theme-my-login-ms-signup.php:441
313
- msgid "Your account is now active!"
314
- msgstr "Il tuo account è ora attivo!"
315
-
316
- #: includes/class-theme-my-login-ms-signup.php:425
317
- msgid "Your account has been activated. You may now <a href=\"%1$s\">login</a> to the site using your chosen username of &#8220;%2$s&#8221;. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%4$s\">reset your password</a>."
318
- msgstr "L'account è stato attivato. &Egrave; ora possibile effettuare il <a href=\"%1$s\">login</a> al sito utilizzando il nome utente &#8220;%2$s&#8221;. Verificare la propria casella mail presso %3$s per le istruzioni di login e per la propria password. Se non si riceve alcuna email, verificare la cartella junk o spam. Se entro un'ora non si è ancora ricevuta alcuna email è possibile <a href=\"%4$s\">azzerare la propria password</a>."
319
-
320
- #: includes/class-theme-my-login-ms-signup.php:427
321
- msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a>."
322
- msgstr "Il sito su <a href=\"%1$s\">%2$s</a> è attivo. Ora è possibile effettuare la login al sito utilizzando il nome utente scelto che è \"%3$s\". Per favore controllare la propria casella postale su %4$s per la password e le istruzioni per il login. Se non si ricevesse alcuna email, controllare la cartella junk o spam. Se si continua a non ricevere alcuna email nella prossima ora è possibile <a href=\"%5$s\">azzerare la propria password</a>.</p>"
323
-
324
- #: includes/class-theme-my-login-ms-signup.php:432
325
- msgid "An error occurred during the activation"
326
- msgstr "Si è verificato un errore durante l'attivazione."
327
-
328
- #: includes/class-theme-my-login-ms-signup.php:444
329
- #: templates/ms-signup-user-form.php:16
330
- msgid "Username:"
331
- msgstr "Nome utente:"
332
-
333
- #: includes/class-theme-my-login-ms-signup.php:445
334
- #: modules/custom-passwords/custom-passwords.php:29
335
- #: modules/custom-passwords/custom-passwords.php:56
336
- msgid "Password:"
337
- msgstr "Password:"
338
-
339
- #: includes/class-theme-my-login-ms-signup.php:449
340
- msgid "Your account is now activated. <a href=\"%1$s\">View your site</a> or <a href=\"%2$s\">Login</a>"
341
- msgstr "Il tuo account è stato attivato. <a href=\"%1$s\">Vedi il sito</a> o <a href=\"%2$s\">Entra</a>"
342
-
343
- #: includes/class-theme-my-login-ms-signup.php:451
344
- msgid "Your account is now activated. <a href=\"%1$s\">Login</a> or go back to the <a href=\"%2$s\">homepage</a>."
345
- msgstr "L'account è stato attivato. <a href=\"%1$s\">Entrare</a> o tornare alla <a href=\"%2$s\">homepage</a>."
346
-
347
- #: includes/class-theme-my-login-template.php:137
348
- msgid "Welcome, %s"
349
- msgstr "Benvenuto, %s"
350
-
351
- #: includes/class-theme-my-login-template.php:151
352
- #: includes/class-theme-my-login.php:540
353
- #: templates/login-form.php:28
354
- msgid "Log In"
355
- msgstr "Log In"
356
-
357
- #: includes/class-theme-my-login-template.php:315
358
- #: modules/custom-user-links/custom-user-links.php:82
359
- msgid "Dashboard"
360
- msgstr "Dashboard"
361
-
362
- #: includes/class-theme-my-login-template.php:316
363
- #: modules/custom-user-links/custom-user-links.php:83
364
- #: modules/themed-profiles/admin/themed-profiles-admin.php:66
365
- msgid "Profile"
366
- msgstr "Il tuo profilo"
367
-
368
- #: includes/class-theme-my-login-template.php:334
369
- #: modules/custom-redirection/custom-redirection.php:197
370
- msgid "Log out"
371
- msgstr "Log out"
372
-
373
- #: includes/class-theme-my-login-template.php:363
374
- msgid "Register For This Site"
375
- msgstr "Registrazione per questo sito"
376
-
377
- #: includes/class-theme-my-login-template.php:366
378
- msgid "Please enter your username or email address. You will receive a link to create a new password via email."
379
- msgstr "Inserire il proprio nome utente o il proprio indirizzo e-mail. Si riceverà una nuova password tramite e-mail."
380
-
381
- #: includes/class-theme-my-login-template.php:369
382
- msgid "Enter your new password below."
383
- msgstr "Digitare nuovamente la password."
384
-
385
- #: includes/class-theme-my-login-widget.php:23
386
- msgid "A login form for your blog."
387
- msgstr "Un form di login per il tuo blog."
388
-
389
- #: includes/class-theme-my-login-widget.php:88
390
- msgid "Default Action"
391
- msgstr "Default."
392
-
393
- #: includes/class-theme-my-login-widget.php:95
394
- msgid "Show When Logged In"
395
- msgstr "Visualizza quando autenticato"
396
-
397
- #: includes/class-theme-my-login-widget.php:97
398
- msgid "Show Title"
399
- msgstr "Visualizza titolo"
400
-
401
- #: includes/class-theme-my-login-widget.php:99
402
- msgid "Show Login Link"
403
- msgstr "Visualizza il link Login"
404
-
405
- #: includes/class-theme-my-login-widget.php:101
406
- msgid "Show Register Link"
407
- msgstr "Visualizza link Registrazione"
408
-
409
- #: includes/class-theme-my-login-widget.php:103
410
- msgid "Show Lost Password Link"
411
- msgstr "Visualizza link Recupera Password"
412
-
413
- #: includes/class-theme-my-login-widget.php:105
414
- msgid "Show Gravatar"
415
- msgstr "Visualizza Gravatar"
416
-
417
- #: includes/class-theme-my-login-widget.php:106
418
- msgid "Gravatar Size"
419
- msgstr "Dimensione Gravatar"
420
-
421
- #: includes/class-theme-my-login-widget.php:108
422
- msgid "Allow Registration"
423
- msgstr "Permetti la Registrazione"
424
-
425
- #: includes/class-theme-my-login-widget.php:110
426
- msgid "Allow Password Recovery"
427
- msgstr "Permetti il Recupero della Password"
428
-
429
- #: includes/class-theme-my-login.php:245
430
- msgid "Sorry, that key does not appear to be valid."
431
- msgstr "Spiacente, quelle chiavi non sembrano valide."
432
-
433
- #: includes/class-theme-my-login.php:261
434
- msgid "The passwords do not match."
435
- msgstr "Le password non corrispondono."
436
-
437
- #: includes/class-theme-my-login.php:367
438
- msgid "<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href=\"http://www.google.com/cookies.html\">enable cookies</a> to use WordPress."
439
- msgstr "<strong>ERRORE</strong>: Sembra che il vostro browser non supporti o blocchi i cookie. Occorre <a href='http://www.google.com/cookies.html'>abilitare i cookie</a> per utilizzare WordPress."
440
-
441
- #: includes/class-theme-my-login.php:371
442
- msgid "You are now logged out."
443
- msgstr "Ora non sei pi&#249; autenticato."
444
-
445
- #: includes/class-theme-my-login.php:373
446
- msgid "User registration is currently not allowed."
447
- msgstr "La registrazione degli utenti non &#232; al momento permessa."
448
-
449
- #: includes/class-theme-my-login.php:375
450
- msgid "Check your e-mail for the confirmation link."
451
- msgstr "Controlla la tua e-mail per il link di conferma."
452
-
453
- #: includes/class-theme-my-login.php:377
454
- msgid "Your password has been reset."
455
- msgstr "La password è stata azzerata."
456
-
457
- #: includes/class-theme-my-login.php:379
458
- msgid "Registration complete. Please check your e-mail."
459
- msgstr "Registrazione completata. Controlla la tua e-mail."
460
-
461
- #: includes/class-theme-my-login.php:381
462
- msgid "Your session has expired. Please log-in again."
463
- msgstr "La sessione &#232; scaduta. Effettuare nuovamente il login."
464
-
465
- #: includes/class-theme-my-login.php:383
466
- msgid "Please log in to continue."
467
- msgstr "Per favore effettua il log in per continuare"
468
-
469
- #: includes/class-theme-my-login.php:540
470
- msgid "Log Out"
471
- msgstr "Log Out"
472
-
473
- #: includes/class-theme-my-login.php:925
474
- msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
475
- msgstr "<strong>ERRORE</strong>: inserisci lo username o l&#39;indirizzo e-mail."
476
-
477
- #: includes/class-theme-my-login.php:929
478
- msgid "<strong>ERROR</strong>: There is no user registered with that email address."
479
- msgstr "<strong>ERRORE</strong>: non c&#39;&#232; nessun utente registrato con quell&#39;indirizzo e-mail."
480
-
481
- #: includes/class-theme-my-login.php:941
482
- msgid "<strong>ERROR</strong>: Invalid username or e-mail."
483
- msgstr "<strong>ERRORE</strong>: username o e-mail non valido."
484
-
485
- #: includes/class-theme-my-login.php:955
486
- msgid "Password reset is not allowed for this user"
487
- msgstr "Il reset della password non &#232; permesso per questo utente"
488
-
489
- #: includes/class-theme-my-login.php:967
490
- msgid "Someone requested that the password be reset for the following account:"
491
- msgstr "Qualcuno ha richiesto l'azzeramento delle password per il seguente account utente."
492
-
493
- #: includes/class-theme-my-login.php:969
494
- #: modules/custom-email/custom-email.php:692
495
- #: modules/custom-email/custom-email.php:709
496
- #: modules/user-moderation/admin/user-moderation-admin.php:164
497
- #: modules/user-moderation/user-moderation.php:365
498
- msgid "Username: %s"
499
- msgstr "Username: %s"
500
-
501
- #: includes/class-theme-my-login.php:970
502
- msgid "If this was a mistake, just ignore this email and nothing will happen."
503
- msgstr "Se si è trattato di un errore, ignorare questa email e non accadrà nulla."
504
-
505
- #: includes/class-theme-my-login.php:971
506
- msgid "To reset your password, visit the following address:"
507
- msgstr "Per reimpostare la propria password visitare il seguente indirizzo:"
508
-
509
- #: includes/class-theme-my-login.php:982
510
- msgid "[%s] Password Reset"
511
- msgstr "[%s] Password Reset"
512
-
513
- #: includes/class-theme-my-login.php:988
514
- #: modules/user-moderation/admin/user-moderation-admin.php:53
515
- #: modules/user-moderation/admin/user-moderation-admin.php:174
516
- #: modules/user-moderation/admin/user-moderation-admin.php:210
517
- msgid "The e-mail could not be sent."
518
- msgstr "La e-mail non pu&#242; essere inviata."
519
-
520
- #: includes/class-theme-my-login.php:988
521
- #: modules/user-moderation/admin/user-moderation-admin.php:53
522
- #: modules/user-moderation/admin/user-moderation-admin.php:174
523
- #: modules/user-moderation/admin/user-moderation-admin.php:210
524
- msgid "Possible reason: your host may have disabled the mail() function..."
525
- msgstr "Possibile ragione: il tuo server potrebbe aver disabilitato la funzione mail() ..."
526
-
527
- #: includes/class-theme-my-login.php:1011
528
- #: includes/class-theme-my-login.php:1014
529
- #: includes/class-theme-my-login.php:1019
530
- #: modules/user-moderation/user-moderation.php:238
531
- #: modules/user-moderation/user-moderation.php:241
532
- #: modules/user-moderation/user-moderation.php:246
533
- msgid "Invalid key"
534
- msgstr "Chiave non valida"
535
-
536
- #: includes/class-theme-my-login.php:1059
537
- msgid "<strong>ERROR</strong>: Please enter a username."
538
- msgstr "<strong>ERRORE</strong>: inserisci uno username."
539
-
540
- #: includes/class-theme-my-login.php:1061
541
- msgid "<strong>ERROR</strong>: This username is invalid because it uses illegal characters. Please enter a valid username."
542
- msgstr "<strong>ERRORE</strong>: questo nome utente non &#232; valido perch&#232; utilizza dei caratteri non permessi. Inserire un nome utente valido."
543
-
544
- #: includes/class-theme-my-login.php:1064
545
- msgid "<strong>ERROR</strong>: This username is already registered, please choose another one."
546
- msgstr "<strong>ERRORE</strong>: questo username &#232; gi&#224; registrato, scegli uno diverso."
547
-
548
- #: includes/class-theme-my-login.php:1069
549
- msgid "<strong>ERROR</strong>: Please type your e-mail address."
550
- msgstr "<strong>ERRORE</strong>: inserisci il tuo indirizzo e-mail."
551
-
552
- #: includes/class-theme-my-login.php:1071
553
- msgid "<strong>ERROR</strong>: The email address isn&#8217;t correct."
554
- msgstr "<strong>ERRORE</strong>: l&#39;indirizzo email address non &#232; corretto."
555
-
556
- #: includes/class-theme-my-login.php:1074
557
- msgid "<strong>ERROR</strong>: This email is already registered, please choose another one."
558
- msgstr "<strong>ERRORE</strong>: l&#39;indirizzo email &#232; gi&#224; registrato, scegli uno diverso."
559
-
560
- #: includes/class-theme-my-login.php:1087
561
- msgid "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href=\"mailto:%s\">webmaster</a> !"
562
- msgstr "<strong>ERRORE</strong>: Non posso registrarti... contatta il <a href=\"mailto:%s\">webmaster</a> !"
563
-
564
- #: modules/custom-email/admin/custom-email-admin.php:46
565
- #: modules/custom-email/admin/custom-email-admin.php:265
566
- msgid "User Notification"
567
- msgstr "Notifica utente"
568
-
569
- #: modules/custom-email/admin/custom-email-admin.php:49
570
- msgid "This e-mail will be sent to a new user upon registration."
571
- msgstr "Questa e-mail sar&#224; spedita ad un nuovo utente dopo la registrazione."
572
-
573
- #: modules/custom-email/admin/custom-email-admin.php:50
574
- #: modules/custom-email/admin/custom-email-admin.php:269
575
- msgid "Please be sure to include the variable %user_pass% if using default passwords or else the user will not know their password!"
576
- msgstr "Per favore accertati di includere la variabile %user_pass% se stai usando le password di default o altrimenti l&#39;utente non conoscer&#224; le loro password!"
577
-
578
- #: modules/custom-email/admin/custom-email-admin.php:51
579
- #: modules/custom-email/admin/custom-email-admin.php:81
580
- #: modules/custom-email/admin/custom-email-admin.php:130
581
- #: modules/custom-email/admin/custom-email-admin.php:175
582
- #: modules/custom-email/admin/custom-email-admin.php:224
583
- #: modules/custom-email/admin/custom-email-admin.php:270
584
- #: modules/custom-email/admin/custom-email-admin.php:300
585
- #: modules/custom-email/admin/custom-email-admin.php:348
586
- msgid "If any field is left empty, the default will be used instead."
587
- msgstr "Se qualche campo &#232; lasciato vuoto, verr&#224; utilizzato il valore di default."
588
-
589
- #: modules/custom-email/admin/custom-email-admin.php:54
590
- #: modules/custom-email/admin/custom-email-admin.php:87
591
- #: modules/custom-email/admin/custom-email-admin.php:133
592
- #: modules/custom-email/admin/custom-email-admin.php:181
593
- #: modules/custom-email/admin/custom-email-admin.php:227
594
- #: modules/custom-email/admin/custom-email-admin.php:273
595
- #: modules/custom-email/admin/custom-email-admin.php:306
596
- #: modules/custom-email/admin/custom-email-admin.php:351
597
- msgid "From Name"
598
- msgstr "From Name"
599
-
600
- #: modules/custom-email/admin/custom-email-admin.php:57
601
- #: modules/custom-email/admin/custom-email-admin.php:90
602
- #: modules/custom-email/admin/custom-email-admin.php:136
603
- #: modules/custom-email/admin/custom-email-admin.php:184
604
- #: modules/custom-email/admin/custom-email-admin.php:230
605
- #: modules/custom-email/admin/custom-email-admin.php:276
606
- #: modules/custom-email/admin/custom-email-admin.php:309
607
- #: modules/custom-email/admin/custom-email-admin.php:354
608
- msgid "From E-mail"
609
- msgstr "From E-mail"
610
-
611
- #: modules/custom-email/admin/custom-email-admin.php:60
612
- #: modules/custom-email/admin/custom-email-admin.php:93
613
- #: modules/custom-email/admin/custom-email-admin.php:139
614
- #: modules/custom-email/admin/custom-email-admin.php:187
615
- #: modules/custom-email/admin/custom-email-admin.php:233
616
- #: modules/custom-email/admin/custom-email-admin.php:279
617
- #: modules/custom-email/admin/custom-email-admin.php:312
618
- #: modules/custom-email/admin/custom-email-admin.php:357
619
- msgid "E-mail Format"
620
- msgstr "Formato E-mail"
621
-
622
- #: modules/custom-email/admin/custom-email-admin.php:62
623
- #: modules/custom-email/admin/custom-email-admin.php:95
624
- #: modules/custom-email/admin/custom-email-admin.php:141
625
- #: modules/custom-email/admin/custom-email-admin.php:189
626
- #: modules/custom-email/admin/custom-email-admin.php:235
627
- #: modules/custom-email/admin/custom-email-admin.php:281
628
- #: modules/custom-email/admin/custom-email-admin.php:314
629
- #: modules/custom-email/admin/custom-email-admin.php:359
630
- msgid "Plain Text"
631
- msgstr "Testo"
632
-
633
- #: modules/custom-email/admin/custom-email-admin.php:63
634
- #: modules/custom-email/admin/custom-email-admin.php:96
635
- #: modules/custom-email/admin/custom-email-admin.php:142
636
- #: modules/custom-email/admin/custom-email-admin.php:190
637
- #: modules/custom-email/admin/custom-email-admin.php:236
638
- #: modules/custom-email/admin/custom-email-admin.php:282
639
- #: modules/custom-email/admin/custom-email-admin.php:315
640
- #: modules/custom-email/admin/custom-email-admin.php:360
641
- msgid "HTML"
642
- msgstr "HTML"
643
-
644
- #: modules/custom-email/admin/custom-email-admin.php:66
645
- #: modules/custom-email/admin/custom-email-admin.php:99
646
- #: modules/custom-email/admin/custom-email-admin.php:145
647
- #: modules/custom-email/admin/custom-email-admin.php:193
648
- #: modules/custom-email/admin/custom-email-admin.php:239
649
- #: modules/custom-email/admin/custom-email-admin.php:285
650
- #: modules/custom-email/admin/custom-email-admin.php:318
651
- #: modules/custom-email/admin/custom-email-admin.php:363
652
- msgid "Subject"
653
- msgstr "Soggetto"
654
-
655
- #: modules/custom-email/admin/custom-email-admin.php:69
656
- #: modules/custom-email/admin/custom-email-admin.php:102
657
- #: modules/custom-email/admin/custom-email-admin.php:148
658
- #: modules/custom-email/admin/custom-email-admin.php:196
659
- #: modules/custom-email/admin/custom-email-admin.php:242
660
- #: modules/custom-email/admin/custom-email-admin.php:288
661
- #: modules/custom-email/admin/custom-email-admin.php:321
662
- #: modules/custom-email/admin/custom-email-admin.php:366
663
- msgid "Message"
664
- msgstr "Messaggio"
665
-
666
- #: modules/custom-email/admin/custom-email-admin.php:72
667
- #: modules/custom-email/admin/custom-email-admin.php:105
668
- #: modules/custom-email/admin/custom-email-admin.php:151
669
- #: modules/custom-email/admin/custom-email-admin.php:199
670
- #: modules/custom-email/admin/custom-email-admin.php:245
671
- #: modules/custom-email/admin/custom-email-admin.php:291
672
- #: modules/custom-email/admin/custom-email-admin.php:324
673
- #: modules/custom-email/admin/custom-email-admin.php:369
674
- msgid "Available Variables"
675
- msgstr "Variabili disponibili"
676
-
677
- #: modules/custom-email/admin/custom-email-admin.php:77
678
- #: modules/custom-email/admin/custom-email-admin.php:171
679
- #: modules/custom-email/admin/custom-email-admin.php:296
680
- msgid "Admin Notification"
681
- msgstr "Notifica amministratore"
682
-
683
- #: modules/custom-email/admin/custom-email-admin.php:80
684
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon new user registration."
685
- msgstr "Questa e-mail verr&#224; spedita all'indirizzo e-mail (indirizzi multipli possono essere separati da virgole) specificato sotto, al momento della registrazione. "
686
-
687
- #: modules/custom-email/admin/custom-email-admin.php:84
688
- #: modules/custom-email/admin/custom-email-admin.php:178
689
- #: modules/custom-email/admin/custom-email-admin.php:303
690
- msgid "To"
691
- msgstr "A"
692
-
693
- #: modules/custom-email/admin/custom-email-admin.php:128
694
- msgid "This e-mail will be sent to a user when they attempt to recover their password."
695
- msgstr "Questa e-mail verr&#224; spedita agli utenti quando cercano di recuperare le loro password. "
696
-
697
- #: modules/custom-email/admin/custom-email-admin.php:129
698
- msgid "Please be sure to include the variable %reseturl% or else the user will not be able to recover their password!"
699
- msgstr "Per favore accertati di includere la variabile %reseturl% o altrimenti gli utenti non saranno in grado di recuperare le loro password!"
700
-
701
- #: modules/custom-email/admin/custom-email-admin.php:174
702
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon user password change."
703
- msgstr "Questa e-mail verr&#224; all'indirizzo e-mail (indirizzi multipli possono essere separati da virgole) specificato sotto, al momento del cambio della password. "
704
-
705
- #: modules/custom-email/admin/custom-email-admin.php:201
706
- #: modules/custom-email/admin/custom-email-admin.php:326
707
- msgid "Disable Admin Notification"
708
- msgstr "Disabilita le notifiche dell&#39;amministratore"
709
-
710
- #: modules/custom-email/admin/custom-email-admin.php:222
711
- msgid "This e-mail will be sent to a new user upon registration when \"E-mail Confirmation\" is checked for \"User Moderation\"."
712
- msgstr "Questa e-mail verr&#224; spedita ad un nuovo utente quando \"E-mail di conferma\" &#232; settata per \"Moderazione utente\". "
713
-
714
- #: modules/custom-email/admin/custom-email-admin.php:223
715
- msgid "Please be sure to include the variable %activateurl% or else the user will not be able to activate their account!"
716
- msgstr "Per favore assicurati di includere la variabile %activateurl% o altrimenti gli utenti non saranno in grado di attivare i loro account!"
717
-
718
- #: modules/custom-email/admin/custom-email-admin.php:268
719
- msgid "This e-mail will be sent to a new user upon admin approval when \"Admin Approval\" is checked for \"User Moderation\"."
720
- msgstr "Questa e-mail verr&#224; inviata ai nuovi utenti al momento della registrazione se \"Approvazione amministratore\" &#232; settata per \"Moderazione utente\"."
721
-
722
- #: modules/custom-email/admin/custom-email-admin.php:299
723
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below upon user registration when \"Admin Approval\" is checked for \"User Moderation\"."
724
- msgstr "Questa e-mail verr&#224; spedita all'indirizzo e-mail (indirizzi multipli possono essere separati da virgole) specificato sotto al momento della registrazione dell&#39;utente se \"Approvazione amministratore\" &#232; settata per \"Moderazione utente\". "
725
-
726
- #: modules/custom-email/admin/custom-email-admin.php:347
727
- msgid "This e-mail will be sent to a user who is deleted/denied when \"Admin Approval\" is checked for \"User Moderation\" and the user's role is \"Pending\"."
728
- msgstr "Questa e-mail verr&#224; spedita ad un utente che &#232; cancellato/non accettato quando \"Approvazione amministratore\" &#232; settato a \"Moderazione utente\" e la regola dell&#39;utente &232; \"Pendente\". "
729
-
730
- #: modules/custom-email/admin/custom-email-admin.php:390
731
- #: templates/profile-form.php:143
732
- #: templates/register-form.php:16
733
- msgid "E-mail"
734
- msgstr "e-mail"
735
-
736
- #: modules/custom-email/admin/custom-email-admin.php:391
737
- msgid "New User"
738
- msgstr "Nuovo Utente"
739
-
740
- #: modules/custom-email/admin/custom-email-admin.php:392
741
- msgid "Retrieve Password"
742
- msgstr "Recupera Password"
743
-
744
- #: modules/custom-email/admin/custom-email-admin.php:393
745
- #: templates/resetpass-form.php:26
746
- msgid "Reset Password"
747
- msgstr "Reset Password"
748
-
749
- #: modules/custom-email/admin/custom-email-admin.php:395
750
- msgid "User Activation"
751
- msgstr "Attivazione utente"
752
-
753
- #: modules/custom-email/admin/custom-email-admin.php:396
754
- msgid "User Approval"
755
- msgstr "Approvazione utente"
756
-
757
- #: modules/custom-email/admin/custom-email-admin.php:397
758
- msgid "User Denial"
759
- msgstr "Negazione utente"
760
-
761
- #: modules/custom-email/custom-email.php:691
762
- msgid "New user registration on your site %s:"
763
- msgstr "Nuovo utente registrato sul sito %s:"
764
-
765
- #: modules/custom-email/custom-email.php:693
766
- #: modules/user-moderation/user-moderation.php:366
767
- msgid "E-mail: %s"
768
- msgstr "E-mail: %s"
769
-
770
- #: modules/custom-email/custom-email.php:695
771
- msgid "[%s] New User Registration"
772
- msgstr "[%s] Nuova registrazione utente"
773
-
774
- #: modules/custom-email/custom-email.php:710
775
- #: modules/user-moderation/admin/user-moderation-admin.php:165
776
- msgid "Password: %s"
777
- msgstr "Password: %s"
778
-
779
- #: modules/custom-email/custom-email.php:713
780
- msgid "[%s] Your username and password"
781
- msgstr "[%s] Il tuo username e password"
782
-
783
- #: modules/custom-email/custom-email.php:745
784
- msgid "[%s] Password Lost/Changed"
785
- msgstr "[%s] Password Persa/Cambiata"
786
-
787
- #: modules/custom-email/custom-email.php:746
788
- msgid "Password Lost and Changed for user: %s"
789
- msgstr "Password persa e cambiata per l&#39;utente: %s"
790
-
791
- #: modules/custom-passwords/custom-passwords.php:31
792
- #: modules/custom-passwords/custom-passwords.php:63
793
- msgid "Confirm Password:"
794
- msgstr "Conferma Password:"
795
-
796
- #: modules/custom-passwords/custom-passwords.php:61
797
- msgid "(Must be at least 6 characters.)"
798
- msgstr "(Deve avere almeno 6 caratteri)"
799
-
800
- #: modules/custom-passwords/custom-passwords.php:65
801
- msgid "Confirm that you've typed your password correctly."
802
- msgstr "Conferma che hai digitato correttamente la tua password."
803
-
804
- #: modules/custom-passwords/custom-passwords.php:103
805
- msgid "<strong>ERROR</strong>: Please enter a password."
806
- msgstr "<strong>ERRORE</strong>: inserisci una password."
807
-
808
- #: modules/custom-passwords/custom-passwords.php:106
809
- msgid "<strong>ERROR</strong>: Your passwords do not match."
810
- msgstr "<strong>ERRORE</strong>: le tue password non corrispondono."
811
-
812
- #: modules/custom-passwords/custom-passwords.php:109
813
- msgid "<strong>ERROR</strong>: Your password must be at least 6 characters in length."
814
- msgstr "<strong>ERRORE</strong>: la tua password deve essere di almeno 6 caratteri."
815
-
816
- #: modules/custom-passwords/custom-passwords.php:230
817
- msgid "Registration complete. You may now log in."
818
- msgstr "Registrazione completata. Ora puoi effettuare il Login."
819
-
820
- #: modules/custom-redirection/custom-redirection.php:156
821
- msgid "Redirection"
822
- msgstr "Ridirezione"
823
-
824
- #: modules/custom-redirection/custom-redirection.php:185
825
- msgid "Log in"
826
- msgstr "Log in"
827
-
828
- #: modules/custom-redirection/custom-redirection.php:187
829
- #: modules/custom-redirection/custom-redirection.php:199
830
- msgid "Default"
831
- msgstr "Default"
832
-
833
- #: modules/custom-redirection/custom-redirection.php:188
834
- msgid "Check this option to send the user to their WordPress Dashboard/Profile."
835
- msgstr "Seleziona questa opzione per mandare gli utenti alla loro Dashboard/Profile di WordPress. "
836
-
837
- #: modules/custom-redirection/custom-redirection.php:189
838
- #: modules/custom-redirection/custom-redirection.php:201
839
- msgid "Referer"
840
- msgstr "Referente"
841
-
842
- #: modules/custom-redirection/custom-redirection.php:190
843
- msgid "Check this option to send the user back to the page they were visiting before logging in."
844
- msgstr "Seleziona questa opzione per mandare gli utenti alla pagina che stavano visitando prima del log in. "
845
-
846
- #: modules/custom-redirection/custom-redirection.php:193
847
- #: modules/custom-redirection/custom-redirection.php:205
848
- msgid "Check this option to send the user to a custom location, specified by the textbox above."
849
- msgstr "Seleziona questa opzione per mandare gli utenti ad una pagina personalizzata, specificata nella textbox sopra. "
850
-
851
- #: modules/custom-redirection/custom-redirection.php:200
852
- msgid "Check this option to send the user to the log in page, displaying a message that they have successfully logged out."
853
- msgstr "Seleziona questa opzione per mandare gli utenti alla pagina del log in visualizzando un messaggio che hanno effettuato con successo il log out. "
854
-
855
- #: modules/custom-redirection/custom-redirection.php:202
856
- msgid "Check this option to send the user back to the page they were visiting before logging out. (Note: If the previous page being visited was an admin page, this can have unexpected results.)"
857
- msgstr "Seleziona questa opzione per mandare gli utenti alla pagina che stavano visitando prima del log out. (Nota: se la pagina precedentemente visitata era una pagina di amministrazione potrebbe provocare risultati inaspettati). "
858
-
859
- #: modules/custom-user-links/admin/custom-user-links-admin.php:140
860
- msgid "User Links"
861
- msgstr "Links utente"
862
-
863
- #: modules/custom-user-links/admin/custom-user-links-admin.php:232
864
- #: modules/custom-user-links/admin/custom-user-links-admin.php:255
865
- #: modules/custom-user-links/admin/custom-user-links-admin.php:300
866
- msgid "Title"
867
- msgstr "Titolo"
868
-
869
- #: modules/custom-user-links/admin/custom-user-links-admin.php:233
870
- #: modules/custom-user-links/admin/custom-user-links-admin.php:256
871
- #: modules/custom-user-links/admin/custom-user-links-admin.php:304
872
- msgid "URL"
873
- msgstr "URL"
874
-
875
- #: modules/custom-user-links/admin/custom-user-links-admin.php:250
876
- msgid "Add New link:"
877
- msgstr "Aggiungi nuovo Link:"
878
-
879
- #: modules/custom-user-links/admin/custom-user-links-admin.php:266
880
- msgid "Add link"
881
- msgstr "Aggiungi link"
882
-
883
- #: modules/custom-user-links/admin/custom-user-links-admin.php:306
884
- msgid "Delete"
885
- msgstr "Cancella"
886
-
887
- #: modules/custom-user-links/admin/custom-user-links-admin.php:307
888
- msgid "Update"
889
- msgstr "Aggiorna"
890
-
891
- #: modules/security/admin/security-admin.php:32
892
- #: modules/security/admin/security-admin.php:35
893
- #: modules/user-moderation/admin/user-moderation-admin.php:34
894
- #: modules/user-moderation/admin/user-moderation-admin.php:44
895
- msgid "You can&#8217;t edit that user."
896
- msgstr "Non puoi modificare questo utente."
897
-
898
- #: modules/security/admin/security-admin.php:67
899
- msgid "User locked."
900
- msgstr "Utente sbloccato"
901
-
902
- #: modules/security/admin/security-admin.php:69
903
- msgid "User unlocked."
904
- msgstr "Utente sbloccato."
905
-
906
- #: modules/security/admin/security-admin.php:92
907
- msgid "Unlock"
908
- msgstr "Sblocca"
909
-
910
- #: modules/security/admin/security-admin.php:94
911
- msgid "Lock"
912
- msgstr "Blocca"
913
-
914
- #: modules/security/admin/security-admin.php:113
915
- msgid "Security"
916
- msgstr "Sicurezza"
917
-
918
- #: modules/security/admin/security-admin.php:132
919
- msgid "Private Site"
920
- msgstr "Sito provato"
921
-
922
- #: modules/security/admin/security-admin.php:135
923
- msgid "Require users to be logged in to view site"
924
- msgstr "L&#39;utente deve essere autenticato per vedere il sito"
925
-
926
- #: modules/security/admin/security-admin.php:139
927
- msgid "Login Attempts"
928
- msgstr "Tentativi di login"
929
-
930
- #: modules/security/admin/security-admin.php:144
931
- msgid "minute(s)"
932
- msgstr "minuto(i)"
933
-
934
- #: modules/security/admin/security-admin.php:145
935
- msgid "hour(s)"
936
- msgstr "ora(e)"
937
-
938
- #: modules/security/admin/security-admin.php:146
939
- msgid "day(s)"
940
- msgstr "giorno(i)"
941
-
942
- #: modules/security/admin/security-admin.php:169
943
- msgid "After %1$s failed login attempts within %2$s %3$s, lockout the account for %4$s %5$s."
944
- msgstr "Dopo %1$s tentativi falliti di login in %2$s %3$s, l'account &#224; bloccato per %4$s %5$s."
945
-
946
- #: modules/security/security.php:64
947
- #: modules/security/security.php:90
948
- msgid "<strong>ERROR</strong>: This account has been locked because of too many failed login attempts. You may try again in %s."
949
- msgstr "<strong>ERRORE</strong>: questo account &#224; stato bloccato per troppi tentativi di login falliti. Puoi riprovare tra %s."
950
-
951
- #: modules/security/security.php:66
952
- msgid "<strong>ERROR</strong>: This account has been locked."
953
- msgstr "<strong>ERRORE</strong>: questo account &#232; stato bloccato."
954
-
955
- #: modules/security/security.php:126
956
- msgid "Failed Login Attempts"
957
- msgstr "Tentativi di login falliti"
958
-
959
- #: modules/security/security.php:130
960
- msgid "IP Address"
961
- msgstr "Indirizzo IP"
962
-
963
- #: modules/security/security.php:131
964
- msgid "Date"
965
- msgstr "Data"
966
-
967
- #: modules/security/security.php:134
968
- msgid "Y/m/d g:i:s A"
969
- msgstr "d/m/Y G:i:s"
970
-
971
- #: modules/security/security.php:139
972
- msgid "%s ago"
973
- msgstr "%s fa"
974
-
975
- #: modules/security/security.php:141
976
- msgid "Y/m/d"
977
- msgstr "d/m/Y"
978
-
979
- #: modules/themed-profiles/admin/themed-profiles-admin.php:23
980
- #: modules/themed-profiles/admin/themed-profiles-admin.php:42
981
- msgid "Themed Profiles"
982
- msgstr "Themed profiles"
983
-
984
- #: modules/themed-profiles/admin/themed-profiles-admin.php:51
985
- msgid "Restrict Admin Access"
986
- msgstr "Limitare l&#39;accesso Admin"
987
-
988
- #: modules/themed-profiles/themed-profiles.php:123
989
- #: templates/profile-form.php:182
990
- #: templates/resetpass-form.php:19
991
- msgid "Strength indicator"
992
- msgstr "Indicatore di forza"
993
-
994
- #: modules/themed-profiles/themed-profiles.php:124
995
- msgid "Very weak"
996
- msgstr "Molto debole"
997
-
998
- #: modules/themed-profiles/themed-profiles.php:125
999
- msgid "Weak"
1000
- msgstr "Debole"
1001
-
1002
- #. translators: password strength
1003
- #: modules/themed-profiles/themed-profiles.php:127
1004
- msgctxt "password strength"
1005
- msgid "Medium"
1006
- msgstr "Media"
1007
-
1008
- #: modules/themed-profiles/themed-profiles.php:128
1009
- msgid "Strong"
1010
- msgstr "Forte"
1011
-
1012
- #: modules/themed-profiles/themed-profiles.php:138
1013
- msgid "You do not have permission to edit this user."
1014
- msgstr "Non hai i permessi per modificare questo utente."
1015
-
1016
- #: modules/themed-profiles/themed-profiles.php:154
1017
- msgid "Profile updated."
1018
- msgstr "Profilo aggiornato."
1019
-
1020
- #: modules/themed-profiles/themed-profiles.php:243
1021
- msgid "Your Profile"
1022
- msgstr "Il tuo profilo"
1023
-
1024
- #: modules/user-moderation/admin/user-moderation-admin.php:75
1025
- msgid "User approved."
1026
- msgstr "Utente approvato"
1027
-
1028
- #: modules/user-moderation/admin/user-moderation-admin.php:77
1029
- msgid "Activation sent."
1030
- msgstr "Attivazione inviata."
1031
-
1032
- #: modules/user-moderation/admin/user-moderation-admin.php:105
1033
- msgid "Resend Activation"
1034
- msgstr "Reinvio attivazione"
1035
-
1036
- #: modules/user-moderation/admin/user-moderation-admin.php:110
1037
- msgid "Approve"
1038
- msgstr "Approvazione"
1039
-
1040
- #: modules/user-moderation/admin/user-moderation-admin.php:163
1041
- msgid "You have been approved access to %s"
1042
- msgstr "E&#39; stato approvato l&#39;accesso a %s"
1043
-
1044
- #: modules/user-moderation/admin/user-moderation-admin.php:168
1045
- msgid "[%s] Registration Approved"
1046
- msgstr "[%s] Registrazione Approvata"
1047
-
1048
- #: modules/user-moderation/admin/user-moderation-admin.php:203
1049
- msgid "You have been denied access to %s"
1050
- msgstr "Ti &#232; stato negato l&#39;accesso a %s"
1051
-
1052
- #: modules/user-moderation/admin/user-moderation-admin.php:204
1053
- msgid "[%s] Registration Denied"
1054
- msgstr "[%s] Registrazione negata"
1055
-
1056
- #: modules/user-moderation/admin/user-moderation-admin.php:226
1057
- msgid "Moderation"
1058
- msgstr "Moderazione"
1059
-
1060
- #: modules/user-moderation/admin/user-moderation-admin.php:242
1061
- msgid "User Moderation"
1062
- msgstr "Moderazione utente"
1063
-
1064
- #: modules/user-moderation/admin/user-moderation-admin.php:245
1065
- msgid "None"
1066
- msgstr "Nessuna"
1067
-
1068
- #: modules/user-moderation/admin/user-moderation-admin.php:246
1069
- msgid "Check this option to require no moderation."
1070
- msgstr "Seleziona questa opzione per richiedere la non moderazione."
1071
-
1072
- #: modules/user-moderation/admin/user-moderation-admin.php:248
1073
- msgid "E-mail Confirmation"
1074
- msgstr "Conferma e-mail"
1075
-
1076
- #: modules/user-moderation/admin/user-moderation-admin.php:249
1077
- msgid "Check this option to require new users to confirm their e-mail address before they may log in."
1078
- msgstr "Seleziona questa opzione per richiedere che i nuovi utenti confermino il loro indirizzo e-mail prima che possano effettuare il log in."
1079
-
1080
- #: modules/user-moderation/admin/user-moderation-admin.php:251
1081
- msgid "Admin Approval"
1082
- msgstr "Approvazione Amministratore"
1083
-
1084
- #: modules/user-moderation/admin/user-moderation-admin.php:252
1085
- msgid "Check this option to require new users to be approved by an administrator before they may log in."
1086
- msgstr "Seleziona questa opzione per richiedere che i nuovi utenti siano approvati da un amministratore prima che possano effettuare il log in."
1087
-
1088
- #: modules/user-moderation/admin/user-moderation-admin.php:269
1089
- msgid "User Moderation is not currently compatible with multisite."
1090
- msgstr "La moderazione utenti non &#232; al momento compatibile con il multisite."
1091
-
1092
- #: modules/user-moderation/user-moderation.php:163
1093
- msgid "<strong>ERROR</strong>: You have not yet confirmed your e-mail address. <a href=\"%s\">Resend activation</a>?"
1094
- msgstr "<strong>ERRORE</strong>: non hai ancora confermato il tuo indirizzo e-mail. <a href=\"%s\">Reinvio attivazione</a>?"
1095
-
1096
- #: modules/user-moderation/user-moderation.php:166
1097
- msgid "<strong>ERROR</strong>: Your registration has not yet been approved."
1098
- msgstr "<strong>ERRORE</strong>: la tua registrazione non &#232; ancora stata approvata."
1099
-
1100
- #: modules/user-moderation/user-moderation.php:328
1101
- msgid "[%s] Activate Your Account"
1102
- msgstr "[%s] Attiva il tuo Account"
1103
-
1104
- #: modules/user-moderation/user-moderation.php:329
1105
- msgid "Thanks for registering at %s! To complete the activation of your account please click the following link: "
1106
- msgstr "Grazie per la registrazione %s! Per completare l&#39;attivazione del tuo account clicca sul seguente link:"
1107
-
1108
- #: modules/user-moderation/user-moderation.php:362
1109
- msgid "[%s] New User Awaiting Approval"
1110
- msgstr "[%s] Nuovo utente in attesa di approvazione"
1111
-
1112
- #: modules/user-moderation/user-moderation.php:364
1113
- msgid "New user requires approval on your blog %s:"
1114
- msgstr "I nuovi utenti richiedono l&#39;approvazione sul tuo blog %s:"
1115
-
1116
- #: modules/user-moderation/user-moderation.php:367
1117
- msgid "To approve or deny this user:"
1118
- msgstr "Per approvare o rifiutare questo utente:"
1119
-
1120
- #: modules/user-moderation/user-moderation.php:388
1121
- msgid "Your registration was successful but you must now confirm your email address before you can log in. Please check your email and click on the link provided."
1122
- msgstr "La tua registrazione &#232; stata effettuata con successo ma ora devi confermare il tuo indirizzo e-mail prima di poter effettuare il Log in. Controlla la tua e-mail e clicca sul link che troverai."
1123
-
1124
- #: modules/user-moderation/user-moderation.php:390
1125
- msgid "Your registration was successful but you must now be approved by an administrator before you can log in. You will be notified by e-mail once your account has been reviewed."
1126
- msgstr "La tua registrazione &#232; stata effettuata con successo ma ora devi essere approvato dall&#39;amministratore prima di poter effettuare il Log in. Riceverai una e-mail di notifica quando il tuo utente sar&#224; stato visionato."
1127
-
1128
- #: modules/user-moderation/user-moderation.php:393
1129
- msgid "Your account has been activated. You may now log in."
1130
- msgstr "Il tuo account &#232; stato attivato. Ora puoi effettuare il Log in."
1131
-
1132
- #: modules/user-moderation/user-moderation.php:395
1133
- msgid "Your account has been activated. Please check your e-mail for your password."
1134
- msgstr "Il tuo account &#232; stato attivato. Controlla la tua e-mail per la password."
1135
-
1136
- #: modules/user-moderation/user-moderation.php:397
1137
- msgid "<strong>ERROR</strong>: Sorry, that key does not appear to be valid."
1138
- msgstr "<strong>ERRORE</strong>: spiacente, questa chiave non sembra essere valida."
1139
-
1140
- #: modules/user-moderation/user-moderation.php:400
1141
- msgid "<strong>ERROR</strong>: Sorry, the activation e-mail could not be sent."
1142
- msgstr "<strong>ERRORE</strong>: spiacente, la mail di attivazione non pu&#242; essere spedita."
1143
-
1144
- #: modules/user-moderation/user-moderation.php:402
1145
- msgid "The activation e-mail has been sent to the e-mail address with which you registered. Please check your email and click on the link provided."
1146
- msgstr "La mail di attivazione &#232; stata spedita all'indirizzo con il quale ti sei registrato. Controlla la tua e-mail e clicca sul link che troverai."
1147
-
1148
- #: templates/login-form.php:12
1149
- #: templates/profile-form.php:91
1150
- #: templates/register-form.php:12
1151
- msgid "Username"
1152
- msgstr "Username"
1153
-
1154
- #: templates/login-form.php:16
1155
- msgid "Password"
1156
- msgstr "Password"
1157
-
1158
- #: templates/login-form.php:25
1159
- msgid "Remember Me"
1160
- msgstr "Ricordati di me"
1161
-
1162
- #: templates/lostpassword-form.php:12
1163
- msgid "Username or E-mail:"
1164
- msgstr "Username o e-mail:"
1165
-
1166
- #: templates/lostpassword-form.php:20
1167
- msgid "Get New Password"
1168
- msgstr "Richiedi la nuova password"
1169
-
1170
- #: templates/ms-signup-another-blog-form.php:7
1171
- msgid "Get <em>another</em> %s site in seconds"
1172
- msgstr "Ottieni <em>un altro</em> %s sito in pochi secondi"
1173
-
1174
- #: templates/ms-signup-another-blog-form.php:10
1175
- msgid "There was a problem, please correct the form below and try again."
1176
- msgstr "Si era verificato un problema, correggere il modulo sottostante e riprovavare."
1177
-
1178
- #: templates/ms-signup-another-blog-form.php:13
1179
- msgid "Welcome back, %s. By filling out the form below, you can <strong>add another site to your account</strong>. There is no limit to the number of sites you can have, so create to your heart&#8217;s content, but write responsibly!"
1180
- msgstr "Bentornato %s. Compilando il seguente modulo è possibile <strong>aggiungere un nuovo sito al proprio account</strong>. Non vi è limite al numero di blog che è possibile avere, quindi create i contenuti secondo il vostro cuore ma scrivete con responsabilità."
1181
-
1182
- #: templates/ms-signup-another-blog-form.php:18
1183
- msgid "Sites you are already a member of:"
1184
- msgstr "Blog di cui si è già membri:"
1185
-
1186
- #: templates/ms-signup-another-blog-form.php:27
1187
- msgid "If you&#8217;re not going to use a great site domain, leave it for a new user. Now have at it!"
1188
- msgstr "Se non si ha intenzione di utilizzare un grande dominio per il sito, lasciarlo per un nuovo utente. Ora precedete!"
1189
-
1190
- #: templates/ms-signup-another-blog-form.php:33
1191
- #: templates/ms-signup-blog-form.php:17
1192
- msgid "Site Name:"
1193
- msgstr "Nome sito:"
1194
-
1195
- #: templates/ms-signup-another-blog-form.php:35
1196
- #: templates/ms-signup-blog-form.php:19
1197
- msgid "Site Domain:"
1198
- msgstr "Dominio sito:"
1199
-
1200
- #: templates/ms-signup-another-blog-form.php:52
1201
- #: templates/ms-signup-blog-form.php:36
1202
- msgid "sitename"
1203
- msgstr "nome sito"
1204
-
1205
- #: templates/ms-signup-another-blog-form.php:54
1206
- #: templates/ms-signup-blog-form.php:38
1207
- msgid "domain"
1208
- msgstr "dominio"
1209
-
1210
- #: templates/ms-signup-another-blog-form.php:55
1211
- #: templates/ms-signup-blog-form.php:39
1212
- msgid "Your address will be %s."
1213
- msgstr "Il vostro indirizzo sarà %s."
1214
-
1215
- #: templates/ms-signup-another-blog-form.php:55
1216
- #: templates/ms-signup-blog-form.php:39
1217
- msgid "Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!"
1218
- msgstr "Deve essere di almeno 4 caratteri, solo lettere e numeri. Non può venir cambiato quindi sceglilo con attenzione!"
1219
-
1220
- #: templates/ms-signup-another-blog-form.php:58
1221
- #: templates/ms-signup-blog-form.php:42
1222
- msgid "Site Title:"
1223
- msgstr "Titolo sito:"
1224
-
1225
- #: templates/ms-signup-another-blog-form.php:66
1226
- #: templates/ms-signup-blog-form.php:50
1227
- msgid "Privacy:"
1228
- msgstr "Privacy:"
1229
-
1230
- #: templates/ms-signup-another-blog-form.php:67
1231
- #: templates/ms-signup-blog-form.php:51
1232
- msgid "Allow my site to appear in search engines like Google, Technorati, and in public listings around this network."
1233
- msgstr "Questo sito deve apparire sui motori di ricerca come Google e Technorati e nelle liste pubbliche di questo network."
1234
-
1235
- #: templates/ms-signup-another-blog-form.php:71
1236
- #: templates/ms-signup-blog-form.php:55
1237
- msgid "Yes"
1238
- msgstr "Si"
1239
-
1240
- #: templates/ms-signup-another-blog-form.php:75
1241
- #: templates/ms-signup-blog-form.php:59
1242
- msgid "No"
1243
- msgstr "No"
1244
-
1245
- #: templates/ms-signup-another-blog-form.php:85
1246
- msgid "Create Site"
1247
- msgstr "Creazione sito"
1248
-
1249
- #: templates/ms-signup-blog-form.php:69
1250
- msgid "Signup"
1251
- msgstr "Registrazione"
1252
-
1253
- #: templates/ms-signup-user-form.php:7
1254
- msgid "Get your own %s account in seconds"
1255
- msgstr "Ottieni il tuo account %s in pochi secondi"
1256
-
1257
- #: templates/ms-signup-user-form.php:22
1258
- msgid "(Must be at least 4 characters, letters and numbers only.)"
1259
- msgstr "(Deve essere di almeno 4 caratteri, solo lettere e numeri.)"
1260
-
1261
- #: templates/ms-signup-user-form.php:24
1262
- msgid "Email&nbsp;Address:"
1263
- msgstr "Indirizzo&nbsp;Email:"
1264
-
1265
- #: templates/ms-signup-user-form.php:30
1266
- msgid "We send your registration email to this address. (Double-check your email address before continuing.)"
1267
- msgstr "Invieremo l'email di registrazione a questo indirizzo. (Controllare attentamente l'indirizzo email prima di proseguire.)"
1268
-
1269
- #: templates/ms-signup-user-form.php:47
1270
- msgid "Gimme a site!"
1271
- msgstr "Dammi un nuovo sito!"
1272
-
1273
- #: templates/ms-signup-user-form.php:50
1274
- msgid "Just a username, please."
1275
- msgstr "Solo un nome utente, grazie."
1276
-
1277
- #: templates/ms-signup-user-form.php:54
1278
- msgid "Next"
1279
- msgstr "Successivo"
1280
-
1281
- #: templates/profile-form.php:26
1282
- msgid "Personal Options"
1283
- msgstr "Opzioni personali"
1284
-
1285
- #: templates/profile-form.php:31
1286
- msgid "Visual Editor"
1287
- msgstr "Editor visuale"
1288
-
1289
- #: templates/profile-form.php:32
1290
- msgid "Disable the visual editor when writing"
1291
- msgstr "Disabilitare l'editor avanzato durante la scrittura"
1292
-
1293
- #: templates/profile-form.php:37
1294
- msgid "Admin Color Scheme"
1295
- msgstr "Schema colore pannello di amministrazione"
1296
-
1297
- #: templates/profile-form.php:44
1298
- msgid "Keyboard Shortcuts"
1299
- msgstr "Scorciatoie da tastiera"
1300
-
1301
- #: templates/profile-form.php:45
1302
- msgid "Enable keyboard shortcuts for comment moderation."
1303
- msgstr "Abilitare le scorciatoie da tastiera per la moderazione dei commenti."
1304
-
1305
- #: templates/profile-form.php:45
1306
- msgid "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">More information</a>"
1307
- msgstr "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">Altre informazioni</a> (in inglese)"
1308
-
1309
- #: templates/profile-form.php:51
1310
- #: templates/profile-form.php:54
1311
- msgid "Toolbar"
1312
- msgstr "Barra strumenti"
1313
-
1314
- #: templates/profile-form.php:57
1315
- msgid "Show Toolbar when viewing site"
1316
- msgstr "Visualizza la Barra strumenti quando si visualizza il sito"
1317
-
1318
- #: templates/profile-form.php:63
1319
- #: templates/profile-form.php:66
1320
- msgid "Show Admin Bar"
1321
- msgstr "Mostra la barra di amministrazione"
1322
-
1323
- #. translators: Show admin bar when viewing site
1324
- #: templates/profile-form.php:69
1325
- msgid "when viewing site"
1326
- msgstr "quando si visualizza il sito"
1327
-
1328
- #. translators: Show admin bar in dashboard
1329
- #: templates/profile-form.php:74
1330
- msgid "in dashboard"
1331
- msgstr "nella bacheca"
1332
-
1333
- #: templates/profile-form.php:87
1334
- msgid "Name"
1335
- msgstr "Nome"
1336
-
1337
- #: templates/profile-form.php:92
1338
- msgid "Your username cannot be changed."
1339
- msgstr "Il tuo username non pu&#242; essere cambiato."
1340
-
1341
- #: templates/profile-form.php:96
1342
- msgid "First name"
1343
- msgstr "Nome"
1344
-
1345
- #: templates/profile-form.php:101
1346
- msgid "Last name"
1347
- msgstr "Cognome"
1348
-
1349
- #: templates/profile-form.php:106
1350
- msgid "Nickname"
1351
- msgstr "Nickname"
1352
-
1353
- #: templates/profile-form.php:106
1354
- #: templates/profile-form.php:143
1355
- msgid "(required)"
1356
- msgstr "(obbligatorio)"
1357
-
1358
- #: templates/profile-form.php:111
1359
- msgid "Display name publicly as"
1360
- msgstr "Visualizza il nome pubblico come"
1361
-
1362
- #: templates/profile-form.php:139
1363
- msgid "Contact Info"
1364
- msgstr "Informazioni di contatto"
1365
-
1366
- #: templates/profile-form.php:148
1367
- msgid "Website"
1368
- msgstr "Sito Web"
1369
-
1370
- #: templates/profile-form.php:165
1371
- msgid "About Yourself"
1372
- msgstr "Chi sono"
1373
-
1374
- #: templates/profile-form.php:169
1375
- msgid "Biographical Info"
1376
- msgstr "Informazioni biografiche"
1377
-
1378
- #: templates/profile-form.php:171
1379
- msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
1380
- msgstr "Condividi alcune informazioni biografiche per compilare il tuo profilo. Queste potrebbero essere pubbliche."
1381
-
1382
- #: templates/profile-form.php:179
1383
- msgid "New Password"
1384
- msgstr "Nuova Password"
1385
-
1386
- #: templates/profile-form.php:180
1387
- msgid "If you would like to change the password type a new one. Otherwise leave this blank."
1388
- msgstr "Se vuoi cambiare la password inserisci una nuova. Altrimenti lascialo vuoto."
1389
-
1390
- #: templates/profile-form.php:181
1391
- msgid "Type your new password again."
1392
- msgstr "Inserisci di nuovo la tua nuova password."
1393
-
1394
- #: templates/profile-form.php:183
1395
- #: templates/resetpass-form.php:20
1396
- msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
1397
- msgstr "Suggerimento: la password dovrebbe essere lunga almeno sette caratteri. Affinch&#232; sia pi&#249; sicura usa lettere maiuscole e minuscole, numeri e simboli come ! \" ? $ % ^ &amp; )."
1398
-
1399
- #: templates/profile-form.php:197
1400
- msgid "Additional Capabilities"
1401
- msgstr "Funzionalit&#224; aggiuntive"
1402
-
1403
- #: templates/profile-form.php:216
1404
- msgid "Update Profile"
1405
- msgstr "Aggiorna il profilo"
1406
-
1407
- #: templates/register-form.php:23
1408
- msgid "A password will be e-mailed to you."
1409
- msgstr "Scegli uno username. La password ti verr&#224; inviata all&#39;indirizzo e-mail specificato"
1410
-
1411
- #: templates/resetpass-form.php:12
1412
- msgid "New password"
1413
- msgstr "Nuova password"
1414
-
1415
- #: templates/resetpass-form.php:16
1416
- msgid "Confirm new password"
1417
- msgstr "Confermare la nuova password"
1418
-
1419
- #. Plugin URI of the plugin/theme
1420
- msgid "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/"
1421
- msgstr "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login-plugin"
1422
-
1423
- #. Description of the plugin/theme
1424
- msgid "Themes the WordPress login, registration and forgot password pages according to your theme."
1425
- msgstr "Themes the WordPress login, pagine di registrazione e recupero password integrate nel tuo tema."
1426
-
1427
- #. Author of the plugin/theme
1428
- msgid "Jeff Farthing"
1429
- msgstr "Jeff Farthing"
1430
-
1431
- #. Author URI of the plugin/theme
1432
- msgid "http://www.jfarthing.com"
1433
- msgstr "http://www.jfarthing.com"
1434
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
language/theme-my-login-ja.mo DELETED
Binary file
language/theme-my-login-ja.po DELETED
@@ -1,1671 +0,0 @@
1
- # Copyright (C) 2012 Theme My Login
2
- # This file is distributed under the same license as the Theme My Login package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Theme My Login 6.2\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/theme-my-login\n"
7
- "POT-Creation-Date: 2012-03-08 16:19:05+00:00\n"
8
- "PO-Revision-Date: 2012-05-28 16:18-0500\n"
9
- "Last-Translator: Jeff Farthing <jeff@jfarthing.com>\n"
10
- "Language-Team: \n"
11
- "Language: \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-Poedit-Language: Japanese\n"
17
- "X-Poedit-Country: JAPAN\n"
18
- "X-Poedit-SourceCharset: utf-8\n"
19
-
20
- # @ theme-my-login
21
- #. #-#-#-#-# plugin.pot (Theme My Login 6.2) #-#-#-#-#
22
- #. Plugin Name of the plugin/theme
23
- #: admin/class-theme-my-login-admin.php:42
24
- #: admin/class-theme-my-login-admin.php:43
25
- #: includes/class-theme-my-login-widget.php:24
26
- msgid "Theme My Login"
27
- msgstr "Theme My Login"
28
-
29
- # @ theme-my-login
30
- #: admin/class-theme-my-login-admin.php:81
31
- msgid "ERROR: The module \"%1$s\" could not be activated (%2$s)."
32
- msgstr "エラー:モジュール \"%1$s\" は有効化出来ませんでした(%2$s)"
33
-
34
- # @ theme-my-login
35
- #: admin/class-theme-my-login-admin.php:103
36
- msgid "NOTICE:"
37
- msgstr "注意:"
38
-
39
- # @ theme-my-login
40
- #: admin/class-theme-my-login-admin.php:104
41
- msgid "Now that you have activated Theme My Login, please <a href=\"%s\">visit the settings page</a> and familiarize yourself with all of the available options."
42
- msgstr "Theme My Login を有効にしました。<a href=\"%s\">設定</a>ページを参照し、使用できるオプションの全てを確認してください。"
43
-
44
- # @ theme-my-login
45
- #: admin/class-theme-my-login-admin.php:106
46
- msgid "Take me to the settings page"
47
- msgstr "設定ページへ"
48
-
49
- # @ theme-my-login
50
- #: admin/class-theme-my-login-admin.php:119
51
- msgid "You can now login with your e-mail address or username! Try it out!"
52
- msgstr "あなたのメールアドレスもしくはユーザー名でログインが出来ます。お試し下さい。"
53
-
54
- # @ theme-my-login
55
- #: admin/class-theme-my-login-admin.php:120
56
- msgid "Theme My Login now utilizes a module system. Modules are similar to WordPress plugins. Each module extends the default functionality of Theme My Login. <a rel=\"tml-options\" href=\"#tml-options-modules\">Click here</a> to get started with modules now."
57
- msgstr "Theme My Loginは現在のモジュールシステムを採用しています。モジュールは、WordPressのプラグインと似ています。各モジュールは、テーマログイン情報をデフォルトの機能を拡張します。 <a rel=\"tml-options\" href=\"#tml-options-modules\">ここをクリック</ a>現在のモジュールを開始します。"
58
-
59
- # @ theme-my-login
60
- #: admin/class-theme-my-login-admin.php:121
61
- msgid "Theme My Login now allows custom forms. You can create your own form template(s) by copying the default version(s) from \"theme-my-login/templates\" to your current theme directory. Try it out!"
62
- msgstr "Theme My Loginはカスタムのフォームを利用できます。\"theme-my-login/templates\"からデフォルトのバージョンをあなたのテーマフォルダへコピーして、独自のフォームテンプレートを作成することが出来ます。"
63
-
64
- # @ theme-my-login
65
- #: admin/class-theme-my-login-admin.php:122
66
- msgid "You can maintain your stylesheet changes between upgrades. Just simply copy the file \"theme-my-login/theme-my-login.css\" to your current theme directory and edit it as you please!"
67
- msgstr "アップグレード後もスタイルシートの変更を維持したいのならば、あなたのテーマディレクトリに\"theme-my-login/theme-my-login.css\"をコピーして編集して下さい。"
68
-
69
- # @ theme-my-login
70
- #: admin/class-theme-my-login-admin.php:123
71
- msgid "Theme My Login provides a shortcode that you can use within your posts with multiple parameters to customize the form. Visit the <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Theme My Login Documentation</a> for usage instructions."
72
- msgstr "Theme My Loginはフォームをカスタマイズするために、複数のパラメーターを使用した記事内で使えるショートコードを提供しています。使用方法については<a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Theme My Login Documentation(英語)</a>をご覧下さい。"
73
-
74
- # @ theme-my-login
75
- #: admin/class-theme-my-login-admin.php:124
76
- msgid "Jeff is <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">available for hire</a>!"
77
- msgstr "Jeffを<a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">雇いませんか</a>?"
78
-
79
- # @ theme-my-login
80
- #: admin/class-theme-my-login-admin.php:128
81
- msgid "Did You Know?"
82
- msgstr "ご存知でしたか?"
83
-
84
- # @ theme-my-login
85
- #: admin/class-theme-my-login-admin.php:177
86
- msgid "General"
87
- msgstr "一般"
88
-
89
- # @ theme-my-login
90
- #: admin/class-theme-my-login-admin.php:178
91
- msgid "Basic"
92
- msgstr "基本"
93
-
94
- # @ theme-my-login
95
- #: admin/class-theme-my-login-admin.php:179
96
- #: admin/class-theme-my-login-admin.php:319
97
- msgid "Modules"
98
- msgstr "モジュール"
99
-
100
- # @ theme-my-login
101
- #: admin/class-theme-my-login-admin.php:181
102
- msgid "Permalinks"
103
- msgstr "パーマリンク設定"
104
-
105
- # @ theme-my-login
106
- #: admin/class-theme-my-login-admin.php:188
107
- msgid "Theme My Login Settings"
108
- msgstr "Theme My Login設定"
109
-
110
- # @ theme-my-login
111
- #: admin/class-theme-my-login-admin.php:194
112
- #: admin/class-theme-my-login-admin.php:254
113
- msgid "Save Changes"
114
- msgstr "変更を保存"
115
-
116
- # @ theme-my-login
117
- #: admin/class-theme-my-login-admin.php:271
118
- msgid "Page ID"
119
- msgstr "ページID"
120
-
121
- # @ theme-my-login
122
- #: admin/class-theme-my-login-admin.php:274
123
- msgid "This should be the ID of the WordPress page that includes the [theme-my-login] shortcode. By default, this page is titled \"Login\"."
124
- msgstr "ショートコード [theme-my-login] が含まれたWordPressのページIDを指定する必要があります。デフォルトではこのページのタイトルは\"Login\"になっています。"
125
-
126
- # @ theme-my-login
127
- #: admin/class-theme-my-login-admin.php:278
128
- msgid "Pagelist"
129
- msgstr "ページリスト"
130
-
131
- # @ theme-my-login
132
- #: admin/class-theme-my-login-admin.php:281
133
- msgid "Show Page In Pagelist"
134
- msgstr "ページリストでページを表示"
135
-
136
- # @ theme-my-login
137
- #: admin/class-theme-my-login-admin.php:282
138
- msgid "Enable this setting to add login/logout links to the pagelist generated by functions like wp_list_pages() and wp_page_menu()."
139
- msgstr "この設定は、 like wp_list_pages() と wp_page_menu() に表示されるページ一覧へ、ログイン/ログアウトのリンクを追加します。"
140
-
141
- # @ theme-my-login
142
- #: admin/class-theme-my-login-admin.php:286
143
- msgid "Stylesheet"
144
- msgstr "スタイルシート"
145
-
146
- # @ theme-my-login
147
- #: admin/class-theme-my-login-admin.php:289
148
- msgid "Enable \"theme-my-login.css\""
149
- msgstr "\"theme-my-login.css\" を有効にします"
150
-
151
- # @ theme-my-login
152
- #: admin/class-theme-my-login-admin.php:290
153
- msgid "In order to keep changes between upgrades, you can store your customized \"theme-my-login.css\" in your current theme directory."
154
- msgstr "アップグレードしても変更を保持するのであれば、あなたの現在のテーマのディレクトリにカスタマイズした \"theme-my-login.css\" を格納してください。"
155
-
156
- # @ theme-my-login
157
- #: admin/class-theme-my-login-admin.php:294
158
- msgid "E-mail Login"
159
- msgstr "メールログイン"
160
-
161
- #: admin/class-theme-my-login-admin.php:297
162
- msgid "Enable e-mail address login"
163
- msgstr "メールアドレスログインを有効にする"
164
-
165
- #: admin/class-theme-my-login-admin.php:298
166
- msgid "Allows users to login using their e-mail address in place of their username."
167
- msgstr "ユーザーが自分のユーザー名の代わりに自分のメールアドレスを使用してログインすることができます。"
168
-
169
- # @ theme-my-login
170
- #: admin/class-theme-my-login-admin.php:323
171
- msgid "Enable %s"
172
- msgstr "%s を有効にする"
173
-
174
- # @ theme-my-login
175
- #: admin/class-theme-my-login-admin.php:325
176
- msgid "No modules found."
177
- msgstr "モジュールが見つかりませんでした"
178
-
179
- # @ theme-my-login
180
- #: admin/class-theme-my-login-admin.php:343
181
- #: includes/class-theme-my-login-widget.php:87
182
- msgid "Login"
183
- msgstr "ログイン"
184
-
185
- # @ theme-my-login
186
- #: admin/class-theme-my-login-admin.php:344
187
- #: includes/class-theme-my-login-template.php:141
188
- #: includes/class-theme-my-login-widget.php:87
189
- #: templates/register-form.php:25
190
- msgid "Register"
191
- msgstr "登録"
192
-
193
- # @ theme-my-login
194
- #: admin/class-theme-my-login-admin.php:345
195
- #: includes/class-theme-my-login-template.php:147
196
- #: includes/class-theme-my-login-widget.php:87
197
- msgid "Lost Password"
198
- msgstr "パスワードを忘れました"
199
-
200
- # @ theme-my-login
201
- #: admin/class-theme-my-login-admin.php:475
202
- msgid "One of the modules is invalid."
203
- msgstr "モジュールの1つが無効です。"
204
-
205
- # @ theme-my-login
206
- #: admin/class-theme-my-login-admin.php:531
207
- msgid "Invalid module path."
208
- msgstr "無効なモジュールパスです。"
209
-
210
- # @ theme-my-login
211
- #: admin/class-theme-my-login-admin.php:533
212
- msgid "Module file does not exist."
213
- msgstr "モジュールファイルが存在しません。"
214
-
215
- # @ theme-my-login
216
- #: admin/class-theme-my-login-admin.php:537
217
- msgid "The module does not have a valid header."
218
- msgstr "モジュールが有効なヘッダーを持っていません。"
219
-
220
- #: includes/class-theme-my-login-ms-signup.php:117
221
- msgctxt "Multisite active signup type"
222
- msgid "all"
223
- msgstr "すべて"
224
-
225
- #: includes/class-theme-my-login-ms-signup.php:118
226
- msgctxt "Multisite active signup type"
227
- msgid "none"
228
- msgstr "なし"
229
-
230
- #: includes/class-theme-my-login-ms-signup.php:119
231
- msgctxt "Multisite active signup type"
232
- msgid "blog"
233
- msgstr "ブログ"
234
-
235
- #: includes/class-theme-my-login-ms-signup.php:120
236
- msgctxt "Multisite active signup type"
237
- msgid "user"
238
- msgstr "ユーザー"
239
-
240
- #: includes/class-theme-my-login-ms-signup.php:123
241
- msgid "Greetings Site Administrator! You are currently allowing &#8220;%s&#8221; registrations. To change or disable registration go to your <a href=\"%s\">Options page</a>."
242
- msgstr "サイト管理者さん、こんにちは ! 現在&#8220;%s&#8221; の登録を許可しています。登録を変更・無効化するには<a href=\"%s\">サイト設定</a>ページを開いてください。"
243
-
244
- # @ theme-my-login
245
- #: includes/class-theme-my-login-ms-signup.php:129
246
- msgid "Registration has been disabled."
247
- msgstr "登録は無効化されました。"
248
-
249
- #: includes/class-theme-my-login-ms-signup.php:131
250
- msgid "You must first <a href=\"%s\">log in</a>, and then you can create a new site."
251
- msgstr "新しいサイトを作成するには、まず<a href=\"%s\">ログイン</a>してください。"
252
-
253
- #: includes/class-theme-my-login-ms-signup.php:155
254
- msgid "%s is your new username"
255
- msgstr "新しいユーザー名は %s です"
256
-
257
- #: includes/class-theme-my-login-ms-signup.php:156
258
- msgid "But, before you can start using your new username, <strong>you must activate it</strong>."
259
- msgstr "ただし、新しいユーザー名を使用するには、<strong>このユーザー名を有効化する必要があります</strong>。"
260
-
261
- #: includes/class-theme-my-login-ms-signup.php:157
262
- msgid "Check your inbox at <strong>%1$s</strong> and click the link given."
263
- msgstr "<strong>%1$s</strong> の受信トレイを確認して、メールに記載されているリンクをクリックしてください。"
264
-
265
- #: includes/class-theme-my-login-ms-signup.php:158
266
- msgid "If you do not activate your username within two days, you will have to sign up again."
267
- msgstr "2日以内にユーザー名を有効化しなかった場合、再登録が必要になります。"
268
-
269
- # @ theme-my-login
270
- #: includes/class-theme-my-login-ms-signup.php:162
271
- msgid "User registration has been disabled."
272
- msgstr "ユーザー登録は無効化されました。"
273
-
274
- #: includes/class-theme-my-login-ms-signup.php:194
275
- msgid "Congratulations! Your new site, %s, is almost ready."
276
- msgstr "おめでとうございます ! 新しいサイト、%s の準備がほぼ整いました。"
277
-
278
- #: includes/class-theme-my-login-ms-signup.php:196
279
- msgid "But, before you can start using your site, <strong>you must activate it</strong>."
280
- msgstr "ただし、サイトを利用する前に<strong>有効化する必要があります</strong>。"
281
-
282
- #: includes/class-theme-my-login-ms-signup.php:197
283
- msgid "Check your inbox at <strong>%s</strong> and click the link given."
284
- msgstr "<strong>%s</strong> の受信トレイを確認して、メールに記載されているリンクをクリックしてください。"
285
-
286
- #: includes/class-theme-my-login-ms-signup.php:198
287
- msgid "If you do not activate your site within two days, you will have to sign up again."
288
- msgstr "2日以内にサイトを有効化しなかった場合、再登録が必要になります。"
289
-
290
- #: includes/class-theme-my-login-ms-signup.php:199
291
- msgid "Still waiting for your email?"
292
- msgstr "認証メールがまだ届いていませんか?"
293
-
294
- #: includes/class-theme-my-login-ms-signup.php:201
295
- msgid "If you haven&#8217;t received your email yet, there are a number of things you can do:"
296
- msgstr "確認メールがまだ届いていない場合、いくつか試せることがあります。"
297
-
298
- #: includes/class-theme-my-login-ms-signup.php:203
299
- msgid "Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control."
300
- msgstr "もう少々お待ちください。時々私たちがコントロールできない理由でメールの配達が遅れることがあります。"
301
-
302
- #: includes/class-theme-my-login-ms-signup.php:204
303
- msgid "Check the junk or spam folder of your email client. Sometime emails wind up there by mistake."
304
- msgstr "メールクライアントの迷惑メールやスパムメール受信箱を確認してみてください。ときどきメールが誤って処理されることがあります。"
305
-
306
- #: includes/class-theme-my-login-ms-signup.php:205
307
- msgid "Have you entered your email correctly? You have entered %s, if it&#8217;s incorrect, you will not receive your email."
308
- msgstr "正しいメールアドレスを入力しましたか ? 入力されたのは %s のようですが、間違っていた場合はメールが届きません。"
309
-
310
- # @ theme-my-login
311
- #: includes/class-theme-my-login-ms-signup.php:211
312
- msgid "Site registration has been disabled."
313
- msgstr "サイト登録は無効化されました。"
314
-
315
- #: includes/class-theme-my-login-ms-signup.php:235
316
- msgid "The site %s is yours."
317
- msgstr "このサイト %s があなたのサイトです。"
318
-
319
- #: includes/class-theme-my-login-ms-signup.php:237
320
- msgid "<a href=\"http://%1$s\">http://%2$s</a> is your new site. <a href=\"%3$s\">Log in</a> as &#8220;%4$s&#8221; using your existing password."
321
- msgstr "<a href=\"http://%1$s\">http://%2$s</a> があなたの新しいサイトです。お持ちのパスワードを使い、 &#8220;%4$s&#8221; として<a href=\"%3$s\">ログイン</a>してください。"
322
-
323
- # @ theme-my-login
324
- #: includes/class-theme-my-login-ms-signup.php:253
325
- msgid "Sorry, new registrations are not allowed at this time."
326
- msgstr "現在このサイトに新規登録することはできません。"
327
-
328
- #: includes/class-theme-my-login-ms-signup.php:255
329
- msgid "You are logged in already. No need to register again!"
330
- msgstr "すでにログインしています。再登録する必要はありません !"
331
-
332
- #: includes/class-theme-my-login-ms-signup.php:261
333
- msgid "<p><em>The site you were looking for, <strong>%s</strong> does not exist, but you can create it now!</em></p>"
334
- msgstr "<p><em>お探しのサイト、<strong>%s</strong> は見つかりませんでしたが、いますぐ作成できます !</em></p>"
335
-
336
- #: includes/class-theme-my-login-ms-signup.php:263
337
- msgid "<p><em>The site you were looking for, <strong>%s</strong>, does not exist.</em></p>"
338
- msgstr "<p><em>お探しのサイト、<strong>%s</strong> は見つかりませんでした。</em></p>"
339
-
340
- # @ theme-my-login
341
- #: includes/class-theme-my-login-ms-signup.php:402
342
- msgid "Activation Key Required"
343
- msgstr "有効化キーの入力"
344
-
345
- # @ theme-my-login
346
- #: includes/class-theme-my-login-ms-signup.php:405
347
- msgid "Activation Key:"
348
- msgstr "有効化キー:"
349
-
350
- # @ theme-my-login
351
- #: includes/class-theme-my-login-ms-signup.php:409
352
- #: includes/class-theme-my-login-ms-signup.php:481
353
- msgid "Activate"
354
- msgstr "有効化"
355
-
356
- #: includes/class-theme-my-login-ms-signup.php:421
357
- #: includes/class-theme-my-login-ms-signup.php:441
358
- msgid "Your account is now active!"
359
- msgstr "アカウント登録が完了しました !"
360
-
361
- #: includes/class-theme-my-login-ms-signup.php:425
362
- msgid "Your account has been activated. You may now <a href=\"%1$s\">login</a> to the site using your chosen username of &#8220;%2$s&#8221;. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%4$s\">reset your password</a>."
363
- msgstr "アカウントを有効化しました。ユーザー名 &#8220;%2$s&#8221; を使ってサイトに <a href=\"%1$s\">ログイン</a>できます。%3$s のメール受信箱をチェックし、パスワードとログイン方法を取得してください。このメールが届かない場合は、迷惑メールフォルダもチェックしてみてください。1時間以内にやはりメールが届いていなければ、<a href=\"%4$s\">パスワードをリセット</a>してみましょう。"
364
-
365
- #: includes/class-theme-my-login-ms-signup.php:427
366
- msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a>."
367
- msgstr "サイト <a href=\"%1$s\">%2$s</a> を有効化しました。ユーザー名 &#8220;%3$s&#8221; でログインできます。パスワードとログイン方法は %4$s へ届いたメールをご覧ください。メールが届かない場合は迷惑メールやスパムメール受信箱を確認してみてください。もし1時間以内にメールが来なければ、<a href=\"%5$s\">パスワードをリセット</a>できます。"
368
-
369
- #: includes/class-theme-my-login-ms-signup.php:432
370
- msgid "An error occurred during the activation"
371
- msgstr "有効化の途中でエラーが発生しました。"
372
-
373
- # @ theme-my-login
374
- #: includes/class-theme-my-login-ms-signup.php:444
375
- #: templates/ms-signup-user-form.php:16
376
- msgid "Username:"
377
- msgstr "ユーザー名:"
378
-
379
- # @ theme-my-login
380
- #: includes/class-theme-my-login-ms-signup.php:445
381
- #: modules/custom-passwords/custom-passwords.php:29
382
- #: modules/custom-passwords/custom-passwords.php:56
383
- msgid "Password:"
384
- msgstr "パスワード:"
385
-
386
- #: includes/class-theme-my-login-ms-signup.php:449
387
- msgid "Your account is now activated. <a href=\"%1$s\">View your site</a> or <a href=\"%2$s\">Login</a>"
388
- msgstr "アカウントを有効化しました。<a href=\"%1$s\">サイトを表示する</a>か<a href=\"%2$s\">ログイン</a>してください。"
389
-
390
- #: includes/class-theme-my-login-ms-signup.php:451
391
- msgid "Your account is now activated. <a href=\"%1$s\">Login</a> or go back to the <a href=\"%2$s\">homepage</a>."
392
- msgstr "アカウントを有効化しました。<a href=\"%1$s\">ログイン</a>するか、 <a href=\"%2$s\">ホームページ</a>に戻ってください。"
393
-
394
- # @ theme-my-login
395
- #: includes/class-theme-my-login-template.php:137
396
- msgid "Welcome, %s"
397
- msgstr "ようこそ、%s"
398
-
399
- # @ theme-my-login
400
- #: includes/class-theme-my-login-template.php:151
401
- #: includes/class-theme-my-login.php:540
402
- #: templates/login-form.php:28
403
- msgid "Log In"
404
- msgstr "ログイン"
405
-
406
- # @ theme-my-login
407
- #: includes/class-theme-my-login-template.php:315
408
- #: modules/custom-user-links/custom-user-links.php:82
409
- msgid "Dashboard"
410
- msgstr "ダッシュボード"
411
-
412
- # @ theme-my-login
413
- #: includes/class-theme-my-login-template.php:316
414
- #: modules/custom-user-links/custom-user-links.php:83
415
- #: modules/themed-profiles/admin/themed-profiles-admin.php:66
416
- msgid "Profile"
417
- msgstr "プロフィール"
418
-
419
- # @ theme-my-login
420
- #: includes/class-theme-my-login-template.php:334
421
- #: modules/custom-redirection/custom-redirection.php:197
422
- msgid "Log out"
423
- msgstr "ログアウト"
424
-
425
- # @ theme-my-login
426
- #: includes/class-theme-my-login-template.php:363
427
- msgid "Register For This Site"
428
- msgstr "このサイトに登録"
429
-
430
- # @ theme-my-login
431
- #: includes/class-theme-my-login-template.php:366
432
- msgid "Please enter your username or email address. You will receive a link to create a new password via email."
433
- msgstr "ユーザー名またはメールアドレスを入力してください。新しいパスワードを作成するためのリンクをメールでお送りします。"
434
-
435
- # @ theme-my-login
436
- #: includes/class-theme-my-login-template.php:369
437
- msgid "Enter your new password below."
438
- msgstr "新しいパスワードを以下に入力してください。"
439
-
440
- # @ theme-my-login
441
- #: includes/class-theme-my-login-widget.php:23
442
- msgid "A login form for your blog."
443
- msgstr "ブログのログインフォーム"
444
-
445
- # @ theme-my-login
446
- #: includes/class-theme-my-login-widget.php:88
447
- msgid "Default Action"
448
- msgstr "デフォルトのアクション"
449
-
450
- # @ theme-my-login
451
- #: includes/class-theme-my-login-widget.php:95
452
- msgid "Show When Logged In"
453
- msgstr "ログイン時に表示"
454
-
455
- # @ theme-my-login
456
- #: includes/class-theme-my-login-widget.php:97
457
- msgid "Show Title"
458
- msgstr "タイトルを表示する"
459
-
460
- # @ theme-my-login
461
- #: includes/class-theme-my-login-widget.php:99
462
- msgid "Show Login Link"
463
- msgstr "ログインリンクを表示"
464
-
465
- # @ theme-my-login
466
- #: includes/class-theme-my-login-widget.php:101
467
- msgid "Show Register Link"
468
- msgstr "登録リンクを表示"
469
-
470
- # @ theme-my-login
471
- #: includes/class-theme-my-login-widget.php:103
472
- msgid "Show Lost Password Link"
473
- msgstr "パスワード紛失時のリンクを表示"
474
-
475
- # @ theme-my-login
476
- #: includes/class-theme-my-login-widget.php:105
477
- msgid "Show Gravatar"
478
- msgstr "Gravatarを表示"
479
-
480
- # @ theme-my-login
481
- #: includes/class-theme-my-login-widget.php:106
482
- msgid "Gravatar Size"
483
- msgstr "Gravatarのサイズ"
484
-
485
- # @ theme-my-login
486
- #: includes/class-theme-my-login-widget.php:108
487
- msgid "Allow Registration"
488
- msgstr "登録を許可"
489
-
490
- # @ theme-my-login
491
- #: includes/class-theme-my-login-widget.php:110
492
- msgid "Allow Password Recovery"
493
- msgstr "パスワードの回復を許可する"
494
-
495
- # @ theme-my-login
496
- #: includes/class-theme-my-login.php:245
497
- msgid "Sorry, that key does not appear to be valid."
498
- msgstr "申し訳ありませんが、そのキーは有効ではありません。"
499
-
500
- # @ theme-my-login
501
- #: includes/class-theme-my-login.php:261
502
- msgid "The passwords do not match."
503
- msgstr "パスワードが一致しません。"
504
-
505
- # @ theme-my-login
506
- #: includes/class-theme-my-login.php:367
507
- msgid "<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href=\"http://www.google.com/cookies.html\">enable cookies</a> to use WordPress."
508
- msgstr "<strong>エラー</strong>:クッキーがブロックされているか、もしくはお使いのブラウザではクッキーがサポートされていません。WordPressを使用するためには、<a href=\"http://www.google.com/cookies.html\">クッキーを有効にする</a>必要があります。"
509
-
510
- # @ theme-my-login
511
- #: includes/class-theme-my-login.php:371
512
- msgid "You are now logged out."
513
- msgstr "あなたは現在、ログアウト中です"
514
-
515
- # @ theme-my-login
516
- #: includes/class-theme-my-login.php:373
517
- msgid "User registration is currently not allowed."
518
- msgstr "ユーザー登録は現在許可されていません。"
519
-
520
- # @ theme-my-login
521
- #: includes/class-theme-my-login.php:375
522
- msgid "Check your e-mail for the confirmation link."
523
- msgstr "メールをチェックして、確認用のリンクをクリックしてください"
524
-
525
- # @ theme-my-login
526
- #: includes/class-theme-my-login.php:377
527
- msgid "Your password has been reset."
528
- msgstr "パスワードをリセットしました。"
529
-
530
- # @ theme-my-login
531
- #: includes/class-theme-my-login.php:379
532
- msgid "Registration complete. Please check your e-mail."
533
- msgstr "登録が完了しました。メールをチェックしてください。"
534
-
535
- # @ theme-my-login
536
- #: includes/class-theme-my-login.php:381
537
- msgid "Your session has expired. Please log-in again."
538
- msgstr "セッションが期限切れになっています。ログインし直して下さい。"
539
-
540
- #: includes/class-theme-my-login.php:383
541
- msgid "Please log in to continue."
542
- msgstr "続行するにはログインしてください。"
543
-
544
- # @ theme-my-login
545
- #: includes/class-theme-my-login.php:540
546
- msgid "Log Out"
547
- msgstr "ログアウト"
548
-
549
- # @ theme-my-login
550
- #: includes/class-theme-my-login.php:925
551
- msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
552
- msgstr "<strong>エラー</strong> :ユーザー名またはメールアドレスを入力してください"
553
-
554
- # @ theme-my-login
555
- #: includes/class-theme-my-login.php:929
556
- msgid "<strong>ERROR</strong>: There is no user registered with that email address."
557
- msgstr "<strong>エラー</strong> :既に登録済みのメールアドレスです"
558
-
559
- # @ theme-my-login
560
- #: includes/class-theme-my-login.php:941
561
- msgid "<strong>ERROR</strong>: Invalid username or e-mail."
562
- msgstr "<strong>エラー</strong> :無効なユーザー名または電子メールです"
563
-
564
- # @ theme-my-login
565
- #: includes/class-theme-my-login.php:955
566
- msgid "Password reset is not allowed for this user"
567
- msgstr "パスワードのリセットは、このユーザーに許可されていません"
568
-
569
- # @ theme-my-login
570
- #: includes/class-theme-my-login.php:967
571
- msgid "Someone requested that the password be reset for the following account:"
572
- msgstr "だれかが次のアカウントのパスワードリセットをリクエストしました:"
573
-
574
- # @ theme-my-login
575
- #: includes/class-theme-my-login.php:969
576
- #: modules/custom-email/custom-email.php:692
577
- #: modules/custom-email/custom-email.php:709
578
- #: modules/user-moderation/admin/user-moderation-admin.php:164
579
- #: modules/user-moderation/user-moderation.php:365
580
- msgid "Username: %s"
581
- msgstr "ユーザー名:%s"
582
-
583
- # @ theme-my-login
584
- #: includes/class-theme-my-login.php:970
585
- msgid "If this was a mistake, just ignore this email and nothing will happen."
586
- msgstr "もしこれが間違いだった場合は、このメールを無視すれば何も起こりません。"
587
-
588
- # @ theme-my-login
589
- #: includes/class-theme-my-login.php:971
590
- msgid "To reset your password, visit the following address:"
591
- msgstr "パスワードをリセットするには、以下へアクセスしてください。"
592
-
593
- # @ theme-my-login
594
- #: includes/class-theme-my-login.php:982
595
- msgid "[%s] Password Reset"
596
- msgstr "[%s] パスワードをリセット"
597
-
598
- # @ theme-my-login
599
- #: includes/class-theme-my-login.php:988
600
- #: modules/user-moderation/admin/user-moderation-admin.php:53
601
- #: modules/user-moderation/admin/user-moderation-admin.php:174
602
- #: modules/user-moderation/admin/user-moderation-admin.php:210
603
- msgid "The e-mail could not be sent."
604
- msgstr "メールは送信できませんでした"
605
-
606
- # @ theme-my-login
607
- #: includes/class-theme-my-login.php:988
608
- #: modules/user-moderation/admin/user-moderation-admin.php:53
609
- #: modules/user-moderation/admin/user-moderation-admin.php:174
610
- #: modules/user-moderation/admin/user-moderation-admin.php:210
611
- msgid "Possible reason: your host may have disabled the mail() function..."
612
- msgstr "考えられる理由:ホストが mail() 関数を無効にしています"
613
-
614
- # @ theme-my-login
615
- #: includes/class-theme-my-login.php:1011
616
- #: includes/class-theme-my-login.php:1014
617
- #: includes/class-theme-my-login.php:1019
618
- #: modules/user-moderation/user-moderation.php:238
619
- #: modules/user-moderation/user-moderation.php:241
620
- #: modules/user-moderation/user-moderation.php:246
621
- msgid "Invalid key"
622
- msgstr "無効キー"
623
-
624
- # @ theme-my-login
625
- #: includes/class-theme-my-login.php:1059
626
- msgid "<strong>ERROR</strong>: Please enter a username."
627
- msgstr "<strong>エラー</strong> :ユーザー名を入力してください"
628
-
629
- # @ theme-my-login
630
- #: includes/class-theme-my-login.php:1061
631
- msgid "<strong>ERROR</strong>: This username is invalid because it uses illegal characters. Please enter a valid username."
632
- msgstr "<strong>エラー</strong>:このユーザー名は不正な文字が含まれているため無効です。有効なユーザー名を入力して下さい。"
633
-
634
- # @ theme-my-login
635
- #: includes/class-theme-my-login.php:1064
636
- msgid "<strong>ERROR</strong>: This username is already registered, please choose another one."
637
- msgstr "<strong>エラー</strong> :このユーザー名はすでに登録されています。別のユーザー名を入力してください。"
638
-
639
- # @ theme-my-login
640
- #: includes/class-theme-my-login.php:1069
641
- msgid "<strong>ERROR</strong>: Please type your e-mail address."
642
- msgstr "<strong>エラー</strong> :メールアドレスを入力してください"
643
-
644
- # @ theme-my-login
645
- #: includes/class-theme-my-login.php:1071
646
- msgid "<strong>ERROR</strong>: The email address isn&#8217;t correct."
647
- msgstr "<strong>エラー</strong> :メールアドレスが正しくありません"
648
-
649
- # @ theme-my-login
650
- #: includes/class-theme-my-login.php:1074
651
- msgid "<strong>ERROR</strong>: This email is already registered, please choose another one."
652
- msgstr "<strong>エラー</strong> :このメールアドレスは、既に登録されています。別のメールアドレスを入力してください。"
653
-
654
- # @ theme-my-login
655
- #: includes/class-theme-my-login.php:1087
656
- msgid "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href=\"mailto:%s\">webmaster</a> !"
657
- msgstr "<strong>エラー</strong> :登録できませんでした。<a href=\"mailto:%s\">管理者r</a> にお問合せください。"
658
-
659
- # @ theme-my-login
660
- #: modules/custom-email/admin/custom-email-admin.php:46
661
- #: modules/custom-email/admin/custom-email-admin.php:265
662
- msgid "User Notification"
663
- msgstr "ユーザー通知"
664
-
665
- # @ theme-my-login
666
- #: modules/custom-email/admin/custom-email-admin.php:49
667
- msgid "This e-mail will be sent to a new user upon registration."
668
- msgstr "このメールは、新規ユーザー登録時に送信されます。"
669
-
670
- # @ theme-my-login
671
- #: modules/custom-email/admin/custom-email-admin.php:50
672
- #: modules/custom-email/admin/custom-email-admin.php:269
673
- msgid "Please be sure to include the variable %user_pass% if using default passwords or else the user will not know their password!"
674
- msgstr "変数 %user_pass% を含めるようにしてください。でないと、ユーザーは自分のパスワードを知る事が出来ません!"
675
-
676
- # @ theme-my-login
677
- #: modules/custom-email/admin/custom-email-admin.php:51
678
- #: modules/custom-email/admin/custom-email-admin.php:81
679
- #: modules/custom-email/admin/custom-email-admin.php:130
680
- #: modules/custom-email/admin/custom-email-admin.php:175
681
- #: modules/custom-email/admin/custom-email-admin.php:224
682
- #: modules/custom-email/admin/custom-email-admin.php:270
683
- #: modules/custom-email/admin/custom-email-admin.php:300
684
- #: modules/custom-email/admin/custom-email-admin.php:348
685
- msgid "If any field is left empty, the default will be used instead."
686
- msgstr "任意のフィールドを空のままにしている場合は、デフォルトの内容が代わりに使用されます。"
687
-
688
- # @ theme-my-login
689
- #: modules/custom-email/admin/custom-email-admin.php:54
690
- #: modules/custom-email/admin/custom-email-admin.php:87
691
- #: modules/custom-email/admin/custom-email-admin.php:133
692
- #: modules/custom-email/admin/custom-email-admin.php:181
693
- #: modules/custom-email/admin/custom-email-admin.php:227
694
- #: modules/custom-email/admin/custom-email-admin.php:273
695
- #: modules/custom-email/admin/custom-email-admin.php:306
696
- #: modules/custom-email/admin/custom-email-admin.php:351
697
- msgid "From Name"
698
- msgstr "送信者名"
699
-
700
- # @ theme-my-login
701
- #: modules/custom-email/admin/custom-email-admin.php:57
702
- #: modules/custom-email/admin/custom-email-admin.php:90
703
- #: modules/custom-email/admin/custom-email-admin.php:136
704
- #: modules/custom-email/admin/custom-email-admin.php:184
705
- #: modules/custom-email/admin/custom-email-admin.php:230
706
- #: modules/custom-email/admin/custom-email-admin.php:276
707
- #: modules/custom-email/admin/custom-email-admin.php:309
708
- #: modules/custom-email/admin/custom-email-admin.php:354
709
- msgid "From E-mail"
710
- msgstr "メール送信元"
711
-
712
- # @ theme-my-login
713
- #: modules/custom-email/admin/custom-email-admin.php:60
714
- #: modules/custom-email/admin/custom-email-admin.php:93
715
- #: modules/custom-email/admin/custom-email-admin.php:139
716
- #: modules/custom-email/admin/custom-email-admin.php:187
717
- #: modules/custom-email/admin/custom-email-admin.php:233
718
- #: modules/custom-email/admin/custom-email-admin.php:279
719
- #: modules/custom-email/admin/custom-email-admin.php:312
720
- #: modules/custom-email/admin/custom-email-admin.php:357
721
- msgid "E-mail Format"
722
- msgstr "メールの形式"
723
-
724
- #: modules/custom-email/admin/custom-email-admin.php:62
725
- #: modules/custom-email/admin/custom-email-admin.php:95
726
- #: modules/custom-email/admin/custom-email-admin.php:141
727
- #: modules/custom-email/admin/custom-email-admin.php:189
728
- #: modules/custom-email/admin/custom-email-admin.php:235
729
- #: modules/custom-email/admin/custom-email-admin.php:281
730
- #: modules/custom-email/admin/custom-email-admin.php:314
731
- #: modules/custom-email/admin/custom-email-admin.php:359
732
- msgid "Plain Text"
733
- msgstr "プレーンテキスト"
734
-
735
- #: modules/custom-email/admin/custom-email-admin.php:63
736
- #: modules/custom-email/admin/custom-email-admin.php:96
737
- #: modules/custom-email/admin/custom-email-admin.php:142
738
- #: modules/custom-email/admin/custom-email-admin.php:190
739
- #: modules/custom-email/admin/custom-email-admin.php:236
740
- #: modules/custom-email/admin/custom-email-admin.php:282
741
- #: modules/custom-email/admin/custom-email-admin.php:315
742
- #: modules/custom-email/admin/custom-email-admin.php:360
743
- msgid "HTML"
744
- msgstr "HTML"
745
-
746
- # @ theme-my-login
747
- #: modules/custom-email/admin/custom-email-admin.php:66
748
- #: modules/custom-email/admin/custom-email-admin.php:99
749
- #: modules/custom-email/admin/custom-email-admin.php:145
750
- #: modules/custom-email/admin/custom-email-admin.php:193
751
- #: modules/custom-email/admin/custom-email-admin.php:239
752
- #: modules/custom-email/admin/custom-email-admin.php:285
753
- #: modules/custom-email/admin/custom-email-admin.php:318
754
- #: modules/custom-email/admin/custom-email-admin.php:363
755
- msgid "Subject"
756
- msgstr "件名"
757
-
758
- # @ theme-my-login
759
- #: modules/custom-email/admin/custom-email-admin.php:69
760
- #: modules/custom-email/admin/custom-email-admin.php:102
761
- #: modules/custom-email/admin/custom-email-admin.php:148
762
- #: modules/custom-email/admin/custom-email-admin.php:196
763
- #: modules/custom-email/admin/custom-email-admin.php:242
764
- #: modules/custom-email/admin/custom-email-admin.php:288
765
- #: modules/custom-email/admin/custom-email-admin.php:321
766
- #: modules/custom-email/admin/custom-email-admin.php:366
767
- msgid "Message"
768
- msgstr "メッセージ"
769
-
770
- # @ theme-my-login
771
- #: modules/custom-email/admin/custom-email-admin.php:72
772
- #: modules/custom-email/admin/custom-email-admin.php:105
773
- #: modules/custom-email/admin/custom-email-admin.php:151
774
- #: modules/custom-email/admin/custom-email-admin.php:199
775
- #: modules/custom-email/admin/custom-email-admin.php:245
776
- #: modules/custom-email/admin/custom-email-admin.php:291
777
- #: modules/custom-email/admin/custom-email-admin.php:324
778
- #: modules/custom-email/admin/custom-email-admin.php:369
779
- msgid "Available Variables"
780
- msgstr "利用可能な変数"
781
-
782
- # @ theme-my-login
783
- #: modules/custom-email/admin/custom-email-admin.php:77
784
- #: modules/custom-email/admin/custom-email-admin.php:171
785
- #: modules/custom-email/admin/custom-email-admin.php:296
786
- msgid "Admin Notification"
787
- msgstr "管理者通知"
788
-
789
- # @ theme-my-login
790
- #: modules/custom-email/admin/custom-email-admin.php:80
791
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon new user registration."
792
- msgstr "このメールは新しいユーザの登録時に、下の指定されたメールアドレス(複数の場合はカンマで区切ることができます)に送信されます。"
793
-
794
- # @ theme-my-login
795
- #: modules/custom-email/admin/custom-email-admin.php:84
796
- #: modules/custom-email/admin/custom-email-admin.php:178
797
- #: modules/custom-email/admin/custom-email-admin.php:303
798
- msgid "To"
799
- msgstr "宛先"
800
-
801
- # @ theme-my-login
802
- #: modules/custom-email/admin/custom-email-admin.php:128
803
- msgid "This e-mail will be sent to a user when they attempt to recover their password."
804
- msgstr "このメールは、ユーザーが自分のパスワードを回復しようとする時に送信されます。"
805
-
806
- # @ theme-my-login
807
- #: modules/custom-email/admin/custom-email-admin.php:129
808
- msgid "Please be sure to include the variable %reseturl% or else the user will not be able to recover their password!"
809
- msgstr "変数 %reseturl% を含めるようにして下さい。ユーザーが自分のパスワードを回復することができません!"
810
-
811
- # @ theme-my-login
812
- #: modules/custom-email/admin/custom-email-admin.php:174
813
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon user password change."
814
- msgstr "このメールはユーザーパスワードが変更された時に、下の指定されたメールアドレス(複数の場合はカンマで区切ることができます)に送信されます。"
815
-
816
- # @ theme-my-login
817
- #: modules/custom-email/admin/custom-email-admin.php:201
818
- #: modules/custom-email/admin/custom-email-admin.php:326
819
- msgid "Disable Admin Notification"
820
- msgstr "管理者通知を無効にする"
821
-
822
- # @ theme-my-login
823
- #: modules/custom-email/admin/custom-email-admin.php:222
824
- msgid "This e-mail will be sent to a new user upon registration when \"E-mail Confirmation\" is checked for \"User Moderation\"."
825
- msgstr "この電子メールは、\"ユーザー承認\" で\"メールでの確認\" にチェックをしている場合、新しいユーザー登録があったときに送信されます。"
826
-
827
- # @ theme-my-login
828
- #: modules/custom-email/admin/custom-email-admin.php:223
829
- msgid "Please be sure to include the variable %activateurl% or else the user will not be able to activate their account!"
830
- msgstr "変数 %activateurl% を含めて下さい。含まれていないと、ユーザーがアカウントを有効にできません。"
831
-
832
- # @ theme-my-login
833
- #: modules/custom-email/admin/custom-email-admin.php:268
834
- msgid "This e-mail will be sent to a new user upon admin approval when \"Admin Approval\" is checked for \"User Moderation\"."
835
- msgstr "この電子メールは、\"ユーザー承認\" で \"管理者承認\" にチェックしている場合、ユーザーが登録した際に送信されます。"
836
-
837
- # @ theme-my-login
838
- #: modules/custom-email/admin/custom-email-admin.php:299
839
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below upon user registration when \"Admin Approval\" is checked for \"User Moderation\"."
840
- msgstr "このメールは、\"ユーザー承認\"で\"管理者承認\"にチェックが入っている場合、ユーザー登録時に指定されたメールアドレス(複数のアドレスの場合はカンマで区切る必要があります)に送信されます。"
841
-
842
- # @ theme-my-login
843
- #: modules/custom-email/admin/custom-email-admin.php:347
844
- msgid "This e-mail will be sent to a user who is deleted/denied when \"Admin Approval\" is checked for \"User Moderation\" and the user's role is \"Pending\"."
845
- msgstr "このメールは\"ユーザー承認\"で\"管理者承認\" にチェックを入れた場合、\"Pending\" のユーザを削除/拒否した時に送信されます"
846
-
847
- # @ theme-my-login
848
- #: modules/custom-email/admin/custom-email-admin.php:390
849
- #: templates/profile-form.php:143
850
- #: templates/register-form.php:16
851
- msgid "E-mail"
852
- msgstr "メール"
853
-
854
- # @ theme-my-login
855
- #: modules/custom-email/admin/custom-email-admin.php:391
856
- msgid "New User"
857
- msgstr "新規ユーザー"
858
-
859
- # @ theme-my-login
860
- #: modules/custom-email/admin/custom-email-admin.php:392
861
- msgid "Retrieve Password"
862
- msgstr "パスワードを取得"
863
-
864
- # @ theme-my-login
865
- #: modules/custom-email/admin/custom-email-admin.php:393
866
- #: templates/resetpass-form.php:26
867
- msgid "Reset Password"
868
- msgstr "パスワードのリセット"
869
-
870
- # @ theme-my-login
871
- #: modules/custom-email/admin/custom-email-admin.php:395
872
- msgid "User Activation"
873
- msgstr "ユーザ認証"
874
-
875
- # @ theme-my-login
876
- #: modules/custom-email/admin/custom-email-admin.php:396
877
- msgid "User Approval"
878
- msgstr "ユーザー承認"
879
-
880
- # @ theme-my-login
881
- #: modules/custom-email/admin/custom-email-admin.php:397
882
- msgid "User Denial"
883
- msgstr "ユーザ拒否"
884
-
885
- # @ theme-my-login
886
- #: modules/custom-email/custom-email.php:691
887
- msgid "New user registration on your site %s:"
888
- msgstr "新しいユーザーがあなたのサイト%sに登録されました:"
889
-
890
- # @ theme-my-login
891
- #: modules/custom-email/custom-email.php:693
892
- #: modules/user-moderation/user-moderation.php:366
893
- msgid "E-mail: %s"
894
- msgstr "メールアドレス:%s"
895
-
896
- # @ theme-my-login
897
- #: modules/custom-email/custom-email.php:695
898
- msgid "[%s] New User Registration"
899
- msgstr "[%s] 新規ユーザー登録"
900
-
901
- # @ theme-my-login
902
- #: modules/custom-email/custom-email.php:710
903
- #: modules/user-moderation/admin/user-moderation-admin.php:165
904
- msgid "Password: %s"
905
- msgstr "パスワード:%s"
906
-
907
- # @ theme-my-login
908
- #: modules/custom-email/custom-email.php:713
909
- msgid "[%s] Your username and password"
910
- msgstr "[%s] ユーザ名とパスワード"
911
-
912
- # @ default
913
- #: modules/custom-email/custom-email.php:745
914
- msgid "[%s] Password Lost/Changed"
915
- msgstr "[%s] パスワード紛失/変更"
916
-
917
- # @ default
918
- #: modules/custom-email/custom-email.php:746
919
- msgid "Password Lost and Changed for user: %s"
920
- msgstr "パスワードを忘れました。またはユーザーの変更:%s"
921
-
922
- # @ theme-my-login
923
- #: modules/custom-passwords/custom-passwords.php:31
924
- #: modules/custom-passwords/custom-passwords.php:63
925
- msgid "Confirm Password:"
926
- msgstr "パスワードの確認:"
927
-
928
- #: modules/custom-passwords/custom-passwords.php:61
929
- msgid "(Must be at least 6 characters.)"
930
- msgstr "(少なくとも6文字でなければなりません。)"
931
-
932
- #: modules/custom-passwords/custom-passwords.php:65
933
- msgid "Confirm that you've typed your password correctly."
934
- msgstr "パスワードを正しく入力したことを確認します。"
935
-
936
- # @ theme-my-login
937
- #: modules/custom-passwords/custom-passwords.php:103
938
- msgid "<strong>ERROR</strong>: Please enter a password."
939
- msgstr "<strong>エラー</strong> :パスワードを入力してください"
940
-
941
- # @ theme-my-login
942
- #: modules/custom-passwords/custom-passwords.php:106
943
- msgid "<strong>ERROR</strong>: Your passwords do not match."
944
- msgstr "<strong>エラー</strong> :パスワードが一致しません。"
945
-
946
- # @ theme-my-login
947
- #: modules/custom-passwords/custom-passwords.php:109
948
- msgid "<strong>ERROR</strong>: Your password must be at least 6 characters in length."
949
- msgstr "<strong>エラー</strong> :パスワードの長さは6文字以上でなければなりません。"
950
-
951
- # @ theme-my-login
952
- #: modules/custom-passwords/custom-passwords.php:230
953
- msgid "Registration complete. You may now log in."
954
- msgstr "登録が完了しました。あなたはログイン中です。"
955
-
956
- # @ theme-my-login
957
- #: modules/custom-redirection/custom-redirection.php:156
958
- msgid "Redirection"
959
- msgstr "リダイレクト"
960
-
961
- # @ theme-my-login
962
- #: modules/custom-redirection/custom-redirection.php:185
963
- msgid "Log in"
964
- msgstr "ログイン"
965
-
966
- # @ theme-my-login
967
- #: modules/custom-redirection/custom-redirection.php:187
968
- #: modules/custom-redirection/custom-redirection.php:199
969
- msgid "Default"
970
- msgstr "デフォルト"
971
-
972
- # @ theme-my-login
973
- #: modules/custom-redirection/custom-redirection.php:188
974
- msgid "Check this option to send the user to their WordPress Dashboard/Profile."
975
- msgstr "このオプションは、ユーザーを WordPress のダッシュボード/プロフィールページに移動させます"
976
-
977
- # @ theme-my-login
978
- #: modules/custom-redirection/custom-redirection.php:189
979
- #: modules/custom-redirection/custom-redirection.php:201
980
- msgid "Referer"
981
- msgstr "リファラ"
982
-
983
- # @ theme-my-login
984
- #: modules/custom-redirection/custom-redirection.php:190
985
- msgid "Check this option to send the user back to the page they were visiting before logging in."
986
- msgstr "このオプションは、ユーザーをログインする前に訪れていたページへ戻します"
987
-
988
- # @ theme-my-login
989
- #: modules/custom-redirection/custom-redirection.php:193
990
- #: modules/custom-redirection/custom-redirection.php:205
991
- msgid "Check this option to send the user to a custom location, specified by the textbox above."
992
- msgstr "このオプションは、ユーザーをテキストボックス上で指定したカスタムの場所に移動します。"
993
-
994
- # @ theme-my-login
995
- #: modules/custom-redirection/custom-redirection.php:200
996
- msgid "Check this option to send the user to the log in page, displaying a message that they have successfully logged out."
997
- msgstr "このオプションは、ユーザーをログインページへ移動し、ログアウトした旨のメッセージを表示します"
998
-
999
- # @ theme-my-login
1000
- #: modules/custom-redirection/custom-redirection.php:202
1001
- msgid "Check this option to send the user back to the page they were visiting before logging out. (Note: If the previous page being visited was an admin page, this can have unexpected results.)"
1002
- msgstr "このオプションは、ログアウトする前に訪れていたページにユーザーを移動させます。 (注:前のページが管理画面の場合は起きることがあります)"
1003
-
1004
- # @ theme-my-login
1005
- #: modules/custom-user-links/admin/custom-user-links-admin.php:140
1006
- msgid "User Links"
1007
- msgstr "ユーザーリンク"
1008
-
1009
- # @ theme-my-login
1010
- #: modules/custom-user-links/admin/custom-user-links-admin.php:232
1011
- #: modules/custom-user-links/admin/custom-user-links-admin.php:255
1012
- #: modules/custom-user-links/admin/custom-user-links-admin.php:300
1013
- msgid "Title"
1014
- msgstr "タイトル"
1015
-
1016
- # @ theme-my-login
1017
- #: modules/custom-user-links/admin/custom-user-links-admin.php:233
1018
- #: modules/custom-user-links/admin/custom-user-links-admin.php:256
1019
- #: modules/custom-user-links/admin/custom-user-links-admin.php:304
1020
- msgid "URL"
1021
- msgstr "URL"
1022
-
1023
- # @ theme-my-login
1024
- #: modules/custom-user-links/admin/custom-user-links-admin.php:250
1025
- msgid "Add New link:"
1026
- msgstr "新規リンク追加:"
1027
-
1028
- # @ theme-my-login
1029
- #: modules/custom-user-links/admin/custom-user-links-admin.php:266
1030
- msgid "Add link"
1031
- msgstr "リンクを追加"
1032
-
1033
- # @ default
1034
- #: modules/custom-user-links/admin/custom-user-links-admin.php:306
1035
- msgid "Delete"
1036
- msgstr "削除"
1037
-
1038
- # @ default
1039
- #: modules/custom-user-links/admin/custom-user-links-admin.php:307
1040
- msgid "Update"
1041
- msgstr "更新"
1042
-
1043
- # @ theme-my-login
1044
- #: modules/security/admin/security-admin.php:32
1045
- #: modules/security/admin/security-admin.php:35
1046
- #: modules/user-moderation/admin/user-moderation-admin.php:34
1047
- #: modules/user-moderation/admin/user-moderation-admin.php:44
1048
- msgid "You can&#8217;t edit that user."
1049
- msgstr "あなたは、ユーザーを編集することはできません。"
1050
-
1051
- # @ theme-my-login
1052
- #: modules/security/admin/security-admin.php:67
1053
- msgid "User locked."
1054
- msgstr "ユーザーをロックしました"
1055
-
1056
- # @ theme-my-login
1057
- #: modules/security/admin/security-admin.php:69
1058
- msgid "User unlocked."
1059
- msgstr "ユーザーのロックを解除しました"
1060
-
1061
- # @ theme-my-login
1062
- #: modules/security/admin/security-admin.php:92
1063
- msgid "Unlock"
1064
- msgstr "ロック解除"
1065
-
1066
- # @ theme-my-login
1067
- #: modules/security/admin/security-admin.php:94
1068
- msgid "Lock"
1069
- msgstr "ロック"
1070
-
1071
- # @ theme-my-login
1072
- #: modules/security/admin/security-admin.php:113
1073
- msgid "Security"
1074
- msgstr "セキュリティ"
1075
-
1076
- #: modules/security/admin/security-admin.php:132
1077
- msgid "Private Site"
1078
- msgstr "プライベートサイト"
1079
-
1080
- #: modules/security/admin/security-admin.php:135
1081
- msgid "Require users to be logged in to view site"
1082
- msgstr "に記録するように、ユーザーがサイトを表示する必要が"
1083
-
1084
- # @ theme-my-login
1085
- #: modules/security/admin/security-admin.php:139
1086
- msgid "Login Attempts"
1087
- msgstr "ログインを試行"
1088
-
1089
- # @ theme-my-login
1090
- #: modules/security/admin/security-admin.php:144
1091
- msgid "minute(s)"
1092
- msgstr "分"
1093
-
1094
- # @ theme-my-login
1095
- #: modules/security/admin/security-admin.php:145
1096
- msgid "hour(s)"
1097
- msgstr "時間"
1098
-
1099
- # @ theme-my-login
1100
- #: modules/security/admin/security-admin.php:146
1101
- msgid "day(s)"
1102
- msgstr "日"
1103
-
1104
- # @ theme-my-login
1105
- #: modules/security/admin/security-admin.php:169
1106
- msgid "After %1$s failed login attempts within %2$s %3$s, lockout the account for %4$s %5$s."
1107
- msgstr "%2$s %3$s 以内に%1$s回ログインに失敗した場合、%4$s %5$s アカウントをロックします。"
1108
-
1109
- # @ theme-my-login
1110
- #: modules/security/security.php:64
1111
- #: modules/security/security.php:90
1112
- msgid "<strong>ERROR</strong>: This account has been locked because of too many failed login attempts. You may try again in %s."
1113
- msgstr "<strong>エラー</strong>:このアカウントは多数のログイン失敗があったためロックされました。%sから再度ログインして下さい。"
1114
-
1115
- # @ theme-my-login
1116
- #: modules/security/security.php:66
1117
- msgid "<strong>ERROR</strong>: This account has been locked."
1118
- msgstr "<strong>エラー</strong>:このアカウントはロックされています。"
1119
-
1120
- # @ theme-my-login
1121
- #: modules/security/security.php:126
1122
- msgid "Failed Login Attempts"
1123
- msgstr "ログイン失敗"
1124
-
1125
- #: modules/security/security.php:130
1126
- msgid "IP Address"
1127
- msgstr "IPアドレス"
1128
-
1129
- #: modules/security/security.php:131
1130
- msgid "Date"
1131
- msgstr "日時"
1132
-
1133
- #: modules/security/security.php:134
1134
- msgid "Y/m/d g:i:s A"
1135
- msgstr "Y年n月j日 g:i:s a"
1136
-
1137
- #: modules/security/security.php:139
1138
- msgid "%s ago"
1139
- msgstr "%s 前に"
1140
-
1141
- #: modules/security/security.php:141
1142
- msgid "Y/m/d"
1143
- msgstr "Y年n月j日"
1144
-
1145
- # @ theme-my-login
1146
- #: modules/themed-profiles/admin/themed-profiles-admin.php:23
1147
- #: modules/themed-profiles/admin/themed-profiles-admin.php:42
1148
- msgid "Themed Profiles"
1149
- msgstr "をテーマにしたプロファイル"
1150
-
1151
- #: modules/themed-profiles/admin/themed-profiles-admin.php:51
1152
- msgid "Restrict Admin Access"
1153
- msgstr "管理者のアクセスを制限する"
1154
-
1155
- # @ theme-my-login
1156
- #: modules/themed-profiles/themed-profiles.php:123
1157
- #: templates/profile-form.php:182
1158
- #: templates/resetpass-form.php:19
1159
- msgid "Strength indicator"
1160
- msgstr "強度インジケータ"
1161
-
1162
- # @ theme-my-login
1163
- #: modules/themed-profiles/themed-profiles.php:124
1164
- msgid "Very weak"
1165
- msgstr "とても弱い"
1166
-
1167
- # @ theme-my-login
1168
- #: modules/themed-profiles/themed-profiles.php:125
1169
- msgid "Weak"
1170
- msgstr "弱い"
1171
-
1172
- # @ theme-my-login
1173
- #. translators: password strength
1174
- #: modules/themed-profiles/themed-profiles.php:127
1175
- msgctxt "password strength"
1176
- msgid "Medium"
1177
- msgstr "普通"
1178
-
1179
- # @ theme-my-login
1180
- #: modules/themed-profiles/themed-profiles.php:128
1181
- msgid "Strong"
1182
- msgstr "強い"
1183
-
1184
- # @ theme-my-login
1185
- #: modules/themed-profiles/themed-profiles.php:138
1186
- msgid "You do not have permission to edit this user."
1187
- msgstr "あなたはこのユーザーを編集する権限がありません。"
1188
-
1189
- # @ theme-my-login
1190
- #: modules/themed-profiles/themed-profiles.php:154
1191
- msgid "Profile updated."
1192
- msgstr "プロフィールを更新しました。"
1193
-
1194
- # @ theme-my-login
1195
- #: modules/themed-profiles/themed-profiles.php:243
1196
- msgid "Your Profile"
1197
- msgstr "あなたのプロフィール"
1198
-
1199
- # @ theme-my-login
1200
- #: modules/user-moderation/admin/user-moderation-admin.php:75
1201
- msgid "User approved."
1202
- msgstr "ユーザーを承認しました"
1203
-
1204
- # @ theme-my-login
1205
- #: modules/user-moderation/admin/user-moderation-admin.php:77
1206
- msgid "Activation sent."
1207
- msgstr "アクティベーションを送信しました"
1208
-
1209
- # @ theme-my-login
1210
- #: modules/user-moderation/admin/user-moderation-admin.php:105
1211
- msgid "Resend Activation"
1212
- msgstr "アクティベーションを再送"
1213
-
1214
- # @ theme-my-login
1215
- #: modules/user-moderation/admin/user-moderation-admin.php:110
1216
- msgid "Approve"
1217
- msgstr "承認"
1218
-
1219
- # @ theme-my-login
1220
- #: modules/user-moderation/admin/user-moderation-admin.php:163
1221
- msgid "You have been approved access to %s"
1222
- msgstr "あなたは%sへのアクセスを承認されています"
1223
-
1224
- # @ theme-my-login
1225
- #: modules/user-moderation/admin/user-moderation-admin.php:168
1226
- msgid "[%s] Registration Approved"
1227
- msgstr "[%s] 登録を承認だ"
1228
-
1229
- # @ theme-my-login
1230
- #: modules/user-moderation/admin/user-moderation-admin.php:203
1231
- msgid "You have been denied access to %s"
1232
- msgstr "あなたは%sへのアクセス許可がありません"
1233
-
1234
- # @ theme-my-login
1235
- #: modules/user-moderation/admin/user-moderation-admin.php:204
1236
- msgid "[%s] Registration Denied"
1237
- msgstr "[%s] 登録できません"
1238
-
1239
- # @ theme-my-login
1240
- #: modules/user-moderation/admin/user-moderation-admin.php:226
1241
- msgid "Moderation"
1242
- msgstr "承認"
1243
-
1244
- # @ theme-my-login
1245
- #: modules/user-moderation/admin/user-moderation-admin.php:242
1246
- msgid "User Moderation"
1247
- msgstr "ユーザー承認"
1248
-
1249
- # @ theme-my-login
1250
- #: modules/user-moderation/admin/user-moderation-admin.php:245
1251
- msgid "None"
1252
- msgstr "なし"
1253
-
1254
- # @ theme-my-login
1255
- #: modules/user-moderation/admin/user-moderation-admin.php:246
1256
- msgid "Check this option to require no moderation."
1257
- msgstr "このオプションにチェックをした場合、管理者の承認などを一切行いません。"
1258
-
1259
- # @ theme-my-login
1260
- #: modules/user-moderation/admin/user-moderation-admin.php:248
1261
- msgid "E-mail Confirmation"
1262
- msgstr "メールでの確認"
1263
-
1264
- # @ theme-my-login
1265
- #: modules/user-moderation/admin/user-moderation-admin.php:249
1266
- msgid "Check this option to require new users to confirm their e-mail address before they may log in."
1267
- msgstr "このオプションにチェックをした場合、新しいユーザーがログインする前に、自分のメールアドレスの確認を必須にします"
1268
-
1269
- # @ theme-my-login
1270
- #: modules/user-moderation/admin/user-moderation-admin.php:251
1271
- msgid "Admin Approval"
1272
- msgstr "管理者承認"
1273
-
1274
- # @ theme-my-login
1275
- #: modules/user-moderation/admin/user-moderation-admin.php:252
1276
- msgid "Check this option to require new users to be approved by an administrator before they may log in."
1277
- msgstr "このオプションにチェックをした場合、新しいユーザーがログインする前に、管理者の承認を必要とします"
1278
-
1279
- # @ theme-my-login
1280
- #: modules/user-moderation/admin/user-moderation-admin.php:269
1281
- msgid "User Moderation is not currently compatible with multisite."
1282
- msgstr "ユーザーはモデレーションは、マルチサイトの現在の互換性はありません。"
1283
-
1284
- # @ theme-my-login
1285
- #: modules/user-moderation/user-moderation.php:163
1286
- msgid "<strong>ERROR</strong>: You have not yet confirmed your e-mail address. <a href=\"%s\">Resend activation</a>?"
1287
- msgstr "<strong>エラー</strong>:メールアドレスが入力されていません。<a href=\"%s\">アクティベーションメールを再度送信しますか</a>?"
1288
-
1289
- # @ theme-my-login
1290
- #: modules/user-moderation/user-moderation.php:166
1291
- msgid "<strong>ERROR</strong>: Your registration has not yet been approved."
1292
- msgstr "<strong>エラー</strong> :あなたの登録がまだ承認されていません。"
1293
-
1294
- # @ theme-my-login
1295
- #: modules/user-moderation/user-moderation.php:328
1296
- msgid "[%s] Activate Your Account"
1297
- msgstr "[%s] アカウントを有効にする"
1298
-
1299
- # @ theme-my-login
1300
- #: modules/user-moderation/user-moderation.php:329
1301
- msgid "Thanks for registering at %s! To complete the activation of your account please click the following link: "
1302
- msgstr "%sへのご登録ありがとうございます!次のリンクをクリックしてアカウントを有効にして下さい:"
1303
-
1304
- # @ theme-my-login
1305
- #: modules/user-moderation/user-moderation.php:362
1306
- msgid "[%s] New User Awaiting Approval"
1307
- msgstr "[%s] 新しいユーザーが承認を待っています"
1308
-
1309
- # @ theme-my-login
1310
- #: modules/user-moderation/user-moderation.php:364
1311
- msgid "New user requires approval on your blog %s:"
1312
- msgstr "新しいユーザーがあなたのブログ %s の承認を必要としています:"
1313
-
1314
- # @ theme-my-login
1315
- #: modules/user-moderation/user-moderation.php:367
1316
- msgid "To approve or deny this user:"
1317
- msgstr "このユーザーを承認または拒否:"
1318
-
1319
- # @ theme-my-login
1320
- #: modules/user-moderation/user-moderation.php:388
1321
- msgid "Your registration was successful but you must now confirm your email address before you can log in. Please check your email and click on the link provided."
1322
- msgstr "登録が完了しました。ログインするには、あなたのメールアドレスに送られたメール内のリンクをクリックして、メールアドレスの確認をする必要があります。"
1323
-
1324
- # @ theme-my-login
1325
- #: modules/user-moderation/user-moderation.php:390
1326
- msgid "Your registration was successful but you must now be approved by an administrator before you can log in. You will be notified by e-mail once your account has been reviewed."
1327
- msgstr "登録が完了しました。ログインするには管理者の承認が必要です。管理者の承認後にあなたのメールアドレスへお知らせします。"
1328
-
1329
- # @ theme-my-login
1330
- #: modules/user-moderation/user-moderation.php:393
1331
- msgid "Your account has been activated. You may now log in."
1332
- msgstr "あなたのアカウントは有効になりました。あなたが現在ログイン中です。"
1333
-
1334
- # @ theme-my-login
1335
- #: modules/user-moderation/user-moderation.php:395
1336
- msgid "Your account has been activated. Please check your e-mail for your password."
1337
- msgstr "アカウントは有効になりました。パスワードをメールでお送りしました。"
1338
-
1339
- # @ theme-my-login
1340
- #: modules/user-moderation/user-moderation.php:397
1341
- msgid "<strong>ERROR</strong>: Sorry, that key does not appear to be valid."
1342
- msgstr "<strong>エラー</strong> :申し訳ありませんが、そのキーは有効ではありません。"
1343
-
1344
- # @ theme-my-login
1345
- #: modules/user-moderation/user-moderation.php:400
1346
- msgid "<strong>ERROR</strong>: Sorry, the activation e-mail could not be sent."
1347
- msgstr "<strong>エラー</strong>:申し訳ありません。アクティベーションのメールが送信出来ませんでした。"
1348
-
1349
- # @ theme-my-login
1350
- #: modules/user-moderation/user-moderation.php:402
1351
- msgid "The activation e-mail has been sent to the e-mail address with which you registered. Please check your email and click on the link provided."
1352
- msgstr "アクティベーションメールはあなたが登録したメールアドレスに送信されました。メールを確認し、本文内のリンクをクリックしてください。"
1353
-
1354
- # @ theme-my-login
1355
- #: templates/login-form.php:12
1356
- #: templates/profile-form.php:91
1357
- #: templates/register-form.php:12
1358
- msgid "Username"
1359
- msgstr "ユーザー名"
1360
-
1361
- # @ theme-my-login
1362
- #: templates/login-form.php:16
1363
- msgid "Password"
1364
- msgstr "パスワード"
1365
-
1366
- # @ theme-my-login
1367
- #: templates/login-form.php:25
1368
- msgid "Remember Me"
1369
- msgstr "ログイン情報を記憶"
1370
-
1371
- # @ theme-my-login
1372
- #: templates/lostpassword-form.php:12
1373
- msgid "Username or E-mail:"
1374
- msgstr "ユーザー名またはメール:"
1375
-
1376
- # @ theme-my-login
1377
- #: templates/lostpassword-form.php:20
1378
- msgid "Get New Password"
1379
- msgstr "新しいパスワードを取得する"
1380
-
1381
- #: templates/ms-signup-another-blog-form.php:7
1382
- msgid "Get <em>another</em> %s site in seconds"
1383
- msgstr "新しい %s ブログを今すぐ作成"
1384
-
1385
- #: templates/ms-signup-another-blog-form.php:10
1386
- msgid "There was a problem, please correct the form below and try again."
1387
- msgstr "問題がおきました。下記の入力を修正して再度お試しください。"
1388
-
1389
- #: templates/ms-signup-another-blog-form.php:13
1390
- msgid "Welcome back, %s. By filling out the form below, you can <strong>add another site to your account</strong>. There is no limit to the number of sites you can have, so create to your heart&#8217;s content, but write responsibly!"
1391
- msgstr "お帰りなさい、%s さん。以下に入力すると、<strong>アカウントにもうひとつサイトを追加</strong>できます。サイトの数に制限はありませんので好きなだけ作成してかまいませんが、責任を持って運営してください。"
1392
-
1393
- #: templates/ms-signup-another-blog-form.php:18
1394
- msgid "Sites you are already a member of:"
1395
- msgstr "すでにメンバー登録済みのサイト: "
1396
-
1397
- #: templates/ms-signup-another-blog-form.php:27
1398
- msgid "If you&#8217;re not going to use a great site domain, leave it for a new user. Now have at it!"
1399
- msgstr "もしサイトのドメインを使用しないのなら、新しいユーザーのためにとっておいてください。ではどうぞはじめてください !"
1400
-
1401
- #: templates/ms-signup-another-blog-form.php:33
1402
- #: templates/ms-signup-blog-form.php:17
1403
- msgid "Site Name:"
1404
- msgstr "サイト名:"
1405
-
1406
- #: templates/ms-signup-another-blog-form.php:35
1407
- #: templates/ms-signup-blog-form.php:19
1408
- msgid "Site Domain:"
1409
- msgstr "サイトのドメイン:"
1410
-
1411
- # @ theme-my-login
1412
- #: templates/ms-signup-another-blog-form.php:52
1413
- #: templates/ms-signup-blog-form.php:36
1414
- msgid "sitename"
1415
- msgstr "サイト名"
1416
-
1417
- #: templates/ms-signup-another-blog-form.php:54
1418
- #: templates/ms-signup-blog-form.php:38
1419
- msgid "domain"
1420
- msgstr "domain"
1421
-
1422
- #: templates/ms-signup-another-blog-form.php:55
1423
- #: templates/ms-signup-blog-form.php:39
1424
- msgid "Your address will be %s."
1425
- msgstr "あなたのアドレスは %s になります。"
1426
-
1427
- #: templates/ms-signup-another-blog-form.php:55
1428
- #: templates/ms-signup-blog-form.php:39
1429
- msgid "Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!"
1430
- msgstr "4字以上のアルファベットと数字のみが使えます。変更はできませんので慎重に選んでください !"
1431
-
1432
- # @ theme-my-login
1433
- #: templates/ms-signup-another-blog-form.php:58
1434
- #: templates/ms-signup-blog-form.php:42
1435
- msgid "Site Title:"
1436
- msgstr "サイトのタイトル:"
1437
-
1438
- #: templates/ms-signup-another-blog-form.php:66
1439
- #: templates/ms-signup-blog-form.php:50
1440
- msgid "Privacy:"
1441
- msgstr "プライバシー:"
1442
-
1443
- #: templates/ms-signup-another-blog-form.php:67
1444
- #: templates/ms-signup-blog-form.php:51
1445
- msgid "Allow my site to appear in search engines like Google, Technorati, and in public listings around this network."
1446
- msgstr "このサイトを Google や Technorati などの検索エンジンやこのネットワークの公開リストに表示されるようにする。"
1447
-
1448
- #: templates/ms-signup-another-blog-form.php:71
1449
- #: templates/ms-signup-blog-form.php:55
1450
- msgid "Yes"
1451
- msgstr "はい"
1452
-
1453
- # @ theme-my-login
1454
- #: templates/ms-signup-another-blog-form.php:75
1455
- #: templates/ms-signup-blog-form.php:59
1456
- msgid "No"
1457
- msgstr "いいえ"
1458
-
1459
- #: templates/ms-signup-another-blog-form.php:85
1460
- msgid "Create Site"
1461
- msgstr "サイトを作成"
1462
-
1463
- #: templates/ms-signup-blog-form.php:69
1464
- msgid "Signup"
1465
- msgstr "サイトを作成"
1466
-
1467
- #: templates/ms-signup-user-form.php:7
1468
- msgid "Get your own %s account in seconds"
1469
- msgstr "%s のアカウントをいますぐ取得"
1470
-
1471
- #: templates/ms-signup-user-form.php:22
1472
- msgid "(Must be at least 4 characters, letters and numbers only.)"
1473
- msgstr "(4文字以上の半角英数字のみ)"
1474
-
1475
- #: templates/ms-signup-user-form.php:24
1476
- msgid "Email&nbsp;Address:"
1477
- msgstr "メールアドレス: "
1478
-
1479
- #: templates/ms-signup-user-form.php:30
1480
- msgid "We send your registration email to this address. (Double-check your email address before continuing.)"
1481
- msgstr "登録完了のメールをこのアドレスに送ります。(次に進む前にメールアドレスをもう一度確認してください)"
1482
-
1483
- #: templates/ms-signup-user-form.php:47
1484
- msgid "Gimme a site!"
1485
- msgstr "サイトを作成 !"
1486
-
1487
- #: templates/ms-signup-user-form.php:50
1488
- msgid "Just a username, please."
1489
- msgstr "ユーザー登録のみ。"
1490
-
1491
- #: templates/ms-signup-user-form.php:54
1492
- msgid "Next"
1493
- msgstr "次ページへ"
1494
-
1495
- # @ theme-my-login
1496
- #: templates/profile-form.php:26
1497
- msgid "Personal Options"
1498
- msgstr "個人用オプション"
1499
-
1500
- #: templates/profile-form.php:31
1501
- msgid "Visual Editor"
1502
- msgstr "ビジュアルエディター"
1503
-
1504
- #: templates/profile-form.php:32
1505
- msgid "Disable the visual editor when writing"
1506
- msgstr "ビジュアルリッチエディターを使用しない"
1507
-
1508
- #: templates/profile-form.php:37
1509
- msgid "Admin Color Scheme"
1510
- msgstr "管理画面の配色"
1511
-
1512
- #: templates/profile-form.php:44
1513
- msgid "Keyboard Shortcuts"
1514
- msgstr "キーボードショートカット"
1515
-
1516
- #: templates/profile-form.php:45
1517
- msgid "Enable keyboard shortcuts for comment moderation."
1518
- msgstr "コメントモデレーション用のキーボードショートカットを有効にする。"
1519
-
1520
- #: templates/profile-form.php:45
1521
- msgid "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">More information</a>"
1522
- msgstr "<a href=\"http://wpdocs.sourceforge.jp/Keyboard_Shortcuts\" target=\"_blank\">詳細情報</a>"
1523
-
1524
- #: templates/profile-form.php:51
1525
- #: templates/profile-form.php:54
1526
- msgid "Toolbar"
1527
- msgstr "ツールバー"
1528
-
1529
- #: templates/profile-form.php:57
1530
- msgid "Show Toolbar when viewing site"
1531
- msgstr "サイトを見るときにツールバーを表示する"
1532
-
1533
- #: templates/profile-form.php:63
1534
- #: templates/profile-form.php:66
1535
- msgid "Show Admin Bar"
1536
- msgstr "管理バーの表示"
1537
-
1538
- #. translators: Show admin bar when viewing site
1539
- #: templates/profile-form.php:69
1540
- msgid "when viewing site"
1541
- msgstr "サイトを表示する際"
1542
-
1543
- # @ theme-my-login
1544
- #. translators: Show admin bar in dashboard
1545
- #: templates/profile-form.php:74
1546
- msgid "in dashboard"
1547
- msgstr "ダッシュボード内"
1548
-
1549
- # @ theme-my-login
1550
- #: templates/profile-form.php:87
1551
- msgid "Name"
1552
- msgstr "名"
1553
-
1554
- # @ theme-my-login
1555
- #: templates/profile-form.php:92
1556
- msgid "Your username cannot be changed."
1557
- msgstr "あなたのユーザー名は変更することはできません。"
1558
-
1559
- # @ theme-my-login
1560
- #: templates/profile-form.php:96
1561
- msgid "First name"
1562
- msgstr "名"
1563
-
1564
- # @ theme-my-login
1565
- #: templates/profile-form.php:101
1566
- msgid "Last name"
1567
- msgstr "姓"
1568
-
1569
- # @ theme-my-login
1570
- #: templates/profile-form.php:106
1571
- msgid "Nickname"
1572
- msgstr "ニックネーム"
1573
-
1574
- # @ theme-my-login
1575
- #: templates/profile-form.php:106
1576
- #: templates/profile-form.php:143
1577
- msgid "(required)"
1578
- msgstr "(必須)"
1579
-
1580
- # @ theme-my-login
1581
- #: templates/profile-form.php:111
1582
- msgid "Display name publicly as"
1583
- msgstr "表示名として"
1584
-
1585
- # @ theme-my-login
1586
- #: templates/profile-form.php:139
1587
- msgid "Contact Info"
1588
- msgstr "お問い合わせ情報"
1589
-
1590
- # @ theme-my-login
1591
- #: templates/profile-form.php:148
1592
- msgid "Website"
1593
- msgstr "ウェブサイト"
1594
-
1595
- # @ theme-my-login
1596
- #: templates/profile-form.php:165
1597
- msgid "About Yourself"
1598
- msgstr "自分自身について"
1599
-
1600
- # @ theme-my-login
1601
- #: templates/profile-form.php:169
1602
- msgid "Biographical Info"
1603
- msgstr "伝記情報"
1604
-
1605
- # @ theme-my-login
1606
- #: templates/profile-form.php:171
1607
- msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
1608
- msgstr "ちょっとした経歴をあなたのプロフィールに記入しましょう。これは公表されることがありますので、記入には留意してください。"
1609
-
1610
- # @ theme-my-login
1611
- #: templates/profile-form.php:179
1612
- msgid "New Password"
1613
- msgstr "新しいパスワード"
1614
-
1615
- # @ theme-my-login
1616
- #: templates/profile-form.php:180
1617
- msgid "If you would like to change the password type a new one. Otherwise leave this blank."
1618
- msgstr "パスワードを新しいものに変更したい場合は記入。それ以外の場合は空白のままにしてください。"
1619
-
1620
- # @ theme-my-login
1621
- #: templates/profile-form.php:181
1622
- msgid "Type your new password again."
1623
- msgstr "新しいパスワードをもう一度入力してください"
1624
-
1625
- # @ theme-my-login
1626
- #: templates/profile-form.php:183
1627
- #: templates/resetpass-form.php:20
1628
- msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
1629
- msgstr "ヒント:パスワードは少なくとも7文字の長さが望ましいです。小文字、大文字の数字などの記号を使用すると、より強力なものになります。例えば ! \" ? $ % ^ &amp; ) など。"
1630
-
1631
- # @ theme-my-login
1632
- #: templates/profile-form.php:197
1633
- msgid "Additional Capabilities"
1634
- msgstr "その他の機能"
1635
-
1636
- # @ theme-my-login
1637
- #: templates/profile-form.php:216
1638
- msgid "Update Profile"
1639
- msgstr "プロフィール更新"
1640
-
1641
- # @ theme-my-login
1642
- #: templates/register-form.php:23
1643
- msgid "A password will be e-mailed to you."
1644
- msgstr "パスワードをメールで送信する"
1645
-
1646
- # @ theme-my-login
1647
- #: templates/resetpass-form.php:12
1648
- msgid "New password"
1649
- msgstr "新規パスワード"
1650
-
1651
- # @ theme-my-login
1652
- #: templates/resetpass-form.php:16
1653
- msgid "Confirm new password"
1654
- msgstr "新しいパスワードの確認"
1655
-
1656
- #. Plugin URI of the plugin/theme
1657
- msgid "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/"
1658
- msgstr "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/"
1659
-
1660
- #. Description of the plugin/theme
1661
- msgid "Themes the WordPress login, registration and forgot password pages according to your theme."
1662
- msgstr "WordPressのログイン・ユーザー登録・パスワード紛失のページをあなたのテーマに準じたテーマに。"
1663
-
1664
- #. Author of the plugin/theme
1665
- msgid "Jeff Farthing"
1666
- msgstr "Jeff Farthing"
1667
-
1668
- #. Author URI of the plugin/theme
1669
- msgid "http://www.jfarthing.com"
1670
- msgstr "http://www.jfarthing.com"
1671
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
language/theme-my-login-nl_NL.mo DELETED
Binary file
language/theme-my-login-nl_NL.po DELETED
@@ -1,1435 +0,0 @@
1
- # Copyright (C) 2012 Theme My Login
2
- # This file is distributed under the same license as the Theme My Login package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Theme My Login 6.2\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/theme-my-login\n"
7
- "POT-Creation-Date: 2012-03-08 16:19:05+00:00\n"
8
- "PO-Revision-Date: 2012-05-28 14:17-0500\n"
9
- "Last-Translator: Jeff Farthing <jeff@jfarthing.com>\n"
10
- "Language-Team: \n"
11
- "Language: \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-Language: Dutch\n"
16
- "X-Poedit-Country: NETHERLANDS\n"
17
- "X-Poedit-SourceCharset: utf-8\n"
18
-
19
- #. #-#-#-#-# plugin.pot (Theme My Login 6.2) #-#-#-#-#
20
- #. Plugin Name of the plugin/theme
21
- #: admin/class-theme-my-login-admin.php:42
22
- #: admin/class-theme-my-login-admin.php:43
23
- #: includes/class-theme-my-login-widget.php:24
24
- msgid "Theme My Login"
25
- msgstr "Thema My Login"
26
-
27
- #: admin/class-theme-my-login-admin.php:81
28
- msgid "ERROR: The module \"%1$s\" could not be activated (%2$s)."
29
- msgstr "<strong>FOUTMELDING</strong>: De module \"%1$s\" kon niet geactiveerd worden (%2$s)."
30
-
31
- #: admin/class-theme-my-login-admin.php:103
32
- msgid "NOTICE:"
33
- msgstr "LET OP:"
34
-
35
- #: admin/class-theme-my-login-admin.php:104
36
- msgid "Now that you have activated Theme My Login, please <a href=\"%s\">visit the settings page</a> and familiarize yourself with all of the available options."
37
- msgstr "Bezoek alstublieft de <a href=\"%s\">instelligen pagina</a> nu dat u het Thema My Login geactiveerd hebt en maak u vertrouwd met de aanwezige opties."
38
-
39
- #: admin/class-theme-my-login-admin.php:106
40
- msgid "Take me to the settings page"
41
- msgstr "Ga naar de instellingen"
42
-
43
- #: admin/class-theme-my-login-admin.php:119
44
- msgid "You can now login with your e-mail address or username! Try it out!"
45
- msgstr "Je kunt nu inloggen met je e-mail adres of je gebruikersnaam! Probeer het nu uit!"
46
-
47
- #: admin/class-theme-my-login-admin.php:120
48
- msgid "Theme My Login now utilizes a module system. Modules are similar to WordPress plugins. Each module extends the default functionality of Theme My Login. <a rel=\"tml-options\" href=\"#tml-options-modules\">Click here</a> to get started with modules now."
49
- msgstr "Thema Mijn Login maakt nu gebruik van een module-systeem. Modules zijn vergelijkbaar met WordPress plugins. Elke module breidt de standaard functionaliteit van Theme Mijn Login. <a rel=\"tml-options\" href=\"#tml-options-modules\">Klik hier</a> aan de slag met modules nu."
50
-
51
- #: admin/class-theme-my-login-admin.php:121
52
- msgid "Theme My Login now allows custom forms. You can create your own form template(s) by copying the default version(s) from \"theme-my-login/templates\" to your current theme directory. Try it out!"
53
- msgstr "Thema My Login staat nu het gebruik van aangepaste formulieren toe. U kunt uw eigen formulier template(s) maken door de standaard versies vanuit \"theme-my-login/templates\" te kopieren naar uw huidige WordPress thema directory. Probeer het uit!"
54
-
55
- #: admin/class-theme-my-login-admin.php:122
56
- msgid "You can maintain your stylesheet changes between upgrades. Just simply copy the file \"theme-my-login/theme-my-login.css\" to your current theme directory and edit it as you please!"
57
- msgstr "U kunt ervoor zorgen dat aanpassingen niet verloren gaan tijdens een upgrade. Kopieer het bestand \"theme-my-login.css\" eenvoudig naar uw huidige WordPress thema directory en pas dit aan naar uw wensen."
58
-
59
- #: admin/class-theme-my-login-admin.php:123
60
- msgid "Theme My Login provides a shortcode that you can use within your posts with multiple parameters to customize the form. Visit the <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Theme My Login Documentation</a> for usage instructions."
61
- msgstr "Thema My Login verstrekt een shortcode die in berichten gebruikt kan worden met meerdere parameters om het formulier aan te passen. Bezoek de <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Thema My Login Documentatie</a> voor gebruikersinstructies."
62
-
63
- #: admin/class-theme-my-login-admin.php:124
64
- msgid "Jeff is <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">available for hire</a>!"
65
- msgstr "Jeff kan <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">ingehuurd worden</a>!"
66
-
67
- #: admin/class-theme-my-login-admin.php:128
68
- msgid "Did You Know?"
69
- msgstr "Wist u al?"
70
-
71
- #: admin/class-theme-my-login-admin.php:177
72
- msgid "General"
73
- msgstr "Algemeen"
74
-
75
- #: admin/class-theme-my-login-admin.php:178
76
- msgid "Basic"
77
- msgstr "Basis"
78
-
79
- #: admin/class-theme-my-login-admin.php:179
80
- #: admin/class-theme-my-login-admin.php:319
81
- msgid "Modules"
82
- msgstr "Modules"
83
-
84
- #: admin/class-theme-my-login-admin.php:181
85
- msgid "Permalinks"
86
- msgstr "Permalinks"
87
-
88
- #: admin/class-theme-my-login-admin.php:188
89
- msgid "Theme My Login Settings"
90
- msgstr "Thema My Login Instellingen"
91
-
92
- #: admin/class-theme-my-login-admin.php:194
93
- #: admin/class-theme-my-login-admin.php:254
94
- msgid "Save Changes"
95
- msgstr "Wijzigingen Opslaan"
96
-
97
- #: admin/class-theme-my-login-admin.php:271
98
- msgid "Page ID"
99
- msgstr "Pagina ID"
100
-
101
- #: admin/class-theme-my-login-admin.php:274
102
- msgid "This should be the ID of the WordPress page that includes the [theme-my-login] shortcode. By default, this page is titled \"Login\"."
103
- msgstr "Hier dient u de WordPress pagina ID in te vullen die de [theme-my-login] shortcode bevat. Standaard is deze pagina getiteld \"Login\"."
104
-
105
- #: admin/class-theme-my-login-admin.php:278
106
- msgid "Pagelist"
107
- msgstr "Paginalijst"
108
-
109
- #: admin/class-theme-my-login-admin.php:281
110
- msgid "Show Page In Pagelist"
111
- msgstr "Geeft de pagina weer in de paginalijst"
112
-
113
- #: admin/class-theme-my-login-admin.php:282
114
- msgid "Enable this setting to add login/logout links to the pagelist generated by functions like wp_list_pages() and wp_page_menu()."
115
- msgstr "Activeer deze instelling om aan en afmeld links toe te voegen aan de paginalijst die onder andere door de functies wp_list_pages() en wp_page_menu() gegenereerd worden."
116
-
117
- #: admin/class-theme-my-login-admin.php:286
118
- msgid "Stylesheet"
119
- msgstr "Stylesheet"
120
-
121
- #: admin/class-theme-my-login-admin.php:289
122
- msgid "Enable \"theme-my-login.css\""
123
- msgstr "Activeer \"theme-my-login.css\""
124
-
125
- #: admin/class-theme-my-login-admin.php:290
126
- msgid "In order to keep changes between upgrades, you can store your customized \"theme-my-login.css\" in your current theme directory."
127
- msgstr "Om ervoor te zorgen dat uw aanpassingen niet verloren gaan tijdens een upgrade kunt u uw \"theme-my-login.css\" opslaan in uw huidige WordPress thema directory."
128
-
129
- #: admin/class-theme-my-login-admin.php:294
130
- msgid "E-mail Login"
131
- msgstr "E-mail Login"
132
-
133
- #: admin/class-theme-my-login-admin.php:297
134
- msgid "Enable e-mail address login"
135
- msgstr "Schakel e-mail adres login"
136
-
137
- #: admin/class-theme-my-login-admin.php:298
138
- msgid "Allows users to login using their e-mail address in place of their username."
139
- msgstr "Hiermee kunnen gebruikers inloggen met hun e-mail adres in plaats van hun gebruikersnaam."
140
-
141
- #: admin/class-theme-my-login-admin.php:323
142
- msgid "Enable %s"
143
- msgstr "Activeer %s"
144
-
145
- #: admin/class-theme-my-login-admin.php:325
146
- msgid "No modules found."
147
- msgstr "Geen modules gevonden."
148
-
149
- #: admin/class-theme-my-login-admin.php:343
150
- #: includes/class-theme-my-login-widget.php:87
151
- msgid "Login"
152
- msgstr "Aanmelden"
153
-
154
- #: admin/class-theme-my-login-admin.php:344
155
- #: includes/class-theme-my-login-template.php:141
156
- #: includes/class-theme-my-login-widget.php:87
157
- #: templates/register-form.php:25
158
- msgid "Register"
159
- msgstr "Registratie"
160
-
161
- #: admin/class-theme-my-login-admin.php:345
162
- #: includes/class-theme-my-login-template.php:147
163
- #: includes/class-theme-my-login-widget.php:87
164
- msgid "Lost Password"
165
- msgstr "Wachtwoord vergeten"
166
-
167
- #: admin/class-theme-my-login-admin.php:475
168
- msgid "One of the modules is invalid."
169
- msgstr "Een van de modules is ongeldig."
170
-
171
- #: admin/class-theme-my-login-admin.php:531
172
- msgid "Invalid module path."
173
- msgstr "Ongeldig module pad."
174
-
175
- #: admin/class-theme-my-login-admin.php:533
176
- msgid "Module file does not exist."
177
- msgstr "Module bestand kon niet gevonden worden."
178
-
179
- #: admin/class-theme-my-login-admin.php:537
180
- msgid "The module does not have a valid header."
181
- msgstr "Deze module heeft geen geldige header."
182
-
183
- #: includes/class-theme-my-login-ms-signup.php:117
184
- msgctxt "Multisite active signup type"
185
- msgid "all"
186
- msgstr "alles"
187
-
188
- #: includes/class-theme-my-login-ms-signup.php:118
189
- msgctxt "Multisite active signup type"
190
- msgid "none"
191
- msgstr "geen"
192
-
193
- #: includes/class-theme-my-login-ms-signup.php:119
194
- msgctxt "Multisite active signup type"
195
- msgid "blog"
196
- msgstr "blog"
197
-
198
- #: includes/class-theme-my-login-ms-signup.php:120
199
- msgctxt "Multisite active signup type"
200
- msgid "user"
201
- msgstr "gebruiker"
202
-
203
- #: includes/class-theme-my-login-ms-signup.php:123
204
- msgid "Greetings Site Administrator! You are currently allowing &#8220;%s&#8221; registrations. To change or disable registration go to your <a href=\"%s\">Options page</a>."
205
- msgstr "Hallo Site Administrator! Op dit moment heb je &#8220;%s&#8221; registraties toegelaten. Ga naar de <a href=\"%s\">instellingen pagina</a> om de registratie instellingen te wijzigen of uit te schakelen."
206
-
207
- #: includes/class-theme-my-login-ms-signup.php:129
208
- msgid "Registration has been disabled."
209
- msgstr "Registraties zijn uitgeschakeld."
210
-
211
- #: includes/class-theme-my-login-ms-signup.php:131
212
- msgid "You must first <a href=\"%s\">log in</a>, and then you can create a new site."
213
- msgstr "Je moet eerst <a href=\"%s\">inloggen</a>, daarna kan je een nieuwe site maken."
214
-
215
- #: includes/class-theme-my-login-ms-signup.php:155
216
- msgid "%s is your new username"
217
- msgstr "%s is je nieuwe gebruikersnaam"
218
-
219
- #: includes/class-theme-my-login-ms-signup.php:156
220
- msgid "But, before you can start using your new username, <strong>you must activate it</strong>."
221
- msgstr "Voordat jij kan starten met je nieuwe gebruikersnaam, <strong>moet je deze eerst activeren</strong>."
222
-
223
- #: includes/class-theme-my-login-ms-signup.php:157
224
- msgid "Check your inbox at <strong>%1$s</strong> and click the link given."
225
- msgstr "Ga naar de inbox van <strong>%1$s</strong> en klik op de verstuurde link."
226
-
227
- #: includes/class-theme-my-login-ms-signup.php:158
228
- msgid "If you do not activate your username within two days, you will have to sign up again."
229
- msgstr "Als je de gebruikersnaam niet binnen twee dagen activeert, dan moet u zich opnieuw registeren."
230
-
231
- #: includes/class-theme-my-login-ms-signup.php:162
232
- msgid "User registration has been disabled."
233
- msgstr "Gebruikersregistratie is gedeactiveerd."
234
-
235
- #: includes/class-theme-my-login-ms-signup.php:194
236
- msgid "Congratulations! Your new site, %s, is almost ready."
237
- msgstr "Gefeliciteerd! je nieuwe website, %s is bijna klaar."
238
-
239
- #: includes/class-theme-my-login-ms-signup.php:196
240
- msgid "But, before you can start using your site, <strong>you must activate it</strong>."
241
- msgstr "Voordat je met je website kan starten, <strong>moet deze eerst worden geactiveerd</strong>."
242
-
243
- #: includes/class-theme-my-login-ms-signup.php:197
244
- msgid "Check your inbox at <strong>%s</strong> and click the link given."
245
- msgstr "Controleer je inbox op <strong>%s</strong> en klik op de link die we hebben gestuurd."
246
-
247
- #: includes/class-theme-my-login-ms-signup.php:198
248
- msgid "If you do not activate your site within two days, you will have to sign up again."
249
- msgstr "Als je de website niet binnen twee dagen activeert, zul je opnieuw moeten beginnen."
250
-
251
- #: includes/class-theme-my-login-ms-signup.php:199
252
- msgid "Still waiting for your email?"
253
- msgstr "Nog steeds aan het wachten op een e-mail?"
254
-
255
- #: includes/class-theme-my-login-ms-signup.php:201
256
- msgid "If you haven&#8217;t received your email yet, there are a number of things you can do:"
257
- msgstr "Wanneer je nog geen e-mail hebt ontvangen, zijn er een aantal dingen die je kan doen:"
258
-
259
- #: includes/class-theme-my-login-ms-signup.php:203
260
- msgid "Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control."
261
- msgstr "Nog even geduld. We hebben niet alle omstandigheden waaronder een email bericht wordt afgeleverd in de hand."
262
-
263
- #: includes/class-theme-my-login-ms-signup.php:204
264
- msgid "Check the junk or spam folder of your email client. Sometime emails wind up there by mistake."
265
- msgstr "Controleer de prullenbak of spam map van je emailprogramma. Soms komen e-mails per ongeluk daar terecht."
266
-
267
- #: includes/class-theme-my-login-ms-signup.php:205
268
- msgid "Have you entered your email correctly? You have entered %s, if it&#8217;s incorrect, you will not receive your email."
269
- msgstr "Heb je je emailadres juist ingevuld? Je hebt %s ingevuld, als dat niet klopt zal je geen email ontvangen."
270
-
271
- #: includes/class-theme-my-login-ms-signup.php:211
272
- msgid "Site registration has been disabled."
273
- msgstr "Website registratie is uitgeschakeld."
274
-
275
- #: includes/class-theme-my-login-ms-signup.php:235
276
- msgid "The site %s is yours."
277
- msgstr "De website %s is van jou."
278
-
279
- #: includes/class-theme-my-login-ms-signup.php:237
280
- msgid "<a href=\"http://%1$s\">http://%2$s</a> is your new site. <a href=\"%3$s\">Log in</a> as &#8220;%4$s&#8221; using your existing password."
281
- msgstr "<a href=\"http://%1$s\">http://%2$s</a> is je nieuwe site. <a href=\"%3$s\">Log in</a> als &#8220;%4$s&#8221; met je huidige wachtwoord."
282
-
283
- #: includes/class-theme-my-login-ms-signup.php:253
284
- msgid "Sorry, new registrations are not allowed at this time."
285
- msgstr "Helaas, op dit moment zijn nieuwe registraties niet toegestaan."
286
-
287
- #: includes/class-theme-my-login-ms-signup.php:255
288
- msgid "You are logged in already. No need to register again!"
289
- msgstr "Je bent al ingelogd. Je hoeft je dus niet opnieuw te registreren."
290
-
291
- #: includes/class-theme-my-login-ms-signup.php:261
292
- msgid "<p><em>The site you were looking for, <strong>%s</strong> does not exist, but you can create it now!</em></p>"
293
- msgstr "<p><em>De website, <strong>%s</strong>, die je zocht bestaat niet. Je kan deze natuurlijk wel aanmaken!</em></p>"
294
-
295
- #: includes/class-theme-my-login-ms-signup.php:263
296
- msgid "<p><em>The site you were looking for, <strong>%s</strong>, does not exist.</em></p>"
297
- msgstr "<p><em>De website waar je naar zoekt, <strong>%s</strong>, bestaat niet.</em></p> "
298
-
299
- #: includes/class-theme-my-login-ms-signup.php:402
300
- msgid "Activation Key Required"
301
- msgstr "Activatiesleutel is verplicht"
302
-
303
- #: includes/class-theme-my-login-ms-signup.php:405
304
- msgid "Activation Key:"
305
- msgstr "Activatie sleutel:"
306
-
307
- #: includes/class-theme-my-login-ms-signup.php:409
308
- #: includes/class-theme-my-login-ms-signup.php:481
309
- msgid "Activate"
310
- msgstr "Activeren"
311
-
312
- #: includes/class-theme-my-login-ms-signup.php:421
313
- #: includes/class-theme-my-login-ms-signup.php:441
314
- msgid "Your account is now active!"
315
- msgstr "Je account is nu actief!"
316
-
317
- #: includes/class-theme-my-login-ms-signup.php:425
318
- msgid "Your account has been activated. You may now <a href=\"%1$s\">login</a> to the site using your chosen username of &#8220;%2$s&#8221;. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%4$s\">reset your password</a>."
319
- msgstr "Je account is geactiveerd. Je kunt nu <a href=\"%1$s\">inloggen</a> op de site met je gekozen gebruikersnaam van &#8220;%2$s&#8221;. Ga naar je e-mailprogramma op %3$s voor je wachtwoord en inloginstructies. Als je geen e-mail ontvangt, controleer dan je spammap. Als je nog steeds geen e-mail ontvangt binnen een uur, kun je <a href=\"%4$s\">het wachtwoord resetten.</a>."
320
-
321
- #: includes/class-theme-my-login-ms-signup.php:427
322
- msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a>."
323
- msgstr "Je site op <a href=\"%1$s\">%2$s</a> is actief. Je kunt nu inloggen met je gekozen gebruikersnaam van &#8220;%3$s&#8221;. Controleer je email op %4$s voor je wachtwoord en inlog instructies. Ontvang je geen email, controleer dan je spam map. Ontvang je binnen een uur nog steeds geen email, dan kun je het <a href=\"%5$s\">wachtwoord resetten</a>."
324
-
325
- #: includes/class-theme-my-login-ms-signup.php:432
326
- msgid "An error occurred during the activation"
327
- msgstr "Er heeft zich een fout voorgedaan tijdens het activatieproces"
328
-
329
- #: includes/class-theme-my-login-ms-signup.php:444
330
- #: templates/ms-signup-user-form.php:16
331
- msgid "Username:"
332
- msgstr "Gebruikersnaam:"
333
-
334
- #: includes/class-theme-my-login-ms-signup.php:445
335
- #: modules/custom-passwords/custom-passwords.php:29
336
- #: modules/custom-passwords/custom-passwords.php:56
337
- msgid "Password:"
338
- msgstr "Wachtwoord:"
339
-
340
- #: includes/class-theme-my-login-ms-signup.php:449
341
- msgid "Your account is now activated. <a href=\"%1$s\">View your site</a> or <a href=\"%2$s\">Login</a>"
342
- msgstr "Je account is nu geactiveerd. <a href=\"%1$s\">Bekijk je site</a> of <a href=\"%2$s\">Login</a>"
343
-
344
- #: includes/class-theme-my-login-ms-signup.php:451
345
- msgid "Your account is now activated. <a href=\"%1$s\">Login</a> or go back to the <a href=\"%2$s\">homepage</a>."
346
- msgstr "Je account is nu geactiveerd. <a href=\"%1$s\">Login</a> of ga terug naar de <a href=\"%2$s\">homepage</a>."
347
-
348
- #: includes/class-theme-my-login-template.php:137
349
- msgid "Welcome, %s"
350
- msgstr "Welkom, %s"
351
-
352
- #: includes/class-theme-my-login-template.php:151
353
- #: includes/class-theme-my-login.php:540
354
- #: templates/login-form.php:28
355
- msgid "Log In"
356
- msgstr "Aanmelden"
357
-
358
- #: includes/class-theme-my-login-template.php:315
359
- #: modules/custom-user-links/custom-user-links.php:82
360
- msgid "Dashboard"
361
- msgstr "Blogbeheer"
362
-
363
- #: includes/class-theme-my-login-template.php:316
364
- #: modules/custom-user-links/custom-user-links.php:83
365
- #: modules/themed-profiles/admin/themed-profiles-admin.php:66
366
- msgid "Profile"
367
- msgstr "Profiel"
368
-
369
- #: includes/class-theme-my-login-template.php:334
370
- #: modules/custom-redirection/custom-redirection.php:197
371
- msgid "Log out"
372
- msgstr "Afmelden"
373
-
374
- #: includes/class-theme-my-login-template.php:363
375
- msgid "Register For This Site"
376
- msgstr "Registreer u voor deze Site"
377
-
378
- #: includes/class-theme-my-login-template.php:366
379
- msgid "Please enter your username or email address. You will receive a link to create a new password via email."
380
- msgstr "Voer a.u.b. je gebruikersnaam of e-mailadres in. Je ontvangt per e-mail een link waarmee je een nieuw wachtwoord aan kan maken."
381
-
382
- #: includes/class-theme-my-login-template.php:369
383
- msgid "Enter your new password below."
384
- msgstr "Voer hieronder je nieuwe wachtwoord in."
385
-
386
- #: includes/class-theme-my-login-widget.php:23
387
- msgid "A login form for your blog."
388
- msgstr "Een aanmeldpagina voor uw blog."
389
-
390
- #: includes/class-theme-my-login-widget.php:88
391
- msgid "Default Action"
392
- msgstr "Standaard Actie"
393
-
394
- #: includes/class-theme-my-login-widget.php:95
395
- msgid "Show When Logged In"
396
- msgstr "Laten zien wanneer aangemeld"
397
-
398
- #: includes/class-theme-my-login-widget.php:97
399
- msgid "Show Title"
400
- msgstr "Laat Titel zien"
401
-
402
- #: includes/class-theme-my-login-widget.php:99
403
- msgid "Show Login Link"
404
- msgstr "Laat Aanmeld Link zien"
405
-
406
- #: includes/class-theme-my-login-widget.php:101
407
- msgid "Show Register Link"
408
- msgstr "Laat Registratie Link zien"
409
-
410
- #: includes/class-theme-my-login-widget.php:103
411
- msgid "Show Lost Password Link"
412
- msgstr "Laat Wachtwoord vergeten Link zien"
413
-
414
- #: includes/class-theme-my-login-widget.php:105
415
- msgid "Show Gravatar"
416
- msgstr "Geef Gravatar weer"
417
-
418
- #: includes/class-theme-my-login-widget.php:106
419
- msgid "Gravatar Size"
420
- msgstr "Gravatar grootte"
421
-
422
- #: includes/class-theme-my-login-widget.php:108
423
- msgid "Allow Registration"
424
- msgstr "Sta Registratie toe"
425
-
426
- #: includes/class-theme-my-login-widget.php:110
427
- msgid "Allow Password Recovery"
428
- msgstr "Sta wachtwoord opvragen toe"
429
-
430
- #: includes/class-theme-my-login.php:245
431
- msgid "Sorry, that key does not appear to be valid."
432
- msgstr "Sorry, deze sleutel lijkt niet goed te zijn."
433
-
434
- #: includes/class-theme-my-login.php:261
435
- msgid "The passwords do not match."
436
- msgstr "De wachtwoorden komen niet overeen."
437
-
438
- #: includes/class-theme-my-login.php:367
439
- msgid "<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href=\"http://www.google.com/cookies.html\">enable cookies</a> to use WordPress."
440
- msgstr "<strong>FOUTMELDING</strong>: Cookies worden geblokkeerd en worden niet ondersteund door uw browser. U moet het <a href=\"http://www.google.com/cookies.html\">gebruik van cookkies activeren</a> om WordPress te gebruiken."
441
-
442
- #: includes/class-theme-my-login.php:371
443
- msgid "You are now logged out."
444
- msgstr "U bent nu afgemeld."
445
-
446
- #: includes/class-theme-my-login.php:373
447
- msgid "User registration is currently not allowed."
448
- msgstr "Registratie van nieuwe gebruikers is op dit moment niet toegestaan."
449
-
450
- #: includes/class-theme-my-login.php:375
451
- msgid "Check your e-mail for the confirmation link."
452
- msgstr "Controleer uw e-mail voor een bevestigingsmail."
453
-
454
- #: includes/class-theme-my-login.php:377
455
- msgid "Your password has been reset."
456
- msgstr "Je wachtwoord is hersteld."
457
-
458
- #: includes/class-theme-my-login.php:379
459
- msgid "Registration complete. Please check your e-mail."
460
- msgstr "Registratie afgerond. Controleer alstublieft uw e-mail berichten."
461
-
462
- #: includes/class-theme-my-login.php:381
463
- msgid "Your session has expired. Please log-in again."
464
- msgstr "Uw sessie is verlopen. Meld u zich alstublieft opnieuw aan."
465
-
466
- #: includes/class-theme-my-login.php:383
467
- msgid "Please log in to continue."
468
- msgstr "Log in om verder te gaan."
469
-
470
- #: includes/class-theme-my-login.php:540
471
- msgid "Log Out"
472
- msgstr "Afmelden"
473
-
474
- #: includes/class-theme-my-login.php:925
475
- msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
476
- msgstr "<strong>FOUTMELDING</strong>: Voer een gebruikersnaam of e-mailadres in."
477
-
478
- #: includes/class-theme-my-login.php:929
479
- msgid "<strong>ERROR</strong>: There is no user registered with that email address."
480
- msgstr "<strong>FOUTMELDING</strong>: Er is geen geregistreerde gebruiker met dat e-mailadres."
481
-
482
- #: includes/class-theme-my-login.php:941
483
- msgid "<strong>ERROR</strong>: Invalid username or e-mail."
484
- msgstr "<strong>FOUTMELDING</strong>: Ongeldige gebruikersnaam of e-mailadres."
485
-
486
- #: includes/class-theme-my-login.php:955
487
- msgid "Password reset is not allowed for this user"
488
- msgstr "Een Wachtwoord reset is niet toegestaan voor deze gebruiker"
489
-
490
- #: includes/class-theme-my-login.php:967
491
- msgid "Someone requested that the password be reset for the following account:"
492
- msgstr "Iemand heeft verzocht om het wachtwoord van het volgende account opnieuw in te stellen:"
493
-
494
- #: includes/class-theme-my-login.php:969
495
- #: modules/custom-email/custom-email.php:692
496
- #: modules/custom-email/custom-email.php:709
497
- #: modules/user-moderation/admin/user-moderation-admin.php:164
498
- #: modules/user-moderation/user-moderation.php:365
499
- msgid "Username: %s"
500
- msgstr "Gebruikersnaam: %s"
501
-
502
- #: includes/class-theme-my-login.php:970
503
- msgid "If this was a mistake, just ignore this email and nothing will happen."
504
- msgstr "Als dit een vergissing was, kun je deze e-mail negeren en zal er niets gebeuren."
505
-
506
- #: includes/class-theme-my-login.php:971
507
- msgid "To reset your password, visit the following address:"
508
- msgstr "Als dit een vergissing was, kun je deze e-mail negeren en zal er niets gebeuren."
509
-
510
- #: includes/class-theme-my-login.php:982
511
- msgid "[%s] Password Reset"
512
- msgstr "[%s] Wachtwoord wijzigen"
513
-
514
- #: includes/class-theme-my-login.php:988
515
- #: modules/user-moderation/admin/user-moderation-admin.php:53
516
- #: modules/user-moderation/admin/user-moderation-admin.php:174
517
- #: modules/user-moderation/admin/user-moderation-admin.php:210
518
- msgid "The e-mail could not be sent."
519
- msgstr "Het e-mail bericht kon niet verstuurd worden."
520
-
521
- #: includes/class-theme-my-login.php:988
522
- #: modules/user-moderation/admin/user-moderation-admin.php:53
523
- #: modules/user-moderation/admin/user-moderation-admin.php:174
524
- #: modules/user-moderation/admin/user-moderation-admin.php:210
525
- msgid "Possible reason: your host may have disabled the mail() function..."
526
- msgstr "Een mogelijke oorzaak is dat op uw server de mail() functie niet geactiveerd is."
527
-
528
- #: includes/class-theme-my-login.php:1011
529
- #: includes/class-theme-my-login.php:1014
530
- #: includes/class-theme-my-login.php:1019
531
- #: modules/user-moderation/user-moderation.php:238
532
- #: modules/user-moderation/user-moderation.php:241
533
- #: modules/user-moderation/user-moderation.php:246
534
- msgid "Invalid key"
535
- msgstr "Ongeldige sleutel"
536
-
537
- #: includes/class-theme-my-login.php:1059
538
- msgid "<strong>ERROR</strong>: Please enter a username."
539
- msgstr "<strong>FOUTMELDING</strong>: Voer een gebruikersnaam in."
540
-
541
- #: includes/class-theme-my-login.php:1061
542
- msgid "<strong>ERROR</strong>: This username is invalid because it uses illegal characters. Please enter a valid username."
543
- msgstr "<strong>FOUTMELDING</strong>: Deze gebruikersnaam is ongeldig doordat er ongeldige tekens gebruikt zijn. Voer een geldige gebruikersnaam in."
544
-
545
- #: includes/class-theme-my-login.php:1064
546
- msgid "<strong>ERROR</strong>: This username is already registered, please choose another one."
547
- msgstr "<strong>FOUTMELDING</strong>: Deze gebruikersnaam bestaat al, kies s.v.p. een andere."
548
-
549
- #: includes/class-theme-my-login.php:1069
550
- msgid "<strong>ERROR</strong>: Please type your e-mail address."
551
- msgstr "<strong>FOUTMELDING</strong>: Voer uw e-mailadres in."
552
-
553
- #: includes/class-theme-my-login.php:1071
554
- msgid "<strong>ERROR</strong>: The email address isn&#8217;t correct."
555
- msgstr "<strong>FOUTMELDING</strong>: Het e-mailadres is niet correct."
556
-
557
- #: includes/class-theme-my-login.php:1074
558
- msgid "<strong>ERROR</strong>: This email is already registered, please choose another one."
559
- msgstr "<strong>FOUTMELDING</strong>: Dit e-mailadres is al geregistreerd, kies s.v.p. een andere."
560
-
561
- #: includes/class-theme-my-login.php:1087
562
- msgid "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href=\"mailto:%s\">webmaster</a> !"
563
- msgstr "<strong>FOUTMELDING</strong>: Kon u niet registreren... neem s.v.p. contact op via <a href=\"mailto:%s\">webmaster</a> !"
564
-
565
- #: modules/custom-email/admin/custom-email-admin.php:46
566
- #: modules/custom-email/admin/custom-email-admin.php:265
567
- msgid "User Notification"
568
- msgstr "Gebruikersberichten"
569
-
570
- #: modules/custom-email/admin/custom-email-admin.php:49
571
- msgid "This e-mail will be sent to a new user upon registration."
572
- msgstr "Dit e-mail bericht zal verstuurd worden zodra een nieuwe gebruiker zich aangemeld heeft."
573
-
574
- #: modules/custom-email/admin/custom-email-admin.php:50
575
- #: modules/custom-email/admin/custom-email-admin.php:269
576
- msgid "Please be sure to include the variable %user_pass% if using default passwords or else the user will not know their password!"
577
- msgstr "Zorg er alstublieft voor dat de variabele %user_pass% is toegevoegd als u gebruik maakt van standaard wachtwoorden anders weet de gebruiker zijn wachtwoord niet!"
578
-
579
- #: modules/custom-email/admin/custom-email-admin.php:51
580
- #: modules/custom-email/admin/custom-email-admin.php:81
581
- #: modules/custom-email/admin/custom-email-admin.php:130
582
- #: modules/custom-email/admin/custom-email-admin.php:175
583
- #: modules/custom-email/admin/custom-email-admin.php:224
584
- #: modules/custom-email/admin/custom-email-admin.php:270
585
- #: modules/custom-email/admin/custom-email-admin.php:300
586
- #: modules/custom-email/admin/custom-email-admin.php:348
587
- msgid "If any field is left empty, the default will be used instead."
588
- msgstr "Als er een veld wordt open gelaten zal de standaard waarde gebruikt worden."
589
-
590
- #: modules/custom-email/admin/custom-email-admin.php:54
591
- #: modules/custom-email/admin/custom-email-admin.php:87
592
- #: modules/custom-email/admin/custom-email-admin.php:133
593
- #: modules/custom-email/admin/custom-email-admin.php:181
594
- #: modules/custom-email/admin/custom-email-admin.php:227
595
- #: modules/custom-email/admin/custom-email-admin.php:273
596
- #: modules/custom-email/admin/custom-email-admin.php:306
597
- #: modules/custom-email/admin/custom-email-admin.php:351
598
- msgid "From Name"
599
- msgstr "Naam afzender "
600
-
601
- #: modules/custom-email/admin/custom-email-admin.php:57
602
- #: modules/custom-email/admin/custom-email-admin.php:90
603
- #: modules/custom-email/admin/custom-email-admin.php:136
604
- #: modules/custom-email/admin/custom-email-admin.php:184
605
- #: modules/custom-email/admin/custom-email-admin.php:230
606
- #: modules/custom-email/admin/custom-email-admin.php:276
607
- #: modules/custom-email/admin/custom-email-admin.php:309
608
- #: modules/custom-email/admin/custom-email-admin.php:354
609
- msgid "From E-mail"
610
- msgstr "E-mail Afzender"
611
-
612
- #: modules/custom-email/admin/custom-email-admin.php:60
613
- #: modules/custom-email/admin/custom-email-admin.php:93
614
- #: modules/custom-email/admin/custom-email-admin.php:139
615
- #: modules/custom-email/admin/custom-email-admin.php:187
616
- #: modules/custom-email/admin/custom-email-admin.php:233
617
- #: modules/custom-email/admin/custom-email-admin.php:279
618
- #: modules/custom-email/admin/custom-email-admin.php:312
619
- #: modules/custom-email/admin/custom-email-admin.php:357
620
- msgid "E-mail Format"
621
- msgstr "E-mail formaat"
622
-
623
- #: modules/custom-email/admin/custom-email-admin.php:62
624
- #: modules/custom-email/admin/custom-email-admin.php:95
625
- #: modules/custom-email/admin/custom-email-admin.php:141
626
- #: modules/custom-email/admin/custom-email-admin.php:189
627
- #: modules/custom-email/admin/custom-email-admin.php:235
628
- #: modules/custom-email/admin/custom-email-admin.php:281
629
- #: modules/custom-email/admin/custom-email-admin.php:314
630
- #: modules/custom-email/admin/custom-email-admin.php:359
631
- msgid "Plain Text"
632
- msgstr "Plain Text"
633
-
634
- #: modules/custom-email/admin/custom-email-admin.php:63
635
- #: modules/custom-email/admin/custom-email-admin.php:96
636
- #: modules/custom-email/admin/custom-email-admin.php:142
637
- #: modules/custom-email/admin/custom-email-admin.php:190
638
- #: modules/custom-email/admin/custom-email-admin.php:236
639
- #: modules/custom-email/admin/custom-email-admin.php:282
640
- #: modules/custom-email/admin/custom-email-admin.php:315
641
- #: modules/custom-email/admin/custom-email-admin.php:360
642
- msgid "HTML"
643
- msgstr "HTML"
644
-
645
- #: modules/custom-email/admin/custom-email-admin.php:66
646
- #: modules/custom-email/admin/custom-email-admin.php:99
647
- #: modules/custom-email/admin/custom-email-admin.php:145
648
- #: modules/custom-email/admin/custom-email-admin.php:193
649
- #: modules/custom-email/admin/custom-email-admin.php:239
650
- #: modules/custom-email/admin/custom-email-admin.php:285
651
- #: modules/custom-email/admin/custom-email-admin.php:318
652
- #: modules/custom-email/admin/custom-email-admin.php:363
653
- msgid "Subject"
654
- msgstr "Onderwerp"
655
-
656
- #: modules/custom-email/admin/custom-email-admin.php:69
657
- #: modules/custom-email/admin/custom-email-admin.php:102
658
- #: modules/custom-email/admin/custom-email-admin.php:148
659
- #: modules/custom-email/admin/custom-email-admin.php:196
660
- #: modules/custom-email/admin/custom-email-admin.php:242
661
- #: modules/custom-email/admin/custom-email-admin.php:288
662
- #: modules/custom-email/admin/custom-email-admin.php:321
663
- #: modules/custom-email/admin/custom-email-admin.php:366
664
- msgid "Message"
665
- msgstr "Bericht"
666
-
667
- #: modules/custom-email/admin/custom-email-admin.php:72
668
- #: modules/custom-email/admin/custom-email-admin.php:105
669
- #: modules/custom-email/admin/custom-email-admin.php:151
670
- #: modules/custom-email/admin/custom-email-admin.php:199
671
- #: modules/custom-email/admin/custom-email-admin.php:245
672
- #: modules/custom-email/admin/custom-email-admin.php:291
673
- #: modules/custom-email/admin/custom-email-admin.php:324
674
- #: modules/custom-email/admin/custom-email-admin.php:369
675
- msgid "Available Variables"
676
- msgstr "Beschikbare variabelen"
677
-
678
- #: modules/custom-email/admin/custom-email-admin.php:77
679
- #: modules/custom-email/admin/custom-email-admin.php:171
680
- #: modules/custom-email/admin/custom-email-admin.php:296
681
- msgid "Admin Notification"
682
- msgstr "Bericht aan Beheerder"
683
-
684
- #: modules/custom-email/admin/custom-email-admin.php:80
685
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon new user registration."
686
- msgstr "Als een nieuwe gebruiker zich registreerd zal het volgende bericht verstuurd worden aan het e-mailadres of aan de e-mailadressen (meerdere adressen dienen gescheiden te worden door comma's) die hieronder weergegeven worden."
687
-
688
- #: modules/custom-email/admin/custom-email-admin.php:84
689
- #: modules/custom-email/admin/custom-email-admin.php:178
690
- #: modules/custom-email/admin/custom-email-admin.php:303
691
- msgid "To"
692
- msgstr "Aan"
693
-
694
- #: modules/custom-email/admin/custom-email-admin.php:128
695
- msgid "This e-mail will be sent to a user when they attempt to recover their password."
696
- msgstr "Dit e-mail bericht zal verstuurd worden aan gebruikers als deze proberen hun wachtwoord op te vragen."
697
-
698
- #: modules/custom-email/admin/custom-email-admin.php:129
699
- msgid "Please be sure to include the variable %reseturl% or else the user will not be able to recover their password!"
700
- msgstr "Zorg er alstublieft voor dat de variabele %reseturl% is toegevoegd anders kan de gebruiker zijn wachtwoord niet opvragen!"
701
-
702
- #: modules/custom-email/admin/custom-email-admin.php:174
703
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon user password change."
704
- msgstr "Zodra een gebruiker zijn wachtwoord wijzigd zal dit e-mail bericht verzonden worden aan het e-mailadres of aan de e-mailadressen (meerdere adressen dienen door een komma gescheiden te worden) die hieronder worden weergegeven."
705
-
706
- #: modules/custom-email/admin/custom-email-admin.php:201
707
- #: modules/custom-email/admin/custom-email-admin.php:326
708
- msgid "Disable Admin Notification"
709
- msgstr "Schakel Beheerders berichten uit"
710
-
711
- #: modules/custom-email/admin/custom-email-admin.php:222
712
- msgid "This e-mail will be sent to a new user upon registration when \"E-mail Confirmation\" is checked for \"User Moderation\"."
713
- msgstr "Dit e-mail bericht zal verstuurd worden aan een nieuwe gebruiker zodra deze zich registreerd als \"E-mail Bevestiging\" is geselecteerd voor \"Gebruikersmoderatie\"."
714
-
715
- #: modules/custom-email/admin/custom-email-admin.php:223
716
- msgid "Please be sure to include the variable %activateurl% or else the user will not be able to activate their account!"
717
- msgstr "Zorg er alstublieft voor dat de variabele %activateurl% is toegevoegd anders kan de gebruiker zijn gebruikersaccount niet activeren!"
718
-
719
- #: modules/custom-email/admin/custom-email-admin.php:268
720
- msgid "This e-mail will be sent to a new user upon admin approval when \"Admin Approval\" is checked for \"User Moderation\"."
721
- msgstr "Dit e-mail bericht zal verstuurd worden aan een nieuwe gebruiker na goedkeuring door een Beheerder als \"E-mail Bevestiging\" is geselecteerd voor \"Gebruikersmoderatie\"."
722
-
723
- #: modules/custom-email/admin/custom-email-admin.php:299
724
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below upon user registration when \"Admin Approval\" is checked for \"User Moderation\"."
725
- msgstr "Zodra een gebruiker zich registreerd en als \"Behherdersgoedkeuring\" is geselecteerd voor \"Gebruikersmoderatie\" zal dit e-mail bericht verzonden worden aan het e-mailadres of aan de e-mailadressen (meerdere adressen dienen door een komma gescheiden te worden) die hieronder worden weergegeven."
726
-
727
- #: modules/custom-email/admin/custom-email-admin.php:347
728
- msgid "This e-mail will be sent to a user who is deleted/denied when \"Admin Approval\" is checked for \"User Moderation\" and the user's role is \"Pending\"."
729
- msgstr "Dit e-mail bericht zal verzonden worden aan een gebruiker die is verwijderd/afgekeurd als \"Beheerdergoedkeuring\" is geselcteerd en als de gebruikersrol op \"Afwachtend\" staat."
730
-
731
- #: modules/custom-email/admin/custom-email-admin.php:390
732
- #: templates/profile-form.php:143
733
- #: templates/register-form.php:16
734
- msgid "E-mail"
735
- msgstr "E-mail"
736
-
737
- #: modules/custom-email/admin/custom-email-admin.php:391
738
- msgid "New User"
739
- msgstr "Nieuwe gebruiker"
740
-
741
- #: modules/custom-email/admin/custom-email-admin.php:392
742
- msgid "Retrieve Password"
743
- msgstr "Wachtwoord opvragen"
744
-
745
- #: modules/custom-email/admin/custom-email-admin.php:393
746
- #: templates/resetpass-form.php:26
747
- msgid "Reset Password"
748
- msgstr "Wijzig Wachtwoord"
749
-
750
- #: modules/custom-email/admin/custom-email-admin.php:395
751
- msgid "User Activation"
752
- msgstr "Activeren Gebruikers"
753
-
754
- #: modules/custom-email/admin/custom-email-admin.php:396
755
- msgid "User Approval"
756
- msgstr "Goedkeuren Gebruikers"
757
-
758
- #: modules/custom-email/admin/custom-email-admin.php:397
759
- msgid "User Denial"
760
- msgstr "Afkeuren Gebruikers"
761
-
762
- #: modules/custom-email/custom-email.php:691
763
- msgid "New user registration on your site %s:"
764
- msgstr "Registratie van een nieuwe gebruiker op uw website %s:"
765
-
766
- #: modules/custom-email/custom-email.php:693
767
- #: modules/user-moderation/user-moderation.php:366
768
- msgid "E-mail: %s"
769
- msgstr "E-mail: %s"
770
-
771
- #: modules/custom-email/custom-email.php:695
772
- msgid "[%s] New User Registration"
773
- msgstr "[%s] Registratie van een nieuwe gebruiker"
774
-
775
- #: modules/custom-email/custom-email.php:710
776
- #: modules/user-moderation/admin/user-moderation-admin.php:165
777
- msgid "Password: %s"
778
- msgstr "Wachtwoord: %s"
779
-
780
- #: modules/custom-email/custom-email.php:713
781
- msgid "[%s] Your username and password"
782
- msgstr "[%s] Uw gebruikersnaam en wachtwoord"
783
-
784
- #: modules/custom-email/custom-email.php:745
785
- msgid "[%s] Password Lost/Changed"
786
- msgstr "[%s] Wachtwoord Vergeten/Gewijzigd"
787
-
788
- #: modules/custom-email/custom-email.php:746
789
- msgid "Password Lost and Changed for user: %s"
790
- msgstr "Wachtwoord Vergeten en Gewijzigd voor gebruiker: %s"
791
-
792
- #: modules/custom-passwords/custom-passwords.php:31
793
- #: modules/custom-passwords/custom-passwords.php:63
794
- msgid "Confirm Password:"
795
- msgstr "Bevestig Wachtwoord:"
796
-
797
- #: modules/custom-passwords/custom-passwords.php:61
798
- msgid "(Must be at least 6 characters.)"
799
- msgstr "(Moet minstens 6 tekens.)"
800
-
801
- #: modules/custom-passwords/custom-passwords.php:65
802
- msgid "Confirm that you've typed your password correctly."
803
- msgstr "Bevestig dat u uw wachtwoord correct hebt ingevoerd."
804
-
805
- #: modules/custom-passwords/custom-passwords.php:103
806
- msgid "<strong>ERROR</strong>: Please enter a password."
807
- msgstr "<strong>FOUTMELDING</strong>: Voer alstublieft een wachtwoord in."
808
-
809
- #: modules/custom-passwords/custom-passwords.php:106
810
- msgid "<strong>ERROR</strong>: Your passwords do not match."
811
- msgstr "<strong>FOUTMELDING</strong>: Uw wachtwoorden zijn verschillend."
812
-
813
- #: modules/custom-passwords/custom-passwords.php:109
814
- msgid "<strong>ERROR</strong>: Your password must be at least 6 characters in length."
815
- msgstr "<strong>FOUTMELDING</strong>: Uw wachtwoord moet minimaal 6 tekes lang zijn."
816
-
817
- #: modules/custom-passwords/custom-passwords.php:230
818
- msgid "Registration complete. You may now log in."
819
- msgstr "Registratie is uitgevoerd. U kunt zich nu aanmelden."
820
-
821
- #: modules/custom-redirection/custom-redirection.php:156
822
- msgid "Redirection"
823
- msgstr "Doorverwijzing"
824
-
825
- #: modules/custom-redirection/custom-redirection.php:185
826
- msgid "Log in"
827
- msgstr "Aanmelden"
828
-
829
- #: modules/custom-redirection/custom-redirection.php:187
830
- #: modules/custom-redirection/custom-redirection.php:199
831
- msgid "Default"
832
- msgstr "Standaard"
833
-
834
- #: modules/custom-redirection/custom-redirection.php:188
835
- msgid "Check this option to send the user to their WordPress Dashboard/Profile."
836
- msgstr "Selecteer deze optie om gebruikers naar hun Wordpress Blogbeheer/Profile te sturen."
837
-
838
- #: modules/custom-redirection/custom-redirection.php:189
839
- #: modules/custom-redirection/custom-redirection.php:201
840
- msgid "Referer"
841
- msgstr "Verwijzer"
842
-
843
- #: modules/custom-redirection/custom-redirection.php:190
844
- msgid "Check this option to send the user back to the page they were visiting before logging in."
845
- msgstr "Selecteer deze optie om gebruikers terug te sturen naar de pagina die ze bezochten voordat ze zich aanmelden."
846
-
847
- #: modules/custom-redirection/custom-redirection.php:193
848
- #: modules/custom-redirection/custom-redirection.php:205
849
- msgid "Check this option to send the user to a custom location, specified by the textbox above."
850
- msgstr "Selecteer deze optie om de gebruiker naar een aangepaste locatie te sturen die hierboven weergegeven is."
851
-
852
- #: modules/custom-redirection/custom-redirection.php:200
853
- msgid "Check this option to send the user to the log in page, displaying a message that they have successfully logged out."
854
- msgstr "Selecteer deze optie aan om een gebruiker naar de aanmeld pagina te sturen waarop een bevestiging staat dat ze zijn afgemeld."
855
-
856
- #: modules/custom-redirection/custom-redirection.php:202
857
- msgid "Check this option to send the user back to the page they were visiting before logging out. (Note: If the previous page being visited was an admin page, this can have unexpected results.)"
858
- msgstr "Selecteer deze optie om gebruikers terug te sturen naar de pagina die ze bezochten voordat ze zich afmelden. (LET OP: Als de vorige pagina de Blogbeheer pagina was dan kan dit leiden tot onverwachte resultaten."
859
-
860
- #: modules/custom-user-links/admin/custom-user-links-admin.php:140
861
- msgid "User Links"
862
- msgstr "Gebruikerslinks"
863
-
864
- #: modules/custom-user-links/admin/custom-user-links-admin.php:232
865
- #: modules/custom-user-links/admin/custom-user-links-admin.php:255
866
- #: modules/custom-user-links/admin/custom-user-links-admin.php:300
867
- msgid "Title"
868
- msgstr "Titel"
869
-
870
- #: modules/custom-user-links/admin/custom-user-links-admin.php:233
871
- #: modules/custom-user-links/admin/custom-user-links-admin.php:256
872
- #: modules/custom-user-links/admin/custom-user-links-admin.php:304
873
- msgid "URL"
874
- msgstr "url"
875
-
876
- #: modules/custom-user-links/admin/custom-user-links-admin.php:250
877
- msgid "Add New link:"
878
- msgstr "Voeg een nieuwe link toe:"
879
-
880
- #: modules/custom-user-links/admin/custom-user-links-admin.php:266
881
- msgid "Add link"
882
- msgstr "Link toevoegen"
883
-
884
- #: modules/custom-user-links/admin/custom-user-links-admin.php:306
885
- msgid "Delete"
886
- msgstr "Verwijderen"
887
-
888
- #: modules/custom-user-links/admin/custom-user-links-admin.php:307
889
- msgid "Update"
890
- msgstr "Bijwerken"
891
-
892
- #: modules/security/admin/security-admin.php:32
893
- #: modules/security/admin/security-admin.php:35
894
- #: modules/user-moderation/admin/user-moderation-admin.php:34
895
- #: modules/user-moderation/admin/user-moderation-admin.php:44
896
- msgid "You can&#8217;t edit that user."
897
- msgstr "U kunt die gebruiker niet aanpassen."
898
-
899
- #: modules/security/admin/security-admin.php:67
900
- msgid "User locked."
901
- msgstr "Gebruiker geblokkeerd."
902
-
903
- #: modules/security/admin/security-admin.php:69
904
- msgid "User unlocked."
905
- msgstr "Gebruiker vrij gegegeven."
906
-
907
- #: modules/security/admin/security-admin.php:92
908
- msgid "Unlock"
909
- msgstr "Deblokkeer"
910
-
911
- #: modules/security/admin/security-admin.php:94
912
- msgid "Lock"
913
- msgstr "Blokkeer"
914
-
915
- #: modules/security/admin/security-admin.php:113
916
- msgid "Security"
917
- msgstr "Beveiliging"
918
-
919
- #: modules/security/admin/security-admin.php:132
920
- msgid "Private Site"
921
- msgstr "prive-Site"
922
-
923
- #: modules/security/admin/security-admin.php:135
924
- msgid "Require users to be logged in to view site"
925
- msgstr "Gebruikers moeten ingelogd zijn om site te bekijken"
926
-
927
- #: modules/security/admin/security-admin.php:139
928
- msgid "Login Attempts"
929
- msgstr "Aanmeld pogingen"
930
-
931
- #: modules/security/admin/security-admin.php:144
932
- msgid "minute(s)"
933
- msgstr "Minuten"
934
-
935
- #: modules/security/admin/security-admin.php:145
936
- msgid "hour(s)"
937
- msgstr "uren"
938
-
939
- #: modules/security/admin/security-admin.php:146
940
- msgid "day(s)"
941
- msgstr "dag(en)"
942
-
943
- #: modules/security/admin/security-admin.php:169
944
- msgid "After %1$s failed login attempts within %2$s %3$s, lockout the account for %4$s %5$s."
945
- msgstr "Blokkeer de gebruiker na %1$s foute aanmeld pogingen binnen %2$s %3$s gedurende %4$s %5$s."
946
-
947
- #: modules/security/security.php:64
948
- #: modules/security/security.php:90
949
- msgid "<strong>ERROR</strong>: This account has been locked because of too many failed login attempts. You may try again in %s."
950
- msgstr "<strong>FOUTMELDING</strong>: Deze gebruiker is geblokkeerd door te veel foute aanmeld pogingen. U kunt het over %s opnieuw proberen."
951
-
952
- #: modules/security/security.php:66
953
- msgid "<strong>ERROR</strong>: This account has been locked."
954
- msgstr "<strong>FOUTMELDING</strong>: Dit gebruikersaccount is geblokkeerd."
955
-
956
- #: modules/security/security.php:126
957
- msgid "Failed Login Attempts"
958
- msgstr "Mislukte login pogingen"
959
-
960
- #: modules/security/security.php:130
961
- msgid "IP Address"
962
- msgstr "IP-adres"
963
-
964
- #: modules/security/security.php:131
965
- msgid "Date"
966
- msgstr "datum"
967
-
968
- #: modules/security/security.php:134
969
- msgid "Y/m/d g:i:s A"
970
- msgstr "d-m-Y H.i.s"
971
-
972
- #: modules/security/security.php:139
973
- msgid "%s ago"
974
- msgstr "%s geleden"
975
-
976
- #: modules/security/security.php:141
977
- msgid "Y/m/d"
978
- msgstr "d-m-Y"
979
-
980
- #: modules/themed-profiles/admin/themed-profiles-admin.php:23
981
- #: modules/themed-profiles/admin/themed-profiles-admin.php:42
982
- msgid "Themed Profiles"
983
- msgstr "thema-Profielen"
984
-
985
- #: modules/themed-profiles/admin/themed-profiles-admin.php:51
986
- msgid "Restrict Admin Access"
987
- msgstr "Beperken Admin Access"
988
-
989
- #: modules/themed-profiles/themed-profiles.php:123
990
- #: templates/profile-form.php:182
991
- #: templates/resetpass-form.php:19
992
- msgid "Strength indicator"
993
- msgstr "Sterkte indicatie"
994
-
995
- #: modules/themed-profiles/themed-profiles.php:124
996
- msgid "Very weak"
997
- msgstr "Erg zwak"
998
-
999
- #: modules/themed-profiles/themed-profiles.php:125
1000
- msgid "Weak"
1001
- msgstr "Zwak"
1002
-
1003
- #. translators: password strength
1004
- #: modules/themed-profiles/themed-profiles.php:127
1005
- msgctxt "password strength"
1006
- msgid "Medium"
1007
- msgstr "Gemiddeld"
1008
-
1009
- #: modules/themed-profiles/themed-profiles.php:128
1010
- msgid "Strong"
1011
- msgstr "Sterk"
1012
-
1013
- #: modules/themed-profiles/themed-profiles.php:138
1014
- msgid "You do not have permission to edit this user."
1015
- msgstr "U hebt geen rechten on deze gebruiker te bewerken."
1016
-
1017
- #: modules/themed-profiles/themed-profiles.php:154
1018
- msgid "Profile updated."
1019
- msgstr "Profiel bijgewerkt."
1020
-
1021
- #: modules/themed-profiles/themed-profiles.php:243
1022
- msgid "Your Profile"
1023
- msgstr "Uw Profiel"
1024
-
1025
- #: modules/user-moderation/admin/user-moderation-admin.php:75
1026
- msgid "User approved."
1027
- msgstr "Gebruiker goedgekeurd."
1028
-
1029
- #: modules/user-moderation/admin/user-moderation-admin.php:77
1030
- msgid "Activation sent."
1031
- msgstr "Activatie verzonden."
1032
-
1033
- #: modules/user-moderation/admin/user-moderation-admin.php:105
1034
- msgid "Resend Activation"
1035
- msgstr "Verstuur activatie opnieuw"
1036
-
1037
- #: modules/user-moderation/admin/user-moderation-admin.php:110
1038
- msgid "Approve"
1039
- msgstr "Goedkeuren"
1040
-
1041
- #: modules/user-moderation/admin/user-moderation-admin.php:163
1042
- msgid "You have been approved access to %s"
1043
- msgstr "U heeft toegang gekregen tot %s"
1044
-
1045
- #: modules/user-moderation/admin/user-moderation-admin.php:168
1046
- msgid "[%s] Registration Approved"
1047
- msgstr "[%s] Registratie goedgekeurd"
1048
-
1049
- #: modules/user-moderation/admin/user-moderation-admin.php:203
1050
- msgid "You have been denied access to %s"
1051
- msgstr "U is de toegang tot %s gewijgerd."
1052
-
1053
- #: modules/user-moderation/admin/user-moderation-admin.php:204
1054
- msgid "[%s] Registration Denied"
1055
- msgstr "[%s] Registratie gewijgerd"
1056
-
1057
- #: modules/user-moderation/admin/user-moderation-admin.php:226
1058
- msgid "Moderation"
1059
- msgstr "Moderatie"
1060
-
1061
- #: modules/user-moderation/admin/user-moderation-admin.php:242
1062
- msgid "User Moderation"
1063
- msgstr "Gebruikersmoderatie"
1064
-
1065
- #: modules/user-moderation/admin/user-moderation-admin.php:245
1066
- msgid "None"
1067
- msgstr "Geen"
1068
-
1069
- #: modules/user-moderation/admin/user-moderation-admin.php:246
1070
- msgid "Check this option to require no moderation."
1071
- msgstr "Selecteer deze optie zodat moderatie niet nodig is."
1072
-
1073
- #: modules/user-moderation/admin/user-moderation-admin.php:248
1074
- msgid "E-mail Confirmation"
1075
- msgstr "E-mail bevestiging"
1076
-
1077
- #: modules/user-moderation/admin/user-moderation-admin.php:249
1078
- msgid "Check this option to require new users to confirm their e-mail address before they may log in."
1079
- msgstr "Selecteer deze optie zodat nieuwe gebruikers hun e-mailadres moeten bevestigen voordat ze zich aan kunnen melden."
1080
-
1081
- #: modules/user-moderation/admin/user-moderation-admin.php:251
1082
- msgid "Admin Approval"
1083
- msgstr "Akkoord Beheerder"
1084
-
1085
- #: modules/user-moderation/admin/user-moderation-admin.php:252
1086
- msgid "Check this option to require new users to be approved by an administrator before they may log in."
1087
- msgstr "Selecteer deze optie zodat nieuwe gebruikers goedgekeurd dienen te worden door een beheerder voordat ze zich aan kunnen melden."
1088
-
1089
- #: modules/user-moderation/admin/user-moderation-admin.php:269
1090
- msgid "User Moderation is not currently compatible with multisite."
1091
- msgstr "Gebruiker Matiging is momenteel niet compatibel met meerdere locaties."
1092
-
1093
- #: modules/user-moderation/user-moderation.php:163
1094
- msgid "<strong>ERROR</strong>: You have not yet confirmed your e-mail address. <a href=\"%s\">Resend activation</a>?"
1095
- msgstr "<strong>FOUTMELDING</strong>: U heeft uw e-mailadres nog niet bevestigd. <a href=\"%s\">Verzend activatie mail opnieuw</a>?"
1096
-
1097
- #: modules/user-moderation/user-moderation.php:166
1098
- msgid "<strong>ERROR</strong>: Your registration has not yet been approved."
1099
- msgstr "<strong>FOUTMELDING</strong>: Uw registratie is nog niet goedgekeurd."
1100
-
1101
- #: modules/user-moderation/user-moderation.php:328
1102
- msgid "[%s] Activate Your Account"
1103
- msgstr "[%s] Activeer uw gebruikersaccount"
1104
-
1105
- #: modules/user-moderation/user-moderation.php:329
1106
- msgid "Thanks for registering at %s! To complete the activation of your account please click the following link: "
1107
- msgstr "Bedankt voor uw registartie op %s. Om uw account te activeren dient u op de volgene link te klikken:"
1108
-
1109
- #: modules/user-moderation/user-moderation.php:362
1110
- msgid "[%s] New User Awaiting Approval"
1111
- msgstr "[%s] Nieuwe gebruiker wachtend op goedkeuring"
1112
-
1113
- #: modules/user-moderation/user-moderation.php:364
1114
- msgid "New user requires approval on your blog %s:"
1115
- msgstr "Een nieuwe gebruiker moet op uw blog %s goedgekeurd worden:"
1116
-
1117
- #: modules/user-moderation/user-moderation.php:367
1118
- msgid "To approve or deny this user:"
1119
- msgstr "Goedkeuren of afkeuren van een gebruiker:"
1120
-
1121
- #: modules/user-moderation/user-moderation.php:388
1122
- msgid "Your registration was successful but you must now confirm your email address before you can log in. Please check your email and click on the link provided."
1123
- msgstr "Uw registratie was succesvol maar u moet nu uw e-mailadres bevestigen voordat u zich aan kunt melden. Controleer alstublieft uw e-mail en klik op de link ter bevestiging."
1124
-
1125
- #: modules/user-moderation/user-moderation.php:390
1126
- msgid "Your registration was successful but you must now be approved by an administrator before you can log in. You will be notified by e-mail once your account has been reviewed."
1127
- msgstr "Uw registratie was succesvol maar u moet nu nog goedgekeurd worden door een beheerder voordat u zich aan kunt melden. U krijgt een bericht per e-mail zodra uw account is goedgekeurd."
1128
-
1129
- #: modules/user-moderation/user-moderation.php:393
1130
- msgid "Your account has been activated. You may now log in."
1131
- msgstr "Uw gebruikersaccount is nu geactiveerd. U kunt zich nu aanmelden."
1132
-
1133
- #: modules/user-moderation/user-moderation.php:395
1134
- msgid "Your account has been activated. Please check your e-mail for your password."
1135
- msgstr "Uw gebruikersaccount is nu geactiveerd. Kijkt u alstublieft in uw e-mail voor uw wachtwoord."
1136
-
1137
- #: modules/user-moderation/user-moderation.php:397
1138
- msgid "<strong>ERROR</strong>: Sorry, that key does not appear to be valid."
1139
- msgstr "<strong>FOUTMELDING</strong>: Sorry, die sleutel lijkt niet geldig te zijn."
1140
-
1141
- #: modules/user-moderation/user-moderation.php:400
1142
- msgid "<strong>ERROR</strong>: Sorry, the activation e-mail could not be sent."
1143
- msgstr "<strong>FOUTMELDING</strong>: Sorry, de activatie e-mail kon niet verstuurd worden."
1144
-
1145
- #: modules/user-moderation/user-moderation.php:402
1146
- msgid "The activation e-mail has been sent to the e-mail address with which you registered. Please check your email and click on the link provided."
1147
- msgstr "Het activatie e-mail bericht is verstuurd naar het e-mailadres dat u bij uw registratie heeft opgegeven. Kijkt u alstublieft in uw e-mail en klik op de link voor het bevestigen van de activatie."
1148
-
1149
- #: templates/login-form.php:12
1150
- #: templates/profile-form.php:91
1151
- #: templates/register-form.php:12
1152
- msgid "Username"
1153
- msgstr "Gebruikersnaam"
1154
-
1155
- #: templates/login-form.php:16
1156
- msgid "Password"
1157
- msgstr "Wachtwoord"
1158
-
1159
- #: templates/login-form.php:25
1160
- msgid "Remember Me"
1161
- msgstr "Onthoud mij"
1162
-
1163
- #: templates/lostpassword-form.php:12
1164
- msgid "Username or E-mail:"
1165
- msgstr "Gebruikersnaam of e-mail"
1166
-
1167
- #: templates/lostpassword-form.php:20
1168
- msgid "Get New Password"
1169
- msgstr "Wijzig uw wachtwoord"
1170
-
1171
- #: templates/ms-signup-another-blog-form.php:7
1172
- msgid "Get <em>another</em> %s site in seconds"
1173
- msgstr "Verkrijg een <em>andere</em> %s website in enkele seconden"
1174
-
1175
- #: templates/ms-signup-another-blog-form.php:10
1176
- msgid "There was a problem, please correct the form below and try again."
1177
- msgstr "Er was een probleem, corrigeer onderstaand formulier en probeer opnieuw."
1178
-
1179
- #: templates/ms-signup-another-blog-form.php:13
1180
- msgid "Welcome back, %s. By filling out the form below, you can <strong>add another site to your account</strong>. There is no limit to the number of sites you can have, so create to your heart&#8217;s content, but write responsibly!"
1181
- msgstr "Welkom terug, %s. Met behulp van het onderstaande formulier kan je <strong>een nieuwe website toevoegen aan je account.</strong>. Er is geen limiet voor het aantal website, dus ga je gang."
1182
-
1183
- #: templates/ms-signup-another-blog-form.php:18
1184
- msgid "Sites you are already a member of:"
1185
- msgstr "Websites waar je al deelnemer van bent: "
1186
-
1187
- #: templates/ms-signup-another-blog-form.php:27
1188
- msgid "If you&#8217;re not going to use a great site domain, leave it for a new user. Now have at it!"
1189
- msgstr "Als je dit domein niet gaat gebruiken, gun het aan een nieuwe gebruiker. Nu houd jij het bezet!"
1190
-
1191
- #: templates/ms-signup-another-blog-form.php:33
1192
- #: templates/ms-signup-blog-form.php:17
1193
- msgid "Site Name:"
1194
- msgstr "Websitenaam:"
1195
-
1196
- #: templates/ms-signup-another-blog-form.php:35
1197
- #: templates/ms-signup-blog-form.php:19
1198
- msgid "Site Domain:"
1199
- msgstr "Website domein:"
1200
-
1201
- #: templates/ms-signup-another-blog-form.php:52
1202
- #: templates/ms-signup-blog-form.php:36
1203
- msgid "sitename"
1204
- msgstr "websitenaam"
1205
-
1206
- #: templates/ms-signup-another-blog-form.php:54
1207
- #: templates/ms-signup-blog-form.php:38
1208
- msgid "domain"
1209
- msgstr "domein"
1210
-
1211
- #: templates/ms-signup-another-blog-form.php:55
1212
- #: templates/ms-signup-blog-form.php:39
1213
- msgid "Your address will be %s."
1214
- msgstr "Je adres wordt %s."
1215
-
1216
- #: templates/ms-signup-another-blog-form.php:55
1217
- #: templates/ms-signup-blog-form.php:39
1218
- msgid "Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!"
1219
- msgstr "Het moeten minstens 4 karakters zijn, alleen letters en cijfers, Het kan niet veranderd worden, dus wees voorzichtig!"
1220
-
1221
- #: templates/ms-signup-another-blog-form.php:58
1222
- #: templates/ms-signup-blog-form.php:42
1223
- msgid "Site Title:"
1224
- msgstr "Website titel:"
1225
-
1226
- #: templates/ms-signup-another-blog-form.php:66
1227
- #: templates/ms-signup-blog-form.php:50
1228
- msgid "Privacy:"
1229
- msgstr "Privacy:"
1230
-
1231
- #: templates/ms-signup-another-blog-form.php:67
1232
- #: templates/ms-signup-blog-form.php:51
1233
- msgid "Allow my site to appear in search engines like Google, Technorati, and in public listings around this network."
1234
- msgstr "Ik wil mijn website zichtbaar hebben in zoekmachines als Google, Technorati en in publieke lijsten rond dit netwerk."
1235
-
1236
- #: templates/ms-signup-another-blog-form.php:71
1237
- #: templates/ms-signup-blog-form.php:55
1238
- msgid "Yes"
1239
- msgstr "Ja"
1240
-
1241
- #: templates/ms-signup-another-blog-form.php:75
1242
- #: templates/ms-signup-blog-form.php:59
1243
- msgid "No"
1244
- msgstr "Nee"
1245
-
1246
- #: templates/ms-signup-another-blog-form.php:85
1247
- msgid "Create Site"
1248
- msgstr "Website aanmaken"
1249
-
1250
- #: templates/ms-signup-blog-form.php:69
1251
- msgid "Signup"
1252
- msgstr "Registreren"
1253
-
1254
- #: templates/ms-signup-user-form.php:7
1255
- msgid "Get your own %s account in seconds"
1256
- msgstr "Verkrijg je eigen %s account in enkele seconden"
1257
-
1258
- #: templates/ms-signup-user-form.php:22
1259
- msgid "(Must be at least 4 characters, letters and numbers only.)"
1260
- msgstr "(Moet tenminste 4 karakters bevatten, alleen letters en cijfers zijn toegestaan.)"
1261
-
1262
- #: templates/ms-signup-user-form.php:24
1263
- msgid "Email&nbsp;Address:"
1264
- msgstr "E-mail&nbsp;adres:"
1265
-
1266
- #: templates/ms-signup-user-form.php:30
1267
- msgid "We send your registration email to this address. (Double-check your email address before continuing.)"
1268
- msgstr "Je registratie e-mail is verstuurd naar dit adres. (Controleer het adres nog een keer voordat je doorgaat.)"
1269
-
1270
- #: templates/ms-signup-user-form.php:47
1271
- msgid "Gimme a site!"
1272
- msgstr "Geef me een website!"
1273
-
1274
- #: templates/ms-signup-user-form.php:50
1275
- msgid "Just a username, please."
1276
- msgstr "Gewoon een gebruikersnaam."
1277
-
1278
- #: templates/ms-signup-user-form.php:54
1279
- msgid "Next"
1280
- msgstr "Gewoon een gebruikersnaam."
1281
-
1282
- #: templates/profile-form.php:26
1283
- msgid "Personal Options"
1284
- msgstr "Persoonlijke instellingen"
1285
-
1286
- #: templates/profile-form.php:31
1287
- msgid "Visual Editor"
1288
- msgstr "Wysiwyg bewerking"
1289
-
1290
- #: templates/profile-form.php:32
1291
- msgid "Disable the visual editor when writing"
1292
- msgstr "De wysiwyg-teksteditor uitschakelen tijdens het schrijven"
1293
-
1294
- #: templates/profile-form.php:37
1295
- msgid "Admin Color Scheme"
1296
- msgstr "Beheer kleurenschema"
1297
-
1298
- #: templates/profile-form.php:44
1299
- msgid "Keyboard Shortcuts"
1300
- msgstr "Sneltoetsen"
1301
-
1302
- #: templates/profile-form.php:45
1303
- msgid "Enable keyboard shortcuts for comment moderation."
1304
- msgstr "Inschakelen toetsenbord snelkoppelingen voor het modereren van reacties."
1305
-
1306
- #: templates/profile-form.php:45
1307
- msgid "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">More information</a>"
1308
- msgstr "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">Meer informatie</a>"
1309
-
1310
- #: templates/profile-form.php:51
1311
- #: templates/profile-form.php:54
1312
- msgid "Toolbar"
1313
- msgstr "Toolbar"
1314
-
1315
- #: templates/profile-form.php:57
1316
- msgid "Show Toolbar when viewing site"
1317
- msgstr "Toon toolbar tijdens bekijken van de site"
1318
-
1319
- #: templates/profile-form.php:63
1320
- #: templates/profile-form.php:66
1321
- msgid "Show Admin Bar"
1322
- msgstr "Toon adminbalk"
1323
-
1324
- #. translators: Show admin bar when viewing site
1325
- #: templates/profile-form.php:69
1326
- msgid "when viewing site"
1327
- msgstr "als de site bekeken wordt"
1328
-
1329
- #. translators: Show admin bar in dashboard
1330
- #: templates/profile-form.php:74
1331
- msgid "in dashboard"
1332
- msgstr "in dashboard"
1333
-
1334
- #: templates/profile-form.php:87
1335
- msgid "Name"
1336
- msgstr "Naam"
1337
-
1338
- #: templates/profile-form.php:92
1339
- msgid "Your username cannot be changed."
1340
- msgstr "Uw gebruikersnaam kan niet gewijzigd worden."
1341
-
1342
- #: templates/profile-form.php:96
1343
- msgid "First name"
1344
- msgstr "Voornaam"
1345
-
1346
- #: templates/profile-form.php:101
1347
- msgid "Last name"
1348
- msgstr "Achternaam"
1349
-
1350
- #: templates/profile-form.php:106
1351
- msgid "Nickname"
1352
- msgstr "Nickname"
1353
-
1354
- #: templates/profile-form.php:106
1355
- #: templates/profile-form.php:143
1356
- msgid "(required)"
1357
- msgstr "(verplicht)"
1358
-
1359
- #: templates/profile-form.php:111
1360
- msgid "Display name publicly as"
1361
- msgstr "Geef uw naam publiek weer als"
1362
-
1363
- #: templates/profile-form.php:139
1364
- msgid "Contact Info"
1365
- msgstr "Contact informatie"
1366
-
1367
- #: templates/profile-form.php:148
1368
- msgid "Website"
1369
- msgstr "Website"
1370
-
1371
- #: templates/profile-form.php:165
1372
- msgid "About Yourself"
1373
- msgstr "Over uzelf"
1374
-
1375
- #: templates/profile-form.php:169
1376
- msgid "Biographical Info"
1377
- msgstr "Biografie"
1378
-
1379
- #: templates/profile-form.php:171
1380
- msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
1381
- msgstr "Vertel iets over u zelf. Dit kan voor iedereen zichtbaar zijn."
1382
-
1383
- #: templates/profile-form.php:179
1384
- msgid "New Password"
1385
- msgstr "Nieuw wachtwoord"
1386
-
1387
- #: templates/profile-form.php:180
1388
- msgid "If you would like to change the password type a new one. Otherwise leave this blank."
1389
- msgstr "Alleen invullen als u uw wachtwoord wilt wijzigen."
1390
-
1391
- #: templates/profile-form.php:181
1392
- msgid "Type your new password again."
1393
- msgstr "Voer uw nieuwe wachtwoord nogmaals in."
1394
-
1395
- #: templates/profile-form.php:183
1396
- #: templates/resetpass-form.php:20
1397
- msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
1398
- msgstr "Hint: Uw wachtwoord moet minimaal zeven tekens lang zijn. Gebruik, om het sterker te maken, hoofdletters, kleine letters, getallen en speciale tekens zoals ! \" ? $ % ^ &amp; )."
1399
-
1400
- #: templates/profile-form.php:197
1401
- msgid "Additional Capabilities"
1402
- msgstr "Extra mogelijkheden"
1403
-
1404
- #: templates/profile-form.php:216
1405
- msgid "Update Profile"
1406
- msgstr "Profiel bijwerken"
1407
-
1408
- #: templates/register-form.php:23
1409
- msgid "A password will be e-mailed to you."
1410
- msgstr "U zult een wachtwoord per e-mail ontvangen."
1411
-
1412
- #: templates/resetpass-form.php:12
1413
- msgid "New password"
1414
- msgstr "Nieuw wachtwoord"
1415
-
1416
- #: templates/resetpass-form.php:16
1417
- msgid "Confirm new password"
1418
- msgstr "Nieuw wachtwoord bevestigen"
1419
-
1420
- #. Plugin URI of the plugin/theme
1421
- msgid "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/"
1422
- msgstr "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/"
1423
-
1424
- #. Description of the plugin/theme
1425
- msgid "Themes the WordPress login, registration and forgot password pages according to your theme."
1426
- msgstr "Past het WordPress Thema toe op aanmeld, registratie en wachtwoord opvraag pagina's. "
1427
-
1428
- #. Author of the plugin/theme
1429
- msgid "Jeff Farthing"
1430
- msgstr "Jeff Farthing"
1431
-
1432
- #. Author URI of the plugin/theme
1433
- msgid "http://www.jfarthing.com"
1434
- msgstr "http://www.jfarthing.com"
1435
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
language/theme-my-login-pl_PL.mo DELETED
Binary file
language/theme-my-login-pl_PL.po DELETED
@@ -1,1435 +0,0 @@
1
- # Copyright (C) 2012 Theme My Login
2
- # This file is distributed under the same license as the Theme My Login package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Theme My Login 6.2\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/theme-my-login\n"
7
- "POT-Creation-Date: 2012-03-08 16:19:05+00:00\n"
8
- "PO-Revision-Date: \n"
9
- "Last-Translator: Jeff Farthing <jeff@jfarthing.com>\n"
10
- "Language-Team: \n"
11
- "Language: \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-Language: Polish\n"
16
- "X-Poedit-Country: POLAND\n"
17
- "X-Poedit-SourceCharset: utf-8\n"
18
-
19
- #. #-#-#-#-# plugin.pot (Theme My Login 6.2) #-#-#-#-#
20
- #. Plugin Name of the plugin/theme
21
- #: admin/class-theme-my-login-admin.php:42
22
- #: admin/class-theme-my-login-admin.php:43
23
- #: includes/class-theme-my-login-widget.php:24
24
- msgid "Theme My Login"
25
- msgstr "Theme My Login"
26
-
27
- #: admin/class-theme-my-login-admin.php:81
28
- msgid "ERROR: The module \"%1$s\" could not be activated (%2$s)."
29
- msgstr "BŁĄD: moduł \"%1$s\" nie może być aktywowany (%2$s)."
30
-
31
- #: admin/class-theme-my-login-admin.php:103
32
- msgid "NOTICE:"
33
- msgstr "UWAGA"
34
-
35
- #: admin/class-theme-my-login-admin.php:104
36
- msgid "Now that you have activated Theme My Login, please <a href=\"%s\">visit the settings page</a> and familiarize yourself with all of the available options."
37
- msgstr "Aktywowałeś plugin Theme My Login, proszę odwiedź <a href=\"%s\">stronę ustawień</a> i zapoznaj się ze wszystkimi opcjami."
38
-
39
- #: admin/class-theme-my-login-admin.php:106
40
- msgid "Take me to the settings page"
41
- msgstr "Przejdź do strony ustawień"
42
-
43
- #: admin/class-theme-my-login-admin.php:119
44
- msgid "You can now login with your e-mail address or username! Try it out!"
45
- msgstr "Możesz logować się za pomocą adresu e-mail lub nazwy użytkownika! Wypróbuj to!"
46
-
47
- #: admin/class-theme-my-login-admin.php:120
48
- msgid "Theme My Login now utilizes a module system. Modules are similar to WordPress plugins. Each module extends the default functionality of Theme My Login. <a rel=\"tml-options\" href=\"#tml-options-modules\">Click here</a> to get started with modules now."
49
- msgstr "Theme My Login się teraz wykorzystuje system modułowy. Moduły są podobne do wtyczek WordPress. Każdy moduł rozszerza funkcjonalność domyślnego Theme My Login. <a rel=\"tml-options\" href=\"#tml-options-modules\">Kliknij tutaj</ a>, aby zacząć korzystać z modułów teraz."
50
-
51
- #: admin/class-theme-my-login-admin.php:121
52
- msgid "Theme My Login now allows custom forms. You can create your own form template(s) by copying the default version(s) from \"theme-my-login/templates\" to your current theme directory. Try it out!"
53
- msgstr "Theme My Login pozwala teraz niestandardowe formy. Możesz stworzyć swój własny szablon formularza (S), kopiując domyślną wersję (y) \"theme-my-login/templates\" do aktualnego katalogu tematycznego. Wypróbuj!"
54
-
55
- #: admin/class-theme-my-login-admin.php:122
56
- msgid "You can maintain your stylesheet changes between upgrades. Just simply copy the file \"theme-my-login/theme-my-login.css\" to your current theme directory and edit it as you please!"
57
- msgstr "Możesz zachować swoje stylów zmian pomiędzy uaktualnień. Wystarczy po prostu skopiować plik \"theme-my-login/theme-my-login.css\" do aktualnego katalogu tematycznego i edytować go jak chcesz!"
58
-
59
- #: admin/class-theme-my-login-admin.php:123
60
- msgid "Theme My Login provides a shortcode that you can use within your posts with multiple parameters to customize the form. Visit the <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Theme My Login Documentation</a> for usage instructions."
61
- msgstr "Theme My Login zapewnia shortcode, którego można użyć w twoich postów z wielu parametrów, aby dostosować formularz. Na stronie <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Theme My Login Documentation</a> z instrukcjami użytkowania."
62
-
63
- #: admin/class-theme-my-login-admin.php:124
64
- msgid "Jeff is <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">available for hire</a>!"
65
- msgstr "Jeff jest <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">dostępne do wynajęcia</ a>!"
66
-
67
- #: admin/class-theme-my-login-admin.php:128
68
- msgid "Did You Know?"
69
- msgstr "Czy wiesz, że?"
70
-
71
- #: admin/class-theme-my-login-admin.php:177
72
- msgid "General"
73
- msgstr "Ogólne"
74
-
75
- #: admin/class-theme-my-login-admin.php:178
76
- msgid "Basic"
77
- msgstr "Podstawowe"
78
-
79
- #: admin/class-theme-my-login-admin.php:179
80
- #: admin/class-theme-my-login-admin.php:319
81
- msgid "Modules"
82
- msgstr "Moduły"
83
-
84
- #: admin/class-theme-my-login-admin.php:181
85
- msgid "Permalinks"
86
- msgstr "Bezpośrednie odnośniki"
87
-
88
- #: admin/class-theme-my-login-admin.php:188
89
- msgid "Theme My Login Settings"
90
- msgstr "Ustawienia Theme My Login"
91
-
92
- #: admin/class-theme-my-login-admin.php:194
93
- #: admin/class-theme-my-login-admin.php:254
94
- msgid "Save Changes"
95
- msgstr "Zapisz Zmiany"
96
-
97
- #: admin/class-theme-my-login-admin.php:271
98
- msgid "Page ID"
99
- msgstr "ID Strony"
100
-
101
- #: admin/class-theme-my-login-admin.php:274
102
- msgid "This should be the ID of the WordPress page that includes the [theme-my-login] shortcode. By default, this page is titled \"Login\"."
103
- msgstr "Tutaj powinien być ID strony w systemie Wordpress zawierający \"[theme-my-login]\". Domyślnie (utworzona po instalacji) strona nazywa się \"Login\"."
104
-
105
- #: admin/class-theme-my-login-admin.php:278
106
- msgid "Pagelist"
107
- msgstr "Lista Podstron"
108
-
109
- #: admin/class-theme-my-login-admin.php:281
110
- msgid "Show Page In Pagelist"
111
- msgstr "Pokazuj na liście podstron"
112
-
113
- #: admin/class-theme-my-login-admin.php:282
114
- msgid "Enable this setting to add login/logout links to the pagelist generated by functions like wp_list_pages() and wp_page_menu()."
115
- msgstr "Włącz tą opcję, aby dodać linki zaloguj/wyloguj do listy podstron automatycznie generowanych w twoim szablonie poprzez funkcje wp_list_pages() oraz wp_page_menu()."
116
-
117
- #: admin/class-theme-my-login-admin.php:286
118
- msgid "Stylesheet"
119
- msgstr "Arkusz stylów"
120
-
121
- #: admin/class-theme-my-login-admin.php:289
122
- msgid "Enable \"theme-my-login.css\""
123
- msgstr "Włącz \"theme-my-login.css\""
124
-
125
- #: admin/class-theme-my-login-admin.php:290
126
- msgid "In order to keep changes between upgrades, you can store your customized \"theme-my-login.css\" in your current theme directory."
127
- msgstr "W celu zachowania zmian między aktualizacjami, można zapisać ustawienia \"theme-my-login.css\" w obecnym katalogu szablonu."
128
-
129
- #: admin/class-theme-my-login-admin.php:294
130
- msgid "E-mail Login"
131
- msgstr "Zaloguj się e-mail"
132
-
133
- #: admin/class-theme-my-login-admin.php:297
134
- msgid "Enable e-mail address login"
135
- msgstr "Włącz powiadomienie emailem loginu adres"
136
-
137
- #: admin/class-theme-my-login-admin.php:298
138
- msgid "Allows users to login using their e-mail address in place of their username."
139
- msgstr "Umożliwia użytkownikom zalogować się używając swojego adresu email w miejscu ich użytkownika."
140
-
141
- #: admin/class-theme-my-login-admin.php:323
142
- msgid "Enable %s"
143
- msgstr "Włącz %s"
144
-
145
- #: admin/class-theme-my-login-admin.php:325
146
- msgid "No modules found."
147
- msgstr "Nie znaleziono modułów."
148
-
149
- #: admin/class-theme-my-login-admin.php:343
150
- #: includes/class-theme-my-login-widget.php:87
151
- msgid "Login"
152
- msgstr "Login"
153
-
154
- #: admin/class-theme-my-login-admin.php:344
155
- #: includes/class-theme-my-login-template.php:141
156
- #: includes/class-theme-my-login-widget.php:87
157
- #: templates/register-form.php:25
158
- msgid "Register"
159
- msgstr "Utwórz Konto"
160
-
161
- #: admin/class-theme-my-login-admin.php:345
162
- #: includes/class-theme-my-login-template.php:147
163
- #: includes/class-theme-my-login-widget.php:87
164
- msgid "Lost Password"
165
- msgstr "Zapomniałeś hasła?"
166
-
167
- #: admin/class-theme-my-login-admin.php:475
168
- msgid "One of the modules is invalid."
169
- msgstr "Jednym z modułów jest nieprawidłowy."
170
-
171
- #: admin/class-theme-my-login-admin.php:531
172
- msgid "Invalid module path."
173
- msgstr "Nieprawidłowa ścieżka moduł."
174
-
175
- #: admin/class-theme-my-login-admin.php:533
176
- msgid "Module file does not exist."
177
- msgstr "Plik moduł nie istnieje."
178
-
179
- #: admin/class-theme-my-login-admin.php:537
180
- msgid "The module does not have a valid header."
181
- msgstr "Moduł nie posiada ważnego nagłówek."
182
-
183
- #: includes/class-theme-my-login-ms-signup.php:117
184
- msgctxt "Multisite active signup type"
185
- msgid "all"
186
- msgstr "wszystkie"
187
-
188
- #: includes/class-theme-my-login-ms-signup.php:118
189
- msgctxt "Multisite active signup type"
190
- msgid "none"
191
- msgstr "żadne"
192
-
193
- #: includes/class-theme-my-login-ms-signup.php:119
194
- msgctxt "Multisite active signup type"
195
- msgid "blog"
196
- msgstr "blog"
197
-
198
- #: includes/class-theme-my-login-ms-signup.php:120
199
- msgctxt "Multisite active signup type"
200
- msgid "user"
201
- msgstr "użytkownik"
202
-
203
- #: includes/class-theme-my-login-ms-signup.php:123
204
- msgid "Greetings Site Administrator! You are currently allowing &#8220;%s&#8221; registrations. To change or disable registration go to your <a href=\"%s\">Options page</a>."
205
- msgstr "Witaj, administratorze witryny! Obecnie pozwalasz na rejestracje na &#8222;%s&#8221;. Aby zmienić ustawienia lub wyłączyć rejestrację, przejdź na swoją <a href=\"%s\">stronę opcji</a>."
206
-
207
- #: includes/class-theme-my-login-ms-signup.php:129
208
- msgid "Registration has been disabled."
209
- msgstr "Możliwość rejestracji została wyłączona."
210
-
211
- #: includes/class-theme-my-login-ms-signup.php:131
212
- msgid "You must first <a href=\"%s\">log in</a>, and then you can create a new site."
213
- msgstr "Zanim będzie możliwe utworzenie nowej witryny, musisz się najpierw <a href=\"%s\">zalogować</a>."
214
-
215
- #: includes/class-theme-my-login-ms-signup.php:155
216
- msgid "%s is your new username"
217
- msgstr "%s jest Twoją nową nazwą użytkownika"
218
-
219
- #: includes/class-theme-my-login-ms-signup.php:156
220
- msgid "But, before you can start using your new username, <strong>you must activate it</strong>."
221
- msgstr "Zanim zaczniesz używać swojej nowej nazwy użytkownika, <strong>konieczna jest jej aktywacja</strong>."
222
-
223
- #: includes/class-theme-my-login-ms-signup.php:157
224
- msgid "Check your inbox at <strong>%1$s</strong> and click the link given."
225
- msgstr "Sprawdź, czy doszedł już na adres <strong>%1$s</strong> aktywacyjny e-mail i kliknij zawarty w nim odnośnik."
226
-
227
- #: includes/class-theme-my-login-ms-signup.php:158
228
- msgid "If you do not activate your username within two days, you will have to sign up again."
229
- msgstr "Jeśli nie aktywujesz swojej nazwy użytkownika w ciągu dwóch dni, konieczne będzie dokonanie ponownej rejestracji."
230
-
231
- #: includes/class-theme-my-login-ms-signup.php:162
232
- msgid "User registration has been disabled."
233
- msgstr "Możliwość rejestracji kont została wyłączona."
234
-
235
- #: includes/class-theme-my-login-ms-signup.php:194
236
- msgid "Congratulations! Your new site, %s, is almost ready."
237
- msgstr "Gratulacje! Twoja nowa witryna, %s, jest już prawie gotowa."
238
-
239
- #: includes/class-theme-my-login-ms-signup.php:196
240
- msgid "But, before you can start using your site, <strong>you must activate it</strong>."
241
- msgstr "Zanim zaczniesz używać swojej nowej witryny, <strong>konieczna jest jej aktywacja</strong>."
242
-
243
- #: includes/class-theme-my-login-ms-signup.php:197
244
- msgid "Check your inbox at <strong>%s</strong> and click the link given."
245
- msgstr "Sprawdź, czy doszedł już na adres <strong>%1$s</strong> aktywacyjny e-mail i kliknij zawarty w nim odnośnik."
246
-
247
- #: includes/class-theme-my-login-ms-signup.php:198
248
- msgid "If you do not activate your site within two days, you will have to sign up again."
249
- msgstr "Jeśli nie aktywujesz swojej witryny w ciągu dwóch dni, konieczne będzie dokonanie ponownej jej rejestracji."
250
-
251
- #: includes/class-theme-my-login-ms-signup.php:199
252
- msgid "Still waiting for your email?"
253
- msgstr "Nadal czekasz na e-maila?"
254
-
255
- #: includes/class-theme-my-login-ms-signup.php:201
256
- msgid "If you haven&#8217;t received your email yet, there are a number of things you can do:"
257
- msgstr "Jeśli nie otrzymano jeszcze e-maila, oto lista rzeczy, które można zrobić:"
258
-
259
- #: includes/class-theme-my-login-ms-signup.php:203
260
- msgid "Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control."
261
- msgstr "Poczekaj jeszcze troszkę. Czasami dostarczenie e-maila może zostać opóźnione przez procesy, na które nie mamy wpływu."
262
-
263
- #: includes/class-theme-my-login-ms-signup.php:204
264
- msgid "Check the junk or spam folder of your email client. Sometime emails wind up there by mistake."
265
- msgstr "Sprawdź folder &#8222;Niechciane&#8221; lub &#8222;Spam&#8221; swojego klienta e-mail. Czasami normalne wiadomości zostają tam przypadkowo umieszczone."
266
-
267
- #: includes/class-theme-my-login-ms-signup.php:205
268
- msgid "Have you entered your email correctly? You have entered %s, if it&#8217;s incorrect, you will not receive your email."
269
- msgstr "Czy wprowadzono adres e-mail prawidłowo? Wprowadzono adres %s, jednak jeśli nie jest on prawidłowy, nie otrzymasz tego e-maila."
270
-
271
- #: includes/class-theme-my-login-ms-signup.php:211
272
- msgid "Site registration has been disabled."
273
- msgstr "Możliwość rejestracji witryn została wyłączona."
274
-
275
- #: includes/class-theme-my-login-ms-signup.php:235
276
- msgid "The site %s is yours."
277
- msgstr "Witryna %s jest Twoja."
278
-
279
- #: includes/class-theme-my-login-ms-signup.php:237
280
- msgid "<a href=\"http://%1$s\">http://%2$s</a> is your new site. <a href=\"%3$s\">Log in</a> as &#8220;%4$s&#8221; using your existing password."
281
- msgstr "<a href=\"http://%1$s\">http://%2$s</a> to adres Twojej nowej witryny. <a href=\"%3$s\">Zaloguj się</a> jako &#8222;%4$s&#8221;, używając swojego dotychczasowego hasła."
282
-
283
- #: includes/class-theme-my-login-ms-signup.php:253
284
- msgid "Sorry, new registrations are not allowed at this time."
285
- msgstr "Przepraszamy, w tej chwili nie można się rejestrować."
286
-
287
- #: includes/class-theme-my-login-ms-signup.php:255
288
- msgid "You are logged in already. No need to register again!"
289
- msgstr "Zalogowano się już &mdash; nie ma potrzeby ponownej rejestracji!"
290
-
291
- #: includes/class-theme-my-login-ms-signup.php:261
292
- msgid "<p><em>The site you were looking for, <strong>%s</strong> does not exist, but you can create it now!</em></p>"
293
- msgstr "<p><em>Witryna, której szukasz &mdash; <strong>%s</strong> &mdash; nie istnieje, ale możesz ją utworzyć już teraz!</em></p>"
294
-
295
- #: includes/class-theme-my-login-ms-signup.php:263
296
- msgid "<p><em>The site you were looking for, <strong>%s</strong>, does not exist.</em></p>"
297
- msgstr "<p><em>Witryna, której szukasz &mdash; <strong>%s</strong> &mdash; nie istnieje.</em></p>"
298
-
299
- #: includes/class-theme-my-login-ms-signup.php:402
300
- msgid "Activation Key Required"
301
- msgstr "Wymagany jest klucz aktywacyjny"
302
-
303
- #: includes/class-theme-my-login-ms-signup.php:405
304
- msgid "Activation Key:"
305
- msgstr "Klucz aktywacyjny:"
306
-
307
- #: includes/class-theme-my-login-ms-signup.php:409
308
- #: includes/class-theme-my-login-ms-signup.php:481
309
- msgid "Activate"
310
- msgstr "Włącz"
311
-
312
- #: includes/class-theme-my-login-ms-signup.php:421
313
- #: includes/class-theme-my-login-ms-signup.php:441
314
- msgid "Your account is now active!"
315
- msgstr "Twoje konto zostało aktywowane!"
316
-
317
- #: includes/class-theme-my-login-ms-signup.php:425
318
- msgid "Your account has been activated. You may now <a href=\"%1$s\">login</a> to the site using your chosen username of &#8220;%2$s&#8221;. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%4$s\">reset your password</a>."
319
- msgstr "Twoje konto zostało aktywowane. Możesz teraz <a href=\"%1$s\">zalogować się</a> do witryny przy użyciu wybranej nazwy użytkownika (&#8222;%2$s&#8221;). Sprawdź folder „Odebrane” swojej skrzynki e-mailowej, która znajduje się pod adresem %3$s, aby poznać swoje hasło i dowiedzieć się, jak logować się do witryny. Jeśli nie znajdziesz żadnej wiadomości, sprawdź także folder „Niechciane” lub „Spam”. Jeżeli nie otrzymasz żadnej wiadomości w ciągu godziny, możesz poprosić o <a href=\"%4$s\">wygenerowanie nowego hasła</a>."
320
-
321
- #: includes/class-theme-my-login-ms-signup.php:427
322
- msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a>."
323
- msgstr "Twoja witryna pod adresem <a href=\"%1$s\">%2$s</a> została aktywowana. Możesz teraz zalogować się do niej przy użyciu wybranej nazwy użytkownika (&#8222;%3$s&#8221;). Sprawdź folder „Odebrane” swojej skrzynki e-mailowej, która znajduje się pod adresem %4$s, aby poznać swoje hasło i dowiedzieć się, jak logować się do witryny. Jeśli nie znajdziesz żadnej wiadomości, sprawdź także folder „Niechciane” lub „Spam”. Jeżeli nie otrzymasz żadnej wiadomości w ciągu godziny, możesz poprosić o <a href=\"%5$s\">wygenerowanie nowego hasła</a>."
324
-
325
- #: includes/class-theme-my-login-ms-signup.php:432
326
- msgid "An error occurred during the activation"
327
- msgstr "Wystąpił błąd podczas aktywacji"
328
-
329
- #: includes/class-theme-my-login-ms-signup.php:444
330
- #: templates/ms-signup-user-form.php:16
331
- msgid "Username:"
332
- msgstr "Nazwa użytkownika:"
333
-
334
- #: includes/class-theme-my-login-ms-signup.php:445
335
- #: modules/custom-passwords/custom-passwords.php:29
336
- #: modules/custom-passwords/custom-passwords.php:56
337
- msgid "Password:"
338
- msgstr "Hasło:"
339
-
340
- #: includes/class-theme-my-login-ms-signup.php:449
341
- msgid "Your account is now activated. <a href=\"%1$s\">View your site</a> or <a href=\"%2$s\">Login</a>"
342
- msgstr "Twoje konto zostało aktywowane. <a href=\"%1$s\">Zobacz swoją witrynę</a> lub <a href=\"%2$s\">zaloguj się</a>"
343
-
344
- #: includes/class-theme-my-login-ms-signup.php:451
345
- msgid "Your account is now activated. <a href=\"%1$s\">Login</a> or go back to the <a href=\"%2$s\">homepage</a>."
346
- msgstr "Twoje konto zostało aktywowane. <a href=\"%1$s\">Zaloguj się</a> lub powróć na <a href=\"%2$s\">stronę główną</a>."
347
-
348
- #: includes/class-theme-my-login-template.php:137
349
- msgid "Welcome, %s"
350
- msgstr "Witaj, %s"
351
-
352
- #: includes/class-theme-my-login-template.php:151
353
- #: includes/class-theme-my-login.php:540
354
- #: templates/login-form.php:28
355
- msgid "Log In"
356
- msgstr "Zaloguj"
357
-
358
- #: includes/class-theme-my-login-template.php:315
359
- #: modules/custom-user-links/custom-user-links.php:82
360
- msgid "Dashboard"
361
- msgstr "Kokpit"
362
-
363
- #: includes/class-theme-my-login-template.php:316
364
- #: modules/custom-user-links/custom-user-links.php:83
365
- #: modules/themed-profiles/admin/themed-profiles-admin.php:66
366
- msgid "Profile"
367
- msgstr "Profil"
368
-
369
- #: includes/class-theme-my-login-template.php:334
370
- #: modules/custom-redirection/custom-redirection.php:197
371
- msgid "Log out"
372
- msgstr "Wyloguj"
373
-
374
- #: includes/class-theme-my-login-template.php:363
375
- msgid "Register For This Site"
376
- msgstr "Zarejestruj się na stronie"
377
-
378
- #: includes/class-theme-my-login-template.php:366
379
- msgid "Please enter your username or email address. You will receive a link to create a new password via email."
380
- msgstr "Proszę wprowadzić swoją nazwę użytkownika lub adres e-mail. Odnośnik pozwalający na utworzenie nowego hasła zostanie wysłany e-mailem."
381
-
382
- #: includes/class-theme-my-login-template.php:369
383
- msgid "Enter your new password below."
384
- msgstr "Poniżej wprowadź swoje nowe hasło."
385
-
386
- #: includes/class-theme-my-login-widget.php:23
387
- msgid "A login form for your blog."
388
- msgstr "Formularz logowania dla twojego bloga."
389
-
390
- #: includes/class-theme-my-login-widget.php:88
391
- msgid "Default Action"
392
- msgstr "Akcja domyślna"
393
-
394
- #: includes/class-theme-my-login-widget.php:95
395
- msgid "Show When Logged In"
396
- msgstr "Pokazuj po zalogowaniu"
397
-
398
- #: includes/class-theme-my-login-widget.php:97
399
- msgid "Show Title"
400
- msgstr "Pokaż tytuł"
401
-
402
- #: includes/class-theme-my-login-widget.php:99
403
- msgid "Show Login Link"
404
- msgstr "Pokaż link - Zaloguj"
405
-
406
- #: includes/class-theme-my-login-widget.php:101
407
- msgid "Show Register Link"
408
- msgstr "Pokaż link - Utwórz Konto"
409
-
410
- #: includes/class-theme-my-login-widget.php:103
411
- msgid "Show Lost Password Link"
412
- msgstr "Pokaż link - Zapomniałem hasła?"
413
-
414
- #: includes/class-theme-my-login-widget.php:105
415
- msgid "Show Gravatar"
416
- msgstr "Pokaż Gravatar"
417
-
418
- #: includes/class-theme-my-login-widget.php:106
419
- msgid "Gravatar Size"
420
- msgstr "Rozmiar Gravatara"
421
-
422
- #: includes/class-theme-my-login-widget.php:108
423
- msgid "Allow Registration"
424
- msgstr "Zezwól na rejestrację"
425
-
426
- #: includes/class-theme-my-login-widget.php:110
427
- msgid "Allow Password Recovery"
428
- msgstr "Zezwól na przywracanie hasła"
429
-
430
- #: includes/class-theme-my-login.php:245
431
- msgid "Sorry, that key does not appear to be valid."
432
- msgstr "Przepraszam, ale klucz nie jest prawidłowy."
433
-
434
- #: includes/class-theme-my-login.php:261
435
- msgid "The passwords do not match."
436
- msgstr "Wprowadzone hasła się nie zgadzają."
437
-
438
- #: includes/class-theme-my-login.php:367
439
- msgid "<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href=\"http://www.google.com/cookies.html\">enable cookies</a> to use WordPress."
440
- msgstr "<strong>BŁĄD</strong>: Ciasteczka są blokowane lub nieobsługiwane przez Twoją przeglądarkę. Musisz <a href='http://www.google.com/cookies.html'>włączyć obsługę ciasteczek</a>, by móc używać WordPressa."
441
-
442
- #: includes/class-theme-my-login.php:371
443
- msgid "You are now logged out."
444
- msgstr "Zostałeś pomyślnie wylogowany!"
445
-
446
- #: includes/class-theme-my-login.php:373
447
- msgid "User registration is currently not allowed."
448
- msgstr "Rejestracja jest chwilowo wyłączona."
449
-
450
- #: includes/class-theme-my-login.php:375
451
- msgid "Check your e-mail for the confirmation link."
452
- msgstr "Za chwilę otrzymasz email wraz z linkiem potwierdzającym autentyczność, kliknij w niego aby zakończyć proces rejestracji."
453
-
454
- #: includes/class-theme-my-login.php:377
455
- msgid "Your password has been reset."
456
- msgstr "Twoje nowe hasło zostało zapisane."
457
-
458
- #: includes/class-theme-my-login.php:379
459
- msgid "Registration complete. Please check your e-mail."
460
- msgstr "Rejestracja zakończona pomyślnie."
461
-
462
- #: includes/class-theme-my-login.php:381
463
- msgid "Your session has expired. Please log-in again."
464
- msgstr "Twoja sesja wygasła. Proszę ponownie się zalogować."
465
-
466
- #: includes/class-theme-my-login.php:383
467
- msgid "Please log in to continue."
468
- msgstr "Zaloguj się aby kontynuować."
469
-
470
- #: includes/class-theme-my-login.php:540
471
- msgid "Log Out"
472
- msgstr "Wyloguj"
473
-
474
- #: includes/class-theme-my-login.php:925
475
- msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
476
- msgstr "<strong>Błąd:</strong> Wprowadź nazwę użytkownika lub adres e-mail."
477
-
478
- #: includes/class-theme-my-login.php:929
479
- msgid "<strong>ERROR</strong>: There is no user registered with that email address."
480
- msgstr "<strong>Błąd:</strong> Nie ma zarejestrowanego użytkownika z takim adresem e-mail."
481
-
482
- #: includes/class-theme-my-login.php:941
483
- msgid "<strong>ERROR</strong>: Invalid username or e-mail."
484
- msgstr "<strong>Błąd:</strong> Nieprawidłowa nazwa użytkownika lub e-mail."
485
-
486
- #: includes/class-theme-my-login.php:955
487
- msgid "Password reset is not allowed for this user"
488
- msgstr "Resetowanie hasła nie jest dozwolone dla tego użytkownika"
489
-
490
- #: includes/class-theme-my-login.php:967
491
- msgid "Someone requested that the password be reset for the following account:"
492
- msgstr "Ktoś poprosił o wygenerowanie nowego hasła dla następującego konta:"
493
-
494
- #: includes/class-theme-my-login.php:969
495
- #: modules/custom-email/custom-email.php:692
496
- #: modules/custom-email/custom-email.php:709
497
- #: modules/user-moderation/admin/user-moderation-admin.php:164
498
- #: modules/user-moderation/user-moderation.php:365
499
- msgid "Username: %s"
500
- msgstr "Użytkownik: %s"
501
-
502
- #: includes/class-theme-my-login.php:970
503
- msgid "If this was a mistake, just ignore this email and nothing will happen."
504
- msgstr "Jeśli jest to błąd, po prostu zignoruj tego e-maila, a nic się nie stanie."
505
-
506
- #: includes/class-theme-my-login.php:971
507
- msgid "To reset your password, visit the following address:"
508
- msgstr "Aby ustawić nowe hasło, przejdź pod poniższy adres:"
509
-
510
- #: includes/class-theme-my-login.php:982
511
- msgid "[%s] Password Reset"
512
- msgstr "[%s] Hasło Zresetowane"
513
-
514
- #: includes/class-theme-my-login.php:988
515
- #: modules/user-moderation/admin/user-moderation-admin.php:53
516
- #: modules/user-moderation/admin/user-moderation-admin.php:174
517
- #: modules/user-moderation/admin/user-moderation-admin.php:210
518
- msgid "The e-mail could not be sent."
519
- msgstr "E-mail nie mógł zostać wysłany."
520
-
521
- #: includes/class-theme-my-login.php:988
522
- #: modules/user-moderation/admin/user-moderation-admin.php:53
523
- #: modules/user-moderation/admin/user-moderation-admin.php:174
524
- #: modules/user-moderation/admin/user-moderation-admin.php:210
525
- msgid "Possible reason: your host may have disabled the mail() function..."
526
- msgstr "Możliwa przyczyna: serwer ma wyłączoną funkcję mail().."
527
-
528
- #: includes/class-theme-my-login.php:1011
529
- #: includes/class-theme-my-login.php:1014
530
- #: includes/class-theme-my-login.php:1019
531
- #: modules/user-moderation/user-moderation.php:238
532
- #: modules/user-moderation/user-moderation.php:241
533
- #: modules/user-moderation/user-moderation.php:246
534
- msgid "Invalid key"
535
- msgstr "Nieprawidłowy klucz"
536
-
537
- #: includes/class-theme-my-login.php:1059
538
- msgid "<strong>ERROR</strong>: Please enter a username."
539
- msgstr "<strong>Błąd:</strong> Proszę podać nazwę użytkownika."
540
-
541
- #: includes/class-theme-my-login.php:1061
542
- msgid "<strong>ERROR</strong>: This username is invalid because it uses illegal characters. Please enter a valid username."
543
- msgstr "<strong>BŁĄD</strong>: Podana nazwa użytkownika jest nieprawidłowa, ponieważ zawiera niedozwolone znaki. Proszę wprowadzić prawidłową nazwę użytkownika."
544
-
545
- #: includes/class-theme-my-login.php:1064
546
- msgid "<strong>ERROR</strong>: This username is already registered, please choose another one."
547
- msgstr "<strong>Błąd:</strong> Ta nazwa użytkownika jest już zarejestrowana, należy wybrać inną."
548
-
549
- #: includes/class-theme-my-login.php:1069
550
- msgid "<strong>ERROR</strong>: Please type your e-mail address."
551
- msgstr "<strong>Błąd:</strong> Wpisz swój adres e-mail."
552
-
553
- #: includes/class-theme-my-login.php:1071
554
- msgid "<strong>ERROR</strong>: The email address isn&#8217;t correct."
555
- msgstr "<strong>Błąd:</strong> Adres e-mail nie jest prawidłowy."
556
-
557
- #: includes/class-theme-my-login.php:1074
558
- msgid "<strong>ERROR</strong>: This email is already registered, please choose another one."
559
- msgstr "<strong>Błąd:</strong> Ten email jest już zarejestrowany, proszę wybrać inny."
560
-
561
- #: includes/class-theme-my-login.php:1087
562
- msgid "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href=\"mailto:%s\">webmaster</a> !"
563
- msgstr "<strong>Błąd:</strong> Nie można zarejestrować się ... prosimy o kontakt <a href=\\\"mailto:%s\\\">webmaster</a> !"
564
-
565
- #: modules/custom-email/admin/custom-email-admin.php:46
566
- #: modules/custom-email/admin/custom-email-admin.php:265
567
- msgid "User Notification"
568
- msgstr "Powiadamianie użytkownika"
569
-
570
- #: modules/custom-email/admin/custom-email-admin.php:49
571
- msgid "This e-mail will be sent to a new user upon registration."
572
- msgstr "Ten e-mail zostanie wysłany w momencie rejestracji nowego użytkownika."
573
-
574
- #: modules/custom-email/admin/custom-email-admin.php:50
575
- #: modules/custom-email/admin/custom-email-admin.php:269
576
- msgid "Please be sure to include the variable %user_pass% if using default passwords or else the user will not know their password!"
577
- msgstr "Proszę pamiętać aby zmienna %user_pass% była wartością domyślną, w przeciwnym wypadku użytkownicy nie będą znali swoich haseł!"
578
-
579
- #: modules/custom-email/admin/custom-email-admin.php:51
580
- #: modules/custom-email/admin/custom-email-admin.php:81
581
- #: modules/custom-email/admin/custom-email-admin.php:130
582
- #: modules/custom-email/admin/custom-email-admin.php:175
583
- #: modules/custom-email/admin/custom-email-admin.php:224
584
- #: modules/custom-email/admin/custom-email-admin.php:270
585
- #: modules/custom-email/admin/custom-email-admin.php:300
586
- #: modules/custom-email/admin/custom-email-admin.php:348
587
- msgid "If any field is left empty, the default will be used instead."
588
- msgstr "W sytuacji pozostawienia jakiegoś pola pustego zostanie użyta jego wartość domyślna."
589
-
590
- #: modules/custom-email/admin/custom-email-admin.php:54
591
- #: modules/custom-email/admin/custom-email-admin.php:87
592
- #: modules/custom-email/admin/custom-email-admin.php:133
593
- #: modules/custom-email/admin/custom-email-admin.php:181
594
- #: modules/custom-email/admin/custom-email-admin.php:227
595
- #: modules/custom-email/admin/custom-email-admin.php:273
596
- #: modules/custom-email/admin/custom-email-admin.php:306
597
- #: modules/custom-email/admin/custom-email-admin.php:351
598
- msgid "From Name"
599
- msgstr "Od"
600
-
601
- #: modules/custom-email/admin/custom-email-admin.php:57
602
- #: modules/custom-email/admin/custom-email-admin.php:90
603
- #: modules/custom-email/admin/custom-email-admin.php:136
604
- #: modules/custom-email/admin/custom-email-admin.php:184
605
- #: modules/custom-email/admin/custom-email-admin.php:230
606
- #: modules/custom-email/admin/custom-email-admin.php:276
607
- #: modules/custom-email/admin/custom-email-admin.php:309
608
- #: modules/custom-email/admin/custom-email-admin.php:354
609
- msgid "From E-mail"
610
- msgstr "Od Email"
611
-
612
- #: modules/custom-email/admin/custom-email-admin.php:60
613
- #: modules/custom-email/admin/custom-email-admin.php:93
614
- #: modules/custom-email/admin/custom-email-admin.php:139
615
- #: modules/custom-email/admin/custom-email-admin.php:187
616
- #: modules/custom-email/admin/custom-email-admin.php:233
617
- #: modules/custom-email/admin/custom-email-admin.php:279
618
- #: modules/custom-email/admin/custom-email-admin.php:312
619
- #: modules/custom-email/admin/custom-email-admin.php:357
620
- msgid "E-mail Format"
621
- msgstr "Format e-maila"
622
-
623
- #: modules/custom-email/admin/custom-email-admin.php:62
624
- #: modules/custom-email/admin/custom-email-admin.php:95
625
- #: modules/custom-email/admin/custom-email-admin.php:141
626
- #: modules/custom-email/admin/custom-email-admin.php:189
627
- #: modules/custom-email/admin/custom-email-admin.php:235
628
- #: modules/custom-email/admin/custom-email-admin.php:281
629
- #: modules/custom-email/admin/custom-email-admin.php:314
630
- #: modules/custom-email/admin/custom-email-admin.php:359
631
- msgid "Plain Text"
632
- msgstr "zwykły tekst"
633
-
634
- #: modules/custom-email/admin/custom-email-admin.php:63
635
- #: modules/custom-email/admin/custom-email-admin.php:96
636
- #: modules/custom-email/admin/custom-email-admin.php:142
637
- #: modules/custom-email/admin/custom-email-admin.php:190
638
- #: modules/custom-email/admin/custom-email-admin.php:236
639
- #: modules/custom-email/admin/custom-email-admin.php:282
640
- #: modules/custom-email/admin/custom-email-admin.php:315
641
- #: modules/custom-email/admin/custom-email-admin.php:360
642
- msgid "HTML"
643
- msgstr "HTML"
644
-
645
- #: modules/custom-email/admin/custom-email-admin.php:66
646
- #: modules/custom-email/admin/custom-email-admin.php:99
647
- #: modules/custom-email/admin/custom-email-admin.php:145
648
- #: modules/custom-email/admin/custom-email-admin.php:193
649
- #: modules/custom-email/admin/custom-email-admin.php:239
650
- #: modules/custom-email/admin/custom-email-admin.php:285
651
- #: modules/custom-email/admin/custom-email-admin.php:318
652
- #: modules/custom-email/admin/custom-email-admin.php:363
653
- msgid "Subject"
654
- msgstr "Temat"
655
-
656
- #: modules/custom-email/admin/custom-email-admin.php:69
657
- #: modules/custom-email/admin/custom-email-admin.php:102
658
- #: modules/custom-email/admin/custom-email-admin.php:148
659
- #: modules/custom-email/admin/custom-email-admin.php:196
660
- #: modules/custom-email/admin/custom-email-admin.php:242
661
- #: modules/custom-email/admin/custom-email-admin.php:288
662
- #: modules/custom-email/admin/custom-email-admin.php:321
663
- #: modules/custom-email/admin/custom-email-admin.php:366
664
- msgid "Message"
665
- msgstr "Wiadomość"
666
-
667
- #: modules/custom-email/admin/custom-email-admin.php:72
668
- #: modules/custom-email/admin/custom-email-admin.php:105
669
- #: modules/custom-email/admin/custom-email-admin.php:151
670
- #: modules/custom-email/admin/custom-email-admin.php:199
671
- #: modules/custom-email/admin/custom-email-admin.php:245
672
- #: modules/custom-email/admin/custom-email-admin.php:291
673
- #: modules/custom-email/admin/custom-email-admin.php:324
674
- #: modules/custom-email/admin/custom-email-admin.php:369
675
- msgid "Available Variables"
676
- msgstr "Dostępne zmienne"
677
-
678
- #: modules/custom-email/admin/custom-email-admin.php:77
679
- #: modules/custom-email/admin/custom-email-admin.php:171
680
- #: modules/custom-email/admin/custom-email-admin.php:296
681
- msgid "Admin Notification"
682
- msgstr "Powiadomienie administratora"
683
-
684
- #: modules/custom-email/admin/custom-email-admin.php:80
685
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon new user registration."
686
- msgstr "Ta wiadomość zostanie wysłana na podany adres / adresy (adresy należy oddzielać przecinkiem) w sytuacji rejestracji nowego użytkownika."
687
-
688
- #: modules/custom-email/admin/custom-email-admin.php:84
689
- #: modules/custom-email/admin/custom-email-admin.php:178
690
- #: modules/custom-email/admin/custom-email-admin.php:303
691
- msgid "To"
692
- msgstr "Do"
693
-
694
- #: modules/custom-email/admin/custom-email-admin.php:128
695
- msgid "This e-mail will be sent to a user when they attempt to recover their password."
696
- msgstr "Ta wiadomość zostanie wysłana, gdy użytkownik będzię próbował zresetować hasło."
697
-
698
- #: modules/custom-email/admin/custom-email-admin.php:129
699
- msgid "Please be sure to include the variable %reseturl% or else the user will not be able to recover their password!"
700
- msgstr "Proszę pamiętać, aby załączyć zmienną %reseturl% w przeciwnym wypadku użytkownik nie będzie mógł odzyskać hasła!"
701
-
702
- #: modules/custom-email/admin/custom-email-admin.php:174
703
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon user password change."
704
- msgstr "Ta wiadomość zostanie wysłana na podany adres / adresy (adresy należy oddzielać przecinkiem) w sytuacji zmiany hasła przez użytkownika."
705
-
706
- #: modules/custom-email/admin/custom-email-admin.php:201
707
- #: modules/custom-email/admin/custom-email-admin.php:326
708
- msgid "Disable Admin Notification"
709
- msgstr "Wyłącz powiadomienia administratorów"
710
-
711
- #: modules/custom-email/admin/custom-email-admin.php:222
712
- msgid "This e-mail will be sent to a new user upon registration when \"E-mail Confirmation\" is checked for \"User Moderation\"."
713
- msgstr "Ta wiadomość zostanie wysłana do nowego użytkownika, gdy \"Potwierdzenie e-mail\" jest zaznaczone dla \"Moderacji użytkownika\"."
714
-
715
- #: modules/custom-email/admin/custom-email-admin.php:223
716
- msgid "Please be sure to include the variable %activateurl% or else the user will not be able to activate their account!"
717
- msgstr "Proszę pamiętać, aby użyć zmiennej %activateurl%, w przeciwnym wypadku użytkownik nie bedzie mógł aktywować konta!"
718
-
719
- #: modules/custom-email/admin/custom-email-admin.php:268
720
- msgid "This e-mail will be sent to a new user upon admin approval when \"Admin Approval\" is checked for \"User Moderation\"."
721
- msgstr "Ta wiadomość zostanie wysłana do nowego użytkownika, gdy \"Zgoda administratora\" jest zaznaczona dla \"Moderacji użytkownika\"."
722
-
723
- #: modules/custom-email/admin/custom-email-admin.php:299
724
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below upon user registration when \"Admin Approval\" is checked for \"User Moderation\"."
725
- msgstr "Ta wiadomość zostanie wysłana na adres (adresy) e-mail (adresy należy oddzielić przecinikiem) zdefiniowane poniżej, gdy \"Zgoda administratora\" jest zaznaczona dla \"Moderacji użytkownika\"."
726
-
727
- #: modules/custom-email/admin/custom-email-admin.php:347
728
- msgid "This e-mail will be sent to a user who is deleted/denied when \"Admin Approval\" is checked for \"User Moderation\" and the user's role is \"Pending\"."
729
- msgstr "Ten e-mail zostanie wysłany do użytkownika, który został usunięty / zablokowany, gdy \"Zgoda administratora\" jest zaznaczona dla \"Moderacji użytkownika\" i rola użytkownika jest \"Oczekuje\"."
730
-
731
- #: modules/custom-email/admin/custom-email-admin.php:390
732
- #: templates/profile-form.php:143
733
- #: templates/register-form.php:16
734
- msgid "E-mail"
735
- msgstr "E-mail"
736
-
737
- #: modules/custom-email/admin/custom-email-admin.php:391
738
- msgid "New User"
739
- msgstr "Nowy Użytkownik"
740
-
741
- #: modules/custom-email/admin/custom-email-admin.php:392
742
- msgid "Retrieve Password"
743
- msgstr "Odzyskaj hasło"
744
-
745
- #: modules/custom-email/admin/custom-email-admin.php:393
746
- #: templates/resetpass-form.php:26
747
- msgid "Reset Password"
748
- msgstr "Resetuj hasło"
749
-
750
- #: modules/custom-email/admin/custom-email-admin.php:395
751
- msgid "User Activation"
752
- msgstr "Aktywacja użytkownika"
753
-
754
- #: modules/custom-email/admin/custom-email-admin.php:396
755
- msgid "User Approval"
756
- msgstr "Akceptacja użytkownika"
757
-
758
- #: modules/custom-email/admin/custom-email-admin.php:397
759
- msgid "User Denial"
760
- msgstr "Odmowa użytkownika"
761
-
762
- #: modules/custom-email/custom-email.php:691
763
- msgid "New user registration on your site %s:"
764
- msgstr "Rejestracja nowego użytkownika na Twojej witrynie \"%s\":"
765
-
766
- #: modules/custom-email/custom-email.php:693
767
- #: modules/user-moderation/user-moderation.php:366
768
- msgid "E-mail: %s"
769
- msgstr "E-mail: %s"
770
-
771
- #: modules/custom-email/custom-email.php:695
772
- msgid "[%s] New User Registration"
773
- msgstr "[%s] Rejestracja nowego użytkownika"
774
-
775
- #: modules/custom-email/custom-email.php:710
776
- #: modules/user-moderation/admin/user-moderation-admin.php:165
777
- msgid "Password: %s"
778
- msgstr "Hasło: %s"
779
-
780
- #: modules/custom-email/custom-email.php:713
781
- msgid "[%s] Your username and password"
782
- msgstr "[%s] Twoja nazwa użytkownika i hasło"
783
-
784
- #: modules/custom-email/custom-email.php:745
785
- msgid "[%s] Password Lost/Changed"
786
- msgstr "[%s] Nowe hasło / zmienione"
787
-
788
- #: modules/custom-email/custom-email.php:746
789
- msgid "Password Lost and Changed for user: %s"
790
- msgstr "Nowe hasło dla użytkownika: %s"
791
-
792
- #: modules/custom-passwords/custom-passwords.php:31
793
- #: modules/custom-passwords/custom-passwords.php:63
794
- msgid "Confirm Password:"
795
- msgstr "Potwierdź hasło:"
796
-
797
- #: modules/custom-passwords/custom-passwords.php:61
798
- msgid "(Must be at least 6 characters.)"
799
- msgstr "(Musi być co najmniej 6 znaków.)"
800
-
801
- #: modules/custom-passwords/custom-passwords.php:65
802
- msgid "Confirm that you've typed your password correctly."
803
- msgstr "Potwierdzić, że masz wpisane hasło poprawnie."
804
-
805
- #: modules/custom-passwords/custom-passwords.php:103
806
- msgid "<strong>ERROR</strong>: Please enter a password."
807
- msgstr "<strong>BŁĄD</strong>: Proszę podać hasło."
808
-
809
- #: modules/custom-passwords/custom-passwords.php:106
810
- msgid "<strong>ERROR</strong>: Your passwords do not match."
811
- msgstr "<strong>BŁĄD</strong>: Hasła nie pasują."
812
-
813
- #: modules/custom-passwords/custom-passwords.php:109
814
- msgid "<strong>ERROR</strong>: Your password must be at least 6 characters in length."
815
- msgstr "<strong>BŁĄD</strong>: Twoje hasło musi mieć przynajmniej 6 znaków."
816
-
817
- #: modules/custom-passwords/custom-passwords.php:230
818
- msgid "Registration complete. You may now log in."
819
- msgstr "Rejestracja zakończona. Możesz teraz zalogować."
820
-
821
- #: modules/custom-redirection/custom-redirection.php:156
822
- msgid "Redirection"
823
- msgstr "Przekierowanie"
824
-
825
- #: modules/custom-redirection/custom-redirection.php:185
826
- msgid "Log in"
827
- msgstr "Zaloguj"
828
-
829
- #: modules/custom-redirection/custom-redirection.php:187
830
- #: modules/custom-redirection/custom-redirection.php:199
831
- msgid "Default"
832
- msgstr "Domyślne"
833
-
834
- #: modules/custom-redirection/custom-redirection.php:188
835
- msgid "Check this option to send the user to their WordPress Dashboard/Profile."
836
- msgstr "Zaznacz tą opcję, aby przenieść użytkownika do WordPress Kokpitu / Profilu."
837
-
838
- #: modules/custom-redirection/custom-redirection.php:189
839
- #: modules/custom-redirection/custom-redirection.php:201
840
- msgid "Referer"
841
- msgstr "Odnośnik"
842
-
843
- #: modules/custom-redirection/custom-redirection.php:190
844
- msgid "Check this option to send the user back to the page they were visiting before logging in."
845
- msgstr "Zaznacz tą opcję, aby przenieść użytkownika do strony, którą przeglądał przez zalogowaniem."
846
-
847
- #: modules/custom-redirection/custom-redirection.php:193
848
- #: modules/custom-redirection/custom-redirection.php:205
849
- msgid "Check this option to send the user to a custom location, specified by the textbox above."
850
- msgstr "Zaznacz tą opcję, aby przenieść użytkownika do strony wpisanej w powyższym polu."
851
-
852
- #: modules/custom-redirection/custom-redirection.php:200
853
- msgid "Check this option to send the user to the log in page, displaying a message that they have successfully logged out."
854
- msgstr "Zaznacz tą opcję, aby przenieść użytkownika do strony logowania oraz wyświetlić wiadomość, że został poprawnie wylogowany."
855
-
856
- #: modules/custom-redirection/custom-redirection.php:202
857
- msgid "Check this option to send the user back to the page they were visiting before logging out. (Note: If the previous page being visited was an admin page, this can have unexpected results.)"
858
- msgstr "Zaznacz tą opcję, aby przenieść użytkownika do strony którą oglądał przed wylogowaniem. (W sytuacji, gdy poprzednią stroną była strona administracyjna, przeniesienie to może dać nieoczekiwane rezultaty)."
859
-
860
- #: modules/custom-user-links/admin/custom-user-links-admin.php:140
861
- msgid "User Links"
862
- msgstr "Linki Użytkownika"
863
-
864
- #: modules/custom-user-links/admin/custom-user-links-admin.php:232
865
- #: modules/custom-user-links/admin/custom-user-links-admin.php:255
866
- #: modules/custom-user-links/admin/custom-user-links-admin.php:300
867
- msgid "Title"
868
- msgstr "Tytuł"
869
-
870
- #: modules/custom-user-links/admin/custom-user-links-admin.php:233
871
- #: modules/custom-user-links/admin/custom-user-links-admin.php:256
872
- #: modules/custom-user-links/admin/custom-user-links-admin.php:304
873
- msgid "URL"
874
- msgstr "URL"
875
-
876
- #: modules/custom-user-links/admin/custom-user-links-admin.php:250
877
- msgid "Add New link:"
878
- msgstr "Dodaj Nowy Link"
879
-
880
- #: modules/custom-user-links/admin/custom-user-links-admin.php:266
881
- msgid "Add link"
882
- msgstr "Dodaj Link"
883
-
884
- #: modules/custom-user-links/admin/custom-user-links-admin.php:306
885
- msgid "Delete"
886
- msgstr "Usuń"
887
-
888
- #: modules/custom-user-links/admin/custom-user-links-admin.php:307
889
- msgid "Update"
890
- msgstr "Zaktualizuj"
891
-
892
- #: modules/security/admin/security-admin.php:32
893
- #: modules/security/admin/security-admin.php:35
894
- #: modules/user-moderation/admin/user-moderation-admin.php:34
895
- #: modules/user-moderation/admin/user-moderation-admin.php:44
896
- msgid "You can&#8217;t edit that user."
897
- msgstr "Nie możesz modyfikować tego użytkownika"
898
-
899
- #: modules/security/admin/security-admin.php:67
900
- msgid "User locked."
901
- msgstr "Użytkownik zablokowany."
902
-
903
- #: modules/security/admin/security-admin.php:69
904
- msgid "User unlocked."
905
- msgstr "Użytkownik odblokowany."
906
-
907
- #: modules/security/admin/security-admin.php:92
908
- msgid "Unlock"
909
- msgstr "Odblokuj"
910
-
911
- #: modules/security/admin/security-admin.php:94
912
- msgid "Lock"
913
- msgstr "Zablokuj"
914
-
915
- #: modules/security/admin/security-admin.php:113
916
- msgid "Security"
917
- msgstr "Bezpieczeństwo"
918
-
919
- #: modules/security/admin/security-admin.php:132
920
- msgid "Private Site"
921
- msgstr "Prywatne strony"
922
-
923
- #: modules/security/admin/security-admin.php:135
924
- msgid "Require users to be logged in to view site"
925
- msgstr "Wymagają, aby użytkownicy być zalogowany aby zobaczyć stronę"
926
-
927
- #: modules/security/admin/security-admin.php:139
928
- msgid "Login Attempts"
929
- msgstr "Prób logowania"
930
-
931
- #: modules/security/admin/security-admin.php:144
932
- msgid "minute(s)"
933
- msgstr "minut"
934
-
935
- #: modules/security/admin/security-admin.php:145
936
- msgid "hour(s)"
937
- msgstr "godzin"
938
-
939
- #: modules/security/admin/security-admin.php:146
940
- msgid "day(s)"
941
- msgstr "dni"
942
-
943
- #: modules/security/admin/security-admin.php:169
944
- msgid "After %1$s failed login attempts within %2$s %3$s, lockout the account for %4$s %5$s."
945
- msgstr "Po %1$s próbach nieudanego logowania w %2$s %3$s, konto zostało zablokowane na %4$s %5$s."
946
-
947
- #: modules/security/security.php:64
948
- #: modules/security/security.php:90
949
- msgid "<strong>ERROR</strong>: This account has been locked because of too many failed login attempts. You may try again in %s."
950
- msgstr "<strong>Błąd:</strong>Konto zostało zablokowane ze względu na zbyt dużo prób logowania. Proszę spróbować ponownie zalogować się za %s."
951
-
952
- #: modules/security/security.php:66
953
- msgid "<strong>ERROR</strong>: This account has been locked."
954
- msgstr "<strong>BŁĄD</strong>: To konto zostało zablokowane."
955
-
956
- #: modules/security/security.php:126
957
- msgid "Failed Login Attempts"
958
- msgstr "Błędnych prób logowania"
959
-
960
- #: modules/security/security.php:130
961
- msgid "IP Address"
962
- msgstr "Adres IP"
963
-
964
- #: modules/security/security.php:131
965
- msgid "Date"
966
- msgstr "Data"
967
-
968
- #: modules/security/security.php:134
969
- msgid "Y/m/d g:i:s A"
970
- msgstr "d.m.Y H:i:s"
971
-
972
- #: modules/security/security.php:139
973
- msgid "%s ago"
974
- msgstr "%s temu"
975
-
976
- #: modules/security/security.php:141
977
- msgid "Y/m/d"
978
- msgstr "d.m.Y"
979
-
980
- #: modules/themed-profiles/admin/themed-profiles-admin.php:23
981
- #: modules/themed-profiles/admin/themed-profiles-admin.php:42
982
- msgid "Themed Profiles"
983
- msgstr "Profile tematyczne"
984
-
985
- #: modules/themed-profiles/admin/themed-profiles-admin.php:51
986
- msgid "Restrict Admin Access"
987
- msgstr "Ogranicz uprawnienia administratora"
988
-
989
- #: modules/themed-profiles/themed-profiles.php:123
990
- #: templates/profile-form.php:182
991
- #: templates/resetpass-form.php:19
992
- msgid "Strength indicator"
993
- msgstr "Siła hasła"
994
-
995
- #: modules/themed-profiles/themed-profiles.php:124
996
- msgid "Very weak"
997
- msgstr "Bardzo słabe"
998
-
999
- #: modules/themed-profiles/themed-profiles.php:125
1000
- msgid "Weak"
1001
- msgstr "Słabe"
1002
-
1003
- #. translators: password strength
1004
- #: modules/themed-profiles/themed-profiles.php:127
1005
- msgctxt "password strength"
1006
- msgid "Medium"
1007
- msgstr "Średnie"
1008
-
1009
- #: modules/themed-profiles/themed-profiles.php:128
1010
- msgid "Strong"
1011
- msgstr "Silne"
1012
-
1013
- #: modules/themed-profiles/themed-profiles.php:138
1014
- msgid "You do not have permission to edit this user."
1015
- msgstr "Nie masz uprawnień do edycji tego użytkownika."
1016
-
1017
- #: modules/themed-profiles/themed-profiles.php:154
1018
- msgid "Profile updated."
1019
- msgstr "Profil został zaktualizowany."
1020
-
1021
- #: modules/themed-profiles/themed-profiles.php:243
1022
- msgid "Your Profile"
1023
- msgstr "Twój Profil"
1024
-
1025
- #: modules/user-moderation/admin/user-moderation-admin.php:75
1026
- msgid "User approved."
1027
- msgstr "Użytkownik zaakceptowany."
1028
-
1029
- #: modules/user-moderation/admin/user-moderation-admin.php:77
1030
- msgid "Activation sent."
1031
- msgstr "Aktywacja wysłana."
1032
-
1033
- #: modules/user-moderation/admin/user-moderation-admin.php:105
1034
- msgid "Resend Activation"
1035
- msgstr "Wyślij ponownie aktywację."
1036
-
1037
- #: modules/user-moderation/admin/user-moderation-admin.php:110
1038
- msgid "Approve"
1039
- msgstr "Zatwierdź"
1040
-
1041
- #: modules/user-moderation/admin/user-moderation-admin.php:163
1042
- msgid "You have been approved access to %s"
1043
- msgstr "Dostałeś dostęp do %s"
1044
-
1045
- #: modules/user-moderation/admin/user-moderation-admin.php:168
1046
- msgid "[%s] Registration Approved"
1047
- msgstr "[%s] Rejestracja zatwierdzony"
1048
-
1049
- #: modules/user-moderation/admin/user-moderation-admin.php:203
1050
- msgid "You have been denied access to %s"
1051
- msgstr "Zabroniono dostępu do: %s"
1052
-
1053
- #: modules/user-moderation/admin/user-moderation-admin.php:204
1054
- msgid "[%s] Registration Denied"
1055
- msgstr "[%s] Rejestracja Denied"
1056
-
1057
- #: modules/user-moderation/admin/user-moderation-admin.php:226
1058
- msgid "Moderation"
1059
- msgstr "Moderacja"
1060
-
1061
- #: modules/user-moderation/admin/user-moderation-admin.php:242
1062
- msgid "User Moderation"
1063
- msgstr "Moderacja użytkownika"
1064
-
1065
- #: modules/user-moderation/admin/user-moderation-admin.php:245
1066
- msgid "None"
1067
- msgstr "Żaden"
1068
-
1069
- #: modules/user-moderation/admin/user-moderation-admin.php:246
1070
- msgid "Check this option to require no moderation."
1071
- msgstr "Zaznacz tą opcję jeśli nie potrzebujesz moderacji."
1072
-
1073
- #: modules/user-moderation/admin/user-moderation-admin.php:248
1074
- msgid "E-mail Confirmation"
1075
- msgstr "Potwierdzenie e-mail"
1076
-
1077
- #: modules/user-moderation/admin/user-moderation-admin.php:249
1078
- msgid "Check this option to require new users to confirm their e-mail address before they may log in."
1079
- msgstr "Zaznacz tą opcję, aby wymagać potwierdzenia e-maila przez nowych użytkowników przed pierwszym zalogowaniem."
1080
-
1081
- #: modules/user-moderation/admin/user-moderation-admin.php:251
1082
- msgid "Admin Approval"
1083
- msgstr "Akceptacja administratora"
1084
-
1085
- #: modules/user-moderation/admin/user-moderation-admin.php:252
1086
- msgid "Check this option to require new users to be approved by an administrator before they may log in."
1087
- msgstr "Zaznacz tą opcję, aby wymagać zatwierdzenia nowych użytkowników przez administratora przed pierwszym zalogowaniem."
1088
-
1089
- #: modules/user-moderation/admin/user-moderation-admin.php:269
1090
- msgid "User Moderation is not currently compatible with multisite."
1091
- msgstr "Moderacja Użytkownik nie jest obecnie zgodny z multisite."
1092
-
1093
- #: modules/user-moderation/user-moderation.php:163
1094
- msgid "<strong>ERROR</strong>: You have not yet confirmed your e-mail address. <a href=\"%s\">Resend activation</a>?"
1095
- msgstr "<strong>Blad</strong>: Czy Tej Pory NIE aktywowałeś jeszcze Twojego adresu e-mail. Przesłać ponownie <a href=\"%s\">e-mail aktywacyjny</ a>?"
1096
-
1097
- #: modules/user-moderation/user-moderation.php:166
1098
- msgid "<strong>ERROR</strong>: Your registration has not yet been approved."
1099
- msgstr "<strong>BŁĄD</strong>: Twoja rejestracja nie została jeszcze zatwierdzona."
1100
-
1101
- #: modules/user-moderation/user-moderation.php:328
1102
- msgid "[%s] Activate Your Account"
1103
- msgstr "[%s] Aktywować Twoje Konto"
1104
-
1105
- #: modules/user-moderation/user-moderation.php:329
1106
- msgid "Thanks for registering at %s! To complete the activation of your account please click the following link: "
1107
- msgstr "Dziękuję za rejestrację na %s!. Aby ukończyć aktywację konta proszę kliknij następujący link: "
1108
-
1109
- #: modules/user-moderation/user-moderation.php:362
1110
- msgid "[%s] New User Awaiting Approval"
1111
- msgstr "[%s] Nowy użytkownik oczekuje na zatwierdzenie"
1112
-
1113
- #: modules/user-moderation/user-moderation.php:364
1114
- msgid "New user requires approval on your blog %s:"
1115
- msgstr "Nowy użytkownik wymaga zgody na swojej %s blogu:"
1116
-
1117
- #: modules/user-moderation/user-moderation.php:367
1118
- msgid "To approve or deny this user:"
1119
- msgstr "Zaakceptuj, albo odrzuć tego użytkownika:"
1120
-
1121
- #: modules/user-moderation/user-moderation.php:388
1122
- msgid "Your registration was successful but you must now confirm your email address before you can log in. Please check your email and click on the link provided."
1123
- msgstr "Twoja rejestracja została zakończona pomyślnie, ale przed zalogowaniem musisz potwierdzić Twój adres e-mail. Proszę sprawdź Twój e-mail i kliknij w załączony link."
1124
-
1125
- #: modules/user-moderation/user-moderation.php:390
1126
- msgid "Your registration was successful but you must now be approved by an administrator before you can log in. You will be notified by e-mail once your account has been reviewed."
1127
- msgstr "Twoja rejestracja została zakończona pomyślnie, ale przed zalogowaniem Twoje konto musi zostać zaakceptowane przez Administratora. Po akceptacji otrzymasz e-mail."
1128
-
1129
- #: modules/user-moderation/user-moderation.php:393
1130
- msgid "Your account has been activated. You may now log in."
1131
- msgstr "Twoje konto zostało aktywowane. Możesz już się zalogować."
1132
-
1133
- #: modules/user-moderation/user-moderation.php:395
1134
- msgid "Your account has been activated. Please check your e-mail for your password."
1135
- msgstr "Twoje konto zostało aktywowane. Proszę sprawdzić pocztę o podanie hasła."
1136
-
1137
- #: modules/user-moderation/user-moderation.php:397
1138
- msgid "<strong>ERROR</strong>: Sorry, that key does not appear to be valid."
1139
- msgstr "<strong>BŁĄD</strong>: Przepraszamy, ten klucz nie wydaje się być prawidłowy."
1140
-
1141
- #: modules/user-moderation/user-moderation.php:400
1142
- msgid "<strong>ERROR</strong>: Sorry, the activation e-mail could not be sent."
1143
- msgstr "<strong>BŁĄD</strong>: Przepraszam, e-mail aktywacyjny nie może zostać wysłana."
1144
-
1145
- #: modules/user-moderation/user-moderation.php:402
1146
- msgid "The activation e-mail has been sent to the e-mail address with which you registered. Please check your email and click on the link provided."
1147
- msgstr "E-mail aktywacyjny został wysłany na adres podany w trakcie rejestracji. Proszę sprawdź Twój e-mail i kliknij w załączony link."
1148
-
1149
- #: templates/login-form.php:12
1150
- #: templates/profile-form.php:91
1151
- #: templates/register-form.php:12
1152
- msgid "Username"
1153
- msgstr "Użytkownik"
1154
-
1155
- #: templates/login-form.php:16
1156
- msgid "Password"
1157
- msgstr "Hasło"
1158
-
1159
- #: templates/login-form.php:25
1160
- msgid "Remember Me"
1161
- msgstr "Zapamiętaj Mnie"
1162
-
1163
- #: templates/lostpassword-form.php:12
1164
- msgid "Username or E-mail:"
1165
- msgstr "Użytkownik/E-mail"
1166
-
1167
- #: templates/lostpassword-form.php:20
1168
- msgid "Get New Password"
1169
- msgstr "Wygeneruj Nowe Hasło"
1170
-
1171
- #: templates/ms-signup-another-blog-form.php:7
1172
- msgid "Get <em>another</em> %s site in seconds"
1173
- msgstr "Zdobądź <em>kolejną</em> witrynę w sieci %s w ciągu kilku sekund"
1174
-
1175
- #: templates/ms-signup-another-blog-form.php:10
1176
- msgid "There was a problem, please correct the form below and try again."
1177
- msgstr "Wystąpił problem. Proszę poprawić dane wprowadzone do pól poniższego formularza i spróbować ponownie."
1178
-
1179
- #: templates/ms-signup-another-blog-form.php:13
1180
- msgid "Welcome back, %s. By filling out the form below, you can <strong>add another site to your account</strong>. There is no limit to the number of sites you can have, so create to your heart&#8217;s content, but write responsibly!"
1181
- msgstr "Witaj ponownie, %s. Możesz <strong>dodać kolejną witrynę do swojego konta</strong> poprzez wypełnienie poniższego formularza. Nie istnieje limit ograniczający ilość posiadanych witryn, więc twórz, jak dyktuje Ci serce, ale pisz odpowiedzialnie!"
1182
-
1183
- #: templates/ms-signup-another-blog-form.php:18
1184
- msgid "Sites you are already a member of:"
1185
- msgstr "Witryny, których jesteś już członkiem:"
1186
-
1187
- #: templates/ms-signup-another-blog-form.php:27
1188
- msgid "If you&#8217;re not going to use a great site domain, leave it for a new user. Now have at it!"
1189
- msgstr "Jeżeli nie zamierzasz używać witryny w atrakcyjnej domeny, pozostaw ją dla nowego użytkownika. A teraz &mdash; działaj!"
1190
-
1191
- #: templates/ms-signup-another-blog-form.php:33
1192
- #: templates/ms-signup-blog-form.php:17
1193
- msgid "Site Name:"
1194
- msgstr "Nazwa witryny:"
1195
-
1196
- #: templates/ms-signup-another-blog-form.php:35
1197
- #: templates/ms-signup-blog-form.php:19
1198
- msgid "Site Domain:"
1199
- msgstr "Domena witryny:"
1200
-
1201
- #: templates/ms-signup-another-blog-form.php:52
1202
- #: templates/ms-signup-blog-form.php:36
1203
- msgid "sitename"
1204
- msgstr "nazwawitryny"
1205
-
1206
- #: templates/ms-signup-another-blog-form.php:54
1207
- #: templates/ms-signup-blog-form.php:38
1208
- msgid "domain"
1209
- msgstr "domena"
1210
-
1211
- #: templates/ms-signup-another-blog-form.php:55
1212
- #: templates/ms-signup-blog-form.php:39
1213
- msgid "Your address will be %s."
1214
- msgstr "Twoim adresem będzie %s."
1215
-
1216
- #: templates/ms-signup-another-blog-form.php:55
1217
- #: templates/ms-signup-blog-form.php:39
1218
- msgid "Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!"
1219
- msgstr "Musi składać się z co najmniej 4 znaków &mdash; wyłącznie liter i cyfr. Nie może zostać zmieniona, więc wybierz rozważnie!"
1220
-
1221
- #: templates/ms-signup-another-blog-form.php:58
1222
- #: templates/ms-signup-blog-form.php:42
1223
- msgid "Site Title:"
1224
- msgstr "Tytuł witryny:"
1225
-
1226
- #: templates/ms-signup-another-blog-form.php:66
1227
- #: templates/ms-signup-blog-form.php:50
1228
- msgid "Privacy:"
1229
- msgstr "Prywatność:"
1230
-
1231
- #: templates/ms-signup-another-blog-form.php:67
1232
- #: templates/ms-signup-blog-form.php:51
1233
- msgid "Allow my site to appear in search engines like Google, Technorati, and in public listings around this network."
1234
- msgstr "Chcę, aby mój blog pojawiał się w wyszukiwarkach, takich jak Google i Technorati, oraz w publicznych zestawieniach w tej sieci."
1235
-
1236
- #: templates/ms-signup-another-blog-form.php:71
1237
- #: templates/ms-signup-blog-form.php:55
1238
- msgid "Yes"
1239
- msgstr "Tak"
1240
-
1241
- #: templates/ms-signup-another-blog-form.php:75
1242
- #: templates/ms-signup-blog-form.php:59
1243
- msgid "No"
1244
- msgstr "Nie"
1245
-
1246
- #: templates/ms-signup-another-blog-form.php:85
1247
- msgid "Create Site"
1248
- msgstr "Utwórz witrynę"
1249
-
1250
- #: templates/ms-signup-blog-form.php:69
1251
- msgid "Signup"
1252
- msgstr "Zarejestruj się"
1253
-
1254
- #: templates/ms-signup-user-form.php:7
1255
- msgid "Get your own %s account in seconds"
1256
- msgstr "Załóż swoje własne konto w sieci %s w ciągu kilku sekund"
1257
-
1258
- #: templates/ms-signup-user-form.php:22
1259
- msgid "(Must be at least 4 characters, letters and numbers only.)"
1260
- msgstr "(Musi składać się z co najmniej 4 znaków; wyłącznie liter i cyfr)."
1261
-
1262
- #: templates/ms-signup-user-form.php:24
1263
- msgid "Email&nbsp;Address:"
1264
- msgstr "Adres&nbsp;e-mail:"
1265
-
1266
- #: templates/ms-signup-user-form.php:30
1267
- msgid "We send your registration email to this address. (Double-check your email address before continuing.)"
1268
- msgstr "Porejestracyjnego e-maila wyślemy właśnie na ten adres. (Dwukrotnie sprawdź poprawność tego adresu przed przejściem dalej)."
1269
-
1270
- #: templates/ms-signup-user-form.php:47
1271
- msgid "Gimme a site!"
1272
- msgstr "msgstr \"Porejestracyjnego e-maila wyślemy właśnie na ten adres. (Dwukrotnie sprawdź poprawność tego adresu przed przejściem dalej).\""
1273
-
1274
- #: templates/ms-signup-user-form.php:50
1275
- msgid "Just a username, please."
1276
- msgstr "Proszę tylko wprowadzić o nazwę użytkownika."
1277
-
1278
- #: templates/ms-signup-user-form.php:54
1279
- msgid "Next"
1280
- msgstr "Dalej"
1281
-
1282
- #: templates/profile-form.php:26
1283
- msgid "Personal Options"
1284
- msgstr "Opcje Personalne"
1285
-
1286
- #: templates/profile-form.php:31
1287
- msgid "Visual Editor"
1288
- msgstr "Edytor wizualny"
1289
-
1290
- #: templates/profile-form.php:32
1291
- msgid "Disable the visual editor when writing"
1292
- msgstr "Nie używaj edytora wizualnego do pisania"
1293
-
1294
- #: templates/profile-form.php:37
1295
- msgid "Admin Color Scheme"
1296
- msgstr "Zestaw kolorów panelu administracyjnego"
1297
-
1298
- #: templates/profile-form.php:44
1299
- msgid "Keyboard Shortcuts"
1300
- msgstr "Skróty klawiaturowe"
1301
-
1302
- #: templates/profile-form.php:45
1303
- msgid "Enable keyboard shortcuts for comment moderation."
1304
- msgstr "Włącz klawiaturowe skróty do moderacji komentarzy."
1305
-
1306
- #: templates/profile-form.php:45
1307
- msgid "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">More information</a>"
1308
- msgstr "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">Więcej informacji</a>"
1309
-
1310
- #: templates/profile-form.php:51
1311
- #: templates/profile-form.php:54
1312
- msgid "Toolbar"
1313
- msgstr "Pasek narzędzi"
1314
-
1315
- #: templates/profile-form.php:57
1316
- msgid "Show Toolbar when viewing site"
1317
- msgstr "Pokazuj pasek narzędzi podczas przeglądania witryny"
1318
-
1319
- #: templates/profile-form.php:63
1320
- #: templates/profile-form.php:66
1321
- msgid "Show Admin Bar"
1322
- msgstr "Potwierdź nowe hasło"
1323
-
1324
- #. translators: Show admin bar when viewing site
1325
- #: templates/profile-form.php:69
1326
- msgid "when viewing site"
1327
- msgstr "podczas przeglądania witryny"
1328
-
1329
- #. translators: Show admin bar in dashboard
1330
- #: templates/profile-form.php:74
1331
- msgid "in dashboard"
1332
- msgstr "w kokpicie"
1333
-
1334
- #: templates/profile-form.php:87
1335
- msgid "Name"
1336
- msgstr "Imię"
1337
-
1338
- #: templates/profile-form.php:92
1339
- msgid "Your username cannot be changed."
1340
- msgstr "Twoja nazwa użytkownika nie może ulec zmianie."
1341
-
1342
- #: templates/profile-form.php:96
1343
- msgid "First name"
1344
- msgstr "Imię"
1345
-
1346
- #: templates/profile-form.php:101
1347
- msgid "Last name"
1348
- msgstr "Nazwisko"
1349
-
1350
- #: templates/profile-form.php:106
1351
- msgid "Nickname"
1352
- msgstr "Nick"
1353
-
1354
- #: templates/profile-form.php:106
1355
- #: templates/profile-form.php:143
1356
- msgid "(required)"
1357
- msgstr "(wymagane)"
1358
-
1359
- #: templates/profile-form.php:111
1360
- msgid "Display name publicly as"
1361
- msgstr "Wyświetl imię jako"
1362
-
1363
- #: templates/profile-form.php:139
1364
- msgid "Contact Info"
1365
- msgstr "Informacje Kontaktowe"
1366
-
1367
- #: templates/profile-form.php:148
1368
- msgid "Website"
1369
- msgstr "Strona Internetowa"
1370
-
1371
- #: templates/profile-form.php:165
1372
- msgid "About Yourself"
1373
- msgstr "O sobie"
1374
-
1375
- #: templates/profile-form.php:169
1376
- msgid "Biographical Info"
1377
- msgstr "Biografia"
1378
-
1379
- #: templates/profile-form.php:171
1380
- msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
1381
- msgstr "Podziel się małą biografią na twój temat wraz ze społecznością."
1382
-
1383
- #: templates/profile-form.php:179
1384
- msgid "New Password"
1385
- msgstr "Nowe Hasło"
1386
-
1387
- #: templates/profile-form.php:180
1388
- msgid "If you would like to change the password type a new one. Otherwise leave this blank."
1389
- msgstr "Jeśli chcesz zmienić hasło wpisz tutaj nowe hasło, w przeciwnym wypadku zostaw to pole puste."
1390
-
1391
- #: templates/profile-form.php:181
1392
- msgid "Type your new password again."
1393
- msgstr "Wprowadź nowe hasło ponownie"
1394
-
1395
- #: templates/profile-form.php:183
1396
- #: templates/resetpass-form.php:20
1397
- msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
1398
- msgstr "Wskazówka: Hasło powinno mieć minimum 7 znaków. W celu poprawy bezpieczeństwa należy użyć dużych i małych liter, cyfr i symboli."
1399
-
1400
- #: templates/profile-form.php:197
1401
- msgid "Additional Capabilities"
1402
- msgstr "Dodatkowe możliwości"
1403
-
1404
- #: templates/profile-form.php:216
1405
- msgid "Update Profile"
1406
- msgstr "Zaktualizuj profil"
1407
-
1408
- #: templates/register-form.php:23
1409
- msgid "A password will be e-mailed to you."
1410
- msgstr "Hasło zostanie wysłane e-mailem do Ciebie."
1411
-
1412
- #: templates/resetpass-form.php:12
1413
- msgid "New password"
1414
- msgstr "Nowe hasło"
1415
-
1416
- #: templates/resetpass-form.php:16
1417
- msgid "Confirm new password"
1418
- msgstr "Potwierdź nowe hasło"
1419
-
1420
- #. Plugin URI of the plugin/theme
1421
- msgid "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/"
1422
- msgstr "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/"
1423
-
1424
- #. Description of the plugin/theme
1425
- msgid "Themes the WordPress login, registration and forgot password pages according to your theme."
1426
- msgstr "Tematy logowania WordPress, rejestracja i zapomniał stron haseł w zależności od tematu."
1427
-
1428
- #. Author of the plugin/theme
1429
- msgid "Jeff Farthing"
1430
- msgstr "Jeff Farthing"
1431
-
1432
- #. Author URI of the plugin/theme
1433
- msgid "http://www.jfarthing.com"
1434
- msgstr "http://www.jfarthing.com"
1435
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
language/theme-my-login-pt_BR.mo DELETED
Binary file
language/theme-my-login-pt_BR.po DELETED
@@ -1,1434 +0,0 @@
1
- # Copyright (C) 2012 Theme My Login
2
- # This file is distributed under the same license as the Theme My Login package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Theme My Login 6.2\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/theme-my-login\n"
7
- "POT-Creation-Date: 2012-03-08 16:19:05+00:00\n"
8
- "PO-Revision-Date: 2012-03-24 14:45-0500\n"
9
- "Last-Translator: Jeff Farthing <jeff@jfarthing.com>\n"
10
- "Language-Team: Hugo Soares Zaggo <hugozaggo_de@hotmail.com>\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-Language: Portuguese\n"
15
- "X-Poedit-Country: BRAZIL\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
-
18
- #. #-#-#-#-# plugin.pot (Theme My Login 6.2) #-#-#-#-#
19
- #. Plugin Name of the plugin/theme
20
- #: admin/class-theme-my-login-admin.php:42
21
- #: admin/class-theme-my-login-admin.php:43
22
- #: includes/class-theme-my-login-widget.php:24
23
- msgid "Theme My Login"
24
- msgstr "Theme My LoginTheme My Login"
25
-
26
- #: admin/class-theme-my-login-admin.php:81
27
- msgid "ERROR: The module \"%1$s\" could not be activated (%2$s)."
28
- msgstr "ERRO: O módulo \"%1$s\" não pôde ser ativado (%2$s)."
29
-
30
- #: admin/class-theme-my-login-admin.php:103
31
- msgid "NOTICE:"
32
- msgstr "NOTA:"
33
-
34
- #: admin/class-theme-my-login-admin.php:104
35
- msgid "Now that you have activated Theme My Login, please <a href=\"%s\">visit the settings page</a> and familiarize yourself with all of the available options."
36
- msgstr "Agora que você ativou o Theme My Login, por favor vá até a <a href=\"%s\">página de configurações</a> e familiarize-se com todas as opções disponíveis"
37
-
38
- #: admin/class-theme-my-login-admin.php:106
39
- msgid "Take me to the settings page"
40
- msgstr "Leve-me até a página de configurações"
41
-
42
- #: admin/class-theme-my-login-admin.php:119
43
- msgid "You can now login with your e-mail address or username! Try it out!"
44
- msgstr "Agora você pode se logar com seu e-mail ou nome de usuário. Experimente!"
45
-
46
- #: admin/class-theme-my-login-admin.php:120
47
- msgid "Theme My Login now utilizes a module system. Modules are similar to WordPress plugins. Each module extends the default functionality of Theme My Login. <a rel=\"tml-options\" href=\"#tml-options-modules\">Click here</a> to get started with modules now."
48
- msgstr "O Theme My Login agora usa um sistema modular. Módulos são similares a plugins do WordPress. Cada módulo estende a funcionalidade padrão do Theme My Login. <a rel=\"tml-options\" href=\"#tml-options-modules\">Clique aqui</a> para começar a usar os módulos agora."
49
-
50
- #: admin/class-theme-my-login-admin.php:121
51
- msgid "Theme My Login now allows custom forms. You can create your own form template(s) by copying the default version(s) from \"theme-my-login/templates\" to your current theme directory. Try it out!"
52
- msgstr "O Theme My Login agora permite formulários customizados. Você pode criar seus próprios templates de formulários copiando as versões padrões de \"theme-my-login/templates\" para o seu diretório de temas atual. Experimente!"
53
-
54
- #: admin/class-theme-my-login-admin.php:122
55
- msgid "You can maintain your stylesheet changes between upgrades. Just simply copy the file \"theme-my-login/theme-my-login.css\" to your current theme directory and edit it as you please!"
56
- msgstr "Você pode manter suas mudanças de stylesheet entre upgrades. Simplesmente copie o arquivo \"theme-my-login/theme-my-login.css\" para sua pasta de temas atual e o edite como quiser!"
57
-
58
- #: admin/class-theme-my-login-admin.php:123
59
- msgid "Theme My Login provides a shortcode that you can use within your posts with multiple parameters to customize the form. Visit the <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Theme My Login Documentation</a> for usage instructions."
60
- msgstr "O Theme My Login fornece um shortcode que você pode usar em seus posts com múltiplos parâmetros para customizar o formulário. Veja a <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Documentação do Theme My Login</a> para obter instruções de uso."
61
-
62
- #: admin/class-theme-my-login-admin.php:124
63
- msgid "Jeff is <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">available for hire</a>!"
64
- msgstr "O Jeff <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">pode ser contratado</a>!"
65
-
66
- #: admin/class-theme-my-login-admin.php:128
67
- msgid "Did You Know?"
68
- msgstr "Você sabia?"
69
-
70
- #: admin/class-theme-my-login-admin.php:177
71
- msgid "General"
72
- msgstr "Geral"
73
-
74
- #: admin/class-theme-my-login-admin.php:178
75
- msgid "Basic"
76
- msgstr "Básico"
77
-
78
- #: admin/class-theme-my-login-admin.php:179
79
- #: admin/class-theme-my-login-admin.php:319
80
- msgid "Modules"
81
- msgstr "Módulos"
82
-
83
- #: admin/class-theme-my-login-admin.php:181
84
- msgid "Permalinks"
85
- msgstr "Links permanentes"
86
-
87
- #: admin/class-theme-my-login-admin.php:188
88
- msgid "Theme My Login Settings"
89
- msgstr "Configurações do Theme My Login"
90
-
91
- #: admin/class-theme-my-login-admin.php:194
92
- #: admin/class-theme-my-login-admin.php:254
93
- msgid "Save Changes"
94
- msgstr "Salvar Alterações"
95
-
96
- #: admin/class-theme-my-login-admin.php:271
97
- msgid "Page ID"
98
- msgstr "ID da página"
99
-
100
- #: admin/class-theme-my-login-admin.php:274
101
- msgid "This should be the ID of the WordPress page that includes the [theme-my-login] shortcode. By default, this page is titled \"Login\"."
102
- msgstr "Esse deve ser o ID da página do WordPress que tem o \"shortcode\" [theme-my-login]. Por padrão, essa página é entitulada \"Login\"."
103
-
104
- #: admin/class-theme-my-login-admin.php:278
105
- msgid "Pagelist"
106
- msgstr "Listagem de páginas"
107
-
108
- #: admin/class-theme-my-login-admin.php:281
109
- msgid "Show Page In Pagelist"
110
- msgstr "Mostrar páginas na listagem de páginas"
111
-
112
- #: admin/class-theme-my-login-admin.php:282
113
- msgid "Enable this setting to add login/logout links to the pagelist generated by functions like wp_list_pages() and wp_page_menu()."
114
- msgstr "Ative esta opção para adicionar os links de login/logout na listagem de páginas gerada por funções como a wp_list_pages() e wp_page_menu()."
115
-
116
- #: admin/class-theme-my-login-admin.php:286
117
- msgid "Stylesheet"
118
- msgstr "Folha de Estilos"
119
-
120
- #: admin/class-theme-my-login-admin.php:289
121
- msgid "Enable \"theme-my-login.css\""
122
- msgstr "Ativar \"theme-my-login.css\""
123
-
124
- #: admin/class-theme-my-login-admin.php:290
125
- msgid "In order to keep changes between upgrades, you can store your customized \"theme-my-login.css\" in your current theme directory."
126
- msgstr "Para manter suas mudanças ao atualizar o plugin, você pode armazenar seu \"theme-my-login.css\" customizado no diretório do seu tema."
127
-
128
- #: admin/class-theme-my-login-admin.php:294
129
- msgid "E-mail Login"
130
- msgstr "E-mail de login"
131
-
132
- #: admin/class-theme-my-login-admin.php:297
133
- msgid "Enable e-mail address login"
134
- msgstr "Ativar login por endereço de e-mail"
135
-
136
- #: admin/class-theme-my-login-admin.php:298
137
- msgid "Allows users to login using their e-mail address in place of their username."
138
- msgstr "Permitir que usuários façam log in com endereço de e-mail ao invés de nome de usuário"
139
-
140
- #: admin/class-theme-my-login-admin.php:323
141
- msgid "Enable %s"
142
- msgstr "Ativar %s"
143
-
144
- #: admin/class-theme-my-login-admin.php:325
145
- msgid "No modules found."
146
- msgstr "Nenhum módulo encontrado."
147
-
148
- #: admin/class-theme-my-login-admin.php:343
149
- #: includes/class-theme-my-login-widget.php:87
150
- msgid "Login"
151
- msgstr "Login"
152
-
153
- #: admin/class-theme-my-login-admin.php:344
154
- #: includes/class-theme-my-login-template.php:141
155
- #: includes/class-theme-my-login-widget.php:87
156
- #: templates/register-form.php:25
157
- msgid "Register"
158
- msgstr "Cadastre-se"
159
-
160
- #: admin/class-theme-my-login-admin.php:345
161
- #: includes/class-theme-my-login-template.php:147
162
- #: includes/class-theme-my-login-widget.php:87
163
- msgid "Lost Password"
164
- msgstr "Esqueci minha senha"
165
-
166
- #: admin/class-theme-my-login-admin.php:475
167
- msgid "One of the modules is invalid."
168
- msgstr "Um dos módulos está inválido."
169
-
170
- #: admin/class-theme-my-login-admin.php:531
171
- msgid "Invalid module path."
172
- msgstr "Caminho de módulo inválido."
173
-
174
- #: admin/class-theme-my-login-admin.php:533
175
- msgid "Module file does not exist."
176
- msgstr "Arquivo do módulo não existe."
177
-
178
- #: admin/class-theme-my-login-admin.php:537
179
- msgid "The module does not have a valid header."
180
- msgstr "O módulo não tem um cabeçalho válido."
181
-
182
- #: includes/class-theme-my-login-ms-signup.php:117
183
- msgctxt "Multisite active signup type"
184
- msgid "all"
185
- msgstr "todos"
186
-
187
- #: includes/class-theme-my-login-ms-signup.php:118
188
- msgctxt "Multisite active signup type"
189
- msgid "none"
190
- msgstr "todos"
191
-
192
- #: includes/class-theme-my-login-ms-signup.php:119
193
- msgctxt "Multisite active signup type"
194
- msgid "blog"
195
- msgstr "blog"
196
-
197
- #: includes/class-theme-my-login-ms-signup.php:120
198
- msgctxt "Multisite active signup type"
199
- msgid "user"
200
- msgstr "usuário"
201
-
202
- #: includes/class-theme-my-login-ms-signup.php:123
203
- msgid "Greetings Site Administrator! You are currently allowing &#8220;%s&#8221; registrations. To change or disable registration go to your <a href=\"%s\">Options page</a>."
204
- msgstr "Olá administrador do site! No momento, você está permitindo &#8220;%s&#8221; registros. Para mudar ou desativar registros, vá para a <a href=\"%s\">Página de Opções</a>."
205
-
206
- #: includes/class-theme-my-login-ms-signup.php:129
207
- msgid "Registration has been disabled."
208
- msgstr "Registros foram desativados."
209
-
210
- #: includes/class-theme-my-login-ms-signup.php:131
211
- msgid "You must first <a href=\"%s\">log in</a>, and then you can create a new site."
212
- msgstr "Olá administrador do site! No momento, você está permitindo &#8220;%s&#8221; registros. Para mudar ou desativar registros, vá para a <a href=\"%s\">Página de Opções</a>."
213
-
214
- #: includes/class-theme-my-login-ms-signup.php:155
215
- msgid "%s is your new username"
216
- msgstr "%s é seu nome de usuário"
217
-
218
- #: includes/class-theme-my-login-ms-signup.php:156
219
- msgid "But, before you can start using your new username, <strong>you must activate it</strong>."
220
- msgstr "Antes de poder usar seu nove nome de usuário, <strong>você deve ativá-lo</strong>."
221
-
222
- #: includes/class-theme-my-login-ms-signup.php:157
223
- msgid "Check your inbox at <strong>%1$s</strong> and click the link given."
224
- msgstr "Cheque sua caixa de entrada em <strong>%1$s</strong> e clique no link fornecido."
225
-
226
- #: includes/class-theme-my-login-ms-signup.php:158
227
- msgid "If you do not activate your username within two days, you will have to sign up again."
228
- msgstr "Se você não ativar seu nome de usuário em 2 dias, será necessário registrar-se novamente."
229
-
230
- #: includes/class-theme-my-login-ms-signup.php:162
231
- msgid "User registration has been disabled."
232
- msgstr "O registro de usuários está desativado."
233
-
234
- #: includes/class-theme-my-login-ms-signup.php:194
235
- msgid "Congratulations! Your new site, %s, is almost ready."
236
- msgstr "Parabéns! Seu novo site, %s, está quase pronto."
237
-
238
- #: includes/class-theme-my-login-ms-signup.php:196
239
- msgid "But, before you can start using your site, <strong>you must activate it</strong>."
240
- msgstr "Antes de começar a usar seu site, você deve <strong>ativá-lo</strong>."
241
-
242
- #: includes/class-theme-my-login-ms-signup.php:197
243
- msgid "Check your inbox at <strong>%s</strong> and click the link given."
244
- msgstr "Verifique sua caixa de entrada em <strong>%s</strong> e clique no link fornecido."
245
-
246
- #: includes/class-theme-my-login-ms-signup.php:198
247
- msgid "If you do not activate your site within two days, you will have to sign up again."
248
- msgstr "Se você não ativar seu site nos próximos dois dias, será necessário registrar-se novamente."
249
-
250
- #: includes/class-theme-my-login-ms-signup.php:199
251
- msgid "Still waiting for your email?"
252
- msgstr "Ainda está esperando seu e-mail?"
253
-
254
- #: includes/class-theme-my-login-ms-signup.php:201
255
- msgid "If you haven&#8217;t received your email yet, there are a number of things you can do:"
256
- msgstr "Se você ainda não recebue seu e-mail, você pode fazer o seguinte:"
257
-
258
- #: includes/class-theme-my-login-ms-signup.php:203
259
- msgid "Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control."
260
- msgstr "Espere um pouco mais. Às vezes a entrega de e-mails pode ser atrasada por processos fora de nosso controle."
261
-
262
- #: includes/class-theme-my-login-ms-signup.php:204
263
- msgid "Check the junk or spam folder of your email client. Sometime emails wind up there by mistake."
264
- msgstr "Verifique as pastas de lixo ou spam em seu cliente de e-mail. Às vezes e-mails podem parar lá por engano."
265
-
266
- #: includes/class-theme-my-login-ms-signup.php:205
267
- msgid "Have you entered your email correctly? You have entered %s, if it&#8217;s incorrect, you will not receive your email."
268
- msgstr "Você e-mail está correto? Você informou %s. Se estiver incorreto, você não receberá seu e-mail."
269
-
270
- #: includes/class-theme-my-login-ms-signup.php:211
271
- msgid "Site registration has been disabled."
272
- msgstr "O registro de sites está desativado."
273
-
274
- #: includes/class-theme-my-login-ms-signup.php:235
275
- msgid "The site %s is yours."
276
- msgstr "O site %s é seu."
277
-
278
- #: includes/class-theme-my-login-ms-signup.php:237
279
- msgid "<a href=\"http://%1$s\">http://%2$s</a> is your new site. <a href=\"%3$s\">Log in</a> as &#8220;%4$s&#8221; using your existing password."
280
- msgstr "Seu novo site é <a href=\"http://%1$s\">http://%2$s</a>. <a href=\"%3$s\">Log in</a> como &#8220;%4$s&#8221; usando sua senha."
281
-
282
- #: includes/class-theme-my-login-ms-signup.php:253
283
- msgid "Sorry, new registrations are not allowed at this time."
284
- msgstr "Desculpe, novos registros não são permitidos no momento."
285
-
286
- #: includes/class-theme-my-login-ms-signup.php:255
287
- msgid "You are logged in already. No need to register again!"
288
- msgstr "Você já está logado. Não é necessário registrar-se novamente!"
289
-
290
- #: includes/class-theme-my-login-ms-signup.php:261
291
- msgid "<p><em>The site you were looking for, <strong>%s</strong> does not exist, but you can create it now!</em></p>"
292
- msgstr "<p><em>O site <strong>%s</strong> que você está procurando não existe, mas você pode criá-lo agora!</em></p>"
293
-
294
- #: includes/class-theme-my-login-ms-signup.php:263
295
- msgid "<p><em>The site you were looking for, <strong>%s</strong>, does not exist.</em></p>"
296
- msgstr "<p><em>O site <strong>%s</strong> que você está procurando não existe.</em></p>"
297
-
298
- #: includes/class-theme-my-login-ms-signup.php:402
299
- msgid "Activation Key Required"
300
- msgstr "É necessária uma chave de ativação"
301
-
302
- #: includes/class-theme-my-login-ms-signup.php:405
303
- msgid "Activation Key:"
304
- msgstr "Chave de ativação:"
305
-
306
- #: includes/class-theme-my-login-ms-signup.php:409
307
- #: includes/class-theme-my-login-ms-signup.php:481
308
- msgid "Activate"
309
- msgstr "Ativar"
310
-
311
- #: includes/class-theme-my-login-ms-signup.php:421
312
- #: includes/class-theme-my-login-ms-signup.php:441
313
- msgid "Your account is now active!"
314
- msgstr "Sua conta está ativa!"
315
-
316
- #: includes/class-theme-my-login-ms-signup.php:425
317
- msgid "Your account has been activated. You may now <a href=\"%1$s\">login</a> to the site using your chosen username of &#8220;%2$s&#8221;. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%4$s\">reset your password</a>."
318
- msgstr "Sua conta foi ativada. Você pode <a href=\"%1$s\">fazer log in</a> Usando o nome de usuário &#8220;%2$s&#8221;. Por favor, verifique sua caixa de entrada em %3$s para obter sua senha e instruções para log in. Se você não recebeu um e-mail, por favor, verifique pastas de lixo e spam. Se você não receber um e-mail na próxima hora, você pode <a href=\"%4$s\">resetar sua senha</a>."
319
-
320
- #: includes/class-theme-my-login-ms-signup.php:427
321
- msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a>."
322
- msgstr "Seu site <a href=\"%1$s\">%2$s</a> está ativo. Você pode fazer log in no seu site com o nome de usuário &#8220;%3$s&#8221;. Por favor, verifique sua caixa de entrada em %4$s para obter sua senha e instruções para log in. Se você não recebeu um e-mail, por favor, verifique pastas de lixo e spam. Se você não receber um e-mail na próxima hora, você pode <a href=\"%5$s\">resetar sua senha</a>."
323
-
324
- #: includes/class-theme-my-login-ms-signup.php:432
325
- msgid "An error occurred during the activation"
326
- msgstr "Ocorreu um erro durante a ativação"
327
-
328
- #: includes/class-theme-my-login-ms-signup.php:444
329
- #: templates/ms-signup-user-form.php:16
330
- msgid "Username:"
331
- msgstr "Nome de usuário:"
332
-
333
- #: includes/class-theme-my-login-ms-signup.php:445
334
- #: modules/custom-passwords/custom-passwords.php:29
335
- #: modules/custom-passwords/custom-passwords.php:56
336
- msgid "Password:"
337
- msgstr "Senha:"
338
-
339
- #: includes/class-theme-my-login-ms-signup.php:449
340
- msgid "Your account is now activated. <a href=\"%1$s\">View your site</a> or <a href=\"%2$s\">Login</a>"
341
- msgstr "Sua conta está ativada. <a href=\"%1$s\">Veja seu site</a> ou <a href=\"%2$s\">Faça login</a>"
342
-
343
- #: includes/class-theme-my-login-ms-signup.php:451
344
- msgid "Your account is now activated. <a href=\"%1$s\">Login</a> or go back to the <a href=\"%2$s\">homepage</a>."
345
- msgstr "Sua conta está ativada. <a href=\"%1$s\">Veja seu site</a> ou <a href=\"%2$s\">Faça login</a>"
346
-
347
- #: includes/class-theme-my-login-template.php:137
348
- msgid "Welcome, %s"
349
- msgstr "Bem vindo, %s"
350
-
351
- #: includes/class-theme-my-login-template.php:151
352
- #: includes/class-theme-my-login.php:540
353
- #: templates/login-form.php:28
354
- msgid "Log In"
355
- msgstr "Login"
356
-
357
- #: includes/class-theme-my-login-template.php:315
358
- #: modules/custom-user-links/custom-user-links.php:82
359
- msgid "Dashboard"
360
- msgstr "Painel de Controle"
361
-
362
- #: includes/class-theme-my-login-template.php:316
363
- #: modules/custom-user-links/custom-user-links.php:83
364
- #: modules/themed-profiles/admin/themed-profiles-admin.php:66
365
- msgid "Profile"
366
- msgstr "Cadastro"
367
-
368
- #: includes/class-theme-my-login-template.php:334
369
- #: modules/custom-redirection/custom-redirection.php:197
370
- msgid "Log out"
371
- msgstr "Sair"
372
-
373
- #: includes/class-theme-my-login-template.php:363
374
- msgid "Register For This Site"
375
- msgstr "Registrar-se neste site"
376
-
377
- #: includes/class-theme-my-login-template.php:366
378
- msgid "Please enter your username or email address. You will receive a link to create a new password via email."
379
- msgstr "Por favor informe seu nome de usuário e endereço. Você receberá um e-mail para criação de nova senha."
380
-
381
- #: includes/class-theme-my-login-template.php:369
382
- msgid "Enter your new password below."
383
- msgstr "Informe sua nova senha abaixo."
384
-
385
- #: includes/class-theme-my-login-widget.php:23
386
- msgid "A login form for your blog."
387
- msgstr "Um formulário de login para o seu blog."
388
-
389
- #: includes/class-theme-my-login-widget.php:88
390
- msgid "Default Action"
391
- msgstr "Ação padrão"
392
-
393
- #: includes/class-theme-my-login-widget.php:95
394
- msgid "Show When Logged In"
395
- msgstr "Mostrar Quando Logado"
396
-
397
- #: includes/class-theme-my-login-widget.php:97
398
- msgid "Show Title"
399
- msgstr "Mostrar Título"
400
-
401
- #: includes/class-theme-my-login-widget.php:99
402
- msgid "Show Login Link"
403
- msgstr "Mostrar Link de Login"
404
-
405
- #: includes/class-theme-my-login-widget.php:101
406
- msgid "Show Register Link"
407
- msgstr "Mostrar Link de Cadastro"
408
-
409
- #: includes/class-theme-my-login-widget.php:103
410
- msgid "Show Lost Password Link"
411
- msgstr "Mostrar Link de Esqueci Minha Senha"
412
-
413
- #: includes/class-theme-my-login-widget.php:105
414
- msgid "Show Gravatar"
415
- msgstr "Mostrar Gravatar"
416
-
417
- #: includes/class-theme-my-login-widget.php:106
418
- msgid "Gravatar Size"
419
- msgstr "Tamanho do Gravatar"
420
-
421
- #: includes/class-theme-my-login-widget.php:108
422
- msgid "Allow Registration"
423
- msgstr "Permitir Cadastros"
424
-
425
- #: includes/class-theme-my-login-widget.php:110
426
- msgid "Allow Password Recovery"
427
- msgstr "Permitir Recuperação de Senha"
428
-
429
- #: includes/class-theme-my-login.php:245
430
- msgid "Sorry, that key does not appear to be valid."
431
- msgstr "Desculpe, essa chave não parece ser válida."
432
-
433
- #: includes/class-theme-my-login.php:261
434
- msgid "The passwords do not match."
435
- msgstr "As senhas não batem"
436
-
437
- #: includes/class-theme-my-login.php:367
438
- msgid "<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href=\"http://www.google.com/cookies.html\">enable cookies</a> to use WordPress."
439
- msgstr "<strong>ERRO</strong> Cookies estão sendo bloqueados ou não são suportados por seu navegador. Você deve <a href=\"http://www.google.com/cookies.html\">ativar cookies</a> para usar o WordPress."
440
-
441
- #: includes/class-theme-my-login.php:371
442
- msgid "You are now logged out."
443
- msgstr "Você está agora deslogado(a)."
444
-
445
- #: includes/class-theme-my-login.php:373
446
- msgid "User registration is currently not allowed."
447
- msgstr "Cadastro de novos usuário não permitido."
448
-
449
- #: includes/class-theme-my-login.php:375
450
- msgid "Check your e-mail for the confirmation link."
451
- msgstr "O link de confimação de cadastro foi enviado para o seu e-mail."
452
-
453
- #: includes/class-theme-my-login.php:377
454
- msgid "Your password has been reset."
455
- msgstr "Sua senha foi resetada."
456
-
457
- #: includes/class-theme-my-login.php:379
458
- msgid "Registration complete. Please check your e-mail."
459
- msgstr "Cadastro completo. Por favor cheque seu e-mail."
460
-
461
- #: includes/class-theme-my-login.php:381
462
- msgid "Your session has expired. Please log-in again."
463
- msgstr "Sua sessão expirou. Por favor, faça log in novamente."
464
-
465
- #: includes/class-theme-my-login.php:383
466
- msgid "Please log in to continue."
467
- msgstr "Por favor, faça log in para continuar."
468
-
469
- #: includes/class-theme-my-login.php:540
470
- msgid "Log Out"
471
- msgstr "Sair"
472
-
473
- #: includes/class-theme-my-login.php:925
474
- msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
475
- msgstr "<strong>ERRO</strong>: Entre com um usuário ou e-mail."
476
-
477
- #: includes/class-theme-my-login.php:929
478
- msgid "<strong>ERROR</strong>: There is no user registered with that email address."
479
- msgstr "<strong>ERRO</strong>: Endereço de e-mail não encontrado."
480
-
481
- #: includes/class-theme-my-login.php:941
482
- msgid "<strong>ERROR</strong>: Invalid username or e-mail."
483
- msgstr "<strong>ERRO</strong>: Usuário ou e-mail inválido."
484
-
485
- #: includes/class-theme-my-login.php:955
486
- msgid "Password reset is not allowed for this user"
487
- msgstr "Redefinição de senha não permitida para este usuário."
488
-
489
- #: includes/class-theme-my-login.php:967
490
- msgid "Someone requested that the password be reset for the following account:"
491
- msgstr "Alguém pediu que a senha fosse mudada para a seguinte conta:"
492
-
493
- #: includes/class-theme-my-login.php:969
494
- #: modules/custom-email/custom-email.php:692
495
- #: modules/custom-email/custom-email.php:709
496
- #: modules/user-moderation/admin/user-moderation-admin.php:164
497
- #: modules/user-moderation/user-moderation.php:365
498
- msgid "Username: %s"
499
- msgstr "Usuário: %s"
500
-
501
- #: includes/class-theme-my-login.php:970
502
- msgid "If this was a mistake, just ignore this email and nothing will happen."
503
- msgstr "Se isto foi um engano, simplesmente ignore este e-mail e nada acontecerá."
504
-
505
- #: includes/class-theme-my-login.php:971
506
- msgid "To reset your password, visit the following address:"
507
- msgstr "Para resetar sua senha, visite o seguinte endereço:"
508
-
509
- #: includes/class-theme-my-login.php:982
510
- msgid "[%s] Password Reset"
511
- msgstr "[%s] Redefinição de Senha"
512
-
513
- #: includes/class-theme-my-login.php:988
514
- #: modules/user-moderation/admin/user-moderation-admin.php:53
515
- #: modules/user-moderation/admin/user-moderation-admin.php:174
516
- #: modules/user-moderation/admin/user-moderation-admin.php:210
517
- msgid "The e-mail could not be sent."
518
- msgstr "O e-mail não pôde ser enviado."
519
-
520
- #: includes/class-theme-my-login.php:988
521
- #: modules/user-moderation/admin/user-moderation-admin.php:53
522
- #: modules/user-moderation/admin/user-moderation-admin.php:174
523
- #: modules/user-moderation/admin/user-moderation-admin.php:210
524
- msgid "Possible reason: your host may have disabled the mail() function..."
525
- msgstr "Possível razão: seu servidor pode ter desabilitado a função mail()..."
526
-
527
- #: includes/class-theme-my-login.php:1011
528
- #: includes/class-theme-my-login.php:1014
529
- #: includes/class-theme-my-login.php:1019
530
- #: modules/user-moderation/user-moderation.php:238
531
- #: modules/user-moderation/user-moderation.php:241
532
- #: modules/user-moderation/user-moderation.php:246
533
- msgid "Invalid key"
534
- msgstr "Chave inválida"
535
-
536
- #: includes/class-theme-my-login.php:1059
537
- msgid "<strong>ERROR</strong>: Please enter a username."
538
- msgstr "<strong>ERRO</strong>: Preencha seu e-mail."
539
-
540
- #: includes/class-theme-my-login.php:1061
541
- msgid "<strong>ERROR</strong>: This username is invalid because it uses illegal characters. Please enter a valid username."
542
- msgstr "<strong>ERRO</strong>: Este nome de usuário é inválido porque usa caracteres ilegais. Por favor, informe um nome de usuário válido."
543
-
544
- #: includes/class-theme-my-login.php:1064
545
- msgid "<strong>ERROR</strong>: This username is already registered, please choose another one."
546
- msgstr "<strong>ERRO</strong>: Este e-mail já está cadastrado, por favor escolha outro."
547
-
548
- #: includes/class-theme-my-login.php:1069
549
- msgid "<strong>ERROR</strong>: Please type your e-mail address."
550
- msgstr "<strong>ERRO</strong>: Digite seu endereço de e-mail."
551
-
552
- #: includes/class-theme-my-login.php:1071
553
- msgid "<strong>ERROR</strong>: The email address isn&#8217;t correct."
554
- msgstr "<strong>ERRO</strong>: O endereço de e-mail não parece correto."
555
-
556
- #: includes/class-theme-my-login.php:1074
557
- msgid "<strong>ERROR</strong>: This email is already registered, please choose another one."
558
- msgstr "<strong>ERRO</strong>: Email já cadastrado."
559
-
560
- #: includes/class-theme-my-login.php:1087
561
- msgid "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href=\"mailto:%s\">webmaster</a> !"
562
- msgstr "<strong>ERRO</strong>: Falha no cadastro. Por favor, <a href=\"mailto:%s\">avise os nerds</a> !"
563
-
564
- #: modules/custom-email/admin/custom-email-admin.php:46
565
- #: modules/custom-email/admin/custom-email-admin.php:265
566
- msgid "User Notification"
567
- msgstr "Notificação de usuãrio"
568
-
569
- #: modules/custom-email/admin/custom-email-admin.php:49
570
- msgid "This e-mail will be sent to a new user upon registration."
571
- msgstr "Este e-mail será enviado ao usuário ao se registrar."
572
-
573
- #: modules/custom-email/admin/custom-email-admin.php:50
574
- #: modules/custom-email/admin/custom-email-admin.php:269
575
- msgid "Please be sure to include the variable %user_pass% if using default passwords or else the user will not know their password!"
576
- msgstr "Por favor, tenha certeza de incluir a variável %user_pass% ao usar senhas padrão, senão o usuário não saberá sua senha!"
577
-
578
- #: modules/custom-email/admin/custom-email-admin.php:51
579
- #: modules/custom-email/admin/custom-email-admin.php:81
580
- #: modules/custom-email/admin/custom-email-admin.php:130
581
- #: modules/custom-email/admin/custom-email-admin.php:175
582
- #: modules/custom-email/admin/custom-email-admin.php:224
583
- #: modules/custom-email/admin/custom-email-admin.php:270
584
- #: modules/custom-email/admin/custom-email-admin.php:300
585
- #: modules/custom-email/admin/custom-email-admin.php:348
586
- msgid "If any field is left empty, the default will be used instead."
587
- msgstr "Se qualquer um dos campos for deixado em branco, o padrão será usado."
588
-
589
- #: modules/custom-email/admin/custom-email-admin.php:54
590
- #: modules/custom-email/admin/custom-email-admin.php:87
591
- #: modules/custom-email/admin/custom-email-admin.php:133
592
- #: modules/custom-email/admin/custom-email-admin.php:181
593
- #: modules/custom-email/admin/custom-email-admin.php:227
594
- #: modules/custom-email/admin/custom-email-admin.php:273
595
- #: modules/custom-email/admin/custom-email-admin.php:306
596
- #: modules/custom-email/admin/custom-email-admin.php:351
597
- msgid "From Name"
598
- msgstr "Nome do Remetente"
599
-
600
- #: modules/custom-email/admin/custom-email-admin.php:57
601
- #: modules/custom-email/admin/custom-email-admin.php:90
602
- #: modules/custom-email/admin/custom-email-admin.php:136
603
- #: modules/custom-email/admin/custom-email-admin.php:184
604
- #: modules/custom-email/admin/custom-email-admin.php:230
605
- #: modules/custom-email/admin/custom-email-admin.php:276
606
- #: modules/custom-email/admin/custom-email-admin.php:309
607
- #: modules/custom-email/admin/custom-email-admin.php:354
608
- msgid "From E-mail"
609
- msgstr "E-mail do Remetente"
610
-
611
- #: modules/custom-email/admin/custom-email-admin.php:60
612
- #: modules/custom-email/admin/custom-email-admin.php:93
613
- #: modules/custom-email/admin/custom-email-admin.php:139
614
- #: modules/custom-email/admin/custom-email-admin.php:187
615
- #: modules/custom-email/admin/custom-email-admin.php:233
616
- #: modules/custom-email/admin/custom-email-admin.php:279
617
- #: modules/custom-email/admin/custom-email-admin.php:312
618
- #: modules/custom-email/admin/custom-email-admin.php:357
619
- msgid "E-mail Format"
620
- msgstr "Formato do E-mail"
621
-
622
- #: modules/custom-email/admin/custom-email-admin.php:62
623
- #: modules/custom-email/admin/custom-email-admin.php:95
624
- #: modules/custom-email/admin/custom-email-admin.php:141
625
- #: modules/custom-email/admin/custom-email-admin.php:189
626
- #: modules/custom-email/admin/custom-email-admin.php:235
627
- #: modules/custom-email/admin/custom-email-admin.php:281
628
- #: modules/custom-email/admin/custom-email-admin.php:314
629
- #: modules/custom-email/admin/custom-email-admin.php:359
630
- msgid "Plain Text"
631
- msgstr "Texto simples"
632
-
633
- #: modules/custom-email/admin/custom-email-admin.php:63
634
- #: modules/custom-email/admin/custom-email-admin.php:96
635
- #: modules/custom-email/admin/custom-email-admin.php:142
636
- #: modules/custom-email/admin/custom-email-admin.php:190
637
- #: modules/custom-email/admin/custom-email-admin.php:236
638
- #: modules/custom-email/admin/custom-email-admin.php:282
639
- #: modules/custom-email/admin/custom-email-admin.php:315
640
- #: modules/custom-email/admin/custom-email-admin.php:360
641
- msgid "HTML"
642
- msgstr "HTML"
643
-
644
- #: modules/custom-email/admin/custom-email-admin.php:66
645
- #: modules/custom-email/admin/custom-email-admin.php:99
646
- #: modules/custom-email/admin/custom-email-admin.php:145
647
- #: modules/custom-email/admin/custom-email-admin.php:193
648
- #: modules/custom-email/admin/custom-email-admin.php:239
649
- #: modules/custom-email/admin/custom-email-admin.php:285
650
- #: modules/custom-email/admin/custom-email-admin.php:318
651
- #: modules/custom-email/admin/custom-email-admin.php:363
652
- msgid "Subject"
653
- msgstr "Assunto"
654
-
655
- #: modules/custom-email/admin/custom-email-admin.php:69
656
- #: modules/custom-email/admin/custom-email-admin.php:102
657
- #: modules/custom-email/admin/custom-email-admin.php:148
658
- #: modules/custom-email/admin/custom-email-admin.php:196
659
- #: modules/custom-email/admin/custom-email-admin.php:242
660
- #: modules/custom-email/admin/custom-email-admin.php:288
661
- #: modules/custom-email/admin/custom-email-admin.php:321
662
- #: modules/custom-email/admin/custom-email-admin.php:366
663
- msgid "Message"
664
- msgstr "Mensagem"
665
-
666
- #: modules/custom-email/admin/custom-email-admin.php:72
667
- #: modules/custom-email/admin/custom-email-admin.php:105
668
- #: modules/custom-email/admin/custom-email-admin.php:151
669
- #: modules/custom-email/admin/custom-email-admin.php:199
670
- #: modules/custom-email/admin/custom-email-admin.php:245
671
- #: modules/custom-email/admin/custom-email-admin.php:291
672
- #: modules/custom-email/admin/custom-email-admin.php:324
673
- #: modules/custom-email/admin/custom-email-admin.php:369
674
- msgid "Available Variables"
675
- msgstr "Variáveis Disponíveis"
676
-
677
- #: modules/custom-email/admin/custom-email-admin.php:77
678
- #: modules/custom-email/admin/custom-email-admin.php:171
679
- #: modules/custom-email/admin/custom-email-admin.php:296
680
- msgid "Admin Notification"
681
- msgstr "Notificação do administrador"
682
-
683
- #: modules/custom-email/admin/custom-email-admin.php:80
684
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon new user registration."
685
- msgstr "Este e-mail será enviado para o endereço de e-mail ou endereços (múltiplos endereços podem ser usados separando-os por vírgulas) especificados abaixo, após registro de um novo usuário."
686
-
687
- #: modules/custom-email/admin/custom-email-admin.php:84
688
- #: modules/custom-email/admin/custom-email-admin.php:178
689
- #: modules/custom-email/admin/custom-email-admin.php:303
690
- msgid "To"
691
- msgstr "Para"
692
-
693
- #: modules/custom-email/admin/custom-email-admin.php:128
694
- msgid "This e-mail will be sent to a user when they attempt to recover their password."
695
- msgstr "Este e-mail será enviado para o usuário quando ele tentar recuperar sua senha."
696
-
697
- #: modules/custom-email/admin/custom-email-admin.php:129
698
- msgid "Please be sure to include the variable %reseturl% or else the user will not be able to recover their password!"
699
- msgstr "Por favor, inclua a variável %reseturl%, senão seus usuários não serão capazes de recuperar suas senhas!"
700
-
701
- #: modules/custom-email/admin/custom-email-admin.php:174
702
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon user password change."
703
- msgstr "Este e-mail será enviado para o endereço de e-mail ou endereços (múltiplos endereços podem ser usados separando-os por vírgulas) especificados abaixo, quando o usuário trocar sua senha."
704
-
705
- #: modules/custom-email/admin/custom-email-admin.php:201
706
- #: modules/custom-email/admin/custom-email-admin.php:326
707
- msgid "Disable Admin Notification"
708
- msgstr "Desabilitar Notificações ao Administrador"
709
-
710
- #: modules/custom-email/admin/custom-email-admin.php:222
711
- msgid "This e-mail will be sent to a new user upon registration when \"E-mail Confirmation\" is checked for \"User Moderation\"."
712
- msgstr "Este e-mail será enviado para um novo usuário quando \"E-mail de confirmação\" for marcado em \"Moderação de Usuários\"."
713
-
714
- #: modules/custom-email/admin/custom-email-admin.php:223
715
- msgid "Please be sure to include the variable %activateurl% or else the user will not be able to activate their account!"
716
- msgstr "Por favor, tenha certeza de incluir a variável %activeurl%, senão seus usuários não serão capazes de ativar suas contas!"
717
-
718
- #: modules/custom-email/admin/custom-email-admin.php:268
719
- msgid "This e-mail will be sent to a new user upon admin approval when \"Admin Approval\" is checked for \"User Moderation\"."
720
- msgstr "Este e-mail será enviado a um novo usuário quando um administrador o aprovar se \"Aprovação de administrador\" estiver marcado em \"Moderação de Usuários\""
721
-
722
- #: modules/custom-email/admin/custom-email-admin.php:299
723
- msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below upon user registration when \"Admin Approval\" is checked for \"User Moderation\"."
724
- msgstr "Este e-mail será enviado para o endereço de e-mail ou endereços (múltiplos endereços podem ser usados separando-os por vírgulas) especificados abaixo, após registro de um novo usuário se \"Aprovação de administrador\" estiver marcado em \"Moderação de Usuários\"."
725
-
726
- #: modules/custom-email/admin/custom-email-admin.php:347
727
- msgid "This e-mail will be sent to a user who is deleted/denied when \"Admin Approval\" is checked for \"User Moderation\" and the user's role is \"Pending\"."
728
- msgstr "Este e-mail será enviado a um usuário apagado/negado quando \"Aprovação de administrador\" estiver marcado em \"Moderação de Usuário\" e o papel do usuário for \"Pendente\"."
729
-
730
- #: modules/custom-email/admin/custom-email-admin.php:390
731
- #: templates/profile-form.php:143
732
- #: templates/register-form.php:16
733
- msgid "E-mail"
734
- msgstr "E-mail"
735
-
736
- #: modules/custom-email/admin/custom-email-admin.php:391
737
- msgid "New User"
738
- msgstr "Novo Usuário"
739
-
740
- #: modules/custom-email/admin/custom-email-admin.php:392
741
- msgid "Retrieve Password"
742
- msgstr "Recuperar Senha"
743
-
744
- #: modules/custom-email/admin/custom-email-admin.php:393
745
- #: templates/resetpass-form.php:26
746
- msgid "Reset Password"
747
- msgstr "Redefinir Senha"
748
-
749
- #: modules/custom-email/admin/custom-email-admin.php:395
750
- msgid "User Activation"
751
- msgstr "Ativação do Usuário"
752
-
753
- #: modules/custom-email/admin/custom-email-admin.php:396
754
- msgid "User Approval"
755
- msgstr "Aprovação do Usuário"
756
-
757
- #: modules/custom-email/admin/custom-email-admin.php:397
758
- msgid "User Denial"
759
- msgstr "Negação do Usuário"
760
-
761
- #: modules/custom-email/custom-email.php:691
762
- msgid "New user registration on your site %s:"
763
- msgstr "Novo registro de usuário em seu site %s:"
764
-
765
- #: modules/custom-email/custom-email.php:693
766
- #: modules/user-moderation/user-moderation.php:366
767
- msgid "E-mail: %s"
768
- msgstr "E-mail: %s"
769
-
770
- #: modules/custom-email/custom-email.php:695
771
- msgid "[%s] New User Registration"
772
- msgstr "[%s] Novo Cadastro"
773
-
774
- #: modules/custom-email/custom-email.php:710
775
- #: modules/user-moderation/admin/user-moderation-admin.php:165
776
- msgid "Password: %s"
777
- msgstr "Senha: %s"
778
-
779
- #: modules/custom-email/custom-email.php:713
780
- msgid "[%s] Your username and password"
781
- msgstr "[%s] Seu usuário e senha"
782
-
783
- #: modules/custom-email/custom-email.php:745
784
- msgid "[%s] Password Lost/Changed"
785
- msgstr "[%s] Senha Perdida/Alterada"
786
-
787
- #: modules/custom-email/custom-email.php:746
788
- msgid "Password Lost and Changed for user: %s"
789
- msgstr "Senha Perdida e Restaurada pelo usuário: %s"
790
-
791
- #: modules/custom-passwords/custom-passwords.php:31
792
- #: modules/custom-passwords/custom-passwords.php:63
793
- msgid "Confirm Password:"
794
- msgstr "Confirme sua Senha:"
795
-
796
- #: modules/custom-passwords/custom-passwords.php:61
797
- msgid "(Must be at least 6 characters.)"
798
- msgstr "(Deve ter pelo menos 6 caracteres.)"
799
-
800
- #: modules/custom-passwords/custom-passwords.php:65
801
- msgid "Confirm that you've typed your password correctly."
802
- msgstr "Confirme que você digitou sua senha corretamente."
803
-
804
- #: modules/custom-passwords/custom-passwords.php:103
805
- msgid "<strong>ERROR</strong>: Please enter a password."
806
- msgstr "<strong>ERRO</strong>: Digite uma senha."
807
-
808
- #: modules/custom-passwords/custom-passwords.php:106
809
- msgid "<strong>ERROR</strong>: Your passwords do not match."
810
- msgstr "<strong>ERRO</strong>: As senhas digitadas não são idênticas."
811
-
812
- #: modules/custom-passwords/custom-passwords.php:109
813
- msgid "<strong>ERROR</strong>: Your password must be at least 6 characters in length."
814
- msgstr "<strong>ERRO</strong>: Sua senha deve ter no mínimo 6 caracteres."
815
-
816
- #: modules/custom-passwords/custom-passwords.php:230
817
- msgid "Registration complete. You may now log in."
818
- msgstr "Registro completo. Você já pode se logar."
819
-
820
- #: modules/custom-redirection/custom-redirection.php:156
821
- msgid "Redirection"
822
- msgstr "Redirecionamento"
823
-
824
- #: modules/custom-redirection/custom-redirection.php:185
825
- msgid "Log in"
826
- msgstr "Login"
827
-
828
- #: modules/custom-redirection/custom-redirection.php:187
829
- #: modules/custom-redirection/custom-redirection.php:199
830
- msgid "Default"
831
- msgstr "Padrão"
832
-
833
- #: modules/custom-redirection/custom-redirection.php:188
834
- msgid "Check this option to send the user to their WordPress Dashboard/Profile."
835
- msgstr "Marque esta opção para enfiar os usuários para seu Dashboard/Perfil do WordPress."
836
-
837
- #: modules/custom-redirection/custom-redirection.php:189
838
- #: modules/custom-redirection/custom-redirection.php:201
839
- msgid "Referer"
840
- msgstr "Referenciador"
841
-
842
- #: modules/custom-redirection/custom-redirection.php:190
843
- msgid "Check this option to send the user back to the page they were visiting before logging in."
844
- msgstr "Marque esta opção para enviar o usuário de volta para a página onde ele estava antes de fazer log in."
845
-
846
- #: modules/custom-redirection/custom-redirection.php:193
847
- #: modules/custom-redirection/custom-redirection.php:205
848
- msgid "Check this option to send the user to a custom location, specified by the textbox above."
849
- msgstr "Marque esta opção para enviar o usuário para um local customizado, especificado pela caixa de texto acima."
850
-
851
- #: modules/custom-redirection/custom-redirection.php:200
852
- msgid "Check this option to send the user to the log in page, displaying a message that they have successfully logged out."
853
- msgstr "Marque esta opção para enviar o usuário para a página de log in, mostrando uma mensagem dizendo que eles fizeram log out."
854
-
855
- #: modules/custom-redirection/custom-redirection.php:202
856
- msgid "Check this option to send the user back to the page they were visiting before logging out. (Note: If the previous page being visited was an admin page, this can have unexpected results.)"
857
- msgstr "Marque esta opção para enviar o usuário de volta para a página que eles estavam visitando antes de fazer log out. (Nota: Se a última página visitada era uma página de administração, isto pode ter resultados inesperados.)"
858
-
859
- #: modules/custom-user-links/admin/custom-user-links-admin.php:140
860
- msgid "User Links"
861
- msgstr "Links do Usuário"
862
-
863
- #: modules/custom-user-links/admin/custom-user-links-admin.php:232
864
- #: modules/custom-user-links/admin/custom-user-links-admin.php:255
865
- #: modules/custom-user-links/admin/custom-user-links-admin.php:300
866
- msgid "Title"
867
- msgstr "Título"
868
-
869
- #: modules/custom-user-links/admin/custom-user-links-admin.php:233
870
- #: modules/custom-user-links/admin/custom-user-links-admin.php:256
871
- #: modules/custom-user-links/admin/custom-user-links-admin.php:304
872
- msgid "URL"
873
- msgstr "URL"
874
-
875
- #: modules/custom-user-links/admin/custom-user-links-admin.php:250
876
- msgid "Add New link:"
877
- msgstr "Adicionar Novo Link:"
878
-
879
- #: modules/custom-user-links/admin/custom-user-links-admin.php:266
880
- msgid "Add link"
881
- msgstr "Adicionar link"
882
-
883
- #: modules/custom-user-links/admin/custom-user-links-admin.php:306
884
- msgid "Delete"
885
- msgstr "Deletar"
886
-
887
- #: modules/custom-user-links/admin/custom-user-links-admin.php:307
888
- msgid "Update"
889
- msgstr "Atualizar"
890
-
891
- #: modules/security/admin/security-admin.php:32
892
- #: modules/security/admin/security-admin.php:35
893
- #: modules/user-moderation/admin/user-moderation-admin.php:34
894
- #: modules/user-moderation/admin/user-moderation-admin.php:44
895
- msgid "You can&#8217;t edit that user."
896
- msgstr "Você não pode editar este usuário."
897
-
898
- #: modules/security/admin/security-admin.php:67
899
- msgid "User locked."
900
- msgstr "Usuário bloqueado."
901
-
902
- #: modules/security/admin/security-admin.php:69
903
- msgid "User unlocked."
904
- msgstr "Usuário desbloqueado."
905
-
906
- #: modules/security/admin/security-admin.php:92
907
- msgid "Unlock"
908
- msgstr "Desbloquear"
909
-
910
- #: modules/security/admin/security-admin.php:94
911
- msgid "Lock"
912
- msgstr "Bloquear"
913
-
914
- #: modules/security/admin/security-admin.php:113
915
- msgid "Security"
916
- msgstr "Segurança"
917
-
918
- #: modules/security/admin/security-admin.php:132
919
- msgid "Private Site"
920
- msgstr "Site Privado"
921
-
922
- #: modules/security/admin/security-admin.php:135
923
- msgid "Require users to be logged in to view site"
924
- msgstr "Obrigar que os usuários estejam logados para ver este site"
925
-
926
- #: modules/security/admin/security-admin.php:139
927
- msgid "Login Attempts"
928
- msgstr "Tentativas de log in"
929
-
930
- #: modules/security/admin/security-admin.php:144
931
- msgid "minute(s)"
932
- msgstr "minuto(s)"
933
-
934
- #: modules/security/admin/security-admin.php:145
935
- msgid "hour(s)"
936
- msgstr "hora(s)"
937
-
938
- #: modules/security/admin/security-admin.php:146
939
- msgid "day(s)"
940
- msgstr "dia(s)"
941
-
942
- #: modules/security/admin/security-admin.php:169
943
- msgid "After %1$s failed login attempts within %2$s %3$s, lockout the account for %4$s %5$s."
944
- msgstr "Depois de %1$s tentativas falhas de login dentro de %2$s %3$s, bloquear a conta por %4$s %5$s."
945
-
946
- #: modules/security/security.php:64
947
- #: modules/security/security.php:90
948
- msgid "<strong>ERROR</strong>: This account has been locked because of too many failed login attempts. You may try again in %s."
949
- msgstr "<strong>ERRO</strong>: Esta conta foi bloqueada porque foram feito muitas tentativas falhas de log in. Você pode tentar novamente em %s."
950
-
951
- #: modules/security/security.php:66
952
- msgid "<strong>ERROR</strong>: This account has been locked."
953
- msgstr "<strong>ERRO</strong>: Esta conta foi bloqueada."
954
-
955
- #: modules/security/security.php:126
956
- msgid "Failed Login Attempts"
957
- msgstr "Tentativas falhas de login"
958
-
959
- #: modules/security/security.php:130
960
- msgid "IP Address"
961
- msgstr "Endereço IP"
962
-
963
- #: modules/security/security.php:131
964
- msgid "Date"
965
- msgstr "Data"
966
-
967
- #: modules/security/security.php:134
968
- msgid "Y/m/d g:i:s A"
969
- msgstr "d/m/Y G:i:s"
970
-
971
- #: modules/security/security.php:139
972
- msgid "%s ago"
973
- msgstr "Há %s"
974
-
975
- #: modules/security/security.php:141
976
- msgid "Y/m/d"
977
- msgstr "d/m/Y"
978
-
979
- #: modules/themed-profiles/admin/themed-profiles-admin.php:23
980
- #: modules/themed-profiles/admin/themed-profiles-admin.php:42
981
- msgid "Themed Profiles"
982
- msgstr "Perfis com temas"
983
-
984
- #: modules/themed-profiles/admin/themed-profiles-admin.php:51
985
- msgid "Restrict Admin Access"
986
- msgstr "Restringir acesso de Admin"
987
-
988
- #: modules/themed-profiles/themed-profiles.php:123
989
- #: templates/profile-form.php:182
990
- #: templates/resetpass-form.php:19
991
- msgid "Strength indicator"
992
- msgstr "Indicador de Segurança"
993
-
994
- #: modules/themed-profiles/themed-profiles.php:124
995
- msgid "Very weak"
996
- msgstr "Muito fraca"
997
-
998
- #: modules/themed-profiles/themed-profiles.php:125
999
- msgid "Weak"
1000
- msgstr "Fraca"
1001
-
1002
- #. translators: password strength
1003
- #: modules/themed-profiles/themed-profiles.php:127
1004
- msgctxt "password strength"
1005
- msgid "Medium"
1006
- msgstr "Média"
1007
-
1008
- #: modules/themed-profiles/themed-profiles.php:128
1009
- msgid "Strong"
1010
- msgstr "Forte"
1011
-
1012
- #: modules/themed-profiles/themed-profiles.php:138
1013
- msgid "You do not have permission to edit this user."
1014
- msgstr "Você não tem permissão para editar este usuário. Safadeenho..."
1015
-
1016
- #: modules/themed-profiles/themed-profiles.php:154
1017
- msgid "Profile updated."
1018
- msgstr "Perfil atualizado."
1019
-
1020
- #: modules/themed-profiles/themed-profiles.php:243
1021
- msgid "Your Profile"
1022
- msgstr "Seu Cadastro"
1023
-
1024
- #: modules/user-moderation/admin/user-moderation-admin.php:75
1025
- msgid "User approved."
1026
- msgstr "Usuário aprovado."
1027
-
1028
- #: modules/user-moderation/admin/user-moderation-admin.php:77
1029
- msgid "Activation sent."
1030
- msgstr "Ativação enviada."
1031
-
1032
- #: modules/user-moderation/admin/user-moderation-admin.php:105
1033
- msgid "Resend Activation"
1034
- msgstr "Re-enviar ativação"
1035
-
1036
- #: modules/user-moderation/admin/user-moderation-admin.php:110
1037
- msgid "Approve"
1038
- msgstr "Aprovar"
1039
-
1040
- #: modules/user-moderation/admin/user-moderation-admin.php:163
1041
- msgid "You have been approved access to %s"
1042
- msgstr "Você foi autorizado a acessar %s"
1043
-
1044
- #: modules/user-moderation/admin/user-moderation-admin.php:168
1045
- msgid "[%s] Registration Approved"
1046
- msgstr "[%s] Registro Aprovado"
1047
-
1048
- #: modules/user-moderation/admin/user-moderation-admin.php:203
1049
- msgid "You have been denied access to %s"
1050
- msgstr "Acesso negado à %s"
1051
-
1052
- #: modules/user-moderation/admin/user-moderation-admin.php:204
1053
- msgid "[%s] Registration Denied"
1054
- msgstr "[%s] Registro Negado"
1055
-
1056
- #: modules/user-moderation/admin/user-moderation-admin.php:226
1057
- msgid "Moderation"
1058
- msgstr "Moderação"
1059
-
1060
- #: modules/user-moderation/admin/user-moderation-admin.php:242
1061
- msgid "User Moderation"
1062
- msgstr "Moderação do Usuário"
1063
-
1064
- #: modules/user-moderation/admin/user-moderation-admin.php:245
1065
- msgid "None"
1066
- msgstr "Nenhum"
1067
-
1068
- #: modules/user-moderation/admin/user-moderation-admin.php:246
1069
- msgid "Check this option to require no moderation."
1070
- msgstr "Marque esta opção para dispensar moderação."
1071
-
1072
- #: modules/user-moderation/admin/user-moderation-admin.php:248
1073
- msgid "E-mail Confirmation"
1074
- msgstr "E-mail de Confirmação"
1075
-
1076
- #: modules/user-moderation/admin/user-moderation-admin.php:249
1077
- msgid "Check this option to require new users to confirm their e-mail address before they may log in."
1078
- msgstr "Cheque esta opção para obrigar que novos usuários confirmem seu endereço de e-mail antes de fazer log in."
1079
-
1080
- #: modules/user-moderation/admin/user-moderation-admin.php:251
1081
- msgid "Admin Approval"
1082
- msgstr "Aprovação do Administrador"
1083
-
1084
- #: modules/user-moderation/admin/user-moderation-admin.php:252
1085
- msgid "Check this option to require new users to be approved by an administrator before they may log in."
1086
- msgstr "Marque esta opção para obrigar que novos usuários sejam aprovados por um administrador antes de permitir seu log in."
1087
-
1088
- #: modules/user-moderation/admin/user-moderation-admin.php:269
1089
- msgid "User Moderation is not currently compatible with multisite."
1090
- msgstr "Moderação de usuários no momento não é compatível com multisite."
1091
-
1092
- #: modules/user-moderation/user-moderation.php:163
1093
- msgid "<strong>ERROR</strong>: You have not yet confirmed your e-mail address. <a href=\"%s\">Resend activation</a>?"
1094
- msgstr "<strong>ERRO</strong>: Você ainda não confirmou seu endereço de e-mail. <a href=\"%s\">Re-enviar ativação</a>?"
1095
-
1096
- #: modules/user-moderation/user-moderation.php:166
1097
- msgid "<strong>ERROR</strong>: Your registration has not yet been approved."
1098
- msgstr "<strong>ERRO</strong>: Seu cadastro ainda não foi aprovado."
1099
-
1100
- #: modules/user-moderation/user-moderation.php:328
1101
- msgid "[%s] Activate Your Account"
1102
- msgstr "[%s] Ative Sua Conta"
1103
-
1104
- #: modules/user-moderation/user-moderation.php:329
1105
- msgid "Thanks for registering at %s! To complete the activation of your account please click the following link: "
1106
- msgstr "Obrigado por se cadastrar no %s! Para completar a ativação da sua conta, por favor clique no seguinte link:"
1107
-
1108
- #: modules/user-moderation/user-moderation.php:362
1109
- msgid "[%s] New User Awaiting Approval"
1110
- msgstr "[%s] Novo Usuário Pendente de Aprovação"
1111
-
1112
- #: modules/user-moderation/user-moderation.php:364
1113
- msgid "New user requires approval on your blog %s:"
1114
- msgstr "Novos usuários dependem de aprovação no seu site %s:"
1115
-
1116
- #: modules/user-moderation/user-moderation.php:367
1117
- msgid "To approve or deny this user:"
1118
- msgstr "Aprovar ou negar este usuário:"
1119
-
1120
- #: modules/user-moderation/user-moderation.php:388
1121
- msgid "Your registration was successful but you must now confirm your email address before you can log in. Please check your email and click on the link provided."
1122
- msgstr "Cadastro efetuado com sucesso, mas você precisa confirmar seu endereço de e-mail. Por favor, cheque sua caixa de entrada e a caixa de spam do seu e-mail."
1123
-
1124
- #: modules/user-moderation/user-moderation.php:390
1125
- msgid "Your registration was successful but you must now be approved by an administrator before you can log in. You will be notified by e-mail once your account has been reviewed."
1126
- msgstr "Você foi cadastrado com sucesso, mas seu cadastro precisa ser aprovado por um administrador antes de poder se logar. Você será avisado por e-mail quando sua conta tiver sido avaliada."
1127
-
1128
- #: modules/user-moderation/user-moderation.php:393
1129
- msgid "Your account has been activated. You may now log in."
1130
- msgstr "Sua conta foi ativada. Uma senha temporária foi enviada para o seu e-mail."
1131
-
1132
- #: modules/user-moderation/user-moderation.php:395
1133
- msgid "Your account has been activated. Please check your e-mail for your password."
1134
- msgstr "Sua conta foi ativada. Uma senha foi enviada para o seu e-mail."
1135
-
1136
- #: modules/user-moderation/user-moderation.php:397
1137
- msgid "<strong>ERROR</strong>: Sorry, that key does not appear to be valid."
1138
- msgstr "<strong>ERRO</strong>: Desculpe, essa chave não parece ser válida."
1139
-
1140
- #: modules/user-moderation/user-moderation.php:400
1141
- msgid "<strong>ERROR</strong>: Sorry, the activation e-mail could not be sent."
1142
- msgstr "<strong>ERRO</strong>: Desculpe, um e-mail de ativação não pode ser enviado."
1143
-
1144
- #: modules/user-moderation/user-moderation.php:402
1145
- msgid "The activation e-mail has been sent to the e-mail address with which you registered. Please check your email and click on the link provided."
1146
- msgstr "Um e-mail de ativação foi enviado para o e-mail que você informou durante o registro. Por favor, cheque seu e-mail e clique no link nele contido."
1147
-
1148
- #: templates/login-form.php:12
1149
- #: templates/profile-form.php:91
1150
- #: templates/register-form.php:12
1151
- msgid "Username"
1152
- msgstr "Usuário"
1153
-
1154
- #: templates/login-form.php:16
1155
- msgid "Password"
1156
- msgstr "Senha"
1157
-
1158
- #: templates/login-form.php:25
1159
- msgid "Remember Me"
1160
- msgstr "Lembrar-me"
1161
-
1162
- #: templates/lostpassword-form.php:12
1163
- msgid "Username or E-mail:"
1164
- msgstr "Usuário ou E-mail:"
1165
-
1166
- #: templates/lostpassword-form.php:20
1167
- msgid "Get New Password"
1168
- msgstr "Gerar nova Senha"
1169
-
1170
- #: templates/ms-signup-another-blog-form.php:7
1171
- msgid "Get <em>another</em> %s site in seconds"
1172
- msgstr "Obtenha <em>outro</em> %s site em segundos"
1173
-
1174
- #: templates/ms-signup-another-blog-form.php:10
1175
- msgid "There was a problem, please correct the form below and try again."
1176
- msgstr "Houve um problema, por favor corrija o formulário abaixo e tente novamente."
1177
-
1178
- #: templates/ms-signup-another-blog-form.php:13
1179
- msgid "Welcome back, %s. By filling out the form below, you can <strong>add another site to your account</strong>. There is no limit to the number of sites you can have, so create to your heart&#8217;s content, but write responsibly!"
1180
- msgstr "Bem-vindo, %s. Preenchendo o formulário abaixo, você pode <strong>adicionar outro site em sua conta</strong>. Não há limites para o número de sites que você pode ter, então crie quantos você quiser, mas seja responsável!"
1181
-
1182
- #: templates/ms-signup-another-blog-form.php:18
1183
- msgid "Sites you are already a member of:"
1184
- msgstr "Sites nos quais você já é membro:"
1185
-
1186
- #: templates/ms-signup-another-blog-form.php:27
1187
- msgid "If you&#8217;re not going to use a great site domain, leave it for a new user. Now have at it!"
1188
- msgstr "Se você não vai usar um ótimo domínio de site, deixe-o para um usuário novo. Vá em frente!"
1189
-
1190
- #: templates/ms-signup-another-blog-form.php:33
1191
- #: templates/ms-signup-blog-form.php:17
1192
- msgid "Site Name:"
1193
- msgstr "Nome do site:"
1194
-
1195
- #: templates/ms-signup-another-blog-form.php:35
1196
- #: templates/ms-signup-blog-form.php:19
1197
- msgid "Site Domain:"
1198
- msgstr "Domínio do site:"
1199
-
1200
- #: templates/ms-signup-another-blog-form.php:52
1201
- #: templates/ms-signup-blog-form.php:36
1202
- msgid "sitename"
1203
- msgstr "nome do site"
1204
-
1205
- #: templates/ms-signup-another-blog-form.php:54
1206
- #: templates/ms-signup-blog-form.php:38
1207
- msgid "domain"
1208
- msgstr "domínio"
1209
-
1210
- #: templates/ms-signup-another-blog-form.php:55
1211
- #: templates/ms-signup-blog-form.php:39
1212
- msgid "Your address will be %s."
1213
- msgstr "Seu endereço será %s."
1214
-
1215
- #: templates/ms-signup-another-blog-form.php:55
1216
- #: templates/ms-signup-blog-form.php:39
1217
- msgid "Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!"
1218
- msgstr "Deve ter pelo menos 4 caracteres, apenas letras e números. Não poderá ser mudado, então escolha com cuidado!"
1219
-
1220
- #: templates/ms-signup-another-blog-form.php:58
1221
- #: templates/ms-signup-blog-form.php:42
1222
- msgid "Site Title:"
1223
- msgstr "Título do site:"
1224
-
1225
- #: templates/ms-signup-another-blog-form.php:66
1226
- #: templates/ms-signup-blog-form.php:50
1227
- msgid "Privacy:"
1228
- msgstr "Privacidade:"
1229
-
1230
- #: templates/ms-signup-another-blog-form.php:67
1231
- #: templates/ms-signup-blog-form.php:51
1232
- msgid "Allow my site to appear in search engines like Google, Technorati, and in public listings around this network."
1233
- msgstr "Permitir que meu site apareça em engines como do Google, Technorati, e em listagens públicas ao redor da rede."
1234
-
1235
- #: templates/ms-signup-another-blog-form.php:71
1236
- #: templates/ms-signup-blog-form.php:55
1237
- msgid "Yes"
1238
- msgstr "Sim"
1239
-
1240
- #: templates/ms-signup-another-blog-form.php:75
1241
- #: templates/ms-signup-blog-form.php:59
1242
- msgid "No"
1243
- msgstr "Não"
1244
-
1245
- #: templates/ms-signup-another-blog-form.php:85
1246
- msgid "Create Site"
1247
- msgstr "Criar site"
1248
-
1249
- #: templates/ms-signup-blog-form.php:69
1250
- msgid "Signup"
1251
- msgstr "Entrar"
1252
-
1253
- #: templates/ms-signup-user-form.php:7
1254
- msgid "Get your own %s account in seconds"
1255
- msgstr "Obtenha uma conta em segundos"
1256
-
1257
- #: templates/ms-signup-user-form.php:22
1258
- msgid "(Must be at least 4 characters, letters and numbers only.)"
1259
- msgstr "(Deve ter pelo menos 4 caracteres, apenas letras e números.)"
1260
-
1261
- #: templates/ms-signup-user-form.php:24
1262
- msgid "Email&nbsp;Address:"
1263
- msgstr "E-mail&nbsp;Endereço:"
1264
-
1265
- #: templates/ms-signup-user-form.php:30
1266
- msgid "We send your registration email to this address. (Double-check your email address before continuing.)"
1267
- msgstr "Nós enviamos seu e-mail de registro para este endereço. (Certifique-se que o e-mail está correto antes de continuar.)"
1268
-
1269
- #: templates/ms-signup-user-form.php:47
1270
- msgid "Gimme a site!"
1271
- msgstr "Me dê um site!"
1272
-
1273
- #: templates/ms-signup-user-form.php:50
1274
- msgid "Just a username, please."
1275
- msgstr "Apenas um nome de usuário, por favor."
1276
-
1277
- #: templates/ms-signup-user-form.php:54
1278
- msgid "Next"
1279
- msgstr "Próximo"
1280
-
1281
- #: templates/profile-form.php:26
1282
- msgid "Personal Options"
1283
- msgstr "Opções Pessoais"
1284
-
1285
- #: templates/profile-form.php:31
1286
- msgid "Visual Editor"
1287
- msgstr "Editor visual"
1288
-
1289
- #: templates/profile-form.php:32
1290
- msgid "Disable the visual editor when writing"
1291
- msgstr "Desativar o editor visual ao escrever"
1292
-
1293
- #: templates/profile-form.php:37
1294
- msgid "Admin Color Scheme"
1295
- msgstr "Esquema de cor do Administrador"
1296
-
1297
- #: templates/profile-form.php:44
1298
- msgid "Keyboard Shortcuts"
1299
- msgstr "Atalhos de teclado"
1300
-
1301
- #: templates/profile-form.php:45
1302
- msgid "Enable keyboard shortcuts for comment moderation."
1303
- msgstr "Ativar atalhos de teclado para moderação de comentários."
1304
-
1305
- #: templates/profile-form.php:45
1306
- msgid "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">More information</a>"
1307
- msgstr "<a href=\"http://codex.wordpress.org/Keyboard_Shortcuts\" target=\"_blank\">Mais informações</a>"
1308
-
1309
- #: templates/profile-form.php:51
1310
- #: templates/profile-form.php:54
1311
- msgid "Toolbar"
1312
- msgstr "Barra de ferramentas"
1313
-
1314
- #: templates/profile-form.php:57
1315
- msgid "Show Toolbar when viewing site"
1316
- msgstr "Mostrar a barra de ferramentas ao ver o site"
1317
-
1318
- #: templates/profile-form.php:63
1319
- #: templates/profile-form.php:66
1320
- msgid "Show Admin Bar"
1321
- msgstr "Mostrar barra de Administrador"
1322
-
1323
- #. translators: Show admin bar when viewing site
1324
- #: templates/profile-form.php:69
1325
- msgid "when viewing site"
1326
- msgstr "ao ver o site"
1327
-
1328
- #. translators: Show admin bar in dashboard
1329
- #: templates/profile-form.php:74
1330
- msgid "in dashboard"
1331
- msgstr "na dashboard"
1332
-
1333
- #: templates/profile-form.php:87
1334
- msgid "Name"
1335
- msgstr "Nome"
1336
-
1337
- #: templates/profile-form.php:92
1338
- msgid "Your username cannot be changed."
1339
- msgstr "Seu nome de usuário não pode ser alterado."
1340
-
1341
- #: templates/profile-form.php:96
1342
- msgid "First name"
1343
- msgstr "Nome"
1344
-
1345
- #: templates/profile-form.php:101
1346
- msgid "Last name"
1347
- msgstr "Sobrenome"
1348
-
1349
- #: templates/profile-form.php:106
1350
- msgid "Nickname"
1351
- msgstr "Apelido"
1352
-
1353
- #: templates/profile-form.php:106
1354
- #: templates/profile-form.php:143
1355
- msgid "(required)"
1356
- msgstr "(*)"
1357
-
1358
- #: templates/profile-form.php:111
1359
- msgid "Display name publicly as"
1360
- msgstr "Mostrar nome como"
1361
-
1362
- #: templates/profile-form.php:139
1363
- msgid "Contact Info"
1364
- msgstr "Outros Contatos"
1365
-
1366
- #: templates/profile-form.php:148
1367
- msgid "Website"
1368
- msgstr "Site"
1369
-
1370
- #: templates/profile-form.php:165
1371
- msgid "About Yourself"
1372
- msgstr "Sobre Você"
1373
-
1374
- #: templates/profile-form.php:169
1375
- msgid "Biographical Info"
1376
- msgstr "Biografia"
1377
-
1378
- #: templates/profile-form.php:171
1379
- msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
1380
- msgstr "Conte um pouco mais sobre você. Isto pode ser mostrado publicamente."
1381
-
1382
- #: templates/profile-form.php:179
1383
- msgid "New Password"
1384
- msgstr "Nova Senha"
1385
-
1386
- #: templates/profile-form.php:180
1387
- msgid "If you would like to change the password type a new one. Otherwise leave this blank."
1388
- msgstr "Se você quiser alterar sua senha, preencha os campos abaixo. Se não, deixe-os em branco."
1389
-
1390
- #: templates/profile-form.php:181
1391
- msgid "Type your new password again."
1392
- msgstr "Confirme sua senha."
1393
-
1394
- #: templates/profile-form.php:183
1395
- #: templates/resetpass-form.php:20
1396
- msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
1397
- msgstr "Dica: Sua senha deve ter pelo menos 6 caracteres. Para deixá-la mais segura, use caixa alta, baixa, números e símbolos."
1398
-
1399
- #: templates/profile-form.php:197
1400
- msgid "Additional Capabilities"
1401
- msgstr "Capacidades Adicionais"
1402
-
1403
- #: templates/profile-form.php:216
1404
- msgid "Update Profile"
1405
- msgstr "Atualizar Cadastro"
1406
-
1407
- #: templates/register-form.php:23
1408
- msgid "A password will be e-mailed to you."
1409
- msgstr "Uma senha será enviada para o seu e-mail."
1410
-
1411
- #: templates/resetpass-form.php:12
1412
- msgid "New password"
1413
- msgstr "Nova senha"
1414
-
1415
- #: templates/resetpass-form.php:16
1416
- msgid "Confirm new password"
1417
- msgstr "Confirme a nova senha"
1418
-
1419
- #. Plugin URI of the plugin/theme
1420
- msgid "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/"
1421
- msgstr "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/"
1422
-
1423
- #. Description of the plugin/theme
1424
- msgid "Themes the WordPress login, registration and forgot password pages according to your theme."
1425
- msgstr "Themes the WordPress login, registration and forgot password pages according to your theme."
1426
-
1427
- #. Author of the plugin/theme
1428
- msgid "Jeff Farthing"
1429
- msgstr "Jeff Farthing"
1430
-
1431
- #. Author URI of the plugin/theme
1432
- msgid "http://www.jfarthing.com"
1433
- msgstr "http://www.jfarthing.com"
1434
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
language/theme-my-login-pt_PT.mo DELETED
Binary file
language/theme-my-login-pt_PT.po DELETED
@@ -1,1435 +0,0 @@
1
- # Copyright (C) 2012 Theme My Login
2
- # This file is distributed under the same license as the Theme My Login package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Theme My Login 6.2\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/theme-my-login\n"
7
- "POT-Creation-Date: 2012-03-08 16:19:05+00:00\n"
8
- "PO-Revision-Date: 2012-03-09 10:19-0500\n"
9
- "Last-Translator: Jeff Farthing <jeff@jfarthing.com>\n"
10
- "Language-Team: log.OSCON <log@log.pt>\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
- "X-Poedit-Language: Portuguese\n"
16
- "X-Poedit-Country: PORTUGAL\n"
17
- "X-Poedit-SourceCharset: utf-8\n"
18
-
19
- #. #-#-#-#-# plugin.pot (Theme My Login 6.2) #-#-#-#-#
20
- #. Plugin Name of the plugin/theme
21
- #: admin/class-theme-my-login-admin.php:42
22
- #: admin/class-theme-my-login-admin.php:43
23
- #: includes/class-theme-my-login-widget.php:24
24
- msgid "Theme My Login"
25
- msgstr "Theme My Login"
26
-
27
- #: admin/class-theme-my-login-admin.php:81
28
- msgid "ERROR: The module \"%1$s\" could not be activated (%2$s)."
29
- msgstr "ERRO: O módulo \"%1$s\" não pode ser ativado (%2$s)."
30
-
31
- #: admin/class-theme-my-login-admin.php:103
32
- msgid "NOTICE:"
33
- msgstr "AVISO:"
34
-
35
- #: admin/class-theme-my-login-admin.php:104
36
- msgid "Now that you have activated Theme My Login, please <a href=\"%s\">visit the settings page</a> and familiarize yourself with all of the available options."
37
- msgstr "Agora que ativou o Theme My Login, dirija-se à <a href=\"%s\">página de configurações</a> e familiarize-se com todas as opções disponíveis."
38
-
39
- #: admin/class-theme-my-login-admin.php:106
40
- msgid "Take me to the settings page"
41
- msgstr "Ir para a página de definições"
42
-
43
- #: admin/class-theme-my-login-admin.php:119
44
- msgid "You can now login with your e-mail address or username! Try it out!"
45
- msgstr "Já pode iniciar uma sessão com o seu endereço de email ou nome de utilizador! Experimente!"
46
-
47
- #: admin/class-theme-my-login-admin.php:120
48
- msgid "Theme My Login now utilizes a module system. Modules are similar to WordPress plugins. Each module extends the default functionality of Theme My Login. <a rel=\"tml-options\" href=\"#tml-options-modules\">Click here</a> to get started with modules now."
49
- msgstr "O Theme My Login utiliza um sistema modular. Os módulos assemelham-se aos plugins do WordPress. Cada módulo aumenta a funcionalidade base do Theme My Login. <a rel=\"tml-options\" href=\"#tml-options-modules\">Clique aqui</a> para começar já a usar módulos."
50
-
51
- #: admin/class-theme-my-login-admin.php:121
52
- msgid "Theme My Login now allows custom forms. You can create your own form template(s) by copying the default version(s) from \"theme-my-login/templates\" to your current theme directory. Try it out!"
53
- msgstr "O Theme My Login suporta formulários personalizáveis. Pode criar os seus modelos de formulário copiando as versões originais de \"theme-my-login/templates\" para a diretoria do seu tema atual. Experimente!"
54
-
55
- #: admin/class-theme-my-login-admin.php:122
56
- msgid "You can maintain your stylesheet changes between upgrades. Just simply copy the file \"theme-my-login/theme-my-login.css\" to your current theme directory and edit it as you please!"
57
- msgstr "Pode preservar as suas alterações à folha de estilos entre atualizações. Basta copiar o ficheiro \"theme-my-login/theme-my-login.css\" para a diretoria do seu tema atual e editá-lo à vontade!"
58
-
59
- #: admin/class-theme-my-login-admin.php:123
60
- msgid "Theme My Login provides a shortcode that you can use within your posts with multiple parameters to customize the form. Visit the <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">Theme My Login Documentation</a> for usage instructions."
61
- msgstr "O Theme My Login dá-lhe um shortcode que pode usar nos seus artigos com vários parâmetros de personalização do formulário. Consulte a <a href=\"http://www.jfarthing.com/docs/theme-my-login/shortcode\" target=\"_blank\">documentação do Theme My Login</a> para encontrar instruções de utilização."
62
-
63
- #: admin/class-theme-my-login-admin.php:124
64
- msgid "Jeff is <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">available for hire</a>!"
65
- msgstr "O Jeff está <a href=\"http://www.jfarthing.com/hire-me\" target=\"_blank\">disponível para trabalhar</a>!"
66
-
67
- #: admin/class-theme-my-login-admin.php:128
68
- msgid "Did You Know?"
69
- msgstr "Sabia?"
70
-
71
- #: admin/class-theme-my-login-admin.php:177
72
- msgid "General"
73
- msgstr "Geral"
74
-
75
- #: admin/class-theme-my-login-admin.php:178
76
- msgid "Basic"
77
- msgstr "Base"
78
-
79
- #: admin/class-theme-my-login-admin.php:179
80
- #: admin/class-theme-my-login-admin.php:319
81
- msgid "Modules"
82
- msgstr "Módulos"
83
-
84
- #: admin/class-theme-my-login-admin.php:181
85
- msgid "Permalinks"
86
- msgstr "Ligações permanentes"
87
-
88
- #: admin/class-theme-my-login-admin.php:188
89
- msgid "Theme My Login Settings"
90
- msgstr "Definições do Theme My Login"
91
-
92
- #: admin/class-theme-my-login-admin.php:194
93
- #: admin/class-theme-my-login-admin.php:254
94
- msgid "Save Changes"
95
- msgstr "Guardar alterações"
96
-
97
- #: admin/class-theme-my-login-admin.php:271
98
- msgid "Page ID"
99
- msgstr "ID de página"
100
-
101
- #: admin/class-theme-my-login-admin.php:274
102
- msgid "This should be the ID of the WordPress page that includes the [theme-my-login] shortcode. By default, this page is titled \"Login\"."
103
- msgstr "Este deve ser o identificador da página WordPress que inclui o shortcode [theme-my-login]. Por omissão, esta página chama-se \"Login\"."
104
-
105
- #: admin/class-theme-my-login-admin.php:278
106
- msgid "Pagelist"
107
- msgstr "Lista de páginas"
108
-
109
- #: admin/class-theme-my-login-admin.php:281
110
- msgid "Show Page In Pagelist"
111
- msgstr "Exibir página na lista de páginas"
112
-
113
- #: admin/class-theme-my-login-admin.php:282
114
- msgid "Enable this setting to add login/logout links to the pagelist generated by functions like wp_list_pages() and wp_page_menu()."
115
- msgstr "Ative esta definição para adicionar os links de iniciar e terminar sessão à lista de páginas gerada por funções como wp_list_pages() e wp_page_menu()."
116
-
117
- #: admin/class-theme-my-login-admin.php:286
118
- msgid "Stylesheet"
119
- msgstr "Folha de estilos"
120
-
121
- #: admin/class-theme-my-login-admin.php:289
122
- msgid "Enable \"theme-my-login.css\""
123
- msgstr "Permitir \"theme-my-login.css\""
124
-
125
- #: admin/class-theme-my-login-admin.php:290
126
- msgid "In order to keep changes between upgrades, you can store your customized \"theme-my-login.css\" in your current theme directory."
127
- msgstr "De modo a preservar alterações entre atualizações, pode guardar o seu \"theme-my-login.css\" personalizado na diretoria do seu tema atual."
128
-
129
- #: admin/class-theme-my-login-admin.php:294
130
- msgid "E-mail Login"
131
- msgstr "Autenticação por email"
132
-
133
- #: admin/class-theme-my-login-admin.php:297
134
- msgid "Enable e-mail address login"
135
- msgstr "Permitir iniciar a sessão com o endereço de email"
136
-
137
- #: admin/class-theme-my-login-admin.php:298
138
- msgid "Allows users to login using their e-mail address in place of their username."
139
- msgstr "Obrigar utilizadores a iniciar a sessão usando o endereço de email em vez do nome de utilizador."
140
-
141
- #: admin/class-theme-my-login-admin.php:323
142
- msgid "Enable %s"
143
- msgstr "Ligar %s"
144
-
145
- #: admin/class-theme-my-login-admin.php:325
146
- msgid "No modules found."
147
- msgstr "Não foram encontrados módulos."
148
-
149
- #: admin/class-theme-my-login-admin.php:343
150
- #: includes/class-theme-my-login-widget.php:87
151
- msgid "Login"
152
- msgstr "Iniciar sessão"
153
-
154
- #: admin/class-theme-my-login-admin.php:344
155
- #: includes/class-theme-my-login-template.php:141
156
- #: includes/class-theme-my-login-widget.php:87
157
- #: templates/register-form.php:25
158
- msgid "Register"
159
- msgstr "Criar registo"
160
-
161
- #: admin/class-theme-my-login-admin.php:345
162
- #: includes/class-theme-my-login-template.php:147
163
- #: includes/class-theme-my-login-widget.php:87
164
- msgid "Lost Password"
165
- msgstr "Password perdida"
166
-
167
- #: admin/class-theme-my-login-admin.php:475
168
- msgid "One of the modules is invalid."
169
- msgstr "Um dos módulos é inválido."
170
-
171
- #: admin/class-theme-my-login-admin.php:531
172
- msgid "Invalid module path."
173
- msgstr "Caminho do módulo inválido."
174
-
175
- #: admin/class-theme-my-login-admin.php:533
176
- msgid "Module file does not exist."
177
- msgstr "O ficheiro do módulo não existe."
178
-
179
- #: admin/class-theme-my-login-admin.php:537
180
- msgid "The module does not have a valid header."
181
- msgstr "O módulo não tem um cabeçalho válido."
182
-
183
- #: includes/class-theme-my-login-ms-signup.php:117
184
- msgctxt "Multisite active signup type"
185
- msgid "all"
186
- msgstr "todos"
187
-
188
- #: includes/class-theme-my-login-ms-signup.php:118
189
- msgctxt "Multisite active signup type"
190
- msgid "none"
191
- msgstr "nenhum"
192
-
193
- #: includes/class-theme-my-login-ms-signup.php:119
194
- msgctxt "Multisite active signup type"
195
- msgid "blog"
196
- msgstr "blog"
197
-
198
- #: includes/class-theme-my-login-ms-signup.php:120
199
- msgctxt "Multisite active signup type"
200
- msgid "user"
201
- msgstr "utilizador"
202
-
203
- #: includes/class-theme-my-login-ms-signup.php:123
204
- msgid "Greetings Site Administrator! You are currently allowing &#8220;%s&#8221; registrations. To change or disable registration go to your <a href=\"%s\">Options page</a>."
205
- msgstr "Olá, Administrador! De momento, está a permitir &#8220;%s&#8221; registos. Para alterar ou desligar o registo no site, visite a sua <a href=\"%s\">página de Opções</a>."
206
-
207
- #: includes/class-theme-my-login-ms-signup.php:129
208
- msgid "Registration has been disabled."
209
- msgstr "Não é permitido o registo."
210
-
211
- #: includes/class-theme-my-login-ms-signup.php:131
212
- msgid "You must first <a href=\"%s\">log in</a>, and then you can create a new site."
213
- msgstr "Deve <a href=\"%s\">iniciar a sessão</a> primeiro e só depois poderá criar um novo site."
214
-
215
- #: includes/class-theme-my-login-ms-signup.php:155
216
- msgid "%s is your new username"
217
- msgstr "%s é o seu novo nome de utilizador"
218
-
219
- #: includes/class-theme-my-login-ms-signup.php:156
220
- msgid "But, before you can start using your new username, <strong>you must activate it</strong>."
221
- msgstr "Mas, antes que possa começar a utilizar o site, <strong>deverá ativá-lo</strong>."
222
-
223
- #: includes/class-theme-my-login-ms-signup.php:157
224
- msgid "Check your inbox at <strong>%1$s</strong> and click the link given."
225
- msgstr "Verifique a sua caixa de entrada em <strong>%1$s</strong> e clique no link indicado."
226
-
227
- #: includes/class-theme-my-login-ms-signup.php:158
228
- msgid "If you do not activate your username within two days, you will have to sign up again."
229
- msgstr "Se não ativar o seu nome de utilizador no prazo de dois dias, terá de se inscrever novamente."
230
-
231
- #: includes/class-theme-my-login-ms-signup.php:162
232
- msgid "User registration has been disabled."
233
- msgstr "Não é permitido o registo de novos utilizadores."
234
-
235
- #: includes/class-theme-my-login-ms-signup.php:194
236
- msgid "Congratulations! Your new site, %s, is almost ready."
237
- msgstr "Parabéns! O seu novo site, %s, está quase pronto."
238
-
239
- #: includes/class-theme-my-login-ms-signup.php:196
240
- msgid "But, before you can start using your site, <strong>you must activate it</strong>."
241
- msgstr "Mas, antes que possa começar a utilizar o site, <strong>deverá activá-lo</strong>."
242
-
243
- #: includes/class-theme-my-login-ms-signup.php:197
244
- msgid "Check your inbox at <strong>%s</strong> and click the link given."
245
- msgstr "Verifique a sua caixa de correio de <strong>%s</strong> e clique no link indicado."
246
-
247
- #: includes/class-theme-my-login-ms-signup.php:198
248
- msgid "If you do not activate your site within two days, you will have to sign up again."
249
- msgstr "Se não ativar seu site dentro de dois dias, terá de voltar a inscrever-se."
250
-
251
- #: includes/class-theme-my-login-ms-signup.php:199
252
- msgid "Still waiting for your email?"
253
- msgstr "Ainda à espera da mensagem?"
254
-
255
- #: includes/class-theme-my-login-ms-signup.php:201
256
- msgid "If you haven&#8217;t received your email yet, there are a number of things you can do:"
257
- msgstr "Se ainda não recebeu a sua mensagem, há uma série de coisas que pode fazer:"
258
-
259
- #: includes/class-theme-my-login-ms-signup.php:203
260
- msgid "Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control."
261
- msgstr "Espere mais um pouco. Por vezes o envio de email é atrasado por processos fora do nosso controlo."
262
-
263
- #: includes/class-theme-my-login-ms-signup.php:204
264
- msgid "Check the junk or spam folder of your email client. Sometime emails wind up there by mistake."
265
- msgstr "Verifique a pasta de lixo ou spam do seu cliente de email. As mensagens às vezes acabam lá por engano."
266
-
267
- #: includes/class-theme-my-login-ms-signup.php:205
268
- msgid "Have you entered your email correctly? You have entered %s, if it&#8217;s incorrect, you will not receive your email."
269
- msgstr "Introduziu o seu email corretamente? Introduziu %s, se estiver incorreto, não irá receber a mensagem."
270
-
271
- #: includes/class-theme-my-login-ms-signup.php:211
272
- msgid "Site registration has been disabled."
273
- msgstr "Registo de site desligado."
274
-
275
- #: includes/class-theme-my-login-ms-signup.php:235
276
- msgid "The site %s is yours."
277
- msgstr "O site %s é seu."
278
-
279
- #: includes/class-theme-my-login-ms-signup.php:237
280
- msgid "<a href=\"http://%1$s\">http://%2$s</a> is your new site. <a href=\"%3$s\">Log in</a> as &#8220;%4$s&#8221; using your existing password."
281
- msgstr "<a href=\"http://%1$s\">http://%2$s</a> é o seu novo site. <a href=\"%3$s\">Inicie a sessão</a> como &#8220;%4$s&#8221; usando a sua senha atual."
282
-
283
- #: includes/class-theme-my-login-ms-signup.php:253
284
- msgid "Sorry, new registrations are not allowed at this time."
285
- msgstr "Desculpe, novos registos não são permitidos de momento."
286
-
287
- #: includes/class-theme-my-login-ms-signup.php:255
288
- msgid "You are logged in already. No need to register again!"
289
- msgstr "Já tem a sessão iniciada. Não é preciso registar-se outra vez!"
290
-
291
- #: includes/class-theme-my-login-ms-signup.php:261
292
- msgid "<p><em>The site you were looking for, <strong>%s</strong> does not exist, but you can create it now!</em></p>"
293
- msgstr "<p><em>O site que procura, <strong>%s</strong>, não existe. Mas pode cria-lo agora!</em></p>"
294
-
295
- #: includes/class-theme-my-login-ms-signup.php:263
296
- msgid "<p><em>The site you were looking for, <strong>%s</strong>, does not exist.</em></p>"
297
- msgstr "<p><em>O site que procura, <strong>%s</strong> não existe</em>.</p>"
298
-
299
- #: includes/class-theme-my-login-ms-signup.php:402
300
- msgid "Activation Key Required"
301
- msgstr "A chave de ativação é obrigatória"
302
-
303
- #: includes/class-theme-my-login-ms-signup.php:405
304
- msgid "Activation Key:"
305
- msgstr "Chave de ativação:"
306
-
307
- #: includes/class-theme-my-login-ms-signup.php:409
308
- #: includes/class-theme-my-login-ms-signup.php:481
309
- msgid "Activate"
310
- msgstr "Ativar"
311
-
312
- #: includes/class-theme-my-login-ms-signup.php:421
313
- #: includes/class-theme-my-login-ms-signup.php:441
314
- msgid "Your account is now active!"
315
- msgstr "A sua conta está agora ativa!"
316
-
317
- #: includes/class-theme-my-login-ms-signup.php:425
318
- msgid "Your account has been activated. You may now <a href=\"%1$s\">login</a> to the site using your chosen username of &#8220;%2$s&#8221;. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%4$s\">reset your password</a>."
319
- msgstr "A sua conta foi activada. Pode agora l<a href=\"%1$s\">iniciar a sua sessão</a> no site, usando o nome de utilizador que escolheu, \"%2$s\". Por favor, verifique que recebeu na sua caixa de correio em %3$s a sua senha e instruções de início de sessão Se não recebeu, verifique a sua pasta de spam ou lixo. Se mesmo assim não receber um email dentro de uma hora, pode sempre <a href=\"%4$s\">redefinir sua senha</a>."
320
-
321
- #: includes/class-theme-my-login-ms-signup.php:427
322
- msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a>."
323
- msgstr "O seu site, <a href=\"%1$s\">%2$s</a>, está activo. Pode agora iniciar a sessão no site com o nome de utilizador que escolheu &#8220;%3$s&#8221;. Por favor verifique que recebeu a senha e instruções de início de sessão. Se não receber o email verifique a sua pasta de spam. Se mesmo assim não receber o email no espaço de uma hora pode <a href=\"%5$s\">pedir uma nova senha</a>."
324
-
325
- #: includes/class-theme-my-login-ms-signup.php:432
326
- msgid "An error occurred during the activation"
327
- msgstr "Ocorreu um erro durante a ativação"
328
-
329
- #: includes/class-theme-my-login-ms-signup.php:444
330
- #: templates/ms-signup-user-form.php:16
331
- msgid "Username:"
332
- msgstr "Nome de utilizador:"
333
-
334
- #: includes/class-theme-my-login-ms-signup.php:445
335
- #: modules/custom-passwords/custom-passwords.php:29
336
- #: modules/custom-passwords/custom-passwords.php:56
337
- msgid "Password:"
338
- msgstr "Senha:"
339
-
340
- #: includes/class-the