Version Description
- Updated the Italian language file. Thanks to Nicol Monili for updating the translation.
- Deleted the German language files from the plugin folder so it can pull the language from translate.wordpress.org
- Improved the member search functionality when used with pagination.
- Added more sanitization on the registration form.
- Added a few utility functions to the membership level utility class.
- Google reCAPTCHA addon updated to enable captcha on the login form.
- Stripe Checkout: The plugin now sets the "receipt_email" parameter for Stripe checkout so a receipt gets sent from Stripe.
Download this release
Release Info
Developer | wp.insider |
Plugin | Simple Membership |
Version | 3.4.0 |
Comparing to | |
See all releases |
Code changes from version 3.3.9 to 3.4.0
- classes/class.swpm-admin-registration.php +2 -2
- classes/class.swpm-auth.php +8 -1
- classes/class.swpm-form.php +1 -1
- classes/class.swpm-front-registration.php +2 -3
- classes/class.swpm-members.php +8 -1
- classes/class.swpm-utils-membership-level.php +15 -0
- images/addons/swpm-member-directory-listing-addon.png +0 -0
- ipn/swpm-stripe-buy-now-ipn.php +1 -0
- languages/swpm-it_IT.mo +0 -0
- languages/swpm-it_IT.po +948 -658
- readme.txt +12 -3
- simple-wp-membership.php +2 -2
- views/add.php +4 -4
- views/admin_add_ons_page.php +11 -4
- views/admin_members_list.php +1 -1
- views/login.php +3 -0
classes/class.swpm-admin-registration.php
CHANGED
@@ -29,7 +29,7 @@ class SwpmAdminRegistration extends SwpmRegistration {
|
|
29 |
$member = SwpmTransfer::$default_fields;
|
30 |
$form = new SwpmForm($member);
|
31 |
if ($form->is_valid()) {
|
32 |
-
$member_info = $form->
|
33 |
$account_status = SwpmSettings::get_instance()->get_value('default-account-status', 'active');
|
34 |
$member_info['account_state'] = $account_status;
|
35 |
$plain_password = $member_info['plain_password'];
|
@@ -91,7 +91,7 @@ class SwpmAdminRegistration extends SwpmRegistration {
|
|
91 |
unset($member['user_name']);
|
92 |
$form = new SwpmForm($member);
|
93 |
if ($form->is_valid()) {
|
94 |
-
$member = $form->
|
95 |
$plain_password = isset($member['plain_password']) ? $member['plain_password'] : "";
|
96 |
SwpmUtils::update_wp_user($user_name, $member);
|
97 |
unset($member['plain_password']);
|
29 |
$member = SwpmTransfer::$default_fields;
|
30 |
$form = new SwpmForm($member);
|
31 |
if ($form->is_valid()) {
|
32 |
+
$member_info = $form->get_sanitized_member_form_data();
|
33 |
$account_status = SwpmSettings::get_instance()->get_value('default-account-status', 'active');
|
34 |
$member_info['account_state'] = $account_status;
|
35 |
$plain_password = $member_info['plain_password'];
|
91 |
unset($member['user_name']);
|
92 |
$form = new SwpmForm($member);
|
93 |
if ($form->is_valid()) {
|
94 |
+
$member = $form->get_sanitized_member_form_data();
|
95 |
$plain_password = isset($member['plain_password']) ? $member['plain_password'] : "";
|
96 |
SwpmUtils::update_wp_user($user_name, $member);
|
97 |
unset($member['plain_password']);
|
classes/class.swpm-auth.php
CHANGED
@@ -38,7 +38,7 @@ class SwpmAuth {
|
|
38 |
|
39 |
if (!empty($swpm_user_name) && !empty($swpm_password)) {
|
40 |
//SWPM member login request.
|
41 |
-
|
42 |
//First, lets make sure this user is not already logged into the site as an "Admin" user. We don't want to override that admin login session.
|
43 |
if (current_user_can('administrator')) {
|
44 |
//This user is logged in as ADMIN then trying to do another login as a member. Stop the login request processing (we don't want to override your admin login session).
|
@@ -50,6 +50,13 @@ class SwpmAuth {
|
|
50 |
wp_die($error_msg);
|
51 |
}
|
52 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
if(is_email($swpm_user_name)){//User is trying to log-in using an email address
|
54 |
$email = sanitize_email($swpm_user_name);
|
55 |
$query = $wpdb->prepare("SELECT user_name FROM " . $wpdb->prefix . "swpm_members_tbl WHERE email = %s", $email);
|
38 |
|
39 |
if (!empty($swpm_user_name) && !empty($swpm_password)) {
|
40 |
//SWPM member login request.
|
41 |
+
|
42 |
//First, lets make sure this user is not already logged into the site as an "Admin" user. We don't want to override that admin login session.
|
43 |
if (current_user_can('administrator')) {
|
44 |
//This user is logged in as ADMIN then trying to do another login as a member. Stop the login request processing (we don't want to override your admin login session).
|
50 |
wp_die($error_msg);
|
51 |
}
|
52 |
|
53 |
+
//If captcha is present and validation failed, it returns an error string. If validation succeeds, it returns an empty string.
|
54 |
+
$captcha_validation_output = apply_filters('swpm_validate_login_form_submission', '');
|
55 |
+
if (!empty($captcha_validation_output)) {
|
56 |
+
$this->lastStatusMsg = SwpmUtils::_('Captcha validation failed on login form.');
|
57 |
+
return;
|
58 |
+
}
|
59 |
+
|
60 |
if(is_email($swpm_user_name)){//User is trying to log-in using an email address
|
61 |
$email = sanitize_email($swpm_user_name);
|
62 |
$query = $wpdb->prepare("SELECT user_name FROM " . $wpdb->prefix . "swpm_members_tbl WHERE email = %s", $email);
|
classes/class.swpm-form.php
CHANGED
@@ -290,7 +290,7 @@ class SwpmForm {
|
|
290 |
return count($this->errors) < 1;
|
291 |
}
|
292 |
|
293 |
-
public function
|
294 |
return $this->sanitized;
|
295 |
}
|
296 |
|
290 |
return count($this->errors) < 1;
|
291 |
}
|
292 |
|
293 |
+
public function get_sanitized_member_form_data() {
|
294 |
return $this->sanitized;
|
295 |
}
|
296 |
|
classes/class.swpm-front-registration.php
CHANGED
@@ -116,8 +116,7 @@ class SwpmFrontRegistration extends SwpmRegistration {
|
|
116 |
return false;
|
117 |
}
|
118 |
|
119 |
-
|
120 |
-
$member_info = $form->get_sanitized();
|
121 |
$free_level = SwpmUtils::get_free_level();
|
122 |
$account_status = SwpmSettings::get_instance()->get_value('default-account-status', 'active');
|
123 |
$member_info['last_accessed_from_ip'] = SwpmUtils::get_user_ip_address();
|
@@ -202,7 +201,7 @@ class SwpmFrontRegistration extends SwpmRegistration {
|
|
202 |
global $wpdb;
|
203 |
$message = array('succeeded' => true, 'message' => SwpmUtils::_('Profile updated successfully.'));
|
204 |
|
205 |
-
$member_info = $form->
|
206 |
SwpmUtils::update_wp_user($auth->get('user_name'), $member_info); //Update corresponding wp user record.
|
207 |
|
208 |
|
116 |
return false;
|
117 |
}
|
118 |
|
119 |
+
$member_info = $form->get_sanitized_member_form_data();
|
|
|
120 |
$free_level = SwpmUtils::get_free_level();
|
121 |
$account_status = SwpmSettings::get_instance()->get_value('default-account-status', 'active');
|
122 |
$member_info['last_accessed_from_ip'] = SwpmUtils::get_user_ip_address();
|
201 |
global $wpdb;
|
202 |
$message = array('succeeded' => true, 'message' => SwpmUtils::_('Profile updated successfully.'));
|
203 |
|
204 |
+
$member_info = $form->get_sanitized_member_form_data();
|
205 |
SwpmUtils::update_wp_user($auth->get('user_name'), $member_info); //Update corresponding wp user record.
|
206 |
|
207 |
|
classes/class.swpm-members.php
CHANGED
@@ -85,12 +85,19 @@ class SwpmMembers extends WP_List_Table {
|
|
85 |
$query = "SELECT * FROM " . $wpdb->prefix . "swpm_members_tbl";
|
86 |
$query .= " LEFT JOIN " . $wpdb->prefix . "swpm_membership_tbl";
|
87 |
$query .= " ON ( membership_level = id ) ";
|
88 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
$status = filter_input(INPUT_GET, 'status');
|
90 |
$filter1 = '';
|
91 |
|
92 |
//Add the search parameter to the query
|
93 |
if (!empty($s)) {
|
|
|
94 |
$s = trim($s);//Trim the input
|
95 |
$filter1 .= "( user_name LIKE '%" . strip_tags($s) . "%' "
|
96 |
. " OR first_name LIKE '%" . strip_tags($s) . "%' "
|
85 |
$query = "SELECT * FROM " . $wpdb->prefix . "swpm_members_tbl";
|
86 |
$query .= " LEFT JOIN " . $wpdb->prefix . "swpm_membership_tbl";
|
87 |
$query .= " ON ( membership_level = id ) ";
|
88 |
+
|
89 |
+
//Get the search string (if any)
|
90 |
+
$s = filter_input(INPUT_GET, 's');
|
91 |
+
if(empty($s)){
|
92 |
+
$s = filter_input(INPUT_POST, 's');
|
93 |
+
}
|
94 |
+
|
95 |
$status = filter_input(INPUT_GET, 'status');
|
96 |
$filter1 = '';
|
97 |
|
98 |
//Add the search parameter to the query
|
99 |
if (!empty($s)) {
|
100 |
+
$s = sanitize_text_field($s);
|
101 |
$s = trim($s);//Trim the input
|
102 |
$filter1 .= "( user_name LIKE '%" . strip_tags($s) . "%' "
|
103 |
. " OR first_name LIKE '%" . strip_tags($s) . "%' "
|
classes/class.swpm-utils-membership-level.php
CHANGED
@@ -6,4 +6,19 @@
|
|
6 |
|
7 |
class SwpmMembershipLevelUtils {
|
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
}
|
6 |
|
7 |
class SwpmMembershipLevelUtils {
|
8 |
|
9 |
+
public static function get_membership_level_name_of_a_member($member_id){
|
10 |
+
$user_row = SwpmMemberUtils::get_user_by_id($member_id);
|
11 |
+
$level_id = $user_row->membership_level;
|
12 |
+
|
13 |
+
$level_row = SwpmUtils::get_membership_level_row_by_id($level_id);
|
14 |
+
$level_name = $level_row->alias;
|
15 |
+
return $level_name;
|
16 |
+
}
|
17 |
+
|
18 |
+
public static function get_membership_level_name_by_level_id($level_id){
|
19 |
+
$level_row = SwpmUtils::get_membership_level_row_by_id($level_id);
|
20 |
+
$level_name = $level_row->alias;
|
21 |
+
return $level_name;
|
22 |
+
}
|
23 |
+
|
24 |
}
|
images/addons/swpm-member-directory-listing-addon.png
ADDED
Binary file
|
ipn/swpm-stripe-buy-now-ipn.php
CHANGED
@@ -79,6 +79,7 @@ class SwpmStripeBuyNowIpnHandler {
|
|
79 |
"currency" => strtolower($currency_code),
|
80 |
"source" => $token,
|
81 |
"description" => $button_title,
|
|
|
82 |
));
|
83 |
} catch(\Stripe\Error\Card $e) {
|
84 |
// The card has been declined
|
79 |
"currency" => strtolower($currency_code),
|
80 |
"source" => $token,
|
81 |
"description" => $button_title,
|
82 |
+
"receipt_email" => $stripe_email,
|
83 |
));
|
84 |
} catch(\Stripe\Error\Card $e) {
|
85 |
// The card has been declined
|
languages/swpm-it_IT.mo
CHANGED
Binary file
|
languages/swpm-it_IT.po
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
-
"POT-Creation-Date: 2016-09
|
5 |
-
"PO-Revision-Date: 2016-
|
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.
|
11 |
"X-Poedit-KeywordsList: __;_e\n"
|
12 |
"X-Poedit-Basepath: .\n"
|
13 |
"Last-Translator: \n"
|
@@ -15,89 +15,97 @@ msgstr ""
|
|
15 |
"Language: it_IT\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: classes/class.simple-wp-membership.php:
|
19 |
msgid "You are not logged in."
|
20 |
-
msgstr "Non hai effettuato l
|
21 |
|
22 |
-
#: classes/class.simple-wp-membership.php:
|
23 |
-
msgid "
|
|
|
|
|
24 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
|
26 |
-
#: classes/class.simple-wp-membership.php:
|
27 |
msgid "Simple Membership Protection options"
|
28 |
-
msgstr "Opzioni Simple Membership
|
29 |
|
30 |
-
#: classes/class.simple-wp-membership.php:
|
31 |
msgid "Do you want to protect this content?"
|
32 |
-
msgstr "
|
33 |
|
34 |
-
#: classes/class.simple-wp-membership.php:
|
35 |
msgid "Select the membership level that can access this content:"
|
36 |
-
msgstr "Seleziona il livello
|
37 |
|
38 |
-
#: classes/class.simple-wp-membership.php:
|
39 |
msgid "WP Membership"
|
40 |
-
msgstr ""
|
41 |
|
42 |
-
#: classes/class.simple-wp-membership.php:
|
43 |
-
#:
|
44 |
msgid "Members"
|
45 |
-
msgstr "
|
46 |
|
47 |
-
#: classes/class.simple-wp-membership.php:
|
48 |
#: classes/class.swpm-category-list.php:20
|
49 |
-
#: classes/class.swpm-membership-levels.php:
|
|
|
50 |
msgid "Membership Levels"
|
51 |
msgstr "Livelli di iscrizione"
|
52 |
|
53 |
-
#: classes/class.simple-wp-membership.php:
|
54 |
msgid "Settings"
|
55 |
msgstr "Impostazioni"
|
56 |
|
57 |
-
#: classes/class.simple-wp-membership.php:
|
58 |
msgid "Payments"
|
59 |
msgstr "Pagamenti"
|
60 |
|
61 |
-
#: classes/class.simple-wp-membership.php:
|
62 |
msgid "Add-ons"
|
63 |
-
msgstr ""
|
64 |
|
65 |
-
#: classes/class.swpm-access-control.php:
|
66 |
-
#: classes/class.swpm-access-control.php:
|
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:
|
72 |
-
#: classes/class.swpm-access-control.php:
|
73 |
-
|
74 |
-
"Your account has expired.
|
75 |
-
"
|
76 |
-
msgstr ""
|
77 |
-
"Il tuo abbonamento è scaduto. Rinnovalo per accedere a questo contenuto."
|
78 |
|
79 |
-
#: classes/class.swpm-access-control.php:
|
|
|
80 |
msgid "This content can only be viewed by members who joined on or before "
|
81 |
-
msgstr "
|
|
|
|
|
82 |
|
83 |
-
#: classes/class.swpm-access-control.php:
|
84 |
-
#: classes/class.swpm-access-control.php:
|
85 |
msgid "This content is not permitted for your membership level."
|
86 |
-
msgstr "Questo contenuto è
|
87 |
-
|
88 |
-
#: classes/class.swpm-access-control.php:84
|
89 |
-
msgid " The rest of the content is not permitted for your membership level."
|
90 |
-
msgstr ""
|
91 |
-
"Il resto del contenuto è riservato a un livello d'iscrizione superiore."
|
92 |
|
93 |
-
#: classes/class.swpm-access-control.php:
|
94 |
-
#: classes/class.swpm-access-control.php:106
|
95 |
msgid "You need to login to view the rest of the content. "
|
96 |
-
msgstr "
|
|
|
|
|
|
|
|
|
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
|
@@ -105,960 +113,1186 @@ msgstr ""
|
|
105 |
#: classes/class.swpm-membership-level.php:43
|
106 |
#: classes/class.swpm-membership-level.php:62
|
107 |
msgid "Please correct the following:"
|
108 |
-
msgstr "
|
109 |
|
110 |
#: classes/class.swpm-admin-registration.php:96
|
111 |
msgid "Your current password"
|
112 |
-
msgstr "La tua password attuale
|
113 |
|
114 |
#: classes/class.swpm-ajax.php:14
|
115 |
msgid "Invalid Email Address"
|
116 |
-
msgstr "Indirizzo
|
117 |
|
118 |
#: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
|
119 |
msgid "Aready taken"
|
120 |
-
msgstr ""
|
121 |
|
122 |
#: classes/class.swpm-ajax.php:30
|
123 |
msgid "Name contains invalid character"
|
124 |
-
msgstr "Il nome contiene caratteri non validi
|
125 |
|
126 |
#: classes/class.swpm-ajax.php:37
|
127 |
msgid "Available"
|
128 |
msgstr "Disponibile"
|
129 |
|
130 |
-
#: classes/class.swpm-auth.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
msgid "User Not Found."
|
132 |
-
msgstr "
|
133 |
|
134 |
-
#: classes/class.swpm-auth.php:
|
135 |
msgid "Password Empty or Invalid."
|
136 |
-
msgstr "
|
137 |
|
138 |
-
#: classes/class.swpm-auth.php:
|
139 |
msgid "Account is inactive."
|
140 |
-
msgstr "L
|
141 |
-
|
142 |
-
#: classes/class.swpm-auth.php:85
|
143 |
-
msgid "Account is pending."
|
144 |
-
msgstr ""
|
145 |
|
146 |
-
#: classes/class.swpm-auth.php:
|
147 |
msgid "Account has expired."
|
148 |
-
msgstr "L
|
149 |
|
150 |
-
#: classes/class.swpm-auth.php:
|
|
|
|
|
|
|
|
|
151 |
msgid "You are logged in as:"
|
152 |
-
msgstr "
|
153 |
|
154 |
-
#: classes/class.swpm-auth.php:
|
155 |
msgid "Logged Out Successfully."
|
156 |
-
msgstr ""
|
157 |
|
158 |
-
#: classes/class.swpm-auth.php:
|
159 |
msgid "Session Expired."
|
160 |
msgstr "Sessione scaduta."
|
161 |
|
162 |
-
#: classes/class.swpm-auth.php:
|
163 |
msgid "Invalid Username"
|
164 |
-
msgstr "Username non valido
|
165 |
|
166 |
-
#: classes/class.swpm-auth.php:
|
167 |
msgid "Please login again."
|
168 |
-
msgstr "Per favore
|
169 |
|
170 |
-
#: classes/class.swpm-category-list.php:19 classes/class.swpm-members.php:
|
171 |
-
#: classes/class.swpm-membership-levels.php:
|
172 |
-
#: classes/class.swpm-membership-levels.php:
|
173 |
-
#: classes/admin-includes/class.swpm-payments-list-table.php:
|
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:
|
176 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:217
|
177 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
178 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
|
|
|
|
179 |
msgid "Membership Level"
|
180 |
-
msgstr "Livello
|
181 |
|
182 |
-
#: classes/class.swpm-category-list.php:33
|
183 |
-
|
184 |
-
|
185 |
-
msgstr ""
|
186 |
|
187 |
#: classes/class.swpm-category-list.php:34
|
188 |
-
msgid "Name"
|
189 |
-
msgstr "Nome"
|
190 |
|
191 |
#: classes/class.swpm-category-list.php:35
|
|
|
|
|
|
|
|
|
192 |
msgid "Description"
|
193 |
msgstr "Descrizione"
|
194 |
|
195 |
-
#: classes/class.swpm-category-list.php:
|
196 |
msgid "Count"
|
197 |
-
msgstr ""
|
198 |
|
199 |
-
#: classes/class.swpm-category-list.php:
|
200 |
msgid "Category protection updated!"
|
201 |
-
msgstr ""
|
202 |
|
203 |
-
#: classes/class.swpm-form.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
204 |
msgid ""
|
205 |
"Wordpress account exists with given username. But given email doesn't match."
|
206 |
msgstr ""
|
207 |
-
"Un account Wordpress con questo
|
208 |
-
"
|
209 |
|
210 |
-
#: classes/class.swpm-form.php:
|
211 |
msgid ""
|
212 |
"Wordpress account exists with given email. But given username doesn't match."
|
213 |
msgstr ""
|
214 |
-
"Un account Wordpress con
|
215 |
-
"
|
216 |
|
217 |
-
#: classes/class.swpm-form.php:
|
218 |
msgid "Username is required"
|
219 |
-
msgstr "
|
220 |
|
221 |
-
#: classes/class.swpm-form.php:
|
222 |
msgid "Username contains invalid character"
|
223 |
-
msgstr "
|
224 |
|
225 |
-
#: classes/class.swpm-form.php:
|
226 |
msgid "Username already exists."
|
227 |
-
msgstr "Username già
|
228 |
|
229 |
-
#: classes/class.swpm-form.php:
|
230 |
msgid "Password is required"
|
231 |
-
msgstr "
|
232 |
|
233 |
-
#: classes/class.swpm-form.php:
|
234 |
msgid "Password mismatch"
|
235 |
-
msgstr "La password non
|
236 |
|
237 |
-
#: classes/class.swpm-form.php:
|
238 |
msgid "Email is required"
|
239 |
-
msgstr "
|
240 |
|
241 |
-
#: classes/class.swpm-form.php:
|
242 |
msgid "Email is invalid"
|
243 |
-
msgstr "
|
244 |
|
245 |
-
#: classes/class.swpm-form.php:
|
246 |
msgid "Email is already used."
|
247 |
-
msgstr "
|
248 |
|
249 |
-
#: classes/class.swpm-form.php:
|
250 |
msgid "Member since field is invalid"
|
251 |
-
msgstr ""
|
252 |
|
253 |
-
#: classes/class.swpm-form.php:
|
254 |
msgid "Access starts field is invalid"
|
255 |
-
msgstr ""
|
256 |
|
257 |
-
#: classes/class.swpm-form.php:
|
258 |
msgid "Gender field is invalid"
|
259 |
-
msgstr ""
|
260 |
|
261 |
-
#: classes/class.swpm-form.php:
|
262 |
msgid "Account state field is invalid"
|
263 |
-
msgstr ""
|
264 |
|
265 |
-
#: classes/class.swpm-form.php:
|
266 |
msgid "Invalid membership level"
|
|
|
|
|
|
|
|
|
|
|
267 |
msgstr ""
|
|
|
|
|
268 |
|
269 |
-
#: classes/class.swpm-front-registration.php:
|
270 |
-
msgid "
|
|
|
|
|
271 |
msgstr ""
|
|
|
|
|
272 |
|
273 |
-
#: classes/class.swpm-front-registration.php:
|
|
|
|
|
|
|
|
|
274 |
msgid "Registration Successful. "
|
275 |
-
msgstr "Registrazione
|
276 |
|
277 |
-
#: classes/class.swpm-front-registration.php:
|
278 |
-
#: classes/class.swpm-
|
279 |
msgid "Please"
|
280 |
-
msgstr "
|
281 |
|
282 |
-
#: classes/class.swpm-front-registration.php:
|
283 |
-
#: classes/class.swpm-
|
284 |
msgid "Login"
|
285 |
-
msgstr ""
|
286 |
|
287 |
-
#: classes/class.swpm-front-registration.php:
|
288 |
-
#: classes/class.swpm-front-registration.php:
|
289 |
msgid "Please correct the following"
|
290 |
-
msgstr "
|
291 |
|
292 |
-
#: classes/class.swpm-front-registration.php:
|
293 |
msgid "Membership Level Couldn't be found."
|
294 |
-
msgstr ""
|
295 |
|
296 |
-
#: classes/class.swpm-front-registration.php:
|
297 |
msgid "Profile updated successfully."
|
298 |
-
msgstr "Profilo aggiornato
|
299 |
|
300 |
-
#: classes/class.swpm-front-registration.php:
|
301 |
msgid ""
|
302 |
"Profile updated successfully. You will need to re-login since you changed "
|
303 |
"your password."
|
304 |
msgstr ""
|
305 |
-
"Profilo aggiornato
|
306 |
-
"
|
307 |
|
308 |
-
#: classes/class.swpm-front-registration.php:
|
309 |
msgid "Email address not valid."
|
310 |
-
msgstr "Indirizzo
|
311 |
|
312 |
-
#: classes/class.swpm-front-registration.php:
|
313 |
msgid "No user found with that email address."
|
314 |
-
msgstr "Nessun utente trovato con questo indirizzo
|
315 |
|
316 |
-
#: classes/class.swpm-front-registration.php:
|
317 |
-
#: classes/class.swpm-front-registration.php:
|
318 |
msgid "Email Address: "
|
319 |
-
msgstr "Indirizzo
|
320 |
|
321 |
-
#: classes/class.swpm-front-registration.php:
|
322 |
msgid "New password has been sent to your email address."
|
323 |
-
msgstr ""
|
324 |
-
"La tua nuova password è stata inviata all'indirizzo email che ci hai fornito."
|
325 |
|
326 |
-
#: classes/class.swpm-init-time-tasks.php:
|
327 |
msgid "Sorry, Nonce verification failed."
|
328 |
-
msgstr ""
|
329 |
|
330 |
-
#: classes/class.swpm-init-time-tasks.php:
|
331 |
msgid "Sorry, Password didn't match."
|
332 |
-
msgstr "
|
333 |
|
334 |
#: classes/class.swpm-level-form.php:47
|
335 |
msgid "Date format is not valid."
|
336 |
-
msgstr ""
|
337 |
|
338 |
#: classes/class.swpm-level-form.php:55
|
339 |
msgid "Access duration must be > 0."
|
340 |
-
msgstr ""
|
341 |
-
|
342 |
-
#: classes/class.swpm-member-utils.php:22
|
343 |
-
#: classes/class.swpm-member-utils.php:30
|
344 |
-
#: classes/class.swpm-member-utils.php:38
|
345 |
-
#: classes/class.swpm-member-utils.php:48
|
346 |
-
msgid "User is not logged in."
|
347 |
-
msgstr "Non hai effettuato l'accesso"
|
348 |
|
349 |
-
#: classes/class.swpm-members.php:
|
350 |
msgid "Member"
|
351 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
352 |
|
353 |
-
#: classes/class.swpm-members.php:
|
354 |
-
#: views/admin_edit.php:
|
355 |
msgid "Username"
|
356 |
-
msgstr ""
|
357 |
|
358 |
-
#: classes/class.swpm-members.php:
|
359 |
-
#: classes/admin-includes/class.swpm-payments-list-table.php:
|
360 |
#: views/add.php:22 views/admin_member_form_common_part.php:15
|
361 |
#: views/edit.php:21
|
362 |
msgid "First Name"
|
363 |
msgstr "Nome"
|
364 |
|
365 |
-
#: classes/class.swpm-members.php:
|
366 |
-
#: classes/admin-includes/class.swpm-payments-list-table.php:
|
367 |
#: views/add.php:26 views/admin_member_form_common_part.php:19
|
368 |
#: views/edit.php:25
|
369 |
msgid "Last Name"
|
370 |
msgstr "Cognome"
|
371 |
|
372 |
-
#: classes/class.swpm-members.php:
|
373 |
msgid "Email"
|
374 |
-
msgstr "
|
375 |
|
376 |
-
#: classes/class.swpm-members.php:
|
377 |
msgid "Access Starts"
|
378 |
-
msgstr ""
|
379 |
|
380 |
-
#: classes/class.swpm-members.php:
|
381 |
msgid "Account State"
|
382 |
-
msgstr ""
|
383 |
|
384 |
-
#: classes/class.swpm-members.php:
|
385 |
-
#: classes/class.swpm-membership-levels.php:
|
386 |
-
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:
|
387 |
-
#: classes/admin-includes/class.swpm-payments-list-table.php:
|
388 |
msgid "Delete"
|
389 |
-
msgstr "
|
390 |
|
391 |
-
#: classes/class.swpm-members.php:
|
392 |
msgid "Set Status to Active"
|
393 |
-
msgstr "Imposta lo stato
|
394 |
|
395 |
-
#: classes/class.swpm-members.php:
|
|
|
|
|
|
|
|
|
396 |
msgid "Set Status to Inactive"
|
397 |
-
msgstr "Imposta lo stato
|
398 |
|
399 |
-
#: classes/class.swpm-members.php:
|
400 |
msgid "Set Status to Pending"
|
401 |
-
msgstr "Imposta lo stato
|
402 |
|
403 |
-
#: classes/class.swpm-members.php:
|
404 |
msgid "Set Status to Expired"
|
405 |
-
msgstr "Imposta lo stato
|
406 |
|
407 |
-
#: classes/class.swpm-members.php:
|
408 |
-
msgid "
|
409 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
410 |
|
411 |
#: classes/class.swpm-membership-level.php:38
|
412 |
msgid "Membership Level Creation Successful."
|
413 |
-
msgstr ""
|
414 |
|
415 |
#: classes/class.swpm-membership-level.php:57
|
416 |
-
msgid "Updated Successfully."
|
417 |
-
msgstr "
|
418 |
|
419 |
-
#: classes/class.swpm-membership-levels.php:
|
420 |
msgid "Role"
|
421 |
msgstr "Ruolo"
|
422 |
|
423 |
-
#: classes/class.swpm-membership-levels.php:
|
424 |
msgid "Access Valid For/Until"
|
425 |
-
msgstr ""
|
426 |
|
427 |
-
#: classes/class.swpm-
|
428 |
-
|
429 |
-
|
|
|
430 |
|
431 |
-
#: classes/class.swpm-
|
432 |
-
msgid "
|
433 |
-
msgstr ""
|
434 |
|
435 |
-
#: classes/class.swpm-
|
436 |
-
msgid "
|
437 |
-
msgstr "
|
438 |
|
439 |
-
#: classes/class.swpm-
|
440 |
-
msgid "
|
441 |
-
msgstr "
|
442 |
|
443 |
-
#: classes/class.swpm-
|
|
|
|
|
|
|
|
|
444 |
msgid "General Settings"
|
445 |
msgstr "Impostazioni generali"
|
446 |
|
447 |
-
#: classes/class.swpm-settings.php:
|
448 |
msgid "Payment Settings"
|
449 |
-
msgstr "Impostazioni
|
450 |
|
451 |
-
#: classes/class.swpm-settings.php:
|
452 |
msgid "Email Settings"
|
453 |
-
msgstr "Impostazioni
|
454 |
|
455 |
-
#: classes/class.swpm-settings.php:
|
456 |
msgid "Tools"
|
457 |
msgstr "Strumenti"
|
458 |
|
459 |
-
#: classes/class.swpm-settings.php:
|
460 |
msgid "Advanced Settings"
|
461 |
msgstr "Impostazioni avanzate"
|
462 |
|
463 |
-
#: classes/class.swpm-settings.php:
|
464 |
msgid "Addons Settings"
|
465 |
-
msgstr "Impostazioni
|
466 |
|
467 |
-
#: classes/class.swpm-settings.php:
|
468 |
msgid "Plugin Documentation"
|
469 |
msgstr "Documentazione plugin"
|
470 |
|
471 |
-
#: classes/class.swpm-settings.php:
|
472 |
msgid "Enable Free Membership"
|
473 |
-
msgstr "
|
474 |
|
475 |
-
#: classes/class.swpm-settings.php:
|
476 |
msgid ""
|
477 |
"Enable/disable registration for free membership level. When you enable this "
|
478 |
"option, make sure to specify a free membership level ID in the field below."
|
479 |
msgstr ""
|
|
|
|
|
|
|
480 |
|
481 |
-
#: classes/class.swpm-settings.php:
|
482 |
msgid "Free Membership Level ID"
|
483 |
-
msgstr ""
|
484 |
|
485 |
-
#: classes/class.swpm-settings.php:
|
486 |
msgid "Assign free membership level ID"
|
487 |
-
msgstr ""
|
488 |
|
489 |
-
#: classes/class.swpm-settings.php:
|
490 |
msgid "Enable More Tag Protection"
|
491 |
-
msgstr ""
|
492 |
|
493 |
-
#: classes/class.swpm-settings.php:
|
494 |
msgid ""
|
495 |
"Enables or disables \"more\" tag protection in the posts and pages. Anything "
|
496 |
"after the More tag is protected. Anything before the more tag is teaser "
|
497 |
"content."
|
498 |
msgstr ""
|
499 |
-
"
|
500 |
-
"
|
501 |
-
"\"
|
502 |
|
503 |
-
#: classes/class.swpm-settings.php:
|
504 |
msgid "Hide Adminbar"
|
505 |
-
msgstr "Nascondi la barra
|
506 |
|
507 |
-
#: classes/class.swpm-settings.php:
|
508 |
msgid ""
|
509 |
"WordPress shows an admin toolbar to the logged in users of the site. Check "
|
510 |
-
"this
|
511 |
msgstr ""
|
512 |
-
"
|
513 |
-
"
|
514 |
-
"
|
515 |
|
516 |
-
#: classes/class.swpm-settings.php:
|
517 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
518 |
msgstr ""
|
|
|
|
|
|
|
519 |
|
520 |
-
#: classes/class.swpm-settings.php:
|
|
|
|
|
|
|
|
|
521 |
msgid ""
|
522 |
"Select the default account status for newly registered users. If you want to "
|
523 |
"manually approve the members then you can set the status to \"Pending\"."
|
524 |
msgstr ""
|
525 |
-
"
|
526 |
-
"
|
527 |
-
|
528 |
-
#: classes/class.swpm-settings.php:53
|
529 |
-
msgid "Allow Account Deletion"
|
530 |
-
msgstr "Consenti la cancellazione dell'account"
|
531 |
-
|
532 |
-
#: classes/class.swpm-settings.php:55
|
533 |
-
msgid "Allow users to delete their accounts."
|
534 |
-
msgstr "Consenti agli utenti di cancellare i loro account."
|
535 |
|
536 |
-
#: classes/class.swpm-settings.php:
|
537 |
-
msgid "
|
538 |
-
msgstr "
|
539 |
|
540 |
-
#: classes/class.swpm-settings.php:
|
541 |
-
msgid "
|
|
|
|
|
542 |
msgstr ""
|
543 |
-
"
|
|
|
544 |
|
545 |
-
#: classes/class.swpm-settings.php:
|
546 |
msgid "Pages Settings"
|
547 |
-
msgstr "Impostazioni
|
548 |
|
549 |
-
#: classes/class.swpm-settings.php:
|
550 |
msgid "Login Page URL"
|
551 |
-
msgstr ""
|
552 |
|
553 |
-
#: classes/class.swpm-settings.php:
|
554 |
msgid "Registration Page URL"
|
555 |
-
msgstr ""
|
556 |
|
557 |
-
#: classes/class.swpm-settings.php:
|
558 |
msgid "Join Us Page URL"
|
559 |
-
msgstr ""
|
560 |
|
561 |
-
#: classes/class.swpm-settings.php:
|
562 |
msgid "Edit Profile Page URL"
|
563 |
-
msgstr ""
|
564 |
|
565 |
-
#: classes/class.swpm-settings.php:
|
566 |
msgid "Password Reset Page URL"
|
567 |
-
msgstr ""
|
568 |
|
569 |
-
#: classes/class.swpm-settings.php:
|
570 |
msgid "Test & Debug Settings"
|
571 |
-
msgstr "Impostazioni
|
572 |
|
573 |
-
#: classes/class.swpm-settings.php:
|
574 |
msgid "Check this option to enable debug logging."
|
575 |
-
msgstr ""
|
576 |
|
577 |
-
#: classes/class.swpm-settings.php:
|
578 |
msgid "Enable Sandbox Testing"
|
579 |
-
msgstr ""
|
580 |
|
581 |
-
#: classes/class.swpm-settings.php:
|
582 |
msgid "Enable this option if you want to do sandbox payment testing."
|
583 |
msgstr ""
|
|
|
|
|
584 |
|
585 |
-
#: classes/class.swpm-settings.php:
|
586 |
-
#: classes/class.swpm-settings.php:
|
587 |
msgid "Settings updated!"
|
588 |
msgstr "Impostazioni aggiornate!"
|
589 |
|
590 |
-
#: classes/class.swpm-settings.php:
|
591 |
msgid "Email Misc. Settings"
|
592 |
-
msgstr ""
|
593 |
|
594 |
-
#: classes/class.swpm-settings.php:
|
595 |
msgid "From Email Address"
|
596 |
-
msgstr ""
|
597 |
|
598 |
-
#: classes/class.swpm-settings.php:
|
599 |
msgid "Email Settings (Prompt to Complete Registration )"
|
600 |
-
msgstr ""
|
601 |
|
602 |
-
#: classes/class.swpm-settings.php:
|
603 |
-
#: classes/class.swpm-settings.php:
|
|
|
604 |
msgid "Email Subject"
|
605 |
-
msgstr "Oggetto
|
606 |
|
607 |
-
#: classes/class.swpm-settings.php:
|
608 |
-
#: classes/class.swpm-settings.php:
|
|
|
609 |
msgid "Email Body"
|
610 |
-
msgstr "
|
611 |
|
612 |
-
#: classes/class.swpm-settings.php:
|
613 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
614 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
615 |
|
616 |
-
#: classes/class.swpm-settings.php:
|
617 |
msgid "Send Notification to Admin"
|
618 |
-
msgstr "Invia
|
619 |
|
620 |
-
#: classes/class.swpm-settings.php:
|
621 |
msgid ""
|
622 |
"Enable this option if you want the admin to receive a notification when a "
|
623 |
"member registers."
|
624 |
msgstr ""
|
625 |
-
"
|
626 |
-
"
|
627 |
|
628 |
-
#: classes/class.swpm-settings.php:
|
629 |
msgid "Admin Email Address"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
630 |
msgstr ""
|
|
|
|
|
|
|
|
|
631 |
|
632 |
-
#: classes/class.swpm-settings.php:
|
|
|
|
|
|
|
|
|
633 |
msgid ""
|
634 |
-
"
|
635 |
-
"
|
|
|
636 |
msgstr ""
|
637 |
-
"
|
638 |
-
"
|
|
|
|
|
639 |
|
640 |
-
#: classes/class.swpm-settings.php:
|
641 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
642 |
msgstr ""
|
|
|
|
|
643 |
|
644 |
-
#: classes/class.swpm-settings.php:
|
645 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
646 |
msgstr ""
|
|
|
|
|
|
|
647 |
|
648 |
-
#: classes/class.swpm-settings.php:
|
649 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
650 |
msgstr ""
|
|
|
|
|
651 |
|
652 |
-
#: classes/class.swpm-settings.php:
|
653 |
-
msgid "
|
|
|
|
|
654 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
655 |
|
656 |
-
#: classes/class.swpm-settings.php:
|
657 |
msgid ""
|
658 |
-
"
|
659 |
-
"
|
660 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
661 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
662 |
|
663 |
-
#: classes/class.swpm-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
664 |
msgid "Not a Member?"
|
665 |
-
msgstr "Non sei
|
666 |
|
667 |
-
#: classes/class.swpm-
|
668 |
msgid "Join Us"
|
669 |
-
msgstr "Registrati
|
|
|
|
|
|
|
|
|
670 |
|
671 |
-
#: classes/class.swpm-utils.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
672 |
msgid "Active"
|
673 |
msgstr "Attivo"
|
674 |
|
675 |
-
#: classes/class.swpm-utils.php:
|
676 |
msgid "Inactive"
|
677 |
-
msgstr "
|
678 |
|
679 |
-
#: classes/class.swpm-utils.php:
|
680 |
msgid "Pending"
|
681 |
msgstr "In attesa"
|
682 |
|
683 |
-
#: classes/class.swpm-utils.php:
|
684 |
msgid "Expired"
|
685 |
msgstr "Scaduto"
|
686 |
|
687 |
-
#: classes/class.swpm-utils.php:
|
688 |
msgid "Never"
|
689 |
msgstr "Mai"
|
690 |
|
691 |
-
#: classes/class.swpm-utils.php:
|
692 |
msgid "Delete Account"
|
693 |
-
msgstr "Cancella
|
694 |
|
695 |
-
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:
|
696 |
msgid "Payment Button ID"
|
697 |
-
msgstr ""
|
698 |
|
699 |
-
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:
|
700 |
msgid "Payment Button Title"
|
701 |
-
msgstr ""
|
702 |
|
703 |
-
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:
|
704 |
msgid "Membership Level ID"
|
705 |
-
msgstr ""
|
706 |
|
707 |
-
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:
|
|
|
|
|
|
|
|
|
708 |
msgid "Button Shortcode"
|
709 |
-
msgstr ""
|
710 |
|
711 |
-
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:
|
712 |
-
#: views/admin_members_list.php:
|
713 |
-
#: views/payments/admin_all_payment_transactions.php:
|
714 |
msgid "The selected entry was deleted!"
|
715 |
-
msgstr ""
|
716 |
|
717 |
-
#: classes/admin-includes/class.swpm-payments-
|
|
|
|
|
|
|
|
|
718 |
msgid "View Profile"
|
719 |
msgstr "Visualizza profilo"
|
720 |
|
721 |
-
#: classes/admin-includes/class.swpm-payments-list-table.php:
|
722 |
msgid "Row ID"
|
723 |
-
msgstr ""
|
724 |
|
725 |
-
#: classes/admin-includes/class.swpm-payments-list-table.php:
|
726 |
#: views/forgot_password.php:5
|
727 |
msgid "Email Address"
|
728 |
-
msgstr "Indirizzo
|
729 |
|
730 |
-
#: classes/admin-includes/class.swpm-payments-list-table.php:
|
731 |
msgid "Member Profile"
|
732 |
-
msgstr "Profilo"
|
733 |
|
734 |
-
#: classes/admin-includes/class.swpm-payments-list-table.php:
|
735 |
msgid "Date"
|
736 |
msgstr "Data"
|
737 |
|
738 |
-
#: classes/admin-includes/class.swpm-payments-list-table.php:
|
739 |
msgid "Transaction ID"
|
740 |
-
msgstr ""
|
741 |
-
|
742 |
-
#: classes/admin-includes/class.swpm-payments-list-table.php:79
|
743 |
-
msgid "Amount"
|
744 |
-
msgstr ""
|
745 |
-
|
746 |
-
#: classes/common/class.swpm-list-table.php:137
|
747 |
-
msgid "List View"
|
748 |
-
msgstr ""
|
749 |
-
|
750 |
-
#: classes/common/class.swpm-list-table.php:138
|
751 |
-
msgid "Excerpt View"
|
752 |
-
msgstr ""
|
753 |
-
|
754 |
-
#: classes/common/class.swpm-list-table.php:305
|
755 |
-
msgid "No items found."
|
756 |
-
msgstr ""
|
757 |
-
|
758 |
-
#: classes/common/class.swpm-list-table.php:431
|
759 |
-
msgid "Select bulk action"
|
760 |
-
msgstr ""
|
761 |
-
|
762 |
-
#: classes/common/class.swpm-list-table.php:433
|
763 |
-
msgid "Bulk Actions"
|
764 |
-
msgstr ""
|
765 |
-
|
766 |
-
#: classes/common/class.swpm-list-table.php:443
|
767 |
-
msgid "Apply"
|
768 |
-
msgstr ""
|
769 |
-
|
770 |
-
#: classes/common/class.swpm-list-table.php:543
|
771 |
-
msgid "Filter by date"
|
772 |
-
msgstr "Filtra per data"
|
773 |
-
|
774 |
-
#: classes/common/class.swpm-list-table.php:545
|
775 |
-
msgid "All dates"
|
776 |
-
msgstr "Tutte le date"
|
777 |
-
|
778 |
-
#: classes/common/class.swpm-list-table.php:555
|
779 |
-
#, php-format
|
780 |
-
msgid "%1$s %2$d"
|
781 |
-
msgstr ""
|
782 |
|
783 |
-
#: classes/
|
784 |
-
|
785 |
-
|
786 |
-
msgstr ""
|
787 |
-
|
788 |
-
#: classes/common/class.swpm-list-table.php:704
|
789 |
-
msgid "Select Page"
|
790 |
-
msgstr "Seleziona pagina"
|
791 |
|
792 |
-
#: classes/
|
793 |
-
msgid "
|
794 |
-
msgstr "
|
795 |
|
796 |
-
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:
|
797 |
msgid "Your membership profile will be updated to reflect the payment."
|
798 |
msgstr ""
|
|
|
799 |
|
800 |
-
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:
|
801 |
msgid "Your profile username: "
|
802 |
-
msgstr "Il tuo username:"
|
803 |
|
804 |
-
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:
|
805 |
msgid "Click on the following link to complete the registration."
|
806 |
-
msgstr "Clicca sul link
|
807 |
|
808 |
-
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:
|
809 |
msgid "Click here to complete your paid registration"
|
810 |
-
msgstr "Clicca
|
811 |
|
812 |
-
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:
|
813 |
msgid ""
|
814 |
"If you have just made a membership payment then your payment is yet to be "
|
815 |
"processed. Please check back in a few minutes. An email will be sent to you "
|
816 |
"with the details shortly."
|
817 |
msgstr ""
|
818 |
-
"Se
|
819 |
-
"
|
820 |
-
"inviata
|
821 |
|
822 |
-
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:
|
823 |
msgid "Expiry: "
|
824 |
msgstr "Scadenza:"
|
825 |
|
826 |
-
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:
|
827 |
msgid "You are not logged-in as a member"
|
828 |
-
msgstr "Non hai
|
829 |
|
830 |
-
#: views/add.php:14 views/admin_add.php:
|
831 |
-
#: views/edit.php:13 views/login.php:
|
832 |
msgid "Password"
|
833 |
-
msgstr ""
|
834 |
|
835 |
#: views/add.php:18 views/edit.php:17
|
836 |
msgid "Repeat Password"
|
837 |
-
msgstr "
|
838 |
|
839 |
#: views/add.php:41
|
840 |
msgid "Register"
|
841 |
-
msgstr ""
|
842 |
|
843 |
#: views/admin_add.php:6
|
844 |
-
msgid "Add Member"
|
845 |
-
msgstr "Aggiungi iscritto"
|
846 |
-
|
847 |
-
#: views/admin_add.php:7
|
848 |
msgid "Create a brand new user and add it to this site."
|
849 |
msgstr "Crea un nuovo utente e aggiungilo a questo sito."
|
850 |
|
851 |
-
#: views/admin_add.php:
|
852 |
#: views/admin_add_level.php:15 views/admin_add_level.php:19
|
853 |
-
#: views/admin_edit.php:
|
854 |
-
#: views/admin_edit_level.php:
|
|
|
855 |
msgid "(required)"
|
856 |
msgstr "(richiesto)"
|
857 |
|
858 |
-
#: views/admin_add.php:
|
859 |
msgid "E-mail"
|
860 |
-
msgstr ""
|
861 |
|
862 |
-
#: views/admin_add.php:
|
863 |
msgid "(twice, required)"
|
864 |
-
msgstr ""
|
865 |
|
866 |
-
#: views/admin_add.php:
|
867 |
msgid "Strength indicator"
|
868 |
-
msgstr "
|
869 |
|
870 |
-
#: views/admin_add.php:
|
871 |
msgid ""
|
872 |
"Hint: The password should be at least seven characters long. To make it "
|
873 |
"stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
|
874 |
"$ % ^ & )."
|
875 |
msgstr ""
|
876 |
-
"La password
|
877 |
-
"
|
|
|
878 |
|
879 |
-
#: views/admin_add.php:
|
880 |
msgid "Account Status"
|
881 |
-
msgstr "Stato
|
882 |
|
883 |
-
#: views/admin_add.php:
|
884 |
msgid "Add New Member "
|
885 |
-
msgstr "Aggiungi
|
886 |
-
|
887 |
-
#: views/admin_addon_settings.php:3 views/admin_settings.php:3
|
888 |
-
#: views/admin_tools_settings.php:3 views/payments/admin_payment_settings.php:3
|
889 |
-
msgid "Simple WP Membership::Settings"
|
890 |
-
msgstr ""
|
891 |
|
892 |
-
#: views/admin_addon_settings.php:
|
893 |
msgid ""
|
894 |
"Some of the simple membership plugin's addon settings and options will be "
|
895 |
"displayed here (if you have them)"
|
896 |
msgstr ""
|
|
|
|
|
897 |
|
898 |
-
#: views/admin_addon_settings.php:
|
899 |
msgid "Save Changes"
|
900 |
-
msgstr "Salva
|
901 |
|
902 |
#: views/admin_add_level.php:6
|
903 |
msgid "Create new membership level."
|
904 |
-
msgstr "Crea un nuovo livello
|
905 |
|
906 |
-
#: views/admin_add_level.php:11 views/admin_edit_level.php:
|
907 |
msgid "Membership Level Name"
|
908 |
-
msgstr ""
|
909 |
|
910 |
-
#: views/admin_add_level.php:15 views/admin_edit_level.php:
|
911 |
msgid "Default WordPress Role"
|
912 |
-
msgstr ""
|
913 |
|
914 |
-
#: views/admin_add_level.php:19 views/admin_edit_level.php:
|
915 |
msgid "Access Duration"
|
916 |
-
msgstr ""
|
917 |
|
918 |
#: views/admin_add_level.php:22
|
919 |
msgid "No Expiry (Access for this level will not expire until cancelled"
|
920 |
msgstr ""
|
921 |
-
"Nessuna scadenza (l
|
922 |
-
"cancellazione dell
|
923 |
|
924 |
#: views/admin_add_level.php:23 views/admin_add_level.php:25
|
925 |
#: views/admin_add_level.php:27 views/admin_add_level.php:29
|
926 |
-
#: views/admin_edit_level.php:
|
927 |
-
#: views/admin_edit_level.php:
|
928 |
msgid "Expire After"
|
929 |
msgstr "Scadenza dopo"
|
930 |
|
931 |
-
#: views/admin_add_level.php:24 views/admin_edit_level.php:
|
932 |
msgid "Days (Access expires after given number of days)"
|
933 |
-
msgstr "Giorni (l
|
934 |
|
935 |
#: views/admin_add_level.php:26
|
936 |
msgid "Weeks (Access expires after given number of weeks"
|
937 |
-
msgstr "Settimane (l
|
938 |
|
939 |
-
#: views/admin_add_level.php:28 views/admin_edit_level.php:
|
940 |
msgid "Months (Access expires after given number of months)"
|
941 |
-
msgstr "Mesi (l
|
942 |
|
943 |
-
#: views/admin_add_level.php:30 views/admin_edit_level.php:
|
944 |
msgid "Years (Access expires after given number of years)"
|
945 |
-
msgstr "Anni (l
|
946 |
|
947 |
-
#: views/admin_add_level.php:31 views/admin_edit_level.php:
|
948 |
msgid "Fixed Date Expiry"
|
949 |
msgstr "Data fissata per la scadenza"
|
950 |
|
951 |
-
#: views/admin_add_level.php:32 views/admin_edit_level.php:
|
952 |
msgid "(Access expires on a fixed date)"
|
953 |
-
msgstr "(l
|
954 |
|
955 |
#: views/admin_add_level.php:38
|
956 |
msgid "Add New Membership Level "
|
957 |
-
msgstr "
|
958 |
|
959 |
#: views/admin_add_ons_page.php:7
|
960 |
msgid "Simple WP Membership::Add-ons"
|
961 |
-
msgstr ""
|
962 |
|
963 |
-
#: views/admin_category_list.php:
|
964 |
-
msgid "Simple WP Membership::Categories"
|
965 |
-
msgstr ""
|
966 |
-
|
967 |
-
#: views/admin_category_list.php:7
|
968 |
msgid ""
|
969 |
"First of all, globally protect the category on your site by selecting "
|
970 |
"\"General Protection\" from the drop-down box below and then select the "
|
971 |
"categories that should be protected from non-logged in users."
|
972 |
msgstr ""
|
|
|
|
|
|
|
|
|
973 |
|
974 |
-
#: views/admin_category_list.php:
|
975 |
msgid ""
|
976 |
"Next, select an existing membership level from the drop-down box below and "
|
977 |
"then select the categories you want to grant access to (for that particular "
|
978 |
"membership level)."
|
979 |
msgstr ""
|
|
|
|
|
|
|
980 |
|
981 |
#: views/admin_edit.php:5
|
982 |
msgid "Edit Member"
|
983 |
-
msgstr "Modifica
|
984 |
|
985 |
-
#: views/admin_edit.php:
|
986 |
msgid "Edit existing member details."
|
987 |
-
msgstr "Modifica i dettagli
|
988 |
|
989 |
-
#: views/admin_edit.php:
|
|
|
|
|
|
|
|
|
990 |
msgid "(twice, leave empty to retain old password)"
|
991 |
-
msgstr ""
|
992 |
|
993 |
-
#: views/admin_edit.php:
|
994 |
msgid "Notify User"
|
995 |
-
msgstr ""
|
996 |
|
997 |
-
#: views/admin_edit.php:
|
998 |
msgid "Subscriber ID/Reference"
|
999 |
-
msgstr ""
|
1000 |
|
1001 |
-
#: views/admin_edit.php:
|
1002 |
msgid "Last Accessed From IP"
|
1003 |
-
msgstr ""
|
1004 |
|
1005 |
-
#: views/admin_edit.php:
|
1006 |
msgid "Edit User "
|
1007 |
msgstr "Modifica utente"
|
1008 |
|
|
|
|
|
|
|
|
|
1009 |
#: views/admin_edit_level.php:5
|
1010 |
msgid "Edit membership level"
|
1011 |
-
msgstr "Modifica livello
|
|
|
|
|
|
|
|
|
|
|
|
|
1012 |
|
1013 |
-
#: views/admin_edit_level.php:
|
1014 |
-
msgid "
|
1015 |
-
msgstr "
|
1016 |
|
1017 |
-
#: views/admin_edit_level.php:
|
1018 |
msgid "No Expiry (Access for this level will not expire until cancelled)"
|
1019 |
msgstr ""
|
1020 |
-
"Nessuna scadenza (l
|
1021 |
-
"cancellazione dell
|
1022 |
|
1023 |
-
#: views/admin_edit_level.php:
|
1024 |
msgid "Weeks (Access expires after given number of weeks)"
|
1025 |
-
msgstr "Settimane (l
|
1026 |
|
1027 |
-
#: views/admin_edit_level.php:
|
1028 |
msgid "Edit Membership Level "
|
1029 |
-
msgstr "Modifica livello
|
1030 |
-
|
1031 |
-
#: views/admin_members.php:2
|
1032 |
-
msgid "Simple WP Membership::Members"
|
1033 |
-
msgstr ""
|
1034 |
-
|
1035 |
-
#: views/admin_members.php:3 views/admin_members_list.php:30
|
1036 |
-
msgid "Add New"
|
1037 |
-
msgstr "Aggiungi nuovo"
|
1038 |
-
|
1039 |
-
#: views/admin_membership_levels.php:2
|
1040 |
-
msgid "Simple WP Membership::Membership Levels"
|
1041 |
-
msgstr ""
|
1042 |
-
|
1043 |
-
#: views/admin_membership_levels.php:12 views/admin_members_list.php:6
|
1044 |
-
msgid "search"
|
1045 |
-
msgstr "Cerca"
|
1046 |
-
|
1047 |
-
#: views/admin_membership_level_menu.php:2
|
1048 |
-
msgid "Membership level"
|
1049 |
-
msgstr "Livello d'iscrizione"
|
1050 |
-
|
1051 |
-
#: views/admin_membership_level_menu.php:3
|
1052 |
-
msgid "Manage Content Production"
|
1053 |
-
msgstr ""
|
1054 |
|
1055 |
-
#: views/
|
1056 |
-
msgid "Category Protection"
|
1057 |
-
msgstr ""
|
1058 |
-
|
1059 |
-
#: views/admin_membership_manage.php:17
|
1060 |
msgid "Example Content Protection Settings"
|
1061 |
-
msgstr ""
|
1062 |
|
1063 |
#: views/admin_member_form_common_part.php:23
|
1064 |
msgid "Gender"
|
@@ -1094,241 +1328,297 @@ msgstr "Ente/azienda"
|
|
1094 |
|
1095 |
#: views/admin_member_form_common_part.php:58
|
1096 |
msgid "Member Since"
|
1097 |
-
msgstr "
|
1098 |
|
1099 |
-
#: views/admin_tools_settings.php:
|
1100 |
msgid "Generate a Registration Completion link"
|
1101 |
-
msgstr "Genera un link
|
1102 |
|
1103 |
-
#: views/admin_tools_settings.php:
|
1104 |
msgid ""
|
1105 |
"You can manually generate a registration completion link here and give it to "
|
1106 |
"your customer if they have missed the email that was automatically sent out "
|
1107 |
"to them after the payment."
|
1108 |
msgstr ""
|
1109 |
-
"
|
1110 |
-
"al
|
1111 |
-
"pagamento."
|
1112 |
|
1113 |
-
#: views/admin_tools_settings.php:
|
1114 |
msgid "Generate Registration Completion Link"
|
1115 |
-
msgstr "Genera
|
1116 |
|
1117 |
-
#: views/admin_tools_settings.php:
|
1118 |
msgid "OR"
|
1119 |
-
msgstr ""
|
1120 |
|
1121 |
-
#: views/admin_tools_settings.php:
|
1122 |
-
msgid "For All
|
1123 |
-
msgstr ""
|
1124 |
-
|
1125 |
-
#: views/admin_tools_settings.php:24
|
1126 |
-
msgid "Registration Completion Links Will Appear Below:"
|
1127 |
-
msgstr "I link per completare la registrazione appariranno di seguito:"
|
1128 |
|
1129 |
-
#: views/admin_tools_settings.php:
|
1130 |
-
msgid "Send Registration Reminder Email
|
1131 |
-
msgstr ""
|
1132 |
|
1133 |
-
#: views/admin_tools_settings.php:
|
1134 |
msgid "Submit"
|
1135 |
msgstr "Invia"
|
1136 |
|
1137 |
-
#: views/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1138 |
msgid "Update"
|
1139 |
msgstr "Aggiorna"
|
1140 |
|
1141 |
-
#: views/forgot_password.php:
|
1142 |
msgid "Reset Password"
|
1143 |
-
msgstr "
|
1144 |
|
1145 |
-
#: views/loggedin.php:
|
1146 |
msgid "Logged in as"
|
1147 |
-
msgstr "
|
1148 |
|
1149 |
-
#: views/loggedin.php:
|
1150 |
msgid "Membership"
|
1151 |
msgstr "Iscrizione"
|
1152 |
|
1153 |
-
#: views/loggedin.php:
|
1154 |
msgid "Account Expiry"
|
1155 |
-
msgstr "Scadenza
|
1156 |
|
1157 |
-
#: views/loggedin.php:
|
1158 |
msgid "Logout"
|
1159 |
-
msgstr ""
|
1160 |
|
1161 |
-
#: views/login.php:
|
1162 |
msgid "Remember Me"
|
1163 |
msgstr "Ricordami"
|
1164 |
|
1165 |
-
#: views/login.php:
|
1166 |
msgid "Forgot Password"
|
1167 |
msgstr "Password dimenticata"
|
1168 |
|
1169 |
-
#: views/payments/admin_all_payment_transactions.php:
|
1170 |
msgid "All the payments/transactions of your members are recorded here."
|
1171 |
-
msgstr ""
|
1172 |
|
1173 |
-
#: views/payments/admin_all_payment_transactions.php:
|
1174 |
msgid "Search for a transaction by using email or name"
|
1175 |
-
msgstr ""
|
1176 |
|
1177 |
-
#: views/payments/
|
1178 |
-
msgid "Search"
|
1179 |
-
msgstr "Cerca"
|
1180 |
-
|
1181 |
-
#: views/payments/admin_create_payment_buttons.php:13
|
1182 |
msgid ""
|
1183 |
"You can create new payment button for your memberships using this interface."
|
1184 |
msgstr ""
|
|
|
|
|
1185 |
|
1186 |
#: views/payments/admin_create_payment_buttons.php:22
|
1187 |
msgid "Select Payment Button Type"
|
1188 |
-
msgstr ""
|
1189 |
|
1190 |
-
#: views/payments/admin_create_payment_buttons.php:
|
1191 |
msgid "Next"
|
1192 |
-
msgstr ""
|
1193 |
|
1194 |
#: views/payments/admin_edit_payment_buttons.php:12
|
1195 |
msgid "You can edit a payment button using this interface."
|
1196 |
msgstr ""
|
|
|
1197 |
|
1198 |
-
#: views/payments/
|
1199 |
-
msgid "Simple Membership::Payments"
|
1200 |
-
msgstr ""
|
1201 |
-
|
1202 |
-
#: views/payments/admin_payment_buttons.php:7
|
1203 |
msgid ""
|
1204 |
"All the membership buttons that you created in the plugin are displayed here."
|
1205 |
msgstr ""
|
|
|
|
|
1206 |
|
1207 |
-
#: views/payments/admin_payment_settings.php:
|
1208 |
msgid "PayPal Integration Settings"
|
1209 |
-
msgstr ""
|
1210 |
|
1211 |
-
#: views/payments/admin_payment_settings.php:
|
1212 |
msgid "Generate the \"Advanced Variables\" Code for your PayPal button"
|
1213 |
msgstr ""
|
|
|
1214 |
|
1215 |
-
#: views/payments/admin_payment_settings.php:
|
1216 |
msgid "Enter the Membership Level ID"
|
1217 |
-
msgstr ""
|
1218 |
|
1219 |
-
#: views/payments/admin_payment_settings.php:
|
1220 |
msgid "Generate Code"
|
1221 |
-
msgstr ""
|
1222 |
|
1223 |
-
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:
|
1224 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:192
|
1225 |
msgid "PayPal Buy Now Button Configuration"
|
1226 |
-
msgstr ""
|
1227 |
|
1228 |
-
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:
|
1229 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:209
|
1230 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1231 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
|
|
|
|
1232 |
msgid "Button Title"
|
1233 |
-
msgstr ""
|
1234 |
|
1235 |
-
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:
|
1236 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:227
|
|
|
|
|
1237 |
msgid "Payment Amount"
|
1238 |
-
msgstr ""
|
1239 |
|
1240 |
-
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:
|
1241 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:235
|
1242 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1243 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
|
|
|
|
1244 |
msgid "Payment Currency"
|
1245 |
-
msgstr "Valuta
|
1246 |
|
1247 |
-
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:
|
1248 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:274
|
1249 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1250 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
|
|
|
|
1251 |
msgid "Return URL"
|
1252 |
-
msgstr ""
|
1253 |
|
1254 |
-
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:
|
1255 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:282
|
1256 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1257 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1258 |
msgid "PayPal Email"
|
1259 |
-
msgstr "
|
1260 |
|
1261 |
-
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:
|
1262 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:290
|
1263 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1264 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1265 |
msgid "Button Image URL"
|
1266 |
-
msgstr ""
|
1267 |
|
1268 |
-
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:
|
1269 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:300
|
1270 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1271 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
|
|
|
|
1272 |
msgid "Save Payment Data"
|
1273 |
-
msgstr "Salva
|
1274 |
|
1275 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:201
|
1276 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
|
|
1277 |
msgid "Button ID"
|
1278 |
-
msgstr ""
|
1279 |
|
1280 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1281 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1282 |
msgid "PayPal Subscription Button Configuration"
|
1283 |
-
msgstr "
|
1284 |
|
1285 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1286 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1287 |
msgid "Billing Amount Each Cycle"
|
1288 |
-
msgstr ""
|
1289 |
|
1290 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1291 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1292 |
msgid "Billing Cycle"
|
1293 |
-
msgstr ""
|
1294 |
|
1295 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1296 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1297 |
msgid "Billing Cycle Count"
|
1298 |
-
msgstr ""
|
1299 |
|
1300 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1301 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1302 |
msgid "Re-attempt on Failure"
|
1303 |
-
msgstr ""
|
1304 |
|
1305 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1306 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1307 |
msgid ""
|
1308 |
"Trial Billing Details (Leave empty if you are not offering a trial period)"
|
1309 |
msgstr ""
|
|
|
|
|
1310 |
|
1311 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1312 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1313 |
msgid "Trial Billing Amount"
|
1314 |
-
msgstr ""
|
1315 |
|
1316 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1317 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1318 |
msgid "Trial Billing Period"
|
1319 |
-
msgstr ""
|
1320 |
|
1321 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1322 |
-
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:
|
1323 |
msgid "Optional Details"
|
1324 |
msgstr "Dettagli opzionali"
|
1325 |
|
1326 |
-
#: views/payments/payment-gateway/
|
1327 |
-
#: views/payments/payment-gateway/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1328 |
msgid "Buy Now"
|
1329 |
-
msgstr "
|
1330 |
|
1331 |
-
#: views/payments/payment-gateway/paypal_button_shortcode_view.php:
|
1332 |
-
#: views/payments/payment-gateway/paypal_button_shortcode_view.php:
|
1333 |
msgid "Subscribe Now"
|
1334 |
-
msgstr "
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Simple Membershp\n"
|
4 |
+
"POT-Creation-Date: 2016-12-09 10:34+0100\n"
|
5 |
+
"PO-Revision-Date: 2016-12-13 14:59+0100\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.11\n"
|
11 |
"X-Poedit-KeywordsList: __;_e\n"
|
12 |
"X-Poedit-Basepath: .\n"
|
13 |
"Last-Translator: \n"
|
15 |
"Language: it_IT\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: classes/class.simple-wp-membership.php:295
|
19 |
msgid "You are not logged in."
|
20 |
+
msgstr "Non hai effettuato l'accesso."
|
21 |
|
22 |
+
#: classes/class.simple-wp-membership.php:342
|
23 |
+
msgid ""
|
24 |
+
"You have the sandbox payment mode enabled in plugin settings. Make sure to "
|
25 |
+
"turn off the sandbox mode when you want to do live transactions."
|
26 |
msgstr ""
|
27 |
+
"Hai la modalità di pagamento sandbox abilitata nelle impostazioni del "
|
28 |
+
"plugin. Assicurati di disattivare la modalità sandbox quando vorrai eseguire "
|
29 |
+
"transazioni reali."
|
30 |
+
|
31 |
+
#: classes/class.simple-wp-membership.php:357
|
32 |
+
msgid "Simple WP Membership Protection"
|
33 |
+
msgstr "Protezione Plugin - Simple WP Membership"
|
34 |
|
35 |
+
#: classes/class.simple-wp-membership.php:369
|
36 |
msgid "Simple Membership Protection options"
|
37 |
+
msgstr "Opzioni di protezione - Simple WP Membership"
|
38 |
|
39 |
+
#: classes/class.simple-wp-membership.php:385
|
40 |
msgid "Do you want to protect this content?"
|
41 |
+
msgstr "Vuoi proteggere questo contenuto?"
|
42 |
|
43 |
+
#: classes/class.simple-wp-membership.php:390
|
44 |
msgid "Select the membership level that can access this content:"
|
45 |
+
msgstr "Seleziona il livello di iscrizione che può accedere a questo contenuto"
|
46 |
|
47 |
+
#: classes/class.simple-wp-membership.php:519
|
48 |
msgid "WP Membership"
|
49 |
+
msgstr "Membri WP"
|
50 |
|
51 |
+
#: classes/class.simple-wp-membership.php:520 classes/class.swpm-members.php:12
|
52 |
+
#: classes/class.swpm-members.php:404
|
53 |
msgid "Members"
|
54 |
+
msgstr "Membri"
|
55 |
|
56 |
+
#: classes/class.simple-wp-membership.php:521
|
57 |
#: classes/class.swpm-category-list.php:20
|
58 |
+
#: classes/class.swpm-membership-levels.php:12
|
59 |
+
#: classes/class.swpm-membership-levels.php:245
|
60 |
msgid "Membership Levels"
|
61 |
msgstr "Livelli di iscrizione"
|
62 |
|
63 |
+
#: classes/class.simple-wp-membership.php:522
|
64 |
msgid "Settings"
|
65 |
msgstr "Impostazioni"
|
66 |
|
67 |
+
#: classes/class.simple-wp-membership.php:523
|
68 |
msgid "Payments"
|
69 |
msgstr "Pagamenti"
|
70 |
|
71 |
+
#: classes/class.simple-wp-membership.php:524
|
72 |
msgid "Add-ons"
|
73 |
+
msgstr "Componenti aggiuntivi"
|
74 |
|
75 |
+
#: classes/class.swpm-access-control.php:47
|
76 |
+
#: classes/class.swpm-access-control.php:120
|
|
|
77 |
msgid "You need to login to view this content. "
|
78 |
+
msgstr "Devi eseguire l'accesso per visualizzare questo contenuto."
|
79 |
|
80 |
+
#: classes/class.swpm-access-control.php:56
|
81 |
+
#: classes/class.swpm-access-control.php:128
|
82 |
+
#: classes/class.swpm-access-control.php:209
|
83 |
+
msgid "Your account has expired. "
|
84 |
+
msgstr "Il tuo account è scaduto."
|
|
|
|
|
85 |
|
86 |
+
#: classes/class.swpm-access-control.php:66
|
87 |
+
#: classes/class.swpm-access-control.php:138
|
88 |
msgid "This content can only be viewed by members who joined on or before "
|
89 |
+
msgstr ""
|
90 |
+
"Questo contenuto può essere visualizzato solo dai membri che hanno aderito "
|
91 |
+
"entro il"
|
92 |
|
93 |
+
#: classes/class.swpm-access-control.php:79
|
94 |
+
#: classes/class.swpm-access-control.php:148
|
95 |
msgid "This content is not permitted for your membership level."
|
96 |
+
msgstr "Questo contenuto non è accessibile al tuo livello di iscrizione."
|
|
|
|
|
|
|
|
|
|
|
97 |
|
98 |
+
#: classes/class.swpm-access-control.php:201
|
|
|
99 |
msgid "You need to login to view the rest of the content. "
|
100 |
+
msgstr "Devi eseguire l'accesso per visualizzare il resto del contenuto."
|
101 |
+
|
102 |
+
#: classes/class.swpm-access-control.php:214
|
103 |
+
msgid " The rest of the content is not permitted for your membership level."
|
104 |
+
msgstr "Il resto del contenuto non è accessibile al tuo livello di iscrizione."
|
105 |
|
106 |
#: classes/class.swpm-admin-registration.php:54
|
107 |
msgid "Member record added successfully."
|
108 |
+
msgstr "Membro aggiunto correttamente."
|
109 |
|
110 |
#: classes/class.swpm-admin-registration.php:59
|
111 |
#: classes/class.swpm-admin-registration.php:81
|
113 |
#: classes/class.swpm-membership-level.php:43
|
114 |
#: classes/class.swpm-membership-level.php:62
|
115 |
msgid "Please correct the following:"
|
116 |
+
msgstr "Correggi le seguenti informazioni:"
|
117 |
|
118 |
#: classes/class.swpm-admin-registration.php:96
|
119 |
msgid "Your current password"
|
120 |
+
msgstr "La tua password attuale"
|
121 |
|
122 |
#: classes/class.swpm-ajax.php:14
|
123 |
msgid "Invalid Email Address"
|
124 |
+
msgstr "Indirizzo email non valido"
|
125 |
|
126 |
#: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
|
127 |
msgid "Aready taken"
|
128 |
+
msgstr "Già utilizzato"
|
129 |
|
130 |
#: classes/class.swpm-ajax.php:30
|
131 |
msgid "Name contains invalid character"
|
132 |
+
msgstr "Il nome contiene caratteri non validi"
|
133 |
|
134 |
#: classes/class.swpm-ajax.php:37
|
135 |
msgid "Available"
|
136 |
msgstr "Disponibile"
|
137 |
|
138 |
+
#: classes/class.swpm-auth.php:46
|
139 |
+
msgid ""
|
140 |
+
"Warning! Simple Membership plugin cannot process this login request to "
|
141 |
+
"prevent you from getting logged out of WP Admin accidentally."
|
142 |
+
msgstr ""
|
143 |
+
"Attenzione! Il plugin Simple Membership non può processare questa richiesta "
|
144 |
+
"di login per prevenire un logout accidentale dal pannello amministrazione di "
|
145 |
+
"Wordpress."
|
146 |
+
|
147 |
+
#: classes/class.swpm-auth.php:47
|
148 |
+
msgid ""
|
149 |
+
"You are logged into the site as an ADMIN user in this browser. First, logout "
|
150 |
+
"from WP Admin then you will be able to log in as a member."
|
151 |
+
msgstr ""
|
152 |
+
"In questo browser hai un accesso come utente ADMIN. Per prima cosa esegui il "
|
153 |
+
"logout dal pannello amministrazione di Wordpress, poi sarai in grado di "
|
154 |
+
"accedere come membro."
|
155 |
+
|
156 |
+
#: classes/class.swpm-auth.php:48
|
157 |
+
msgid ""
|
158 |
+
"Alternatively, you can use a different browser (where you are not logged-in "
|
159 |
+
"as ADMIN) to test the membership login."
|
160 |
+
msgstr ""
|
161 |
+
"In alternativa, puoi usare un altro browser (quando non hai un accesso come "
|
162 |
+
"ADMIN) per testare l'accesso dei membri."
|
163 |
+
|
164 |
+
#: classes/class.swpm-auth.php:49
|
165 |
+
msgid ""
|
166 |
+
"Your normal visitors or members will never see this message. This message is "
|
167 |
+
"ONLY for ADMIN user."
|
168 |
+
msgstr ""
|
169 |
+
"I tuoi normali visitatori o membri non vedranno mai questo messaggio. Questo "
|
170 |
+
"messaggio è visibile SOLO agli utenti amministratori."
|
171 |
+
|
172 |
+
#: classes/class.swpm-auth.php:64
|
173 |
msgid "User Not Found."
|
174 |
+
msgstr "Utente non trovato."
|
175 |
|
176 |
+
#: classes/class.swpm-auth.php:71
|
177 |
msgid "Password Empty or Invalid."
|
178 |
+
msgstr "Password vuota o non valida."
|
179 |
|
180 |
+
#: classes/class.swpm-auth.php:97
|
181 |
msgid "Account is inactive."
|
182 |
+
msgstr "L'account è inattivo."
|
|
|
|
|
|
|
|
|
183 |
|
184 |
+
#: classes/class.swpm-auth.php:100 classes/class.swpm-auth.php:121
|
185 |
msgid "Account has expired."
|
186 |
+
msgstr "L'account è scaduto."
|
187 |
|
188 |
+
#: classes/class.swpm-auth.php:103
|
189 |
+
msgid "Account is pending."
|
190 |
+
msgstr "L'account è in attesa."
|
191 |
+
|
192 |
+
#: classes/class.swpm-auth.php:129
|
193 |
msgid "You are logged in as:"
|
194 |
+
msgstr "Hai eseguito l'accesso come:"
|
195 |
|
196 |
+
#: classes/class.swpm-auth.php:175
|
197 |
msgid "Logged Out Successfully."
|
198 |
+
msgstr "Logout eseguito correttamente."
|
199 |
|
200 |
+
#: classes/class.swpm-auth.php:227
|
201 |
msgid "Session Expired."
|
202 |
msgstr "Sessione scaduta."
|
203 |
|
204 |
+
#: classes/class.swpm-auth.php:236
|
205 |
msgid "Invalid Username"
|
206 |
+
msgstr "Username non valido"
|
207 |
|
208 |
+
#: classes/class.swpm-auth.php:244
|
209 |
msgid "Please login again."
|
210 |
+
msgstr "Per favore accedi nuovamente."
|
211 |
|
212 |
+
#: classes/class.swpm-category-list.php:19 classes/class.swpm-members.php:25
|
213 |
+
#: classes/class.swpm-membership-levels.php:11
|
214 |
+
#: classes/class.swpm-membership-levels.php:21
|
215 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:85
|
216 |
#: views/add.php:30 views/admin_member_form_common_part.php:2 views/edit.php:53
|
217 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:34
|
218 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:217
|
219 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:35
|
220 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:307
|
221 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:47
|
222 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:259
|
223 |
msgid "Membership Level"
|
224 |
+
msgstr "Livello di iscrizione"
|
225 |
|
226 |
+
#: classes/class.swpm-category-list.php:33
|
227 |
+
msgid "Category ID"
|
228 |
+
msgstr "ID categoria"
|
|
|
229 |
|
230 |
#: classes/class.swpm-category-list.php:34
|
231 |
+
msgid "Category Name"
|
232 |
+
msgstr "Nome categoria"
|
233 |
|
234 |
#: classes/class.swpm-category-list.php:35
|
235 |
+
msgid "Category Type (Taxonomy)"
|
236 |
+
msgstr "Tipo categoria (Taxonomy)"
|
237 |
+
|
238 |
+
#: classes/class.swpm-category-list.php:36
|
239 |
msgid "Description"
|
240 |
msgstr "Descrizione"
|
241 |
|
242 |
+
#: classes/class.swpm-category-list.php:37
|
243 |
msgid "Count"
|
244 |
+
msgstr "Contatore"
|
245 |
|
246 |
+
#: classes/class.swpm-category-list.php:89
|
247 |
msgid "Category protection updated!"
|
248 |
+
msgstr "Protezione categoria aggiornata!"
|
249 |
|
250 |
+
#: classes/class.swpm-comment-form-related.php:15
|
251 |
+
msgid "Please login to comment."
|
252 |
+
msgstr "Esegui l'accesso per commentare"
|
253 |
+
|
254 |
+
#: classes/class.swpm-comment-form-related.php:40
|
255 |
+
msgid "Please Login to Comment."
|
256 |
+
msgstr "Esegui l'accesso per Commentare"
|
257 |
+
|
258 |
+
#: classes/class.swpm-comment-form-related.php:79
|
259 |
+
msgid "Comments not allowed by a non-member."
|
260 |
+
msgstr "Commenti consentiti solo agli utenti membri."
|
261 |
+
|
262 |
+
#: classes/class.swpm-form.php:29
|
263 |
msgid ""
|
264 |
"Wordpress account exists with given username. But given email doesn't match."
|
265 |
msgstr ""
|
266 |
+
"Un account Wordpress con questo username esiste. Ma l'email utilizzata "
|
267 |
+
"non corrisponde."
|
268 |
|
269 |
+
#: classes/class.swpm-form.php:34
|
270 |
msgid ""
|
271 |
"Wordpress account exists with given email. But given username doesn't match."
|
272 |
msgstr ""
|
273 |
+
"Un account Wordpress con questo indirizzo email esiste. Ma l'username "
|
274 |
+
"utilizzato non corrisponde."
|
275 |
|
276 |
+
#: classes/class.swpm-form.php:43
|
277 |
msgid "Username is required"
|
278 |
+
msgstr "Username richiesto"
|
279 |
|
280 |
+
#: classes/class.swpm-form.php:47
|
281 |
msgid "Username contains invalid character"
|
282 |
+
msgstr "L'Username contiene caratteri non validi"
|
283 |
|
284 |
+
#: classes/class.swpm-form.php:55
|
285 |
msgid "Username already exists."
|
286 |
+
msgstr "Username già utilizzato."
|
287 |
|
288 |
+
#: classes/class.swpm-form.php:78
|
289 |
msgid "Password is required"
|
290 |
+
msgstr "La password è richiesta"
|
291 |
|
292 |
+
#: classes/class.swpm-form.php:85
|
293 |
msgid "Password mismatch"
|
294 |
+
msgstr "La password non corrisponde"
|
295 |
|
296 |
+
#: classes/class.swpm-form.php:96
|
297 |
msgid "Email is required"
|
298 |
+
msgstr "Email richiesta"
|
299 |
|
300 |
+
#: classes/class.swpm-form.php:100
|
301 |
msgid "Email is invalid"
|
302 |
+
msgstr "Email non valida"
|
303 |
|
304 |
+
#: classes/class.swpm-form.php:116
|
305 |
msgid "Email is already used."
|
306 |
+
msgstr "Email già utilizzata."
|
307 |
|
308 |
+
#: classes/class.swpm-form.php:173
|
309 |
msgid "Member since field is invalid"
|
310 |
+
msgstr "Il campo Membro dal non è valido"
|
311 |
|
312 |
+
#: classes/class.swpm-form.php:184
|
313 |
msgid "Access starts field is invalid"
|
314 |
+
msgstr "Il campo Inizio accesso non è valido"
|
315 |
|
316 |
+
#: classes/class.swpm-form.php:194
|
317 |
msgid "Gender field is invalid"
|
318 |
+
msgstr "Il campo Sesso non è valido"
|
319 |
|
320 |
+
#: classes/class.swpm-form.php:205
|
321 |
msgid "Account state field is invalid"
|
322 |
+
msgstr "Il campo Stato account non è valido"
|
323 |
|
324 |
+
#: classes/class.swpm-form.php:212
|
325 |
msgid "Invalid membership level"
|
326 |
+
msgstr "Livello di iscrizione non valido"
|
327 |
+
|
328 |
+
#: classes/class.swpm-front-registration.php:47
|
329 |
+
msgid ""
|
330 |
+
"Free membership is disabled on this site. Please make a payment from the "
|
331 |
msgstr ""
|
332 |
+
"Il livello di iscrizione gratuito è disabilitato su questo sito. Si prega di "
|
333 |
+
"effettuare un pagamento dal"
|
334 |
|
335 |
+
#: classes/class.swpm-front-registration.php:49
|
336 |
+
msgid ""
|
337 |
+
"You will receive a unique link via email after the payment. You will be able "
|
338 |
+
"to use that link to complete the premium membership registration."
|
339 |
msgstr ""
|
340 |
+
"Riceverai un link unico via email dopo il pagamento. Potrai utilizzare "
|
341 |
+
"questo link per completare la registrazione."
|
342 |
|
343 |
+
#: classes/class.swpm-front-registration.php:77
|
344 |
+
msgid "Security check: captcha validation failed."
|
345 |
+
msgstr "Controllo sicurezza: la convalida del captcha non è riuscita"
|
346 |
+
|
347 |
+
#: classes/class.swpm-front-registration.php:86
|
348 |
msgid "Registration Successful. "
|
349 |
+
msgstr "Registrazione eseguita correttamente."
|
350 |
|
351 |
+
#: classes/class.swpm-front-registration.php:86
|
352 |
+
#: classes/class.swpm-utils-misc.php:218 classes/class.swpm-utils-misc.php:230
|
353 |
msgid "Please"
|
354 |
+
msgstr "Si prega"
|
355 |
|
356 |
+
#: classes/class.swpm-front-registration.php:86
|
357 |
+
#: classes/class.swpm-utils-misc.php:218 views/login.php:27
|
358 |
msgid "Login"
|
359 |
+
msgstr "Accedi"
|
360 |
|
361 |
+
#: classes/class.swpm-front-registration.php:99
|
362 |
+
#: classes/class.swpm-front-registration.php:186
|
363 |
msgid "Please correct the following"
|
364 |
+
msgstr "Si prega di correggere le seguenti informazioni"
|
365 |
|
366 |
+
#: classes/class.swpm-front-registration.php:130
|
367 |
msgid "Membership Level Couldn't be found."
|
368 |
+
msgstr "Il livello di iscrizione non può essere trovato."
|
369 |
|
370 |
+
#: classes/class.swpm-front-registration.php:169
|
371 |
msgid "Profile updated successfully."
|
372 |
+
msgstr "Profilo aggiornato correttamente."
|
373 |
|
374 |
+
#: classes/class.swpm-front-registration.php:177
|
375 |
msgid ""
|
376 |
"Profile updated successfully. You will need to re-login since you changed "
|
377 |
"your password."
|
378 |
msgstr ""
|
379 |
+
"Profilo aggiornato correttamente. Devi eseguire nuovamente l'accesso "
|
380 |
+
"perche la tua password è cambiata."
|
381 |
|
382 |
+
#: classes/class.swpm-front-registration.php:196
|
383 |
msgid "Email address not valid."
|
384 |
+
msgstr "Indirizzo email non valido."
|
385 |
|
386 |
+
#: classes/class.swpm-front-registration.php:207
|
387 |
msgid "No user found with that email address."
|
388 |
+
msgstr "Nessun utente trovato con questo indirizzo email."
|
389 |
|
390 |
+
#: classes/class.swpm-front-registration.php:208
|
391 |
+
#: classes/class.swpm-front-registration.php:234
|
392 |
msgid "Email Address: "
|
393 |
+
msgstr "Indirizzo email:"
|
394 |
|
395 |
+
#: classes/class.swpm-front-registration.php:233
|
396 |
msgid "New password has been sent to your email address."
|
397 |
+
msgstr "La nuova password è stata inviata al tuo indirizzo email."
|
|
|
398 |
|
399 |
+
#: classes/class.swpm-init-time-tasks.php:111
|
400 |
msgid "Sorry, Nonce verification failed."
|
401 |
+
msgstr "Ci dispiace, la verifica è fallita."
|
402 |
|
403 |
+
#: classes/class.swpm-init-time-tasks.php:118
|
404 |
msgid "Sorry, Password didn't match."
|
405 |
+
msgstr "Le password non coincidono."
|
406 |
|
407 |
#: classes/class.swpm-level-form.php:47
|
408 |
msgid "Date format is not valid."
|
409 |
+
msgstr "Il formato data non è valido."
|
410 |
|
411 |
#: classes/class.swpm-level-form.php:55
|
412 |
msgid "Access duration must be > 0."
|
413 |
+
msgstr "La durata dell'accesso deve essere > di 0."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
414 |
|
415 |
+
#: classes/class.swpm-members.php:11
|
416 |
msgid "Member"
|
417 |
+
msgstr "Membri"
|
418 |
+
|
419 |
+
#: classes/class.swpm-members.php:20
|
420 |
+
#: classes/class.swpm-membership-levels.php:20
|
421 |
+
msgid "ID"
|
422 |
+
msgstr "ID"
|
423 |
|
424 |
+
#: classes/class.swpm-members.php:21 views/add.php:6 views/admin_add.php:10
|
425 |
+
#: views/admin_edit.php:13 views/edit.php:5 views/login.php:11
|
426 |
msgid "Username"
|
427 |
+
msgstr "Username"
|
428 |
|
429 |
+
#: classes/class.swpm-members.php:22
|
430 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:78
|
431 |
#: views/add.php:22 views/admin_member_form_common_part.php:15
|
432 |
#: views/edit.php:21
|
433 |
msgid "First Name"
|
434 |
msgstr "Nome"
|
435 |
|
436 |
+
#: classes/class.swpm-members.php:23
|
437 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:79
|
438 |
#: views/add.php:26 views/admin_member_form_common_part.php:19
|
439 |
#: views/edit.php:25
|
440 |
msgid "Last Name"
|
441 |
msgstr "Cognome"
|
442 |
|
443 |
+
#: classes/class.swpm-members.php:24 views/add.php:10 views/edit.php:9
|
444 |
msgid "Email"
|
445 |
+
msgstr "Email"
|
446 |
|
447 |
+
#: classes/class.swpm-members.php:26 views/admin_member_form_common_part.php:11
|
448 |
msgid "Access Starts"
|
449 |
+
msgstr "Inizio accesso"
|
450 |
|
451 |
+
#: classes/class.swpm-members.php:27
|
452 |
msgid "Account State"
|
453 |
+
msgstr "Stato account"
|
454 |
|
455 |
+
#: classes/class.swpm-members.php:43
|
456 |
+
#: classes/class.swpm-membership-levels.php:36
|
457 |
+
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:94
|
458 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:102
|
459 |
msgid "Delete"
|
460 |
+
msgstr "Elimina"
|
461 |
|
462 |
+
#: classes/class.swpm-members.php:44
|
463 |
msgid "Set Status to Active"
|
464 |
+
msgstr "Imposta lo stato Attivo"
|
465 |
|
466 |
+
#: classes/class.swpm-members.php:45
|
467 |
+
msgid "Set Status to Active and Notify"
|
468 |
+
msgstr "Imposta lo stato Attivo e Notifica l'utente"
|
469 |
+
|
470 |
+
#: classes/class.swpm-members.php:46
|
471 |
msgid "Set Status to Inactive"
|
472 |
+
msgstr "Imposta lo stato Inattivo"
|
473 |
|
474 |
+
#: classes/class.swpm-members.php:47
|
475 |
msgid "Set Status to Pending"
|
476 |
+
msgstr "Imposta lo stato In attesa"
|
477 |
|
478 |
+
#: classes/class.swpm-members.php:48
|
479 |
msgid "Set Status to Expired"
|
480 |
+
msgstr "Imposta lo stato Scaduto"
|
481 |
|
482 |
+
#: classes/class.swpm-members.php:68
|
483 |
+
msgid "incomplete"
|
484 |
+
msgstr "incompleto"
|
485 |
+
|
486 |
+
#: classes/class.swpm-members.php:183
|
487 |
+
msgid "No member found."
|
488 |
+
msgstr "Nessun membro trovato."
|
489 |
+
|
490 |
+
#: classes/class.swpm-members.php:399
|
491 |
+
msgid "Simple WP Membership::Members"
|
492 |
+
msgstr "Simple WP Membership::Membri"
|
493 |
+
|
494 |
+
#: classes/class.swpm-members.php:400 views/admin_members_list.php:40
|
495 |
+
msgid "Add New"
|
496 |
+
msgstr "Aggiungi Nuovo"
|
497 |
+
|
498 |
+
#: classes/class.swpm-members.php:405 views/admin_add.php:5
|
499 |
+
msgid "Add Member"
|
500 |
+
msgstr "Aggiungi Membro"
|
501 |
|
502 |
#: classes/class.swpm-membership-level.php:38
|
503 |
msgid "Membership Level Creation Successful."
|
504 |
+
msgstr "Livello di iscrizione creato correttamente."
|
505 |
|
506 |
#: classes/class.swpm-membership-level.php:57
|
507 |
+
msgid "Membership Level Updated Successfully."
|
508 |
+
msgstr "Livello di iscrizione aggiornato correttamente."
|
509 |
|
510 |
+
#: classes/class.swpm-membership-levels.php:22
|
511 |
msgid "Role"
|
512 |
msgstr "Ruolo"
|
513 |
|
514 |
+
#: classes/class.swpm-membership-levels.php:23
|
515 |
msgid "Access Valid For/Until"
|
516 |
+
msgstr "Accesso valido per/fino a"
|
517 |
|
518 |
+
#: classes/class.swpm-membership-levels.php:203 views/admin_members_list.php:27
|
519 |
+
#: views/payments/admin_all_payment_transactions.php:16
|
520 |
+
msgid "Search"
|
521 |
+
msgstr "Cerca"
|
522 |
|
523 |
+
#: classes/class.swpm-membership-levels.php:241
|
524 |
+
msgid "Simple WP Membership::Membership Levels"
|
525 |
+
msgstr "Simple WP Membership::Livelli di iscrizione"
|
526 |
|
527 |
+
#: classes/class.swpm-membership-levels.php:246
|
528 |
+
msgid "Add Level"
|
529 |
+
msgstr "Aggiungi Livello"
|
530 |
|
531 |
+
#: classes/class.swpm-membership-levels.php:247
|
532 |
+
msgid "Manage Content Production"
|
533 |
+
msgstr "Gestisci contenuto protetto"
|
534 |
|
535 |
+
#: classes/class.swpm-membership-levels.php:248
|
536 |
+
msgid "Category Protection"
|
537 |
+
msgstr "Protezione categorie"
|
538 |
+
|
539 |
+
#: classes/class.swpm-settings.php:27 classes/class.swpm-settings.php:55
|
540 |
msgid "General Settings"
|
541 |
msgstr "Impostazioni generali"
|
542 |
|
543 |
+
#: classes/class.swpm-settings.php:28
|
544 |
msgid "Payment Settings"
|
545 |
+
msgstr "Impostazioni pagamenti"
|
546 |
|
547 |
+
#: classes/class.swpm-settings.php:29
|
548 |
msgid "Email Settings"
|
549 |
+
msgstr "Impostazioni Email"
|
550 |
|
551 |
+
#: classes/class.swpm-settings.php:30
|
552 |
msgid "Tools"
|
553 |
msgstr "Strumenti"
|
554 |
|
555 |
+
#: classes/class.swpm-settings.php:31 classes/class.swpm-settings.php:178
|
556 |
msgid "Advanced Settings"
|
557 |
msgstr "Impostazioni avanzate"
|
558 |
|
559 |
+
#: classes/class.swpm-settings.php:32
|
560 |
msgid "Addons Settings"
|
561 |
+
msgstr "Impostazioni componenti aggiuntivi"
|
562 |
|
563 |
+
#: classes/class.swpm-settings.php:54
|
564 |
msgid "Plugin Documentation"
|
565 |
msgstr "Documentazione plugin"
|
566 |
|
567 |
+
#: classes/class.swpm-settings.php:56
|
568 |
msgid "Enable Free Membership"
|
569 |
+
msgstr "Abilita l'iscrizione gratuita"
|
570 |
|
571 |
+
#: classes/class.swpm-settings.php:57
|
572 |
msgid ""
|
573 |
"Enable/disable registration for free membership level. When you enable this "
|
574 |
"option, make sure to specify a free membership level ID in the field below."
|
575 |
msgstr ""
|
576 |
+
"Abilita/Disabilita la registrazione per il livello di iscrizione gratuito. "
|
577 |
+
"Quando abiliti questa opzione , assicurati di specificare un ID per il "
|
578 |
+
"livello di iscrizione gratuito nel campo qui sotto."
|
579 |
|
580 |
+
#: classes/class.swpm-settings.php:58
|
581 |
msgid "Free Membership Level ID"
|
582 |
+
msgstr "ID Livello di iscrizione gratuito"
|
583 |
|
584 |
+
#: classes/class.swpm-settings.php:59
|
585 |
msgid "Assign free membership level ID"
|
586 |
+
msgstr "Assegna un ID livello iscrizione gratuita"
|
587 |
|
588 |
+
#: classes/class.swpm-settings.php:60
|
589 |
msgid "Enable More Tag Protection"
|
590 |
+
msgstr "Abilita la protezione per il tag \"Leggi tutto\""
|
591 |
|
592 |
+
#: classes/class.swpm-settings.php:61
|
593 |
msgid ""
|
594 |
"Enables or disables \"more\" tag protection in the posts and pages. Anything "
|
595 |
"after the More tag is protected. Anything before the more tag is teaser "
|
596 |
"content."
|
597 |
msgstr ""
|
598 |
+
"Attiva o disattiva la protezione del tag \"Leggi tutto\" negli articoli o "
|
599 |
+
"nelle pagine. Il contenuto dopo il tag \"Leggi tutto\" sarà protetto. Il "
|
600 |
+
"contenuto prima del tag \"Leggi tutto\" sarà visibile a tutti."
|
601 |
|
602 |
+
#: classes/class.swpm-settings.php:62
|
603 |
msgid "Hide Adminbar"
|
604 |
+
msgstr "Nascondi la barra di amministrazione"
|
605 |
|
606 |
+
#: classes/class.swpm-settings.php:63
|
607 |
msgid ""
|
608 |
"WordPress shows an admin toolbar to the logged in users of the site. Check "
|
609 |
+
"this if you want to hide that admin toolbar in the frontend of your site."
|
610 |
msgstr ""
|
611 |
+
"Wordpress visualizza una barra di amministrazione agli utenti che hanno "
|
612 |
+
"eseguito l'accesso sul sito. Abilita questa opzione se vuoi nascondere "
|
613 |
+
"la barra di amministrazione nel frontend del tuo sito."
|
614 |
|
615 |
+
#: classes/class.swpm-settings.php:64
|
616 |
+
msgid "Show Adminbar to Admin"
|
617 |
+
msgstr "Visualizza la barra di amministrazione agli admin"
|
618 |
+
|
619 |
+
#: classes/class.swpm-settings.php:65
|
620 |
+
msgid ""
|
621 |
+
"Use this option if you want to show the admin toolbar to admin users only. "
|
622 |
+
"The admin toolbar will be hidden for all other users."
|
623 |
msgstr ""
|
624 |
+
"Utilizza questa opzione se vuoi far visualizzare la barra di amministrazione "
|
625 |
+
"solo agli amministratori. La barra di amministrazione sarà nascosta per "
|
626 |
+
"tutti gli altri utenti."
|
627 |
|
628 |
+
#: classes/class.swpm-settings.php:67
|
629 |
+
msgid "Default Account Status"
|
630 |
+
msgstr "Stato predefinito account"
|
631 |
+
|
632 |
+
#: classes/class.swpm-settings.php:70
|
633 |
msgid ""
|
634 |
"Select the default account status for newly registered users. If you want to "
|
635 |
"manually approve the members then you can set the status to \"Pending\"."
|
636 |
msgstr ""
|
637 |
+
"Seleziona lo stato account predefinito per i nuovi utenti registrati. Se si "
|
638 |
+
"desidera approvare manualmente i membri è possibile impostare lo stato \"In "
|
639 |
+
"attesa\"."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
640 |
|
641 |
+
#: classes/class.swpm-settings.php:72
|
642 |
+
msgid "Members Must be Logged in to Comment"
|
643 |
+
msgstr "I membri devono eseguire l'accesso per commentare"
|
644 |
|
645 |
+
#: classes/class.swpm-settings.php:73
|
646 |
+
msgid ""
|
647 |
+
"Enable this option if you only want the members of the site to be able to "
|
648 |
+
"post a comment."
|
649 |
msgstr ""
|
650 |
+
"Abilita questa opzione per permettere solo agli utenti Membri di essere in "
|
651 |
+
"grado di commentare."
|
652 |
|
653 |
+
#: classes/class.swpm-settings.php:82
|
654 |
msgid "Pages Settings"
|
655 |
+
msgstr "Impostazioni pagine"
|
656 |
|
657 |
+
#: classes/class.swpm-settings.php:83
|
658 |
msgid "Login Page URL"
|
659 |
+
msgstr "URL pagina Login"
|
660 |
|
661 |
+
#: classes/class.swpm-settings.php:85
|
662 |
msgid "Registration Page URL"
|
663 |
+
msgstr "URL pagina Registrazione"
|
664 |
|
665 |
+
#: classes/class.swpm-settings.php:87
|
666 |
msgid "Join Us Page URL"
|
667 |
+
msgstr "URL pagina Unisciti a noi"
|
668 |
|
669 |
+
#: classes/class.swpm-settings.php:89
|
670 |
msgid "Edit Profile Page URL"
|
671 |
+
msgstr "URL pagina Modifica profilo"
|
672 |
|
673 |
+
#: classes/class.swpm-settings.php:91
|
674 |
msgid "Password Reset Page URL"
|
675 |
+
msgstr "URL pagina Reimposta password"
|
676 |
|
677 |
+
#: classes/class.swpm-settings.php:94
|
678 |
msgid "Test & Debug Settings"
|
679 |
+
msgstr "Impostazioni Test & Debug"
|
680 |
|
681 |
+
#: classes/class.swpm-settings.php:96
|
682 |
msgid "Check this option to enable debug logging."
|
683 |
+
msgstr "Abilita questa opzione per abilitare il log di debug."
|
684 |
|
685 |
+
#: classes/class.swpm-settings.php:101
|
686 |
msgid "Enable Sandbox Testing"
|
687 |
+
msgstr "Abilita i test \"Sandbox\""
|
688 |
|
689 |
+
#: classes/class.swpm-settings.php:102
|
690 |
msgid "Enable this option if you want to do sandbox payment testing."
|
691 |
msgstr ""
|
692 |
+
"Abilitazione questa opzione se vuoi eseguire i pagamenti nella modalità "
|
693 |
+
"\"Sandbox\"."
|
694 |
|
695 |
+
#: classes/class.swpm-settings.php:115 classes/class.swpm-settings.php:173
|
696 |
+
#: classes/class.swpm-settings.php:290
|
697 |
msgid "Settings updated!"
|
698 |
msgstr "Impostazioni aggiornate!"
|
699 |
|
700 |
+
#: classes/class.swpm-settings.php:120
|
701 |
msgid "Email Misc. Settings"
|
702 |
+
msgstr "Impostazioni Email varie"
|
703 |
|
704 |
+
#: classes/class.swpm-settings.php:121
|
705 |
msgid "From Email Address"
|
706 |
+
msgstr "Indirizzo Email mittente"
|
707 |
|
708 |
+
#: classes/class.swpm-settings.php:125
|
709 |
msgid "Email Settings (Prompt to Complete Registration )"
|
710 |
+
msgstr "Impostazioni Email (Completa la registrazione)"
|
711 |
|
712 |
+
#: classes/class.swpm-settings.php:126 classes/class.swpm-settings.php:135
|
713 |
+
#: classes/class.swpm-settings.php:148 classes/class.swpm-settings.php:153
|
714 |
+
#: classes/class.swpm-settings.php:158
|
715 |
msgid "Email Subject"
|
716 |
+
msgstr "Oggetto Email"
|
717 |
|
718 |
+
#: classes/class.swpm-settings.php:128 classes/class.swpm-settings.php:137
|
719 |
+
#: classes/class.swpm-settings.php:149 classes/class.swpm-settings.php:154
|
720 |
+
#: classes/class.swpm-settings.php:159
|
721 |
msgid "Email Body"
|
722 |
+
msgstr "Contenuto Email"
|
723 |
|
724 |
+
#: classes/class.swpm-settings.php:132
|
725 |
+
msgid ""
|
726 |
+
"Enter the email address where you want the admin notification email to be "
|
727 |
+
"sent to."
|
728 |
+
msgstr ""
|
729 |
+
"Inserisci gli indirizzi email dove si desiderano ricevere le notifiche admin"
|
730 |
+
|
731 |
+
#: classes/class.swpm-settings.php:133
|
732 |
+
msgid ""
|
733 |
+
" You can put multiple email addresses separated by comma (,) in the above "
|
734 |
+
"field to send the notification to multiple email addresses."
|
735 |
msgstr ""
|
736 |
+
" Puoi inserire nel campo qui sotto più indirizzi email separandoli da una "
|
737 |
+
"virgola (,) per inviare le notifiche ad indirizzi multipli."
|
738 |
+
|
739 |
+
#: classes/class.swpm-settings.php:134
|
740 |
+
msgid "Email Settings (Registration Complete)"
|
741 |
+
msgstr "Impostazioni Email (Registrazione completata)"
|
742 |
|
743 |
+
#: classes/class.swpm-settings.php:139
|
744 |
msgid "Send Notification to Admin"
|
745 |
+
msgstr "Invia notifica agli admin"
|
746 |
|
747 |
+
#: classes/class.swpm-settings.php:140
|
748 |
msgid ""
|
749 |
"Enable this option if you want the admin to receive a notification when a "
|
750 |
"member registers."
|
751 |
msgstr ""
|
752 |
+
"Abilita questa opzione se vuoi che gli admin ricevano una notifica quando un "
|
753 |
+
"membro si registra."
|
754 |
|
755 |
+
#: classes/class.swpm-settings.php:141
|
756 |
msgid "Admin Email Address"
|
757 |
+
msgstr "Indirizzi Email admin"
|
758 |
+
|
759 |
+
#: classes/class.swpm-settings.php:143
|
760 |
+
msgid "Send Email to Member When Added via Admin Dashboard"
|
761 |
+
msgstr "Invia una email al Membro aggiunto attraverso la dashboard admin"
|
762 |
+
|
763 |
+
#: classes/class.swpm-settings.php:147
|
764 |
+
msgid "Email Settings (Password Reset)"
|
765 |
+
msgstr "Impostazioni Email (Reimpostazione password)"
|
766 |
+
|
767 |
+
#: classes/class.swpm-settings.php:152
|
768 |
+
msgid " Email Settings (Account Upgrade Notification)"
|
769 |
+
msgstr " Impostazioni Email (Notifica aggiornamento account)"
|
770 |
+
|
771 |
+
#: classes/class.swpm-settings.php:157
|
772 |
+
msgid " Email Settings (Bulk Account Activate Notification)"
|
773 |
+
msgstr " Impostazioni Email (Notifica di attivazione Account Bulk)"
|
774 |
+
|
775 |
+
#: classes/class.swpm-settings.php:180
|
776 |
+
msgid "Enable Expired Account Login"
|
777 |
+
msgstr "Abilita accesso per account scaduti"
|
778 |
+
|
779 |
+
#: classes/class.swpm-settings.php:181
|
780 |
+
msgid ""
|
781 |
+
"When enabled, expired members will be able to log into the system but won't "
|
782 |
+
"be able to view any protected content. This allows them to easily renew "
|
783 |
+
"their account by making another payment."
|
784 |
msgstr ""
|
785 |
+
"Quando abilitato, i membri con account scaduti potranno eseguire l'"
|
786 |
+
"accesso ma non saranno in grado di visualizzare il contenuto protetto. "
|
787 |
+
"Questo permette agli utenti di rinnovare il proprio account eseguendo un "
|
788 |
+
"nuovo pagamento."
|
789 |
|
790 |
+
#: classes/class.swpm-settings.php:183
|
791 |
+
msgid "Membership Renewal URL"
|
792 |
+
msgstr "URL Rinnovo Iscrizione"
|
793 |
+
|
794 |
+
#: classes/class.swpm-settings.php:184
|
795 |
msgid ""
|
796 |
+
"You can create a renewal page for your site. Read <a href=\"https://simple-"
|
797 |
+
"membership-plugin.com/creating-membership-renewal-button/\" target=\"_blank"
|
798 |
+
"\">this documentation</a> to learn how to create a renewal page."
|
799 |
msgstr ""
|
800 |
+
"Puoi creare una pagina per il rinnovo dell'iscrizione sul tuo sito. "
|
801 |
+
"Leggi <a href=\"https://simple-membership-plugin.com/creating-membership-"
|
802 |
+
"renewal-button/\" target=\"_blank\">questa documentazione</a> per imparare a "
|
803 |
+
"creare una pagina di rinnovo iscrizione."
|
804 |
|
805 |
+
#: classes/class.swpm-settings.php:186
|
806 |
+
msgid "Allow Account Deletion"
|
807 |
+
msgstr "Abilitazione cancellazione account"
|
808 |
+
|
809 |
+
#: classes/class.swpm-settings.php:187
|
810 |
+
msgid "Allow users to delete their accounts."
|
811 |
+
msgstr "Abilita gli utenti a cancellare il proprio account."
|
812 |
+
|
813 |
+
#: classes/class.swpm-settings.php:189
|
814 |
+
msgid "Use WordPress Timezone"
|
815 |
+
msgstr "Utilizza il Fuso Orario di Wordpress"
|
816 |
+
|
817 |
+
#: classes/class.swpm-settings.php:190
|
818 |
+
msgid ""
|
819 |
+
"Use this option if you want to use the timezone value specified in your "
|
820 |
+
"WordPress General Settings interface."
|
821 |
msgstr ""
|
822 |
+
"Utilizza questa opzione per utilizzare il valore del \"Fuso Orario\" "
|
823 |
+
"specificato nella pagina \"Impostazioni Generali\" di Wordpress."
|
824 |
|
825 |
+
#: classes/class.swpm-settings.php:192
|
826 |
+
msgid "Auto Delete Pending Account"
|
827 |
+
msgstr "Cancellazione automatica degli account \"In attesa\""
|
828 |
+
|
829 |
+
#: classes/class.swpm-settings.php:195
|
830 |
+
msgid "Select how long you want to keep \"pending\" account."
|
831 |
+
msgstr "Seleziona per quanto vuoi mantenere gli account \"In attesa\""
|
832 |
+
|
833 |
+
#: classes/class.swpm-settings.php:197
|
834 |
+
msgid "Admin Dashboard Access Permission"
|
835 |
+
msgstr "Permessi di accesso della dashboard admin"
|
836 |
+
|
837 |
+
#: classes/class.swpm-settings.php:200
|
838 |
+
msgid ""
|
839 |
+
"SWPM admin dashboard is accessible to admin users only (just like any other "
|
840 |
+
"plugin). You can allow users with other WP user role to access the SWPM "
|
841 |
+
"admin dashboard by selecting a value here."
|
842 |
msgstr ""
|
843 |
+
"La dashboard admin SWPM è accessibile solo agli amministratori (come tutti "
|
844 |
+
"gli altri plugin). Puoi abilitare gli utenti WP con altri ruoli ad accedere "
|
845 |
+
"alla dashboard admin SWPM selezionando un valore qui."
|
846 |
|
847 |
+
#: classes/class.swpm-settings.php:295
|
848 |
+
msgid "General Plugin Settings."
|
849 |
+
msgstr "Impostazioni generali Plugin."
|
850 |
+
|
851 |
+
#: classes/class.swpm-settings.php:299
|
852 |
+
msgid "Page Setup and URL Related settings."
|
853 |
+
msgstr "Impostazioni URL di Setup"
|
854 |
+
|
855 |
+
#: classes/class.swpm-settings.php:303
|
856 |
+
msgid "Testing and Debug Related Settings."
|
857 |
+
msgstr "Impostazioni relative ai Test e al Debug"
|
858 |
+
|
859 |
+
#: classes/class.swpm-settings.php:307
|
860 |
+
msgid ""
|
861 |
+
"This email will be sent to your users when they complete the registration "
|
862 |
+
"and become a member."
|
863 |
msgstr ""
|
864 |
+
"Questa email sarà inviata ai tuoi utenti quando completeranno la "
|
865 |
+
"registrazione e diventeranno membri."
|
866 |
|
867 |
+
#: classes/class.swpm-settings.php:311
|
868 |
+
msgid ""
|
869 |
+
"This email will be sent to your users when they use the password reset "
|
870 |
+
"functionality."
|
871 |
msgstr ""
|
872 |
+
"Questa email sarà inviata ai tuoi utenti quando utilizzeranno la "
|
873 |
+
"funzionalità di reimpostazione password."
|
874 |
+
|
875 |
+
#: classes/class.swpm-settings.php:315
|
876 |
+
msgid "Settings in this section apply to all emails."
|
877 |
+
msgstr "Le impostazioni in questa sezione si applicano a tutte le email."
|
878 |
|
879 |
+
#: classes/class.swpm-settings.php:319
|
880 |
msgid ""
|
881 |
+
"This email will be sent to your users after account upgrade (when an "
|
882 |
+
"existing member pays for a new membership level)."
|
883 |
+
msgstr ""
|
884 |
+
"Questa email sarà inviata ai tuoi membri dopo un aggiornamento account "
|
885 |
+
"(quando un membro esistente paga per un nuovo livello di iscrizione)"
|
886 |
+
|
887 |
+
#: classes/class.swpm-settings.php:323
|
888 |
+
msgid ""
|
889 |
+
"This email will be sent to your members when you use the bulk account "
|
890 |
+
"activate and notify action."
|
891 |
+
msgstr ""
|
892 |
+
"Questa email sarà inviata ai tuoi membri quando utilizzerai l'azione di "
|
893 |
+
"notifica e attivazione account bulk."
|
894 |
+
|
895 |
+
#: classes/class.swpm-settings.php:327
|
896 |
+
msgid ""
|
897 |
+
"This email will be sent to prompt users to complete registration after the "
|
898 |
+
"payment."
|
899 |
msgstr ""
|
900 |
+
"Questa email sarà inviata agli utenti per invitarli a completare la "
|
901 |
+
"registrazione dopo il pagamento."
|
902 |
+
|
903 |
+
#: classes/class.swpm-settings.php:331
|
904 |
+
msgid "This page allows you to configure some advanced features of the plugin."
|
905 |
+
msgstr ""
|
906 |
+
"Questa pagina ti permette di configurare alcuni funzionalità avanzate del "
|
907 |
+
"plugin."
|
908 |
+
|
909 |
+
#: classes/class.swpm-settings.php:437
|
910 |
+
msgid "Simple WP Membership::Settings"
|
911 |
+
msgstr "Simple WP Membership::Impostazioni"
|
912 |
+
|
913 |
+
#: classes/class.swpm-utils-member.php:21
|
914 |
+
#: classes/class.swpm-utils-member.php:29
|
915 |
+
#: classes/class.swpm-utils-member.php:37
|
916 |
+
#: classes/class.swpm-utils-member.php:47
|
917 |
+
msgid "User is not logged in."
|
918 |
+
msgstr "L'utente non ha eseguito l'accesso."
|
919 |
+
|
920 |
+
#: classes/class.swpm-utils-misc.php:50
|
921 |
+
msgid "Registration"
|
922 |
+
msgstr "Registrazione"
|
923 |
+
|
924 |
+
#: classes/class.swpm-utils-misc.php:73
|
925 |
+
msgid "Member Login"
|
926 |
+
msgstr "Login Membro"
|
927 |
|
928 |
+
#: classes/class.swpm-utils-misc.php:96
|
929 |
+
msgid "Profile"
|
930 |
+
msgstr "Profilo"
|
931 |
+
|
932 |
+
#: classes/class.swpm-utils-misc.php:119
|
933 |
+
msgid "Password Reset"
|
934 |
+
msgstr "Reimpostazione password"
|
935 |
+
|
936 |
+
#: classes/class.swpm-utils-misc.php:219
|
937 |
msgid "Not a Member?"
|
938 |
+
msgstr "Non sei un membro?"
|
939 |
|
940 |
+
#: classes/class.swpm-utils-misc.php:219 views/login.php:33
|
941 |
msgid "Join Us"
|
942 |
+
msgstr "Registrati"
|
943 |
+
|
944 |
+
#: classes/class.swpm-utils-misc.php:230
|
945 |
+
msgid "renew"
|
946 |
+
msgstr " di rinnovare"
|
947 |
|
948 |
+
#: classes/class.swpm-utils-misc.php:230
|
949 |
+
msgid " your account to gain access to this content."
|
950 |
+
msgstr " l'account per garantirsi l'accesso a questo contenuto."
|
951 |
+
|
952 |
+
#: classes/class.swpm-utils-template.php:38
|
953 |
+
msgid "Error! Failed to find a template path for the specified template: "
|
954 |
+
msgstr ""
|
955 |
+
"Errore! Non è stato possibile trovare un percorso per il template "
|
956 |
+
"specificato:"
|
957 |
+
|
958 |
+
#: classes/class.swpm-utils.php:92
|
959 |
msgid "Active"
|
960 |
msgstr "Attivo"
|
961 |
|
962 |
+
#: classes/class.swpm-utils.php:93
|
963 |
msgid "Inactive"
|
964 |
+
msgstr "Inattivo"
|
965 |
|
966 |
+
#: classes/class.swpm-utils.php:94
|
967 |
msgid "Pending"
|
968 |
msgstr "In attesa"
|
969 |
|
970 |
+
#: classes/class.swpm-utils.php:95
|
971 |
msgid "Expired"
|
972 |
msgstr "Scaduto"
|
973 |
|
974 |
+
#: classes/class.swpm-utils.php:328
|
975 |
msgid "Never"
|
976 |
msgstr "Mai"
|
977 |
|
978 |
+
#: classes/class.swpm-utils.php:420
|
979 |
msgid "Delete Account"
|
980 |
+
msgstr "Cancella Account"
|
981 |
|
982 |
+
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:75
|
983 |
msgid "Payment Button ID"
|
984 |
+
msgstr "ID pulsante pagamento"
|
985 |
|
986 |
+
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:76
|
987 |
msgid "Payment Button Title"
|
988 |
+
msgstr "Titolo pulsante pagamento"
|
989 |
|
990 |
+
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:77
|
991 |
msgid "Membership Level ID"
|
992 |
+
msgstr "ID Livello iscrizione"
|
993 |
|
994 |
+
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:78
|
995 |
+
msgid "Button Type"
|
996 |
+
msgstr "Tipo pulsante"
|
997 |
+
|
998 |
+
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:79
|
999 |
msgid "Button Shortcode"
|
1000 |
+
msgstr "Shortcode pulsante"
|
1001 |
|
1002 |
+
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:127
|
1003 |
+
#: views/admin_members_list.php:6
|
1004 |
+
#: views/payments/admin_all_payment_transactions.php:32
|
1005 |
msgid "The selected entry was deleted!"
|
1006 |
+
msgstr "La voce selezionata è stata cancellata!"
|
1007 |
|
1008 |
+
#: classes/admin-includes/class.swpm-payments-admin-menu.php:21
|
1009 |
+
msgid "Simple Membership::Payments"
|
1010 |
+
msgstr "Simple Membership::Pagamenti"
|
1011 |
+
|
1012 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:57
|
1013 |
msgid "View Profile"
|
1014 |
msgstr "Visualizza profilo"
|
1015 |
|
1016 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:76
|
1017 |
msgid "Row ID"
|
1018 |
+
msgstr "ID"
|
1019 |
|
1020 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:77
|
1021 |
#: views/forgot_password.php:5
|
1022 |
msgid "Email Address"
|
1023 |
+
msgstr "Indirizzo email"
|
1024 |
|
1025 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:80
|
1026 |
msgid "Member Profile"
|
1027 |
+
msgstr "Profilo membro"
|
1028 |
|
1029 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:81
|
1030 |
msgid "Date"
|
1031 |
msgstr "Data"
|
1032 |
|
1033 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:82
|
1034 |
msgid "Transaction ID"
|
1035 |
+
msgstr "ID transazione"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1036 |
|
1037 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:83
|
1038 |
+
msgid "Subscriber ID"
|
1039 |
+
msgstr "ID abbonato"
|
|
|
|
|
|
|
|
|
|
|
1040 |
|
1041 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:84
|
1042 |
+
msgid "Amount"
|
1043 |
+
msgstr "Ammontare"
|
1044 |
|
1045 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:55
|
1046 |
msgid "Your membership profile will be updated to reflect the payment."
|
1047 |
msgstr ""
|
1048 |
+
"Il tuo profilo di iscrizione sarà aggiornato per riflettere il pagamento."
|
1049 |
|
1050 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:56
|
1051 |
msgid "Your profile username: "
|
1052 |
+
msgstr "Il tuo username del profilo:"
|
1053 |
|
1054 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:68
|
1055 |
msgid "Click on the following link to complete the registration."
|
1056 |
+
msgstr "Clicca sul seguente link per completare la registrazione."
|
1057 |
|
1058 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:69
|
1059 |
msgid "Click here to complete your paid registration"
|
1060 |
+
msgstr "Clicca qui per completare la tua registrazione a pagamento"
|
1061 |
|
1062 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:74
|
1063 |
msgid ""
|
1064 |
"If you have just made a membership payment then your payment is yet to be "
|
1065 |
"processed. Please check back in a few minutes. An email will be sent to you "
|
1066 |
"with the details shortly."
|
1067 |
msgstr ""
|
1068 |
+
"Se avete appena effettuato un pagamento per l'iscrizione allora il "
|
1069 |
+
"vostro pagamento è ancora in fase di elaborazione. Si prega di controllare "
|
1070 |
+
"tra pochi minuti. Vi verrà inviata una email a breve con tutti i dettagli."
|
1071 |
|
1072 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:88
|
1073 |
msgid "Expiry: "
|
1074 |
msgstr "Scadenza:"
|
1075 |
|
1076 |
+
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:90
|
1077 |
msgid "You are not logged-in as a member"
|
1078 |
+
msgstr "Non hai l'acceso come membro"
|
1079 |
|
1080 |
+
#: views/add.php:14 views/admin_add.php:18 views/admin_edit.php:38
|
1081 |
+
#: views/edit.php:13 views/login.php:17
|
1082 |
msgid "Password"
|
1083 |
+
msgstr "Password"
|
1084 |
|
1085 |
#: views/add.php:18 views/edit.php:17
|
1086 |
msgid "Repeat Password"
|
1087 |
+
msgstr "Ripeti password"
|
1088 |
|
1089 |
#: views/add.php:41
|
1090 |
msgid "Register"
|
1091 |
+
msgstr "Registrati"
|
1092 |
|
1093 |
#: views/admin_add.php:6
|
|
|
|
|
|
|
|
|
1094 |
msgid "Create a brand new user and add it to this site."
|
1095 |
msgstr "Crea un nuovo utente e aggiungilo a questo sito."
|
1096 |
|
1097 |
+
#: views/admin_add.php:10 views/admin_add.php:14 views/admin_add_level.php:11
|
1098 |
#: views/admin_add_level.php:15 views/admin_add_level.php:19
|
1099 |
+
#: views/admin_edit.php:13 views/admin_edit.php:34
|
1100 |
+
#: views/admin_edit_level.php:15 views/admin_edit_level.php:19
|
1101 |
+
#: views/admin_edit_level.php:23
|
1102 |
msgid "(required)"
|
1103 |
msgstr "(richiesto)"
|
1104 |
|
1105 |
+
#: views/admin_add.php:14 views/admin_edit.php:34
|
1106 |
msgid "E-mail"
|
1107 |
+
msgstr "Email"
|
1108 |
|
1109 |
+
#: views/admin_add.php:18
|
1110 |
msgid "(twice, required)"
|
1111 |
+
msgstr "(due volte, richiesto)"
|
1112 |
|
1113 |
+
#: views/admin_add.php:23 views/admin_edit.php:42
|
1114 |
msgid "Strength indicator"
|
1115 |
+
msgstr "Indicatore di forza"
|
1116 |
|
1117 |
+
#: views/admin_add.php:24 views/admin_edit.php:43
|
1118 |
msgid ""
|
1119 |
"Hint: The password should be at least seven characters long. To make it "
|
1120 |
"stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
|
1121 |
"$ % ^ & )."
|
1122 |
msgstr ""
|
1123 |
+
"Suggerimento: La password deve essere lunga almeno 7 caratteri. Per renderla "
|
1124 |
+
"più forte, utilizzare lettere maiuscole e minuscole, numeri e simboli come ! "
|
1125 |
+
"\" ? $ % ^ & )."
|
1126 |
|
1127 |
+
#: views/admin_add.php:28 views/admin_edit.php:47 views/loggedin.php:10
|
1128 |
msgid "Account Status"
|
1129 |
+
msgstr "Stato account"
|
1130 |
|
1131 |
+
#: views/admin_add.php:38
|
1132 |
msgid "Add New Member "
|
1133 |
+
msgstr "Aggiungi nuovo Membro"
|
|
|
|
|
|
|
|
|
|
|
1134 |
|
1135 |
+
#: views/admin_addon_settings.php:3
|
1136 |
msgid ""
|
1137 |
"Some of the simple membership plugin's addon settings and options will be "
|
1138 |
"displayed here (if you have them)"
|
1139 |
msgstr ""
|
1140 |
+
"Alcune delle impostazioni e opzioni dei componenti aggiuntivi del plugin "
|
1141 |
+
"Simple Membership appariranno qui (se hai componenti aggiuntivi)"
|
1142 |
|
1143 |
+
#: views/admin_addon_settings.php:8
|
1144 |
msgid "Save Changes"
|
1145 |
+
msgstr "Salva le modifiche"
|
1146 |
|
1147 |
#: views/admin_add_level.php:6
|
1148 |
msgid "Create new membership level."
|
1149 |
+
msgstr "Crea un nuovo livello di iscrizione"
|
1150 |
|
1151 |
+
#: views/admin_add_level.php:11 views/admin_edit_level.php:15
|
1152 |
msgid "Membership Level Name"
|
1153 |
+
msgstr "Nome livello iscrizione"
|
1154 |
|
1155 |
+
#: views/admin_add_level.php:15 views/admin_edit_level.php:19
|
1156 |
msgid "Default WordPress Role"
|
1157 |
+
msgstr "Ruolo predefinito Wordpress"
|
1158 |
|
1159 |
+
#: views/admin_add_level.php:19 views/admin_edit_level.php:23
|
1160 |
msgid "Access Duration"
|
1161 |
+
msgstr "Durata accesso"
|
1162 |
|
1163 |
#: views/admin_add_level.php:22
|
1164 |
msgid "No Expiry (Access for this level will not expire until cancelled"
|
1165 |
msgstr ""
|
1166 |
+
"Nessuna scadenza (l'accesso a questo livello non scade fino alla "
|
1167 |
+
"cancellazione dell'account)"
|
1168 |
|
1169 |
#: views/admin_add_level.php:23 views/admin_add_level.php:25
|
1170 |
#: views/admin_add_level.php:27 views/admin_add_level.php:29
|
1171 |
+
#: views/admin_edit_level.php:27 views/admin_edit_level.php:30
|
1172 |
+
#: views/admin_edit_level.php:33 views/admin_edit_level.php:36
|
1173 |
msgid "Expire After"
|
1174 |
msgstr "Scadenza dopo"
|
1175 |
|
1176 |
+
#: views/admin_add_level.php:24 views/admin_edit_level.php:28
|
1177 |
msgid "Days (Access expires after given number of days)"
|
1178 |
+
msgstr "Giorni (l'accesso scade dopo un certo numero di giorni)"
|
1179 |
|
1180 |
#: views/admin_add_level.php:26
|
1181 |
msgid "Weeks (Access expires after given number of weeks"
|
1182 |
+
msgstr "Settimane (l'accesso scade dopo un certo numero di settimane)"
|
1183 |
|
1184 |
+
#: views/admin_add_level.php:28 views/admin_edit_level.php:34
|
1185 |
msgid "Months (Access expires after given number of months)"
|
1186 |
+
msgstr "Mesi (l'accesso scade dopo un certo numero di mesi)"
|
1187 |
|
1188 |
+
#: views/admin_add_level.php:30 views/admin_edit_level.php:37
|
1189 |
msgid "Years (Access expires after given number of years)"
|
1190 |
+
msgstr "Anni (l'accesso scade dopo un certo numero di anni)"
|
1191 |
|
1192 |
+
#: views/admin_add_level.php:31 views/admin_edit_level.php:39
|
1193 |
msgid "Fixed Date Expiry"
|
1194 |
msgstr "Data fissata per la scadenza"
|
1195 |
|
1196 |
+
#: views/admin_add_level.php:32 views/admin_edit_level.php:40
|
1197 |
msgid "(Access expires on a fixed date)"
|
1198 |
+
msgstr "(l'accesso scade a una data prefissata)"
|
1199 |
|
1200 |
#: views/admin_add_level.php:38
|
1201 |
msgid "Add New Membership Level "
|
1202 |
+
msgstr "Aggiungi un nuovo livello di iscrizione"
|
1203 |
|
1204 |
#: views/admin_add_ons_page.php:7
|
1205 |
msgid "Simple WP Membership::Add-ons"
|
1206 |
+
msgstr "Simple WP Membership::Componenti aggiuntivi"
|
1207 |
|
1208 |
+
#: views/admin_category_list.php:5
|
|
|
|
|
|
|
|
|
1209 |
msgid ""
|
1210 |
"First of all, globally protect the category on your site by selecting "
|
1211 |
"\"General Protection\" from the drop-down box below and then select the "
|
1212 |
"categories that should be protected from non-logged in users."
|
1213 |
msgstr ""
|
1214 |
+
"Prima di tutto, proteggi a livello globale la categoria sul tuo sito "
|
1215 |
+
"selezionando \"Protezione Generale\" dal menu a tendina in basso e quindi "
|
1216 |
+
"seleziona le categorie che dovrebbero essere protette per gli utenti che non "
|
1217 |
+
"hanno eseguito l'accesso."
|
1218 |
|
1219 |
+
#: views/admin_category_list.php:8
|
1220 |
msgid ""
|
1221 |
"Next, select an existing membership level from the drop-down box below and "
|
1222 |
"then select the categories you want to grant access to (for that particular "
|
1223 |
"membership level)."
|
1224 |
msgstr ""
|
1225 |
+
"Dopodichè, seleziona un livello di iscrizione esistente dal menu a tendina "
|
1226 |
+
"in basso e seleziona le categorie a cui vuoi garantire l'accesso (per "
|
1227 |
+
"quel particolare livello di iscrizione)"
|
1228 |
|
1229 |
#: views/admin_edit.php:5
|
1230 |
msgid "Edit Member"
|
1231 |
+
msgstr "Modifica Membro"
|
1232 |
|
1233 |
+
#: views/admin_edit.php:7
|
1234 |
msgid "Edit existing member details."
|
1235 |
+
msgstr "Modifica i dettagli di un membro esistente"
|
1236 |
|
1237 |
+
#: views/admin_edit.php:8
|
1238 |
+
msgid " You are currenty editing member with member ID: "
|
1239 |
+
msgstr " Attualmente stai modificando il membro con ID:"
|
1240 |
+
|
1241 |
+
#: views/admin_edit.php:38
|
1242 |
msgid "(twice, leave empty to retain old password)"
|
1243 |
+
msgstr "(Due volte, lasciare vuoto per mantenere la vecchia password)"
|
1244 |
|
1245 |
+
#: views/admin_edit.php:54
|
1246 |
msgid "Notify User"
|
1247 |
+
msgstr "Notificare l'utente"
|
1248 |
|
1249 |
+
#: views/admin_edit.php:61
|
1250 |
msgid "Subscriber ID/Reference"
|
1251 |
+
msgstr "ID/Riferimento Sottoscrittore "
|
1252 |
|
1253 |
+
#: views/admin_edit.php:65
|
1254 |
msgid "Last Accessed From IP"
|
1255 |
+
msgstr "Ultima accesso dall'IP"
|
1256 |
|
1257 |
+
#: views/admin_edit.php:73
|
1258 |
msgid "Edit User "
|
1259 |
msgstr "Modifica utente"
|
1260 |
|
1261 |
+
#: views/admin_edit.php:77
|
1262 |
+
msgid "Delete User Profile"
|
1263 |
+
msgstr "Elimina profilo utente"
|
1264 |
+
|
1265 |
#: views/admin_edit_level.php:5
|
1266 |
msgid "Edit membership level"
|
1267 |
+
msgstr "Modifica livello iscrizione"
|
1268 |
+
|
1269 |
+
#: views/admin_edit_level.php:8
|
1270 |
+
msgid ""
|
1271 |
+
"You can edit details of a selected membership level from this interface. "
|
1272 |
+
msgstr ""
|
1273 |
+
"Puoi modificare i dettagli di un livello di iscrizione da questa interfaccia."
|
1274 |
|
1275 |
+
#: views/admin_edit_level.php:9
|
1276 |
+
msgid "You are currently editing: "
|
1277 |
+
msgstr "Attualmente stai modificando:"
|
1278 |
|
1279 |
+
#: views/admin_edit_level.php:26
|
1280 |
msgid "No Expiry (Access for this level will not expire until cancelled)"
|
1281 |
msgstr ""
|
1282 |
+
"Nessuna scadenza (l'accesso a questo livello non scade fino alla "
|
1283 |
+
"cancellazione dell'account)"
|
1284 |
|
1285 |
+
#: views/admin_edit_level.php:31
|
1286 |
msgid "Weeks (Access expires after given number of weeks)"
|
1287 |
+
msgstr "Settimane (l'accesso scade dopo un certo numero di settimane)"
|
1288 |
|
1289 |
+
#: views/admin_edit_level.php:46
|
1290 |
msgid "Edit Membership Level "
|
1291 |
+
msgstr "Modifica livello di iscrizione"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1292 |
|
1293 |
+
#: views/admin_membership_manage.php:18
|
|
|
|
|
|
|
|
|
1294 |
msgid "Example Content Protection Settings"
|
1295 |
+
msgstr "Esempio: Impostazioni di un contenuto protetto"
|
1296 |
|
1297 |
#: views/admin_member_form_common_part.php:23
|
1298 |
msgid "Gender"
|
1328 |
|
1329 |
#: views/admin_member_form_common_part.php:58
|
1330 |
msgid "Member Since"
|
1331 |
+
msgstr "Membro dal"
|
1332 |
|
1333 |
+
#: views/admin_tools_settings.php:6
|
1334 |
msgid "Generate a Registration Completion link"
|
1335 |
+
msgstr "Genera un link di \"Completamento registrazione\""
|
1336 |
|
1337 |
+
#: views/admin_tools_settings.php:9
|
1338 |
msgid ""
|
1339 |
"You can manually generate a registration completion link here and give it to "
|
1340 |
"your customer if they have missed the email that was automatically sent out "
|
1341 |
"to them after the payment."
|
1342 |
msgstr ""
|
1343 |
+
"Qui è possibile generare manualmente un link di \"Completamento registrazione"
|
1344 |
+
"\" ed inviarlo al vostro cliente in caso avesse smarrito l'email che gli "
|
1345 |
+
"è stata inviata automaticamente dopo il pagamento."
|
1346 |
|
1347 |
+
#: views/admin_tools_settings.php:14
|
1348 |
msgid "Generate Registration Completion Link"
|
1349 |
+
msgstr "Genera link \"Completamento registrazione\""
|
1350 |
|
1351 |
+
#: views/admin_tools_settings.php:17
|
1352 |
msgid "OR"
|
1353 |
+
msgstr "o"
|
1354 |
|
1355 |
+
#: views/admin_tools_settings.php:18
|
1356 |
+
msgid "For All Incomplete Registrations"
|
1357 |
+
msgstr "Per tutte le registrazioni incomplete"
|
|
|
|
|
|
|
|
|
1358 |
|
1359 |
+
#: views/admin_tools_settings.php:23
|
1360 |
+
msgid "Send Registration Reminder Email Too"
|
1361 |
+
msgstr "Inviare l'email di promemoria-registrazione a"
|
1362 |
|
1363 |
+
#: views/admin_tools_settings.php:29
|
1364 |
msgid "Submit"
|
1365 |
msgstr "Invia"
|
1366 |
|
1367 |
+
#: views/admin_tools_settings.php:38
|
1368 |
+
msgid ""
|
1369 |
+
"Link(s) generated successfully. The following link(s) can be used to "
|
1370 |
+
"complete the registration."
|
1371 |
+
msgstr ""
|
1372 |
+
"Link generato(i) correttamente. I/Il seguenti/e link possono/può essere "
|
1373 |
+
"utilizzati/o per completare la registrazione."
|
1374 |
+
|
1375 |
+
#: views/admin_tools_settings.php:40
|
1376 |
+
msgid "Registration completion links will appear below"
|
1377 |
+
msgstr ""
|
1378 |
+
"I/Il link di completamento registrazione appariranno/apparirà di seguito"
|
1379 |
+
|
1380 |
+
#: views/edit.php:60
|
1381 |
msgid "Update"
|
1382 |
msgstr "Aggiorna"
|
1383 |
|
1384 |
+
#: views/forgot_password.php:11
|
1385 |
msgid "Reset Password"
|
1386 |
+
msgstr "Reimposta password"
|
1387 |
|
1388 |
+
#: views/loggedin.php:6
|
1389 |
msgid "Logged in as"
|
1390 |
+
msgstr "Accesso eseguito come"
|
1391 |
|
1392 |
+
#: views/loggedin.php:14
|
1393 |
msgid "Membership"
|
1394 |
msgstr "Iscrizione"
|
1395 |
|
1396 |
+
#: views/loggedin.php:18
|
1397 |
msgid "Account Expiry"
|
1398 |
+
msgstr "Scadenza account"
|
1399 |
|
1400 |
+
#: views/loggedin.php:22
|
1401 |
msgid "Logout"
|
1402 |
+
msgstr "Logout"
|
1403 |
|
1404 |
+
#: views/login.php:24
|
1405 |
msgid "Remember Me"
|
1406 |
msgstr "Ricordami"
|
1407 |
|
1408 |
+
#: views/login.php:30
|
1409 |
msgid "Forgot Password"
|
1410 |
msgstr "Password dimenticata"
|
1411 |
|
1412 |
+
#: views/payments/admin_all_payment_transactions.php:6
|
1413 |
msgid "All the payments/transactions of your members are recorded here."
|
1414 |
+
msgstr "Tutti i pagamenti/transazioni dei tuoi membri sono registrati qui."
|
1415 |
|
1416 |
+
#: views/payments/admin_all_payment_transactions.php:12
|
1417 |
msgid "Search for a transaction by using email or name"
|
1418 |
+
msgstr "Cerca una transazione utilizzando l'email o il nome utente"
|
1419 |
|
1420 |
+
#: views/payments/admin_create_payment_buttons.php:14
|
|
|
|
|
|
|
|
|
1421 |
msgid ""
|
1422 |
"You can create new payment button for your memberships using this interface."
|
1423 |
msgstr ""
|
1424 |
+
"Puoi creare un nuovo pulsante di pagamento per i tuoi membri da questa "
|
1425 |
+
"interfaccia."
|
1426 |
|
1427 |
#: views/payments/admin_create_payment_buttons.php:22
|
1428 |
msgid "Select Payment Button Type"
|
1429 |
+
msgstr "Seleziona il tipo di pulsante a pagamento"
|
1430 |
|
1431 |
+
#: views/payments/admin_create_payment_buttons.php:36
|
1432 |
msgid "Next"
|
1433 |
+
msgstr "Prossimo"
|
1434 |
|
1435 |
#: views/payments/admin_edit_payment_buttons.php:12
|
1436 |
msgid "You can edit a payment button using this interface."
|
1437 |
msgstr ""
|
1438 |
+
"Puoi modificare il pulsante a pagamento utilizzando questa interfaccia."
|
1439 |
|
1440 |
+
#: views/payments/admin_payment_buttons.php:6
|
|
|
|
|
|
|
|
|
1441 |
msgid ""
|
1442 |
"All the membership buttons that you created in the plugin are displayed here."
|
1443 |
msgstr ""
|
1444 |
+
"Tutti i pulsanti di iscrizione che hai creato nel plugin sono visualizzati "
|
1445 |
+
"qui."
|
1446 |
|
1447 |
+
#: views/payments/admin_payment_settings.php:27
|
1448 |
msgid "PayPal Integration Settings"
|
1449 |
+
msgstr "Impostazioni integrazione Paypal"
|
1450 |
|
1451 |
+
#: views/payments/admin_payment_settings.php:30
|
1452 |
msgid "Generate the \"Advanced Variables\" Code for your PayPal button"
|
1453 |
msgstr ""
|
1454 |
+
"Genera il codice delle \"variabili avanzate\" per i tuoi pulsanti Paypal"
|
1455 |
|
1456 |
+
#: views/payments/admin_payment_settings.php:33
|
1457 |
msgid "Enter the Membership Level ID"
|
1458 |
+
msgstr "Inserisci l'ID livello iscrizione"
|
1459 |
|
1460 |
+
#: views/payments/admin_payment_settings.php:35
|
1461 |
msgid "Generate Code"
|
1462 |
+
msgstr "Genera codice"
|
1463 |
|
1464 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:16
|
1465 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:192
|
1466 |
msgid "PayPal Buy Now Button Configuration"
|
1467 |
+
msgstr "Configurazione pulsante \"Paypal Buy Now\""
|
1468 |
|
1469 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:26
|
1470 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:209
|
1471 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:27
|
1472 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:299
|
1473 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:39
|
1474 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:252
|
1475 |
msgid "Button Title"
|
1476 |
+
msgstr "Titolo pulsante"
|
1477 |
|
1478 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:44
|
1479 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:227
|
1480 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:57
|
1481 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:268
|
1482 |
msgid "Payment Amount"
|
1483 |
+
msgstr "Ammontare pagamento"
|
1484 |
|
1485 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:52
|
1486 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:235
|
1487 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:45
|
1488 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:317
|
1489 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:65
|
1490 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:275
|
1491 |
msgid "Payment Currency"
|
1492 |
+
msgstr "Valuta pagamento"
|
1493 |
|
1494 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:91
|
1495 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:274
|
1496 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:171
|
1497 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:443
|
1498 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:141
|
1499 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:351
|
1500 |
msgid "Return URL"
|
1501 |
+
msgstr "URL di ritorno"
|
1502 |
|
1503 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:99
|
1504 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:282
|
1505 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:84
|
1506 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:356
|
1507 |
msgid "PayPal Email"
|
1508 |
+
msgstr "Email account Paypal"
|
1509 |
|
1510 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:107
|
1511 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:290
|
1512 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:179
|
1513 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:451
|
1514 |
msgid "Button Image URL"
|
1515 |
+
msgstr "URL immagine pulsante"
|
1516 |
|
1517 |
+
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:117
|
1518 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:300
|
1519 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:191
|
1520 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:463
|
1521 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:151
|
1522 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:361
|
1523 |
msgid "Save Payment Data"
|
1524 |
+
msgstr "Salva dati pagamento"
|
1525 |
|
1526 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:201
|
1527 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:291
|
1528 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:245
|
1529 |
msgid "Button ID"
|
1530 |
+
msgstr "ID pulsante"
|
1531 |
|
1532 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:18
|
1533 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:285
|
1534 |
msgid "PayPal Subscription Button Configuration"
|
1535 |
+
msgstr "Configurazione pulsante \"Paypal Subscription\""
|
1536 |
|
1537 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:92
|
1538 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:364
|
1539 |
msgid "Billing Amount Each Cycle"
|
1540 |
+
msgstr "Ammontare per ogni ciclo di pagamento"
|
1541 |
|
1542 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:100
|
1543 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:372
|
1544 |
msgid "Billing Cycle"
|
1545 |
+
msgstr "Cicli pagamento"
|
1546 |
|
1547 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:113
|
1548 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:385
|
1549 |
msgid "Billing Cycle Count"
|
1550 |
+
msgstr "Numero cicli pagamento"
|
1551 |
|
1552 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:121
|
1553 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:393
|
1554 |
msgid "Re-attempt on Failure"
|
1555 |
+
msgstr "Tentativo in caso di errore"
|
1556 |
|
1557 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:134
|
1558 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:406
|
1559 |
msgid ""
|
1560 |
"Trial Billing Details (Leave empty if you are not offering a trial period)"
|
1561 |
msgstr ""
|
1562 |
+
"Dettagli pagamento periodo di prova (lasciare vuoto se non si sta offrendo "
|
1563 |
+
"un periodo di prova)"
|
1564 |
|
1565 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:140
|
1566 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:412
|
1567 |
msgid "Trial Billing Amount"
|
1568 |
+
msgstr "Ammontare periodo di prova"
|
1569 |
|
1570 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:148
|
1571 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:420
|
1572 |
msgid "Trial Billing Period"
|
1573 |
+
msgstr "Durata periodo di prova"
|
1574 |
|
1575 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:165
|
1576 |
+
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:437
|
1577 |
msgid "Optional Details"
|
1578 |
msgstr "Dettagli opzionali"
|
1579 |
|
1580 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:29
|
1581 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:236
|
1582 |
+
msgid "Stripe Buy Now Button Configuration"
|
1583 |
+
msgstr "Configurazione pulsante \"Stripe Buy Now\""
|
1584 |
+
|
1585 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:104
|
1586 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:314
|
1587 |
+
msgid "Stripe API keys. You can get this from your Stripe account."
|
1588 |
+
msgstr "Chiavi API Stripe. Puoi ottenerle dal tuo account Stripe."
|
1589 |
+
|
1590 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:108
|
1591 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:318
|
1592 |
+
msgid "Test Secret Key"
|
1593 |
+
msgstr "Test Secret Key"
|
1594 |
+
|
1595 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:115
|
1596 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:325
|
1597 |
+
msgid "Test Publishable Key"
|
1598 |
+
msgstr "Test Publishable Key"
|
1599 |
+
|
1600 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:122
|
1601 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:332
|
1602 |
+
msgid "Live Secret Key"
|
1603 |
+
msgstr "Live Secret Key"
|
1604 |
+
|
1605 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:129
|
1606 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:339
|
1607 |
+
msgid "Live Publishable Key"
|
1608 |
+
msgstr "Live Publishable Key"
|
1609 |
+
|
1610 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:137
|
1611 |
+
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:347
|
1612 |
+
msgid "The following details are optional."
|
1613 |
+
msgstr "Le seguenti informazioni sono opzionali."
|
1614 |
+
|
1615 |
+
#: views/payments/payment-gateway/paypal_button_shortcode_view.php:85
|
1616 |
+
#: views/payments/payment-gateway/paypal_button_shortcode_view.php:87
|
1617 |
+
#: views/payments/payment-gateway/stripe_button_shortcode_view.php:17
|
1618 |
msgid "Buy Now"
|
1619 |
+
msgstr "Paga ora"
|
1620 |
|
1621 |
+
#: views/payments/payment-gateway/paypal_button_shortcode_view.php:213
|
1622 |
+
#: views/payments/payment-gateway/paypal_button_shortcode_view.php:215
|
1623 |
msgid "Subscribe Now"
|
1624 |
+
msgstr "Iscriviti ora"
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Simple Membership ===
|
2 |
Contributors: smp7, wp.insider, amijanina
|
3 |
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, stripe
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.7
|
7 |
-
Stable tag: 3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -29,7 +29,7 @@ You can configure it to have free and/or paid memberships on your site. Paid mem
|
|
29 |
|
30 |
Both one time and recurring/subscription payments are supported.
|
31 |
|
32 |
-
You can also accept one time membership payment via Stripe payment gateway.
|
33 |
|
34 |
= Membership Payments Log =
|
35 |
All the payments from your members are recorded in the plugin. You can view them anytime by visiting the payments menu from the admin dashboard.
|
@@ -129,6 +129,15 @@ https://simple-membership-plugin.com/
|
|
129 |
|
130 |
== Changelog ==
|
131 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
= 3.3.9 =
|
133 |
- Deleted the Spanish language files from the plugin folder so it can pull the language from translate.wordpress.org
|
134 |
- WordPress 4.7 compatibility.
|
1 |
=== Simple Membership ===
|
2 |
Contributors: smp7, wp.insider, amijanina
|
3 |
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, stripe, braintree
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.7
|
7 |
+
Stable tag: 3.4.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
29 |
|
30 |
Both one time and recurring/subscription payments are supported.
|
31 |
|
32 |
+
You can also accept one time membership payment via Stripe or Braintree payment gateway.
|
33 |
|
34 |
= Membership Payments Log =
|
35 |
All the payments from your members are recorded in the plugin. You can view them anytime by visiting the payments menu from the admin dashboard.
|
129 |
|
130 |
== Changelog ==
|
131 |
|
132 |
+
= 3.4.0 =
|
133 |
+
- Updated the Italian language file. Thanks to Nicolò Monili for updating the translation.
|
134 |
+
- Deleted the German language files from the plugin folder so it can pull the language from translate.wordpress.org
|
135 |
+
- Improved the member search functionality when used with pagination.
|
136 |
+
- Added more sanitization on the registration form.
|
137 |
+
- Added a few utility functions to the membership level utility class.
|
138 |
+
- Google reCAPTCHA addon updated to enable captcha on the login form.
|
139 |
+
- Stripe Checkout: The plugin now sets the "receipt_email" parameter for Stripe checkout so a receipt gets sent from Stripe.
|
140 |
+
|
141 |
= 3.3.9 =
|
142 |
- Deleted the Spanish language files from the plugin folder so it can pull the language from translate.wordpress.org
|
143 |
- WordPress 4.7 compatibility.
|
simple-wp-membership.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Simple WordPress Membership
|
4 |
-
Version: 3.
|
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.
|
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__) . '/');
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Simple WordPress Membership
|
4 |
+
Version: 3.4.0
|
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.4.0');
|
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__) . '/');
|
views/add.php
CHANGED
@@ -4,11 +4,11 @@
|
|
4 |
<table>
|
5 |
<tr class="swpm-registration-username-row">
|
6 |
<td><label for="user_name"><?php echo SwpmUtils::_('Username') ?></label></td>
|
7 |
-
<td><input type="text" id="user_name" class="validate[required,custom[noapostrophe],custom[SWPMUserName],minSize[4],ajax[ajaxUserCall]]" value="<?php echo $user_name; ?>" size="50" name="user_name" /></td>
|
8 |
</tr>
|
9 |
<tr class="swpm-registration-email-row">
|
10 |
<td><label for="email"><?php echo SwpmUtils::_('Email') ?></label></td>
|
11 |
-
<td><input type="text" id="email" class="validate[required,custom[email],ajax[ajaxEmailCall]]" value="<?php echo $email; ?>" size="50" name="email" /></td>
|
12 |
</tr>
|
13 |
<tr class="swpm-registration-password-row">
|
14 |
<td><label for="password"><?php echo SwpmUtils::_('Password') ?></label></td>
|
@@ -20,11 +20,11 @@
|
|
20 |
</tr>
|
21 |
<tr class="swpm-registration-firstname-row">
|
22 |
<td><label for="first_name"><?php echo SwpmUtils::_('First Name') ?></label></td>
|
23 |
-
<td><input type="text" id="first_name" value="<?php echo $first_name; ?>" size="50" name="first_name" /></td>
|
24 |
</tr>
|
25 |
<tr class="swpm-registration-lastname-row">
|
26 |
<td><label for="last_name"><?php echo SwpmUtils::_('Last Name') ?></label></td>
|
27 |
-
<td><input type="text" id="last_name" value="<?php echo $last_name; ?>" size="50" name="last_name" /></td>
|
28 |
</tr>
|
29 |
<tr class="swpm-registration-membership-level-row">
|
30 |
<td><label for="membership_level"><?php echo SwpmUtils::_('Membership Level') ?></label></td>
|
4 |
<table>
|
5 |
<tr class="swpm-registration-username-row">
|
6 |
<td><label for="user_name"><?php echo SwpmUtils::_('Username') ?></label></td>
|
7 |
+
<td><input type="text" id="user_name" class="validate[required,custom[noapostrophe],custom[SWPMUserName],minSize[4],ajax[ajaxUserCall]]" value="<?php echo esc_attr($user_name); ?>" size="50" name="user_name" /></td>
|
8 |
</tr>
|
9 |
<tr class="swpm-registration-email-row">
|
10 |
<td><label for="email"><?php echo SwpmUtils::_('Email') ?></label></td>
|
11 |
+
<td><input type="text" id="email" class="validate[required,custom[email],ajax[ajaxEmailCall]]" value="<?php echo esc_attr($email); ?>" size="50" name="email" /></td>
|
12 |
</tr>
|
13 |
<tr class="swpm-registration-password-row">
|
14 |
<td><label for="password"><?php echo SwpmUtils::_('Password') ?></label></td>
|
20 |
</tr>
|
21 |
<tr class="swpm-registration-firstname-row">
|
22 |
<td><label for="first_name"><?php echo SwpmUtils::_('First Name') ?></label></td>
|
23 |
+
<td><input type="text" id="first_name" value="<?php echo esc_attr($first_name); ?>" size="50" name="first_name" /></td>
|
24 |
</tr>
|
25 |
<tr class="swpm-registration-lastname-row">
|
26 |
<td><label for="last_name"><?php echo SwpmUtils::_('Last Name') ?></label></td>
|
27 |
+
<td><input type="text" id="last_name" value="<?php echo esc_attr($last_name); ?>" size="50" name="last_name" /></td>
|
28 |
</tr>
|
29 |
<tr class="swpm-registration-membership-level-row">
|
30 |
<td><label for="membership_level"><?php echo SwpmUtils::_('Membership Level') ?></label></td>
|
views/admin_add_ons_page.php
CHANGED
@@ -35,10 +35,10 @@ echo '<link type="text/css" rel="stylesheet" href="' . SIMPLE_WP_MEMBERSHIP_URL
|
|
35 |
array_push($addons_data, $addon_3);
|
36 |
|
37 |
$addon_4 = array(
|
38 |
-
'name' => '
|
39 |
-
'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/
|
40 |
-
'description' => '
|
41 |
-
'page_url' => 'https://simple-membership-plugin.com/
|
42 |
);
|
43 |
array_push($addons_data, $addon_4);
|
44 |
|
@@ -154,6 +154,13 @@ echo '<link type="text/css" rel="stylesheet" href="' . SIMPLE_WP_MEMBERSHIP_URL
|
|
154 |
);
|
155 |
array_push($addons_data, $addon_17);
|
156 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
157 |
|
158 |
/*** Show the addons list ***/
|
159 |
foreach ($addons_data as $addon) {
|
35 |
array_push($addons_data, $addon_3);
|
36 |
|
37 |
$addon_4 = array(
|
38 |
+
'name' => 'Member Directory Listing',
|
39 |
+
'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-member-directory-listing-addon.png',
|
40 |
+
'description' => 'Allows you to create a list of all the users on your site, with pagination and search option.',
|
41 |
+
'page_url' => 'https://simple-membership-plugin.com/simple-membership-member-directory-listing-addon/',
|
42 |
);
|
43 |
array_push($addons_data, $addon_4);
|
44 |
|
154 |
);
|
155 |
array_push($addons_data, $addon_17);
|
156 |
|
157 |
+
$addon_18 = array(
|
158 |
+
'name' => 'WP User Import',
|
159 |
+
'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/wp-user-import.png',
|
160 |
+
'description' => 'Addon for importing existing Wordpress users to Simple Membership plugin',
|
161 |
+
'page_url' => 'https://simple-membership-plugin.com/import-existing-wordpress-users-simple-membership-plugin/',
|
162 |
+
);
|
163 |
+
array_push($addons_data, $addon_18);
|
164 |
|
165 |
/*** Show the addons list ***/
|
166 |
foreach ($addons_data as $addon) {
|
views/admin_members_list.php
CHANGED
@@ -24,7 +24,7 @@ $count = $this->get_user_count_by_account_state();
|
|
24 |
</ul>
|
25 |
|
26 |
<br />
|
27 |
-
<form method="
|
28 |
<p class="search-box">
|
29 |
<input id="search_id-search-input" type="text" name="s" value="<?php echo isset($_REQUEST['s'])? esc_attr($_REQUEST['s']): ''; ?>" />
|
30 |
<input id="search-submit" class="button" type="submit" name="" value="<?php echo SwpmUtils::_('Search') ?>" />
|
24 |
</ul>
|
25 |
|
26 |
<br />
|
27 |
+
<form method="get">
|
28 |
<p class="search-box">
|
29 |
<input id="search_id-search-input" type="text" name="s" value="<?php echo isset($_REQUEST['s'])? esc_attr($_REQUEST['s']): ''; ?>" />
|
30 |
<input id="search-submit" class="button" type="submit" name="" value="<?php echo SwpmUtils::_('Search') ?>" />
|
views/login.php
CHANGED
@@ -23,6 +23,9 @@ $join_url = $setting->get_value('join-us-page-url');
|
|
23 |
<span class="swpm-remember-checkbox"><input type="checkbox" name="rememberme" value="checked='checked'"></span>
|
24 |
<span class="swpm-rember-label"> <?php echo SwpmUtils::_('Remember Me') ?></span>
|
25 |
</div>
|
|
|
|
|
|
|
26 |
<div class="swpm-login-submit">
|
27 |
<input type="submit" class="swpm-login-form-submit" name="swpm-login" value="<?php echo SwpmUtils::_('Login') ?>"/>
|
28 |
</div>
|
23 |
<span class="swpm-remember-checkbox"><input type="checkbox" name="rememberme" value="checked='checked'"></span>
|
24 |
<span class="swpm-rember-label"> <?php echo SwpmUtils::_('Remember Me') ?></span>
|
25 |
</div>
|
26 |
+
|
27 |
+
<div class="swpm-before-login-submit-section"><?php echo apply_filters('swpm_before_login_form_submit_button', ''); ?></div>
|
28 |
+
|
29 |
<div class="swpm-login-submit">
|
30 |
<input type="submit" class="swpm-login-form-submit" name="swpm-login" value="<?php echo SwpmUtils::_('Login') ?>"/>
|
31 |
</div>
|