Simple Membership - Version 3.2.7

Version Description

  • Added a new option in the plugin settings so you can specify other WP user role (example: editor) to be able to use/see the plugin's admin interface.
  • Added a "user profile delete" option in the admin profile edit interface of the plugin. Admins can use it to delete a user record while in the member edit interface.
  • Added a new option so the member registration complete email notification can be sent to multiple site admins.
  • Added Bosnian language translation file. The translation was submitted by Rejhan Puskar.
  • Updated the Japanese language file.
  • Updated the Dutch language file. Thanks to R.H.J. Roelofsen.
Download this release

Release Info

Developer mra13
Plugin Icon 128x128 Simple Membership
Version 3.2.7
Comparing to
See all releases

Code changes from version 3.2.6 to 3.2.7

classes/class.simple-wp-membership.php CHANGED
@@ -335,7 +335,7 @@ class SimpleWpMembership {
335
 
336
  public function show_old_custom_box() {
337
  echo '<div class="dbx-b-ox-wrapper">' . "\n";
338
- echo '<fieldset id="eMember_fieldsetid" class="dbx-box">' . "\n";
339
  echo '<div class="dbx-h-andle-wrapper"><h3 class="dbx-handle">' .
340
  __('Simple Membership Protection options', 'swpm') . "</h3></div>";
341
  echo '<div class="dbx-c-ontent-wrapper"><div class="dbx-content">';
@@ -487,12 +487,12 @@ class SimpleWpMembership {
487
  public function menu() {
488
  $menu_parent_slug = 'simple_wp_membership';
489
 
490
- add_menu_page(__("WP Membership", 'swpm'), __("WP Membership", 'swpm'), 'manage_options', $menu_parent_slug, array(&$this, "admin_members_menu"), 'dashicons-id');
491
- add_submenu_page($menu_parent_slug, __("Members", 'swpm'), __('Members', 'swpm'), 'manage_options', 'simple_wp_membership', array(&$this, "admin_members_menu"));
492
- add_submenu_page($menu_parent_slug, __("Membership Levels", 'swpm'), __("Membership Levels", 'swpm'), 'manage_options', 'simple_wp_membership_levels', array(&$this, "admin_membership_levels_menu"));
493
- add_submenu_page($menu_parent_slug, __("Settings", 'swpm'), __("Settings", 'swpm'), 'manage_options', 'simple_wp_membership_settings', array(&$this, "admin_settings_menu"));
494
- add_submenu_page($menu_parent_slug, __("Payments", 'swpm'), __("Payments", 'swpm'), 'manage_options', 'simple_wp_membership_payments', array(&$this, "admin_payments_menu"));
495
- add_submenu_page($menu_parent_slug, __("Add-ons", 'swpm'), __("Add-ons", 'swpm'), 'manage_options', 'simple_wp_membership_addons', array(&$this, "admin_add_ons_menu"));
496
 
497
  do_action('swpm_after_main_admin_menu', $menu_parent_slug);
498
 
335
 
336
  public function show_old_custom_box() {
337
  echo '<div class="dbx-b-ox-wrapper">' . "\n";
338
+ echo '<fieldset id="swpm_fieldsetid" class="dbx-box">' . "\n";
339
  echo '<div class="dbx-h-andle-wrapper"><h3 class="dbx-handle">' .
340
  __('Simple Membership Protection options', 'swpm') . "</h3></div>";
341
  echo '<div class="dbx-c-ontent-wrapper"><div class="dbx-content">';
487
  public function menu() {
488
  $menu_parent_slug = 'simple_wp_membership';
489
 
490
+ add_menu_page(__("WP Membership", 'swpm'), __("WP Membership", 'swpm'), SWPM_MANAGEMENT_PERMISSION, $menu_parent_slug, array(&$this, "admin_members_menu"), 'dashicons-id');
491
+ add_submenu_page($menu_parent_slug, __("Members", 'swpm'), __('Members', 'swpm'), SWPM_MANAGEMENT_PERMISSION, 'simple_wp_membership', array(&$this, "admin_members_menu"));
492
+ add_submenu_page($menu_parent_slug, __("Membership Levels", 'swpm'), __("Membership Levels", 'swpm'), SWPM_MANAGEMENT_PERMISSION, 'simple_wp_membership_levels', array(&$this, "admin_membership_levels_menu"));
493
+ add_submenu_page($menu_parent_slug, __("Settings", 'swpm'), __("Settings", 'swpm'), SWPM_MANAGEMENT_PERMISSION, 'simple_wp_membership_settings', array(&$this, "admin_settings_menu"));
494
+ add_submenu_page($menu_parent_slug, __("Payments", 'swpm'), __("Payments", 'swpm'), SWPM_MANAGEMENT_PERMISSION, 'simple_wp_membership_payments', array(&$this, "admin_payments_menu"));
495
+ add_submenu_page($menu_parent_slug, __("Add-ons", 'swpm'), __("Add-ons", 'swpm'), SWPM_MANAGEMENT_PERMISSION, 'simple_wp_membership_addons', array(&$this, "admin_add_ons_menu"));
496
 
497
  do_action('swpm_after_main_admin_menu', $menu_parent_slug);
498
 
classes/class.swpm-init-time-tasks.php CHANGED
@@ -23,7 +23,8 @@ class SwpmInitTimeTasks {
23
  //Crete the custom post types
24
  $this->create_post_type();
25
 
26
- if (current_user_can('manage_options')) { // Admin stuff
 
27
  $this->admin_init();
28
  }
29
 
23
  //Crete the custom post types
24
  $this->create_post_type();
25
 
26
+ if (current_user_can(SWPM_MANAGEMENT_PERMISSION)) {
27
+ // Admin dashboard stuff
28
  $this->admin_init();
29
  }
30
 
classes/class.swpm-protection.php CHANGED
@@ -19,7 +19,7 @@ class SwpmProtection extends SwpmProtectionBase {
19
  public function is_protected($id) {
20
  if ($this->post_in_parent_categories($id) || $this->post_in_categories($id)) {
21
  $this->msg = '<p style="background: #FFF6D5; border: 1px solid #D1B655; color: #3F2502; margin: 10px 0px 10px 0px; padding: 5px 5px 5px 10px;">
22
- The category or parent category of this post is protected. You can change the category protection settings from the <a href="admin.php?page=eMember_membership_level_menu&level_action=2" target="_blank">manage content protection</a> menu.
23
  </p>';
24
  return true;
25
  }
19
  public function is_protected($id) {
20
  if ($this->post_in_parent_categories($id) || $this->post_in_categories($id)) {
21
  $this->msg = '<p style="background: #FFF6D5; border: 1px solid #D1B655; color: #3F2502; margin: 10px 0px 10px 0px; padding: 5px 5px 5px 10px;">
22
+ The category or parent category of this post is protected. You can change the category protection settings from the <a href="admin.php?page=simple_wp_membership_levels&level_action=category_list" target="_blank">category protection</a> menu.
23
  </p>';
24
  return true;
25
  }
classes/class.swpm-registration.php CHANGED
@@ -37,19 +37,27 @@ abstract class SwpmRegistration {
37
 
38
  $email = sanitize_email(filter_input(INPUT_POST, 'email', FILTER_UNSAFE_RAW));
39
 
 
40
  wp_mail(trim($email), $subject, $body, $headers);
41
  SwpmLog::log_simple_debug('Member notification email sent to: '.$email, true);
42
 
43
  if ($settings->get_value('enable-admin-notification-after-reg')) {
44
- $to_email_address = $settings->get_value('admin-notification-email');
 
 
 
 
45
  $headers = 'From: ' . $from_address . "\r\n";
46
  $subject = "Notification of New Member Registration";
47
  $body = "A new member has registered. The following email was sent to the member." .
48
  "\n\n-------Member Email----------\n" . $body .
49
  "\n\n------End------\n";
50
- $admin_notification = empty($to_email_address) ? $from_address : $to_email_address;
51
- wp_mail(trim($admin_notification), $subject, $body, $headers);
52
- SwpmLog::log_simple_debug('Admin notification email sent to: '.$admin_notification, true);
 
 
 
53
  }
54
  return true;
55
  }
37
 
38
  $email = sanitize_email(filter_input(INPUT_POST, 'email', FILTER_UNSAFE_RAW));
39
 
40
+ //Send notification email to the member
41
  wp_mail(trim($email), $subject, $body, $headers);
42
  SwpmLog::log_simple_debug('Member notification email sent to: '.$email, true);
43
 
44
  if ($settings->get_value('enable-admin-notification-after-reg')) {
45
+ //Send notification email to the site admin
46
+ $admin_notification = $settings->get_value('admin-notification-email');
47
+ $admin_notification = empty($admin_notification) ? $from_address : $admin_notification;
48
+ $notify_emails_array = explode(",", $admin_notification);
49
+
50
  $headers = 'From: ' . $from_address . "\r\n";
51
  $subject = "Notification of New Member Registration";
52
  $body = "A new member has registered. The following email was sent to the member." .
53
  "\n\n-------Member Email----------\n" . $body .
54
  "\n\n------End------\n";
55
+
56
+ foreach ($notify_emails_array as $to_email){
57
+ $to_email = trim($to_email);
58
+ wp_mail($to_email, $subject, $body, $headers);
59
+ SwpmLog::log_simple_debug('Admin notification email sent to: '.$to_email, true);
60
+ }
61
  }
62
  return true;
63
  }
classes/class.swpm-settings.php CHANGED
@@ -121,12 +121,16 @@ class SwpmSettings {
121
  add_settings_field('email-misc-from', SwpmUtils::_('From Email Address'), array(&$this, 'textfield_callback'), 'simple_wp_membership_settings', 'email-misc-settings', array('item' => 'email-from',
122
  'message' => 'This value will be used as the sender\'s address for the emails. Example value: Your Name &lt;sales@your-domain.com&gt;'));
123
 
 
124
  add_settings_section('reg-prompt-email-settings', SwpmUtils::_('Email Settings (Prompt to Complete Registration )'), array(&$this, 'reg_prompt_email_settings_callback'), 'simple_wp_membership_settings');
125
  add_settings_field('reg-prompt-complete-mail-subject', SwpmUtils::_('Email Subject'), array(&$this, 'textfield_callback'), 'simple_wp_membership_settings', 'reg-prompt-email-settings', array('item' => 'reg-prompt-complete-mail-subject',
126
  'message' => ''));
127
  add_settings_field('reg-prompt-complete-mail-body', SwpmUtils::_('Email Body'), array(&$this, 'textarea_callback'), 'simple_wp_membership_settings', 'reg-prompt-email-settings', array('item' => 'reg-prompt-complete-mail-body',
128
  'message' => ''));
129
 
 
 
 
130
  add_settings_section('reg-email-settings', SwpmUtils::_('Email Settings (Registration Complete)'), array(&$this, 'reg_email_settings_callback'), 'simple_wp_membership_settings');
131
  add_settings_field('reg-complete-mail-subject', SwpmUtils::_('Email Subject'), array(&$this, 'textfield_callback'), 'simple_wp_membership_settings', 'reg-email-settings', array('item' => 'reg-complete-mail-subject',
132
  'message' => ''));
@@ -135,19 +139,21 @@ class SwpmSettings {
135
  add_settings_field('enable-admin-notification-after-reg', SwpmUtils::_('Send Notification to Admin'), array(&$this, 'checkbox_callback'), 'simple_wp_membership_settings', 'reg-email-settings', array('item' => 'enable-admin-notification-after-reg',
136
  'message' => SwpmUtils::_('Enable this option if you want the admin to receive a notification when a member registers.')));
137
  add_settings_field('admin-notification-email', SwpmUtils::_('Admin Email Address'), array(&$this, 'textfield_callback'), 'simple_wp_membership_settings', 'reg-email-settings', array('item' => 'admin-notification-email',
138
- 'message' => SwpmUtils::_('Enter the email address where you want the admin notification email to be sent to.')));
139
  add_settings_field('enable-notification-after-manual-user-add', SwpmUtils::_('Send Email to Member When Added via Admin Dashboard'), array(&$this, 'checkbox_callback'), 'simple_wp_membership_settings', 'reg-email-settings', array('item' => 'enable-notification-after-manual-user-add',
140
  'message' => ''));
141
 
 
142
  add_settings_section('reset-password-settings', SwpmUtils::_('Email Settings (Password Reset)'), array(&$this, 'reset_password_settings_callback'), 'simple_wp_membership_settings');
143
  add_settings_field('reset-mail-subject', SwpmUtils::_('Email Subject'), array(&$this, 'textfield_callback'), 'simple_wp_membership_settings', 'reset-password-settings', array('item' => 'reset-mail-subject', 'message' => ''));
144
  add_settings_field('reset-mail-body', SwpmUtils::_('Email Body'), array(&$this, 'textarea_callback'), 'simple_wp_membership_settings', 'reset-password-settings', array('item' => 'reset-mail-body', 'message' => ''));
145
 
146
-
147
  add_settings_section('upgrade-email-settings', SwpmUtils::_(' Email Settings (Account Upgrade Notification)'), array(&$this, 'upgrade_email_settings_callback'), 'simple_wp_membership_settings');
148
  add_settings_field('upgrade-complete-mail-subject', SwpmUtils::_('Email Subject'), array(&$this, 'textfield_callback'), 'simple_wp_membership_settings', 'upgrade-email-settings', array('item' => 'upgrade-complete-mail-subject', 'message' => ''));
149
  add_settings_field('upgrade-complete-mail-body', SwpmUtils::_('Email Body'), array(&$this, 'textarea_callback'), 'simple_wp_membership_settings', 'upgrade-email-settings', array('item' => 'upgrade-complete-mail-body', 'message' => ''));
150
 
 
151
  add_settings_section('bulk-activate-email-settings', SwpmUtils::_(' Email Settings (Bulk Account Activate Notification)'), array(&$this, 'bulk_activate_email_settings_callback'), 'simple_wp_membership_settings');
152
  add_settings_field('bulk-activate-notify-mail-subject', SwpmUtils::_('Email Subject'), array(&$this, 'textfield_callback'), 'simple_wp_membership_settings', 'bulk-activate-email-settings', array('item' => 'bulk-activate-notify-mail-subject', 'message' => ''));
153
  add_settings_field('bulk-activate-notify-mail-body', SwpmUtils::_('Email Body'), array(&$this, 'textarea_callback'), 'simple_wp_membership_settings', 'bulk-activate-email-settings', array('item' => 'bulk-activate-notify-mail-body', 'message' => ''));
@@ -185,6 +191,11 @@ class SwpmSettings {
185
  'default' => '0',
186
  'message' => SwpmUtils::_('Select how long you want to keep "pending" account.')));
187
 
 
 
 
 
 
188
  }
189
 
190
  private function tab_6() {
@@ -368,7 +379,7 @@ class SwpmSettings {
368
  $output['reg-prompt-complete-mail-body'] = wp_kses_data(force_balance_tags($input['reg-prompt-complete-mail-body']));
369
  $output['email-from'] = trim($input['email-from']);
370
  $output['enable-admin-notification-after-reg'] = isset($input['enable-admin-notification-after-reg']) ? esc_attr($input['enable-admin-notification-after-reg']) : "";
371
- $output['admin-notification-email'] = sanitize_email($input['admin-notification-email']);
372
  $output['enable-notification-after-manual-user-add'] = isset($input['enable-notification-after-manual-user-add']) ? esc_attr($input['enable-notification-after-manual-user-add']) : "";
373
 
374
  return $output;
121
  add_settings_field('email-misc-from', SwpmUtils::_('From Email Address'), array(&$this, 'textfield_callback'), 'simple_wp_membership_settings', 'email-misc-settings', array('item' => 'email-from',
122
  'message' => 'This value will be used as the sender\'s address for the emails. Example value: Your Name &lt;sales@your-domain.com&gt;'));
123
 
124
+ //Prompt to complete registration email settings
125
  add_settings_section('reg-prompt-email-settings', SwpmUtils::_('Email Settings (Prompt to Complete Registration )'), array(&$this, 'reg_prompt_email_settings_callback'), 'simple_wp_membership_settings');
126
  add_settings_field('reg-prompt-complete-mail-subject', SwpmUtils::_('Email Subject'), array(&$this, 'textfield_callback'), 'simple_wp_membership_settings', 'reg-prompt-email-settings', array('item' => 'reg-prompt-complete-mail-subject',
127
  'message' => ''));
128
  add_settings_field('reg-prompt-complete-mail-body', SwpmUtils::_('Email Body'), array(&$this, 'textarea_callback'), 'simple_wp_membership_settings', 'reg-prompt-email-settings', array('item' => 'reg-prompt-complete-mail-body',
129
  'message' => ''));
130
 
131
+ //Registration complete email settings
132
+ $msg_for_admin_notify_email_field = SwpmUtils::_('Enter the email address where you want the admin notification email to be sent to.');
133
+ $msg_for_admin_notify_email_field .= SwpmUtils::_(' You can put multiple email addresses separated by comma (,) in the above field to send the notification to multiple email addresses.');
134
  add_settings_section('reg-email-settings', SwpmUtils::_('Email Settings (Registration Complete)'), array(&$this, 'reg_email_settings_callback'), 'simple_wp_membership_settings');
135
  add_settings_field('reg-complete-mail-subject', SwpmUtils::_('Email Subject'), array(&$this, 'textfield_callback'), 'simple_wp_membership_settings', 'reg-email-settings', array('item' => 'reg-complete-mail-subject',
136
  'message' => ''));
139
  add_settings_field('enable-admin-notification-after-reg', SwpmUtils::_('Send Notification to Admin'), array(&$this, 'checkbox_callback'), 'simple_wp_membership_settings', 'reg-email-settings', array('item' => 'enable-admin-notification-after-reg',
140
  'message' => SwpmUtils::_('Enable this option if you want the admin to receive a notification when a member registers.')));
141
  add_settings_field('admin-notification-email', SwpmUtils::_('Admin Email Address'), array(&$this, 'textfield_callback'), 'simple_wp_membership_settings', 'reg-email-settings', array('item' => 'admin-notification-email',
142
+ 'message' => $msg_for_admin_notify_email_field));
143
  add_settings_field('enable-notification-after-manual-user-add', SwpmUtils::_('Send Email to Member When Added via Admin Dashboard'), array(&$this, 'checkbox_callback'), 'simple_wp_membership_settings', 'reg-email-settings', array('item' => 'enable-notification-after-manual-user-add',
144
  'message' => ''));
145
 
146
+ //Password reset email settings
147
  add_settings_section('reset-password-settings', SwpmUtils::_('Email Settings (Password Reset)'), array(&$this, 'reset_password_settings_callback'), 'simple_wp_membership_settings');
148
  add_settings_field('reset-mail-subject', SwpmUtils::_('Email Subject'), array(&$this, 'textfield_callback'), 'simple_wp_membership_settings', 'reset-password-settings', array('item' => 'reset-mail-subject', 'message' => ''));
149
  add_settings_field('reset-mail-body', SwpmUtils::_('Email Body'), array(&$this, 'textarea_callback'), 'simple_wp_membership_settings', 'reset-password-settings', array('item' => 'reset-mail-body', 'message' => ''));
150
 
151
+ //Account upgrade email settings
152
  add_settings_section('upgrade-email-settings', SwpmUtils::_(' Email Settings (Account Upgrade Notification)'), array(&$this, 'upgrade_email_settings_callback'), 'simple_wp_membership_settings');
153
  add_settings_field('upgrade-complete-mail-subject', SwpmUtils::_('Email Subject'), array(&$this, 'textfield_callback'), 'simple_wp_membership_settings', 'upgrade-email-settings', array('item' => 'upgrade-complete-mail-subject', 'message' => ''));
154
  add_settings_field('upgrade-complete-mail-body', SwpmUtils::_('Email Body'), array(&$this, 'textarea_callback'), 'simple_wp_membership_settings', 'upgrade-email-settings', array('item' => 'upgrade-complete-mail-body', 'message' => ''));
155
 
156
+ //Bulk account activate and notify email settings.
157
  add_settings_section('bulk-activate-email-settings', SwpmUtils::_(' Email Settings (Bulk Account Activate Notification)'), array(&$this, 'bulk_activate_email_settings_callback'), 'simple_wp_membership_settings');
158
  add_settings_field('bulk-activate-notify-mail-subject', SwpmUtils::_('Email Subject'), array(&$this, 'textfield_callback'), 'simple_wp_membership_settings', 'bulk-activate-email-settings', array('item' => 'bulk-activate-notify-mail-subject', 'message' => ''));
159
  add_settings_field('bulk-activate-notify-mail-body', SwpmUtils::_('Email Body'), array(&$this, 'textarea_callback'), 'simple_wp_membership_settings', 'bulk-activate-email-settings', array('item' => 'bulk-activate-notify-mail-body', 'message' => ''));
191
  'default' => '0',
192
  'message' => SwpmUtils::_('Select how long you want to keep "pending" account.')));
193
 
194
+ add_settings_field('admin-dashboard-access-permission', SwpmUtils::_('Admin Dashboard Access Permission'), array(&$this, 'selectbox_callback'), 'simple_wp_membership_settings', 'advanced-settings', array('item' => 'admin-dashboard-access-permission',
195
+ 'options' => array('manage_options' => 'Admin', 'edit_pages' => 'Editor', 'edit_published_posts' => 'Author', 'edit_posts' => 'Contributor'),
196
+ 'default' => 'manage_options',
197
+ 'message' => SwpmUtils::_('SWPM admin dashboard is accessible to admin users only (just like any other plugin). You can allow users with other WP user role to access the SWPM admin dashboard by selecting a value here.')));
198
+
199
  }
200
 
201
  private function tab_6() {
379
  $output['reg-prompt-complete-mail-body'] = wp_kses_data(force_balance_tags($input['reg-prompt-complete-mail-body']));
380
  $output['email-from'] = trim($input['email-from']);
381
  $output['enable-admin-notification-after-reg'] = isset($input['enable-admin-notification-after-reg']) ? esc_attr($input['enable-admin-notification-after-reg']) : "";
382
+ $output['admin-notification-email'] = sanitize_text_field($input['admin-notification-email']);
383
  $output['enable-notification-after-manual-user-add'] = isset($input['enable-notification-after-manual-user-add']) ? esc_attr($input['enable-notification-after-manual-user-add']) : "";
384
 
385
  return $output;
classes/class.swpm-utils.php CHANGED
@@ -284,6 +284,9 @@ abstract class SwpmUtils {
284
  }
285
 
286
  public static function is_admin() {
 
 
 
287
  return current_user_can('manage_options');
288
  }
289
 
284
  }
285
 
286
  public static function is_admin() {
287
+ //This function returns true if the current user has admin management permission.
288
+ //This function is NOT like the WordPress's is_admin() function which determins if we are on the admin end of the site.
289
+ //TODO - rename this function to something like is_admin_user()
290
  return current_user_can('manage_options');
291
  }
292
 
images/addons/swpm-data-exporter-addon.png ADDED
Binary file
languages/swpm-bs_BA.mo ADDED
Binary file
languages/swpm-bs_BA.po ADDED
@@ -0,0 +1,1306 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: simple membership\n"
4
+ "POT-Creation-Date: 2016-05-20 13:06+0200\n"
5
+ "PO-Revision-Date: 2016-05-20 16:20+0200\n"
6
+ "Language-Team: \n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 1.8.7\n"
11
+ "X-Poedit-KeywordsList: __;_e\n"
12
+ "X-Poedit-Basepath: .\n"
13
+ "Last-Translator: \n"
14
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
15
+ "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
16
+ "Language: bs_BA@latin\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: classes/class.simple-wp-membership.php:264
20
+ msgid "You are not logged in."
21
+ msgstr "Nisi ulogovan."
22
+
23
+ #: classes/class.simple-wp-membership.php:298
24
+ msgid "Simple WP Membership Protection"
25
+ msgstr "2. (Simple WP Membership Protection)"
26
+
27
+ #: classes/class.simple-wp-membership.php:310
28
+ msgid "Simple Membership Protection options"
29
+ msgstr "3. Opcije (Simple Membership Protection options)"
30
+
31
+ #: classes/class.simple-wp-membership.php:326
32
+ msgid "Do you want to protect this content?"
33
+ msgstr "Želiš li zaštititi ovaj sadržaj?"
34
+
35
+ #: classes/class.simple-wp-membership.php:331
36
+ msgid "Select the membership level that can access this content:"
37
+ msgstr "Odredi level korisnika koji može pristupiti ovom sadržaju:"
38
+
39
+ #: classes/class.simple-wp-membership.php:464
40
+ msgid "WP Membership"
41
+ msgstr "Članstvo"
42
+
43
+ #: classes/class.simple-wp-membership.php:465 classes/class.swpm-members.php:10
44
+ #: views/admin_members_menu.php:2
45
+ msgid "Members"
46
+ msgstr "Članovi"
47
+
48
+ #: classes/class.simple-wp-membership.php:466
49
+ #: classes/class.swpm-category-list.php:20
50
+ #: classes/class.swpm-membership-levels.php:11
51
+ msgid "Membership Levels"
52
+ msgstr "Leveli Članstva"
53
+
54
+ #: classes/class.simple-wp-membership.php:467
55
+ msgid "Settings"
56
+ msgstr "Opcije"
57
+
58
+ #: classes/class.simple-wp-membership.php:468
59
+ msgid "Payments"
60
+ msgstr "Plaćanja"
61
+
62
+ #: classes/class.simple-wp-membership.php:469
63
+ msgid "Add-ons"
64
+ msgstr "Add-ons"
65
+
66
+ #: classes/class.swpm-access-control.php:21
67
+ #: classes/class.swpm-access-control.php:28
68
+ #: classes/class.swpm-access-control.php:55
69
+ msgid "You need to login to view this content. "
70
+ msgstr "Moraš se ulogovati da bi vidio ovaj sadržaj."
71
+
72
+ #: classes/class.swpm-access-control.php:34
73
+ #: classes/class.swpm-access-control.php:60
74
+ msgid ""
75
+ "Your account has expired. Please renew your account to gain access to this "
76
+ "content."
77
+ msgstr ""
78
+ "Tvoj račun je istekao. Obnovi svoj račun da bi dobio pristup ovom sadržaju."
79
+
80
+ #: classes/class.swpm-access-control.php:41
81
+ msgid "This content can only be viewed by members who joined on or before "
82
+ msgstr "Ovaj sadržaj je vidljiv samo članovima koji su registrovani prije "
83
+
84
+ #: classes/class.swpm-access-control.php:46
85
+ #: classes/class.swpm-access-control.php:66
86
+ msgid "This content is not permitted for your membership level."
87
+ msgstr "Ovaj sadržaj nije vidljiv na tvom korisničkom levelu."
88
+
89
+ #: classes/class.swpm-access-control.php:84
90
+ msgid " The rest of the content is not permitted for your membership level."
91
+ msgstr "Ostatak sadržaja nije vidljiv tvom korisničkom levelu."
92
+
93
+ #: classes/class.swpm-access-control.php:88
94
+ #: classes/class.swpm-access-control.php:106
95
+ msgid "You need to login to view the rest of the content. "
96
+ msgstr "Uloguj se da bi vidio ostatak sadržaja."
97
+
98
+ #: classes/class.swpm-admin-registration.php:54
99
+ msgid "Member record added successfully."
100
+ msgstr ""
101
+
102
+ #: classes/class.swpm-admin-registration.php:59
103
+ #: classes/class.swpm-admin-registration.php:81
104
+ #: classes/class.swpm-admin-registration.php:105
105
+ #: classes/class.swpm-membership-level.php:43
106
+ #: classes/class.swpm-membership-level.php:62
107
+ msgid "Please correct the following:"
108
+ msgstr "Ispravi sljedeće:"
109
+
110
+ #: classes/class.swpm-admin-registration.php:96
111
+ msgid "Your current password"
112
+ msgstr "Tvoja trenutna šifra"
113
+
114
+ #: classes/class.swpm-ajax.php:14
115
+ msgid "Invalid Email Address"
116
+ msgstr "Nepravilna Email Adresa"
117
+
118
+ #: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
119
+ msgid "Aready taken"
120
+ msgstr "Zauzeto"
121
+
122
+ #: classes/class.swpm-ajax.php:30
123
+ msgid "Name contains invalid character"
124
+ msgstr "Ime sadrži nepodržan znak"
125
+
126
+ #: classes/class.swpm-ajax.php:37
127
+ msgid "Available"
128
+ msgstr "Dostupno"
129
+
130
+ #: classes/class.swpm-auth.php:50
131
+ msgid "User Not Found."
132
+ msgstr "Korisnik nije pronađen."
133
+
134
+ #: classes/class.swpm-auth.php:57
135
+ msgid "Password Empty or Invalid."
136
+ msgstr "Šifra je nepravilna ili nije upisana."
137
+
138
+ #: classes/class.swpm-auth.php:82
139
+ msgid "Account is inactive."
140
+ msgstr "Račun nije aktivan."
141
+
142
+ #: classes/class.swpm-auth.php:85
143
+ msgid "Account is pending."
144
+ msgstr "Račun čeka aktivaciju."
145
+
146
+ #: classes/class.swpm-auth.php:88 classes/class.swpm-auth.php:106
147
+ msgid "Account has expired."
148
+ msgstr "Račun je istekao."
149
+
150
+ #: classes/class.swpm-auth.php:114
151
+ msgid "You are logged in as:"
152
+ msgstr "Ulogovan/a si kao:"
153
+
154
+ #: classes/class.swpm-auth.php:160
155
+ msgid "Logged Out Successfully."
156
+ msgstr "Uspješno si se odjavio/la."
157
+
158
+ #: classes/class.swpm-auth.php:210
159
+ msgid "Session Expired."
160
+ msgstr "Uloguj se ponovo."
161
+
162
+ #: classes/class.swpm-auth.php:219
163
+ msgid "Invalid Username"
164
+ msgstr "Nepravilno Korisničko Ime"
165
+
166
+ #: classes/class.swpm-auth.php:227
167
+ msgid "Please login again."
168
+ msgstr "Uloguj se ponovo."
169
+
170
+ #: classes/class.swpm-category-list.php:19 classes/class.swpm-members.php:23
171
+ #: classes/class.swpm-membership-levels.php:10
172
+ #: classes/class.swpm-membership-levels.php:20
173
+ #: classes/admin-includes/class.swpm-payments-list-table.php:80
174
+ #: views/add.php:30 views/admin_member_form_common_part.php:2 views/edit.php:53
175
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:36
176
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:217
177
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:37
178
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:310
179
+ msgid "Membership Level"
180
+ msgstr "Korisnički Level"
181
+
182
+ #: classes/class.swpm-category-list.php:33 classes/class.swpm-members.php:18
183
+ #: classes/class.swpm-membership-levels.php:19
184
+ msgid "ID"
185
+ msgstr ""
186
+
187
+ #: classes/class.swpm-category-list.php:34
188
+ msgid "Name"
189
+ msgstr "Ime"
190
+
191
+ #: classes/class.swpm-category-list.php:35
192
+ msgid "Description"
193
+ msgstr "Opis"
194
+
195
+ #: classes/class.swpm-category-list.php:36
196
+ msgid "Count"
197
+ msgstr "Brojač"
198
+
199
+ #: classes/class.swpm-category-list.php:80
200
+ msgid "Category protection updated!"
201
+ msgstr "Zaštita kategorije ažurirana!"
202
+
203
+ #: classes/class.swpm-form.php:26
204
+ msgid ""
205
+ "Wordpress account exists with given username. But given email doesn't match."
206
+ msgstr "Account s tim korisničkim imenom postoji, ali email se ne podudara."
207
+
208
+ #: classes/class.swpm-form.php:31
209
+ msgid ""
210
+ "Wordpress account exists with given email. But given username doesn't match."
211
+ msgstr "Account s tim email-om postoji, ali korisničko ime se ne podudara."
212
+
213
+ #: classes/class.swpm-form.php:40
214
+ msgid "Username is required"
215
+ msgstr "Korisničko ime je obavezno"
216
+
217
+ #: classes/class.swpm-form.php:44
218
+ msgid "Username contains invalid character"
219
+ msgstr "Korisničko ime sadrži nepodržan znak"
220
+
221
+ #: classes/class.swpm-form.php:52
222
+ msgid "Username already exists."
223
+ msgstr "Korisničko ime zauzeto."
224
+
225
+ #: classes/class.swpm-form.php:75
226
+ msgid "Password is required"
227
+ msgstr "Šifra je obavezna."
228
+
229
+ #: classes/class.swpm-form.php:82
230
+ msgid "Password mismatch"
231
+ msgstr "Šifra se ne podudara."
232
+
233
+ #: classes/class.swpm-form.php:93
234
+ msgid "Email is required"
235
+ msgstr "Email je obavezan."
236
+
237
+ #: classes/class.swpm-form.php:97
238
+ msgid "Email is invalid"
239
+ msgstr "Email nije validan"
240
+
241
+ #: classes/class.swpm-form.php:113
242
+ msgid "Email is already used."
243
+ msgstr "Email se već koristi."
244
+
245
+ #: classes/class.swpm-form.php:170
246
+ msgid "Member since field is invalid"
247
+ msgstr ""
248
+
249
+ #: classes/class.swpm-form.php:181
250
+ msgid "Access starts field is invalid"
251
+ msgstr ""
252
+
253
+ #: classes/class.swpm-form.php:191
254
+ msgid "Gender field is invalid"
255
+ msgstr ""
256
+
257
+ #: classes/class.swpm-form.php:202
258
+ msgid "Account state field is invalid"
259
+ msgstr ""
260
+
261
+ #: classes/class.swpm-form.php:209
262
+ msgid "Invalid membership level"
263
+ msgstr "Nevalidan korisnički level."
264
+
265
+ #: classes/class.swpm-front-registration.php:71
266
+ msgid "Security check: captcha validation failed."
267
+ msgstr "Sigurnosna provjera: captcha validacija netačna."
268
+
269
+ #: classes/class.swpm-front-registration.php:80
270
+ msgid "Registration Successful. "
271
+ msgstr "To je to. Registracija uspješna."
272
+
273
+ #: classes/class.swpm-front-registration.php:80
274
+ #: classes/class.swpm-settings.php:377
275
+ msgid "Please"
276
+ msgstr "Molimo"
277
+
278
+ #: classes/class.swpm-front-registration.php:80
279
+ #: classes/class.swpm-settings.php:377 views/login.php:21
280
+ msgid "Login"
281
+ msgstr "Uloguj se"
282
+
283
+ #: classes/class.swpm-front-registration.php:92
284
+ #: classes/class.swpm-front-registration.php:179
285
+ msgid "Please correct the following"
286
+ msgstr "Ispravi sljedeće"
287
+
288
+ #: classes/class.swpm-front-registration.php:123
289
+ msgid "Membership Level Couldn't be found."
290
+ msgstr "Korisnički Level ne može biti pronaćen."
291
+
292
+ #: classes/class.swpm-front-registration.php:162
293
+ msgid "Profile updated successfully."
294
+ msgstr "Račun uspješno ažuriran."
295
+
296
+ #: classes/class.swpm-front-registration.php:170
297
+ msgid ""
298
+ "Profile updated successfully. You will need to re-login since you changed "
299
+ "your password."
300
+ msgstr ""
301
+ "Račun uspješno ažuriran. Morat ćeš se ponovo ulogovati jer si promijenio/la "
302
+ "password."
303
+
304
+ #: classes/class.swpm-front-registration.php:189
305
+ msgid "Email address not valid."
306
+ msgstr "Email adresa nije validna."
307
+
308
+ #: classes/class.swpm-front-registration.php:200
309
+ msgid "No user found with that email address."
310
+ msgstr "Korisnik s tom email adresom nije pronađen."
311
+
312
+ #: classes/class.swpm-front-registration.php:201
313
+ #: classes/class.swpm-front-registration.php:225
314
+ msgid "Email Address: "
315
+ msgstr "Email Adresa:"
316
+
317
+ #: classes/class.swpm-front-registration.php:224
318
+ msgid "New password has been sent to your email address."
319
+ msgstr "Nova šifra je poslana na email."
320
+
321
+ #: classes/class.swpm-init-time-tasks.php:108
322
+ msgid "Sorry, Nonce verification failed."
323
+ msgstr ""
324
+
325
+ #: classes/class.swpm-init-time-tasks.php:115
326
+ msgid "Sorry, Password didn't match."
327
+ msgstr "Šifra se ne podudara."
328
+
329
+ #: classes/class.swpm-level-form.php:47
330
+ msgid "Date format is not valid."
331
+ msgstr "Format datuma nije validan."
332
+
333
+ #: classes/class.swpm-level-form.php:55
334
+ msgid "Access duration must be > 0."
335
+ msgstr ""
336
+
337
+ #: classes/class.swpm-member-utils.php:22
338
+ #: classes/class.swpm-member-utils.php:30
339
+ #: classes/class.swpm-member-utils.php:38
340
+ #: classes/class.swpm-member-utils.php:48
341
+ msgid "User is not logged in."
342
+ msgstr "Korisnik nije ulogovan."
343
+
344
+ #: classes/class.swpm-members.php:9
345
+ msgid "Member"
346
+ msgstr "Član"
347
+
348
+ #: classes/class.swpm-members.php:19 views/add.php:6 views/admin_add.php:11
349
+ #: views/admin_edit.php:9 views/edit.php:5 views/login.php:5
350
+ msgid "Username"
351
+ msgstr "Krorisničko ime"
352
+
353
+ #: classes/class.swpm-members.php:20
354
+ #: classes/admin-includes/class.swpm-payments-list-table.php:74
355
+ #: views/add.php:22 views/admin_member_form_common_part.php:15
356
+ #: views/edit.php:21
357
+ msgid "First Name"
358
+ msgstr "Ime"
359
+
360
+ #: classes/class.swpm-members.php:21
361
+ #: classes/admin-includes/class.swpm-payments-list-table.php:75
362
+ #: views/add.php:26 views/admin_member_form_common_part.php:19
363
+ #: views/edit.php:25
364
+ msgid "Last Name"
365
+ msgstr "Prezime"
366
+
367
+ #: classes/class.swpm-members.php:22 views/add.php:10 views/edit.php:9
368
+ msgid "Email"
369
+ msgstr ""
370
+
371
+ #: classes/class.swpm-members.php:24 views/admin_member_form_common_part.php:11
372
+ msgid "Access Starts"
373
+ msgstr "Pristup počinje"
374
+
375
+ #: classes/class.swpm-members.php:25
376
+ msgid "Account State"
377
+ msgstr "Stanje Računa"
378
+
379
+ #: classes/class.swpm-members.php:41
380
+ #: classes/class.swpm-membership-levels.php:35
381
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:80
382
+ #: classes/admin-includes/class.swpm-payments-list-table.php:95
383
+ msgid "Delete"
384
+ msgstr "Izbriši"
385
+
386
+ #: classes/class.swpm-members.php:42
387
+ msgid "Set Status to Active"
388
+ msgstr "Promijeni status u Aktivno"
389
+
390
+ #: classes/class.swpm-members.php:44
391
+ msgid "Set Status to Inactive"
392
+ msgstr "Promijeni status u Neaktivno"
393
+
394
+ #: classes/class.swpm-members.php:45
395
+ msgid "Set Status to Pending"
396
+ msgstr "Promijeni status u Na Čekanju"
397
+
398
+ #: classes/class.swpm-members.php:46
399
+ msgid "Set Status to Expired"
400
+ msgstr "Promijeni status u Istekao"
401
+
402
+ #: classes/class.swpm-members.php:121
403
+ msgid "No Member found."
404
+ msgstr "Nije pronađen nijedan član."
405
+
406
+ #: classes/class.swpm-membership-level.php:38
407
+ msgid "Membership Level Creation Successful."
408
+ msgstr ""
409
+
410
+ #: classes/class.swpm-membership-level.php:57
411
+ msgid "Updated Successfully."
412
+ msgstr "Uspješno Ažurirano."
413
+
414
+ #: classes/class.swpm-membership-levels.php:21
415
+ msgid "Role"
416
+ msgstr ""
417
+
418
+ #: classes/class.swpm-membership-levels.php:22
419
+ msgid "Access Valid For/Until"
420
+ msgstr "Pristup Validan Do"
421
+
422
+ #: classes/class.swpm-misc-utils.php:50
423
+ msgid "Registration"
424
+ msgstr "Registracija"
425
+
426
+ #: classes/class.swpm-misc-utils.php:73
427
+ msgid "Member Login"
428
+ msgstr ""
429
+
430
+ #: classes/class.swpm-misc-utils.php:96
431
+ msgid "Profile"
432
+ msgstr "Račun"
433
+
434
+ #: classes/class.swpm-misc-utils.php:119
435
+ msgid "Password Reset"
436
+ msgstr "Resetiraj Šifru"
437
+
438
+ #: classes/class.swpm-settings.php:21 classes/class.swpm-settings.php:39
439
+ msgid "General Settings"
440
+ msgstr "Generalne Postavke"
441
+
442
+ #: classes/class.swpm-settings.php:21
443
+ msgid "Payment Settings"
444
+ msgstr "Opcije Plaćanja"
445
+
446
+ #: classes/class.swpm-settings.php:22
447
+ msgid "Email Settings"
448
+ msgstr "Email Opcije"
449
+
450
+ #: classes/class.swpm-settings.php:22
451
+ msgid "Tools"
452
+ msgstr "Alati"
453
+
454
+ #: classes/class.swpm-settings.php:22 classes/class.swpm-settings.php:150
455
+ msgid "Advanced Settings"
456
+ msgstr "Napredne Opcije"
457
+
458
+ #: classes/class.swpm-settings.php:22
459
+ msgid "Addons Settings"
460
+ msgstr ""
461
+
462
+ #: classes/class.swpm-settings.php:38
463
+ msgid "Plugin Documentation"
464
+ msgstr ""
465
+
466
+ #: classes/class.swpm-settings.php:40
467
+ msgid "Enable Free Membership"
468
+ msgstr ""
469
+
470
+ #: classes/class.swpm-settings.php:41
471
+ msgid ""
472
+ "Enable/disable registration for free membership level. When you enable this "
473
+ "option, make sure to specify a free membership level ID in the field below."
474
+ msgstr ""
475
+
476
+ #: classes/class.swpm-settings.php:42
477
+ msgid "Free Membership Level ID"
478
+ msgstr ""
479
+
480
+ #: classes/class.swpm-settings.php:43
481
+ msgid "Assign free membership level ID"
482
+ msgstr ""
483
+
484
+ #: classes/class.swpm-settings.php:44
485
+ msgid "Enable More Tag Protection"
486
+ msgstr ""
487
+
488
+ #: classes/class.swpm-settings.php:45
489
+ msgid ""
490
+ "Enables or disables \"more\" tag protection in the posts and pages. Anything "
491
+ "after the More tag is protected. Anything before the more tag is teaser "
492
+ "content."
493
+ msgstr ""
494
+
495
+ #: classes/class.swpm-settings.php:46
496
+ msgid "Hide Adminbar"
497
+ msgstr ""
498
+
499
+ #: classes/class.swpm-settings.php:47
500
+ msgid ""
501
+ "WordPress shows an admin toolbar to the logged in users of the site. Check "
502
+ "this box if you want to hide that admin toolbar in the fronend of your site."
503
+ msgstr ""
504
+
505
+ #: classes/class.swpm-settings.php:49
506
+ msgid "Default Account Status"
507
+ msgstr ""
508
+
509
+ #: classes/class.swpm-settings.php:52
510
+ msgid ""
511
+ "Select the default account status for newly registered users. If you want to "
512
+ "manually approve the members then you can set the status to \"Pending\"."
513
+ msgstr ""
514
+
515
+ #: classes/class.swpm-settings.php:53
516
+ msgid "Allow Account Deletion"
517
+ msgstr ""
518
+
519
+ #: classes/class.swpm-settings.php:55
520
+ msgid "Allow users to delete their accounts."
521
+ msgstr ""
522
+
523
+ #: classes/class.swpm-settings.php:56
524
+ msgid "Auto Delete Pending Account"
525
+ msgstr ""
526
+
527
+ #: classes/class.swpm-settings.php:59
528
+ msgid "Select how long you want to keep \"pending\" account."
529
+ msgstr ""
530
+
531
+ #: classes/class.swpm-settings.php:67
532
+ msgid "Pages Settings"
533
+ msgstr ""
534
+
535
+ #: classes/class.swpm-settings.php:68
536
+ msgid "Login Page URL"
537
+ msgstr ""
538
+
539
+ #: classes/class.swpm-settings.php:70
540
+ msgid "Registration Page URL"
541
+ msgstr ""
542
+
543
+ #: classes/class.swpm-settings.php:72
544
+ msgid "Join Us Page URL"
545
+ msgstr ""
546
+
547
+ #: classes/class.swpm-settings.php:74
548
+ msgid "Edit Profile Page URL"
549
+ msgstr ""
550
+
551
+ #: classes/class.swpm-settings.php:76
552
+ msgid "Password Reset Page URL"
553
+ msgstr ""
554
+
555
+ #: classes/class.swpm-settings.php:79
556
+ msgid "Test & Debug Settings"
557
+ msgstr ""
558
+
559
+ #: classes/class.swpm-settings.php:81
560
+ msgid "Check this option to enable debug logging."
561
+ msgstr ""
562
+
563
+ #: classes/class.swpm-settings.php:86
564
+ msgid "Enable Sandbox Testing"
565
+ msgstr ""
566
+
567
+ #: classes/class.swpm-settings.php:87
568
+ msgid "Enable this option if you want to do sandbox payment testing."
569
+ msgstr ""
570
+
571
+ #: classes/class.swpm-settings.php:97 classes/class.swpm-settings.php:145
572
+ #: classes/class.swpm-settings.php:243
573
+ msgid "Settings updated!"
574
+ msgstr "Opcije ažurirane!"
575
+
576
+ #: classes/class.swpm-settings.php:102
577
+ msgid "Email Misc. Settings"
578
+ msgstr "Email Misc. Opcije"
579
+
580
+ #: classes/class.swpm-settings.php:103
581
+ msgid "From Email Address"
582
+ msgstr ""
583
+
584
+ #: classes/class.swpm-settings.php:106
585
+ msgid "Email Settings (Prompt to Complete Registration )"
586
+ msgstr ""
587
+
588
+ #: classes/class.swpm-settings.php:107 classes/class.swpm-settings.php:113
589
+ #: classes/class.swpm-settings.php:125 classes/class.swpm-settings.php:132
590
+ msgid "Email Subject"
591
+ msgstr ""
592
+
593
+ #: classes/class.swpm-settings.php:109 classes/class.swpm-settings.php:115
594
+ #: classes/class.swpm-settings.php:127 classes/class.swpm-settings.php:134
595
+ msgid "Email Body"
596
+ msgstr ""
597
+
598
+ #: classes/class.swpm-settings.php:112
599
+ msgid "Email Settings (Registration Complete)"
600
+ msgstr ""
601
+
602
+ #: classes/class.swpm-settings.php:117
603
+ msgid "Send Notification to Admin"
604
+ msgstr ""
605
+
606
+ #: classes/class.swpm-settings.php:118
607
+ msgid ""
608
+ "Enable this option if you want the admin to receive a notification when a "
609
+ "member registers."
610
+ msgstr ""
611
+
612
+ #: classes/class.swpm-settings.php:119
613
+ msgid "Admin Email Address"
614
+ msgstr ""
615
+
616
+ #: classes/class.swpm-settings.php:120
617
+ msgid ""
618
+ "Enter the email address where you want the admin notification email to be "
619
+ "sent to."
620
+ msgstr ""
621
+
622
+ #: classes/class.swpm-settings.php:121
623
+ msgid "Send Email to Member When Added via Admin Dashboard"
624
+ msgstr ""
625
+
626
+ #: classes/class.swpm-settings.php:124
627
+ msgid "Email Settings (Password Reset)"
628
+ msgstr ""
629
+
630
+ #: classes/class.swpm-settings.php:131
631
+ msgid " Email Settings (Account Upgrade Notification)"
632
+ msgstr ""
633
+
634
+ #: classes/class.swpm-settings.php:152
635
+ msgid "Enable Expired Account Login"
636
+ msgstr ""
637
+
638
+ #: classes/class.swpm-settings.php:153
639
+ msgid ""
640
+ "When enabled, expired members will be able to log into the system but won't "
641
+ "be able to view any protected content. This allows them to easily renew "
642
+ "their account by making another payment."
643
+ msgstr ""
644
+
645
+ #: classes/class.swpm-settings.php:377
646
+ msgid "Not a Member?"
647
+ msgstr "Nisi član?"
648
+
649
+ #: classes/class.swpm-settings.php:377 views/login.php:27
650
+ msgid "Join Us"
651
+ msgstr "Pridruži Se"
652
+
653
+ #: classes/class.swpm-utils.php:67
654
+ msgid "Active"
655
+ msgstr "Aktivan"
656
+
657
+ #: classes/class.swpm-utils.php:68
658
+ msgid "Inactive"
659
+ msgstr "Neaktivan"
660
+
661
+ #: classes/class.swpm-utils.php:69
662
+ msgid "Pending"
663
+ msgstr "Na Čekanju"
664
+
665
+ #: classes/class.swpm-utils.php:70
666
+ msgid "Expired"
667
+ msgstr "Istekao"
668
+
669
+ #: classes/class.swpm-utils.php:297
670
+ msgid "Never"
671
+ msgstr "Nkad"
672
+
673
+ #: classes/class.swpm-utils.php:371
674
+ msgid "Delete Account"
675
+ msgstr "Izbriši Account"
676
+
677
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:63
678
+ msgid "Payment Button ID"
679
+ msgstr ""
680
+
681
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:64
682
+ msgid "Payment Button Title"
683
+ msgstr ""
684
+
685
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:65
686
+ msgid "Membership Level ID"
687
+ msgstr ""
688
+
689
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:66
690
+ msgid "Button Shortcode"
691
+ msgstr ""
692
+
693
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:106
694
+ #: views/admin_members_list.php:15
695
+ #: views/payments/admin_all_payment_transactions.php:33
696
+ msgid "The selected entry was deleted!"
697
+ msgstr ""
698
+
699
+ #: classes/admin-includes/class.swpm-payments-list-table.php:53
700
+ msgid "View Profile"
701
+ msgstr "Vidi Račun"
702
+
703
+ #: classes/admin-includes/class.swpm-payments-list-table.php:72
704
+ msgid "Row ID"
705
+ msgstr ""
706
+
707
+ #: classes/admin-includes/class.swpm-payments-list-table.php:73
708
+ #: views/forgot_password.php:5
709
+ msgid "Email Address"
710
+ msgstr "Email Adresa"
711
+
712
+ #: classes/admin-includes/class.swpm-payments-list-table.php:76
713
+ msgid "Member Profile"
714
+ msgstr "Račun Člana"
715
+
716
+ #: classes/admin-includes/class.swpm-payments-list-table.php:77
717
+ msgid "Date"
718
+ msgstr "Datum"
719
+
720
+ #: classes/admin-includes/class.swpm-payments-list-table.php:78
721
+ msgid "Transaction ID"
722
+ msgstr "ID Transakcije"
723
+
724
+ #: classes/admin-includes/class.swpm-payments-list-table.php:79
725
+ msgid "Amount"
726
+ msgstr "Iznos"
727
+
728
+ #: classes/common/class.swpm-list-table.php:137
729
+ msgid "List View"
730
+ msgstr "Izlistaj Pregled"
731
+
732
+ #: classes/common/class.swpm-list-table.php:138
733
+ msgid "Excerpt View"
734
+ msgstr "Isječak Pregleda"
735
+
736
+ #: classes/common/class.swpm-list-table.php:305
737
+ msgid "No items found."
738
+ msgstr "Ništa nije pronađeno."
739
+
740
+ #: classes/common/class.swpm-list-table.php:431
741
+ msgid "Select bulk action"
742
+ msgstr ""
743
+
744
+ #: classes/common/class.swpm-list-table.php:433
745
+ msgid "Bulk Actions"
746
+ msgstr ""
747
+
748
+ #: classes/common/class.swpm-list-table.php:443
749
+ msgid "Apply"
750
+ msgstr "Primijeni"
751
+
752
+ #: classes/common/class.swpm-list-table.php:543
753
+ msgid "Filter by date"
754
+ msgstr "Filtriraj po datumu"
755
+
756
+ #: classes/common/class.swpm-list-table.php:545
757
+ msgid "All dates"
758
+ msgstr "Svi datumi"
759
+
760
+ #: classes/common/class.swpm-list-table.php:555
761
+ #, php-format
762
+ msgid "%1$s %2$d"
763
+ msgstr ""
764
+
765
+ #: classes/common/class.swpm-list-table.php:599
766
+ #, php-format
767
+ msgid "%s pending"
768
+ msgstr ""
769
+
770
+ #: classes/common/class.swpm-list-table.php:704
771
+ msgid "Select Page"
772
+ msgstr ""
773
+
774
+ #: classes/common/class.swpm-list-table.php:848
775
+ msgid "Select All"
776
+ msgstr ""
777
+
778
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:47
779
+ msgid "Your membership profile will be updated to reflect the payment."
780
+ msgstr "Tvoj račun će biti ažuriran zbog plaćanja."
781
+
782
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:48
783
+ msgid "Your profile username: "
784
+ msgstr "Tvoje korisničko ime:"
785
+
786
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:60
787
+ msgid "Click on the following link to complete the registration."
788
+ msgstr "Klikni ovdje da kompletiraš registraciju."
789
+
790
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:61
791
+ msgid "Click here to complete your paid registration"
792
+ msgstr "Klikni ovdje da kompletiraš plaćenu registraciju."
793
+
794
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:66
795
+ msgid ""
796
+ "If you have just made a membership payment then your payment is yet to be "
797
+ "processed. Please check back in a few minutes. An email will be sent to you "
798
+ "with the details shortly."
799
+ msgstr ""
800
+ "Ako si tek uplatio članstvo onda je tvoja uplata još u procesu. Provjeri za "
801
+ "nekoliko minuta. Email će ti biti poslan sa detaljima uskoro."
802
+
803
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:80
804
+ msgid "Expiry: "
805
+ msgstr "Istek:"
806
+
807
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:82
808
+ msgid "You are not logged-in as a member"
809
+ msgstr "Nisi ulogovan kao član"
810
+
811
+ #: views/add.php:14 views/admin_add.php:19 views/admin_edit.php:17
812
+ #: views/edit.php:13 views/login.php:11
813
+ msgid "Password"
814
+ msgstr "Šifra"
815
+
816
+ #: views/add.php:18 views/edit.php:17
817
+ msgid "Repeat Password"
818
+ msgstr "Ponovi Šifru"
819
+
820
+ #: views/add.php:41
821
+ msgid "Register"
822
+ msgstr "Regististracija"
823
+
824
+ #: views/admin_add.php:6
825
+ msgid "Add Member"
826
+ msgstr "Dodaj Člana"
827
+
828
+ #: views/admin_add.php:7
829
+ msgid "Create a brand new user and add it to this site."
830
+ msgstr ""
831
+
832
+ #: views/admin_add.php:11 views/admin_add.php:15 views/admin_add_level.php:11
833
+ #: views/admin_add_level.php:15 views/admin_add_level.php:19
834
+ #: views/admin_edit.php:9 views/admin_edit.php:13 views/admin_edit_level.php:10
835
+ #: views/admin_edit_level.php:14 views/admin_edit_level.php:18
836
+ msgid "(required)"
837
+ msgstr "(obavezno)"
838
+
839
+ #: views/admin_add.php:15 views/admin_edit.php:13
840
+ msgid "E-mail"
841
+ msgstr ""
842
+
843
+ #: views/admin_add.php:19
844
+ msgid "(twice, required)"
845
+ msgstr "(dva puta, obavezno)"
846
+
847
+ #: views/admin_add.php:24 views/admin_edit.php:21
848
+ msgid "Strength indicator"
849
+ msgstr "Snaga šifre"
850
+
851
+ #: views/admin_add.php:25 views/admin_edit.php:22
852
+ msgid ""
853
+ "Hint: The password should be at least seven characters long. To make it "
854
+ "stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
855
+ "$ % ^ &amp; )."
856
+ msgstr "Napomena: Šifra mora imati najmanje 7 znakova."
857
+
858
+ #: views/admin_add.php:29 views/admin_edit.php:26 views/loggedin.php:7
859
+ msgid "Account Status"
860
+ msgstr "Stanje Računa"
861
+
862
+ #: views/admin_add.php:39
863
+ msgid "Add New Member "
864
+ msgstr "Dodaj novog člana"
865
+
866
+ #: views/admin_addon_settings.php:3 views/admin_settings.php:3
867
+ #: views/admin_tools_settings.php:3 views/payments/admin_payment_settings.php:3
868
+ msgid "Simple WP Membership::Settings"
869
+ msgstr "Simple WP Membership::Opcije"
870
+
871
+ #: views/admin_addon_settings.php:8
872
+ msgid ""
873
+ "Some of the simple membership plugin's addon settings and options will be "
874
+ "displayed here (if you have them)"
875
+ msgstr ""
876
+
877
+ #: views/admin_addon_settings.php:13
878
+ msgid "Save Changes"
879
+ msgstr "Spremi Promjene"
880
+
881
+ #: views/admin_add_level.php:6
882
+ msgid "Create new membership level."
883
+ msgstr ""
884
+
885
+ #: views/admin_add_level.php:11 views/admin_edit_level.php:10
886
+ msgid "Membership Level Name"
887
+ msgstr "Ime Korisničkog Levela"
888
+
889
+ #: views/admin_add_level.php:15 views/admin_edit_level.php:14
890
+ msgid "Default WordPress Role"
891
+ msgstr ""
892
+
893
+ #: views/admin_add_level.php:19 views/admin_edit_level.php:18
894
+ msgid "Access Duration"
895
+ msgstr ""
896
+
897
+ #: views/admin_add_level.php:22
898
+ msgid "No Expiry (Access for this level will not expire until cancelled"
899
+ msgstr ""
900
+
901
+ #: views/admin_add_level.php:23 views/admin_add_level.php:25
902
+ #: views/admin_add_level.php:27 views/admin_add_level.php:29
903
+ #: views/admin_edit_level.php:22 views/admin_edit_level.php:25
904
+ #: views/admin_edit_level.php:28 views/admin_edit_level.php:31
905
+ msgid "Expire After"
906
+ msgstr ""
907
+
908
+ #: views/admin_add_level.php:24 views/admin_edit_level.php:23
909
+ msgid "Days (Access expires after given number of days)"
910
+ msgstr ""
911
+
912
+ #: views/admin_add_level.php:26
913
+ msgid "Weeks (Access expires after given number of weeks"
914
+ msgstr ""
915
+
916
+ #: views/admin_add_level.php:28 views/admin_edit_level.php:29
917
+ msgid "Months (Access expires after given number of months)"
918
+ msgstr ""
919
+
920
+ #: views/admin_add_level.php:30 views/admin_edit_level.php:32
921
+ msgid "Years (Access expires after given number of years)"
922
+ msgstr ""
923
+
924
+ #: views/admin_add_level.php:31 views/admin_edit_level.php:34
925
+ msgid "Fixed Date Expiry"
926
+ msgstr ""
927
+
928
+ #: views/admin_add_level.php:32 views/admin_edit_level.php:35
929
+ msgid "(Access expires on a fixed date)"
930
+ msgstr ""
931
+
932
+ #: views/admin_add_level.php:38
933
+ msgid "Add New Membership Level "
934
+ msgstr ""
935
+
936
+ #: views/admin_add_ons_page.php:7
937
+ msgid "Simple WP Membership::Add-ons"
938
+ msgstr ""
939
+
940
+ #: views/admin_category_list.php:2
941
+ msgid "Simple WP Membership::Categories"
942
+ msgstr ""
943
+
944
+ #: views/admin_category_list.php:7
945
+ msgid ""
946
+ "First of all, globally protect the category on your site by selecting "
947
+ "\"General Protection\" from the drop-down box below and then select the "
948
+ "categories that should be protected from non-logged in users."
949
+ msgstr ""
950
+
951
+ #: views/admin_category_list.php:10
952
+ msgid ""
953
+ "Next, select an existing membership level from the drop-down box below and "
954
+ "then select the categories you want to grant access to (for that particular "
955
+ "membership level)."
956
+ msgstr ""
957
+
958
+ #: views/admin_edit.php:5
959
+ msgid "Edit Member"
960
+ msgstr ""
961
+
962
+ #: views/admin_edit.php:6
963
+ msgid "Edit existing member details."
964
+ msgstr ""
965
+
966
+ #: views/admin_edit.php:17
967
+ msgid "(twice, leave empty to retain old password)"
968
+ msgstr "(dvaput, ostavi prazno ako želiš staru šifru)"
969
+
970
+ #: views/admin_edit.php:33
971
+ msgid "Notify User"
972
+ msgstr ""
973
+
974
+ #: views/admin_edit.php:40
975
+ msgid "Subscriber ID/Reference"
976
+ msgstr ""
977
+
978
+ #: views/admin_edit.php:44
979
+ msgid "Last Accessed From IP"
980
+ msgstr ""
981
+
982
+ #: views/admin_edit.php:52
983
+ msgid "Edit User "
984
+ msgstr ""
985
+
986
+ #: views/admin_edit_level.php:5
987
+ msgid "Edit membership level"
988
+ msgstr ""
989
+
990
+ #: views/admin_edit_level.php:6
991
+ msgid "Edit membership level."
992
+ msgstr ""
993
+
994
+ #: views/admin_edit_level.php:21
995
+ msgid "No Expiry (Access for this level will not expire until cancelled)"
996
+ msgstr ""
997
+
998
+ #: views/admin_edit_level.php:26
999
+ msgid "Weeks (Access expires after given number of weeks)"
1000
+ msgstr ""
1001
+
1002
+ #: views/admin_edit_level.php:41
1003
+ msgid "Edit Membership Level "
1004
+ msgstr ""
1005
+
1006
+ #: views/admin_members.php:2
1007
+ msgid "Simple WP Membership::Members"
1008
+ msgstr ""
1009
+
1010
+ #: views/admin_members.php:3 views/admin_members_list.php:30
1011
+ msgid "Add New"
1012
+ msgstr "Dodaj"
1013
+
1014
+ #: views/admin_membership_levels.php:2
1015
+ msgid "Simple WP Membership::Membership Levels"
1016
+ msgstr ""
1017
+
1018
+ #: views/admin_membership_levels.php:12 views/admin_members_list.php:6
1019
+ msgid "search"
1020
+ msgstr "pretraga"
1021
+
1022
+ #: views/admin_membership_level_menu.php:2
1023
+ msgid "Membership level"
1024
+ msgstr "Korisnički Level"
1025
+
1026
+ #: views/admin_membership_level_menu.php:3
1027
+ msgid "Manage Content Production"
1028
+ msgstr ""
1029
+
1030
+ #: views/admin_membership_level_menu.php:4
1031
+ msgid "Category Protection"
1032
+ msgstr ""
1033
+
1034
+ #: views/admin_membership_manage.php:17
1035
+ msgid "Example Content Protection Settings"
1036
+ msgstr ""
1037
+
1038
+ #: views/admin_member_form_common_part.php:23
1039
+ msgid "Gender"
1040
+ msgstr "Spol"
1041
+
1042
+ #: views/admin_member_form_common_part.php:30 views/edit.php:29
1043
+ msgid "Phone"
1044
+ msgstr "Telefon"
1045
+
1046
+ #: views/admin_member_form_common_part.php:34 views/edit.php:33
1047
+ msgid "Street"
1048
+ msgstr "Ulica"
1049
+
1050
+ #: views/admin_member_form_common_part.php:38 views/edit.php:37
1051
+ msgid "City"
1052
+ msgstr "Grad"
1053
+
1054
+ #: views/admin_member_form_common_part.php:42 views/edit.php:41
1055
+ msgid "State"
1056
+ msgstr "Kanton/Županija"
1057
+
1058
+ #: views/admin_member_form_common_part.php:46 views/edit.php:45
1059
+ msgid "Zipcode"
1060
+ msgstr "Poštanski broj"
1061
+
1062
+ #: views/admin_member_form_common_part.php:50 views/edit.php:49
1063
+ msgid "Country"
1064
+ msgstr "Država"
1065
+
1066
+ #: views/admin_member_form_common_part.php:54
1067
+ msgid "Company"
1068
+ msgstr "Kompanije"
1069
+
1070
+ #: views/admin_member_form_common_part.php:58
1071
+ msgid "Member Since"
1072
+ msgstr "Član Od"
1073
+
1074
+ #: views/admin_tools_settings.php:9
1075
+ msgid "Generate a Registration Completion link"
1076
+ msgstr "Generiraj link za Registraciju"
1077
+
1078
+ #: views/admin_tools_settings.php:12
1079
+ msgid ""
1080
+ "You can manually generate a registration completion link here and give it to "
1081
+ "your customer if they have missed the email that was automatically sent out "
1082
+ "to them after the payment."
1083
+ msgstr ""
1084
+
1085
+ #: views/admin_tools_settings.php:17
1086
+ msgid "Generate Registration Completion Link"
1087
+ msgstr ""
1088
+
1089
+ #: views/admin_tools_settings.php:20
1090
+ msgid "OR"
1091
+ msgstr ""
1092
+
1093
+ #: views/admin_tools_settings.php:21
1094
+ msgid "For All Pending Registrations"
1095
+ msgstr ""
1096
+
1097
+ #: views/admin_tools_settings.php:24
1098
+ msgid "Registration Completion Links Will Appear Below:"
1099
+ msgstr ""
1100
+
1101
+ #: views/admin_tools_settings.php:31
1102
+ msgid "Send Registration Reminder Email too"
1103
+ msgstr ""
1104
+
1105
+ #: views/admin_tools_settings.php:34
1106
+ msgid "Submit"
1107
+ msgstr "Priloži"
1108
+
1109
+ #: views/edit.php:59
1110
+ msgid "Update"
1111
+ msgstr "Ažuriraj"
1112
+
1113
+ #: views/forgot_password.php:12
1114
+ msgid "Reset Password"
1115
+ msgstr "Resetiraj Šifru"
1116
+
1117
+ #: views/loggedin.php:3
1118
+ msgid "Logged in as"
1119
+ msgstr "Ulogovan kao"
1120
+
1121
+ #: views/loggedin.php:11
1122
+ msgid "Membership"
1123
+ msgstr "Članstvo"
1124
+
1125
+ #: views/loggedin.php:15
1126
+ msgid "Account Expiry"
1127
+ msgstr "Istek Računa"
1128
+
1129
+ #: views/loggedin.php:19
1130
+ msgid "Logout"
1131
+ msgstr "Odloguj me"
1132
+
1133
+ #: views/login.php:18
1134
+ msgid "Remember Me"
1135
+ msgstr "Zapamti"
1136
+
1137
+ #: views/login.php:24
1138
+ msgid "Forgot Password"
1139
+ msgstr "Zaboravio/la Sam Šifru"
1140
+
1141
+ #: views/payments/admin_all_payment_transactions.php:7
1142
+ msgid "All the payments/transactions of your members are recorded here."
1143
+ msgstr ""
1144
+
1145
+ #: views/payments/admin_all_payment_transactions.php:14
1146
+ msgid "Search for a transaction by using email or name"
1147
+ msgstr ""
1148
+
1149
+ #: views/payments/admin_all_payment_transactions.php:18
1150
+ msgid "Search"
1151
+ msgstr "Pretraga"
1152
+
1153
+ #: views/payments/admin_create_payment_buttons.php:13
1154
+ msgid ""
1155
+ "You can create new payment button for your memberships using this interface."
1156
+ msgstr ""
1157
+
1158
+ #: views/payments/admin_create_payment_buttons.php:22
1159
+ msgid "Select Payment Button Type"
1160
+ msgstr ""
1161
+
1162
+ #: views/payments/admin_create_payment_buttons.php:34
1163
+ msgid "Next"
1164
+ msgstr "Dalje"
1165
+
1166
+ #: views/payments/admin_edit_payment_buttons.php:12
1167
+ msgid "You can edit a payment button using this interface."
1168
+ msgstr ""
1169
+
1170
+ #: views/payments/admin_payments_page.php:9
1171
+ msgid "Simple Membership::Payments"
1172
+ msgstr ""
1173
+
1174
+ #: views/payments/admin_payment_buttons.php:7
1175
+ msgid ""
1176
+ "All the membership buttons that you created in the plugin are displayed here."
1177
+ msgstr ""
1178
+
1179
+ #: views/payments/admin_payment_settings.php:31
1180
+ msgid "PayPal Integration Settings"
1181
+ msgstr ""
1182
+
1183
+ #: views/payments/admin_payment_settings.php:34
1184
+ msgid "Generate the \"Advanced Variables\" Code for your PayPal button"
1185
+ msgstr ""
1186
+
1187
+ #: views/payments/admin_payment_settings.php:37
1188
+ msgid "Enter the Membership Level ID"
1189
+ msgstr ""
1190
+
1191
+ #: views/payments/admin_payment_settings.php:39
1192
+ msgid "Generate Code"
1193
+ msgstr "Generiraj Kod"
1194
+
1195
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:18
1196
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:192
1197
+ msgid "PayPal Buy Now Button Configuration"
1198
+ msgstr ""
1199
+
1200
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:28
1201
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:209
1202
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:29
1203
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:302
1204
+ msgid "Button Title"
1205
+ msgstr ""
1206
+
1207
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:46
1208
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:227
1209
+ msgid "Payment Amount"
1210
+ msgstr ""
1211
+
1212
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:54
1213
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:235
1214
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:47
1215
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:320
1216
+ msgid "Payment Currency"
1217
+ msgstr ""
1218
+
1219
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:93
1220
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:274
1221
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:173
1222
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:446
1223
+ msgid "Return URL"
1224
+ msgstr ""
1225
+
1226
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:101
1227
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:282
1228
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:86
1229
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:359
1230
+ msgid "PayPal Email"
1231
+ msgstr ""
1232
+
1233
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:109
1234
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:290
1235
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:181
1236
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:454
1237
+ msgid "Button Image URL"
1238
+ msgstr ""
1239
+
1240
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:119
1241
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:300
1242
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:193
1243
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:466
1244
+ msgid "Save Payment Data"
1245
+ msgstr ""
1246
+
1247
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:201
1248
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:294
1249
+ msgid "Button ID"
1250
+ msgstr ""
1251
+
1252
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:20
1253
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:288
1254
+ msgid "PayPal Subscription Button Configuration"
1255
+ msgstr ""
1256
+
1257
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:94
1258
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:367
1259
+ msgid "Billing Amount Each Cycle"
1260
+ msgstr ""
1261
+
1262
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:102
1263
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:375
1264
+ msgid "Billing Cycle"
1265
+ msgstr ""
1266
+
1267
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:115
1268
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:388
1269
+ msgid "Billing Cycle Count"
1270
+ msgstr ""
1271
+
1272
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:123
1273
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:396
1274
+ msgid "Re-attempt on Failure"
1275
+ msgstr ""
1276
+
1277
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:136
1278
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:409
1279
+ msgid ""
1280
+ "Trial Billing Details (Leave empty if you are not offering a trial period)"
1281
+ msgstr ""
1282
+
1283
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:142
1284
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:415
1285
+ msgid "Trial Billing Amount"
1286
+ msgstr ""
1287
+
1288
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:150
1289
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:423
1290
+ msgid "Trial Billing Period"
1291
+ msgstr ""
1292
+
1293
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:167
1294
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:440
1295
+ msgid "Optional Details"
1296
+ msgstr ""
1297
+
1298
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:77
1299
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:79
1300
+ msgid "Buy Now"
1301
+ msgstr ""
1302
+
1303
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:197
1304
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:199
1305
+ msgid "Subscribe Now"
1306
+ msgstr "Pretplata"
languages/swpm-ja_JP.mo ADDED
Binary file
languages/swpm-ja_JP.po ADDED
@@ -0,0 +1,1328 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: simple membership\n"
4
+ "POT-Creation-Date: 2016-05-20 21:44+0900\n"
5
+ "PO-Revision-Date: 2016-05-20 23:23+0900\n"
6
+ "Language-Team: \n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 1.8.7\n"
11
+ "X-Poedit-KeywordsList: __;_e\n"
12
+ "X-Poedit-Basepath: .\n"
13
+ "Last-Translator: \n"
14
+ "Plural-Forms: nplurals=1; plural=0;\n"
15
+ "Language: ja_JP\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: classes/class.simple-wp-membership.php:264
19
+ msgid "You are not logged in."
20
+ msgstr "ログインしていません。"
21
+
22
+ #: classes/class.simple-wp-membership.php:298
23
+ msgid "Simple WP Membership Protection"
24
+ msgstr "Simple WP Membership プロテクション"
25
+
26
+ #: classes/class.simple-wp-membership.php:310
27
+ msgid "Simple Membership Protection options"
28
+ msgstr "Simple WP Membership プロテクション オプション"
29
+
30
+ #: classes/class.simple-wp-membership.php:326
31
+ msgid "Do you want to protect this content?"
32
+ msgstr "このコンテンツを限定公開にしますか?"
33
+
34
+ #: classes/class.simple-wp-membership.php:331
35
+ msgid "Select the membership level that can access this content:"
36
+ msgstr "このコンテンツを閲覧できる会員レベルを選択してください:"
37
+
38
+ #: classes/class.simple-wp-membership.php:464
39
+ msgid "WP Membership"
40
+ msgstr "WP Membership"
41
+
42
+ #: classes/class.simple-wp-membership.php:465 classes/class.swpm-members.php:10
43
+ #: views/admin_members_menu.php:2
44
+ msgid "Members"
45
+ msgstr "会員"
46
+
47
+ #: classes/class.simple-wp-membership.php:466
48
+ #: classes/class.swpm-category-list.php:20
49
+ #: classes/class.swpm-membership-levels.php:11
50
+ msgid "Membership Levels"
51
+ msgstr "会員レベル"
52
+
53
+ #: classes/class.simple-wp-membership.php:467
54
+ msgid "Settings"
55
+ msgstr "設定"
56
+
57
+ #: classes/class.simple-wp-membership.php:468
58
+ msgid "Payments"
59
+ msgstr "支払い"
60
+
61
+ #: classes/class.simple-wp-membership.php:469
62
+ msgid "Add-ons"
63
+ msgstr "アドオン"
64
+
65
+ #: classes/class.swpm-access-control.php:21
66
+ #: classes/class.swpm-access-control.php:28
67
+ #: classes/class.swpm-access-control.php:55
68
+ msgid "You need to login to view this content. "
69
+ msgstr "このコンテンツを閲覧するにはログインが必要です。"
70
+
71
+ #: classes/class.swpm-access-control.php:34
72
+ #: classes/class.swpm-access-control.php:60
73
+ msgid ""
74
+ "Your account has expired. Please renew your account to gain access to this "
75
+ "content."
76
+ msgstr "アカウントが期限切れです。アカウントの更新が必要です。"
77
+
78
+ #: classes/class.swpm-access-control.php:41
79
+ msgid "This content can only be viewed by members who joined on or before "
80
+ msgstr "このコンテンツを閲覧するにはログインが必要です。"
81
+
82
+ #: classes/class.swpm-access-control.php:46
83
+ #: classes/class.swpm-access-control.php:66
84
+ msgid "This content is not permitted for your membership level."
85
+ msgstr "このコンテンツはあなたの会員レベルでは閲覧できません。"
86
+
87
+ #: classes/class.swpm-access-control.php:84
88
+ msgid " The rest of the content is not permitted for your membership level."
89
+ msgstr "これからの先のコンテンツはあなたの会員レベルでは閲覧できません。"
90
+
91
+ #: classes/class.swpm-access-control.php:88
92
+ #: classes/class.swpm-access-control.php:106
93
+ msgid "You need to login to view the rest of the content. "
94
+ msgstr "このコンテンツを閲覧するにはログインが必要です。"
95
+
96
+ #: classes/class.swpm-admin-registration.php:54
97
+ msgid "Member record added successfully."
98
+ msgstr "会員情報が追加されました。"
99
+
100
+ #: classes/class.swpm-admin-registration.php:59
101
+ #: classes/class.swpm-admin-registration.php:81
102
+ #: classes/class.swpm-admin-registration.php:105
103
+ #: classes/class.swpm-membership-level.php:43
104
+ #: classes/class.swpm-membership-level.php:62
105
+ msgid "Please correct the following:"
106
+ msgstr "以下の内容を修正してください。"
107
+
108
+ #: classes/class.swpm-admin-registration.php:96
109
+ msgid "Your current password"
110
+ msgstr "現在のパスワード"
111
+
112
+ #: classes/class.swpm-ajax.php:14
113
+ msgid "Invalid Email Address"
114
+ msgstr "メールアドレスが無効です。"
115
+
116
+ #: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
117
+ msgid "Aready taken"
118
+ msgstr "すでに取得済みです。"
119
+
120
+ #: classes/class.swpm-ajax.php:30
121
+ msgid "Name contains invalid character"
122
+ msgstr "ユーザー名に無効な文字が含まれています。"
123
+
124
+ #: classes/class.swpm-ajax.php:37
125
+ msgid "Available"
126
+ msgstr "有効"
127
+
128
+ #: classes/class.swpm-auth.php:50
129
+ msgid "User Not Found."
130
+ msgstr "ユーザーが見つかりません。"
131
+
132
+ #: classes/class.swpm-auth.php:57
133
+ msgid "Password Empty or Invalid."
134
+ msgstr "パスワードが未記入または無効です。"
135
+
136
+ #: classes/class.swpm-auth.php:82
137
+ msgid "Account is inactive."
138
+ msgstr "アカウントが無効です。"
139
+
140
+ #: classes/class.swpm-auth.php:85
141
+ msgid "Account is pending."
142
+ msgstr "アカウントが保留中です。"
143
+
144
+ #: classes/class.swpm-auth.php:88 classes/class.swpm-auth.php:106
145
+ msgid "Account has expired."
146
+ msgstr "アカウントが期限切れです。"
147
+
148
+ #: classes/class.swpm-auth.php:114
149
+ msgid "You are logged in as:"
150
+ msgstr "ログイン名:"
151
+
152
+ #: classes/class.swpm-auth.php:160
153
+ msgid "Logged Out Successfully."
154
+ msgstr "ログアウトしました。"
155
+
156
+ #: classes/class.swpm-auth.php:210
157
+ msgid "Session Expired."
158
+ msgstr "セッションが期限切れです。"
159
+
160
+ #: classes/class.swpm-auth.php:219
161
+ msgid "Invalid Username"
162
+ msgstr "ユーザー名が無効です。"
163
+
164
+ #: classes/class.swpm-auth.php:227
165
+ msgid "Please login again."
166
+ msgstr "ログインしてください。"
167
+
168
+ #: classes/class.swpm-category-list.php:19 classes/class.swpm-members.php:23
169
+ #: classes/class.swpm-membership-levels.php:10
170
+ #: classes/class.swpm-membership-levels.php:20
171
+ #: classes/admin-includes/class.swpm-payments-list-table.php:80
172
+ #: views/add.php:30 views/admin_member_form_common_part.php:2 views/edit.php:53
173
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:36
174
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:217
175
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:37
176
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:310
177
+ msgid "Membership Level"
178
+ msgstr "会員レベル"
179
+
180
+ #: classes/class.swpm-category-list.php:33 classes/class.swpm-members.php:18
181
+ #: classes/class.swpm-membership-levels.php:19
182
+ msgid "ID"
183
+ msgstr "ID"
184
+
185
+ #: classes/class.swpm-category-list.php:34
186
+ msgid "Name"
187
+ msgstr "名前"
188
+
189
+ #: classes/class.swpm-category-list.php:35
190
+ msgid "Description"
191
+ msgstr "概要"
192
+
193
+ #: classes/class.swpm-category-list.php:36
194
+ msgid "Count"
195
+ msgstr "数"
196
+
197
+ #: classes/class.swpm-category-list.php:80
198
+ msgid "Category protection updated!"
199
+ msgstr "限定カテゴリを更新しました。"
200
+
201
+ #: classes/class.swpm-form.php:26
202
+ msgid ""
203
+ "Wordpress account exists with given username. But given email doesn't match."
204
+ msgstr ""
205
+ "入力したユーザー名でWordPressアカウント登録済みですが、メールアドレスと一致し"
206
+ "ません。"
207
+
208
+ #: classes/class.swpm-form.php:31
209
+ msgid ""
210
+ "Wordpress account exists with given email. But given username doesn't match."
211
+ msgstr ""
212
+ "入力したメールアドレスでWordPressアカウント登録済みですが、ユーザー名と一致し"
213
+ "ません。"
214
+
215
+ #: classes/class.swpm-form.php:40
216
+ msgid "Username is required"
217
+ msgstr "ユーザー名が必須です。"
218
+
219
+ #: classes/class.swpm-form.php:44
220
+ msgid "Username contains invalid character"
221
+ msgstr "ユーザー名に無効な文字が含まれています。"
222
+
223
+ #: classes/class.swpm-form.php:52
224
+ msgid "Username already exists."
225
+ msgstr "ユーザー名がすでに登録されています。"
226
+
227
+ #: classes/class.swpm-form.php:75
228
+ msgid "Password is required"
229
+ msgstr "パスワードが必要です。"
230
+
231
+ #: classes/class.swpm-form.php:82
232
+ msgid "Password mismatch"
233
+ msgstr "パスワードが一致しません。"
234
+
235
+ #: classes/class.swpm-form.php:93
236
+ msgid "Email is required"
237
+ msgstr "メールアドレスが必要です。"
238
+
239
+ #: classes/class.swpm-form.php:97
240
+ msgid "Email is invalid"
241
+ msgstr "メールアドレスが無効です。"
242
+
243
+ #: classes/class.swpm-form.php:113
244
+ msgid "Email is already used."
245
+ msgstr "メールアドレスがすでに登録済みです。"
246
+
247
+ #: classes/class.swpm-form.php:170
248
+ msgid "Member since field is invalid"
249
+ msgstr "会員登録日の項目が無効です。"
250
+
251
+ #: classes/class.swpm-form.php:181
252
+ msgid "Access starts field is invalid"
253
+ msgstr "アクセス開始の項目が無効です。"
254
+
255
+ #: classes/class.swpm-form.php:191
256
+ msgid "Gender field is invalid"
257
+ msgstr "性別の項目が無効です。"
258
+
259
+ #: classes/class.swpm-form.php:202
260
+ msgid "Account state field is invalid"
261
+ msgstr "アカウントの状態の項目が無効です。"
262
+
263
+ #: classes/class.swpm-form.php:209
264
+ msgid "Invalid membership level"
265
+ msgstr "会員レベルが無効です。"
266
+
267
+ #: classes/class.swpm-front-registration.php:71
268
+ msgid "Security check: captcha validation failed."
269
+ msgstr "セキュリティチェック: キャプチャ認証に失敗しました。"
270
+
271
+ #: classes/class.swpm-front-registration.php:80
272
+ msgid "Registration Successful. "
273
+ msgstr "登録が完了しました。"
274
+
275
+ #: classes/class.swpm-front-registration.php:80
276
+ #: classes/class.swpm-settings.php:377
277
+ msgid "Please"
278
+ msgstr "→"
279
+
280
+ #: classes/class.swpm-front-registration.php:80
281
+ #: classes/class.swpm-settings.php:377 views/login.php:21
282
+ msgid "Login"
283
+ msgstr "ログイン"
284
+
285
+ #: classes/class.swpm-front-registration.php:92
286
+ #: classes/class.swpm-front-registration.php:179
287
+ msgid "Please correct the following"
288
+ msgstr "以下の項目をご確認ください。"
289
+
290
+ #: classes/class.swpm-front-registration.php:123
291
+ msgid "Membership Level Couldn't be found."
292
+ msgstr "会員レベルが見つかりません。"
293
+
294
+ #: classes/class.swpm-front-registration.php:162
295
+ msgid "Profile updated successfully."
296
+ msgstr "プロフィールが更新されました。"
297
+
298
+ #: classes/class.swpm-front-registration.php:170
299
+ msgid ""
300
+ "Profile updated successfully. You will need to re-login since you changed "
301
+ "your password."
302
+ msgstr "プロフィールが更新されました。再度ログインが必要です。"
303
+
304
+ #: classes/class.swpm-front-registration.php:189
305
+ msgid "Email address not valid."
306
+ msgstr "メールアドレスが無効です。"
307
+
308
+ #: classes/class.swpm-front-registration.php:200
309
+ msgid "No user found with that email address."
310
+ msgstr "メールアドレスに該当するユーザーが見つかりませんでした。"
311
+
312
+ #: classes/class.swpm-front-registration.php:201
313
+ #: classes/class.swpm-front-registration.php:225
314
+ msgid "Email Address: "
315
+ msgstr "メールアドレス;"
316
+
317
+ #: classes/class.swpm-front-registration.php:224
318
+ msgid "New password has been sent to your email address."
319
+ msgstr "新しいパスワードがメールアドレス宛てに送信されました。"
320
+
321
+ #: classes/class.swpm-init-time-tasks.php:108
322
+ msgid "Sorry, Nonce verification failed."
323
+ msgstr "認証に失敗しました。"
324
+
325
+ #: classes/class.swpm-init-time-tasks.php:115
326
+ msgid "Sorry, Password didn't match."
327
+ msgstr "パスワードが一致してません。"
328
+
329
+ #: classes/class.swpm-level-form.php:47
330
+ msgid "Date format is not valid."
331
+ msgstr "日付フォーマットが無効です。"
332
+
333
+ #: classes/class.swpm-level-form.php:55
334
+ msgid "Access duration must be > 0."
335
+ msgstr "有効期限の数値を1以上に設定してください。"
336
+
337
+ #: classes/class.swpm-member-utils.php:22
338
+ #: classes/class.swpm-member-utils.php:30
339
+ #: classes/class.swpm-member-utils.php:38
340
+ #: classes/class.swpm-member-utils.php:48
341
+ msgid "User is not logged in."
342
+ msgstr "ログインしていません。"
343
+
344
+ #: classes/class.swpm-members.php:9
345
+ msgid "Member"
346
+ msgstr "会員"
347
+
348
+ #: classes/class.swpm-members.php:19 views/add.php:6 views/admin_add.php:11
349
+ #: views/admin_edit.php:9 views/edit.php:5 views/login.php:5
350
+ msgid "Username"
351
+ msgstr "ユーザー名"
352
+
353
+ #: classes/class.swpm-members.php:20
354
+ #: classes/admin-includes/class.swpm-payments-list-table.php:74
355
+ #: views/add.php:22 views/admin_member_form_common_part.php:15
356
+ #: views/edit.php:21
357
+ msgid "First Name"
358
+ msgstr "お名前(名)"
359
+
360
+ #: classes/class.swpm-members.php:21
361
+ #: classes/admin-includes/class.swpm-payments-list-table.php:75
362
+ #: views/add.php:26 views/admin_member_form_common_part.php:19
363
+ #: views/edit.php:25
364
+ msgid "Last Name"
365
+ msgstr "お名前(姓)"
366
+
367
+ #: classes/class.swpm-members.php:22 views/add.php:10 views/edit.php:9
368
+ msgid "Email"
369
+ msgstr "メールアドレス"
370
+
371
+ #: classes/class.swpm-members.php:24 views/admin_member_form_common_part.php:11
372
+ msgid "Access Starts"
373
+ msgstr "アクセス開始"
374
+
375
+ #: classes/class.swpm-members.php:25
376
+ msgid "Account State"
377
+ msgstr "アカウントの状態"
378
+
379
+ #: classes/class.swpm-members.php:41
380
+ #: classes/class.swpm-membership-levels.php:35
381
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:80
382
+ #: classes/admin-includes/class.swpm-payments-list-table.php:95
383
+ msgid "Delete"
384
+ msgstr "削除"
385
+
386
+ #: classes/class.swpm-members.php:42
387
+ msgid "Set Status to Active"
388
+ msgstr "有効にする。"
389
+
390
+ #: classes/class.swpm-members.php:44
391
+ msgid "Set Status to Inactive"
392
+ msgstr "無効にする。"
393
+
394
+ #: classes/class.swpm-members.php:45
395
+ msgid "Set Status to Pending"
396
+ msgstr "保留中にする。"
397
+
398
+ #: classes/class.swpm-members.php:46
399
+ msgid "Set Status to Expired"
400
+ msgstr "期限切れにする。"
401
+
402
+ #: classes/class.swpm-members.php:121
403
+ msgid "No Member found."
404
+ msgstr "会員が見つかりませんでした。"
405
+
406
+ #: classes/class.swpm-membership-level.php:38
407
+ msgid "Membership Level Creation Successful."
408
+ msgstr "会員レベルを作成しました。"
409
+
410
+ #: classes/class.swpm-membership-level.php:57
411
+ msgid "Updated Successfully."
412
+ msgstr "更新されました。"
413
+
414
+ #: classes/class.swpm-membership-levels.php:21
415
+ msgid "Role"
416
+ msgstr "権限"
417
+
418
+ #: classes/class.swpm-membership-levels.php:22
419
+ msgid "Access Valid For/Until"
420
+ msgstr "アクセス有効期限"
421
+
422
+ #: classes/class.swpm-misc-utils.php:50
423
+ msgid "Registration"
424
+ msgstr "登録"
425
+
426
+ #: classes/class.swpm-misc-utils.php:73
427
+ msgid "Member Login"
428
+ msgstr "会員ログイン"
429
+
430
+ #: classes/class.swpm-misc-utils.php:96
431
+ msgid "Profile"
432
+ msgstr "プロフィール"
433
+
434
+ #: classes/class.swpm-misc-utils.php:119
435
+ msgid "Password Reset"
436
+ msgstr "パスワードリセット"
437
+
438
+ #: classes/class.swpm-settings.php:21 classes/class.swpm-settings.php:39
439
+ msgid "General Settings"
440
+ msgstr "一般設定"
441
+
442
+ #: classes/class.swpm-settings.php:21
443
+ msgid "Payment Settings"
444
+ msgstr "支払い設定"
445
+
446
+ #: classes/class.swpm-settings.php:22
447
+ msgid "Email Settings"
448
+ msgstr "メール設定"
449
+
450
+ #: classes/class.swpm-settings.php:22
451
+ msgid "Tools"
452
+ msgstr "ツール"
453
+
454
+ #: classes/class.swpm-settings.php:22 classes/class.swpm-settings.php:150
455
+ msgid "Advanced Settings"
456
+ msgstr "高度な設定"
457
+
458
+ #: classes/class.swpm-settings.php:22
459
+ msgid "Addons Settings"
460
+ msgstr "アドオン設定"
461
+
462
+ #: classes/class.swpm-settings.php:38
463
+ msgid "Plugin Documentation"
464
+ msgstr "プラグイン資料"
465
+
466
+ #: classes/class.swpm-settings.php:40
467
+ msgid "Enable Free Membership"
468
+ msgstr "無料会員を有効化"
469
+
470
+ #: classes/class.swpm-settings.php:41
471
+ msgid ""
472
+ "Enable/disable registration for free membership level. When you enable this "
473
+ "option, make sure to specify a free membership level ID in the field below."
474
+ msgstr ""
475
+ "無料会員レベルの有効化/無効化。この機能を利用するときは、無料会員レベルのID"
476
+ "を入力してください。"
477
+
478
+ #: classes/class.swpm-settings.php:42
479
+ msgid "Free Membership Level ID"
480
+ msgstr "無料会員レベルのID"
481
+
482
+ #: classes/class.swpm-settings.php:43
483
+ msgid "Assign free membership level ID"
484
+ msgstr "無料会員のレベルIDを指定"
485
+
486
+ #: classes/class.swpm-settings.php:44
487
+ msgid "Enable More Tag Protection"
488
+ msgstr "Moreタグ以下のコンテンツを限定公開"
489
+
490
+ #: classes/class.swpm-settings.php:45
491
+ msgid ""
492
+ "Enables or disables \"more\" tag protection in the posts and pages. Anything "
493
+ "after the More tag is protected. Anything before the more tag is teaser "
494
+ "content."
495
+ msgstr ""
496
+ "投稿やページの「Moreタグ」による限定公開を有効化・無効化する。Moreタグ以降の"
497
+ "コンテンツが限定公開されます。"
498
+
499
+ #: classes/class.swpm-settings.php:46
500
+ msgid "Hide Adminbar"
501
+ msgstr "Adminバーを隠す"
502
+
503
+ #: classes/class.swpm-settings.php:47
504
+ msgid ""
505
+ "WordPress shows an admin toolbar to the logged in users of the site. Check "
506
+ "this box if you want to hide that admin toolbar in the fronend of your site."
507
+ msgstr ""
508
+ "ログインした会員にWordPressのadminツールバーが表示されます。Webサイトにツール"
509
+ "バーを表示したくない場合はチェックしてください。"
510
+
511
+ #: classes/class.swpm-settings.php:49
512
+ msgid "Default Account Status"
513
+ msgstr "デフォルトアカウントステータス"
514
+
515
+ #: classes/class.swpm-settings.php:52
516
+ msgid ""
517
+ "Select the default account status for newly registered users. If you want to "
518
+ "manually approve the members then you can set the status to \"Pending\"."
519
+ msgstr ""
520
+ "会員登録したユーザーのデフォルトステータスを選択。新規登録の許可を管理者が手"
521
+ "動で行う場合は「保留中」を選びます。"
522
+
523
+ #: classes/class.swpm-settings.php:53
524
+ msgid "Allow Account Deletion"
525
+ msgstr "アカウント削除の許可"
526
+
527
+ #: classes/class.swpm-settings.php:55
528
+ msgid "Allow users to delete their accounts."
529
+ msgstr "会員によるアカウント削除を許可"
530
+
531
+ #: classes/class.swpm-settings.php:56
532
+ msgid "Auto Delete Pending Account"
533
+ msgstr "自動で保留中アカウントの削除"
534
+
535
+ #: classes/class.swpm-settings.php:59
536
+ msgid "Select how long you want to keep \"pending\" account."
537
+ msgstr "保留中のアカウントの期間を選択。"
538
+
539
+ #: classes/class.swpm-settings.php:67
540
+ msgid "Pages Settings"
541
+ msgstr "ページ設定"
542
+
543
+ #: classes/class.swpm-settings.php:68
544
+ msgid "Login Page URL"
545
+ msgstr "ログインページURL"
546
+
547
+ #: classes/class.swpm-settings.php:70
548
+ msgid "Registration Page URL"
549
+ msgstr "会員登録ページURL"
550
+
551
+ #: classes/class.swpm-settings.php:72
552
+ msgid "Join Us Page URL"
553
+ msgstr "会員登録の案内ページURL"
554
+
555
+ #: classes/class.swpm-settings.php:74
556
+ msgid "Edit Profile Page URL"
557
+ msgstr "プロフィールの編集ページURL"
558
+
559
+ #: classes/class.swpm-settings.php:76
560
+ msgid "Password Reset Page URL"
561
+ msgstr "パスワードリセットページURL"
562
+
563
+ #: classes/class.swpm-settings.php:79
564
+ msgid "Test & Debug Settings"
565
+ msgstr "テスト&デバッグ設定"
566
+
567
+ #: classes/class.swpm-settings.php:81
568
+ msgid "Check this option to enable debug logging."
569
+ msgstr "デバッグログを有効にする場合はチェック"
570
+
571
+ #: classes/class.swpm-settings.php:86
572
+ msgid "Enable Sandbox Testing"
573
+ msgstr "ペイパルSandboxテストの有効化"
574
+
575
+ #: classes/class.swpm-settings.php:87
576
+ msgid "Enable this option if you want to do sandbox payment testing."
577
+ msgstr "ペイパルSandboxの決済テストを行う場合は有効にする。"
578
+
579
+ #: classes/class.swpm-settings.php:97 classes/class.swpm-settings.php:145
580
+ #: classes/class.swpm-settings.php:243
581
+ msgid "Settings updated!"
582
+ msgstr "設定を更新しました。"
583
+
584
+ #: classes/class.swpm-settings.php:102
585
+ msgid "Email Misc. Settings"
586
+ msgstr "メール設定"
587
+
588
+ #: classes/class.swpm-settings.php:103
589
+ msgid "From Email Address"
590
+ msgstr "送信元メールアドレス"
591
+
592
+ #: classes/class.swpm-settings.php:106
593
+ msgid "Email Settings (Prompt to Complete Registration )"
594
+ msgstr "メール設定(登録完了のお知らせ)"
595
+
596
+ #: classes/class.swpm-settings.php:107 classes/class.swpm-settings.php:113
597
+ #: classes/class.swpm-settings.php:125 classes/class.swpm-settings.php:132
598
+ msgid "Email Subject"
599
+ msgstr "メールの題名"
600
+
601
+ #: classes/class.swpm-settings.php:109 classes/class.swpm-settings.php:115
602
+ #: classes/class.swpm-settings.php:127 classes/class.swpm-settings.php:134
603
+ msgid "Email Body"
604
+ msgstr "メールの内容"
605
+
606
+ #: classes/class.swpm-settings.php:112
607
+ msgid "Email Settings (Registration Complete)"
608
+ msgstr "メール設定(登録完了)"
609
+
610
+ #: classes/class.swpm-settings.php:117
611
+ msgid "Send Notification to Admin"
612
+ msgstr "管理者に知らせる"
613
+
614
+ #: classes/class.swpm-settings.php:118
615
+ msgid ""
616
+ "Enable this option if you want the admin to receive a notification when a "
617
+ "member registers."
618
+ msgstr "会員登録した場合、管理者が通知を受ける場合は有効にする。"
619
+
620
+ #: classes/class.swpm-settings.php:119
621
+ msgid "Admin Email Address"
622
+ msgstr "管理者のメールアドレス"
623
+
624
+ #: classes/class.swpm-settings.php:120
625
+ msgid ""
626
+ "Enter the email address where you want the admin notification email to be "
627
+ "sent to."
628
+ msgstr "送信したい管理者のメールアドレスを入力してください。"
629
+
630
+ #: classes/class.swpm-settings.php:121
631
+ msgid "Send Email to Member When Added via Admin Dashboard"
632
+ msgstr ""
633
+ "Adminダッシュボードから会員登録した場合、登録された会員宛てにメールする。"
634
+
635
+ #: classes/class.swpm-settings.php:124
636
+ msgid "Email Settings (Password Reset)"
637
+ msgstr "メール設定(パスワードリセット)"
638
+
639
+ #: classes/class.swpm-settings.php:131
640
+ msgid " Email Settings (Account Upgrade Notification)"
641
+ msgstr "メール設定(会員レベルのアップグレードのお知らせ)"
642
+
643
+ #: classes/class.swpm-settings.php:152
644
+ msgid "Enable Expired Account Login"
645
+ msgstr "有効期限切れのアカウントのログインを有効にする"
646
+
647
+ #: classes/class.swpm-settings.php:153
648
+ msgid ""
649
+ "When enabled, expired members will be able to log into the system but won't "
650
+ "be able to view any protected content. This allows them to easily renew "
651
+ "their account by making another payment."
652
+ msgstr ""
653
+ "この機能を有効にした場合、ログインはできるが会員限定コンテンツは閲覧できませ"
654
+ "ん。"
655
+
656
+ #: classes/class.swpm-settings.php:377
657
+ msgid "Not a Member?"
658
+ msgstr "会員登録はお済みですか?"
659
+
660
+ #: classes/class.swpm-settings.php:377 views/login.php:27
661
+ msgid "Join Us"
662
+ msgstr "会員について"
663
+
664
+ #: classes/class.swpm-utils.php:67
665
+ msgid "Active"
666
+ msgstr "有効"
667
+
668
+ #: classes/class.swpm-utils.php:68
669
+ msgid "Inactive"
670
+ msgstr "無効"
671
+
672
+ #: classes/class.swpm-utils.php:69
673
+ msgid "Pending"
674
+ msgstr "保留中"
675
+
676
+ #: classes/class.swpm-utils.php:70
677
+ msgid "Expired"
678
+ msgstr "期限切れ"
679
+
680
+ #: classes/class.swpm-utils.php:297
681
+ msgid "Never"
682
+ msgstr "無し"
683
+
684
+ #: classes/class.swpm-utils.php:371
685
+ msgid "Delete Account"
686
+ msgstr "アカウント削除"
687
+
688
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:63
689
+ msgid "Payment Button ID"
690
+ msgstr "ペイパル支払いボタンID"
691
+
692
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:64
693
+ msgid "Payment Button Title"
694
+ msgstr "ペイパル支払いボタンタイトル"
695
+
696
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:65
697
+ msgid "Membership Level ID"
698
+ msgstr "会員レベルのID"
699
+
700
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:66
701
+ msgid "Button Shortcode"
702
+ msgstr "ボタンのショートコード"
703
+
704
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:106
705
+ #: views/admin_members_list.php:15
706
+ #: views/payments/admin_all_payment_transactions.php:33
707
+ msgid "The selected entry was deleted!"
708
+ msgstr "選択された項目は削除されました。"
709
+
710
+ #: classes/admin-includes/class.swpm-payments-list-table.php:53
711
+ msgid "View Profile"
712
+ msgstr "プロフィールを見る。"
713
+
714
+ #: classes/admin-includes/class.swpm-payments-list-table.php:72
715
+ msgid "Row ID"
716
+ msgstr "Row ID"
717
+
718
+ #: classes/admin-includes/class.swpm-payments-list-table.php:73
719
+ #: views/forgot_password.php:5
720
+ msgid "Email Address"
721
+ msgstr "メールアドレス"
722
+
723
+ #: classes/admin-includes/class.swpm-payments-list-table.php:76
724
+ msgid "Member Profile"
725
+ msgstr "会員のプロフィール"
726
+
727
+ #: classes/admin-includes/class.swpm-payments-list-table.php:77
728
+ msgid "Date"
729
+ msgstr "日付"
730
+
731
+ #: classes/admin-includes/class.swpm-payments-list-table.php:78
732
+ msgid "Transaction ID"
733
+ msgstr "トランザクションID"
734
+
735
+ #: classes/admin-includes/class.swpm-payments-list-table.php:79
736
+ msgid "Amount"
737
+ msgstr "量"
738
+
739
+ #: classes/common/class.swpm-list-table.php:137
740
+ msgid "List View"
741
+ msgstr "リストを表示"
742
+
743
+ #: classes/common/class.swpm-list-table.php:138
744
+ msgid "Excerpt View"
745
+ msgstr "抜粋を表示"
746
+
747
+ #: classes/common/class.swpm-list-table.php:305
748
+ msgid "No items found."
749
+ msgstr "アイテムが見つかりません。"
750
+
751
+ #: classes/common/class.swpm-list-table.php:431
752
+ msgid "Select bulk action"
753
+ msgstr "一括操作を選択"
754
+
755
+ #: classes/common/class.swpm-list-table.php:433
756
+ msgid "Bulk Actions"
757
+ msgstr "一括操作"
758
+
759
+ #: classes/common/class.swpm-list-table.php:443
760
+ msgid "Apply"
761
+ msgstr "適用する"
762
+
763
+ #: classes/common/class.swpm-list-table.php:543
764
+ msgid "Filter by date"
765
+ msgstr "日付によるフィルタ"
766
+
767
+ #: classes/common/class.swpm-list-table.php:545
768
+ msgid "All dates"
769
+ msgstr "全ての日付"
770
+
771
+ #: classes/common/class.swpm-list-table.php:555
772
+ #, php-format
773
+ msgid "%1$s %2$d"
774
+ msgstr "%1$s %2$d"
775
+
776
+ #: classes/common/class.swpm-list-table.php:599
777
+ #, php-format
778
+ msgid "%s pending"
779
+ msgstr "%s 保留中"
780
+
781
+ #: classes/common/class.swpm-list-table.php:704
782
+ msgid "Select Page"
783
+ msgstr "ページを選択"
784
+
785
+ #: classes/common/class.swpm-list-table.php:848
786
+ msgid "Select All"
787
+ msgstr "全てを選択"
788
+
789
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:47
790
+ msgid "Your membership profile will be updated to reflect the payment."
791
+ msgstr "会員プロフィールが更新されました。"
792
+
793
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:48
794
+ msgid "Your profile username: "
795
+ msgstr "あなたのユーザー名"
796
+
797
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:60
798
+ msgid "Click on the following link to complete the registration."
799
+ msgstr "以下のリンクをクリックして会員登録を完了してください。"
800
+
801
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:61
802
+ msgid "Click here to complete your paid registration"
803
+ msgstr "こちらのリンクをクリックして支払い手続きを完了してください。"
804
+
805
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:66
806
+ msgid ""
807
+ "If you have just made a membership payment then your payment is yet to be "
808
+ "processed. Please check back in a few minutes. An email will be sent to you "
809
+ "with the details shortly."
810
+ msgstr ""
811
+ "会員登録のためのお支払い手続きの処理中です。数分後にもう一度ご確認ください。"
812
+ "後ほど詳細についてメールが送付されます。"
813
+
814
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:80
815
+ msgid "Expiry: "
816
+ msgstr "有効期限;"
817
+
818
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:82
819
+ msgid "You are not logged-in as a member"
820
+ msgstr "会員としてログインしていません。"
821
+
822
+ #: views/add.php:14 views/admin_add.php:19 views/admin_edit.php:17
823
+ #: views/edit.php:13 views/login.php:11
824
+ msgid "Password"
825
+ msgstr "パスワード"
826
+
827
+ #: views/add.php:18 views/edit.php:17
828
+ msgid "Repeat Password"
829
+ msgstr "パスワード再入力"
830
+
831
+ #: views/add.php:41
832
+ msgid "Register"
833
+ msgstr "登録"
834
+
835
+ #: views/admin_add.php:6
836
+ msgid "Add Member"
837
+ msgstr "会員を追加"
838
+
839
+ #: views/admin_add.php:7
840
+ msgid "Create a brand new user and add it to this site."
841
+ msgstr "新規会員を登録し、このサイトに追加する"
842
+
843
+ #: views/admin_add.php:11 views/admin_add.php:15 views/admin_add_level.php:11
844
+ #: views/admin_add_level.php:15 views/admin_add_level.php:19
845
+ #: views/admin_edit.php:9 views/admin_edit.php:13 views/admin_edit_level.php:10
846
+ #: views/admin_edit_level.php:14 views/admin_edit_level.php:18
847
+ msgid "(required)"
848
+ msgstr "(必須)"
849
+
850
+ #: views/admin_add.php:15 views/admin_edit.php:13
851
+ msgid "E-mail"
852
+ msgstr "メールアドレス"
853
+
854
+ #: views/admin_add.php:19
855
+ msgid "(twice, required)"
856
+ msgstr "(二度入力、必須)"
857
+
858
+ #: views/admin_add.php:24 views/admin_edit.php:21
859
+ msgid "Strength indicator"
860
+ msgstr "強度メーター"
861
+
862
+ #: views/admin_add.php:25 views/admin_edit.php:22
863
+ msgid ""
864
+ "Hint: The password should be at least seven characters long. To make it "
865
+ "stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
866
+ "$ % ^ &amp; )."
867
+ msgstr ""
868
+ "ヒント: パスワードは7文字以上。より強いパスワードにするために、大文字・小文字"
869
+ "を使い、数字や ! \\\" ? $ % ^ &amp; ) 等の記号の使用を推奨します。"
870
+
871
+ #: views/admin_add.php:29 views/admin_edit.php:26 views/loggedin.php:7
872
+ msgid "Account Status"
873
+ msgstr "アカウントステータス"
874
+
875
+ #: views/admin_add.php:39
876
+ msgid "Add New Member "
877
+ msgstr "新規会員を追加"
878
+
879
+ #: views/admin_addon_settings.php:3 views/admin_settings.php:3
880
+ #: views/admin_tools_settings.php:3 views/payments/admin_payment_settings.php:3
881
+ msgid "Simple WP Membership::Settings"
882
+ msgstr "Simple WP Membership::設定"
883
+
884
+ #: views/admin_addon_settings.php:8
885
+ msgid ""
886
+ "Some of the simple membership plugin's addon settings and options will be "
887
+ "displayed here (if you have them)"
888
+ msgstr "アドオンの設定やオプションがここに表示されます。"
889
+
890
+ #: views/admin_addon_settings.php:13
891
+ msgid "Save Changes"
892
+ msgstr "変更を保存"
893
+
894
+ #: views/admin_add_level.php:6
895
+ msgid "Create new membership level."
896
+ msgstr "新規会員レベルを作成"
897
+
898
+ #: views/admin_add_level.php:11 views/admin_edit_level.php:10
899
+ msgid "Membership Level Name"
900
+ msgstr "会員レベル名"
901
+
902
+ #: views/admin_add_level.php:15 views/admin_edit_level.php:14
903
+ msgid "Default WordPress Role"
904
+ msgstr "WordPressのデフォルトユーザー権限"
905
+
906
+ #: views/admin_add_level.php:19 views/admin_edit_level.php:18
907
+ msgid "Access Duration"
908
+ msgstr "有効期限"
909
+
910
+ #: views/admin_add_level.php:22
911
+ msgid "No Expiry (Access for this level will not expire until cancelled"
912
+ msgstr "無期限(キャンセルしない限り有効)"
913
+
914
+ #: views/admin_add_level.php:23 views/admin_add_level.php:25
915
+ #: views/admin_add_level.php:27 views/admin_add_level.php:29
916
+ #: views/admin_edit_level.php:22 views/admin_edit_level.php:25
917
+ #: views/admin_edit_level.php:28 views/admin_edit_level.php:31
918
+ msgid "Expire After"
919
+ msgstr "有効期限"
920
+
921
+ #: views/admin_add_level.php:24 views/admin_edit_level.php:23
922
+ msgid "Days (Access expires after given number of days)"
923
+ msgstr "日(指定した日数で有効)"
924
+
925
+ #: views/admin_add_level.php:26
926
+ msgid "Weeks (Access expires after given number of weeks"
927
+ msgstr "週(指定した数の週の間有効)"
928
+
929
+ #: views/admin_add_level.php:28 views/admin_edit_level.php:29
930
+ msgid "Months (Access expires after given number of months)"
931
+ msgstr "ヶ月(指定した数の月の間有効)"
932
+
933
+ #: views/admin_add_level.php:30 views/admin_edit_level.php:32
934
+ msgid "Years (Access expires after given number of years)"
935
+ msgstr "年(指定した数の年の間有効)"
936
+
937
+ #: views/admin_add_level.php:31 views/admin_edit_level.php:34
938
+ msgid "Fixed Date Expiry"
939
+ msgstr "有効期限を指定"
940
+
941
+ #: views/admin_add_level.php:32 views/admin_edit_level.php:35
942
+ msgid "(Access expires on a fixed date)"
943
+ msgstr "(指定した日付まで有効)"
944
+
945
+ #: views/admin_add_level.php:38
946
+ msgid "Add New Membership Level "
947
+ msgstr "古い記事を閲覧可能にする"
948
+
949
+ #: views/admin_add_ons_page.php:7
950
+ msgid "Simple WP Membership::Add-ons"
951
+ msgstr "Simple WP Membership::アドオン"
952
+
953
+ #: views/admin_category_list.php:2
954
+ msgid "Simple WP Membership::Categories"
955
+ msgstr "Simple WP Membership::カテゴリ"
956
+
957
+ #: views/admin_category_list.php:7
958
+ msgid ""
959
+ "First of all, globally protect the category on your site by selecting "
960
+ "\"General Protection\" from the drop-down box below and then select the "
961
+ "categories that should be protected from non-logged in users."
962
+ msgstr ""
963
+ "まず、ドロップダウンメニューからGeneral Protectionを選び、ログインしていない"
964
+ "ユーザーに非公開にするカテゴリーを選択します。"
965
+
966
+ #: views/admin_category_list.php:10
967
+ msgid ""
968
+ "Next, select an existing membership level from the drop-down box below and "
969
+ "then select the categories you want to grant access to (for that particular "
970
+ "membership level)."
971
+ msgstr ""
972
+ "次にドロップダウンメニューから既存の会員レベルを選択し、その会員レベルのユー"
973
+ "ザーにのみ公開するカテゴリーを選びます。"
974
+
975
+ #: views/admin_edit.php:5
976
+ msgid "Edit Member"
977
+ msgstr "会員を編集"
978
+
979
+ #: views/admin_edit.php:6
980
+ msgid "Edit existing member details."
981
+ msgstr "既存会員の詳細を編集"
982
+
983
+ #: views/admin_edit.php:17
984
+ msgid "(twice, leave empty to retain old password)"
985
+ msgstr "(二度入力。同じパスワードを利用する場合は空欄にする。)"
986
+
987
+ #: views/admin_edit.php:33
988
+ msgid "Notify User"
989
+ msgstr "会員に知らせる"
990
+
991
+ #: views/admin_edit.php:40
992
+ msgid "Subscriber ID/Reference"
993
+ msgstr "サブスクライバー ID/参照"
994
+
995
+ #: views/admin_edit.php:44
996
+ msgid "Last Accessed From IP"
997
+ msgstr "最終アクセス日時"
998
+
999
+ #: views/admin_edit.php:52
1000
+ msgid "Edit User "
1001
+ msgstr "会員を編集"
1002
+
1003
+ #: views/admin_edit_level.php:5
1004
+ msgid "Edit membership level"
1005
+ msgstr "会員レベルを編集"
1006
+
1007
+ #: views/admin_edit_level.php:6
1008
+ msgid "Edit membership level."
1009
+ msgstr "会員レベルを編集。"
1010
+
1011
+ #: views/admin_edit_level.php:21
1012
+ msgid "No Expiry (Access for this level will not expire until cancelled)"
1013
+ msgstr "無期限(キャンセルしない限り有効)"
1014
+
1015
+ #: views/admin_edit_level.php:26
1016
+ msgid "Weeks (Access expires after given number of weeks)"
1017
+ msgstr "週(指定した数の週の間有効)"
1018
+
1019
+ #: views/admin_edit_level.php:41
1020
+ msgid "Edit Membership Level "
1021
+ msgstr "会員レベルを編集"
1022
+
1023
+ #: views/admin_members.php:2
1024
+ msgid "Simple WP Membership::Members"
1025
+ msgstr "Simple WP Membership::会員"
1026
+
1027
+ #: views/admin_members.php:3 views/admin_members_list.php:30
1028
+ msgid "Add New"
1029
+ msgstr "新規追加"
1030
+
1031
+ #: views/admin_membership_levels.php:2
1032
+ msgid "Simple WP Membership::Membership Levels"
1033
+ msgstr "Simple WP Membership::会員レベル"
1034
+
1035
+ #: views/admin_membership_levels.php:12 views/admin_members_list.php:6
1036
+ msgid "search"
1037
+ msgstr "検索"
1038
+
1039
+ #: views/admin_membership_level_menu.php:2
1040
+ msgid "Membership level"
1041
+ msgstr "会員レベル"
1042
+
1043
+ #: views/admin_membership_level_menu.php:3
1044
+ msgid "Manage Content Production"
1045
+ msgstr "限定公開コンテンツを管理"
1046
+
1047
+ #: views/admin_membership_level_menu.php:4
1048
+ msgid "Category Protection"
1049
+ msgstr "カテゴリーの限定公開"
1050
+
1051
+ #: views/admin_membership_manage.php:17
1052
+ msgid "Example Content Protection Settings"
1053
+ msgstr "限定公開設定の例"
1054
+
1055
+ #: views/admin_member_form_common_part.php:23
1056
+ msgid "Gender"
1057
+ msgstr "性別"
1058
+
1059
+ #: views/admin_member_form_common_part.php:30 views/edit.php:29
1060
+ msgid "Phone"
1061
+ msgstr "電話番号"
1062
+
1063
+ #: views/admin_member_form_common_part.php:34 views/edit.php:33
1064
+ msgid "Street"
1065
+ msgstr "番地"
1066
+
1067
+ #: views/admin_member_form_common_part.php:38 views/edit.php:37
1068
+ msgid "City"
1069
+ msgstr "市区町村"
1070
+
1071
+ #: views/admin_member_form_common_part.php:42 views/edit.php:41
1072
+ msgid "State"
1073
+ msgstr "都道府県"
1074
+
1075
+ #: views/admin_member_form_common_part.php:46 views/edit.php:45
1076
+ msgid "Zipcode"
1077
+ msgstr "郵便番号"
1078
+
1079
+ #: views/admin_member_form_common_part.php:50 views/edit.php:49
1080
+ msgid "Country"
1081
+ msgstr "国"
1082
+
1083
+ #: views/admin_member_form_common_part.php:54
1084
+ msgid "Company"
1085
+ msgstr "法人名"
1086
+
1087
+ #: views/admin_member_form_common_part.php:58
1088
+ msgid "Member Since"
1089
+ msgstr "会員登録日"
1090
+
1091
+ #: views/admin_tools_settings.php:9
1092
+ msgid "Generate a Registration Completion link"
1093
+ msgstr "会員登録完了リンクを生成する"
1094
+
1095
+ #: views/admin_tools_settings.php:12
1096
+ msgid ""
1097
+ "You can manually generate a registration completion link here and give it to "
1098
+ "your customer if they have missed the email that was automatically sent out "
1099
+ "to them after the payment."
1100
+ msgstr ""
1101
+ "決済後に自動で送られるメールがなんらかの理由で届かなかった場合、登録完了のリ"
1102
+ "ンクを手動で生成し、ユーザーに送信できます。"
1103
+
1104
+ #: views/admin_tools_settings.php:17
1105
+ msgid "Generate Registration Completion Link"
1106
+ msgstr "会員登録完了リンクを生成する"
1107
+
1108
+ #: views/admin_tools_settings.php:20
1109
+ msgid "OR"
1110
+ msgstr "または"
1111
+
1112
+ #: views/admin_tools_settings.php:21
1113
+ msgid "For All Pending Registrations"
1114
+ msgstr "保留中の全会員"
1115
+
1116
+ #: views/admin_tools_settings.php:24
1117
+ msgid "Registration Completion Links Will Appear Below:"
1118
+ msgstr "登録完了リンクは以下に表示されます;"
1119
+
1120
+ #: views/admin_tools_settings.php:31
1121
+ msgid "Send Registration Reminder Email too"
1122
+ msgstr "会員登録のリマインダーメールも送る。"
1123
+
1124
+ #: views/admin_tools_settings.php:34
1125
+ msgid "Submit"
1126
+ msgstr "登録"
1127
+
1128
+ #: views/edit.php:59
1129
+ msgid "Update"
1130
+ msgstr "更新"
1131
+
1132
+ #: views/forgot_password.php:12
1133
+ msgid "Reset Password"
1134
+ msgstr "パスワードリセッ"
1135
+
1136
+ #: views/loggedin.php:3
1137
+ msgid "Logged in as"
1138
+ msgstr "ログイン名:"
1139
+
1140
+ #: views/loggedin.php:11
1141
+ msgid "Membership"
1142
+ msgstr "会員"
1143
+
1144
+ #: views/loggedin.php:15
1145
+ msgid "Account Expiry"
1146
+ msgstr "アカウントの有効期限"
1147
+
1148
+ #: views/loggedin.php:19
1149
+ msgid "Logout"
1150
+ msgstr "ログアウト"
1151
+
1152
+ #: views/login.php:18
1153
+ msgid "Remember Me"
1154
+ msgstr "ログイン状態を保"
1155
+
1156
+ #: views/login.php:24
1157
+ msgid "Forgot Password"
1158
+ msgstr "パスワードを忘れた"
1159
+
1160
+ #: views/payments/admin_all_payment_transactions.php:7
1161
+ msgid "All the payments/transactions of your members are recorded here."
1162
+ msgstr "全てのペイパルの支払い手続きはここに保存されます。"
1163
+
1164
+ #: views/payments/admin_all_payment_transactions.php:14
1165
+ msgid "Search for a transaction by using email or name"
1166
+ msgstr "メールアドレス又はユーザー名で支払い手続きを検索する"
1167
+
1168
+ #: views/payments/admin_all_payment_transactions.php:18
1169
+ msgid "Search"
1170
+ msgstr "検索"
1171
+
1172
+ #: views/payments/admin_create_payment_buttons.php:13
1173
+ msgid ""
1174
+ "You can create new payment button for your memberships using this interface."
1175
+ msgstr "ペイパル支払いボタンを作成できます。"
1176
+
1177
+ #: views/payments/admin_create_payment_buttons.php:22
1178
+ msgid "Select Payment Button Type"
1179
+ msgstr "ペイパル支払いボタンを選択"
1180
+
1181
+ #: views/payments/admin_create_payment_buttons.php:34
1182
+ msgid "Next"
1183
+ msgstr "次へ"
1184
+
1185
+ #: views/payments/admin_edit_payment_buttons.php:12
1186
+ msgid "You can edit a payment button using this interface."
1187
+ msgstr "ペイパル支払いボタンを編集できます。"
1188
+
1189
+ #: views/payments/admin_payments_page.php:9
1190
+ msgid "Simple Membership::Payments"
1191
+ msgstr "Simple Membership::支払い"
1192
+
1193
+ #: views/payments/admin_payment_buttons.php:7
1194
+ msgid ""
1195
+ "All the membership buttons that you created in the plugin are displayed here."
1196
+ msgstr "全ての作成した会員ボタンはこちらに表示されます。"
1197
+
1198
+ #: views/payments/admin_payment_settings.php:31
1199
+ msgid "PayPal Integration Settings"
1200
+ msgstr "ペイパル統合設定"
1201
+
1202
+ #: views/payments/admin_payment_settings.php:34
1203
+ msgid "Generate the \"Advanced Variables\" Code for your PayPal button"
1204
+ msgstr "ペイパルお支払いボタンのためのAdvanced Variablesコードを生成する。"
1205
+
1206
+ #: views/payments/admin_payment_settings.php:37
1207
+ msgid "Enter the Membership Level ID"
1208
+ msgstr "会員レベルIDを入力"
1209
+
1210
+ #: views/payments/admin_payment_settings.php:39
1211
+ msgid "Generate Code"
1212
+ msgstr "コードを生成"
1213
+
1214
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:18
1215
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:192
1216
+ msgid "PayPal Buy Now Button Configuration"
1217
+ msgstr ""
1218
+ "ペイパルいますぐ購入ボタン\n"
1219
+ "の設定"
1220
+
1221
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:28
1222
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:209
1223
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:29
1224
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:302
1225
+ msgid "Button Title"
1226
+ msgstr "ボタンのタイトル名"
1227
+
1228
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:46
1229
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:227
1230
+ msgid "Payment Amount"
1231
+ msgstr "お支払い額"
1232
+
1233
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:54
1234
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:235
1235
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:47
1236
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:320
1237
+ msgid "Payment Currency"
1238
+ msgstr "お支払い通貨"
1239
+
1240
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:93
1241
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:274
1242
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:173
1243
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:446
1244
+ msgid "Return URL"
1245
+ msgstr "リダイレクトURL"
1246
+
1247
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:101
1248
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:282
1249
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:86
1250
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:359
1251
+ msgid "PayPal Email"
1252
+ msgstr "ペイパル メールアドレス"
1253
+
1254
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:109
1255
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:290
1256
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:181
1257
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:454
1258
+ msgid "Button Image URL"
1259
+ msgstr "ボタンイメージURL"
1260
+
1261
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:119
1262
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:300
1263
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:193
1264
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:466
1265
+ msgid "Save Payment Data"
1266
+ msgstr "支払日の保存"
1267
+
1268
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:201
1269
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:294
1270
+ msgid "Button ID"
1271
+ msgstr "ボタンID"
1272
+
1273
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:20
1274
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:288
1275
+ msgid "PayPal Subscription Button Configuration"
1276
+ msgstr "ペイパル定期購読ボタンの設定"
1277
+
1278
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:94
1279
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:367
1280
+ msgid "Billing Amount Each Cycle"
1281
+ msgstr "各支払いサイクルの請求金額"
1282
+
1283
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:102
1284
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:375
1285
+ msgid "Billing Cycle"
1286
+ msgstr "支払いサイクル"
1287
+
1288
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:115
1289
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:388
1290
+ msgid "Billing Cycle Count"
1291
+ msgstr "支払いサイクル数"
1292
+
1293
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:123
1294
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:396
1295
+ msgid "Re-attempt on Failure"
1296
+ msgstr "再試行は失敗しました"
1297
+
1298
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:136
1299
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:409
1300
+ msgid ""
1301
+ "Trial Billing Details (Leave empty if you are not offering a trial period)"
1302
+ msgstr ""
1303
+ "トライアル請求詳細(もしトライアル期間を設定していなければ空欄にすること)"
1304
+
1305
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:142
1306
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:415
1307
+ msgid "Trial Billing Amount"
1308
+ msgstr "トライアル請求金額"
1309
+
1310
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:150
1311
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:423
1312
+ msgid "Trial Billing Period"
1313
+ msgstr "トライアル請求期間"
1314
+
1315
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:167
1316
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:440
1317
+ msgid "Optional Details"
1318
+ msgstr "オプション詳細"
1319
+
1320
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:77
1321
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:79
1322
+ msgid "Buy Now"
1323
+ msgstr "今すぐ購入"
1324
+
1325
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:197
1326
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:199
1327
+ msgid "Subscribe Now"
1328
+ msgstr "今すぐ定期購読"
languages/swpm-nl_NL.mo CHANGED
Binary file
languages/swpm-nl_NL.po CHANGED
@@ -1,479 +1,853 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: simple membership\n"
4
- "POT-Creation-Date: 2014-08-28 19:28+1000\n"
5
- "PO-Revision-Date: 2015-01-13 22:29+0100\n"
6
  "Last-Translator: \n"
7
- "Language-Team: Henk Rostohar <h.g.rostohar@gmail.com>\n"
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "X-Generator: Poedit 1.7.3\n"
12
  "X-Poedit-KeywordsList: __;_e\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "Language: nl_NL\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: classes/class.bAccessControl.php:23 classes/class.bAccessControl.php:40
19
- msgid "You are not allowed to view this content"
20
- msgstr "U bent niet gemachtigd deze inhoud te bekijken."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
 
22
- #: classes/class.bAccessControl.php:26 classes/class.bAccessControl.php:43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  msgid "You need to login to view this content. "
24
- msgstr "U moet inloggen om deze inhoud te kunnen bekijken."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
 
26
- #: classes/class.bAdminRegistration.php:48
27
- #: classes/class.bFrontRegistration.php:64
28
- msgid "Registration Successful."
29
- msgstr "Registratie is gelukt."
30
 
31
- #: classes/class.bAdminRegistration.php:53
32
- #: classes/class.bAdminRegistration.php:73
33
- #: classes/class.bMembershipLevel.php:36 classes/class.bMembershipLevel.php:54
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  msgid "Please correct the following:"
35
  msgstr "Corrigeer het volgende:"
36
 
37
- #: classes/class.bAjax.php:16 classes/class.bAjax.php:28
 
 
 
 
 
 
 
 
38
  msgid "Aready taken"
39
- msgstr "Reeds uitgevoerd"
 
 
 
 
40
 
41
- #: classes/class.bAjax.php:29
42
  msgid "Available"
43
  msgstr "Beschikbaar"
44
 
45
- #: classes/class.bAuth.php:48 classes/class.bFrontRegistration.php:179
46
  msgid "User Not Found."
47
  msgstr "Gebruiker onbekend."
48
 
49
- #: classes/class.bAuth.php:55
50
  msgid "Password Empty or Invalid."
51
- msgstr "Password is niet ingevuld of ongeldig."
52
 
53
- #: classes/class.bAuth.php:79
54
  msgid "Account is inactive."
55
- msgstr "Dit account is niet actief."
56
 
57
- #: classes/class.bAuth.php:89
 
 
 
 
 
 
 
 
58
  msgid "You are logged in as:"
59
- msgstr "U bent ingelogd als:"
60
 
61
- #: classes/class.bAuth.php:128
62
  msgid "Logged Out Successfully."
63
- msgstr "U bent met succes uitgelogd."
64
 
65
- #: classes/class.bAuth.php:170
66
  msgid "Session Expired."
67
- msgstr "Uw sessie is verlopen."
68
 
69
- #: classes/class.bAuth.php:179
70
- msgid "Invalid User Name"
71
  msgstr "Ongeldige gebruikersnaam"
72
 
73
- #: classes/class.bAuth.php:187
74
- msgid "Bad Cookie Hash"
75
- msgstr "Verkeerde Cookie hash"
 
 
 
 
 
 
 
 
 
 
 
 
76
 
77
- #: classes/class.bForm.php:26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
  msgid ""
79
- "Wordpress account exists with given user name. But given email doesn't match."
80
  msgstr ""
81
- "Het Wordpress account met deze gebruikersnaam bestaat. Maar het email adres "
82
- "klopt niet. "
83
 
84
- #: classes/class.bForm.php:31
85
  msgid ""
86
- "Wordpress account exists with given email. But given user name doesn't match."
87
  msgstr ""
88
- "Dit Wordpress account met dit email adres bestaat maar de gebruikersnaam "
89
- "klopt niet."
90
 
91
- #: classes/class.bForm.php:40
92
- msgid "User name is required"
93
- msgstr "De gebruikersnaam is vereist."
94
 
95
- #: classes/class.bForm.php:49
96
- msgid "User name already exists."
97
- msgstr "Deze gebruikersnaam bestaat reeds."
98
 
99
- #: classes/class.bForm.php:72
 
 
 
 
100
  msgid "Password is required"
101
- msgstr "Password is vereist"
102
 
103
- #: classes/class.bForm.php:79
104
  msgid "Password mismatch"
105
- msgstr "Password klopt niet"
106
 
107
- #: classes/class.bForm.php:95
108
  msgid "Email is required"
109
- msgstr "Email adres is vereist"
110
 
111
- #: classes/class.bForm.php:99
112
  msgid "Email is invalid"
113
- msgstr "Email adres is niet geldig"
114
 
115
- #: classes/class.bForm.php:112
116
  msgid "Email is already used."
117
- msgstr "Email adres is al in gebruik."
118
 
119
- #: classes/class.bForm.php:178
120
  msgid "Member since field is invalid"
121
  msgstr "Lid sinds veld is ongeldig"
122
 
123
- #: classes/class.bForm.php:189
124
- msgid "Subscription starts field is invalid"
125
- msgstr "Inschrijving start veld is ongeldig"
126
 
127
- #: classes/class.bForm.php:199
128
  msgid "Gender field is invalid"
129
  msgstr "Geslacht veld is ongeldig"
130
 
131
- #: classes/class.bForm.php:210
132
  msgid "Account state field is invalid"
133
- msgstr "Account status veld is ongeldig"
 
 
 
 
 
 
 
 
134
 
135
- #: classes/class.bFrontRegistration.php:64 classes/class.bSettings.php:326
 
 
 
 
 
136
  msgid "Please"
137
- msgstr "Alstublieft"
138
 
139
- #: classes/class.bFrontRegistration.php:64 classes/class.bSettings.php:326
140
- #: views/login.php:21
141
  msgid "Login"
142
- msgstr "Login"
143
 
144
- #: classes/class.bFrontRegistration.php:79
145
- #: classes/class.bFrontRegistration.php:158
146
  msgid "Please correct the following"
147
  msgstr "Corrigeer het volgende"
148
 
149
- #: classes/class.bFrontRegistration.php:92
150
  msgid "Membership Level Couldn't be found."
151
- msgstr "Lidmaatschap niveau kon niet worden gevonden."
 
 
 
 
152
 
153
- #: classes/class.bFrontRegistration.php:168
154
- msgid "Email Address Not Valid."
155
- msgstr "Email adres is ongeldig."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
156
 
157
- #: classes/class.bFrontRegistration.php:199
158
  msgid "New password has been sent to your email address."
159
- msgstr "Een nieuw password is naar uw email adres verzonden."
160
 
161
- #: classes/class.bLevelForm.php:31
162
- msgid "Subscriptoin duration must be > 0."
163
- msgstr "Duur van lidmaatschap moet groter zijn dan 0."
164
 
165
- #: classes/class.bMembers.php:7
166
- msgid "Member"
167
- msgstr "Lid"
168
 
169
- #: classes/class.bMembers.php:8 classes/class.simple-wp-membership.php:467
170
- msgid "Members"
171
- msgstr "Leden"
172
 
173
- #: classes/class.bMembers.php:16 classes/class.bMembershipLevels.php:16
174
- msgid "ID"
175
- msgstr "ID"
 
 
 
 
 
 
 
 
 
 
 
176
 
177
- #: classes/class.bMembers.php:17 views/add.php:5 views/edit.php:4
178
- #: views/login.php:5
179
- msgid "User Name"
180
  msgstr "Gebruikersnaam"
181
 
182
- #: classes/class.bMembers.php:18 views/add.php:21
183
- #: views/admin_member_form_common_part.php:2 views/edit.php:20
 
 
184
  msgid "First Name"
185
  msgstr "Voornaam"
186
 
187
- #: classes/class.bMembers.php:19 views/add.php:25
188
- #: views/admin_member_form_common_part.php:6 views/edit.php:24
 
 
189
  msgid "Last Name"
190
  msgstr "Achternaam"
191
 
192
- #: classes/class.bMembers.php:20 views/add.php:9 views/edit.php:8
193
  msgid "Email"
194
- msgstr "Email adres"
195
 
196
- #: classes/class.bMembers.php:21 classes/class.bMembershipLevels.php:8
197
- #: classes/class.bMembershipLevels.php:17 views/add.php:64
198
- #: views/admin_member_form_common_part.php:55 views/edit.php:52
199
- msgid "Membership Level"
200
- msgstr "Lidmaatschap niveau"
201
 
202
- #: classes/class.bMembers.php:22 views/admin_member_form_common_part.php:78
203
- msgid "Subscription Starts"
204
- msgstr "Inschrijving start"
205
-
206
- #: classes/class.bMembers.php:23
207
  msgid "Account State"
208
- msgstr "Account status"
209
 
210
- #: classes/class.bMembers.php:35 classes/class.bMembershipLevels.php:29
 
 
 
211
  msgid "Delete"
212
  msgstr "Verwijder"
213
 
214
- #: classes/class.bMembers.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
215
  msgid "No Member found."
216
  msgstr "Geen lid gevonden"
217
 
218
- #: classes/class.bMembershipLevel.php:31
219
  msgid "Membership Level Creation Successful."
220
- msgstr "Lidmaatschap niveau met succes aangemaakt."
221
 
222
- #: classes/class.bMembershipLevel.php:50
223
  msgid "Updated Successfully."
224
- msgstr "Succesvolle Update"
225
-
226
- #: classes/class.bMembershipLevels.php:9
227
- #: classes/class.simple-wp-membership.php:469
228
- msgid "Membership Levels"
229
- msgstr "Lidmaatschap niveaus"
230
 
231
- #: classes/class.bMembershipLevels.php:18
232
  msgid "Role"
233
  msgstr "Rol"
234
 
235
- #: classes/class.bMembershipLevels.php:19
236
- msgid "Subscription Valid For"
237
- msgstr "Inschrijving geldig voor"
238
 
239
- #: classes/class.bSettings.php:28
240
- msgid "Plugin Documentation"
241
- msgstr "Plugin Documentatie"
 
 
 
 
 
 
 
 
242
 
243
- #: classes/class.bSettings.php:30
 
 
 
 
244
  msgid "General Settings"
245
- msgstr "Algemene instellingen"
 
 
 
 
 
 
 
 
 
 
 
 
246
 
247
- #: classes/class.bSettings.php:32
 
 
 
 
 
 
 
 
 
 
 
 
248
  msgid "Enable Free Membership"
249
- msgstr "Inschakelen gratis Lidmaatschap"
250
 
251
- #: classes/class.bSettings.php:35
252
- msgid "Enable/disable registration for free membership level"
253
- msgstr "Inschakelen/uitschakelen van registratie voor gratis Lidmaatschap"
 
 
 
 
 
254
 
255
- #: classes/class.bSettings.php:36
256
  msgid "Free Membership Level ID"
257
- msgstr "Gratis Lidmaatschap Niveau ID"
258
 
259
- #: classes/class.bSettings.php:39
260
  msgid "Assign free membership level ID"
261
- msgstr "Toewijzen gratis Lidmaatschap Niveau ID"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
262
 
263
- #: classes/class.bSettings.php:40
264
  msgid "Hide Adminbar"
265
- msgstr "Verberg de adminbalk"
266
 
267
- #: classes/class.bSettings.php:43
268
  msgid ""
269
  "WordPress shows an admin toolbar to the logged in users of the site. Check "
270
  "this box if you want to hide that admin toolbar in the fronend of your site."
271
  msgstr ""
272
- "Wordpress toont aan de ingelogde gebruikers een adminbalk. Vink dit hokje "
273
- "aan als je de adminbalk in het frontend van je website wilt verbergen."
 
274
 
275
- #: classes/class.bSettings.php:45
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
276
  msgid "Pages Settings"
277
- msgstr "Pagina instellingen"
278
 
279
- #: classes/class.bSettings.php:47
280
  msgid "Login Page URL"
281
- msgstr "Login pagina URL"
282
 
283
- #: classes/class.bSettings.php:51
284
  msgid "Registration Page URL"
285
  msgstr "Registratie pagina URL"
286
 
287
- #: classes/class.bSettings.php:55
288
  msgid "Join Us Page URL"
289
- msgstr "Join Us pagina URL"
290
 
291
- #: classes/class.bSettings.php:59
292
  msgid "Edit Profile Page URL"
293
- msgstr "Wijzig Profiel pagina URL"
294
 
295
- #: classes/class.bSettings.php:63
296
  msgid "Password Reset Page URL"
297
- msgstr "Password Reset pagina URL"
298
 
299
- #: classes/class.bSettings.php:68
300
  msgid "Test & Debug Settings"
301
- msgstr "Test & Debug instellingen"
 
 
 
 
302
 
303
- #: classes/class.bSettings.php:74
304
  msgid "Enable Sandbox Testing"
305
- msgstr "Sandbox Testen inschakelen"
306
 
307
- #: classes/class.bSettings.php:77
308
  msgid "Enable this option if you want to do sandbox payment testing."
309
- msgstr "Schakel deze optie in als je sandbox testbetalingen wilt uitvoeren."
 
 
 
 
 
 
 
310
 
311
- #: classes/class.bSettings.php:90
312
  msgid "Email Misc. Settings"
313
- msgstr "Diverse email instellingen"
314
 
315
- #: classes/class.bSettings.php:92
316
  msgid "From Email Address"
317
- msgstr "Van Email Adres"
318
 
319
- #: classes/class.bSettings.php:97
320
  msgid "Email Settings (Prompt to Complete Registration )"
321
- msgstr "Email instellingen (Invullen om de registratie te voltooien)"
322
 
323
- #: classes/class.bSettings.php:99 classes/class.bSettings.php:110
324
- #: classes/class.bSettings.php:129
325
  msgid "Email Subject"
326
- msgstr "Email onderwerp"
327
 
328
- #: classes/class.bSettings.php:103 classes/class.bSettings.php:114
329
- #: classes/class.bSettings.php:133
330
  msgid "Email Body"
331
- msgstr "Email Body"
332
 
333
- #: classes/class.bSettings.php:108
334
  msgid "Email Settings (Registration Complete)"
335
- msgstr "Email instellingen (Registratie voltooid)"
 
 
 
 
 
 
 
 
 
 
 
 
336
 
337
- #: classes/class.bSettings.php:118
338
- msgid "Send Notification To Admin"
339
- msgstr "Stuur een bericht naar de beheerder"
340
 
341
- #: classes/class.bSettings.php:122
 
 
 
 
 
 
 
342
  msgid "Send Email to Member When Added via Admin Dashboard"
343
- msgstr "Stuur een email naar het aangemelde lid via het beheerders dashboard"
 
 
 
 
344
 
345
- #: classes/class.bSettings.php:127
346
  msgid " Email Settings (Account Upgrade Notification)"
347
- msgstr "Email instellingen (Bericht van Account Upgrade)"
348
 
349
- #: classes/class.bSettings.php:326
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
350
  msgid "Not a Member?"
351
- msgstr "Geen lid?"
352
 
353
- #: classes/class.bSettings.php:326 views/login.php:30
354
  msgid "Join Us"
355
- msgstr "Join Us"
356
 
357
- #: classes/class.bUtils.php:32 views/admin_member_form_common_part.php:66
358
  msgid "Active"
359
  msgstr "Actief"
360
 
361
- #: classes/class.bUtils.php:33 views/admin_member_form_common_part.php:67
362
  msgid "Inactive"
363
  msgstr "Niet actief"
364
 
365
- #: classes/class.bUtils.php:34 views/admin_member_form_common_part.php:68
366
  msgid "Pending"
367
- msgstr "In afwachting"
368
 
369
- #: classes/class.bUtils.php:35 views/admin_member_form_common_part.php:69
370
  msgid "Expired"
371
  msgstr "Verlopen"
372
 
373
- #: classes/class.bUtils.php:225
374
  msgid "Never"
375
  msgstr "Nooit"
376
 
377
- #: classes/class.miscUtils.php:51
378
- msgid "Registration"
379
- msgstr "Registratie"
380
 
381
- #: classes/class.miscUtils.php:74
382
- msgid "Member Login"
383
- msgstr "Leden login"
384
 
385
- #: classes/class.miscUtils.php:97
386
- msgid "Profile"
387
- msgstr "Profiel"
388
 
389
- #: classes/class.miscUtils.php:120
390
- msgid "Password Reset"
391
- msgstr "Password resetten"
392
 
393
- #: classes/class.simple-wp-membership.php:178
394
- msgid "You are not logged in."
395
- msgstr "U bent niet ingelogd."
396
 
397
- #: classes/class.simple-wp-membership.php:209
398
- msgid "Simple WP Membership Protection"
399
- msgstr "Simple WP Membership afscherming"
 
 
400
 
401
- #: classes/class.simple-wp-membership.php:222
402
- msgid "Simple Membership Protection options"
403
- msgstr "Simple Membership Afscherm opties"
404
 
405
- #: classes/class.simple-wp-membership.php:238
406
- msgid "Do you want to protect this content?"
407
- msgstr "Wil je deze inhoud verbergen?"
408
 
409
- #: classes/class.simple-wp-membership.php:243
410
- msgid "Select the membership level that can access this content:"
411
- msgstr "Selecteer de Lidmaatschap niveaus die toegang hebben tot deze inhoud:"
 
412
 
413
- #: classes/class.simple-wp-membership.php:375
414
- msgid "Display SWPM Login."
415
- msgstr "Toon SWPM login"
416
 
417
- #: classes/class.simple-wp-membership.php:377
418
- msgid "SWPM Login"
419
- msgstr "SWPM Login"
420
 
421
- #: classes/class.simple-wp-membership.php:464
422
- msgid "WP Membership"
423
- msgstr "WP Lidmaatschap"
424
 
425
- #: classes/class.simple-wp-membership.php:471
426
- msgid "Settings"
427
- msgstr "Instellingen"
428
 
429
- #: views/add.php:13 views/admin_member_form_common_part.php:45
430
- #: views/edit.php:12 views/login.php:11
431
- msgid "Password"
432
- msgstr "Password"
433
 
434
- #: views/add.php:17 views/edit.php:16
435
- msgid "Repeat Password"
436
- msgstr "Herhaal password"
437
 
438
- #: views/add.php:29 views/admin_member_form_common_part.php:10
439
- msgid "Gender"
440
- msgstr "Geslacht"
441
 
442
- #: views/add.php:36 views/admin_member_form_common_part.php:17
443
- #: views/edit.php:28
444
- msgid "Phone"
445
- msgstr "Telefoon"
446
 
447
- #: views/add.php:40 views/admin_member_form_common_part.php:21
448
- #: views/edit.php:32
449
- msgid "Street"
450
- msgstr "Straat"
451
 
452
- #: views/add.php:44 views/admin_member_form_common_part.php:25
453
- #: views/edit.php:36
454
- msgid "City"
455
- msgstr "Plaats"
456
 
457
- #: views/add.php:48 views/admin_member_form_common_part.php:29
458
- #: views/edit.php:40
459
- msgid "State"
460
- msgstr "Provincie"
461
 
462
- #: views/add.php:52 views/admin_member_form_common_part.php:33
463
- #: views/edit.php:44
464
- msgid "Zipcode"
465
- msgstr "Postcode"
466
 
467
- #: views/add.php:56 views/admin_member_form_common_part.php:37
468
- #: views/edit.php:48
469
- msgid "Country"
470
- msgstr "Land"
471
 
472
- #: views/add.php:60 views/admin_member_form_common_part.php:41
473
- msgid "Company"
474
- msgstr "Bedrijf"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
475
 
476
- #: views/add.php:71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
477
  msgid "Register"
478
  msgstr "Registreer"
479
 
@@ -483,17 +857,12 @@ msgstr "Voeg een lid toe"
483
 
484
  #: views/admin_add.php:7
485
  msgid "Create a brand new user and add it to this site."
486
- msgstr "Maak een nieuwe gebruiker en voeg deze toe aan deze webste."
487
-
488
- #: views/admin_add.php:11
489
- msgid "User name"
490
- msgstr "Gebruikersnaam"
491
 
492
  #: views/admin_add.php:11 views/admin_add.php:15 views/admin_add_level.php:11
493
  #: views/admin_add_level.php:15 views/admin_add_level.php:19
494
- #: views/admin_edit.php:9 views/admin_edit.php:13
495
- #: views/admin_edit_level.php:10 views/admin_edit_level.php:14
496
- #: views/admin_edit_level.php:18
497
  msgid "(required)"
498
  msgstr "(vereist)"
499
 
@@ -502,141 +871,253 @@ msgid "E-mail"
502
  msgstr "E-mail"
503
 
504
  #: views/admin_add.php:19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
505
  msgid "Add New Member "
506
  msgstr "Voeg een nieuw lid toe"
507
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
508
  #: views/admin_add_level.php:6
509
  msgid "Create new membership level."
510
- msgstr "Maak een nieuw Lidmaatschap niveau"
511
 
512
  #: views/admin_add_level.php:11 views/admin_edit_level.php:10
513
  msgid "Membership Level Name"
514
- msgstr "Lidmaatschap Niveau Naam"
515
 
516
  #: views/admin_add_level.php:15 views/admin_edit_level.php:14
517
  msgid "Default WordPress Role"
518
- msgstr "Default WordPress Role"
519
 
520
  #: views/admin_add_level.php:19 views/admin_edit_level.php:18
521
- msgid "Subscription Duration"
522
- msgstr "Inschrijftermijn"
 
 
 
 
 
523
 
524
- #: views/admin_add_level.php:26 views/admin_edit_level.php:27
525
- msgid "No Expiry"
526
- msgstr "Verloopt niet"
 
 
 
527
 
528
- #: views/admin_add_level.php:55
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
529
  msgid "Add New Membership Level "
530
- msgstr "Voeg een nieuw lidmaatschap niveau toe"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
531
 
532
  #: views/admin_edit.php:5
533
  msgid "Edit Member"
534
- msgstr "Wijzig lid"
535
 
536
  #: views/admin_edit.php:6
537
  msgid "Edit existing member details."
538
- msgstr "Wijzig gegevens bestaand lid."
539
 
540
- #: views/admin_edit.php:9
541
- msgid "Username"
542
- msgstr "Gebruikersnaam"
 
 
 
 
 
 
 
 
543
 
544
- #: views/admin_edit.php:18
 
 
 
 
545
  msgid "Edit User "
546
  msgstr "Wijzig gebruiker"
547
 
548
  #: views/admin_edit_level.php:5
549
  msgid "Edit membership level"
550
- msgstr "Wijzig lidmaatschap niveau"
551
 
552
  #: views/admin_edit_level.php:6
553
  msgid "Edit membership level."
554
- msgstr "Wijzig lidmaatschap niveau."
 
 
 
 
 
 
 
 
 
555
 
556
- #: views/admin_edit_level.php:54
557
  msgid "Edit Membership Level "
558
- msgstr "Wijzig lidmaatschap niveau"
559
 
560
  #: views/admin_members.php:2
561
  msgid "Simple WP Membership::Members"
562
  msgstr "Simple WP Membership::Leden"
563
 
564
- #: views/admin_members.php:3 views/admin_members.php:19
565
- #: views/admin_membership_levels.php:21
566
  msgid "Add New"
567
  msgstr "Voeg nieuw toe"
568
 
569
- #: views/admin_members.php:9 views/admin_membership_levels.php:11
 
 
 
 
570
  msgid "search"
571
  msgstr "zoeken"
572
 
573
- #: views/admin_membership_levels.php:3
574
- msgid "Simple WP Membership::Membership Levels"
575
- msgstr "Simple WP Membership::Lidmaatschap niveaus"
576
-
577
  #: views/admin_membership_level_menu.php:2
578
  msgid "Membership level"
579
  msgstr "Lidmaatschap niveau"
580
 
581
  #: views/admin_membership_level_menu.php:3
582
  msgid "Manage Content Production"
583
- msgstr "Beheer de inhouds productie"
 
 
 
 
584
 
585
  #: views/admin_membership_manage.php:17
586
  msgid "Example Content Protection Settings"
587
- msgstr "Voorbeeld inhoud afscherm instellingen"
588
-
589
- #: views/admin_member_form_common_part.php:45
590
- msgid "(twice, required)"
591
- msgstr "(tweemaal, vereist)"
592
 
593
- #: views/admin_member_form_common_part.php:50
594
- msgid "Strength indicator"
595
- msgstr "Sterkte indicator"
596
 
597
- #: views/admin_member_form_common_part.php:51
598
- msgid ""
599
- "Hint: The password should be at least seven characters long. To make it "
600
- "stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
601
- "$ % ^ &amp; )."
602
- msgstr ""
603
- "Hint: Het password moet minstens zeven karakters bevatten. Om het sterker te "
604
- "maken gebruikt u hoofdletters en kleine letters, nummers en symbolen "
605
- "zoals ! ? / $ % ^ & ; ) \""
606
 
607
- #: views/admin_member_form_common_part.php:64 views/loggedin.php:7
608
- #: views/login_widget_logged.php:6
609
- msgid "Account Status"
610
- msgstr "Account Status"
611
 
612
- #: views/admin_member_form_common_part.php:74
613
- msgid "Member Since"
614
- msgstr "Lid sinds"
615
 
616
- #: views/admin_payment_settings.php:2 views/admin_settings.php:2
617
- #: views/admin_tools_settings.php:2
618
- msgid "Simple WP Membership::Settings"
619
- msgstr "Simple WP Membership::Instellingen"
620
 
621
- #: views/admin_payment_settings.php:33
622
- msgid "PayPal Integration Settings"
623
- msgstr "PayPal Integratie Instellingen"
624
 
625
- #: views/admin_payment_settings.php:36
626
- msgid "Generate the \"Advanced Variables\" Code for your PayPal button"
627
- msgstr "Genereer de \"Geavanceerde Variabelen\" Code voor je PayPal knop"
628
 
629
- #: views/admin_payment_settings.php:39
630
- msgid "Enter the Membership Level ID"
631
- msgstr "Voer het Lidmaatschap niveau ID in"
632
 
633
- #: views/admin_payment_settings.php:41
634
- msgid "Generate Code"
635
- msgstr "Genereer de code"
636
 
637
  #: views/admin_tools_settings.php:9
638
  msgid "Generate a Registration Completion link"
639
- msgstr "Genereer een Registratie Voltooid link"
640
 
641
  #: views/admin_tools_settings.php:12
642
  msgid ""
@@ -644,13 +1125,13 @@ msgid ""
644
  "your customer if they have missed the email that was automatically sent out "
645
  "to them after the payment."
646
  msgstr ""
647
- "Je kunt hier zelf een Registratie Compleet link genereren en aan je klant "
648
- "geven als zij de automatische email die hen was toegezonden na betaling "
649
- "hebben gemist."
650
 
651
  #: views/admin_tools_settings.php:17
652
  msgid "Generate Registration Completion Link"
653
- msgstr "Genereer Registratie Voltooid link"
654
 
655
  #: views/admin_tools_settings.php:20
656
  msgid "OR"
@@ -658,52 +1139,291 @@ msgstr "OF"
658
 
659
  #: views/admin_tools_settings.php:21
660
  msgid "For All Pending Registrations"
661
- msgstr "Voor alle wachtende registraties"
662
 
663
  #: views/admin_tools_settings.php:24
664
  msgid "Registration Completion Links Will Appear Below:"
665
- msgstr "De Registratie Voltooid link zal hieronder verschijnen:"
666
 
667
  #: views/admin_tools_settings.php:31
668
  msgid "Send Registration Reminder Email too"
669
- msgstr "Stuur ook een Registratie herinnering "
670
 
671
  #: views/admin_tools_settings.php:34
672
  msgid "Submit"
673
  msgstr "Verstuur"
674
 
675
- #: views/edit.php:58
676
  msgid "Update"
677
- msgstr "Update"
678
-
679
- #: views/forgot_password.php:5
680
- msgid "Email Address"
681
- msgstr "Email Adres"
682
 
683
  #: views/forgot_password.php:12
684
  msgid "Reset Password"
685
- msgstr "Reset Password"
686
 
687
- #: views/loggedin.php:3 views/login_widget_logged.php:3
688
  msgid "Logged in as"
689
  msgstr "Ingelogd als"
690
 
691
- #: views/loggedin.php:11 views/login_widget_logged.php:9
692
  msgid "Membership"
693
  msgstr "Lidmaatschap"
694
 
695
- #: views/loggedin.php:15 views/login_widget_logged.php:12
696
  msgid "Account Expiry"
697
- msgstr "Account verloopt"
698
 
699
- #: views/loggedin.php:19 views/login_widget_logged.php:16
700
  msgid "Logout"
701
- msgstr "Logout"
702
 
703
- #: views/login.php:17
704
  msgid "Remember Me"
705
- msgstr "Herinner mij"
706
 
707
- #: views/login.php:26
708
  msgid "Forgot Password"
709
- msgstr "Password vergeten"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Simple WP Membership\n"
4
+ "POT-Creation-Date: 2016-05-24 11:52+0200\n"
5
+ "PO-Revision-Date: 2016-05-24 15:25+0200\n"
6
  "Last-Translator: \n"
7
+ "Language-Team: Robin Roelofsen <info@dreamdesignsolutions.nl>\n"
8
+ "Language: nl_NL\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.7\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: classes/class.simple-wp-membership.php:264
19
+ msgid "You are not logged in."
20
+ msgstr "Je bent niet ingelogd."
21
+
22
+ #: classes/class.simple-wp-membership.php:298
23
+ msgid "Simple WP Membership Protection"
24
+ msgstr "Simple WP Membership Afscherming"
25
+
26
+ #: classes/class.simple-wp-membership.php:310
27
+ msgid "Simple Membership Protection options"
28
+ msgstr "Simple Membership Afscherm opties"
29
+
30
+ #: classes/class.simple-wp-membership.php:326
31
+ msgid "Do you want to protect this content?"
32
+ msgstr "Wil je deze inhoud verbergen?"
33
+
34
+ #: classes/class.simple-wp-membership.php:331
35
+ msgid "Select the membership level that can access this content:"
36
+ msgstr "Selecteer de lidmaatschapniveaus die toegang hebben tot deze inhoud:"
37
+
38
+ #: classes/class.simple-wp-membership.php:464
39
+ msgid "WP Membership"
40
+ msgstr "WP Membership"
41
+
42
+ #: classes/class.simple-wp-membership.php:465 classes/class.swpm-members.php:10
43
+ #: views/admin_members_menu.php:2
44
+ msgid "Members"
45
+ msgstr "Leden"
46
+
47
+ #: classes/class.simple-wp-membership.php:466
48
+ #: classes/class.swpm-category-list.php:20
49
+ #: classes/class.swpm-membership-levels.php:11
50
+ msgid "Membership Levels"
51
+ msgstr "Niveaus"
52
 
53
+ #: classes/class.simple-wp-membership.php:467
54
+ msgid "Settings"
55
+ msgstr "Instellingen"
56
+
57
+ #: classes/class.simple-wp-membership.php:468
58
+ msgid "Payments"
59
+ msgstr "Betalingen"
60
+
61
+ #: classes/class.simple-wp-membership.php:469
62
+ msgid "Add-ons"
63
+ msgstr "Extra Functies"
64
+
65
+ #: classes/class.swpm-access-control.php:21
66
+ #: classes/class.swpm-access-control.php:28
67
+ #: classes/class.swpm-access-control.php:55
68
  msgid "You need to login to view this content. "
69
+ msgstr "Je moet inloggen om deze inhoud te kunnen bekijken. "
70
+
71
+ #: classes/class.swpm-access-control.php:34
72
+ #: classes/class.swpm-access-control.php:60
73
+ msgid ""
74
+ "Your account has expired. Please renew your account to gain access to this "
75
+ "content."
76
+ msgstr ""
77
+ "Je lidmaatschap is verlopen. Vernieuw je lidmaatschap om deze inhoud te "
78
+ "kunnen bekijken."
79
+
80
+ #: classes/class.swpm-access-control.php:41
81
+ msgid "This content can only be viewed by members who joined on or before "
82
+ msgstr ""
83
+ "Deze inhoud kan alleen worden bekeken door leden die lid zijn geworden op of "
84
+ "voor "
85
 
86
+ #: classes/class.swpm-access-control.php:46
87
+ #: classes/class.swpm-access-control.php:66
88
+ msgid "This content is not permitted for your membership level."
89
+ msgstr "Deze inhoud is niet beschikbaar voor jouw lidmaatschapniveau."
90
 
91
+ #: classes/class.swpm-access-control.php:84
92
+ msgid " The rest of the content is not permitted for your membership level."
93
+ msgstr ""
94
+ "De rest van deze inhoud is niet beschikbaar op jouw lidmaatschapniveau."
95
+
96
+ #: classes/class.swpm-access-control.php:88
97
+ #: classes/class.swpm-access-control.php:106
98
+ msgid "You need to login to view the rest of the content. "
99
+ msgstr "Je moet inloggen om de rest van de inhoud te kunnen bekijken. "
100
+
101
+ #: classes/class.swpm-admin-registration.php:54
102
+ msgid "Member record added successfully."
103
+ msgstr "Lidmaatschap record met succes toegevoegd."
104
+
105
+ #: classes/class.swpm-admin-registration.php:59
106
+ #: classes/class.swpm-admin-registration.php:81
107
+ #: classes/class.swpm-admin-registration.php:105
108
+ #: classes/class.swpm-membership-level.php:43
109
+ #: classes/class.swpm-membership-level.php:62
110
  msgid "Please correct the following:"
111
  msgstr "Corrigeer het volgende:"
112
 
113
+ #: classes/class.swpm-admin-registration.php:96
114
+ msgid "Your current password"
115
+ msgstr "Je huidige wachtwoord"
116
+
117
+ #: classes/class.swpm-ajax.php:14
118
+ msgid "Invalid Email Address"
119
+ msgstr "Ongeldig e-mail adres"
120
+
121
+ #: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
122
  msgid "Aready taken"
123
+ msgstr "Bestaat al"
124
+
125
+ #: classes/class.swpm-ajax.php:30
126
+ msgid "Name contains invalid character"
127
+ msgstr "Naam bevat ongeldig karakter"
128
 
129
+ #: classes/class.swpm-ajax.php:37
130
  msgid "Available"
131
  msgstr "Beschikbaar"
132
 
133
+ #: classes/class.swpm-auth.php:50
134
  msgid "User Not Found."
135
  msgstr "Gebruiker onbekend."
136
 
137
+ #: classes/class.swpm-auth.php:57
138
  msgid "Password Empty or Invalid."
139
+ msgstr "Password is niet ingevuld of is ongeldig."
140
 
141
+ #: classes/class.swpm-auth.php:82
142
  msgid "Account is inactive."
143
+ msgstr "Lidmaatschap niet actief."
144
 
145
+ #: classes/class.swpm-auth.php:85
146
+ msgid "Account is pending."
147
+ msgstr "Lidmaatschap in behandeling."
148
+
149
+ #: classes/class.swpm-auth.php:88 classes/class.swpm-auth.php:106
150
+ msgid "Account has expired."
151
+ msgstr "Lidmaatschap verlopen."
152
+
153
+ #: classes/class.swpm-auth.php:114
154
  msgid "You are logged in as:"
155
+ msgstr "Je bent ingelogd als:"
156
 
157
+ #: classes/class.swpm-auth.php:160
158
  msgid "Logged Out Successfully."
159
+ msgstr "Je bent uitgelogd."
160
 
161
+ #: classes/class.swpm-auth.php:210
162
  msgid "Session Expired."
163
+ msgstr "Sessie is verlopen."
164
 
165
+ #: classes/class.swpm-auth.php:219
166
+ msgid "Invalid Username"
167
  msgstr "Ongeldige gebruikersnaam"
168
 
169
+ #: classes/class.swpm-auth.php:227
170
+ msgid "Please login again."
171
+ msgstr "Log nogmaals in."
172
+
173
+ #: classes/class.swpm-category-list.php:19 classes/class.swpm-members.php:23
174
+ #: classes/class.swpm-membership-levels.php:10
175
+ #: classes/class.swpm-membership-levels.php:20
176
+ #: classes/admin-includes/class.swpm-payments-list-table.php:80
177
+ #: views/add.php:30 views/admin_member_form_common_part.php:2 views/edit.php:53
178
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:36
179
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:217
180
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:37
181
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:310
182
+ msgid "Membership Level"
183
+ msgstr "Lidmaatschapniveau"
184
 
185
+ #: classes/class.swpm-category-list.php:33 classes/class.swpm-members.php:18
186
+ #: classes/class.swpm-membership-levels.php:19
187
+ msgid "ID"
188
+ msgstr "ID"
189
+
190
+ #: classes/class.swpm-category-list.php:34
191
+ msgid "Name"
192
+ msgstr "Naam"
193
+
194
+ #: classes/class.swpm-category-list.php:35
195
+ msgid "Description"
196
+ msgstr "Omschrijving"
197
+
198
+ #: classes/class.swpm-category-list.php:36
199
+ msgid "Count"
200
+ msgstr "Aantal"
201
+
202
+ #: classes/class.swpm-category-list.php:80
203
+ msgid "Category protection updated!"
204
+ msgstr "Categorie afscherming bijgewerkt!"
205
+
206
+ #: classes/class.swpm-form.php:26
207
  msgid ""
208
+ "Wordpress account exists with given username. But given email doesn't match."
209
  msgstr ""
210
+ "Er bestaat een WordPress gebruiker met deze gebruikersnaam. Het opgegeven e-"
211
+ "mail adres komt niet overeen."
212
 
213
+ #: classes/class.swpm-form.php:31
214
  msgid ""
215
+ "Wordpress account exists with given email. But given username doesn't match."
216
  msgstr ""
217
+ "Er bestaat een WordPress gebruiker met dit e-mail adres. De opgegeven "
218
+ "gebruikersnaam komt niet overeen."
219
 
220
+ #: classes/class.swpm-form.php:40
221
+ msgid "Username is required"
222
+ msgstr "Gebruikersnaam is vereist"
223
 
224
+ #: classes/class.swpm-form.php:44
225
+ msgid "Username contains invalid character"
226
+ msgstr "Gebruikersnaam bevat ongeldig karakter"
227
 
228
+ #: classes/class.swpm-form.php:52
229
+ msgid "Username already exists."
230
+ msgstr "Gebruikersnaam is al in gebruik"
231
+
232
+ #: classes/class.swpm-form.php:75
233
  msgid "Password is required"
234
+ msgstr "Wachtwoord is vereist"
235
 
236
+ #: classes/class.swpm-form.php:82
237
  msgid "Password mismatch"
238
+ msgstr "Wachtwoord klopt niet"
239
 
240
+ #: classes/class.swpm-form.php:93
241
  msgid "Email is required"
242
+ msgstr "E-mail adres is vereist"
243
 
244
+ #: classes/class.swpm-form.php:97
245
  msgid "Email is invalid"
246
+ msgstr "E-mail adres is ongeldig"
247
 
248
+ #: classes/class.swpm-form.php:113
249
  msgid "Email is already used."
250
+ msgstr "E-mail adres is al in gebruik"
251
 
252
+ #: classes/class.swpm-form.php:170
253
  msgid "Member since field is invalid"
254
  msgstr "Lid sinds veld is ongeldig"
255
 
256
+ #: classes/class.swpm-form.php:181
257
+ msgid "Access starts field is invalid"
258
+ msgstr "Toegang begint op veld is ongeldig"
259
 
260
+ #: classes/class.swpm-form.php:191
261
  msgid "Gender field is invalid"
262
  msgstr "Geslacht veld is ongeldig"
263
 
264
+ #: classes/class.swpm-form.php:202
265
  msgid "Account state field is invalid"
266
+ msgstr "Lidmaatschap status veld is ongeldig"
267
+
268
+ #: classes/class.swpm-form.php:209
269
+ msgid "Invalid membership level"
270
+ msgstr "Ongeldig lidmaatschapniveau"
271
+
272
+ #: classes/class.swpm-front-registration.php:71
273
+ msgid "Security check: captcha validation failed."
274
+ msgstr "Veilgheidscontrole: captcha controle mislukt."
275
 
276
+ #: classes/class.swpm-front-registration.php:80
277
+ msgid "Registration Successful. "
278
+ msgstr "Met succes geregistreerd."
279
+
280
+ #: classes/class.swpm-front-registration.php:80
281
+ #: classes/class.swpm-settings.php:377
282
  msgid "Please"
283
+ msgstr "Alsjeblieft"
284
 
285
+ #: classes/class.swpm-front-registration.php:80
286
+ #: classes/class.swpm-settings.php:377 views/login.php:21
287
  msgid "Login"
288
+ msgstr "Inloggen"
289
 
290
+ #: classes/class.swpm-front-registration.php:92
291
+ #: classes/class.swpm-front-registration.php:179
292
  msgid "Please correct the following"
293
  msgstr "Corrigeer het volgende"
294
 
295
+ #: classes/class.swpm-front-registration.php:123
296
  msgid "Membership Level Couldn't be found."
297
+ msgstr "Lidmaatschapniveau niet gevonden."
298
+
299
+ #: classes/class.swpm-front-registration.php:162
300
+ msgid "Profile updated successfully."
301
+ msgstr "Profiel met succes bijgewerkt."
302
 
303
+ #: classes/class.swpm-front-registration.php:170
304
+ msgid ""
305
+ "Profile updated successfully. You will need to re-login since you changed "
306
+ "your password."
307
+ msgstr ""
308
+ "Profiel met succes bijgewerkt. Je moet opnieuw inloggen aangezien je je "
309
+ "wachtwoord hebt veranderd."
310
+
311
+ #: classes/class.swpm-front-registration.php:189
312
+ msgid "Email address not valid."
313
+ msgstr "E-mail adres ongeldig"
314
+
315
+ #: classes/class.swpm-front-registration.php:200
316
+ msgid "No user found with that email address."
317
+ msgstr "Geen gebruiker gevonden met dat e-mail adres."
318
+
319
+ #: classes/class.swpm-front-registration.php:201
320
+ #: classes/class.swpm-front-registration.php:225
321
+ msgid "Email Address: "
322
+ msgstr "E-mail adres: "
323
 
324
+ #: classes/class.swpm-front-registration.php:224
325
  msgid "New password has been sent to your email address."
326
+ msgstr "Een nieuw password is naar uw e-mail adres verzonden."
327
 
328
+ #: classes/class.swpm-init-time-tasks.php:108
329
+ msgid "Sorry, Nonce verification failed."
330
+ msgstr "Het spijt me, de nonce verificatie is mislukt."
331
 
332
+ #: classes/class.swpm-init-time-tasks.php:115
333
+ msgid "Sorry, Password didn't match."
334
+ msgstr "Het spijt me, het wachtwoord kwam niet overeen."
335
 
336
+ #: classes/class.swpm-level-form.php:47
337
+ msgid "Date format is not valid."
338
+ msgstr "Datumformaat is niet geldig."
339
 
340
+ #: classes/class.swpm-level-form.php:55
341
+ msgid "Access duration must be > 0."
342
+ msgstr "Toegangsduur moet groter zijn dan 0"
343
+
344
+ #: classes/class.swpm-member-utils.php:22
345
+ #: classes/class.swpm-member-utils.php:30
346
+ #: classes/class.swpm-member-utils.php:38
347
+ #: classes/class.swpm-member-utils.php:48
348
+ msgid "User is not logged in."
349
+ msgstr "Gebruiker is niet ingelogd."
350
+
351
+ #: classes/class.swpm-members.php:9
352
+ msgid "Member"
353
+ msgstr "Lid"
354
 
355
+ #: classes/class.swpm-members.php:19 views/add.php:6 views/admin_add.php:11
356
+ #: views/admin_edit.php:9 views/edit.php:5 views/login.php:5
357
+ msgid "Username"
358
  msgstr "Gebruikersnaam"
359
 
360
+ #: classes/class.swpm-members.php:20
361
+ #: classes/admin-includes/class.swpm-payments-list-table.php:74
362
+ #: views/add.php:22 views/admin_member_form_common_part.php:15
363
+ #: views/edit.php:21
364
  msgid "First Name"
365
  msgstr "Voornaam"
366
 
367
+ #: classes/class.swpm-members.php:21
368
+ #: classes/admin-includes/class.swpm-payments-list-table.php:75
369
+ #: views/add.php:26 views/admin_member_form_common_part.php:19
370
+ #: views/edit.php:25
371
  msgid "Last Name"
372
  msgstr "Achternaam"
373
 
374
+ #: classes/class.swpm-members.php:22 views/add.php:10 views/edit.php:9
375
  msgid "Email"
376
+ msgstr "E-mail adres"
377
 
378
+ #: classes/class.swpm-members.php:24 views/admin_member_form_common_part.php:11
379
+ msgid "Access Starts"
380
+ msgstr "Toegang begint op"
 
 
381
 
382
+ #: classes/class.swpm-members.php:25
 
 
 
 
383
  msgid "Account State"
384
+ msgstr "Lidmaatschap status"
385
 
386
+ #: classes/class.swpm-members.php:41
387
+ #: classes/class.swpm-membership-levels.php:35
388
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:80
389
+ #: classes/admin-includes/class.swpm-payments-list-table.php:95
390
  msgid "Delete"
391
  msgstr "Verwijder"
392
 
393
+ #: classes/class.swpm-members.php:42
394
+ msgid "Set Status to Active"
395
+ msgstr "Zet Status op Actief"
396
+
397
+ #: classes/class.swpm-members.php:44
398
+ msgid "Set Status to Inactive"
399
+ msgstr "Zet Status op Niet Actief"
400
+
401
+ #: classes/class.swpm-members.php:45
402
+ msgid "Set Status to Pending"
403
+ msgstr "Zet Status op In Behandeling"
404
+
405
+ #: classes/class.swpm-members.php:46
406
+ msgid "Set Status to Expired"
407
+ msgstr "Zet Status op Verlopen"
408
+
409
+ #: classes/class.swpm-members.php:121
410
  msgid "No Member found."
411
  msgstr "Geen lid gevonden"
412
 
413
+ #: classes/class.swpm-membership-level.php:38
414
  msgid "Membership Level Creation Successful."
415
+ msgstr "Lidmaatschapniveau met succes aangemaakt."
416
 
417
+ #: classes/class.swpm-membership-level.php:57
418
  msgid "Updated Successfully."
419
+ msgstr "Met succes bijgewerkt."
 
 
 
 
 
420
 
421
+ #: classes/class.swpm-membership-levels.php:21
422
  msgid "Role"
423
  msgstr "Rol"
424
 
425
+ #: classes/class.swpm-membership-levels.php:22
426
+ msgid "Access Valid For/Until"
427
+ msgstr "Toegang geldig gedurende/tot"
428
 
429
+ #: classes/class.swpm-misc-utils.php:50
430
+ msgid "Registration"
431
+ msgstr "Registratie"
432
+
433
+ #: classes/class.swpm-misc-utils.php:73
434
+ msgid "Member Login"
435
+ msgstr "Leden login"
436
+
437
+ #: classes/class.swpm-misc-utils.php:96
438
+ msgid "Profile"
439
+ msgstr "Profiel"
440
 
441
+ #: classes/class.swpm-misc-utils.php:119
442
+ msgid "Password Reset"
443
+ msgstr "Password opnieuw instellen"
444
+
445
+ #: classes/class.swpm-settings.php:21 classes/class.swpm-settings.php:39
446
  msgid "General Settings"
447
+ msgstr "Algemene Instellingen"
448
+
449
+ #: classes/class.swpm-settings.php:21
450
+ msgid "Payment Settings"
451
+ msgstr "Betalingen"
452
+
453
+ #: classes/class.swpm-settings.php:22
454
+ msgid "Email Settings"
455
+ msgstr "E-mail"
456
+
457
+ #: classes/class.swpm-settings.php:22
458
+ msgid "Tools"
459
+ msgstr "Gereedschappen"
460
 
461
+ #: classes/class.swpm-settings.php:22 classes/class.swpm-settings.php:150
462
+ msgid "Advanced Settings"
463
+ msgstr "Geavanceerd"
464
+
465
+ #: classes/class.swpm-settings.php:22
466
+ msgid "Addons Settings"
467
+ msgstr "Extra Functies"
468
+
469
+ #: classes/class.swpm-settings.php:38
470
+ msgid "Plugin Documentation"
471
+ msgstr "Plug-in Documentatie"
472
+
473
+ #: classes/class.swpm-settings.php:40
474
  msgid "Enable Free Membership"
475
+ msgstr "Gratis lidmaatschap"
476
 
477
+ #: classes/class.swpm-settings.php:41
478
+ msgid ""
479
+ "Enable/disable registration for free membership level. When you enable this "
480
+ "option, make sure to specify a free membership level ID in the field below."
481
+ msgstr ""
482
+ "Zet registratie voor een gratis lidmaatschapniveau aan of uit. Zorg ervoor "
483
+ "dat - wanneer je deze optie aanzet - je het ID van het gratis "
484
+ "lidmaatschapniveau in het veld hieronder invult."
485
 
486
+ #: classes/class.swpm-settings.php:42
487
  msgid "Free Membership Level ID"
488
+ msgstr "Gratis lidmaatschapniveau ID"
489
 
490
+ #: classes/class.swpm-settings.php:43
491
  msgid "Assign free membership level ID"
492
+ msgstr "Wijs gratis lidmaatschapniveau ID toe"
493
+
494
+ #: classes/class.swpm-settings.php:44
495
+ msgid "Enable More Tag Protection"
496
+ msgstr "Lees Meer tag afscherming"
497
+
498
+ #: classes/class.swpm-settings.php:45
499
+ msgid ""
500
+ "Enables or disables \"more\" tag protection in the posts and pages. Anything "
501
+ "after the More tag is protected. Anything before the more tag is teaser "
502
+ "content."
503
+ msgstr ""
504
+ "Zet de \"Lees meer\" tag afscherming in berichten en pagina's aan of uit. "
505
+ "Alles na de Lees meer tag wordt afgeschermd. Alles voor de Lees meer tag is "
506
+ "\"teaser\" inhoud."
507
 
508
+ #: classes/class.swpm-settings.php:46
509
  msgid "Hide Adminbar"
510
+ msgstr "Verberg de admin balk"
511
 
512
+ #: classes/class.swpm-settings.php:47
513
  msgid ""
514
  "WordPress shows an admin toolbar to the logged in users of the site. Check "
515
  "this box if you want to hide that admin toolbar in the fronend of your site."
516
  msgstr ""
517
+ "Wordpress toont een admin balk aan de ingelogde gebruikers van de site. Vink "
518
+ "dit hokje aan wanneer je de admin balk in het front-end van je site wilt "
519
+ "verbergen."
520
 
521
+ #: classes/class.swpm-settings.php:49
522
+ msgid "Default Account Status"
523
+ msgstr "Standaard lidmaatschap status"
524
+
525
+ #: classes/class.swpm-settings.php:52
526
+ msgid ""
527
+ "Select the default account status for newly registered users. If you want to "
528
+ "manually approve the members then you can set the status to \"Pending\"."
529
+ msgstr ""
530
+ "Selecteer de standaard lidmaatschapstatus voor nieuw geregistreerde "
531
+ "gebruikers. Wanneer je de leden handmatig wilt toevoegen, kun je de status "
532
+ "op \"In behandeling\" zetten."
533
+
534
+ #: classes/class.swpm-settings.php:53
535
+ msgid "Allow Account Deletion"
536
+ msgstr "Lidmaatschap beëindiging"
537
+
538
+ #: classes/class.swpm-settings.php:55
539
+ msgid "Allow users to delete their accounts."
540
+ msgstr "Sta toe dat leden hun lidmaatschap beëindigen."
541
+
542
+ #: classes/class.swpm-settings.php:56
543
+ msgid "Auto Delete Pending Account"
544
+ msgstr "Automatisch verwijderen lidmaatschap in behandeling"
545
+
546
+ #: classes/class.swpm-settings.php:59
547
+ msgid "Select how long you want to keep \"pending\" account."
548
+ msgstr ""
549
+ "Selecteer hoe lang je toestaat dat een lidmaatschap \"in behandeling\" is."
550
+
551
+ #: classes/class.swpm-settings.php:67
552
  msgid "Pages Settings"
553
+ msgstr "Pagina-instellingen"
554
 
555
+ #: classes/class.swpm-settings.php:68
556
  msgid "Login Page URL"
557
+ msgstr "Inlog pagina URL"
558
 
559
+ #: classes/class.swpm-settings.php:70
560
  msgid "Registration Page URL"
561
  msgstr "Registratie pagina URL"
562
 
563
+ #: classes/class.swpm-settings.php:72
564
  msgid "Join Us Page URL"
565
+ msgstr "Meld Je Aan pagina URL"
566
 
567
+ #: classes/class.swpm-settings.php:74
568
  msgid "Edit Profile Page URL"
569
+ msgstr "Bewerk Profiel pagina URL"
570
 
571
+ #: classes/class.swpm-settings.php:76
572
  msgid "Password Reset Page URL"
573
+ msgstr "Wachtwoord Opnieuw Instellen pagina URL"
574
 
575
+ #: classes/class.swpm-settings.php:79
576
  msgid "Test & Debug Settings"
577
+ msgstr "Test & Foutopsporingsinstellingen"
578
+
579
+ #: classes/class.swpm-settings.php:81
580
+ msgid "Check this option to enable debug logging."
581
+ msgstr "Zet deze optie aan om foutopsporing aan te zetten."
582
 
583
+ #: classes/class.swpm-settings.php:86
584
  msgid "Enable Sandbox Testing"
585
+ msgstr "Testen in testomgeving"
586
 
587
+ #: classes/class.swpm-settings.php:87
588
  msgid "Enable this option if you want to do sandbox payment testing."
589
+ msgstr ""
590
+ "Schakel deze optie in wanneer je testbetalingen in de testomgeving wilt "
591
+ "uitvoeren."
592
+
593
+ #: classes/class.swpm-settings.php:97 classes/class.swpm-settings.php:145
594
+ #: classes/class.swpm-settings.php:243
595
+ msgid "Settings updated!"
596
+ msgstr "Instellingen bijgewerkt!"
597
 
598
+ #: classes/class.swpm-settings.php:102
599
  msgid "Email Misc. Settings"
600
+ msgstr "Diverse e-mail berichten"
601
 
602
+ #: classes/class.swpm-settings.php:103
603
  msgid "From Email Address"
604
+ msgstr "Vanaf e-mail adres"
605
 
606
+ #: classes/class.swpm-settings.php:106
607
  msgid "Email Settings (Prompt to Complete Registration )"
608
+ msgstr "E-mail bericht (registratie voltooien)"
609
 
610
+ #: classes/class.swpm-settings.php:107 classes/class.swpm-settings.php:113
611
+ #: classes/class.swpm-settings.php:125 classes/class.swpm-settings.php:132
612
  msgid "Email Subject"
613
+ msgstr "E-mail onderwerp"
614
 
615
+ #: classes/class.swpm-settings.php:109 classes/class.swpm-settings.php:115
616
+ #: classes/class.swpm-settings.php:127 classes/class.swpm-settings.php:134
617
  msgid "Email Body"
618
+ msgstr "E-mail bericht"
619
 
620
+ #: classes/class.swpm-settings.php:112
621
  msgid "Email Settings (Registration Complete)"
622
+ msgstr "E-mail bericht (registratie voltooid)"
623
+
624
+ #: classes/class.swpm-settings.php:117
625
+ msgid "Send Notification to Admin"
626
+ msgstr "Stuur bericht naar beheerder"
627
+
628
+ #: classes/class.swpm-settings.php:118
629
+ msgid ""
630
+ "Enable this option if you want the admin to receive a notification when a "
631
+ "member registers."
632
+ msgstr ""
633
+ "Zet deze optie aan wanneer je wilt dat de beheerder een bericht ontvangt "
634
+ "wanneer een nieuw lid zich registreert."
635
 
636
+ #: classes/class.swpm-settings.php:119
637
+ msgid "Admin Email Address"
638
+ msgstr "Beheerder e-mail adres"
639
 
640
+ #: classes/class.swpm-settings.php:120
641
+ msgid ""
642
+ "Enter the email address where you want the admin notification email to be "
643
+ "sent to."
644
+ msgstr ""
645
+ "Voer het e-mail adres in waar je de mail voor de beheerder heen wilt sturen."
646
+
647
+ #: classes/class.swpm-settings.php:121
648
  msgid "Send Email to Member When Added via Admin Dashboard"
649
+ msgstr "Stuur email naar nieuw lid wanneer aangemaakt via het beheer dashboard"
650
+
651
+ #: classes/class.swpm-settings.php:124
652
+ msgid "Email Settings (Password Reset)"
653
+ msgstr "E-mail bericht (wachtwoord opnieuw instellen)"
654
 
655
+ #: classes/class.swpm-settings.php:131
656
  msgid " Email Settings (Account Upgrade Notification)"
657
+ msgstr "E-mail bericht (lidmaatschap opwaarderen)"
658
 
659
+ #: classes/class.swpm-settings.php:152
660
+ msgid "Enable Expired Account Login"
661
+ msgstr "Inloggen verlopen lidmaatschap"
662
+
663
+ #: classes/class.swpm-settings.php:153
664
+ msgid ""
665
+ "When enabled, expired members will be able to log into the system but won't "
666
+ "be able to view any protected content. This allows them to easily renew "
667
+ "their account by making another payment."
668
+ msgstr ""
669
+ "Wanneer deze optie aanstaat kunnen leden met een verlopen lidmaatschap "
670
+ "inloggen op het systeem, maar kunnen de afgeschermde inhoud dan niet zien. "
671
+ "Dit laat ze eenvoudig hun lidmaatschap vernieuwen door een nieuwe betaling "
672
+ "te doen."
673
+
674
+ #: classes/class.swpm-settings.php:377
675
  msgid "Not a Member?"
676
+ msgstr "Nog geen lid?"
677
 
678
+ #: classes/class.swpm-settings.php:377 views/login.php:27
679
  msgid "Join Us"
680
+ msgstr "Meld je aan"
681
 
682
+ #: classes/class.swpm-utils.php:67
683
  msgid "Active"
684
  msgstr "Actief"
685
 
686
+ #: classes/class.swpm-utils.php:68
687
  msgid "Inactive"
688
  msgstr "Niet actief"
689
 
690
+ #: classes/class.swpm-utils.php:69
691
  msgid "Pending"
692
+ msgstr "In behandeling"
693
 
694
+ #: classes/class.swpm-utils.php:70
695
  msgid "Expired"
696
  msgstr "Verlopen"
697
 
698
+ #: classes/class.swpm-utils.php:297
699
  msgid "Never"
700
  msgstr "Nooit"
701
 
702
+ #: classes/class.swpm-utils.php:371
703
+ msgid "Delete Account"
704
+ msgstr "Verwijder lidmaatschap"
705
 
706
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:63
707
+ msgid "Payment Button ID"
708
+ msgstr "Betalingsbutton ID"
709
 
710
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:64
711
+ msgid "Payment Button Title"
712
+ msgstr "Betalingsbutton Titel"
713
 
714
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:65
715
+ msgid "Membership Level ID"
716
+ msgstr "Lidmaatschapniveau ID"
717
 
718
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:66
719
+ msgid "Button Shortcode"
720
+ msgstr "Button Shortcode"
721
 
722
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:106
723
+ #: views/admin_members_list.php:15
724
+ #: views/payments/admin_all_payment_transactions.php:33
725
+ msgid "The selected entry was deleted!"
726
+ msgstr "De geselecteerde gegevens zijn verwijderd!"
727
 
728
+ #: classes/admin-includes/class.swpm-payments-list-table.php:53
729
+ msgid "View Profile"
730
+ msgstr "Bekijk p[rofiel"
731
 
732
+ #: classes/admin-includes/class.swpm-payments-list-table.php:72
733
+ msgid "Row ID"
734
+ msgstr "Rij ID"
735
 
736
+ #: classes/admin-includes/class.swpm-payments-list-table.php:73
737
+ #: views/forgot_password.php:5
738
+ msgid "Email Address"
739
+ msgstr "E-mail adres"
740
 
741
+ #: classes/admin-includes/class.swpm-payments-list-table.php:76
742
+ msgid "Member Profile"
743
+ msgstr "Lid Profiel"
744
 
745
+ #: classes/admin-includes/class.swpm-payments-list-table.php:77
746
+ msgid "Date"
747
+ msgstr "Datum"
748
 
749
+ #: classes/admin-includes/class.swpm-payments-list-table.php:78
750
+ msgid "Transaction ID"
751
+ msgstr "Transactie ID"
752
 
753
+ #: classes/admin-includes/class.swpm-payments-list-table.php:79
754
+ msgid "Amount"
755
+ msgstr "Bedrag"
756
 
757
+ #: classes/common/class.swpm-list-table.php:137
758
+ msgid "List View"
759
+ msgstr "Lijstweergave"
 
760
 
761
+ #: classes/common/class.swpm-list-table.php:138
762
+ msgid "Excerpt View"
763
+ msgstr "Uittrekselweergave"
764
 
765
+ #: classes/common/class.swpm-list-table.php:305
766
+ msgid "No items found."
767
+ msgstr "Geen onderdelen gevonden."
768
 
769
+ #: classes/common/class.swpm-list-table.php:431
770
+ msgid "Select bulk action"
771
+ msgstr "Selecteer bulk actie"
 
772
 
773
+ #: classes/common/class.swpm-list-table.php:433
774
+ msgid "Bulk Actions"
775
+ msgstr "Bulk acties"
 
776
 
777
+ #: classes/common/class.swpm-list-table.php:443
778
+ msgid "Apply"
779
+ msgstr "Toepassen"
 
780
 
781
+ #: classes/common/class.swpm-list-table.php:543
782
+ msgid "Filter by date"
783
+ msgstr "Filteren op datum"
 
784
 
785
+ #: classes/common/class.swpm-list-table.php:545
786
+ msgid "All dates"
787
+ msgstr "Alle datums"
 
788
 
789
+ #: classes/common/class.swpm-list-table.php:555
790
+ #, php-format
791
+ msgid "%1$s %2$d"
792
+ msgstr "%1$s %2$d"
793
 
794
+ #: classes/common/class.swpm-list-table.php:599
795
+ #, php-format
796
+ msgid "%s pending"
797
+ msgstr "%s in behandeling"
798
+
799
+ #: classes/common/class.swpm-list-table.php:704
800
+ msgid "Select Page"
801
+ msgstr "Selecteer pagina"
802
+
803
+ #: classes/common/class.swpm-list-table.php:848
804
+ msgid "Select All"
805
+ msgstr "Selecteer allemaal"
806
+
807
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:47
808
+ msgid "Your membership profile will be updated to reflect the payment."
809
+ msgstr "Deze betaling wordt toegevoegd aan jouw lidmaatschap profiel."
810
+
811
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:48
812
+ msgid "Your profile username: "
813
+ msgstr "Jouw profiel gebruikersnaam: "
814
+
815
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:60
816
+ msgid "Click on the following link to complete the registration."
817
+ msgstr "Klik op de volgende link om de registratie af te ronden."
818
+
819
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:61
820
+ msgid "Click here to complete your paid registration"
821
+ msgstr "Klik hier om jouw betaalde registratie af te ronden."
822
+
823
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:66
824
+ msgid ""
825
+ "If you have just made a membership payment then your payment is yet to be "
826
+ "processed. Please check back in a few minutes. An email will be sent to you "
827
+ "with the details shortly."
828
+ msgstr ""
829
+ "Wanneer je net een lidmaatschap betaling hebt verricht, dan moet de betaling "
830
+ "nog worden verwerkt. Probeer het over een aantal minuten nog eens. Je krijgt "
831
+ "spoedig een e-mail met de betalingsgegevens."
832
 
833
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:80
834
+ msgid "Expiry: "
835
+ msgstr "Verloopt: "
836
+
837
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:82
838
+ msgid "You are not logged-in as a member"
839
+ msgstr "Je bent niet als lid aangemeld."
840
+
841
+ #: views/add.php:14 views/admin_add.php:19 views/admin_edit.php:17
842
+ #: views/edit.php:13 views/login.php:11
843
+ msgid "Password"
844
+ msgstr "Wachtwoord"
845
+
846
+ #: views/add.php:18 views/edit.php:17
847
+ msgid "Repeat Password"
848
+ msgstr "Herhaal wachtwoord"
849
+
850
+ #: views/add.php:41
851
  msgid "Register"
852
  msgstr "Registreer"
853
 
857
 
858
  #: views/admin_add.php:7
859
  msgid "Create a brand new user and add it to this site."
860
+ msgstr "Maak een nieuwe gebruiker aan, en voeg deze toe aan de website."
 
 
 
 
861
 
862
  #: views/admin_add.php:11 views/admin_add.php:15 views/admin_add_level.php:11
863
  #: views/admin_add_level.php:15 views/admin_add_level.php:19
864
+ #: views/admin_edit.php:9 views/admin_edit.php:13 views/admin_edit_level.php:10
865
+ #: views/admin_edit_level.php:14 views/admin_edit_level.php:18
 
866
  msgid "(required)"
867
  msgstr "(vereist)"
868
 
871
  msgstr "E-mail"
872
 
873
  #: views/admin_add.php:19
874
+ msgid "(twice, required)"
875
+ msgstr "(tweemaal, vereist)"
876
+
877
+ #: views/admin_add.php:24 views/admin_edit.php:21
878
+ msgid "Strength indicator"
879
+ msgstr "Sterkte-indicator"
880
+
881
+ #: views/admin_add.php:25 views/admin_edit.php:22
882
+ msgid ""
883
+ "Hint: The password should be at least seven characters long. To make it "
884
+ "stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
885
+ "$ % ^ &amp; )."
886
+ msgstr ""
887
+ "Hint: Het wachtwoord moet minimaal zeven karakters bevatten. Gebruik "
888
+ "hoofdletters en kleine letters, nummers en symbolen zoals ! \" ? $ % ^ &amp; "
889
+ "om het wachtwoord sterker te maken)."
890
+
891
+ #: views/admin_add.php:29 views/admin_edit.php:26 views/loggedin.php:7
892
+ msgid "Account Status"
893
+ msgstr "Lidmaatschap Status"
894
+
895
+ #: views/admin_add.php:39
896
  msgid "Add New Member "
897
  msgstr "Voeg een nieuw lid toe"
898
 
899
+ #: views/admin_addon_settings.php:3 views/admin_settings.php:3
900
+ #: views/admin_tools_settings.php:3 views/payments/admin_payment_settings.php:3
901
+ msgid "Simple WP Membership::Settings"
902
+ msgstr "Simple WP Membership::Instellingen"
903
+
904
+ #: views/admin_addon_settings.php:8
905
+ msgid ""
906
+ "Some of the simple membership plugin's addon settings and options will be "
907
+ "displayed here (if you have them)"
908
+ msgstr ""
909
+ "De instellingen en opties van een aantal extra functies voor de Simple "
910
+ "Membership plug-in worden hier weergegeven (wanneer je deze hebt "
911
+ "geïnstalleerd)"
912
+
913
+ #: views/admin_addon_settings.php:13
914
+ msgid "Save Changes"
915
+ msgstr "Opslaan"
916
+
917
  #: views/admin_add_level.php:6
918
  msgid "Create new membership level."
919
+ msgstr "Maak een nieuw lidmaatschapniveau aan"
920
 
921
  #: views/admin_add_level.php:11 views/admin_edit_level.php:10
922
  msgid "Membership Level Name"
923
+ msgstr "Lidmaatschapniveau naam"
924
 
925
  #: views/admin_add_level.php:15 views/admin_edit_level.php:14
926
  msgid "Default WordPress Role"
927
+ msgstr "Standaard WordPress Rol"
928
 
929
  #: views/admin_add_level.php:19 views/admin_edit_level.php:18
930
+ msgid "Access Duration"
931
+ msgstr "Toegangstijd"
932
+
933
+ #: views/admin_add_level.php:22
934
+ msgid "No Expiry (Access for this level will not expire until cancelled"
935
+ msgstr ""
936
+ "Verloopt niet (toegang voor dit niveau verloopt niet tot het wordt opgezegd"
937
 
938
+ #: views/admin_add_level.php:23 views/admin_add_level.php:25
939
+ #: views/admin_add_level.php:27 views/admin_add_level.php:29
940
+ #: views/admin_edit_level.php:22 views/admin_edit_level.php:25
941
+ #: views/admin_edit_level.php:28 views/admin_edit_level.php:31
942
+ msgid "Expire After"
943
+ msgstr "Verloop na"
944
 
945
+ #: views/admin_add_level.php:24 views/admin_edit_level.php:23
946
+ msgid "Days (Access expires after given number of days)"
947
+ msgstr "dagen (toegang verloopt na het aantal opgegeven dagen)"
948
+
949
+ #: views/admin_add_level.php:26
950
+ msgid "Weeks (Access expires after given number of weeks"
951
+ msgstr "weken (toegang verloopt na het aantal opgegeven weken)"
952
+
953
+ #: views/admin_add_level.php:28 views/admin_edit_level.php:29
954
+ msgid "Months (Access expires after given number of months)"
955
+ msgstr "maanden (toegang verloopt na het aantal opgegeven maanden)"
956
+
957
+ #: views/admin_add_level.php:30 views/admin_edit_level.php:32
958
+ msgid "Years (Access expires after given number of years)"
959
+ msgstr "jaren (toegang verloopt na het aantal opgegeven jaren)"
960
+
961
+ #: views/admin_add_level.php:31 views/admin_edit_level.php:34
962
+ msgid "Fixed Date Expiry"
963
+ msgstr "Vaste datum"
964
+
965
+ #: views/admin_add_level.php:32 views/admin_edit_level.php:35
966
+ msgid "(Access expires on a fixed date)"
967
+ msgstr "(toegang verloopt op een vaste datum)"
968
+
969
+ #: views/admin_add_level.php:38
970
  msgid "Add New Membership Level "
971
+ msgstr "Voeg een nieuw lidmaatschapniveau toe"
972
+
973
+ #: views/admin_add_ons_page.php:7
974
+ msgid "Simple WP Membership::Add-ons"
975
+ msgstr "Simple WP Membership::Extra Functies"
976
+
977
+ #: views/admin_category_list.php:2
978
+ msgid "Simple WP Membership::Categories"
979
+ msgstr "Simple WP Membership::Categorieën"
980
+
981
+ #: views/admin_category_list.php:7
982
+ msgid ""
983
+ "First of all, globally protect the category on your site by selecting "
984
+ "\"General Protection\" from the drop-down box below and then select the "
985
+ "categories that should be protected from non-logged in users."
986
+ msgstr ""
987
+ "Bescherm als eerste de categorie op jouw site door \"General Protection\" te "
988
+ "selecteren in de drop-down box hieronder. Selecteer dan de categorieën die "
989
+ "moeten worden beschermd tegen niet-ingelogde gebruikers."
990
+
991
+ #: views/admin_category_list.php:10
992
+ msgid ""
993
+ "Next, select an existing membership level from the drop-down box below and "
994
+ "then select the categories you want to grant access to (for that particular "
995
+ "membership level)."
996
+ msgstr ""
997
+ "Selecteer hierna een bestaand lidmaatschapniveau van de drop-down box "
998
+ "hieronder, en selecteer dan alle categorieën die je toegang wilt geven (voor "
999
+ "dat specifieke lidmaatschapniveau)."
1000
 
1001
  #: views/admin_edit.php:5
1002
  msgid "Edit Member"
1003
+ msgstr "Bewerk lid"
1004
 
1005
  #: views/admin_edit.php:6
1006
  msgid "Edit existing member details."
1007
+ msgstr "Bewerk gegevens bestaand lid."
1008
 
1009
+ #: views/admin_edit.php:17
1010
+ msgid "(twice, leave empty to retain old password)"
1011
+ msgstr "(tweemaal, laat leeg om het oude wachtwoord te behouden)"
1012
+
1013
+ #: views/admin_edit.php:33
1014
+ msgid "Notify User"
1015
+ msgstr "Gebruiker inlichten"
1016
+
1017
+ #: views/admin_edit.php:40
1018
+ msgid "Subscriber ID/Reference"
1019
+ msgstr "Inschrijf ID/Referentie"
1020
 
1021
+ #: views/admin_edit.php:44
1022
+ msgid "Last Accessed From IP"
1023
+ msgstr "Laatst gebruikt vanaf IP"
1024
+
1025
+ #: views/admin_edit.php:52
1026
  msgid "Edit User "
1027
  msgstr "Wijzig gebruiker"
1028
 
1029
  #: views/admin_edit_level.php:5
1030
  msgid "Edit membership level"
1031
+ msgstr "Wijzig lidmaatschapniveau"
1032
 
1033
  #: views/admin_edit_level.php:6
1034
  msgid "Edit membership level."
1035
+ msgstr "Wijzig lidmaatschapniveau."
1036
+
1037
+ #: views/admin_edit_level.php:21
1038
+ msgid "No Expiry (Access for this level will not expire until cancelled)"
1039
+ msgstr ""
1040
+ "Verloopt niet (toegang voor dit niveau verloopt niet tot het wordt opgezegd)"
1041
+
1042
+ #: views/admin_edit_level.php:26
1043
+ msgid "Weeks (Access expires after given number of weeks)"
1044
+ msgstr "weken (toegang verloopt na het aantal opgegeven weken) ("
1045
 
1046
+ #: views/admin_edit_level.php:41
1047
  msgid "Edit Membership Level "
1048
+ msgstr "Wijzig lidmaatschap niveau"
1049
 
1050
  #: views/admin_members.php:2
1051
  msgid "Simple WP Membership::Members"
1052
  msgstr "Simple WP Membership::Leden"
1053
 
1054
+ #: views/admin_members.php:3 views/admin_members_list.php:30
 
1055
  msgid "Add New"
1056
  msgstr "Voeg nieuw toe"
1057
 
1058
+ #: views/admin_membership_levels.php:2
1059
+ msgid "Simple WP Membership::Membership Levels"
1060
+ msgstr "Simple WP Membership::Lidmaatschapniveaus"
1061
+
1062
+ #: views/admin_membership_levels.php:12 views/admin_members_list.php:6
1063
  msgid "search"
1064
  msgstr "zoeken"
1065
 
 
 
 
 
1066
  #: views/admin_membership_level_menu.php:2
1067
  msgid "Membership level"
1068
  msgstr "Lidmaatschap niveau"
1069
 
1070
  #: views/admin_membership_level_menu.php:3
1071
  msgid "Manage Content Production"
1072
+ msgstr "Beheer Inhoud Afscherming"
1073
+
1074
+ #: views/admin_membership_level_menu.php:4
1075
+ msgid "Category Protection"
1076
+ msgstr "Categorie Afscherming"
1077
 
1078
  #: views/admin_membership_manage.php:17
1079
  msgid "Example Content Protection Settings"
1080
+ msgstr "Voorbeeld inhoud afscherming instellingen"
 
 
 
 
1081
 
1082
+ #: views/admin_member_form_common_part.php:23
1083
+ msgid "Gender"
1084
+ msgstr "Geslacht"
1085
 
1086
+ #: views/admin_member_form_common_part.php:30 views/edit.php:29
1087
+ msgid "Phone"
1088
+ msgstr "Telefoon"
 
 
 
 
 
 
1089
 
1090
+ #: views/admin_member_form_common_part.php:34 views/edit.php:33
1091
+ msgid "Street"
1092
+ msgstr "Straat"
 
1093
 
1094
+ #: views/admin_member_form_common_part.php:38 views/edit.php:37
1095
+ msgid "City"
1096
+ msgstr "Plaats"
1097
 
1098
+ #: views/admin_member_form_common_part.php:42 views/edit.php:41
1099
+ msgid "State"
1100
+ msgstr "Provincie"
 
1101
 
1102
+ #: views/admin_member_form_common_part.php:46 views/edit.php:45
1103
+ msgid "Zipcode"
1104
+ msgstr "Postcode"
1105
 
1106
+ #: views/admin_member_form_common_part.php:50 views/edit.php:49
1107
+ msgid "Country"
1108
+ msgstr "Land"
1109
 
1110
+ #: views/admin_member_form_common_part.php:54
1111
+ msgid "Company"
1112
+ msgstr "Bedrijf"
1113
 
1114
+ #: views/admin_member_form_common_part.php:58
1115
+ msgid "Member Since"
1116
+ msgstr "Lid sinds"
1117
 
1118
  #: views/admin_tools_settings.php:9
1119
  msgid "Generate a Registration Completion link"
1120
+ msgstr "Genereer een Voltooien Registratie link"
1121
 
1122
  #: views/admin_tools_settings.php:12
1123
  msgid ""
1125
  "your customer if they have missed the email that was automatically sent out "
1126
  "to them after the payment."
1127
  msgstr ""
1128
+ "Je kunt hier zelf een Voltooien Registratie link genereren en aan je klant "
1129
+ "geven, wanneer deze de automatische e-mail die was toegezonden na betaling "
1130
+ "heeft gemist."
1131
 
1132
  #: views/admin_tools_settings.php:17
1133
  msgid "Generate Registration Completion Link"
1134
+ msgstr "Genereer Voltooien Registratie link"
1135
 
1136
  #: views/admin_tools_settings.php:20
1137
  msgid "OR"
1139
 
1140
  #: views/admin_tools_settings.php:21
1141
  msgid "For All Pending Registrations"
1142
+ msgstr "Voor alle in behandeling zijnde registraties"
1143
 
1144
  #: views/admin_tools_settings.php:24
1145
  msgid "Registration Completion Links Will Appear Below:"
1146
+ msgstr "De Voltooien Registratie link verschijnt hieronder:"
1147
 
1148
  #: views/admin_tools_settings.php:31
1149
  msgid "Send Registration Reminder Email too"
1150
+ msgstr "Stuur ook een registratie herinnering "
1151
 
1152
  #: views/admin_tools_settings.php:34
1153
  msgid "Submit"
1154
  msgstr "Verstuur"
1155
 
1156
+ #: views/edit.php:59
1157
  msgid "Update"
1158
+ msgstr "Bijwerken"
 
 
 
 
1159
 
1160
  #: views/forgot_password.php:12
1161
  msgid "Reset Password"
1162
+ msgstr "Wachtwoord opnieuw instellen"
1163
 
1164
+ #: views/loggedin.php:3
1165
  msgid "Logged in as"
1166
  msgstr "Ingelogd als"
1167
 
1168
+ #: views/loggedin.php:11
1169
  msgid "Membership"
1170
  msgstr "Lidmaatschap"
1171
 
1172
+ #: views/loggedin.php:15
1173
  msgid "Account Expiry"
1174
+ msgstr "Lidmaatschap verloopt"
1175
 
1176
+ #: views/loggedin.php:19
1177
  msgid "Logout"
1178
+ msgstr "Uitloggen"
1179
 
1180
+ #: views/login.php:18
1181
  msgid "Remember Me"
1182
+ msgstr "Onthoud mijn gegevens"
1183
 
1184
+ #: views/login.php:24
1185
  msgid "Forgot Password"
1186
+ msgstr "Wachtwoord vergeten"
1187
+
1188
+ #: views/payments/admin_all_payment_transactions.php:7
1189
+ msgid "All the payments/transactions of your members are recorded here."
1190
+ msgstr "Alle betalingen en transacties van jouw leden worden hier bijgehouden."
1191
+
1192
+ #: views/payments/admin_all_payment_transactions.php:14
1193
+ msgid "Search for a transaction by using email or name"
1194
+ msgstr "Zoek voor een transactie op e-mail adres of naam"
1195
+
1196
+ #: views/payments/admin_all_payment_transactions.php:18
1197
+ msgid "Search"
1198
+ msgstr "Zoeken"
1199
+
1200
+ #: views/payments/admin_create_payment_buttons.php:13
1201
+ msgid ""
1202
+ "You can create new payment button for your memberships using this interface."
1203
+ msgstr ""
1204
+ "Je kunt via dit scherm een nieuwe betalingsbutton voor jouw lidmaatschappen "
1205
+ "maken."
1206
+
1207
+ #: views/payments/admin_create_payment_buttons.php:22
1208
+ msgid "Select Payment Button Type"
1209
+ msgstr "Selecteer betalingsbutton soort"
1210
+
1211
+ #: views/payments/admin_create_payment_buttons.php:34
1212
+ msgid "Next"
1213
+ msgstr "Volgende"
1214
+
1215
+ #: views/payments/admin_edit_payment_buttons.php:12
1216
+ msgid "You can edit a payment button using this interface."
1217
+ msgstr "Je kunt via dit scherm een betalingsbutton bewerken."
1218
+
1219
+ #: views/payments/admin_payments_page.php:9
1220
+ msgid "Simple Membership::Payments"
1221
+ msgstr "Simple Membership::Betalingen"
1222
+
1223
+ #: views/payments/admin_payment_buttons.php:7
1224
+ msgid ""
1225
+ "All the membership buttons that you created in the plugin are displayed here."
1226
+ msgstr ""
1227
+ "Alle lidmaatschapbuttons die je in deze plug-in hebt gemaakt staan "
1228
+ "hieronder."
1229
+
1230
+ #: views/payments/admin_payment_settings.php:31
1231
+ msgid "PayPal Integration Settings"
1232
+ msgstr "PayPal Integratie Instellingen"
1233
+
1234
+ #: views/payments/admin_payment_settings.php:34
1235
+ msgid "Generate the \"Advanced Variables\" Code for your PayPal button"
1236
+ msgstr "Genereer de \"Geavanceerde Variabelen\" code voor je PayPal button"
1237
+
1238
+ #: views/payments/admin_payment_settings.php:37
1239
+ msgid "Enter the Membership Level ID"
1240
+ msgstr "Voer het lidmaatschapniveau ID in"
1241
+
1242
+ #: views/payments/admin_payment_settings.php:39
1243
+ msgid "Generate Code"
1244
+ msgstr "Genereer de code"
1245
+
1246
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:18
1247
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:192
1248
+ msgid "PayPal Buy Now Button Configuration"
1249
+ msgstr "PayPal Koop Nu Button Configuratie"
1250
+
1251
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:28
1252
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:209
1253
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:29
1254
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:302
1255
+ msgid "Button Title"
1256
+ msgstr "Button Titel"
1257
+
1258
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:46
1259
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:227
1260
+ msgid "Payment Amount"
1261
+ msgstr "Betalingsbedrag"
1262
+
1263
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:54
1264
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:235
1265
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:47
1266
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:320
1267
+ msgid "Payment Currency"
1268
+ msgstr "Betalingsvaluta"
1269
+
1270
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:93
1271
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:274
1272
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:173
1273
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:446
1274
+ msgid "Return URL"
1275
+ msgstr "Terugkeer URL"
1276
+
1277
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:101
1278
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:282
1279
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:86
1280
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:359
1281
+ msgid "PayPal Email"
1282
+ msgstr "PayPal e-mail adres"
1283
+
1284
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:109
1285
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:290
1286
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:181
1287
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:454
1288
+ msgid "Button Image URL"
1289
+ msgstr "Button Afbeelding URL"
1290
+
1291
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:119
1292
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:300
1293
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:193
1294
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:466
1295
+ msgid "Save Payment Data"
1296
+ msgstr "Bewaar betalingsgegevens"
1297
+
1298
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:201
1299
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:294
1300
+ msgid "Button ID"
1301
+ msgstr "Button ID"
1302
+
1303
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:20
1304
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:288
1305
+ msgid "PayPal Subscription Button Configuration"
1306
+ msgstr "PayPal Abonnement Button Configuratie"
1307
+
1308
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:94
1309
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:367
1310
+ msgid "Billing Amount Each Cycle"
1311
+ msgstr "Betalingsbedrag per periode"
1312
+
1313
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:102
1314
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:375
1315
+ msgid "Billing Cycle"
1316
+ msgstr "Betalingsperiode"
1317
+
1318
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:115
1319
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:388
1320
+ msgid "Billing Cycle Count"
1321
+ msgstr "Betalingsperiode Aantal"
1322
+
1323
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:123
1324
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:396
1325
+ msgid "Re-attempt on Failure"
1326
+ msgstr "Nogmaals proberen bij probleem"
1327
+
1328
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:136
1329
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:409
1330
+ msgid ""
1331
+ "Trial Billing Details (Leave empty if you are not offering a trial period)"
1332
+ msgstr ""
1333
+ "Proef Betalingsgegevens (leeglaten wanneer je geen proefperiode aanbiedt)"
1334
+
1335
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:142
1336
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:415
1337
+ msgid "Trial Billing Amount"
1338
+ msgstr "Proef Betalingsbedrag"
1339
+
1340
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:150
1341
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:423
1342
+ msgid "Trial Billing Period"
1343
+ msgstr "Proef Betalingsperiode"
1344
+
1345
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:167
1346
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:440
1347
+ msgid "Optional Details"
1348
+ msgstr "Optionele Gegevens"
1349
+
1350
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:77
1351
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:79
1352
+ msgid "Buy Now"
1353
+ msgstr "Koop Nu"
1354
+
1355
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:197
1356
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:199
1357
+ msgid "Subscribe Now"
1358
+ msgstr "Meld Je Nu Aan"
1359
+
1360
+ #~ msgid "You are not allowed to view this content"
1361
+ #~ msgstr "U bent niet gemachtigd deze inhoud te bekijken."
1362
+
1363
+ #~ msgid "Registration Successful."
1364
+ #~ msgstr "Registratie is gelukt."
1365
+
1366
+ #~ msgid "Invalid User Name"
1367
+ #~ msgstr "Ongeldige gebruikersnaam"
1368
+
1369
+ #~ msgid "Bad Cookie Hash"
1370
+ #~ msgstr "Verkeerde Cookie hash"
1371
+
1372
+ #~ msgid ""
1373
+ #~ "Wordpress account exists with given user name. But given email doesn't "
1374
+ #~ "match."
1375
+ #~ msgstr ""
1376
+ #~ "Het Wordpress account met deze gebruikersnaam bestaat. Maar het email "
1377
+ #~ "adres klopt niet. "
1378
+
1379
+ #~ msgid ""
1380
+ #~ "Wordpress account exists with given email. But given user name doesn't "
1381
+ #~ "match."
1382
+ #~ msgstr ""
1383
+ #~ "Dit Wordpress account met dit email adres bestaat maar de gebruikersnaam "
1384
+ #~ "klopt niet."
1385
+
1386
+ #~ msgid "User name is required"
1387
+ #~ msgstr "De gebruikersnaam is vereist."
1388
+
1389
+ #~ msgid "User name already exists."
1390
+ #~ msgstr "Deze gebruikersnaam bestaat reeds."
1391
+
1392
+ #~ msgid "Subscription starts field is invalid"
1393
+ #~ msgstr "Inschrijving start veld is ongeldig"
1394
+
1395
+ #~ msgid "Email Address Not Valid."
1396
+ #~ msgstr "Email adres is ongeldig."
1397
+
1398
+ #~ msgid "Subscriptoin duration must be > 0."
1399
+ #~ msgstr "Duur van lidmaatschap moet groter zijn dan 0."
1400
+
1401
+ #~ msgid "User Name"
1402
+ #~ msgstr "Gebruikersnaam"
1403
+
1404
+ #~ msgid "Subscription Starts"
1405
+ #~ msgstr "Inschrijving start"
1406
+
1407
+ #~ msgid "Subscription Valid For"
1408
+ #~ msgstr "Inschrijving geldig voor"
1409
+
1410
+ #~ msgid "Enable/disable registration for free membership level"
1411
+ #~ msgstr "Inschakelen/uitschakelen van registratie voor gratis Lidmaatschap"
1412
+
1413
+ #~ msgid "Send Notification To Admin"
1414
+ #~ msgstr "Stuur een bericht naar de beheerder"
1415
+
1416
+ #~ msgid "Display SWPM Login."
1417
+ #~ msgstr "Toon SWPM login"
1418
+
1419
+ #~ msgid "SWPM Login"
1420
+ #~ msgstr "SWPM Login"
1421
+
1422
+ #~ msgid "User name"
1423
+ #~ msgstr "Gebruikersnaam"
1424
+
1425
+ #~ msgid "Subscription Duration"
1426
+ #~ msgstr "Inschrijftermijn"
1427
+
1428
+ #~ msgid "No Expiry"
1429
+ #~ msgstr "Verloopt niet"
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://simple-membership-plugin.com/
4
  Tags: member, members, members only, membership, memberships, register, WordPress membership plugin, content, content protection, paypal, restrict, restrict access, Restrict content, admin, access control, subscription, teaser, protection, profile, login, login page, bbpress,
5
  Requires at least: 3.3
6
  Tested up to: 4.5
7
- Stable tag: 3.2.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -103,6 +103,7 @@ The following language translations are already available:
103
  * Hebrew
104
  * Catalan
105
  * Hungarian
 
106
 
107
  You can translate the plugin using the language [translation documentation](https://simple-membership-plugin.com/translate-simple-membership-plugin/).
108
 
@@ -123,6 +124,15 @@ Please visit the memberhsip plugin page to view screenshots:
123
  https://simple-membership-plugin.com/
124
 
125
  == Changelog ==
 
 
 
 
 
 
 
 
 
126
  = 3.2.6 =
127
  - Added Hungarian language translation file. The translation was submitted by Laura Szitar.
128
  - Improved the members menu navigation menu so the tabs are always visible (even when you go to the add or edit members screen).
4
  Tags: member, members, members only, membership, memberships, register, WordPress membership plugin, content, content protection, paypal, restrict, restrict access, Restrict content, admin, access control, subscription, teaser, protection, profile, login, login page, bbpress,
5
  Requires at least: 3.3
6
  Tested up to: 4.5
7
+ Stable tag: 3.2.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
103
  * Hebrew
104
  * Catalan
105
  * Hungarian
106
+ * Bosnian (Bosnia and Herzegovina)
107
 
108
  You can translate the plugin using the language [translation documentation](https://simple-membership-plugin.com/translate-simple-membership-plugin/).
109
 
124
  https://simple-membership-plugin.com/
125
 
126
  == Changelog ==
127
+
128
+ = 3.2.7 =
129
+ - Added a new option in the plugin settings so you can specify other WP user role (example: editor) to be able to use/see the plugin's admin interface.
130
+ - Added a "user profile delete" option in the admin profile edit interface of the plugin. Admins can use it to delete a user record while in the member edit interface.
131
+ - Added a new option so the member registration complete email notification can be sent to multiple site admins.
132
+ - Added Bosnian language translation file. The translation was submitted by Rejhan Puskar.
133
+ - Updated the Japanese language file.
134
+ - Updated the Dutch language file. Thanks to R.H.J. Roelofsen.
135
+
136
  = 3.2.6 =
137
  - Added Hungarian language translation file. The translation was submitted by Laura Szitar.
138
  - Improved the members menu navigation menu so the tabs are always visible (even when you go to the add or edit members screen).
simple-wp-membership.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Simple WordPress Membership
4
- Version: 3.2.6
5
  Plugin URI: https://simple-membership-plugin.com/
6
  Author: smp7, wp.insider
7
  Author URI: https://simple-membership-plugin.com/
@@ -17,7 +17,7 @@ include_once('classes/class.simple-wp-membership.php');
17
  include_once('classes/class.swpm-cronjob.php');
18
  include_once('swpm-compat.php');
19
 
20
- define('SIMPLE_WP_MEMBERSHIP_VER', '3.2.6');
21
  define('SIMPLE_WP_MEMBERSHIP_DB_VER', '1.2');
22
  define('SIMPLE_WP_MEMBERSHIP_SITE_HOME_URL', home_url());
23
  define('SIMPLE_WP_MEMBERSHIP_PATH', dirname(__FILE__) . '/');
@@ -30,6 +30,15 @@ if (!defined('COOKIEHASH')) {
30
  define('SIMPLE_WP_MEMBERSHIP_AUTH', 'simple_wp_membership_' . COOKIEHASH);
31
  define('SIMPLE_WP_MEMBERSHIP_SEC_AUTH', 'simple_wp_membership_sec_' . COOKIEHASH);
32
 
 
 
 
 
 
 
 
 
 
33
  register_activation_hook(SIMPLE_WP_MEMBERSHIP_PATH . 'simple-wp-membership.php', 'SimpleWpMembership::activate');
34
  register_deactivation_hook(SIMPLE_WP_MEMBERSHIP_PATH . 'simple-wp-membership.php', 'SimpleWpMembership::deactivate');
35
  add_action('swpm_login', 'SimpleWpMembership::swpm_login', 10, 3);
1
  <?php
2
  /*
3
  Plugin Name: Simple WordPress Membership
4
+ Version: 3.2.7
5
  Plugin URI: https://simple-membership-plugin.com/
6
  Author: smp7, wp.insider
7
  Author URI: https://simple-membership-plugin.com/
17
  include_once('classes/class.swpm-cronjob.php');
18
  include_once('swpm-compat.php');
19
 
20
+ define('SIMPLE_WP_MEMBERSHIP_VER', '3.2.7');
21
  define('SIMPLE_WP_MEMBERSHIP_DB_VER', '1.2');
22
  define('SIMPLE_WP_MEMBERSHIP_SITE_HOME_URL', home_url());
23
  define('SIMPLE_WP_MEMBERSHIP_PATH', dirname(__FILE__) . '/');
30
  define('SIMPLE_WP_MEMBERSHIP_AUTH', 'simple_wp_membership_' . COOKIEHASH);
31
  define('SIMPLE_WP_MEMBERSHIP_SEC_AUTH', 'simple_wp_membership_sec_' . COOKIEHASH);
32
 
33
+ //Management role/permission setup
34
+ $admin_dashboard_permission = SwpmSettings::get_instance()->get_value('admin-dashboard-access-permission');
35
+ if (empty($admin_dashboard_permission)) {
36
+ //By default only admins can manage/see admin dashboard
37
+ define("SWPM_MANAGEMENT_PERMISSION", "manage_options");
38
+ } else {
39
+ define("SWPM_MANAGEMENT_PERMISSION", $admin_dashboard_permission);
40
+ }
41
+
42
  register_activation_hook(SIMPLE_WP_MEMBERSHIP_PATH . 'simple-wp-membership.php', 'SimpleWpMembership::activate');
43
  register_deactivation_hook(SIMPLE_WP_MEMBERSHIP_PATH . 'simple-wp-membership.php', 'SimpleWpMembership::deactivate');
44
  add_action('swpm_login', 'SimpleWpMembership::swpm_login', 10, 3);
views/admin_add_ons_page.php CHANGED
@@ -130,6 +130,14 @@ echo '<link type="text/css" rel="stylesheet" href="' . SIMPLE_WP_MEMBERSHIP_URL
130
  );
131
  array_push($addons_data, $addon_15);
132
 
 
 
 
 
 
 
 
 
133
 
134
  /*** Show the addons list ***/
135
  foreach ($addons_data as $addon) {
130
  );
131
  array_push($addons_data, $addon_15);
132
 
133
+ $addon_16 = array(
134
+ 'name' => 'Member Data Exporter',
135
+ 'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-data-exporter-addon.png',
136
+ 'description' => 'Allows you to export all the members profile data and payments data to a CSV file.',
137
+ 'page_url' => 'https://simple-membership-plugin.com/simple-membership-member-data-exporter-addon/',
138
+ );
139
+ array_push($addons_data, $addon_16);
140
+
141
 
142
  /*** Show the addons list ***/
143
  foreach ($addons_data as $addon) {
views/admin_edit.php CHANGED
@@ -68,9 +68,15 @@
68
 
69
  </table>
70
 
71
- <?php include('admin_member_form_common_js.php');?>
72
- <?php echo apply_filters('swpm_admin_custom_fields', '',$membership_level);?>
73
  <?php submit_button( SwpmUtils::_('Edit User '), 'primary', 'editswpmuser', true, array( 'id' => 'createswpmusersub' ) ); ?>
 
 
 
 
 
 
74
  </form>
75
  </div>
76
  <script>
68
 
69
  </table>
70
 
71
+ <?php include('admin_member_form_common_js.php'); ?>
72
+ <?php echo apply_filters('swpm_admin_custom_fields', '',$membership_level); ?>
73
  <?php submit_button( SwpmUtils::_('Edit User '), 'primary', 'editswpmuser', true, array( 'id' => 'createswpmusersub' ) ); ?>
74
+ <?php
75
+ $member_delete_url = "?page=simple_wp_membership&member_action=delete&member_id=".$member_id;
76
+ echo '<div class="swpm-admin-delete-user-profile-link">';
77
+ echo '<a style="color:red;font-weight:bold;" href="'.$member_delete_url.'" onclick="return confirm(\'Are you sure you want to delete this user profile?\')">'.SwpmUtils::_('Delete User Profile').'</a>';
78
+ echo '</div>';
79
+ ?>
80
  </form>
81
  </div>
82
  <script>