Version Description
- CSS modifications to accomodate dark/black themes
- Small changes for E-mail Confirmation and Paid Member Subscriptions compatibility
Download this release
Release Info
Developer | madalin.ungureanu |
Plugin | User registration & user profile – Profile Builder |
Version | 2.4.6 |
Comparing to | |
See all releases |
Code changes from version 2.4.5 to 2.4.6
- assets/css/style-front-end.css +12 -0
- front-end/class-formbuilder.php +15 -5
- front-end/register.php +16 -14
- index.php +2 -2
- readme.txt +5 -1
- translation/profile-builder-ja_JP.mo +0 -0
- translation/profile-builder-ja_JP.po +3835 -0
assets/css/style-front-end.css
CHANGED
@@ -317,6 +317,18 @@ input#send_credentials_via_email{
|
|
317 |
border: 1px solid #C00;
|
318 |
}
|
319 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
320 |
.wppb-required{
|
321 |
color: red;
|
322 |
}
|
317 |
border: 1px solid #C00;
|
318 |
}
|
319 |
|
320 |
+
#wppb_general_top_error_message,
|
321 |
+
.wppb-error,
|
322 |
+
.wppb-warning{
|
323 |
+
color:#222222;
|
324 |
+
}
|
325 |
+
|
326 |
+
#wppb_general_top_error_message a,
|
327 |
+
.wppb-error a,
|
328 |
+
.wppb-warning a{
|
329 |
+
color:#007acc;
|
330 |
+
}
|
331 |
+
|
332 |
.wppb-required{
|
333 |
color: red;
|
334 |
}
|
front-end/class-formbuilder.php
CHANGED
@@ -254,14 +254,17 @@ class Profile_Builder_Form_Creator{
|
|
254 |
|
255 |
$location = apply_filters('wppb_login_after_reg_redirect_url', $location, $this);
|
256 |
|
257 |
-
|
|
|
258 |
|
259 |
-
|
|
|
|
|
260 |
|
261 |
if ( $this->args['redirect_activated'] == 'No' ) {
|
262 |
-
return "<script> window.location.replace( '$location' ); </script>";
|
263 |
} else {
|
264 |
-
return "<script> jQuery( '#wppb_form_success_message' ).after( '$redirect_message' ); </script>";
|
265 |
}
|
266 |
}
|
267 |
|
@@ -391,7 +394,14 @@ class Profile_Builder_Form_Creator{
|
|
391 |
$wppb_module_settings = get_option( 'wppb_module_settings' );
|
392 |
|
393 |
if( isset( $wppb_module_settings['wppb_customRedirect'] ) && $wppb_module_settings['wppb_customRedirect'] == 'show' ) {
|
394 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
395 |
}
|
396 |
?>
|
397 |
</p><!-- .form-submit -->
|
254 |
|
255 |
$location = apply_filters('wppb_login_after_reg_redirect_url', $location, $this);
|
256 |
|
257 |
+
if( function_exists( 'wppb_cr_replace_tags' ) )
|
258 |
+
$location = wppb_cr_replace_tags( $location );
|
259 |
|
260 |
+
$location = add_query_arg( array( 'autologin' => 'true', 'uid' => $user->ID, '_wpnonce' => $nonce ), $location );
|
261 |
+
|
262 |
+
$redirect_message = '<p class="redirect_message">'. sprintf( __( 'You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s', 'profile-builder' ), $this->args['redirect_delay'], '<a href="'. esc_url( $location ) .'">'. __( 'here', 'profile-builder' ) .'</a>', '<meta http-equiv="Refresh" content="'. esc_attr( $this->args['redirect_delay'] ) .';url='. esc_attr( $location ) .'" />' ) .'</p>';
|
263 |
|
264 |
if ( $this->args['redirect_activated'] == 'No' ) {
|
265 |
+
return "<script> window.location.replace( '". $location ."' ); </script>";
|
266 |
} else {
|
267 |
+
return "<script> jQuery( '#wppb_form_success_message' ).after( '". $redirect_message ."' ); </script>";
|
268 |
}
|
269 |
}
|
270 |
|
394 |
$wppb_module_settings = get_option( 'wppb_module_settings' );
|
395 |
|
396 |
if( isset( $wppb_module_settings['wppb_customRedirect'] ) && $wppb_module_settings['wppb_customRedirect'] == 'show' ) {
|
397 |
+
if( isset( $_POST['wppb_referer_url'] ) )
|
398 |
+
$referer = $_POST['wppb_referer_url'];
|
399 |
+
elseif( isset( $_SERVER['HTTP_REFERER'] ) )
|
400 |
+
$referer = $_SERVER['HTTP_REFERER'];
|
401 |
+
else
|
402 |
+
$referer = '';
|
403 |
+
|
404 |
+
echo '<input type="hidden" name="wppb_referer_url" value="'.esc_url( $referer ).'"/>';
|
405 |
}
|
406 |
?>
|
407 |
</p><!-- .form-submit -->
|
front-end/register.php
CHANGED
@@ -42,23 +42,24 @@ function wppb_activate_signup( $key ) {
|
|
42 |
$wppb_general_settings = get_option( 'wppb_general_settings' );
|
43 |
|
44 |
$signup = ( is_multisite() ? $wpdb->get_row( $wpdb->prepare("SELECT * FROM $wpdb->signups WHERE activation_key = %s", $key) ) : $wpdb->get_row( $wpdb->prepare( "SELECT * FROM ".$wpdb->base_prefix."signups WHERE activation_key = %s", $key ) ) );
|
45 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
if ( empty( $signup ) )
|
47 |
return apply_filters( 'wppb_register_activate_user_error_message1', '<p class="error">'.__( 'Invalid activation key!', 'profile-builder' ).'</p>');
|
48 |
|
49 |
if ( $signup->active )
|
50 |
if ( empty( $signup->domain ) )
|
51 |
-
return apply_filters( 'wppb_register_activate_user_error_message2', '<p class="error">'.__( 'This username is now active!', 'profile-builder' ).'</p>' );
|
52 |
|
53 |
$meta = unserialize( $signup->meta );
|
54 |
-
|
55 |
-
$user_login = ( ( isset( $wppb_general_settings['loginWith'] ) && ( $wppb_general_settings['loginWith'] == 'email' ) ) ? trim( $signup->user_email ) : trim( $signup->user_login ) );
|
56 |
-
|
57 |
-
$user_email = esc_sql( $signup->user_email );
|
58 |
-
/* the password is in hashed form in the signup table so we will add it later */
|
59 |
-
$password = NULL;
|
60 |
|
61 |
-
$user_id = username_exists( $user_login );
|
62 |
|
63 |
if ( !$user_id )
|
64 |
$user_id = wppb_create_user( $user_login, $password, $user_email );
|
@@ -121,14 +122,15 @@ function wppb_activate_signup( $key ) {
|
|
121 |
$redirect_url = wppb_custom_redirect_url( 'after_success_email_confirmation', '', $user_login );
|
122 |
}
|
123 |
}
|
124 |
-
$redirect_url = apply_filters( 'wppb_success_email_confirmation_redirect_url', $redirect_url );
|
125 |
-
$wppb_cr_delay = apply_filters( 'wppb_success_email_confirmation_redirect_delay', $wppb_cr_delay = 5 );
|
126 |
|
127 |
-
$success_message = apply_filters( 'wppb_success_email_confirmation', '<p class="wppb-success">' . __( 'Your email was successfully confirmed.', 'profile-builder' ) . '</p><!-- .success -->' );
|
128 |
-
$admin_approval_message = apply_filters( 'wppb_email_confirmation_with_admin_approval', '<p class="alert">' . __('Before you can access your account, an administrator needs to approve it. You will be notified via email.', 'profile-builder' ) . '</p>' );
|
129 |
|
130 |
if( ! empty( $redirect_url ) ) {
|
131 |
-
$wppb_cr_success_message
|
|
|
132 |
}
|
133 |
|
134 |
$wppb_general_settings = get_option( 'wppb_general_settings', 'false' );
|
42 |
$wppb_general_settings = get_option( 'wppb_general_settings' );
|
43 |
|
44 |
$signup = ( is_multisite() ? $wpdb->get_row( $wpdb->prepare("SELECT * FROM $wpdb->signups WHERE activation_key = %s", $key) ) : $wpdb->get_row( $wpdb->prepare( "SELECT * FROM ".$wpdb->base_prefix."signups WHERE activation_key = %s", $key ) ) );
|
45 |
+
|
46 |
+
$user_login = ( ( isset( $wppb_general_settings['loginWith'] ) && ( $wppb_general_settings['loginWith'] == 'email' ) ) ? trim( $signup->user_email ) : trim( $signup->user_login ) );
|
47 |
+
|
48 |
+
$user_email = esc_sql( $signup->user_email );
|
49 |
+
/* the password is in hashed form in the signup table so we will add it later */
|
50 |
+
$password = NULL;
|
51 |
+
|
52 |
+
$user_id = username_exists( $user_login );
|
53 |
+
|
54 |
if ( empty( $signup ) )
|
55 |
return apply_filters( 'wppb_register_activate_user_error_message1', '<p class="error">'.__( 'Invalid activation key!', 'profile-builder' ).'</p>');
|
56 |
|
57 |
if ( $signup->active )
|
58 |
if ( empty( $signup->domain ) )
|
59 |
+
return apply_filters( 'wppb_register_activate_user_error_message2', '<p class="error">'.__( 'This username is now active!', 'profile-builder' ).'</p>', $user_id );
|
60 |
|
61 |
$meta = unserialize( $signup->meta );
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
|
|
|
63 |
|
64 |
if ( !$user_id )
|
65 |
$user_id = wppb_create_user( $user_login, $password, $user_email );
|
122 |
$redirect_url = wppb_custom_redirect_url( 'after_success_email_confirmation', '', $user_login );
|
123 |
}
|
124 |
}
|
125 |
+
$redirect_url = apply_filters( 'wppb_success_email_confirmation_redirect_url', $redirect_url, $user_id );
|
126 |
+
$wppb_cr_delay = apply_filters( 'wppb_success_email_confirmation_redirect_delay', $wppb_cr_delay = 5, $user_id );
|
127 |
|
128 |
+
$success_message = apply_filters( 'wppb_success_email_confirmation', '<p class="wppb-success">' . __( 'Your email was successfully confirmed.', 'profile-builder' ) . '</p><!-- .success -->', $user_id );
|
129 |
+
$admin_approval_message = apply_filters( 'wppb_email_confirmation_with_admin_approval', '<p class="alert">' . __('Before you can access your account, an administrator needs to approve it. You will be notified via email.', 'profile-builder' ) . '</p>', $user_id );
|
130 |
|
131 |
if( ! empty( $redirect_url ) ) {
|
132 |
+
$wppb_cr_success_message = apply_filters( 'wppb_success_email_confirmation_redirect_message', '<p class="wppb-success">' . __( 'You will soon be redirected automatically.', 'profile-builder' ) . '</p>' );
|
133 |
+
$wppb_cr_success_message .= apply_filters( 'wppb_success_email_confirmation_redirect', '<meta http-equiv="Refresh" content="'.$wppb_cr_delay.';url='.$redirect_url.'" />', $wppb_cr_delay, $redirect_url, $user_id );
|
134 |
}
|
135 |
|
136 |
$wppb_general_settings = get_option( 'wppb_general_settings', 'false' );
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
-
Version: 2.4.
|
7 |
Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
License: GPL2
|
@@ -73,7 +73,7 @@ function wppb_free_plugin_init() {
|
|
73 |
*
|
74 |
*
|
75 |
*/
|
76 |
-
define('PROFILE_BUILDER_VERSION', '2.4.
|
77 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
78 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
79 |
define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
+
Version: 2.4.6
|
7 |
Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
License: GPL2
|
73 |
*
|
74 |
*
|
75 |
*/
|
76 |
+
define('PROFILE_BUILDER_VERSION', '2.4.6' );
|
77 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
78 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
79 |
define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: user registration, user registration form, user fields, extra user fields,
|
|
5 |
|
6 |
Requires at least: 3.1
|
7 |
Tested up to: 4.6
|
8 |
-
Stable tag: 2.4.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -150,6 +150,10 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
150 |
10. Profile Builder Login Widget
|
151 |
|
152 |
== Changelog ==
|
|
|
|
|
|
|
|
|
153 |
= 2.4.5 =
|
154 |
* Modifications to Addons Page
|
155 |
* Apply filter to email on all forms to allow stripping slashes if necessary
|
5 |
|
6 |
Requires at least: 3.1
|
7 |
Tested up to: 4.6
|
8 |
+
Stable tag: 2.4.6
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
150 |
10. Profile Builder Login Widget
|
151 |
|
152 |
== Changelog ==
|
153 |
+
= 2.4.6 =
|
154 |
+
* CSS modifications to accomodate dark/black themes
|
155 |
+
* Small changes for E-mail Confirmation and Paid Member Subscriptions compatibility
|
156 |
+
|
157 |
= 2.4.5 =
|
158 |
* Modifications to Addons Page
|
159 |
* Apply filter to email on all forms to allow stripping slashes if necessary
|
translation/profile-builder-ja_JP.mo
ADDED
Binary file
|
translation/profile-builder-ja_JP.po
ADDED
@@ -0,0 +1,3835 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Profile Builder in Japanese
|
2 |
+
# This file is distributed under the same license as the Profile Builder package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2015-09-29 11:57:58+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
10 |
+
"X-Generator: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: Profile Builder\n"
|
12 |
+
|
13 |
+
#: ../admin/admin-functions.php:40
|
14 |
+
msgid "Display name publicly as - only appears on the Edit Profile page!"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: ../admin/basic-info.php:37
|
18 |
+
msgid "Friction-less login using %s shortcode or a widget."
|
19 |
+
msgstr ""
|
20 |
+
|
21 |
+
#: ../admin/basic-info.php:41
|
22 |
+
msgid "Beautiful registration forms fully customizable using the %s shortcode."
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: ../admin/basic-info.php:45
|
26 |
+
msgid "Straight forward edit profile forms using %s shortcode."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: ../admin/basic-info.php:58
|
30 |
+
msgid "Allow users to recover their password in the front-end using the %s."
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: ../admin/basic-info.php:130
|
34 |
+
msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: ../admin/general-settings.php:125
|
38 |
+
msgid "\"Admin Approval\" on User Role:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: ../admin/general-settings.php:144
|
42 |
+
msgid "Select on what user roles to activate Admin Approval."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: ../admin/manage-fields.php:109
|
46 |
+
msgid "Display on PB forms"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: ../admin/manage-fields.php:109
|
50 |
+
msgid "PB Login"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: ../admin/manage-fields.php:109
|
54 |
+
msgid "PB Register"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: ../admin/manage-fields.php:109
|
58 |
+
msgid "PB Recover Password"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: ../admin/manage-fields.php:109
|
62 |
+
msgid "Select on which Profile Builder forms to display reCAPTCHA"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: ../admin/manage-fields.php:110
|
66 |
+
msgid "Display on default WP forms"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: ../admin/manage-fields.php:110
|
70 |
+
msgid "Default WP Login"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: ../admin/manage-fields.php:110
|
74 |
+
msgid "Default WP Register"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: ../admin/manage-fields.php:110
|
78 |
+
msgid "Default WP Recover Password"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: ../admin/manage-fields.php:110
|
82 |
+
msgid "Select on which default WP forms to display reCAPTCHA"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: ../admin/manage-fields.php:116 ../admin/manage-fields.php:117
|
86 |
+
msgid "Default option of the field"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: ../admin/manage-fields.php:237
|
90 |
+
msgid "Afghanistan"
|
91 |
+
msgstr "Afghanistan"
|
92 |
+
|
93 |
+
#: ../admin/manage-fields.php:238
|
94 |
+
msgid "Aland Islands"
|
95 |
+
msgstr "Aland Islands"
|
96 |
+
|
97 |
+
#: ../admin/manage-fields.php:239
|
98 |
+
msgid "Albania"
|
99 |
+
msgstr "Albania"
|
100 |
+
|
101 |
+
#: ../admin/manage-fields.php:240
|
102 |
+
msgid "Algeria"
|
103 |
+
msgstr "Algeria"
|
104 |
+
|
105 |
+
#: ../admin/manage-fields.php:241
|
106 |
+
msgid "American Samoa"
|
107 |
+
msgstr "American Samoa"
|
108 |
+
|
109 |
+
#: ../admin/manage-fields.php:242
|
110 |
+
msgid "Andorra"
|
111 |
+
msgstr "Andorra"
|
112 |
+
|
113 |
+
#: ../admin/manage-fields.php:243
|
114 |
+
msgid "Angola"
|
115 |
+
msgstr "Angola"
|
116 |
+
|
117 |
+
#: ../admin/manage-fields.php:244
|
118 |
+
msgid "Anguilla"
|
119 |
+
msgstr "Anguilla"
|
120 |
+
|
121 |
+
#: ../admin/manage-fields.php:245
|
122 |
+
msgid "Antarctica"
|
123 |
+
msgstr "Antarctica"
|
124 |
+
|
125 |
+
#: ../admin/manage-fields.php:246
|
126 |
+
msgid "Antigua and Barbuda"
|
127 |
+
msgstr "Antigua and Barbuda"
|
128 |
+
|
129 |
+
#: ../admin/manage-fields.php:247
|
130 |
+
msgid "Argentina"
|
131 |
+
msgstr "Argentina"
|
132 |
+
|
133 |
+
#: ../admin/manage-fields.php:248
|
134 |
+
msgid "Armenia"
|
135 |
+
msgstr "Armenia"
|
136 |
+
|
137 |
+
#: ../admin/manage-fields.php:249
|
138 |
+
msgid "Aruba"
|
139 |
+
msgstr "Aruba"
|
140 |
+
|
141 |
+
#: ../admin/manage-fields.php:250
|
142 |
+
msgid "Australia"
|
143 |
+
msgstr "Australia"
|
144 |
+
|
145 |
+
#: ../admin/manage-fields.php:251
|
146 |
+
msgid "Austria"
|
147 |
+
msgstr "Austria"
|
148 |
+
|
149 |
+
#: ../admin/manage-fields.php:252
|
150 |
+
msgid "Azerbaijan"
|
151 |
+
msgstr "Azerbaijan"
|
152 |
+
|
153 |
+
#: ../admin/manage-fields.php:253
|
154 |
+
msgid "Bahamas"
|
155 |
+
msgstr "Bahamas"
|
156 |
+
|
157 |
+
#: ../admin/manage-fields.php:254
|
158 |
+
msgid "Bahrain"
|
159 |
+
msgstr "Bahrain"
|
160 |
+
|
161 |
+
#: ../admin/manage-fields.php:255
|
162 |
+
msgid "Bangladesh"
|
163 |
+
msgstr "Bangladesh"
|
164 |
+
|
165 |
+
#: ../admin/manage-fields.php:256
|
166 |
+
msgid "Barbados"
|
167 |
+
msgstr "Barbados"
|
168 |
+
|
169 |
+
#: ../admin/manage-fields.php:257
|
170 |
+
msgid "Belarus"
|
171 |
+
msgstr "Belarus"
|
172 |
+
|
173 |
+
#: ../admin/manage-fields.php:258
|
174 |
+
msgid "Belgium"
|
175 |
+
msgstr "Belgium"
|
176 |
+
|
177 |
+
#: ../admin/manage-fields.php:259
|
178 |
+
msgid "Belize"
|
179 |
+
msgstr "Belize"
|
180 |
+
|
181 |
+
#: ../admin/manage-fields.php:260
|
182 |
+
msgid "Benin"
|
183 |
+
msgstr "Benin"
|
184 |
+
|
185 |
+
#: ../admin/manage-fields.php:261
|
186 |
+
msgid "Bermuda"
|
187 |
+
msgstr "Bermuda"
|
188 |
+
|
189 |
+
#: ../admin/manage-fields.php:262
|
190 |
+
msgid "Bhutan"
|
191 |
+
msgstr "Bhutan"
|
192 |
+
|
193 |
+
#: ../admin/manage-fields.php:263
|
194 |
+
msgid "Bolivia"
|
195 |
+
msgstr "Bolivia"
|
196 |
+
|
197 |
+
#: ../admin/manage-fields.php:264
|
198 |
+
msgid "Bonaire, Saint Eustatius and Saba"
|
199 |
+
msgstr "Bonaire, Saint Eustatius and Saba"
|
200 |
+
|
201 |
+
#: ../admin/manage-fields.php:265
|
202 |
+
msgid "Bosnia and Herzegovina"
|
203 |
+
msgstr "Bosnia and Herzegovina"
|
204 |
+
|
205 |
+
#: ../admin/manage-fields.php:266
|
206 |
+
msgid "Botswana"
|
207 |
+
msgstr "Botswana"
|
208 |
+
|
209 |
+
#: ../admin/manage-fields.php:267
|
210 |
+
msgid "Bouvet Island"
|
211 |
+
msgstr "Bouvet Island"
|
212 |
+
|
213 |
+
#: ../admin/manage-fields.php:268
|
214 |
+
msgid "Brazil"
|
215 |
+
msgstr "Brazil"
|
216 |
+
|
217 |
+
#: ../admin/manage-fields.php:269
|
218 |
+
msgid "British Indian Ocean Territory"
|
219 |
+
msgstr "British Indian Ocean Territory"
|
220 |
+
|
221 |
+
#: ../admin/manage-fields.php:270
|
222 |
+
msgid "British Virgin Islands"
|
223 |
+
msgstr "British Virgin Islands"
|
224 |
+
|
225 |
+
#: ../admin/manage-fields.php:271
|
226 |
+
msgid "Brunei"
|
227 |
+
msgstr "Brunei"
|
228 |
+
|
229 |
+
#: ../admin/manage-fields.php:272
|
230 |
+
msgid "Bulgaria"
|
231 |
+
msgstr "Bulgaria"
|
232 |
+
|
233 |
+
#: ../admin/manage-fields.php:273
|
234 |
+
msgid "Burkina Faso"
|
235 |
+
msgstr "Burkina Faso"
|
236 |
+
|
237 |
+
#: ../admin/manage-fields.php:274
|
238 |
+
msgid "Burundi"
|
239 |
+
msgstr "Burundi"
|
240 |
+
|
241 |
+
#: ../admin/manage-fields.php:275
|
242 |
+
msgid "Cambodia"
|
243 |
+
msgstr "Cambodia"
|
244 |
+
|
245 |
+
#: ../admin/manage-fields.php:276
|
246 |
+
msgid "Cameroon"
|
247 |
+
msgstr "Cameroon"
|
248 |
+
|
249 |
+
#: ../admin/manage-fields.php:277
|
250 |
+
msgid "Canada"
|
251 |
+
msgstr "Canada"
|
252 |
+
|
253 |
+
#: ../admin/manage-fields.php:278
|
254 |
+
msgid "Cape Verde"
|
255 |
+
msgstr "Cape Verde"
|
256 |
+
|
257 |
+
#: ../admin/manage-fields.php:279
|
258 |
+
msgid "Cayman Islands"
|
259 |
+
msgstr "Cayman Islands"
|
260 |
+
|
261 |
+
#: ../admin/manage-fields.php:280
|
262 |
+
msgid "Central African Republic"
|
263 |
+
msgstr "Central African Republic"
|
264 |
+
|
265 |
+
#: ../admin/manage-fields.php:281
|
266 |
+
msgid "Chad"
|
267 |
+
msgstr "Chad"
|
268 |
+
|
269 |
+
#: ../admin/manage-fields.php:282
|
270 |
+
msgid "Chile"
|
271 |
+
msgstr "Chile"
|
272 |
+
|
273 |
+
#: ../admin/manage-fields.php:283
|
274 |
+
msgid "China"
|
275 |
+
msgstr "China"
|
276 |
+
|
277 |
+
#: ../admin/manage-fields.php:284
|
278 |
+
msgid "Christmas Island"
|
279 |
+
msgstr "Christmas Island"
|
280 |
+
|
281 |
+
#: ../admin/manage-fields.php:285
|
282 |
+
msgid "Cocos Islands"
|
283 |
+
msgstr "Cocos Islands"
|
284 |
+
|
285 |
+
#: ../admin/manage-fields.php:286
|
286 |
+
msgid "Colombia"
|
287 |
+
msgstr "Colombia"
|
288 |
+
|
289 |
+
#: ../admin/manage-fields.php:287
|
290 |
+
msgid "Comoros"
|
291 |
+
msgstr "Comoros"
|
292 |
+
|
293 |
+
#: ../admin/manage-fields.php:288
|
294 |
+
msgid "Cook Islands"
|
295 |
+
msgstr "Cook Islands"
|
296 |
+
|
297 |
+
#: ../admin/manage-fields.php:289
|
298 |
+
msgid "Costa Rica"
|
299 |
+
msgstr "Costa Rica"
|
300 |
+
|
301 |
+
#: ../admin/manage-fields.php:290
|
302 |
+
msgid "Croatia"
|
303 |
+
msgstr "Croatia"
|
304 |
+
|
305 |
+
#: ../admin/manage-fields.php:291
|
306 |
+
msgid "Cuba"
|
307 |
+
msgstr "Cuba"
|
308 |
+
|
309 |
+
#: ../admin/manage-fields.php:292
|
310 |
+
msgid "Curacao"
|
311 |
+
msgstr "Curacao"
|
312 |
+
|
313 |
+
#: ../admin/manage-fields.php:293
|
314 |
+
msgid "Cyprus"
|
315 |
+
msgstr "Cyprus"
|
316 |
+
|
317 |
+
#: ../admin/manage-fields.php:294
|
318 |
+
msgid "Czech Republic"
|
319 |
+
msgstr "Czech Republic"
|
320 |
+
|
321 |
+
#: ../admin/manage-fields.php:295
|
322 |
+
msgid "Democratic Republic of the Congo"
|
323 |
+
msgstr "Democratic Republic of the Congo"
|
324 |
+
|
325 |
+
#: ../admin/manage-fields.php:296
|
326 |
+
msgid "Denmark"
|
327 |
+
msgstr "Denmark"
|
328 |
+
|
329 |
+
#: ../admin/manage-fields.php:297
|
330 |
+
msgid "Djibouti"
|
331 |
+
msgstr "Djibouti"
|
332 |
+
|
333 |
+
#: ../admin/manage-fields.php:298
|
334 |
+
msgid "Dominica"
|
335 |
+
msgstr "Dominica"
|
336 |
+
|
337 |
+
#: ../admin/manage-fields.php:299
|
338 |
+
msgid "Dominican Republic"
|
339 |
+
msgstr "Dominican Republic"
|
340 |
+
|
341 |
+
#: ../admin/manage-fields.php:300
|
342 |
+
msgid "East Timor"
|
343 |
+
msgstr "East Timor"
|
344 |
+
|
345 |
+
#: ../admin/manage-fields.php:301
|
346 |
+
msgid "Ecuador"
|
347 |
+
msgstr "Ecuador"
|
348 |
+
|
349 |
+
#: ../admin/manage-fields.php:302
|
350 |
+
msgid "Egypt"
|
351 |
+
msgstr "Egypt"
|
352 |
+
|
353 |
+
#: ../admin/manage-fields.php:303
|
354 |
+
msgid "El Salvador"
|
355 |
+
msgstr "El Salvador"
|
356 |
+
|
357 |
+
#: ../admin/manage-fields.php:304
|
358 |
+
msgid "Equatorial Guinea"
|
359 |
+
msgstr "Equatorial Guinea"
|
360 |
+
|
361 |
+
#: ../admin/manage-fields.php:305
|
362 |
+
msgid "Eritrea"
|
363 |
+
msgstr "Eritrea"
|
364 |
+
|
365 |
+
#: ../admin/manage-fields.php:306
|
366 |
+
msgid "Estonia"
|
367 |
+
msgstr "Estonia"
|
368 |
+
|
369 |
+
#: ../admin/manage-fields.php:307
|
370 |
+
msgid "Ethiopia"
|
371 |
+
msgstr "Ethiopia"
|
372 |
+
|
373 |
+
#: ../admin/manage-fields.php:308
|
374 |
+
msgid "Falkland Islands"
|
375 |
+
msgstr "Falkland Islands"
|
376 |
+
|
377 |
+
#: ../admin/manage-fields.php:309
|
378 |
+
msgid "Faroe Islands"
|
379 |
+
msgstr "Faroe Islands"
|
380 |
+
|
381 |
+
#: ../admin/manage-fields.php:310
|
382 |
+
msgid "Fiji"
|
383 |
+
msgstr "Fiji"
|
384 |
+
|
385 |
+
#: ../admin/manage-fields.php:311
|
386 |
+
msgid "Finland"
|
387 |
+
msgstr "Finland"
|
388 |
+
|
389 |
+
#: ../admin/manage-fields.php:312
|
390 |
+
msgid "France"
|
391 |
+
msgstr "France"
|
392 |
+
|
393 |
+
#: ../admin/manage-fields.php:313
|
394 |
+
msgid "French Guiana"
|
395 |
+
msgstr "French Guiana"
|
396 |
+
|
397 |
+
#: ../admin/manage-fields.php:314
|
398 |
+
msgid "French Polynesia"
|
399 |
+
msgstr "French Polynesia"
|
400 |
+
|
401 |
+
#: ../admin/manage-fields.php:315
|
402 |
+
msgid "French Southern Territories"
|
403 |
+
msgstr "French Southern Territories"
|
404 |
+
|
405 |
+
#: ../admin/manage-fields.php:316
|
406 |
+
msgid "Gabon"
|
407 |
+
msgstr "Gabon"
|
408 |
+
|
409 |
+
#: ../admin/manage-fields.php:317
|
410 |
+
msgid "Gambia"
|
411 |
+
msgstr "Gambia"
|
412 |
+
|
413 |
+
#: ../admin/manage-fields.php:318
|
414 |
+
msgid "Georgia"
|
415 |
+
msgstr "Georgia"
|
416 |
+
|
417 |
+
#: ../admin/manage-fields.php:319
|
418 |
+
msgid "Germany"
|
419 |
+
msgstr "Germany"
|
420 |
+
|
421 |
+
#: ../admin/manage-fields.php:320
|
422 |
+
msgid "Ghana"
|
423 |
+
msgstr "Ghana"
|
424 |
+
|
425 |
+
#: ../admin/manage-fields.php:321
|
426 |
+
msgid "Gibraltar"
|
427 |
+
msgstr "Gibraltar"
|
428 |
+
|
429 |
+
#: ../admin/manage-fields.php:322
|
430 |
+
msgid "Greece"
|
431 |
+
msgstr "Greece"
|
432 |
+
|
433 |
+
#: ../admin/manage-fields.php:323
|
434 |
+
msgid "Greenland"
|
435 |
+
msgstr "Greenland"
|
436 |
+
|
437 |
+
#: ../admin/manage-fields.php:324
|
438 |
+
msgid "Grenada"
|
439 |
+
msgstr "Grenada"
|
440 |
+
|
441 |
+
#: ../admin/manage-fields.php:325
|
442 |
+
msgid "Guadeloupe"
|
443 |
+
msgstr "Guadeloupe"
|
444 |
+
|
445 |
+
#: ../admin/manage-fields.php:326
|
446 |
+
msgid "Guam"
|
447 |
+
msgstr "Guam"
|
448 |
+
|
449 |
+
#: ../admin/manage-fields.php:327
|
450 |
+
msgid "Guatemala"
|
451 |
+
msgstr "Guatemala"
|
452 |
+
|
453 |
+
#: ../admin/manage-fields.php:328
|
454 |
+
msgid "Guernsey"
|
455 |
+
msgstr "Guernsey"
|
456 |
+
|
457 |
+
#: ../admin/manage-fields.php:329
|
458 |
+
msgid "Guinea"
|
459 |
+
msgstr "Guinea"
|
460 |
+
|
461 |
+
#: ../admin/manage-fields.php:330
|
462 |
+
msgid "Guinea-Bissau"
|
463 |
+
msgstr "Guinea-Bissau"
|
464 |
+
|
465 |
+
#: ../admin/manage-fields.php:331
|
466 |
+
msgid "Guyana"
|
467 |
+
msgstr "Guyana"
|
468 |
+
|
469 |
+
#: ../admin/manage-fields.php:332
|
470 |
+
msgid "Haiti"
|
471 |
+
msgstr "Haiti"
|
472 |
+
|
473 |
+
#: ../admin/manage-fields.php:333
|
474 |
+
msgid "Heard Island and McDonald Islands"
|
475 |
+
msgstr "Heard Island and McDonald Islands"
|
476 |
+
|
477 |
+
#: ../admin/manage-fields.php:334
|
478 |
+
msgid "Honduras"
|
479 |
+
msgstr "Honduras"
|
480 |
+
|
481 |
+
#: ../admin/manage-fields.php:335
|
482 |
+
msgid "Hong Kong"
|
483 |
+
msgstr "Hong Kong"
|
484 |
+
|
485 |
+
#: ../admin/manage-fields.php:336
|
486 |
+
msgid "Hungary"
|
487 |
+
msgstr "Hungary"
|
488 |
+
|
489 |
+
#: ../admin/manage-fields.php:337
|
490 |
+
msgid "Iceland"
|
491 |
+
msgstr "Iceland"
|
492 |
+
|
493 |
+
#: ../admin/manage-fields.php:338
|
494 |
+
msgid "India"
|
495 |
+
msgstr "India"
|
496 |
+
|
497 |
+
#: ../admin/manage-fields.php:339
|
498 |
+
msgid "Indonesia"
|
499 |
+
msgstr "Indonesia"
|
500 |
+
|
501 |
+
#: ../admin/manage-fields.php:340
|
502 |
+
msgid "Iran"
|
503 |
+
msgstr "Iran"
|
504 |
+
|
505 |
+
#: ../admin/manage-fields.php:341
|
506 |
+
msgid "Iraq"
|
507 |
+
msgstr "Iraq"
|
508 |
+
|
509 |
+
#: ../admin/manage-fields.php:342
|
510 |
+
msgid "Ireland"
|
511 |
+
msgstr "Ireland"
|
512 |
+
|
513 |
+
#: ../admin/manage-fields.php:343
|
514 |
+
msgid "Isle of Man"
|
515 |
+
msgstr "Isle of Man"
|
516 |
+
|
517 |
+
#: ../admin/manage-fields.php:344
|
518 |
+
msgid "Israel"
|
519 |
+
msgstr "Israel"
|
520 |
+
|
521 |
+
#: ../admin/manage-fields.php:345
|
522 |
+
msgid "Italy"
|
523 |
+
msgstr "Italy"
|
524 |
+
|
525 |
+
#: ../admin/manage-fields.php:346
|
526 |
+
msgid "Ivory Coast"
|
527 |
+
msgstr "Ivory Coast"
|
528 |
+
|
529 |
+
#: ../admin/manage-fields.php:347
|
530 |
+
msgid "Jamaica"
|
531 |
+
msgstr "Jamaica"
|
532 |
+
|
533 |
+
#: ../admin/manage-fields.php:348
|
534 |
+
msgid "Japan"
|
535 |
+
msgstr "Japan"
|
536 |
+
|
537 |
+
#: ../admin/manage-fields.php:349
|
538 |
+
msgid "Jersey"
|
539 |
+
msgstr "Jersey"
|
540 |
+
|
541 |
+
#: ../admin/manage-fields.php:350
|
542 |
+
msgid "Jordan"
|
543 |
+
msgstr "Jordan"
|
544 |
+
|
545 |
+
#: ../admin/manage-fields.php:351
|
546 |
+
msgid "Kazakhstan"
|
547 |
+
msgstr "Kazakhstan"
|
548 |
+
|
549 |
+
#: ../admin/manage-fields.php:352
|
550 |
+
msgid "Kenya"
|
551 |
+
msgstr "Kenya"
|
552 |
+
|
553 |
+
#: ../admin/manage-fields.php:353
|
554 |
+
msgid "Kiribati"
|
555 |
+
msgstr "Kiribati"
|
556 |
+
|
557 |
+
#: ../admin/manage-fields.php:354
|
558 |
+
msgid "Kosovo"
|
559 |
+
msgstr "Kosovo"
|
560 |
+
|
561 |
+
#: ../admin/manage-fields.php:355
|
562 |
+
msgid "Kuwait"
|
563 |
+
msgstr "Kuwait"
|
564 |
+
|
565 |
+
#: ../admin/manage-fields.php:356
|
566 |
+
msgid "Kyrgyzstan"
|
567 |
+
msgstr "Kyrgyzstan"
|
568 |
+
|
569 |
+
#: ../admin/manage-fields.php:357
|
570 |
+
msgid "Laos"
|
571 |
+
msgstr "Laos"
|
572 |
+
|
573 |
+
#: ../admin/manage-fields.php:358
|
574 |
+
msgid "Latvia"
|
575 |
+
msgstr "Latvia"
|
576 |
+
|
577 |
+
#: ../admin/manage-fields.php:359
|
578 |
+
msgid "Lebanon"
|
579 |
+
msgstr "Lebanon"
|
580 |
+
|
581 |
+
#: ../admin/manage-fields.php:360
|
582 |
+
msgid "Lesotho"
|
583 |
+
msgstr "Lesotho"
|
584 |
+
|
585 |
+
#: ../admin/manage-fields.php:361
|
586 |
+
msgid "Liberia"
|
587 |
+
msgstr "Liberia"
|
588 |
+
|
589 |
+
#: ../admin/manage-fields.php:362
|
590 |
+
msgid "Libya"
|
591 |
+
msgstr "Libya"
|
592 |
+
|
593 |
+
#: ../admin/manage-fields.php:363
|
594 |
+
msgid "Liechtenstein"
|
595 |
+
msgstr "Liechtenstein"
|
596 |
+
|
597 |
+
#: ../admin/manage-fields.php:364
|
598 |
+
msgid "Lithuania"
|
599 |
+
msgstr "Lithuania"
|
600 |
+
|
601 |
+
#: ../admin/manage-fields.php:365
|
602 |
+
msgid "Luxembourg"
|
603 |
+
msgstr "Luxembourg"
|
604 |
+
|
605 |
+
#: ../admin/manage-fields.php:366
|
606 |
+
msgid "Macao"
|
607 |
+
msgstr "Macao"
|
608 |
+
|
609 |
+
#: ../admin/manage-fields.php:367
|
610 |
+
msgid "Macedonia"
|
611 |
+
msgstr "Macedonia"
|
612 |
+
|
613 |
+
#: ../admin/manage-fields.php:368
|
614 |
+
msgid "Madagascar"
|
615 |
+
msgstr "Madagascar"
|
616 |
+
|
617 |
+
#: ../admin/manage-fields.php:369
|
618 |
+
msgid "Malawi"
|
619 |
+
msgstr "Malawi"
|
620 |
+
|
621 |
+
#: ../admin/manage-fields.php:370
|
622 |
+
msgid "Malaysia"
|
623 |
+
msgstr "Malaysia"
|
624 |
+
|
625 |
+
#: ../admin/manage-fields.php:371
|
626 |
+
msgid "Maldives"
|
627 |
+
msgstr "Maldives"
|
628 |
+
|
629 |
+
#: ../admin/manage-fields.php:372
|
630 |
+
msgid "Mali"
|
631 |
+
msgstr "Mali"
|
632 |
+
|
633 |
+
#: ../admin/manage-fields.php:373
|
634 |
+
msgid "Malta"
|
635 |
+
msgstr "Malta"
|
636 |
+
|
637 |
+
#: ../admin/manage-fields.php:374
|
638 |
+
msgid "Marshall Islands"
|
639 |
+
msgstr "Marshall Islands"
|
640 |
+
|
641 |
+
#: ../admin/manage-fields.php:375
|
642 |
+
msgid "Martinique"
|
643 |
+
msgstr "Martinique"
|
644 |
+
|
645 |
+
#: ../admin/manage-fields.php:376
|
646 |
+
msgid "Mauritania"
|
647 |
+
msgstr "Mauritania"
|
648 |
+
|
649 |
+
#: ../admin/manage-fields.php:377
|
650 |
+
msgid "Mauritius"
|
651 |
+
msgstr "Mauritius"
|
652 |
+
|
653 |
+
#: ../admin/manage-fields.php:378
|
654 |
+
msgid "Mayotte"
|
655 |
+
msgstr "Mayotte"
|
656 |
+
|
657 |
+
#: ../admin/manage-fields.php:379
|
658 |
+
msgid "Mexico"
|
659 |
+
msgstr "Mexico"
|
660 |
+
|
661 |
+
#: ../admin/manage-fields.php:380
|
662 |
+
msgid "Micronesia"
|
663 |
+
msgstr "Micronesia"
|
664 |
+
|
665 |
+
#: ../admin/manage-fields.php:381
|
666 |
+
msgid "Moldova"
|
667 |
+
msgstr "Moldova"
|
668 |
+
|
669 |
+
#: ../admin/manage-fields.php:382
|
670 |
+
msgid "Monaco"
|
671 |
+
msgstr "Monaco"
|
672 |
+
|
673 |
+
#: ../admin/manage-fields.php:383
|
674 |
+
msgid "Mongolia"
|
675 |
+
msgstr "Mongolia"
|
676 |
+
|
677 |
+
#: ../admin/manage-fields.php:384
|
678 |
+
msgid "Montenegro"
|
679 |
+
msgstr "Montenegro"
|
680 |
+
|
681 |
+
#: ../admin/manage-fields.php:385
|
682 |
+
msgid "Montserrat"
|
683 |
+
msgstr "Montserrat"
|
684 |
+
|
685 |
+
#: ../admin/manage-fields.php:386
|
686 |
+
msgid "Morocco"
|
687 |
+
msgstr "Morocco"
|
688 |
+
|
689 |
+
#: ../admin/manage-fields.php:387
|
690 |
+
msgid "Mozambique"
|
691 |
+
msgstr "Mozambique"
|
692 |
+
|
693 |
+
#: ../admin/manage-fields.php:388
|
694 |
+
msgid "Myanmar"
|
695 |
+
msgstr "Myanmar"
|
696 |
+
|
697 |
+
#: ../admin/manage-fields.php:389
|
698 |
+
msgid "Namibia"
|
699 |
+
msgstr "Namibia"
|
700 |
+
|
701 |
+
#: ../admin/manage-fields.php:390
|
702 |
+
msgid "Nauru"
|
703 |
+
msgstr "Nauru"
|
704 |
+
|
705 |
+
#: ../admin/manage-fields.php:391
|
706 |
+
msgid "Nepal"
|
707 |
+
msgstr "Nepal"
|
708 |
+
|
709 |
+
#: ../admin/manage-fields.php:392
|
710 |
+
msgid "Netherlands"
|
711 |
+
msgstr "Netherlands"
|
712 |
+
|
713 |
+
#: ../admin/manage-fields.php:393
|
714 |
+
msgid "New Caledonia"
|
715 |
+
msgstr "New Caledonia"
|
716 |
+
|
717 |
+
#: ../admin/manage-fields.php:394
|
718 |
+
msgid "New Zealand"
|
719 |
+
msgstr "New Zealand"
|
720 |
+
|
721 |
+
#: ../admin/manage-fields.php:395
|
722 |
+
msgid "Nicaragua"
|
723 |
+
msgstr "Nicaragua"
|
724 |
+
|
725 |
+
#: ../admin/manage-fields.php:396
|
726 |
+
msgid "Niger"
|
727 |
+
msgstr "Niger"
|
728 |
+
|
729 |
+
#: ../admin/manage-fields.php:397
|
730 |
+
msgid "Nigeria"
|
731 |
+
msgstr "Nigeria"
|
732 |
+
|
733 |
+
#: ../admin/manage-fields.php:398
|
734 |
+
msgid "Niue"
|
735 |
+
msgstr "Niue"
|
736 |
+
|
737 |
+
#: ../admin/manage-fields.php:399
|
738 |
+
msgid "Norfolk Island"
|
739 |
+
msgstr "Norfolk Island"
|
740 |
+
|
741 |
+
#: ../admin/manage-fields.php:400
|
742 |
+
msgid "North Korea"
|
743 |
+
msgstr "North Korea"
|
744 |
+
|
745 |
+
#: ../admin/manage-fields.php:401
|
746 |
+
msgid "Northern Mariana Islands"
|
747 |
+
msgstr "Northern Mariana Islands"
|
748 |
+
|
749 |
+
#: ../admin/manage-fields.php:402
|
750 |
+
msgid "Norway"
|
751 |
+
msgstr "Norway"
|
752 |
+
|
753 |
+
#: ../admin/manage-fields.php:403
|
754 |
+
msgid "Oman"
|
755 |
+
msgstr "Oman"
|
756 |
+
|
757 |
+
#: ../admin/manage-fields.php:404
|
758 |
+
msgid "Pakistan"
|
759 |
+
msgstr "Pakistan"
|
760 |
+
|
761 |
+
#: ../admin/manage-fields.php:405
|
762 |
+
msgid "Palau"
|
763 |
+
msgstr "Palau"
|
764 |
+
|
765 |
+
#: ../admin/manage-fields.php:406
|
766 |
+
msgid "Palestinian Territory"
|
767 |
+
msgstr "Palestinian Territory"
|
768 |
+
|
769 |
+
#: ../admin/manage-fields.php:407
|
770 |
+
msgid "Panama"
|
771 |
+
msgstr "Panama"
|
772 |
+
|
773 |
+
#: ../admin/manage-fields.php:408
|
774 |
+
msgid "Papua New Guinea"
|
775 |
+
msgstr "Papua New Guinea"
|
776 |
+
|
777 |
+
#: ../admin/manage-fields.php:409
|
778 |
+
msgid "Paraguay"
|
779 |
+
msgstr "Paraguay"
|
780 |
+
|
781 |
+
#: ../admin/manage-fields.php:410
|
782 |
+
msgid "Peru"
|
783 |
+
msgstr "Peru"
|
784 |
+
|
785 |
+
#: ../admin/manage-fields.php:411
|
786 |
+
msgid "Philippines"
|
787 |
+
msgstr "Philippines"
|
788 |
+
|
789 |
+
#: ../admin/manage-fields.php:412
|
790 |
+
msgid "Pitcairn"
|
791 |
+
msgstr "Pitcairn"
|
792 |
+
|
793 |
+
#: ../admin/manage-fields.php:413
|
794 |
+
msgid "Poland"
|
795 |
+
msgstr "Poland"
|
796 |
+
|
797 |
+
#: ../admin/manage-fields.php:414
|
798 |
+
msgid "Portugal"
|
799 |
+
msgstr "Portugal"
|
800 |
+
|
801 |
+
#: ../admin/manage-fields.php:415
|
802 |
+
msgid "Puerto Rico"
|
803 |
+
msgstr "Puerto Rico"
|
804 |
+
|
805 |
+
#: ../admin/manage-fields.php:416
|
806 |
+
msgid "Qatar"
|
807 |
+
msgstr "Qatar"
|
808 |
+
|
809 |
+
#: ../admin/manage-fields.php:417
|
810 |
+
msgid "Republic of the Congo"
|
811 |
+
msgstr "Republic of the Congo"
|
812 |
+
|
813 |
+
#: ../admin/manage-fields.php:418
|
814 |
+
msgid "Reunion"
|
815 |
+
msgstr "Reunion"
|
816 |
+
|
817 |
+
#: ../admin/manage-fields.php:419
|
818 |
+
msgid "Romania"
|
819 |
+
msgstr "Romania"
|
820 |
+
|
821 |
+
#: ../admin/manage-fields.php:420
|
822 |
+
msgid "Russia"
|
823 |
+
msgstr "Russia"
|
824 |
+
|
825 |
+
#: ../admin/manage-fields.php:421
|
826 |
+
msgid "Rwanda"
|
827 |
+
msgstr "Rwanda"
|
828 |
+
|
829 |
+
#: ../admin/manage-fields.php:422
|
830 |
+
msgid "Saint Barthelemy"
|
831 |
+
msgstr "Saint Barthelemy"
|
832 |
+
|
833 |
+
#: ../admin/manage-fields.php:423
|
834 |
+
msgid "Saint Helena"
|
835 |
+
msgstr "Saint Helena"
|
836 |
+
|
837 |
+
#: ../admin/manage-fields.php:424
|
838 |
+
msgid "Saint Kitts and Nevis"
|
839 |
+
msgstr "Saint Kitts and Nevis"
|
840 |
+
|
841 |
+
#: ../admin/manage-fields.php:425
|
842 |
+
msgid "Saint Lucia"
|
843 |
+
msgstr "Saint Lucia"
|
844 |
+
|
845 |
+
#: ../admin/manage-fields.php:426
|
846 |
+
msgid "Saint Martin"
|
847 |
+
msgstr "Saint Martin"
|
848 |
+
|
849 |
+
#: ../admin/manage-fields.php:427
|
850 |
+
msgid "Saint Pierre and Miquelon"
|
851 |
+
msgstr "Saint Pierre and Miquelon"
|
852 |
+
|
853 |
+
#: ../admin/manage-fields.php:428
|
854 |
+
msgid "Saint Vincent and the Grenadines"
|
855 |
+
msgstr "Saint Vincent and the Grenadines"
|
856 |
+
|
857 |
+
#: ../admin/manage-fields.php:429
|
858 |
+
msgid "Samoa"
|
859 |
+
msgstr "Samoa"
|
860 |
+
|
861 |
+
#: ../admin/manage-fields.php:430
|
862 |
+
msgid "San Marino"
|
863 |
+
msgstr "San Marino"
|
864 |
+
|
865 |
+
#: ../admin/manage-fields.php:431
|
866 |
+
msgid "Sao Tome and Principe"
|
867 |
+
msgstr "Sao Tome and Principe"
|
868 |
+
|
869 |
+
#: ../admin/manage-fields.php:432
|
870 |
+
msgid "Saudi Arabia"
|
871 |
+
msgstr "Saudi Arabia"
|
872 |
+
|
873 |
+
#: ../admin/manage-fields.php:433
|
874 |
+
msgid "Senegal"
|
875 |
+
msgstr "Senegal"
|
876 |
+
|
877 |
+
#: ../admin/manage-fields.php:434
|
878 |
+
msgid "Serbia"
|
879 |
+
msgstr "Serbia"
|
880 |
+
|
881 |
+
#: ../admin/manage-fields.php:435
|
882 |
+
msgid "Seychelles"
|
883 |
+
msgstr "Seychelles"
|
884 |
+
|
885 |
+
#: ../admin/manage-fields.php:436
|
886 |
+
msgid "Sierra Leone"
|
887 |
+
msgstr "Sierra Leone"
|
888 |
+
|
889 |
+
#: ../admin/manage-fields.php:437
|
890 |
+
msgid "Singapore"
|
891 |
+
msgstr "Singapore"
|
892 |
+
|
893 |
+
#: ../admin/manage-fields.php:438
|
894 |
+
msgid "Sint Maarten"
|
895 |
+
msgstr "Sint Maarten"
|
896 |
+
|
897 |
+
#: ../admin/manage-fields.php:439
|
898 |
+
msgid "Slovakia"
|
899 |
+
msgstr "Slovakia"
|
900 |
+
|
901 |
+
#: ../admin/manage-fields.php:440
|
902 |
+
msgid "Slovenia"
|
903 |
+
msgstr "Slovenia"
|
904 |
+
|
905 |
+
#: ../admin/manage-fields.php:441
|
906 |
+
msgid "Solomon Islands"
|
907 |
+
msgstr "Solomon Islands"
|
908 |
+
|
909 |
+
#: ../admin/manage-fields.php:442
|
910 |
+
msgid "Somalia"
|
911 |
+
msgstr "Somalia"
|
912 |
+
|
913 |
+
#: ../admin/manage-fields.php:443
|
914 |
+
msgid "South Africa"
|
915 |
+
msgstr "South Africa"
|
916 |
+
|
917 |
+
#: ../admin/manage-fields.php:444
|
918 |
+
msgid "South Georgia and the South Sandwich Islands"
|
919 |
+
msgstr "South Georgia and the South Sandwich Islands"
|
920 |
+
|
921 |
+
#: ../admin/manage-fields.php:445
|
922 |
+
msgid "South Korea"
|
923 |
+
msgstr "South Korea"
|
924 |
+
|
925 |
+
#: ../admin/manage-fields.php:446
|
926 |
+
msgid "South Sudan"
|
927 |
+
msgstr "South Sudan"
|
928 |
+
|
929 |
+
#: ../admin/manage-fields.php:447
|
930 |
+
msgid "Spain"
|
931 |
+
msgstr "Spain"
|
932 |
+
|
933 |
+
#: ../admin/manage-fields.php:448
|
934 |
+
msgid "Sri Lanka"
|
935 |
+
msgstr "Sri Lanka"
|
936 |
+
|
937 |
+
#: ../admin/manage-fields.php:449
|
938 |
+
msgid "Sudan"
|
939 |
+
msgstr "Sudan"
|
940 |
+
|
941 |
+
#: ../admin/manage-fields.php:450
|
942 |
+
msgid "Suriname"
|
943 |
+
msgstr "Suriname"
|
944 |
+
|
945 |
+
#: ../admin/manage-fields.php:451
|
946 |
+
msgid "Svalbard and Jan Mayen"
|
947 |
+
msgstr "Svalbard and Jan Mayen"
|
948 |
+
|
949 |
+
#: ../admin/manage-fields.php:452
|
950 |
+
msgid "Swaziland"
|
951 |
+
msgstr "Swaziland"
|
952 |
+
|
953 |
+
#: ../admin/manage-fields.php:453
|
954 |
+
msgid "Sweden"
|
955 |
+
msgstr "Sweden"
|
956 |
+
|
957 |
+
#: ../admin/manage-fields.php:454
|
958 |
+
msgid "Switzerland"
|
959 |
+
msgstr "Switzerland"
|
960 |
+
|
961 |
+
#: ../admin/manage-fields.php:455
|
962 |
+
msgid "Syria"
|
963 |
+
msgstr "Syria"
|
964 |
+
|
965 |
+
#: ../admin/manage-fields.php:456
|
966 |
+
msgid "Taiwan"
|
967 |
+
msgstr "Taiwan"
|
968 |
+
|
969 |
+
#: ../admin/manage-fields.php:457
|
970 |
+
msgid "Tajikistan"
|
971 |
+
msgstr "Tajikistan"
|
972 |
+
|
973 |
+
#: ../admin/manage-fields.php:458
|
974 |
+
msgid "Tanzania"
|
975 |
+
msgstr "Tanzania"
|
976 |
+
|
977 |
+
#: ../admin/manage-fields.php:459
|
978 |
+
msgid "Thailand"
|
979 |
+
msgstr "Thailand"
|
980 |
+
|
981 |
+
#: ../admin/manage-fields.php:460
|
982 |
+
msgid "Togo"
|
983 |
+
msgstr "Togo"
|
984 |
+
|
985 |
+
#: ../admin/manage-fields.php:461
|
986 |
+
msgid "Tokelau"
|
987 |
+
msgstr "Tokelau"
|
988 |
+
|
989 |
+
#: ../admin/manage-fields.php:462
|
990 |
+
msgid "Tonga"
|
991 |
+
msgstr "Tonga"
|
992 |
+
|
993 |
+
#: ../admin/manage-fields.php:463
|
994 |
+
msgid "Trinidad and Tobago"
|
995 |
+
msgstr "Trinidad and Tobago"
|
996 |
+
|
997 |
+
#: ../admin/manage-fields.php:464
|
998 |
+
msgid "Tunisia"
|
999 |
+
msgstr "Tunisia"
|
1000 |
+
|
1001 |
+
#: ../admin/manage-fields.php:465
|
1002 |
+
msgid "Turkey"
|
1003 |
+
msgstr "Turkey"
|
1004 |
+
|
1005 |
+
#: ../admin/manage-fields.php:466
|
1006 |
+
msgid "Turkmenistan"
|
1007 |
+
msgstr "Turkmenistan"
|
1008 |
+
|
1009 |
+
#: ../admin/manage-fields.php:467
|
1010 |
+
msgid "Turks and Caicos Islands"
|
1011 |
+
msgstr "Turks and Caicos Islands"
|
1012 |
+
|
1013 |
+
#: ../admin/manage-fields.php:468
|
1014 |
+
msgid "Tuvalu"
|
1015 |
+
msgstr "Tuvalu"
|
1016 |
+
|
1017 |
+
#: ../admin/manage-fields.php:469
|
1018 |
+
msgid "U.S. Virgin Islands"
|
1019 |
+
msgstr "U.S. Virgin Islands"
|
1020 |
+
|
1021 |
+
#: ../admin/manage-fields.php:470
|
1022 |
+
msgid "Uganda"
|
1023 |
+
msgstr "Uganda"
|
1024 |
+
|
1025 |
+
#: ../admin/manage-fields.php:471
|
1026 |
+
msgid "Ukraine"
|
1027 |
+
msgstr "Ukraine"
|
1028 |
+
|
1029 |
+
#: ../admin/manage-fields.php:472
|
1030 |
+
msgid "United Arab Emirates"
|
1031 |
+
msgstr "United Arab Emirates"
|
1032 |
+
|
1033 |
+
#: ../admin/manage-fields.php:473
|
1034 |
+
msgid "United Kingdom"
|
1035 |
+
msgstr "United Kingdom"
|
1036 |
+
|
1037 |
+
#: ../admin/manage-fields.php:474
|
1038 |
+
msgid "United States"
|
1039 |
+
msgstr "United States"
|
1040 |
+
|
1041 |
+
#: ../admin/manage-fields.php:475
|
1042 |
+
msgid "United States Minor Outlying Islands"
|
1043 |
+
msgstr "United States Minor Outlying Islands"
|
1044 |
+
|
1045 |
+
#: ../admin/manage-fields.php:476
|
1046 |
+
msgid "Uruguay"
|
1047 |
+
msgstr "Uruguay"
|
1048 |
+
|
1049 |
+
#: ../admin/manage-fields.php:477
|
1050 |
+
msgid "Uzbekistan"
|
1051 |
+
msgstr "Uzbekistan"
|
1052 |
+
|
1053 |
+
#: ../admin/manage-fields.php:478
|
1054 |
+
msgid "Vanuatu"
|
1055 |
+
msgstr "Vanuatu"
|
1056 |
+
|
1057 |
+
#: ../admin/manage-fields.php:479
|
1058 |
+
msgid "Vatican"
|
1059 |
+
msgstr "Vatican"
|
1060 |
+
|
1061 |
+
#: ../admin/manage-fields.php:480
|
1062 |
+
msgid "Venezuela"
|
1063 |
+
msgstr "Venezuela"
|
1064 |
+
|
1065 |
+
#: ../admin/manage-fields.php:481
|
1066 |
+
msgid "Vietnam"
|
1067 |
+
msgstr "Vietnam"
|
1068 |
+
|
1069 |
+
#: ../admin/manage-fields.php:482
|
1070 |
+
msgid "Wallis and Futuna"
|
1071 |
+
msgstr "Wallis and Futuna"
|
1072 |
+
|
1073 |
+
#: ../admin/manage-fields.php:483
|
1074 |
+
msgid "Western Sahara"
|
1075 |
+
msgstr "Western Sahara"
|
1076 |
+
|
1077 |
+
#: ../admin/manage-fields.php:484
|
1078 |
+
msgid "Yemen"
|
1079 |
+
msgstr "Yemen"
|
1080 |
+
|
1081 |
+
#: ../admin/manage-fields.php:485
|
1082 |
+
msgid "Zambia"
|
1083 |
+
msgstr "Zambia"
|
1084 |
+
|
1085 |
+
#: ../admin/manage-fields.php:486
|
1086 |
+
msgid "Zimbabwe"
|
1087 |
+
msgstr "Zimbabwe"
|
1088 |
+
|
1089 |
+
#: ../admin/manage-fields.php:843
|
1090 |
+
msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
|
1091 |
+
msgstr ""
|
1092 |
+
|
1093 |
+
#: ../assets/misc/plugin-compatibilities.php:241
|
1094 |
+
msgid "Your account has to be confirmed by an administrator before you can log in."
|
1095 |
+
msgstr ""
|
1096 |
+
|
1097 |
+
#: ../features/admin-approval/admin-approval.php:203
|
1098 |
+
msgid "Your account has been successfully created!"
|
1099 |
+
msgstr ""
|
1100 |
+
|
1101 |
+
#: ../features/functions.php:607
|
1102 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:374
|
1103 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:379
|
1104 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:421
|
1105 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:458
|
1106 |
+
msgid "Please enter a (valid) reCAPTCHA value"
|
1107 |
+
msgstr ""
|
1108 |
+
|
1109 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:421
|
1110 |
+
msgid "Click the BACK button on your browser, and try again."
|
1111 |
+
msgstr ""
|
1112 |
+
|
1113 |
+
#: ../front-end/extra-fields/upload/upload_helper_functions.php:78
|
1114 |
+
#: ../front-end/extra-fields/upload/upload_helper_functions.php:87
|
1115 |
+
msgid "Sorry, you cannot upload this file type for this field."
|
1116 |
+
msgstr ""
|
1117 |
+
|
1118 |
+
#: ../front-end/extra-fields/upload/upload_helper_functions.php:94
|
1119 |
+
msgid "An error occurred, please try again later."
|
1120 |
+
msgstr ""
|
1121 |
+
|
1122 |
+
#: ../modules/user-listing/userlisting.php:253
|
1123 |
+
msgid "More"
|
1124 |
+
msgstr ""
|
1125 |
+
|
1126 |
+
#: ../modules/user-listing/userlisting.php:338
|
1127 |
+
msgid "You do not have permission to view this user list."
|
1128 |
+
msgstr ""
|
1129 |
+
|
1130 |
+
#: ../modules/user-listing/userlisting.php:351
|
1131 |
+
msgid "You do not have the required user role to view this user list."
|
1132 |
+
msgstr ""
|
1133 |
+
|
1134 |
+
#: ../modules/user-listing/userlisting.php:1287
|
1135 |
+
msgid "Ascending"
|
1136 |
+
msgstr ""
|
1137 |
+
|
1138 |
+
#: ../modules/user-listing/userlisting.php:1288
|
1139 |
+
msgid "Descending"
|
1140 |
+
msgstr ""
|
1141 |
+
|
1142 |
+
#: ../admin/add-ons.php:144
|
1143 |
+
msgid "Download Now"
|
1144 |
+
msgstr "すぐにダウンロードする"
|
1145 |
+
|
1146 |
+
#: ../admin/admin-functions.php:197
|
1147 |
+
msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
|
1148 |
+
msgstr "<strong> %1$s </strong>をお楽しみいただけましたら、より多くの方に知ってもらえるよう<a href=\"%2$s\" target=\"_blank\">WordPress.orgで評価</a>をお願いいたします。ユーザが増えることで、より多くの機能、少ないバグ、そしてより良いサポートが実現します。"
|
1149 |
+
|
1150 |
+
#: ../admin/manage-fields.php:68
|
1151 |
+
msgid "Choose one of the supported field types"
|
1152 |
+
msgstr "対応した記入欄タイプを選択してください"
|
1153 |
+
|
1154 |
+
#: ../admin/manage-fields.php:70
|
1155 |
+
msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
|
1156 |
+
msgstr "プロフィールの項目追加は<a href=\"%s\">HobbyistとPROバージョン</a>でのみ利用可能です"
|
1157 |
+
|
1158 |
+
#: ../admin/manage-fields.php:107
|
1159 |
+
msgid "Site Key"
|
1160 |
+
msgstr "サイト鍵"
|
1161 |
+
|
1162 |
+
#: ../admin/manage-fields.php:107
|
1163 |
+
msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
1164 |
+
msgstr "Googleからのサイトキー、<a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
1165 |
+
|
1166 |
+
#: ../admin/manage-fields.php:108
|
1167 |
+
msgid "Secret Key"
|
1168 |
+
msgstr "Secret Key"
|
1169 |
+
|
1170 |
+
#: ../admin/manage-fields.php:108
|
1171 |
+
msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
1172 |
+
msgstr "GoogleからのSecret Key, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
1173 |
+
|
1174 |
+
#: ../admin/manage-fields.php:660
|
1175 |
+
msgid "You must enter the site key\n"
|
1176 |
+
msgstr "サイトキーを入力してください\n"
|
1177 |
+
|
1178 |
+
#: ../admin/manage-fields.php:662
|
1179 |
+
msgid "You must enter the secret key\n"
|
1180 |
+
msgstr "秘密キー(Secret Key)を入力してください\n"
|
1181 |
+
|
1182 |
+
#: ../admin/add-ons.php:10 ../admin/add-ons.php:32
|
1183 |
+
msgid "Add-Ons"
|
1184 |
+
msgstr "アドオン"
|
1185 |
+
|
1186 |
+
#: ../admin/add-ons.php:34 ../admin/add-ons.php:124
|
1187 |
+
msgid "Activate"
|
1188 |
+
msgstr "アクティベート"
|
1189 |
+
|
1190 |
+
#: ../admin/add-ons.php:36
|
1191 |
+
msgid "Downloading and installing..."
|
1192 |
+
msgstr "ダウンロードとインストール中..."
|
1193 |
+
|
1194 |
+
#: ../admin/add-ons.php:37
|
1195 |
+
msgid "Installation complete"
|
1196 |
+
msgstr "インストール完了"
|
1197 |
+
|
1198 |
+
#: ../admin/add-ons.php:39
|
1199 |
+
msgid "Add-On is Active"
|
1200 |
+
msgstr "アドオンは有効です。"
|
1201 |
+
|
1202 |
+
#: ../admin/add-ons.php:40
|
1203 |
+
msgid "Add-On has been activated"
|
1204 |
+
msgstr "アドオンが有効化されました"
|
1205 |
+
|
1206 |
+
#: ../admin/add-ons.php:41
|
1207 |
+
msgid "Retry Install"
|
1208 |
+
msgstr "インストール再試行"
|
1209 |
+
|
1210 |
+
#: ../admin/add-ons.php:43 ../admin/add-ons.php:135
|
1211 |
+
msgid "Add-On is <strong>active</strong>"
|
1212 |
+
msgstr "アドオンは <strong>有効です</strong>"
|
1213 |
+
|
1214 |
+
#: ../admin/add-ons.php:44 ../admin/add-ons.php:133
|
1215 |
+
msgid "Add-On is <strong>inactive</strong>"
|
1216 |
+
msgstr "アドオンは <strong>無効です</strong>"
|
1217 |
+
|
1218 |
+
#: ../admin/add-ons.php:46 ../admin/add-ons.php:128
|
1219 |
+
msgid "Deactivate"
|
1220 |
+
msgstr "ディアクティベート"
|
1221 |
+
|
1222 |
+
#: ../admin/add-ons.php:47
|
1223 |
+
msgid "Add-On has been deactivated."
|
1224 |
+
msgstr "アドオンは無効化されました。"
|
1225 |
+
|
1226 |
+
#: ../admin/add-ons.php:59
|
1227 |
+
msgid "Something went wrong, we could not connect to the server. Please try again later."
|
1228 |
+
msgstr "何らかの原因でサーバーに接続できませんでした。後ほど再度お試しください。"
|
1229 |
+
|
1230 |
+
#: ../admin/add-ons.php:144 ../admin/add-ons.php:147
|
1231 |
+
msgid "Buy Now"
|
1232 |
+
msgstr "すぐに購入する"
|
1233 |
+
|
1234 |
+
#: ../admin/add-ons.php:147
|
1235 |
+
msgid "Install Now"
|
1236 |
+
msgstr "すぐにインストールする"
|
1237 |
+
|
1238 |
+
#: ../admin/add-ons.php:153
|
1239 |
+
msgid "Compatible with your version of Profile Builder."
|
1240 |
+
msgstr "お使いのProfile Builderと互換性があります。"
|
1241 |
+
|
1242 |
+
#: ../admin/add-ons.php:162
|
1243 |
+
msgid "Upgrade Profile Builder"
|
1244 |
+
msgstr "Profile Builderを更新"
|
1245 |
+
|
1246 |
+
#: ../admin/add-ons.php:163
|
1247 |
+
msgid "Not compatible with Profile Builder"
|
1248 |
+
msgstr "Profile Builderと互換性がありません"
|
1249 |
+
|
1250 |
+
#: ../admin/add-ons.php:171
|
1251 |
+
msgid "Not compatible with your version of Profile Builder."
|
1252 |
+
msgstr "お使いのProfile Builderバージョンとは互換性がありません。"
|
1253 |
+
|
1254 |
+
#: ../admin/add-ons.php:172
|
1255 |
+
msgid "Minimum required Profile Builder version:"
|
1256 |
+
msgstr "対応するProfile Builderの最低バージョン:"
|
1257 |
+
|
1258 |
+
#: ../admin/add-ons.php:177
|
1259 |
+
msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
|
1260 |
+
msgstr "アドオンをインストールできませんでした。再度実行するか<a href=\"%s\" target=\"_blank\">手動インストール</a>をお試しください。"
|
1261 |
+
|
1262 |
+
#: ../front-end/default-fields/email/email.php:48
|
1263 |
+
msgid "You must enter a valid email address."
|
1264 |
+
msgstr "正しいメールアドレスを入力してください。"
|
1265 |
+
|
1266 |
+
#: ../front-end/default-fields/username/username.php:53
|
1267 |
+
#: ../front-end/default-fields/username/username.php:60
|
1268 |
+
msgid "This username is invalid because it uses illegal characters."
|
1269 |
+
msgstr "このユーザ名には使用できない文字が含まれています。"
|
1270 |
+
|
1271 |
+
#: ../front-end/default-fields/username/username.php:53
|
1272 |
+
#: ../front-end/default-fields/username/username.php:60
|
1273 |
+
msgid "Please enter a valid username."
|
1274 |
+
msgstr "有効なユーザ名を入力してください。"
|
1275 |
+
|
1276 |
+
#: ../front-end/extra-fields/user-role/user-role.php:67
|
1277 |
+
#: ../front-end/extra-fields/user-role/user-role.php:80
|
1278 |
+
msgid "Only administrators can see this field on edit profile forms."
|
1279 |
+
msgstr "プロフィール編集フォームのこのフィールドを見られるのは管理者のみです。"
|
1280 |
+
|
1281 |
+
#: ../front-end/extra-fields/user-role/user-role.php:76
|
1282 |
+
msgid "As an administrator you cannot change your role."
|
1283 |
+
msgstr "管理者として、あなた自身の権限は変更できません。"
|
1284 |
+
|
1285 |
+
#: ../modules/email-customizer/admin-email-customizer.php:117
|
1286 |
+
msgid ""
|
1287 |
+
"\n"
|
1288 |
+
"<p>{{username}} has requested a password change via the password reset feature.</p>\n"
|
1289 |
+
"<p>His/her new password is: {{password}}</p>\n"
|
1290 |
+
msgstr ""
|
1291 |
+
"\n"
|
1292 |
+
"<p>{{username}} がパスワードリセット機能によるパスワードの変更を要求しました。</p>\n"
|
1293 |
+
"<p>彼/彼女の新しいパスワードは {{password}}です。</p>\n"
|
1294 |
+
|
1295 |
+
#: ../modules/email-customizer/admin-email-customizer.php:141
|
1296 |
+
msgid "Admin Notification for User Password Reset"
|
1297 |
+
msgstr "ユーザのパスワードリセットに対する通知"
|
1298 |
+
|
1299 |
+
#: ../modules/email-customizer/email-customizer.php:42
|
1300 |
+
msgid "Reset Key"
|
1301 |
+
msgstr "リセットキー"
|
1302 |
+
|
1303 |
+
#: ../modules/email-customizer/email-customizer.php:43
|
1304 |
+
msgid "Reset Url"
|
1305 |
+
msgstr "リセットURL"
|
1306 |
+
|
1307 |
+
#: ../modules/email-customizer/email-customizer.php:44
|
1308 |
+
msgid "Reset Link"
|
1309 |
+
msgstr "リセットリンク"
|
1310 |
+
|
1311 |
+
#: ../modules/email-customizer/user-email-customizer.php:204
|
1312 |
+
msgid ""
|
1313 |
+
"\n"
|
1314 |
+
"<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
|
1315 |
+
"Username: {{username}}</p>\n"
|
1316 |
+
"<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n"
|
1317 |
+
"<p>To reset your password, visit the following address:<br/>\n"
|
1318 |
+
"{{{reset_link}}}</p>\n"
|
1319 |
+
msgstr ""
|
1320 |
+
"\n"
|
1321 |
+
"<p>次のアカウントのパスワードリセットが要求されました: {{site_name}}<br/>\n"
|
1322 |
+
"ユーザ名: {{username}}</p>\n"
|
1323 |
+
"<p>このこれが間違いなら単に無視してください。何も処理されません。</p>\n"
|
1324 |
+
"<p>パスワードリセットを実行するには、下記のアドレスにアクセスしてください。:<br/>\n"
|
1325 |
+
"{{{reset_link}}}</p>\n"
|
1326 |
+
|
1327 |
+
#: ../modules/email-customizer/user-email-customizer.php:218
|
1328 |
+
msgid "[{{site_name}}] Password Reset"
|
1329 |
+
msgstr "[{{site_name}}] パスワードリセット"
|
1330 |
+
|
1331 |
+
#: ../modules/email-customizer/user-email-customizer.php:229
|
1332 |
+
msgid "Password Reset Email"
|
1333 |
+
msgstr "パスワードリセットメール"
|
1334 |
+
|
1335 |
+
#: ../modules/email-customizer/user-email-customizer.php:235
|
1336 |
+
msgid ""
|
1337 |
+
"\n"
|
1338 |
+
"<p>You have successfully reset your password to: {{password}}</p>\n"
|
1339 |
+
msgstr ""
|
1340 |
+
"\n"
|
1341 |
+
"<p>以下のパスワードにリセットしました: {{password}}</p>\n"
|
1342 |
+
|
1343 |
+
#: ../modules/email-customizer/user-email-customizer.php:245
|
1344 |
+
msgid "[{{site_name}}] Password Reset Successfully"
|
1345 |
+
msgstr "[{{site_name}}] パスワードリセットは完了しました"
|
1346 |
+
|
1347 |
+
#: ../modules/email-customizer/user-email-customizer.php:256
|
1348 |
+
msgid "Password Reset Success Email"
|
1349 |
+
msgstr "パスワードリセット成功メール"
|
1350 |
+
|
1351 |
+
#: ../modules/user-listing/userlisting.php:134
|
1352 |
+
msgid "User Nicename"
|
1353 |
+
msgstr "ニックネーム"
|
1354 |
+
|
1355 |
+
#: ../modules/user-listing/userlisting.php:442
|
1356 |
+
msgid "None"
|
1357 |
+
msgstr "なし"
|
1358 |
+
|
1359 |
+
#: ../admin/admin-functions.php:128
|
1360 |
+
msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
|
1361 |
+
msgstr "<strong>エラー</strong>: パスワードは最低%s文字必要です。"
|
1362 |
+
|
1363 |
+
#: ../admin/admin-functions.php:145
|
1364 |
+
msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
|
1365 |
+
msgstr "<strong>エラー</strong>: パスワードは最低%s文字必要です。"
|
1366 |
+
|
1367 |
+
#: ../admin/general-settings.php:170
|
1368 |
+
msgid "Username and Email"
|
1369 |
+
msgstr "ユーザー名とメールアドレス"
|
1370 |
+
|
1371 |
+
#: ../admin/general-settings.php:175
|
1372 |
+
msgid "\"Username and Email\" - users can Log In with both Username and Email."
|
1373 |
+
msgstr "\"ユーザ名とメールアドレス\" - ユーザーはユーザー名とメールアドレスのどちらでもログインできます。"
|
1374 |
+
|
1375 |
+
#: ../admin/general-settings.php:176
|
1376 |
+
msgid "\"Username\" - users can Log In only with Username."
|
1377 |
+
msgstr "\"ユーザー名\" - ユーザーはユーザー名でのみログインできます。"
|
1378 |
+
|
1379 |
+
#: ../admin/general-settings.php:177
|
1380 |
+
msgid "\"Email\" - users can Log In only with Email."
|
1381 |
+
msgstr "\"メールアドレス\" - ユーザはメールアドレスでのみログインできます。"
|
1382 |
+
|
1383 |
+
#: ../admin/manage-fields.php:100
|
1384 |
+
msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
|
1385 |
+
msgstr "アップロード可能にしたいファイル拡張子を指定してください。<br/>例: .ext1,.ext2,.ext3<br/>指定しない場合は.jpg,.jpeg,.gif,.png (.*)となります。"
|
1386 |
+
|
1387 |
+
#: ../admin/manage-fields.php:101
|
1388 |
+
msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)"
|
1389 |
+
msgstr "アップロード可能にしたいファイル拡張子を指定してください。<br/>例: .ext1,.ext2,.ext3<br/>指定しない場合はWordPressがデフォルトで許可する拡張子になります (.*)。"
|
1390 |
+
|
1391 |
+
#: ../admin/manage-fields.php:111
|
1392 |
+
msgid "User Roles"
|
1393 |
+
msgstr "ユーザ権限"
|
1394 |
+
|
1395 |
+
#: ../admin/manage-fields.php:111
|
1396 |
+
msgid "Select which user roles to show to the user ( drag and drop to re-order )"
|
1397 |
+
msgstr "ユーザーに提示するユーザー権限を選択してください。 ( ドラッグ&ドロップして順序を入れ替え )"
|
1398 |
+
|
1399 |
+
#: ../admin/manage-fields.php:112
|
1400 |
+
msgid "User Roles Order"
|
1401 |
+
msgstr "ユーザ権限順"
|
1402 |
+
|
1403 |
+
#: ../admin/manage-fields.php:112
|
1404 |
+
msgid "Save the user role order from the user roles checkboxes"
|
1405 |
+
msgstr ""
|
1406 |
+
|
1407 |
+
#: ../admin/manage-fields.php:752
|
1408 |
+
msgid "Please select at least one user role\n"
|
1409 |
+
msgstr "最低1つのユーザ権限を選択してください\n"
|
1410 |
+
|
1411 |
+
#: ../admin/register-version.php:22
|
1412 |
+
msgid "Profile Builder Register"
|
1413 |
+
msgstr "Profile Builder 登録"
|
1414 |
+
|
1415 |
+
#: ../admin/register-version.php:81
|
1416 |
+
msgid "The serial number is about to expire soon!"
|
1417 |
+
msgstr "シリアル番号がまもなく期限切れです!"
|
1418 |
+
|
1419 |
+
#: ../admin/register-version.php:81
|
1420 |
+
msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
|
1421 |
+
msgstr "あなたのシリアル番号はもうすぐ期限切れとなります。%1$sライセンス更新%2$sをお願いします。"
|
1422 |
+
|
1423 |
+
#: ../admin/register-version.php:83
|
1424 |
+
msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
|
1425 |
+
msgstr "シリアル番号の有効期限が切れました。%1$s ライセンス更新%2$sを行ってください。."
|
1426 |
+
|
1427 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:337
|
1428 |
+
msgid "Add Entry"
|
1429 |
+
msgstr "エントリを追加"
|
1430 |
+
|
1431 |
+
#: ../features/email-confirmation/class-email-confirmation.php:91
|
1432 |
+
msgid "show"
|
1433 |
+
msgstr "表示"
|
1434 |
+
|
1435 |
+
#: ../features/functions.php:659
|
1436 |
+
msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
|
1437 |
+
msgstr "ユーザがProfile Builderを通じてあなたのウェブサイトに登録できるようにするには、ユーザ登録を有効化する必要があります。%1$sネットワークの設定%2$sを開き、「登録の設定」の下の「ユーザーアカウントの新規登録を許可する。」をチェックしてください。 %3$s非表示%4$s"
|
1438 |
+
|
1439 |
+
#: ../front-end/class-formbuilder.php:509
|
1440 |
+
msgid "User to edit:"
|
1441 |
+
msgstr "編集するユーザ:"
|
1442 |
+
|
1443 |
+
#: ../front-end/default-fields/password/password.php:46
|
1444 |
+
#: ../front-end/recover.php:245
|
1445 |
+
msgid "The password must have the minimum length of %s characters"
|
1446 |
+
msgstr "パスワードは最低%s文字必要です。"
|
1447 |
+
|
1448 |
+
#: ../front-end/default-fields/password/password.php:50
|
1449 |
+
#: ../front-end/recover.php:249
|
1450 |
+
msgid "The password must have a minimum strength of %s"
|
1451 |
+
msgstr "パスワードの強度が最低「%s」である必要があります。"
|
1452 |
+
|
1453 |
+
#: ../front-end/extra-fields/user-role/user-role.php:112
|
1454 |
+
msgid "You cannot register this user role"
|
1455 |
+
msgstr "このユーザー権限は登録できません。"
|
1456 |
+
|
1457 |
+
#: ../front-end/login.php:105
|
1458 |
+
msgid "username or email"
|
1459 |
+
msgstr "ユーザー名またはメールアドレス"
|
1460 |
+
|
1461 |
+
#: ../front-end/login.php:174
|
1462 |
+
msgid "Username or Email"
|
1463 |
+
msgstr "ユーザー名またはメールアドレス"
|
1464 |
+
|
1465 |
+
#: ../front-end/logout.php:15
|
1466 |
+
msgid "You are currently logged in as %s. "
|
1467 |
+
msgstr "%s さんとしてログイン中です。"
|
1468 |
+
|
1469 |
+
#: ../front-end/logout.php:15
|
1470 |
+
msgid "Log out »"
|
1471 |
+
msgstr "ログアウト »"
|
1472 |
+
|
1473 |
+
#: ../modules/email-customizer/email-customizer.php:31
|
1474 |
+
msgid "User Role"
|
1475 |
+
msgstr "権限グループ"
|
1476 |
+
|
1477 |
+
#: ../modules/user-listing/userlisting.php:1207
|
1478 |
+
msgid "View all extra shortcode parameters"
|
1479 |
+
msgstr "全てのショートコード用パラメーターを見る"
|
1480 |
+
|
1481 |
+
#: ../modules/user-listing/userlisting.php:1221
|
1482 |
+
msgid "displays only the users that you specified the user_id for"
|
1483 |
+
msgstr "user_idを指定したユーザのみを表示"
|
1484 |
+
|
1485 |
+
#: ../modules/user-listing/userlisting.php:1227
|
1486 |
+
msgid "displays all users except the ones you specified the user_id for"
|
1487 |
+
msgstr "user_idで指定した以外の全てのユーザを表示"
|
1488 |
+
|
1489 |
+
#: ../features/functions.php:526
|
1490 |
+
msgid "Minimum length of %d characters"
|
1491 |
+
msgstr "最低%d文字必要です。"
|
1492 |
+
|
1493 |
+
#: ../front-end/class-formbuilder.php:99 ../front-end/class-formbuilder.php:102
|
1494 |
+
msgid "This message is only visible by administrators"
|
1495 |
+
msgstr "このメッセージは管理者のみ閲覧できます"
|
1496 |
+
|
1497 |
+
#: ../modules/user-listing/userlisting.php:364
|
1498 |
+
msgid "User not found"
|
1499 |
+
msgstr "ユーザーが見つかりませんでした"
|
1500 |
+
|
1501 |
+
#: ../modules/email-customizer/admin-email-customizer.php:38
|
1502 |
+
#: ../modules/email-customizer/user-email-customizer.php:38
|
1503 |
+
msgid "Valid tags {{reply_to}} and {{site_name}}"
|
1504 |
+
msgstr "使用可能なタグは {{reply_to}} と {{site_name}} です。"
|
1505 |
+
|
1506 |
+
#: ../admin/admin-bar.php:48
|
1507 |
+
msgid "Choose which user roles view the admin bar in the front-end of the website."
|
1508 |
+
msgstr "どの権限のユーザのサイト閲覧時に管理バーが表示されるか選択してください。"
|
1509 |
+
|
1510 |
+
#: ../admin/manage-fields.php:105
|
1511 |
+
msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
|
1512 |
+
msgstr "選択肢に対応する値をカンマで区切って入力してください。<br/>この値はhiddenフォームで使われ、ユーザに見えないのでどんなもの構いませんが、特殊文字とアポストロフィは含めない方が良いでしょう。"
|
1513 |
+
|
1514 |
+
#: ../admin/manage-fields.php:689
|
1515 |
+
msgid "The meta-name cannot be empty\n"
|
1516 |
+
msgstr "メタネームは空欄にはできません\n"
|
1517 |
+
|
1518 |
+
#: ../admin/register-version.php:69
|
1519 |
+
msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
|
1520 |
+
msgstr "%sをご購入いただきましたら、こちらでお受け取りになったシリアルナンバーを登録してください。"
|
1521 |
+
|
1522 |
+
#: ../admin/register-version.php:243
|
1523 |
+
msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
|
1524 |
+
msgstr "<p><strong>Profile Builder</strong>のシリアルナンバーが未登録か誤っています。<br/>%1$sライセンス登録%2$s から登録し、自動アップデートやサポートをお受け取りください。まだライセンスキーをお持ちでない場合はこちらで購入できます。%3$s今すぐ購入%4$s</p>"
|
1525 |
+
|
1526 |
+
#: ../admin/register-version.php:246
|
1527 |
+
msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50% off %4$s %5$sDismiss%6$s</p>"
|
1528 |
+
msgstr "<p>あなたの<strong>Profile Builder</strong>ライセンスは有効期限が切れました。<br/>%1$sライセンス更新%2$sを行い、プロダクトのダウンロード、自動更新、サポートを御利用ください。%3$s今すぐ更新し50% off %4$s %5$s非表示%6$s</p>"
|
1529 |
+
|
1530 |
+
#: ../admin/register-version.php:251
|
1531 |
+
msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50% off %4$s %6$sDismiss%7$s</p>"
|
1532 |
+
msgstr "<p>あなたの<strong>Profile Builder</strong>ライセンスは%5$sに期限切れとなります。 <br/>プロダクトのダウンロード、自動更新、サポートのため、%1$sライセンス更新%2$sを行ってください。%3$s今すぐ更新し50%割引き%4$s %6$s非表示%7$s</p>"
|
1533 |
+
|
1534 |
+
#: ../assets/lib/wck-api/fields/country select.php:14
|
1535 |
+
#: ../assets/lib/wck-api/fields/cpt select.php:17
|
1536 |
+
#: ../assets/lib/wck-api/fields/select.php:14 ../assets/lib/wck-api/fields/user
|
1537 |
+
#: select.php:15
|
1538 |
+
msgid "...Choose"
|
1539 |
+
msgstr "...選択してください"
|
1540 |
+
|
1541 |
+
#: ../features/class-list-table.php:526 ../features/class-list-table.php:941
|
1542 |
+
msgid "1 item"
|
1543 |
+
msgstr "1アイテム"
|
1544 |
+
|
1545 |
+
#: ../features/functions.php:512
|
1546 |
+
msgid "Very Weak"
|
1547 |
+
msgstr "とても弱い"
|
1548 |
+
|
1549 |
+
#: ../features/functions.php:600
|
1550 |
+
msgid "This field is required"
|
1551 |
+
msgstr "この欄は必須です"
|
1552 |
+
|
1553 |
+
#: ../features/functions.php:627
|
1554 |
+
msgid "Cancel"
|
1555 |
+
msgstr "キャンセル"
|
1556 |
+
|
1557 |
+
#: ../features/functions.php:663
|
1558 |
+
msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
|
1559 |
+
msgstr "ユーザがProfile Builderを通じてあなたのウェブサイトに登録できるようにするには、ユーザ登録を有効化する必要があります。%1$s設定 -> 一般%2$sタブを開き、「メンバーシップ」の「だれでもユーザー登録ができるようにする」をチェックしてください。%3$s非表示%4$s"
|
1560 |
+
|
1561 |
+
#: ../front-end/login.php:96
|
1562 |
+
msgid "Invalid username."
|
1563 |
+
msgstr "不適格なユーザ名"
|
1564 |
+
|
1565 |
+
#: ../front-end/login.php:101 ../front-end/login.php:105
|
1566 |
+
msgid "username"
|
1567 |
+
msgstr "ユーザー名"
|
1568 |
+
|
1569 |
+
#: ../front-end/login.php:101
|
1570 |
+
msgid "email"
|
1571 |
+
msgstr "メール"
|
1572 |
+
|
1573 |
+
#: ../front-end/login.php:208
|
1574 |
+
msgid "Lost your password?"
|
1575 |
+
msgstr "パスワードをお忘れですか?"
|
1576 |
+
|
1577 |
+
#: ../index.php:34
|
1578 |
+
msgid " is also activated. You need to deactivate it before activating this version of the plugin."
|
1579 |
+
msgstr "が有効になっています。このバージョンのプラグインを有効にするには、それを無効化する必要があります。"
|
1580 |
+
|
1581 |
+
#: ../modules/email-customizer/admin-email-customizer.php:54
|
1582 |
+
#: ../modules/email-customizer/user-email-customizer.php:54
|
1583 |
+
msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
|
1584 |
+
msgstr "正しいメールアドレスか{{reply_to}}タグ(標準では管理者のメールアドレス)を入れてください。"
|
1585 |
+
|
1586 |
+
#: ../features/email-confirmation/email-confirmation.php:554
|
1587 |
+
#: ../features/email-confirmation/email-confirmation.php:557
|
1588 |
+
#: ../modules/email-customizer/email-customizer.php:413
|
1589 |
+
#: ../modules/email-customizer/email-customizer.php:420
|
1590 |
+
#: ../modules/email-customizer/email-customizer.php:434
|
1591 |
+
msgid "Your selected password at signup"
|
1592 |
+
msgstr "登録時に選択したパスワード"
|
1593 |
+
|
1594 |
+
#: ../modules/email-customizer/user-email-customizer.php:38
|
1595 |
+
msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
|
1596 |
+
msgstr "これらの設定を変更すると「メール文面編集(ユーザ宛)」設定ページにも反映されます。"
|
1597 |
+
|
1598 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:270
|
1599 |
+
msgid "This form is empty."
|
1600 |
+
msgstr "フォームが空欄です。"
|
1601 |
+
|
1602 |
+
#: ../modules/multiple-forms/multiple-forms.php:416
|
1603 |
+
msgid "Delete all items"
|
1604 |
+
msgstr "全項目削除"
|
1605 |
+
|
1606 |
+
#: ../modules/multiple-forms/multiple-forms.php:416
|
1607 |
+
msgid "Delete all"
|
1608 |
+
msgstr "全削除"
|
1609 |
+
|
1610 |
+
#: ../modules/multiple-forms/register-forms.php:226
|
1611 |
+
msgid "Choose..."
|
1612 |
+
msgstr "選択..."
|
1613 |
+
|
1614 |
+
#: ../modules/user-listing/userlisting.php:1298
|
1615 |
+
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
1616 |
+
msgstr "全てのユーザ一覧のページネーション毎のユーザ表示数を指定してください。"
|
1617 |
+
|
1618 |
+
#: ../admin/admin-bar.php:10
|
1619 |
+
msgid "Show/Hide the Admin Bar on the Front-End"
|
1620 |
+
msgstr "公開ページでの管理バーの表示/非表示"
|
1621 |
+
|
1622 |
+
#: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
|
1623 |
+
msgid "Admin Bar Settings"
|
1624 |
+
msgstr "管理バー設定"
|
1625 |
+
|
1626 |
+
#: ../admin/admin-bar.php:57
|
1627 |
+
msgid "User-Role"
|
1628 |
+
msgstr "ユーザー権限"
|
1629 |
+
|
1630 |
+
#: ../admin/admin-bar.php:58
|
1631 |
+
msgid "Visibility"
|
1632 |
+
msgstr "表示"
|
1633 |
+
|
1634 |
+
#: ../admin/admin-bar.php:73
|
1635 |
+
msgid "Default"
|
1636 |
+
msgstr "デフォルトに従う"
|
1637 |
+
|
1638 |
+
#: ../admin/admin-bar.php:74
|
1639 |
+
msgid "Show"
|
1640 |
+
msgstr "表示"
|
1641 |
+
|
1642 |
+
#: ../admin/admin-bar.php:75
|
1643 |
+
msgid "Hide"
|
1644 |
+
msgstr "非表示"
|
1645 |
+
|
1646 |
+
#: ../admin/admin-bar.php:86 ../admin/general-settings.php:215
|
1647 |
+
#: ../admin/register-version.php:95 ../features/functions.php:620
|
1648 |
+
#: ../modules/custom-redirects/custom-redirects.php:136
|
1649 |
+
#: ../modules/modules.php:142
|
1650 |
+
msgid "Save Changes"
|
1651 |
+
msgstr "変更を保存"
|
1652 |
+
|
1653 |
+
#: ../admin/admin-functions.php:34
|
1654 |
+
msgid "Login is set to be done using the E-mail. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )"
|
1655 |
+
msgstr "ログインはメールアドレスを用いるよう設定されました. この欄は公開部分には表示されません! ( この設定は \"%s\" タブで変更できます )"
|
1656 |
+
|
1657 |
+
#: ../admin/admin-functions.php:34 ../admin/general-settings.php:10
|
1658 |
+
#: ../admin/general-settings.php:38
|
1659 |
+
msgid "General Settings"
|
1660 |
+
msgstr "一般設定"
|
1661 |
+
|
1662 |
+
#: ../admin/admin-functions.php:134 ../admin/general-settings.php:201
|
1663 |
+
msgid "Very weak"
|
1664 |
+
msgstr "とても弱い"
|
1665 |
+
|
1666 |
+
#: ../admin/admin-functions.php:134 ../admin/general-settings.php:202
|
1667 |
+
#: ../features/functions.php:512
|
1668 |
+
msgid "Weak"
|
1669 |
+
msgstr "弱い"
|
1670 |
+
|
1671 |
+
#: ../admin/admin-functions.php:134 ../admin/general-settings.php:203
|
1672 |
+
#: ../features/functions.php:512
|
1673 |
+
msgid "Medium"
|
1674 |
+
msgstr "中程度"
|
1675 |
+
|
1676 |
+
#: ../admin/admin-functions.php:134 ../admin/general-settings.php:204
|
1677 |
+
#: ../features/functions.php:512
|
1678 |
+
msgid "Strong"
|
1679 |
+
msgstr "強固"
|
1680 |
+
|
1681 |
+
#: ../admin/admin-functions.php:184
|
1682 |
+
msgid "Add Field"
|
1683 |
+
msgstr "欄を追加"
|
1684 |
+
|
1685 |
+
#: ../admin/admin-functions.php:186
|
1686 |
+
#: ../modules/class-mustache-templates/class-mustache-templates.php:374
|
1687 |
+
msgid "Save Settings"
|
1688 |
+
msgstr "設定を保存"
|
1689 |
+
|
1690 |
+
#: ../admin/basic-info.php:10
|
1691 |
+
msgid "Basic Information"
|
1692 |
+
msgstr "基本情報"
|
1693 |
+
|
1694 |
+
#: ../admin/basic-info.php:29
|
1695 |
+
msgid "Version %s"
|
1696 |
+
msgstr "バージョン %s"
|
1697 |
+
|
1698 |
+
#: ../admin/basic-info.php:30
|
1699 |
+
msgid "<strong>Profile Builder </strong>"
|
1700 |
+
msgstr "<strong>Profile Builder </strong>"
|
1701 |
+
|
1702 |
+
#: ../admin/basic-info.php:31
|
1703 |
+
msgid "The best way to add front-end registration, edit profile and login forms."
|
1704 |
+
msgstr "登録、プロフィール編集、ログインフォームをサイトに追加する最高の選択肢です。"
|
1705 |
+
|
1706 |
+
#: ../admin/basic-info.php:33
|
1707 |
+
msgid "For Modern User Interaction"
|
1708 |
+
msgstr "現代的なユーザインタラクション"
|
1709 |
+
|
1710 |
+
#: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
|
1711 |
+
msgid "Login"
|
1712 |
+
msgstr "ログイン"
|
1713 |
+
|
1714 |
+
#: ../admin/basic-info.php:40
|
1715 |
+
msgid "Registration"
|
1716 |
+
msgstr "利用登録"
|
1717 |
+
|
1718 |
+
#: ../admin/basic-info.php:44
|
1719 |
+
msgid "Edit Profile"
|
1720 |
+
msgstr "プロフィール編集"
|
1721 |
+
|
1722 |
+
#: ../admin/basic-info.php:51
|
1723 |
+
msgid "Extra Features"
|
1724 |
+
msgstr "追加機能"
|
1725 |
+
|
1726 |
+
#: ../admin/basic-info.php:52
|
1727 |
+
msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
|
1728 |
+
msgstr "サイトユーザに関する操作権をあなたに与え、セキュリティを強化し、登録スパムと戦うお手伝いをする追加機能を備えています。"
|
1729 |
+
|
1730 |
+
#: ../admin/basic-info.php:53
|
1731 |
+
msgid "Enable extra features"
|
1732 |
+
msgstr "追加機能を設定"
|
1733 |
+
|
1734 |
+
#: ../admin/basic-info.php:57
|
1735 |
+
msgid "Recover Password"
|
1736 |
+
msgstr "パスワード忘れ対応"
|
1737 |
+
|
1738 |
+
#: ../admin/basic-info.php:61
|
1739 |
+
msgid "Admin Approval (*)"
|
1740 |
+
msgstr "管理者承認 (*)"
|
1741 |
+
|
1742 |
+
#: ../admin/basic-info.php:62
|
1743 |
+
msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
|
1744 |
+
msgstr "誰がこのサイトを利用できるか管理者が選別します。メールでの通知を受け取るか、WordPress UI上でまとめて承認することができます。"
|
1745 |
+
|
1746 |
+
#: ../admin/basic-info.php:65
|
1747 |
+
msgid "Email Confirmation"
|
1748 |
+
msgstr "メールアドレス確認"
|
1749 |
+
|
1750 |
+
#: ../admin/basic-info.php:66
|
1751 |
+
msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
|
1752 |
+
msgstr "本物のメールアドレスによる登録を確実にします。登録時、ユーザはメールアドレス確認の通知メールを受け取ります。"
|
1753 |
+
|
1754 |
+
#: ../admin/basic-info.php:69
|
1755 |
+
msgid "Minimum Password Length and Strength Meter"
|
1756 |
+
msgstr "最低パスワード長と強度メーター"
|
1757 |
+
|
1758 |
+
#: ../admin/basic-info.php:70
|
1759 |
+
msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
|
1760 |
+
msgstr "最低パスワード文字数とパスワード強度を設定することで、単純すぎるパスワードの使用を防止できます。"
|
1761 |
+
|
1762 |
+
#: ../admin/basic-info.php:73
|
1763 |
+
msgid "Login with Email or Username"
|
1764 |
+
msgstr "メールアドレスまたはユーザー名でログイン"
|
1765 |
+
|
1766 |
+
#: ../admin/basic-info.php:74
|
1767 |
+
msgid "Allow users to log in with their email or username when accessing your site."
|
1768 |
+
msgstr "あなたのサイトにユーザがアクセスする際、メールアドレスまたはユーザ名でログインできます。"
|
1769 |
+
|
1770 |
+
#: ../admin/basic-info.php:87
|
1771 |
+
msgid "Customize Your Forms The Way You Want (*)"
|
1772 |
+
msgstr "フォームも自由自在にカスタマイズ (*)"
|
1773 |
+
|
1774 |
+
#: ../admin/basic-info.php:88
|
1775 |
+
msgid "With Extra Profile Fields you can create the exact registration form your project needs."
|
1776 |
+
msgstr "プロフィール項目追加機能で、登録フォームに必要な欄を追加することができます。"
|
1777 |
+
|
1778 |
+
#: ../admin/basic-info.php:90
|
1779 |
+
msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
|
1780 |
+
msgstr "プロフィールの項目追加はHobbyistとPROバージョンでのみ利用可能です"
|
1781 |
+
|
1782 |
+
#: ../admin/basic-info.php:92
|
1783 |
+
msgid "Get started with extra fields"
|
1784 |
+
msgstr "追加記入欄を使用"
|
1785 |
+
|
1786 |
+
#: ../admin/basic-info.php:95
|
1787 |
+
msgid "Avatar Upload"
|
1788 |
+
msgstr "アバター画像アップロード"
|
1789 |
+
|
1790 |
+
#: ../admin/basic-info.php:96
|
1791 |
+
msgid "Generic Uploads"
|
1792 |
+
msgstr "ファイルアップロード"
|
1793 |
+
|
1794 |
+
#: ../admin/basic-info.php:97
|
1795 |
+
msgid "Agree To Terms Checkbox"
|
1796 |
+
msgstr "利用許諾チェックボックス"
|
1797 |
+
|
1798 |
+
#: ../admin/basic-info.php:98
|
1799 |
+
msgid "Datepicker"
|
1800 |
+
msgstr "日付ピッカー"
|
1801 |
+
|
1802 |
+
#: ../admin/basic-info.php:99
|
1803 |
+
msgid "reCAPTCHA"
|
1804 |
+
msgstr "reCAPTCHA"
|
1805 |
+
|
1806 |
+
#: ../admin/basic-info.php:100
|
1807 |
+
msgid "Country Select"
|
1808 |
+
msgstr "国選択"
|
1809 |
+
|
1810 |
+
#: ../admin/basic-info.php:101
|
1811 |
+
msgid "Timezone Select"
|
1812 |
+
msgstr "タイムゾーン選択"
|
1813 |
+
|
1814 |
+
#: ../admin/basic-info.php:102
|
1815 |
+
msgid "Input / Hidden Input"
|
1816 |
+
msgstr "テキスト(一行)/不可視"
|
1817 |
+
|
1818 |
+
#: ../admin/basic-info.php:103
|
1819 |
+
msgid "Checkbox"
|
1820 |
+
msgstr "チェックボックス"
|
1821 |
+
|
1822 |
+
#: ../admin/basic-info.php:104
|
1823 |
+
msgid "Select"
|
1824 |
+
msgstr "プルダウンメニュー"
|
1825 |
+
|
1826 |
+
#: ../admin/basic-info.php:105
|
1827 |
+
msgid "Radio Buttons"
|
1828 |
+
msgstr "ラジオボタン"
|
1829 |
+
|
1830 |
+
#: ../admin/basic-info.php:106
|
1831 |
+
msgid "Textarea"
|
1832 |
+
msgstr "テキスト(複数行)"
|
1833 |
+
|
1834 |
+
#: ../admin/basic-info.php:115
|
1835 |
+
msgid "Powerful Modules (**)"
|
1836 |
+
msgstr "強力な追加モジュール (**)"
|
1837 |
+
|
1838 |
+
#: ../admin/basic-info.php:116
|
1839 |
+
msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
|
1840 |
+
msgstr "あなたのユーザを管理するのに必要なものが、PROバージョンには既に用意されているでしょう。"
|
1841 |
+
|
1842 |
+
#: ../admin/basic-info.php:118
|
1843 |
+
msgid "Enable your modules"
|
1844 |
+
msgstr "モジュール設定"
|
1845 |
+
|
1846 |
+
#: ../admin/basic-info.php:121
|
1847 |
+
msgid "Find out more about PRO Modules"
|
1848 |
+
msgstr "PROバージョンについて詳しく見る"
|
1849 |
+
|
1850 |
+
#: ../admin/basic-info.php:126 ../modules/modules.php:111
|
1851 |
+
#: ../modules/user-listing/userlisting.php:11
|
1852 |
+
#: ../modules/user-listing/userlisting.php:12
|
1853 |
+
#: ../modules/user-listing/userlisting.php:17
|
1854 |
+
#: ../modules/user-listing/userlisting.php:23
|
1855 |
+
msgid "User Listing"
|
1856 |
+
msgstr "ユーザー一覧表示"
|
1857 |
+
|
1858 |
+
#: ../admin/basic-info.php:128
|
1859 |
+
msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
|
1860 |
+
msgstr ""
|
1861 |
+
|
1862 |
+
#: ../admin/basic-info.php:134
|
1863 |
+
msgid "Email Customizer"
|
1864 |
+
msgstr "メール文面編集"
|
1865 |
+
|
1866 |
+
#: ../admin/basic-info.php:135
|
1867 |
+
msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
|
1868 |
+
msgstr "新規登録、Eメール確認時、管理者承認/不承認などユーザや管理者宛に送信される全てのメール文面をカスタマイズできます。"
|
1869 |
+
|
1870 |
+
#: ../admin/basic-info.php:138
|
1871 |
+
#: ../modules/custom-redirects/custom-redirects.php:29
|
1872 |
+
#: ../modules/modules.php:32 ../modules/modules.php:132
|
1873 |
+
msgid "Custom Redirects"
|
1874 |
+
msgstr "カスタム・リダイレクト"
|
1875 |
+
|
1876 |
+
#: ../admin/basic-info.php:139
|
1877 |
+
msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
|
1878 |
+
msgstr "一般ユーザにWordPressダッシュボードを見せなくし、ログイン後、登録後などに任意の公開ページに簡単にリダイレクトできます。"
|
1879 |
+
|
1880 |
+
#: ../admin/basic-info.php:144 ../modules/modules.php:97
|
1881 |
+
msgid "Multiple Registration Forms"
|
1882 |
+
msgstr "複数の登録フォーム"
|
1883 |
+
|
1884 |
+
#: ../admin/basic-info.php:145
|
1885 |
+
msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
|
1886 |
+
msgstr "ユーザの権限毎に異なる記入欄を備えた個別の登録フォームを用意することができます。様々なユーザタイプ毎に異なる情報を取得することが可能です。"
|
1887 |
+
|
1888 |
+
#: ../admin/basic-info.php:148 ../modules/modules.php:104
|
1889 |
+
msgid "Multiple Edit-profile Forms"
|
1890 |
+
msgstr "複数のプロフィール編集フォーム"
|
1891 |
+
|
1892 |
+
#: ../admin/basic-info.php:149
|
1893 |
+
msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
|
1894 |
+
msgstr "ユーザの権限毎に異なる記入欄を備えた個別のプロフィール編集フォームを用意することができます。様々なユーザタイプ毎に異なる情報を記入させることが可能です。"
|
1895 |
+
|
1896 |
+
#: ../admin/basic-info.php:161
|
1897 |
+
msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
|
1898 |
+
msgstr " *印の項目は%1$sHobbyistとProバージョン%2$sでのみ利用可能です。"
|
1899 |
+
|
1900 |
+
#: ../admin/basic-info.php:162
|
1901 |
+
msgid "** only available in the %1$sPro version%2$s."
|
1902 |
+
msgstr "**印の項目は%1$sProバージョン%2$sでのみ利用可能です。"
|
1903 |
+
|
1904 |
+
#: ../admin/general-settings.php:42
|
1905 |
+
msgid "Load Profile Builder's own CSS file in the front-end:"
|
1906 |
+
msgstr "Profile Builder固有のCSSを公開ページで読み込む:"
|
1907 |
+
|
1908 |
+
#: ../admin/general-settings.php:45 ../admin/general-settings.php:60
|
1909 |
+
#: ../admin/general-settings.php:114
|
1910 |
+
#: ../modules/multiple-forms/register-forms.php:225
|
1911 |
+
#: ../modules/multiple-forms/register-forms.php:226
|
1912 |
+
#: ../modules/user-listing/userlisting.php:1303
|
1913 |
+
msgid "Yes"
|
1914 |
+
msgstr "はい"
|
1915 |
+
|
1916 |
+
#: ../admin/general-settings.php:47
|
1917 |
+
msgid "You can find the default file here: %1$s"
|
1918 |
+
msgstr "初期ファイルはこちら: %1$s"
|
1919 |
+
|
1920 |
+
#: ../admin/general-settings.php:56
|
1921 |
+
msgid "\"Email Confirmation\" Activated:"
|
1922 |
+
msgstr "\"Eメール確認\"機能 有効化:"
|
1923 |
+
|
1924 |
+
#: ../admin/general-settings.php:61 ../admin/general-settings.php:115
|
1925 |
+
#: ../modules/multiple-forms/register-forms.php:225
|
1926 |
+
#: ../modules/multiple-forms/register-forms.php:226
|
1927 |
+
msgid "No"
|
1928 |
+
msgstr "いいえ"
|
1929 |
+
|
1930 |
+
#: ../admin/general-settings.php:64
|
1931 |
+
msgid "On single-site installations this works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" addon."
|
1932 |
+
msgstr "シングルサイト・インストールのサイトでは、公開フォームのみで機能します。\"カスタム・リダイレクト\"を使用し、WordPressの標準登録画面からProfile Builderのものへリダイレクトすることをおすすめします。"
|
1933 |
+
|
1934 |
+
#: ../admin/general-settings.php:65
|
1935 |
+
msgid "The \"Email Confirmation\" feature is active (by default) on WPMU installations."
|
1936 |
+
msgstr "\"Eメール確認\"機能はWPMUインストールでは(デフォルトで)有効です。"
|
1937 |
+
|
1938 |
+
#: ../admin/general-settings.php:67
|
1939 |
+
msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
|
1940 |
+
msgstr "未確認のメールアドレス一覧は、%1$sユーザー > ユーザー一覧 > アドレス未確認ユーザー%2$s で確認できます。"
|
1941 |
+
|
1942 |
+
#: ../admin/general-settings.php:79
|
1943 |
+
msgid "\"Email Confirmation\" Landing Page:"
|
1944 |
+
msgstr "\"Eメール確認\"機能 ランディングページ:"
|
1945 |
+
|
1946 |
+
#: ../admin/general-settings.php:84
|
1947 |
+
msgid "Existing Pages"
|
1948 |
+
msgstr "存在するページ"
|
1949 |
+
|
1950 |
+
#: ../admin/general-settings.php:99
|
1951 |
+
msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
|
1952 |
+
msgstr "Eメール確認後にリダイレクトされるページを指定してください。これは登録ページと違っていてもよく、またいつでも変更できます。なにも指定していない場合、シンプルは確認ページが表示されます。"
|
1953 |
+
|
1954 |
+
#: ../admin/general-settings.php:110
|
1955 |
+
msgid "\"Admin Approval\" Activated:"
|
1956 |
+
msgstr "\"管理者承認\" 機能 有効化:"
|
1957 |
+
|
1958 |
+
#: ../admin/general-settings.php:118
|
1959 |
+
msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
|
1960 |
+
msgstr "ユーザーの一覧は %1$sユーザー > ユーザー一覧 > 監視者承認%2$sで見ることができます。"
|
1961 |
+
|
1962 |
+
#: ../admin/general-settings.php:156
|
1963 |
+
msgid "\"Admin Approval\" Feature:"
|
1964 |
+
msgstr "\"管理者承認\" 機能:"
|
1965 |
+
|
1966 |
+
#: ../admin/general-settings.php:159
|
1967 |
+
msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
|
1968 |
+
msgstr "誰がこのサイトを利用できるか管理者が選別します。メールでの通知を受け取るか、WordPress UI上でまとめて承認することができます。この機能は%1$sHobbyist または PRO バージョン%2$sで有効化できます。"
|
1969 |
+
|
1970 |
+
#: ../admin/general-settings.php:166
|
1971 |
+
msgid "Allow Users to Log in With:"
|
1972 |
+
msgstr "ユーザーログイン方法:"
|
1973 |
+
|
1974 |
+
#: ../admin/general-settings.php:171 ../admin/manage-fields.php:159
|
1975 |
+
#: ../features/admin-approval/class-admin-approval.php:177
|
1976 |
+
#: ../features/email-confirmation/class-email-confirmation.php:167
|
1977 |
+
#: ../modules/email-customizer/email-customizer.php:28
|
1978 |
+
#: ../modules/user-listing/userlisting.php:92
|
1979 |
+
#: ../modules/user-listing/userlisting.php:248
|
1980 |
+
#: ../modules/user-listing/userlisting.php:611
|
1981 |
+
#: ../modules/user-listing/userlisting.php:1259
|
1982 |
+
msgid "Username"
|
1983 |
+
msgstr "ユーザー名"
|
1984 |
+
|
1985 |
+
#: ../admin/general-settings.php:172 ../front-end/login.php:170
|
1986 |
+
#: ../modules/email-customizer/email-customizer.php:29
|
1987 |
+
#: ../modules/user-listing/userlisting.php:617
|
1988 |
+
#: ../modules/user-listing/userlisting.php:1260
|
1989 |
+
msgid "Email"
|
1990 |
+
msgstr "メールアドレス"
|
1991 |
+
|
1992 |
+
#: ../admin/general-settings.php:184
|
1993 |
+
msgid "Minimum Password Length:"
|
1994 |
+
msgstr "最低パスワード長:"
|
1995 |
+
|
1996 |
+
#: ../admin/general-settings.php:189
|
1997 |
+
msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
|
1998 |
+
msgstr "パスワードの最低文字数を入力。指定しない場合は空欄。"
|
1999 |
+
|
2000 |
+
#: ../admin/general-settings.php:196
|
2001 |
+
msgid "Minimum Password Strength:"
|
2002 |
+
msgstr "パスワードの最低強度:"
|
2003 |
+
|
2004 |
+
#: ../admin/general-settings.php:200
|
2005 |
+
msgid "Disabled"
|
2006 |
+
msgstr "無効"
|
2007 |
+
|
2008 |
+
#: ../admin/manage-fields.php:12
|
2009 |
+
msgid "Manage Fields"
|
2010 |
+
msgstr "記入欄設定"
|
2011 |
+
|
2012 |
+
#: ../admin/manage-fields.php:13
|
2013 |
+
msgid "Manage Default and Extra Fields"
|
2014 |
+
msgstr "記入欄設定"
|
2015 |
+
|
2016 |
+
#: ../admin/manage-fields.php:94
|
2017 |
+
msgid "Field Title"
|
2018 |
+
msgstr "欄名称"
|
2019 |
+
|
2020 |
+
#: ../admin/manage-fields.php:94
|
2021 |
+
msgid "Title of the field"
|
2022 |
+
msgstr "欄の名称"
|
2023 |
+
|
2024 |
+
#: ../admin/manage-fields.php:95
|
2025 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:241
|
2026 |
+
#: ../modules/multiple-forms/register-forms.php:262
|
2027 |
+
msgid "Field"
|
2028 |
+
msgstr "記入欄"
|
2029 |
+
|
2030 |
+
#: ../admin/manage-fields.php:96
|
2031 |
+
msgid "Meta-name"
|
2032 |
+
msgstr "メタネーム"
|
2033 |
+
|
2034 |
+
#: ../admin/manage-fields.php:96
|
2035 |
+
msgid "Use this in conjuction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be uniqe)<br/>Changing this might take long in case of a very big user-count"
|
2036 |
+
msgstr "この値をページに表示するにはWordPressの関数を組み合わせて御利用ください。<br />原則として自動入力されますが、時として(ユニークなものを指定しなければならない場合)、編集可能になります。<br/>これを変更するとユーザ数によっては非常に長い時間がかかる場合があります。"
|
2037 |
+
|
2038 |
+
#: ../admin/manage-fields.php:97
|
2039 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:242
|
2040 |
+
#: ../modules/multiple-forms/register-forms.php:263
|
2041 |
+
msgid "ID"
|
2042 |
+
msgstr "ID"
|
2043 |
+
|
2044 |
+
#: ../admin/manage-fields.php:97
|
2045 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:242
|
2046 |
+
#: ../modules/multiple-forms/register-forms.php:263
|
2047 |
+
msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
|
2048 |
+
msgstr "この記入欄固有の自動生成されたIDです<br/>フィルターでこの要素を指し示すのに使用できます。<br/>編集不可"
|
2049 |
+
|
2050 |
+
#: ../admin/manage-fields.php:98
|
2051 |
+
msgid "Description"
|
2052 |
+
msgstr "説明"
|
2053 |
+
|
2054 |
+
#: ../admin/manage-fields.php:98
|
2055 |
+
msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
|
2056 |
+
msgstr "一般ユーザが何を記入すれば良いかの詳しい説明を記入してください(任意)"
|
2057 |
+
|
2058 |
+
#: ../admin/manage-fields.php:99
|
2059 |
+
msgid "Row Count"
|
2060 |
+
msgstr "行数"
|
2061 |
+
|
2062 |
+
#: ../admin/manage-fields.php:99
|
2063 |
+
msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
|
2064 |
+
msgstr "'Textarea'型記入欄の行数<br/>指定しない場合は5行になります。"
|
2065 |
+
|
2066 |
+
#: ../admin/manage-fields.php:100
|
2067 |
+
msgid "Allowed Image Extensions"
|
2068 |
+
msgstr "対応画像拡張子"
|
2069 |
+
|
2070 |
+
#: ../admin/manage-fields.php:101
|
2071 |
+
msgid "Allowed Upload Extensions"
|
2072 |
+
msgstr "アップロード可能な拡張子"
|
2073 |
+
|
2074 |
+
#: ../admin/manage-fields.php:102
|
2075 |
+
msgid "Avatar Size"
|
2076 |
+
msgstr "アバターサイズ"
|
2077 |
+
|
2078 |
+
#: ../admin/manage-fields.php:102
|
2079 |
+
msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
|
2080 |
+
msgstr "アバター画像サイズの値を入力してください(20から200の間)<br/>指定しない場合のデフォルトは100です。"
|
2081 |
+
|
2082 |
+
#: ../admin/manage-fields.php:103
|
2083 |
+
msgid "Date-format"
|
2084 |
+
msgstr "日付様式"
|
2085 |
+
|
2086 |
+
#: ../admin/manage-fields.php:103
|
2087 |
+
msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not specified, defaults to mm/dd/yy"
|
2088 |
+
msgstr "デートピッカーを利用する場合の日付書式を指定してください。<br/>利用可能な選択肢: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>指定しないのデフォルトはmm/dd/yyです。"
|
2089 |
+
|
2090 |
+
#: ../admin/manage-fields.php:104
|
2091 |
+
msgid "Terms of Agreement"
|
2092 |
+
msgstr "利用許諾"
|
2093 |
+
|
2094 |
+
#: ../admin/manage-fields.php:104
|
2095 |
+
msgid "Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>"
|
2096 |
+
msgstr "ユーザに読ませたい利用許諾書を入力します。<br/>リンクは標準的なHTML文法で挿入できます。: <a href=\"custom_url\">custom_text</a>"
|
2097 |
+
|
2098 |
+
#: ../admin/manage-fields.php:105
|
2099 |
+
msgid "Options"
|
2100 |
+
msgstr "選択肢(記録)"
|
2101 |
+
|
2102 |
+
#: ../admin/manage-fields.php:106
|
2103 |
+
msgid "Labels"
|
2104 |
+
msgstr "選択肢(表示)"
|
2105 |
+
|
2106 |
+
#: ../admin/manage-fields.php:106
|
2107 |
+
msgid "Enter a comma separated list of labels<br/>Visible for the user"
|
2108 |
+
msgstr "選択肢をカンマで区切って入力してください。<br/>ユーザに提示される値です。"
|
2109 |
+
|
2110 |
+
#: ../admin/manage-fields.php:113
|
2111 |
+
msgid "Default Value"
|
2112 |
+
msgstr "初期値"
|
2113 |
+
|
2114 |
+
#: ../admin/manage-fields.php:113
|
2115 |
+
msgid "Default value of the field"
|
2116 |
+
msgstr "記入欄のデフォルト値"
|
2117 |
+
|
2118 |
+
#: ../admin/manage-fields.php:114 ../admin/manage-fields.php:116
|
2119 |
+
#: ../admin/manage-fields.php:117
|
2120 |
+
msgid "Default Option"
|
2121 |
+
msgstr "デフォルトの選択肢"
|
2122 |
+
|
2123 |
+
#: ../admin/manage-fields.php:114
|
2124 |
+
msgid "Specify the option which should be selected by default"
|
2125 |
+
msgstr "デフォルトで選択状態にしたい選択肢を指定してください。"
|
2126 |
+
|
2127 |
+
#: ../admin/manage-fields.php:115
|
2128 |
+
msgid "Default Option(s)"
|
2129 |
+
msgstr "デフォルトの選択肢(複数)"
|
2130 |
+
|
2131 |
+
#: ../admin/manage-fields.php:115
|
2132 |
+
msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
|
2133 |
+
msgstr "デフォルトで選択状態にしたい選択肢を指定してください。<br/>複数の値を指定する場合は',' (半角カンマ)で区切ってください。"
|
2134 |
+
|
2135 |
+
#: ../admin/manage-fields.php:118
|
2136 |
+
msgid "Default Content"
|
2137 |
+
msgstr "デフォルトの値"
|
2138 |
+
|
2139 |
+
#: ../admin/manage-fields.php:118
|
2140 |
+
msgid "Default value of the textarea"
|
2141 |
+
msgstr "テキストエリアのデフォルト値"
|
2142 |
+
|
2143 |
+
#: ../admin/manage-fields.php:119
|
2144 |
+
msgid "Required"
|
2145 |
+
msgstr "必須"
|
2146 |
+
|
2147 |
+
#: ../admin/manage-fields.php:119
|
2148 |
+
msgid "Whether the field is required or not"
|
2149 |
+
msgstr "この記入欄が必須かどうか"
|
2150 |
+
|
2151 |
+
#: ../admin/manage-fields.php:120
|
2152 |
+
msgid "Overwrite Existing"
|
2153 |
+
msgstr "上書き"
|
2154 |
+
|
2155 |
+
#: ../admin/manage-fields.php:120
|
2156 |
+
msgid "Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk"
|
2157 |
+
msgstr "「Yes」を指定すると、データベース上で同じmeta-nameをもつ他のフィールドを上書きします。<br />自己責任でお使いください。"
|
2158 |
+
|
2159 |
+
#: ../admin/manage-fields.php:126
|
2160 |
+
msgid "Field Properties"
|
2161 |
+
msgstr "記入欄の属性"
|
2162 |
+
|
2163 |
+
#: ../admin/manage-fields.php:139
|
2164 |
+
msgid "Registration & Edit Profile"
|
2165 |
+
msgstr "プロファイルの登録と編集"
|
2166 |
+
|
2167 |
+
#: ../admin/manage-fields.php:158
|
2168 |
+
msgid "Name"
|
2169 |
+
msgstr "名前"
|
2170 |
+
|
2171 |
+
#: ../admin/manage-fields.php:159
|
2172 |
+
msgid "Usernames cannot be changed."
|
2173 |
+
msgstr "ユーザ名は変更できません。"
|
2174 |
+
|
2175 |
+
#: ../admin/manage-fields.php:160
|
2176 |
+
msgid "First Name"
|
2177 |
+
msgstr "名"
|
2178 |
+
|
2179 |
+
#: ../admin/manage-fields.php:161
|
2180 |
+
msgid "Last Name"
|
2181 |
+
msgstr "姓"
|
2182 |
+
|
2183 |
+
#: ../admin/manage-fields.php:162 ../modules/user-listing/userlisting.php:650
|
2184 |
+
msgid "Nickname"
|
2185 |
+
msgstr "ニックネーム"
|
2186 |
+
|
2187 |
+
#: ../admin/manage-fields.php:163
|
2188 |
+
msgid "Display name publicly as"
|
2189 |
+
msgstr "この名前で公開表示"
|
2190 |
+
|
2191 |
+
#: ../admin/manage-fields.php:164
|
2192 |
+
msgid "Contact Info"
|
2193 |
+
msgstr "連絡先"
|
2194 |
+
|
2195 |
+
#: ../admin/manage-fields.php:165
|
2196 |
+
#: ../features/admin-approval/class-admin-approval.php:180
|
2197 |
+
#: ../features/email-confirmation/class-email-confirmation.php:168
|
2198 |
+
#: ../modules/user-listing/userlisting.php:98
|
2199 |
+
msgid "E-mail"
|
2200 |
+
msgstr "メールアドレス"
|
2201 |
+
|
2202 |
+
#: ../admin/manage-fields.php:166
|
2203 |
+
#: ../modules/email-customizer/email-customizer.php:32
|
2204 |
+
#: ../modules/user-listing/userlisting.php:101
|
2205 |
+
#: ../modules/user-listing/userlisting.php:632
|
2206 |
+
#: ../modules/user-listing/userlisting.php:1261
|
2207 |
+
msgid "Website"
|
2208 |
+
msgstr "Webサイト"
|
2209 |
+
|
2210 |
+
#: ../admin/manage-fields.php:170
|
2211 |
+
msgid "AIM"
|
2212 |
+
msgstr "AIM"
|
2213 |
+
|
2214 |
+
#: ../admin/manage-fields.php:171
|
2215 |
+
msgid "Yahoo IM"
|
2216 |
+
msgstr "Yahoo IM"
|
2217 |
+
|
2218 |
+
#: ../admin/manage-fields.php:172
|
2219 |
+
msgid "Jabber / Google Talk"
|
2220 |
+
msgstr "Jabber / Google Talk"
|
2221 |
+
|
2222 |
+
#: ../admin/manage-fields.php:175
|
2223 |
+
msgid "About Yourself"
|
2224 |
+
msgstr "あなたについて"
|
2225 |
+
|
2226 |
+
#: ../admin/manage-fields.php:176 ../modules/user-listing/userlisting.php:104
|
2227 |
+
#: ../modules/user-listing/userlisting.php:635
|
2228 |
+
#: ../modules/user-listing/userlisting.php:1262
|
2229 |
+
msgid "Biographical Info"
|
2230 |
+
msgstr "略歴"
|
2231 |
+
|
2232 |
+
#: ../admin/manage-fields.php:176
|
2233 |
+
msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
|
2234 |
+
msgstr ""
|
2235 |
+
|
2236 |
+
#: ../admin/manage-fields.php:177 ../front-end/recover.php:75
|
2237 |
+
#: ../modules/email-customizer/email-customizer.php:30
|
2238 |
+
msgid "Password"
|
2239 |
+
msgstr "パスワード"
|
2240 |
+
|
2241 |
+
#: ../admin/manage-fields.php:177
|
2242 |
+
msgid "Type your password."
|
2243 |
+
msgstr "パスワードを入力してください。"
|
2244 |
+
|
2245 |
+
#: ../admin/manage-fields.php:178 ../front-end/recover.php:80
|
2246 |
+
msgid "Repeat Password"
|
2247 |
+
msgstr "パスワード(確認)"
|
2248 |
+
|
2249 |
+
#: ../admin/manage-fields.php:178
|
2250 |
+
msgid "Type your password again. "
|
2251 |
+
msgstr "パスワードを再入力してください。"
|
2252 |
+
|
2253 |
+
#: ../admin/manage-fields.php:617 ../admin/manage-fields.php:761
|
2254 |
+
msgid "You must select a field\n"
|
2255 |
+
msgstr "記入欄を選択してください\n"
|
2256 |
+
|
2257 |
+
#: ../admin/manage-fields.php:627
|
2258 |
+
msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
|
2259 |
+
msgstr "他の記入欄タイプを選択してください(既にあるものと重複はできません)。\n"
|
2260 |
+
|
2261 |
+
#: ../admin/manage-fields.php:638
|
2262 |
+
msgid "The entered avatar size is not between 20 and 200\n"
|
2263 |
+
msgstr "入力したアバターサイズが20から200の間ではありません\n"
|
2264 |
+
|
2265 |
+
#: ../admin/manage-fields.php:641
|
2266 |
+
msgid "The entered avatar size is not numerical\n"
|
2267 |
+
msgstr "入力されたアバターサイズが数値ではありませんl\n"
|
2268 |
+
|
2269 |
+
#: ../admin/manage-fields.php:649
|
2270 |
+
msgid "The entered row number is not numerical\n"
|
2271 |
+
msgstr "入力された行数が数値ではありませんl\n"
|
2272 |
+
|
2273 |
+
#: ../admin/manage-fields.php:652
|
2274 |
+
msgid "You must enter a value for the row number\n"
|
2275 |
+
msgstr "数字で入力してください。\n"
|
2276 |
+
|
2277 |
+
#: ../admin/manage-fields.php:670
|
2278 |
+
msgid "The entered value for the Datepicker is not a valid date-format\n"
|
2279 |
+
msgstr "日付欄に指定された値が正しい日付書式ではありません\n"
|
2280 |
+
|
2281 |
+
#: ../admin/manage-fields.php:673
|
2282 |
+
msgid "You must enter a value for the date-format\n"
|
2283 |
+
msgstr "正しい書式で日付を入力してください。\n"
|
2284 |
+
|
2285 |
+
#: ../admin/manage-fields.php:701 ../admin/manage-fields.php:709
|
2286 |
+
#: ../admin/manage-fields.php:719
|
2287 |
+
msgid "That meta-name is already in use\n"
|
2288 |
+
msgstr "そのメタネームは既に存在します。\n"
|
2289 |
+
|
2290 |
+
#: ../admin/manage-fields.php:741
|
2291 |
+
msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
|
2292 |
+
msgstr "以下の選択肢が一覧のにあるものと一致しません: %s\n"
|
2293 |
+
|
2294 |
+
#: ../admin/manage-fields.php:745
|
2295 |
+
msgid "The following option did not coincide with the ones in the options list: %s\n"
|
2296 |
+
msgstr "以下の選択肢が一覧のにあるものと一致しません: %s\n"
|
2297 |
+
|
2298 |
+
#: ../admin/manage-fields.php:768
|
2299 |
+
msgid "That field is already added in this form\n"
|
2300 |
+
msgstr "この記入欄はこのフォームに追加済みです\n"
|
2301 |
+
|
2302 |
+
#: ../admin/manage-fields.php:817
|
2303 |
+
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
2304 |
+
msgstr "<pre>ラベル</pre><pre>タイプ</pre><pre>メタネーム</pre><pre class=\"wppb-mb-head-required\">必須指定</pre>"
|
2305 |
+
|
2306 |
+
#: ../admin/manage-fields.php:817
|
2307 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:440
|
2308 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:529
|
2309 |
+
#: ../features/admin-approval/class-admin-approval.php:119
|
2310 |
+
#: ../features/functions.php:641 ../features/functions.php:648
|
2311 |
+
#: ../modules/multiple-forms/multiple-forms.php:416
|
2312 |
+
msgid "Edit"
|
2313 |
+
msgstr "編集"
|
2314 |
+
|
2315 |
+
#: ../admin/manage-fields.php:817
|
2316 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:440
|
2317 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:530
|
2318 |
+
#: ../features/admin-approval/class-admin-approval.php:124
|
2319 |
+
#: ../features/admin-approval/class-admin-approval.php:235
|
2320 |
+
#: ../features/email-confirmation/class-email-confirmation.php:120
|
2321 |
+
#: ../features/email-confirmation/class-email-confirmation.php:217
|
2322 |
+
#: ../features/functions.php:634 ../features/functions.php:648
|
2323 |
+
msgid "Delete"
|
2324 |
+
msgstr "削除"
|
2325 |
+
|
2326 |
+
#: ../admin/manage-fields.php:832
|
2327 |
+
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
2328 |
+
msgstr "フォームを表示したいページに以下のショートコードを貼り付けてください:"
|
2329 |
+
|
2330 |
+
#: ../admin/manage-fields.php:841
|
2331 |
+
msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Addon."
|
2332 |
+
msgstr "プロフィールの登録と編集フォームに異なる記入欄を表示したい場合は、Multiple Registration & Edit Profile Formsアドオンをご利用ください。"
|
2333 |
+
|
2334 |
+
#: ../admin/register-version.php:14
|
2335 |
+
msgid "Register Your Version"
|
2336 |
+
msgstr "ライセンスの登録"
|
2337 |
+
|
2338 |
+
#: ../admin/register-version.php:14
|
2339 |
+
msgid "Register Version"
|
2340 |
+
msgstr "ライセンス登録"
|
2341 |
+
|
2342 |
+
#: ../admin/register-version.php:70
|
2343 |
+
msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
|
2344 |
+
msgstr "登録すると、アップグレードの案内、修正プログラム、テクニカルサポートが受けられます。"
|
2345 |
+
|
2346 |
+
#: ../admin/register-version.php:72
|
2347 |
+
msgid " Serial Number:"
|
2348 |
+
msgstr "シリアルナンバー:"
|
2349 |
+
|
2350 |
+
#: ../admin/register-version.php:77
|
2351 |
+
msgid "The serial number was successfully validated!"
|
2352 |
+
msgstr "シリアル番号は正常に承認されました!"
|
2353 |
+
|
2354 |
+
#: ../admin/register-version.php:79
|
2355 |
+
msgid "The serial number entered couldn't be validated!"
|
2356 |
+
msgstr "シリアル番号が承認されませんでした!"
|
2357 |
+
|
2358 |
+
#: ../admin/register-version.php:83
|
2359 |
+
msgid "The serial number couldn't be validated because it expired!"
|
2360 |
+
msgstr "シリアルナンバーが期限切れで承認されませんでした。"
|
2361 |
+
|
2362 |
+
#: ../admin/register-version.php:85
|
2363 |
+
msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
|
2364 |
+
msgstr "シリアル番号の承認がタイムアウトしました。おそらくサーバーの不具合によるものです。後ほど再度お試しください。"
|
2365 |
+
|
2366 |
+
#: ../admin/register-version.php:87
|
2367 |
+
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2368 |
+
msgstr "(例. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2369 |
+
|
2370 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:440
|
2371 |
+
#: ../features/functions.php:648
|
2372 |
+
msgid "Content"
|
2373 |
+
msgstr "内容"
|
2374 |
+
|
2375 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:529
|
2376 |
+
msgid "Edit this item"
|
2377 |
+
msgstr "この項目を編集"
|
2378 |
+
|
2379 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:530
|
2380 |
+
msgid "Delete this item"
|
2381 |
+
msgstr "この項目を削除"
|
2382 |
+
|
2383 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:676
|
2384 |
+
msgid "Please enter a value for the required field "
|
2385 |
+
msgstr "必須欄に入力してください。"
|
2386 |
+
|
2387 |
+
#: ../front-end/extra-fields/upload/upload.php:122
|
2388 |
+
msgid "Select File"
|
2389 |
+
msgstr ""
|
2390 |
+
|
2391 |
+
#: ../assets/lib/wck-api/fields/upload.php:43
|
2392 |
+
#: ../front-end/extra-fields/upload/upload.php:112
|
2393 |
+
msgid "Remove"
|
2394 |
+
msgstr "削除"
|
2395 |
+
|
2396 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:1155
|
2397 |
+
msgid "Syncronize WCK"
|
2398 |
+
msgstr "WCK同期"
|
2399 |
+
|
2400 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:1167
|
2401 |
+
msgid "Syncronize WCK Translation"
|
2402 |
+
msgstr "WCK翻訳同期"
|
2403 |
+
|
2404 |
+
#: ../assets/lib/wck-api/fields/nested repeater.php:8
|
2405 |
+
msgid "You can add the information for the %s after you add a entry"
|
2406 |
+
msgstr "エントリの追加後、%sの情報を追加することができます"
|
2407 |
+
|
2408 |
+
#: ../assets/lib/wck-api/fields/upload.php:75
|
2409 |
+
#: ../front-end/extra-fields/upload/upload.php:128
|
2410 |
+
msgid "Upload "
|
2411 |
+
msgstr "アップロード"
|
2412 |
+
|
2413 |
+
#: ../features/class-list-table.php:184
|
2414 |
+
msgid "No items found."
|
2415 |
+
msgstr "項目が見つかりません"
|
2416 |
+
|
2417 |
+
#: ../features/class-list-table.php:308
|
2418 |
+
msgid "Bulk Actions"
|
2419 |
+
msgstr "一括操作"
|
2420 |
+
|
2421 |
+
#: ../features/class-list-table.php:318
|
2422 |
+
msgid "Apply"
|
2423 |
+
msgstr "適用"
|
2424 |
+
|
2425 |
+
#: ../features/class-list-table.php:402
|
2426 |
+
msgid "Show all dates"
|
2427 |
+
msgstr "全てのの日付を用事"
|
2428 |
+
|
2429 |
+
#: ../features/class-list-table.php:415
|
2430 |
+
msgid "%1$s %2$d"
|
2431 |
+
msgstr "%1$s %2$d"
|
2432 |
+
|
2433 |
+
#: ../features/class-list-table.php:431
|
2434 |
+
msgid "List View"
|
2435 |
+
msgstr "一覧表示"
|
2436 |
+
|
2437 |
+
#: ../features/class-list-table.php:432
|
2438 |
+
msgid "Excerpt View"
|
2439 |
+
msgstr "抜粋ビュー"
|
2440 |
+
|
2441 |
+
#: ../features/class-list-table.php:458
|
2442 |
+
msgid "%s pending"
|
2443 |
+
msgstr "%s保留中"
|
2444 |
+
|
2445 |
+
#: ../features/class-list-table.php:566
|
2446 |
+
msgid "%1$s of %2$s"
|
2447 |
+
msgstr "%1$s of %2$s"
|
2448 |
+
|
2449 |
+
#: ../features/class-list-table.php:713
|
2450 |
+
msgid "Select All"
|
2451 |
+
msgstr "全て選択"
|
2452 |
+
|
2453 |
+
#: ../features/functions.php:281
|
2454 |
+
msgid "The user-validation has failed - the avatar was not deleted!"
|
2455 |
+
msgstr "ユーザチェックに失敗しました - アバターは削除されませんでした!"
|
2456 |
+
|
2457 |
+
#: ../features/functions.php:292
|
2458 |
+
msgid "The user-validation has failed - the attachment was not deleted!"
|
2459 |
+
msgstr "ユーザチェックに失敗しました - 添付ファイルは削除されませんでした!"
|
2460 |
+
|
2461 |
+
#: ../features/functions.php:487
|
2462 |
+
msgid "Strength indicator"
|
2463 |
+
msgstr "強度インジゲーター"
|
2464 |
+
|
2465 |
+
#: ../features/admin-approval/admin-approval.php:7
|
2466 |
+
#: ../features/admin-approval/class-admin-approval.php:458
|
2467 |
+
msgid "Admin Approval"
|
2468 |
+
msgstr "管理者承認"
|
2469 |
+
|
2470 |
+
#: ../features/admin-approval/admin-approval.php:21
|
2471 |
+
#: ../features/email-confirmation/email-confirmation.php:58
|
2472 |
+
msgid "Do you want to"
|
2473 |
+
msgstr ""
|
2474 |
+
|
2475 |
+
#: ../features/admin-approval/admin-approval.php:44
|
2476 |
+
msgid "Your session has expired! Please refresh the page and try again"
|
2477 |
+
msgstr "セッションの有効期限が切れました!ページをリロードして再度お試しください。"
|
2478 |
+
|
2479 |
+
#: ../features/admin-approval/admin-approval.php:55
|
2480 |
+
msgid "User successfully approved!"
|
2481 |
+
msgstr "ユーザーを承認しました!"
|
2482 |
+
|
2483 |
+
#: ../features/admin-approval/admin-approval.php:63
|
2484 |
+
msgid "User successfully unapproved!"
|
2485 |
+
msgstr "ユーザーを不承認しました!"
|
2486 |
+
|
2487 |
+
#: ../features/admin-approval/admin-approval.php:69
|
2488 |
+
msgid "User successfully deleted!"
|
2489 |
+
msgstr "ユーザーを削除しました!"
|
2490 |
+
|
2491 |
+
#: ../features/admin-approval/admin-approval.php:74
|
2492 |
+
#: ../features/admin-approval/admin-approval.php:118
|
2493 |
+
#: ../features/email-confirmation/email-confirmation.php:135
|
2494 |
+
msgid "You either don't have permission for that action or there was an error!"
|
2495 |
+
msgstr "その処理を実行する権限がない、もしくはエラーが発生しました!"
|
2496 |
+
|
2497 |
+
#: ../features/admin-approval/admin-approval.php:85
|
2498 |
+
msgid "Your session has expired! Please refresh the page and try again."
|
2499 |
+
msgstr "セッションの有効期限が切れました!ページをリロードして再度お試しください。"
|
2500 |
+
|
2501 |
+
#: ../features/admin-approval/admin-approval.php:97
|
2502 |
+
msgid "Users successfully approved!"
|
2503 |
+
msgstr "ユーザの承認が完了しました!"
|
2504 |
+
|
2505 |
+
#: ../features/admin-approval/admin-approval.php:106
|
2506 |
+
msgid "Users successfully unapproved!"
|
2507 |
+
msgstr "ユーザの不承認が完了しました!"
|
2508 |
+
|
2509 |
+
#: ../features/admin-approval/admin-approval.php:114
|
2510 |
+
msgid "Users successfully deleted!"
|
2511 |
+
msgstr "ユーザの削除が完了しました!"
|
2512 |
+
|
2513 |
+
#: ../features/admin-approval/admin-approval.php:134
|
2514 |
+
msgid "Your account on %1$s has been approved!"
|
2515 |
+
msgstr "%1$sのあなたのアカウントは承認されました!"
|
2516 |
+
|
2517 |
+
#: ../features/admin-approval/admin-approval.php:135
|
2518 |
+
#: ../features/admin-approval/admin-approval.php:138
|
2519 |
+
msgid "approved"
|
2520 |
+
msgstr "承認済み"
|
2521 |
+
|
2522 |
+
#: ../features/admin-approval/admin-approval.php:137
|
2523 |
+
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
2524 |
+
msgstr "%1$s (%2$s)上のあなたのアカウントを管理者が承認しました。"
|
2525 |
+
|
2526 |
+
#: ../features/admin-approval/admin-approval.php:142
|
2527 |
+
msgid "Your account on %1$s has been unapproved!"
|
2528 |
+
msgstr "%1$sのアカウントが承認されませんでした!"
|
2529 |
+
|
2530 |
+
#: ../features/admin-approval/admin-approval.php:143
|
2531 |
+
#: ../features/admin-approval/admin-approval.php:146
|
2532 |
+
msgid "unapproved"
|
2533 |
+
msgstr "不承認"
|
2534 |
+
|
2535 |
+
#: ../features/admin-approval/admin-approval.php:145
|
2536 |
+
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
2537 |
+
msgstr "%1$s (%2$s)上のあなたのアカウントを管理者が不承認としました。"
|
2538 |
+
|
2539 |
+
#: ../features/admin-approval/admin-approval.php:164
|
2540 |
+
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
2541 |
+
msgstr "<strong>エラー</strong>: あなたのアカウントは事前に管理者の承認を受ける必要があります。"
|
2542 |
+
|
2543 |
+
#: ../features/admin-approval/admin-approval.php:176
|
2544 |
+
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
|
2545 |
+
msgstr "あなたのアカウントはパスワードリカバリーの手続きをとる前に、管理者により確認されました。"
|
2546 |
+
|
2547 |
+
#: ../features/admin-approval/class-admin-approval.php:124
|
2548 |
+
msgid "delete this user?"
|
2549 |
+
msgstr "このユーザを削除しますか?"
|
2550 |
+
|
2551 |
+
#: ../features/admin-approval/class-admin-approval.php:127
|
2552 |
+
msgid "unapprove this user?"
|
2553 |
+
msgstr "このユーザを不承認にしますか?"
|
2554 |
+
|
2555 |
+
#: ../features/admin-approval/class-admin-approval.php:127
|
2556 |
+
#: ../features/admin-approval/class-admin-approval.php:234
|
2557 |
+
msgid "Unapprove"
|
2558 |
+
msgstr "不承認"
|
2559 |
+
|
2560 |
+
#: ../features/admin-approval/class-admin-approval.php:129
|
2561 |
+
msgid "approve this user?"
|
2562 |
+
msgstr "このユーザを承認しますか?"
|
2563 |
+
|
2564 |
+
#: ../features/admin-approval/class-admin-approval.php:129
|
2565 |
+
#: ../features/admin-approval/class-admin-approval.php:233
|
2566 |
+
msgid "Approve"
|
2567 |
+
msgstr "承認"
|
2568 |
+
|
2569 |
+
#: ../features/admin-approval/class-admin-approval.php:178
|
2570 |
+
#: ../modules/user-listing/userlisting.php:249
|
2571 |
+
#: ../modules/user-listing/userlisting.php:623
|
2572 |
+
#: ../modules/user-listing/userlisting.php:1264
|
2573 |
+
msgid "Firstname"
|
2574 |
+
msgstr "名"
|
2575 |
+
|
2576 |
+
#: ../features/admin-approval/class-admin-approval.php:179
|
2577 |
+
#: ../modules/user-listing/userlisting.php:626
|
2578 |
+
#: ../modules/user-listing/userlisting.php:1265
|
2579 |
+
msgid "Lastname"
|
2580 |
+
msgstr "姓"
|
2581 |
+
|
2582 |
+
#: ../features/admin-approval/class-admin-approval.php:181
|
2583 |
+
#: ../modules/user-listing/userlisting.php:124
|
2584 |
+
#: ../modules/user-listing/userlisting.php:250
|
2585 |
+
#: ../modules/user-listing/userlisting.php:653
|
2586 |
+
#: ../modules/user-listing/userlisting.php:1268
|
2587 |
+
msgid "Role"
|
2588 |
+
msgstr "権限"
|
2589 |
+
|
2590 |
+
#: ../features/admin-approval/class-admin-approval.php:182
|
2591 |
+
#: ../features/email-confirmation/class-email-confirmation.php:169
|
2592 |
+
msgid "Registered"
|
2593 |
+
msgstr "登録日時"
|
2594 |
+
|
2595 |
+
#: ../features/admin-approval/class-admin-approval.php:183
|
2596 |
+
msgid "User-status"
|
2597 |
+
msgstr "ユーザ状態"
|
2598 |
+
|
2599 |
+
#: ../features/admin-approval/class-admin-approval.php:263
|
2600 |
+
msgid "Do you want to bulk approve the selected users?"
|
2601 |
+
msgstr "選択したユーザを一括で承認しますか?"
|
2602 |
+
|
2603 |
+
#: ../features/admin-approval/class-admin-approval.php:271
|
2604 |
+
msgid "Do you want to bulk unapprove the selected users?"
|
2605 |
+
msgstr "選択したユーザを一括で不承認にしますか?"
|
2606 |
+
|
2607 |
+
#: ../features/admin-approval/class-admin-approval.php:277
|
2608 |
+
msgid "Do you want to bulk delete the selected users?"
|
2609 |
+
msgstr "選択したユーザを一括で削除しますか?"
|
2610 |
+
|
2611 |
+
#: ../features/admin-approval/class-admin-approval.php:285
|
2612 |
+
#: ../features/email-confirmation/class-email-confirmation.php:278
|
2613 |
+
msgid "Sorry, but you don't have permission to do that!"
|
2614 |
+
msgstr "申し訳ありません、それはあなたの権限では行えません!"
|
2615 |
+
|
2616 |
+
#: ../features/admin-approval/class-admin-approval.php:341
|
2617 |
+
msgid "Approved"
|
2618 |
+
msgstr "承認"
|
2619 |
+
|
2620 |
+
#: ../features/admin-approval/class-admin-approval.php:343
|
2621 |
+
msgid "Unapproved"
|
2622 |
+
msgstr "不承認"
|
2623 |
+
|
2624 |
+
#: ../features/admin-approval/class-admin-approval.php:461
|
2625 |
+
#: ../features/email-confirmation/class-email-confirmation.php:469
|
2626 |
+
msgid "All Users"
|
2627 |
+
msgstr "全ユーザ"
|
2628 |
+
|
2629 |
+
#: ../features/email-confirmation/class-email-confirmation.php:120
|
2630 |
+
msgid "delete this user from the _signups table?"
|
2631 |
+
msgstr "_signupsテーブルからこのユーザを削除しますか?"
|
2632 |
+
|
2633 |
+
#: ../features/email-confirmation/class-email-confirmation.php:121
|
2634 |
+
msgid "confirm this email yourself?"
|
2635 |
+
msgstr "このメールをあなた自身で確認しますか?"
|
2636 |
+
|
2637 |
+
#: ../features/email-confirmation/class-email-confirmation.php:121
|
2638 |
+
#: ../features/email-confirmation/class-email-confirmation.php:218
|
2639 |
+
msgid "Confirm Email"
|
2640 |
+
msgstr "確認Eメール"
|
2641 |
+
|
2642 |
+
#: ../features/email-confirmation/class-email-confirmation.php:122
|
2643 |
+
msgid "resend the activation link?"
|
2644 |
+
msgstr "アクティベーションリンクを再送しますか?"
|
2645 |
+
|
2646 |
+
#: ../features/email-confirmation/class-email-confirmation.php:122
|
2647 |
+
#: ../features/email-confirmation/class-email-confirmation.php:219
|
2648 |
+
msgid "Resend Activation Email"
|
2649 |
+
msgstr "アクティベーションメールの再送"
|
2650 |
+
|
2651 |
+
#: ../features/email-confirmation/class-email-confirmation.php:249
|
2652 |
+
msgid "%s couldn't be deleted"
|
2653 |
+
msgstr "%sが削除できませんでした。"
|
2654 |
+
|
2655 |
+
#: ../features/email-confirmation/class-email-confirmation.php:253
|
2656 |
+
msgid "All users have been successfully deleted"
|
2657 |
+
msgstr "全てのユーザを削除しました"
|
2658 |
+
|
2659 |
+
#: ../features/email-confirmation/class-email-confirmation.php:263
|
2660 |
+
msgid "The selected users have been activated"
|
2661 |
+
msgstr "選択したユーザは有効化されました。"
|
2662 |
+
|
2663 |
+
#: ../features/email-confirmation/class-email-confirmation.php:274
|
2664 |
+
msgid "The selected users have had their activation emails resent"
|
2665 |
+
msgstr "選択したユーザに有効化メールが再送信されました。"
|
2666 |
+
|
2667 |
+
#: ../features/email-confirmation/class-email-confirmation.php:466
|
2668 |
+
#: ../features/email-confirmation/email-confirmation.php:47
|
2669 |
+
msgid "Users with Unconfirmed Email Address"
|
2670 |
+
msgstr "アドレス未確認ユーザー"
|
2671 |
+
|
2672 |
+
#: ../features/email-confirmation/email-confirmation.php:110
|
2673 |
+
msgid "There was an error performing that action!"
|
2674 |
+
msgstr "その処理を実行する際にエラーが起きました!"
|
2675 |
+
|
2676 |
+
#: ../features/email-confirmation/email-confirmation.php:118
|
2677 |
+
msgid "The selected user couldn't be deleted"
|
2678 |
+
msgstr "選択したユーザが削除できませんでした"
|
2679 |
+
|
2680 |
+
#: ../features/email-confirmation/email-confirmation.php:129
|
2681 |
+
msgid "Email notification resent to user"
|
2682 |
+
msgstr "Eメール通知がユーザに再送されました。"
|
2683 |
+
|
2684 |
+
#: ../features/email-confirmation/email-confirmation.php:384
|
2685 |
+
msgid "[%1$s] Activate %2$s"
|
2686 |
+
msgstr "[%1$s] 有効化 %2$s"
|
2687 |
+
|
2688 |
+
#: ../features/email-confirmation/email-confirmation.php:387
|
2689 |
+
msgid ""
|
2690 |
+
"To activate your user, please click the following link:\n"
|
2691 |
+
"\n"
|
2692 |
+
"%s%s%s\n"
|
2693 |
+
"\n"
|
2694 |
+
"After you activate it you will receive yet *another email* with your login."
|
2695 |
+
msgstr ""
|
2696 |
+
"あなたのアカウントを有効化するには、下記のリンクをクリックしてください。:\n"
|
2697 |
+
"\n"
|
2698 |
+
"%s%s%s\n"
|
2699 |
+
"\n"
|
2700 |
+
"アクティベート完了後、ユーザ名入りのメールが別途送信されます。"
|
2701 |
+
|
2702 |
+
#: ../features/email-confirmation/email-confirmation.php:428
|
2703 |
+
#: ../front-end/register.php:68
|
2704 |
+
msgid "Could not create user!"
|
2705 |
+
msgstr "ユーザを作成できません!"
|
2706 |
+
|
2707 |
+
#: ../features/email-confirmation/email-confirmation.php:431
|
2708 |
+
msgid "That username is already activated!"
|
2709 |
+
msgstr "このユーザー名は承認済みです!"
|
2710 |
+
|
2711 |
+
#: ../features/email-confirmation/email-confirmation.php:453
|
2712 |
+
msgid "There was an error while trying to activate the user"
|
2713 |
+
msgstr "ユーザをアクティベートする際にエラーが発生しました"
|
2714 |
+
|
2715 |
+
#: ../features/email-confirmation/email-confirmation.php:501
|
2716 |
+
#: ../modules/email-customizer/admin-email-customizer.php:73
|
2717 |
+
msgid "A new subscriber has (been) registered!"
|
2718 |
+
msgstr "新しい購読者が登録されました!"
|
2719 |
+
|
2720 |
+
#: ../features/email-confirmation/email-confirmation.php:504
|
2721 |
+
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
2722 |
+
msgstr "%1$sに新規登録がありました。<br/><br/>ユーザー名:%2$s<br/>E-メールアドレス:%3$s<br/>"
|
2723 |
+
|
2724 |
+
#: ../features/email-confirmation/email-confirmation.php:605
|
2725 |
+
msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
|
2726 |
+
msgstr "登録地の\"管理者承認\"機能が有効化されました。あなたが承認するまでユーザはログインすることはできません!"
|
2727 |
+
|
2728 |
+
#: ../features/email-confirmation/email-confirmation.php:550
|
2729 |
+
msgid "[%1$s] Your new account information"
|
2730 |
+
msgstr "[%1$s] あなたの新アカウント情報"
|
2731 |
+
|
2732 |
+
#: ../features/email-confirmation/email-confirmation.php:556
|
2733 |
+
msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
|
2734 |
+
msgstr "ようこそ、%1$sへ!<br/><br/><br/>あなたのユーザ名は%2$s、パスワードは%3$sとなります。"
|
2735 |
+
|
2736 |
+
#: ../features/email-confirmation/email-confirmation.php:613
|
2737 |
+
#: ../front-end/register.php:116
|
2738 |
+
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
2739 |
+
msgstr "ご登録いただいたアカウントのご利用には、管理者の承認が必要です。eメールにて通知が届きます。"
|
2740 |
+
|
2741 |
+
#: ../features/login-widget/login-widget.php:10
|
2742 |
+
msgid "This login widget lets you add a login form in the sidebar."
|
2743 |
+
msgstr "このログインウィジェットはサイドバーにログインフォームを表示します。"
|
2744 |
+
|
2745 |
+
#: ../features/login-widget/login-widget.php:15
|
2746 |
+
msgid "Profile Builder Login Widget"
|
2747 |
+
msgstr "Profile Buiderログインウィジェット"
|
2748 |
+
|
2749 |
+
#: ../front-end/class-formbuilder.php:294 ../front-end/login.php:202
|
2750 |
+
msgid "Register"
|
2751 |
+
msgstr "新規登録"
|
2752 |
+
|
2753 |
+
#: ../features/login-widget/login-widget.php:63
|
2754 |
+
msgid "Title:"
|
2755 |
+
msgstr "タイトル:"
|
2756 |
+
|
2757 |
+
#: ../features/login-widget/login-widget.php:68
|
2758 |
+
msgid "After login redirect URL (optional):"
|
2759 |
+
msgstr "ログイン後リダイレクト先URL(オプション):"
|
2760 |
+
|
2761 |
+
#: ../features/login-widget/login-widget.php:73
|
2762 |
+
msgid "Register page URL (optional):"
|
2763 |
+
msgstr "登録ページURL(オプション):"
|
2764 |
+
|
2765 |
+
#: ../features/login-widget/login-widget.php:78
|
2766 |
+
msgid "Password Recovery page URL (optional):"
|
2767 |
+
msgstr "パスワード復旧ページURL (オプション):"
|
2768 |
+
|
2769 |
+
#: ../features/upgrades/upgrades-functions.php:91
|
2770 |
+
#: ../features/upgrades/upgrades-functions.php:134
|
2771 |
+
msgid "The usernames cannot be changed."
|
2772 |
+
msgstr "ユーザ名は変更できません。"
|
2773 |
+
|
2774 |
+
#: ../front-end/class-formbuilder.php:89
|
2775 |
+
msgid "Only an administrator can add new users."
|
2776 |
+
msgstr "管理者のみがユーザを新規追加できます。"
|
2777 |
+
|
2778 |
+
#: ../front-end/class-formbuilder.php:99
|
2779 |
+
msgid "Users can register themselves or you can manually create users here."
|
2780 |
+
msgstr "こちらで新規ユーザ登録ができます。"
|
2781 |
+
|
2782 |
+
#: ../front-end/class-formbuilder.php:102
|
2783 |
+
msgid "Users cannot currently register themselves, but you can manually create users here."
|
2784 |
+
msgstr "ユーザが自身で登録することができませでした。しかしあなたは手動でユーザを作成することができます。"
|
2785 |
+
|
2786 |
+
#: ../front-end/class-formbuilder.php:114
|
2787 |
+
msgid "You are currently logged in as %1s. You don't need another account. %2s"
|
2788 |
+
msgstr "あなたは現在%1sとしてログインしています。 別のアカウントは必要ありません。%2s"
|
2789 |
+
|
2790 |
+
#: ../front-end/class-formbuilder.php:114
|
2791 |
+
msgid "Log out of this account."
|
2792 |
+
msgstr "このアカウントをログアウトする"
|
2793 |
+
|
2794 |
+
#: ../front-end/class-formbuilder.php:114
|
2795 |
+
msgid "Logout"
|
2796 |
+
msgstr "ログアウト"
|
2797 |
+
|
2798 |
+
#: ../front-end/class-formbuilder.php:120
|
2799 |
+
msgid "You must be logged in to edit your profile."
|
2800 |
+
msgstr "プロフィールの編集にはログインが必要です。"
|
2801 |
+
|
2802 |
+
#: ../front-end/class-formbuilder.php:142
|
2803 |
+
msgid "here"
|
2804 |
+
msgstr "ここ"
|
2805 |
+
|
2806 |
+
#: ../front-end/class-formbuilder.php:144
|
2807 |
+
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
2808 |
+
msgstr "ページは自動遷移します。このページが %1$d 秒以上見えている時は、以下をクリックしてください %2$s.%3$s"
|
2809 |
+
|
2810 |
+
#: ../front-end/class-formbuilder.php:239
|
2811 |
+
#: ../front-end/class-formbuilder.php:246
|
2812 |
+
msgid "The account %1s has been successfully created!"
|
2813 |
+
msgstr "アカウント %1s が作成されました!"
|
2814 |
+
|
2815 |
+
#: ../front-end/class-formbuilder.php:242
|
2816 |
+
#: ../front-end/class-formbuilder.php:252
|
2817 |
+
msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
|
2818 |
+
msgstr "ご登録いただいたアカウント%1sのご利用には、メールアドレスの確認が必要です。メールボックスに届いたメールに記載されたアクティベーション用のリンクをクリックしてください。"
|
2819 |
+
|
2820 |
+
#: ../front-end/class-formbuilder.php:248
|
2821 |
+
msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
|
2822 |
+
msgstr "ご登録いただいたアカウント%1sのご利用には、管理者の承認が必要です。eメールにて通知が届きます。"
|
2823 |
+
|
2824 |
+
#: ../front-end/class-formbuilder.php:262
|
2825 |
+
msgid "Your profile has been successfully updated!"
|
2826 |
+
msgstr "プロファイルは正常に更新されました!"
|
2827 |
+
|
2828 |
+
#: ../front-end/class-formbuilder.php:272
|
2829 |
+
msgid "There was an error in the submitted form"
|
2830 |
+
msgstr "入力内容にエラーがあります。"
|
2831 |
+
|
2832 |
+
#: ../front-end/class-formbuilder.php:294
|
2833 |
+
msgid "Add User"
|
2834 |
+
msgstr "ユーザー追加"
|
2835 |
+
|
2836 |
+
#: ../admin/add-ons.php:170 ../front-end/class-formbuilder.php:297
|
2837 |
+
msgid "Update"
|
2838 |
+
msgstr "更新"
|
2839 |
+
|
2840 |
+
#: ../front-end/class-formbuilder.php:340
|
2841 |
+
#: ../front-end/extra-fields/extra-fields.php:35
|
2842 |
+
msgid "The avatar was successfully deleted!"
|
2843 |
+
msgstr "アバターを正常に削除しました!"
|
2844 |
+
|
2845 |
+
#: ../front-end/class-formbuilder.php:340
|
2846 |
+
#: ../front-end/extra-fields/extra-fields.php:37
|
2847 |
+
msgid "The following attachment was successfully deleted:"
|
2848 |
+
msgstr "以下の添付ファイルを正常に削除しました:"
|
2849 |
+
|
2850 |
+
#: ../front-end/class-formbuilder.php:352
|
2851 |
+
msgid "Send these credentials via email."
|
2852 |
+
msgstr "承認情報をメールで送信"
|
2853 |
+
|
2854 |
+
#: ../front-end/extra-fields/extra-fields.php:99 ../front-end/login.php:89
|
2855 |
+
#: ../front-end/login.php:96 ../front-end/login.php:110
|
2856 |
+
#: ../front-end/recover.php:17 ../front-end/recover.php:228
|
2857 |
+
msgid "ERROR"
|
2858 |
+
msgstr "エラー"
|
2859 |
+
|
2860 |
+
#: ../front-end/login.php:89
|
2861 |
+
msgid "The password you entered is incorrect."
|
2862 |
+
msgstr "入力されたパスワードが間違っています。"
|
2863 |
+
|
2864 |
+
#: ../front-end/login.php:90 ../front-end/login.php:97
|
2865 |
+
msgid "Password Lost and Found."
|
2866 |
+
msgstr "パスワード紛失対応"
|
2867 |
+
|
2868 |
+
#: ../front-end/login.php:90 ../front-end/login.php:97
|
2869 |
+
msgid "Lost your password"
|
2870 |
+
msgstr "パスワードをお忘れですか"
|
2871 |
+
|
2872 |
+
#: ../front-end/login.php:110
|
2873 |
+
msgid "Both fields are empty."
|
2874 |
+
msgstr "両方の欄とも未記入です。"
|
2875 |
+
|
2876 |
+
#: ../front-end/login.php:241
|
2877 |
+
msgid "You are currently logged in as %1$s. %2$s"
|
2878 |
+
msgstr "%1$sさんとしてログイン中です。%2$s"
|
2879 |
+
|
2880 |
+
#: ../front-end/login.php:240 ../front-end/logout.php:17
|
2881 |
+
msgid "Log out of this account"
|
2882 |
+
msgstr "このアカウントをログアウトする"
|
2883 |
+
|
2884 |
+
#: ../front-end/login.php:240
|
2885 |
+
msgid "Log out"
|
2886 |
+
msgstr "ログアウト"
|
2887 |
+
|
2888 |
+
#: ../front-end/recover.php:17
|
2889 |
+
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
2890 |
+
msgstr "あなたのアカウントはパスワードリセットの手続きをとる前に、管理者により確認されました。"
|
2891 |
+
|
2892 |
+
#: ../front-end/recover.php:91
|
2893 |
+
msgid "Reset Password"
|
2894 |
+
msgstr "パスワードをリセット"
|
2895 |
+
|
2896 |
+
#: ../front-end/recover.php:111
|
2897 |
+
msgid "Please enter your username or email address."
|
2898 |
+
msgstr "ユーザー名またはメールアドレスを入力してください。"
|
2899 |
+
|
2900 |
+
#: ../front-end/recover.php:112
|
2901 |
+
msgid "You will receive a link to create a new password via email."
|
2902 |
+
msgstr "新しいパスワードを設定する為のリンクがメールで送信されます。"
|
2903 |
+
|
2904 |
+
#: ../front-end/recover.php:119
|
2905 |
+
msgid "Username or E-mail"
|
2906 |
+
msgstr "ユーザー名またはメールアドレス"
|
2907 |
+
|
2908 |
+
#: ../front-end/recover.php:125
|
2909 |
+
msgid "Get New Password"
|
2910 |
+
msgstr "新しいパスワードを取得"
|
2911 |
+
|
2912 |
+
#: ../front-end/recover.php:166
|
2913 |
+
msgid "The username entered wasn't found in the database!"
|
2914 |
+
msgstr "入力されたユーザ名はデータベース上で見付かりません!"
|
2915 |
+
|
2916 |
+
#: ../front-end/recover.php:166
|
2917 |
+
msgid "Please check that you entered the correct username."
|
2918 |
+
msgstr "正しいユーザー名を入力したか確認してください。"
|
2919 |
+
|
2920 |
+
#: ../front-end/recover.php:181
|
2921 |
+
msgid "Check your e-mail for the confirmation link."
|
2922 |
+
msgstr "確認リンクをメールでチェックしてください。"
|
2923 |
+
|
2924 |
+
#: ../front-end/recover.php:216
|
2925 |
+
msgid "Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s"
|
2926 |
+
msgstr "次のアカウントのパスワードリセットが要求されました。: <b>%1$s</b><br/>もし間違いであれば、このメールは無視して結構です。<br/>パスワードをリセットする場合は、こちらのリンクをクリックしてください。:%2$s"
|
2927 |
+
|
2928 |
+
#: ../front-end/recover.php:219
|
2929 |
+
msgid "Password Reset from \"%1$s\""
|
2930 |
+
msgstr "\"%1$s\"からのパスワードリセット"
|
2931 |
+
|
2932 |
+
#: ../front-end/recover.php:228
|
2933 |
+
msgid "There was an error while trying to send the activation link to %1$s!"
|
2934 |
+
msgstr "%1$sにアクティベーションリンクを送信しようとしてエラーが発生しました!"
|
2935 |
+
|
2936 |
+
#: ../front-end/recover.php:188
|
2937 |
+
msgid "The email address entered wasn't found in the database!"
|
2938 |
+
msgstr "そのメールアドレスはデータベース上で見付かりません!"
|
2939 |
+
|
2940 |
+
#: ../front-end/recover.php:188
|
2941 |
+
msgid "Please check that you entered the correct email address."
|
2942 |
+
msgstr "正しいEメールアドレスを入力したか確認してください。"
|
2943 |
+
|
2944 |
+
#: ../front-end/recover.php:256
|
2945 |
+
msgid "Your password has been successfully changed!"
|
2946 |
+
msgstr "パスワードは正常に更新されました!"
|
2947 |
+
|
2948 |
+
#: ../front-end/recover.php:275
|
2949 |
+
msgid "You have successfully reset your password to: %1$s"
|
2950 |
+
msgstr "%1$sに対するパスワードを正常にリセットしました。"
|
2951 |
+
|
2952 |
+
#: ../front-end/recover.php:278 ../front-end/recover.php:292
|
2953 |
+
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
2954 |
+
msgstr "\"%2$s\"の%1$sのパスワードがリセットされました。"
|
2955 |
+
|
2956 |
+
#: ../front-end/recover.php:289
|
2957 |
+
msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
|
2958 |
+
msgstr "%1$sさんがパスワードリセット機能によりパスワードの変更を要求しました。<br/>新しいパスワード:%2$s"
|
2959 |
+
|
2960 |
+
#: ../front-end/recover.php:308
|
2961 |
+
msgid "The entered passwords don't match!"
|
2962 |
+
msgstr "入力されたパスワードが異なります!"
|
2963 |
+
|
2964 |
+
#: ../front-end/recover.php:353
|
2965 |
+
msgid "ERROR:"
|
2966 |
+
msgstr "エラー:"
|
2967 |
+
|
2968 |
+
#: ../front-end/recover.php:353
|
2969 |
+
msgid "Invalid key!"
|
2970 |
+
msgstr "無効なキー!"
|
2971 |
+
|
2972 |
+
#: ../front-end/register.php:46
|
2973 |
+
msgid "Invalid activation key!"
|
2974 |
+
msgstr "無効なアクティベーションキー!"
|
2975 |
+
|
2976 |
+
#: ../front-end/register.php:50
|
2977 |
+
msgid "This username is now active!"
|
2978 |
+
msgstr "このユーザー名は有効です!"
|
2979 |
+
|
2980 |
+
#: ../front-end/register.php:71
|
2981 |
+
msgid "This username is already activated!"
|
2982 |
+
msgstr "このユーザ名は既に有効化されています!"
|
2983 |
+
|
2984 |
+
#: ../front-end/register.php:115
|
2985 |
+
msgid "Your email was successfully confirmed."
|
2986 |
+
msgstr "あなたのメールアドレス確認が正常に完了しました。"
|
2987 |
+
|
2988 |
+
#: ../front-end/register.php:144
|
2989 |
+
msgid "There was an error while trying to activate the user."
|
2990 |
+
msgstr "ユーザを有効にする際にエラーがありました。"
|
2991 |
+
|
2992 |
+
#: ../front-end/default-fields/email/email.php:44
|
2993 |
+
msgid "The email you entered is not a valid email address."
|
2994 |
+
msgstr "入力したメールアドレスは有効なものではありません。"
|
2995 |
+
|
2996 |
+
#: ../front-end/default-fields/email/email.php:57
|
2997 |
+
#: ../front-end/default-fields/email/email.php:64
|
2998 |
+
msgid "This email is already reserved to be used soon."
|
2999 |
+
msgstr "このメールアドレスは予約済みです。"
|
3000 |
+
|
3001 |
+
#: ../front-end/default-fields/email/email.php:57
|
3002 |
+
#: ../front-end/default-fields/email/email.php:64
|
3003 |
+
#: ../front-end/default-fields/email/email.php:73
|
3004 |
+
#: ../front-end/default-fields/email/email.php:84
|
3005 |
+
#: ../front-end/default-fields/username/username.php:50
|
3006 |
+
#: ../front-end/default-fields/username/username.php:65
|
3007 |
+
msgid "Please try a different one!"
|
3008 |
+
msgstr "他のものをお試しください!"
|
3009 |
+
|
3010 |
+
#: ../front-end/default-fields/email/email.php:73
|
3011 |
+
#: ../front-end/default-fields/email/email.php:84
|
3012 |
+
msgid "This email is already in use."
|
3013 |
+
msgstr "このメールアドレスは登録済みです。"
|
3014 |
+
|
3015 |
+
#: ../front-end/default-fields/password-repeat/password-repeat.php:37
|
3016 |
+
#: ../front-end/default-fields/password-repeat/password-repeat.php:41
|
3017 |
+
msgid "The passwords do not match"
|
3018 |
+
msgstr "パスワードが合致しません。"
|
3019 |
+
|
3020 |
+
#: ../front-end/default-fields/username/username.php:50
|
3021 |
+
msgid "This username already exists."
|
3022 |
+
msgstr "このユーザ名は既に存在します。"
|
3023 |
+
|
3024 |
+
#: ../front-end/default-fields/username/username.php:65
|
3025 |
+
msgid "This username is already reserved to be used soon."
|
3026 |
+
msgstr "このユーザ名は既に予約されています。"
|
3027 |
+
|
3028 |
+
#: ../modules/user-listing/userlisting.php:247
|
3029 |
+
msgid "Avatar"
|
3030 |
+
msgstr "アバター"
|
3031 |
+
|
3032 |
+
#: ../front-end/extra-fields/avatar/avatar.php:72
|
3033 |
+
#: ../front-end/extra-fields/checkbox/checkbox.php:45
|
3034 |
+
#: ../front-end/extra-fields/datepicker/datepicker.php:40
|
3035 |
+
#: ../front-end/extra-fields/input-hidden/input-hidden.php:34
|
3036 |
+
#: ../front-end/extra-fields/input/input.php:30
|
3037 |
+
#: ../front-end/extra-fields/radio/radio.php:44
|
3038 |
+
#: ../front-end/extra-fields/select-multiple/select-multiple.php:46
|
3039 |
+
#: ../front-end/extra-fields/select-timezone/select-timezone.php:44
|
3040 |
+
#: ../front-end/extra-fields/select/select.php:46
|
3041 |
+
#: ../front-end/extra-fields/textarea/textarea.php:30
|
3042 |
+
#: ../front-end/extra-fields/upload/upload.php:70
|
3043 |
+
#: ../front-end/extra-fields/wysiwyg/wysiwyg.php:33
|
3044 |
+
msgid "required"
|
3045 |
+
msgstr "必須"
|
3046 |
+
|
3047 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:48
|
3048 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
3049 |
+
msgstr "reCAPTCHAの利用には、APIキーの取得が必要です"
|
3050 |
+
|
3051 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:131
|
3052 |
+
msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
|
3053 |
+
msgstr "セキュリティ保護のため、リモートIPをreCAPTCHAに渡す必要があります。"
|
3054 |
+
|
3055 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:192
|
3056 |
+
msgid "To use reCAPTCHA you must get an API public key from:"
|
3057 |
+
msgstr "reCAPTCHAの利用には、以下よりAPI公開キー(public key)の取得が必要です"
|
3058 |
+
|
3059 |
+
#: ../modules/modules.php:11 ../modules/modules.php:80
|
3060 |
+
msgid "Modules"
|
3061 |
+
msgstr "モジュール"
|
3062 |
+
|
3063 |
+
#: ../modules/modules.php:81
|
3064 |
+
msgid "Here you can activate / deactivate available modules for Profile Builder."
|
3065 |
+
msgstr "こちらでProfule Builderモジュールの有効化/無効化ができます。"
|
3066 |
+
|
3067 |
+
#: ../modules/modules.php:91
|
3068 |
+
msgid "Name/Description"
|
3069 |
+
msgstr "名前/説明"
|
3070 |
+
|
3071 |
+
#: ../modules/modules.php:92
|
3072 |
+
msgid "Status"
|
3073 |
+
msgstr "ステータス"
|
3074 |
+
|
3075 |
+
#: ../modules/custom-redirects/custom-redirects.php:48
|
3076 |
+
#: ../modules/custom-redirects/custom-redirects.php:58
|
3077 |
+
#: ../modules/custom-redirects/custom-redirects.php:68
|
3078 |
+
#: ../modules/custom-redirects/custom-redirects.php:94
|
3079 |
+
#: ../modules/custom-redirects/custom-redirects.php:104
|
3080 |
+
#: ../modules/custom-redirects/custom-redirects.php:114
|
3081 |
+
#: ../modules/custom-redirects/custom-redirects.php:124
|
3082 |
+
#: ../modules/modules.php:99 ../modules/modules.php:106
|
3083 |
+
#: ../modules/modules.php:113 ../modules/modules.php:120
|
3084 |
+
#: ../modules/modules.php:127 ../modules/modules.php:134
|
3085 |
+
msgid "Active"
|
3086 |
+
msgstr "有効"
|
3087 |
+
|
3088 |
+
#: ../modules/custom-redirects/custom-redirects.php:49
|
3089 |
+
#: ../modules/custom-redirects/custom-redirects.php:59
|
3090 |
+
#: ../modules/custom-redirects/custom-redirects.php:69
|
3091 |
+
#: ../modules/custom-redirects/custom-redirects.php:95
|
3092 |
+
#: ../modules/custom-redirects/custom-redirects.php:105
|
3093 |
+
#: ../modules/custom-redirects/custom-redirects.php:115
|
3094 |
+
#: ../modules/custom-redirects/custom-redirects.php:125
|
3095 |
+
#: ../modules/modules.php:100 ../modules/modules.php:107
|
3096 |
+
#: ../modules/modules.php:114 ../modules/modules.php:121
|
3097 |
+
#: ../modules/modules.php:128 ../modules/modules.php:135
|
3098 |
+
msgid "Inactive"
|
3099 |
+
msgstr "無効"
|
3100 |
+
|
3101 |
+
#: ../modules/email-customizer/admin-email-customizer.php:11
|
3102 |
+
#: ../modules/email-customizer/admin-email-customizer.php:12
|
3103 |
+
#: ../modules/modules.php:118
|
3104 |
+
msgid "Admin Email Customizer"
|
3105 |
+
msgstr "メール文面編集(管理者宛)"
|
3106 |
+
|
3107 |
+
#: ../modules/email-customizer/user-email-customizer.php:11
|
3108 |
+
#: ../modules/email-customizer/user-email-customizer.php:12
|
3109 |
+
#: ../modules/modules.php:125
|
3110 |
+
msgid "User Email Customizer"
|
3111 |
+
msgstr "メール文面編集(ユーザ宛)"
|
3112 |
+
|
3113 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:337
|
3114 |
+
#: ../modules/class-mustache-templates/class-mustache-templates.php:242
|
3115 |
+
msgid "Save"
|
3116 |
+
msgstr "保存"
|
3117 |
+
|
3118 |
+
#: ../modules/custom-redirects/custom-redirects.php:35
|
3119 |
+
msgid "Redirects on custom page requests:"
|
3120 |
+
msgstr "カスタムページ経由リクエストのリダイレクト:"
|
3121 |
+
|
3122 |
+
#: ../modules/custom-redirects/custom-redirects.php:39
|
3123 |
+
#: ../modules/custom-redirects/custom-redirects.php:85
|
3124 |
+
msgid "Action"
|
3125 |
+
msgstr "アクション"
|
3126 |
+
|
3127 |
+
#: ../modules/custom-redirects/custom-redirects.php:40
|
3128 |
+
#: ../modules/custom-redirects/custom-redirects.php:86
|
3129 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:202
|
3130 |
+
#: ../modules/multiple-forms/register-forms.php:226
|
3131 |
+
msgid "Redirect"
|
3132 |
+
msgstr "リダイレクト"
|
3133 |
+
|
3134 |
+
#: ../modules/custom-redirects/custom-redirects.php:41
|
3135 |
+
#: ../modules/custom-redirects/custom-redirects.php:87
|
3136 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:204
|
3137 |
+
#: ../modules/multiple-forms/register-forms.php:228
|
3138 |
+
msgid "URL"
|
3139 |
+
msgstr "URL"
|
3140 |
+
|
3141 |
+
#: ../modules/custom-redirects/custom-redirects.php:46
|
3142 |
+
msgid "After Registration:"
|
3143 |
+
msgstr "登録後:"
|
3144 |
+
|
3145 |
+
#: ../modules/custom-redirects/custom-redirects.php:56
|
3146 |
+
msgid "After Login:"
|
3147 |
+
msgstr "ログイン後:"
|
3148 |
+
|
3149 |
+
#: ../modules/custom-redirects/custom-redirects.php:66
|
3150 |
+
msgid "Recover Password (*)"
|
3151 |
+
msgstr "パスワード復旧 (*)"
|
3152 |
+
|
3153 |
+
#: ../modules/custom-redirects/custom-redirects.php:77
|
3154 |
+
msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
|
3155 |
+
msgstr "この機能を有効にした場合、Wordpress標準のパスワード復旧ページと、Profile Builderによるログインページの\"パスワードをお忘れですか?\"リンクの両方のユーザをリダイレクトします。"
|
3156 |
+
|
3157 |
+
#: ../modules/custom-redirects/custom-redirects.php:81
|
3158 |
+
msgid "Redirects on default WordPress page requests:"
|
3159 |
+
msgstr "WordPres標準ページ経由リクエストのリダイレクト:"
|
3160 |
+
|
3161 |
+
#: ../modules/custom-redirects/custom-redirects.php:92
|
3162 |
+
msgid "Default WordPress Login Page"
|
3163 |
+
msgstr "WordPress標準のログインページ"
|
3164 |
+
|
3165 |
+
#: ../modules/custom-redirects/custom-redirects.php:102
|
3166 |
+
msgid "Default WordPress Logout Page"
|
3167 |
+
msgstr "WordPress標準のログアウトページ"
|
3168 |
+
|
3169 |
+
#: ../modules/custom-redirects/custom-redirects.php:112
|
3170 |
+
msgid "Default WordPress Register Page"
|
3171 |
+
msgstr "WordPress標準の登録ページ"
|
3172 |
+
|
3173 |
+
#: ../modules/custom-redirects/custom-redirects.php:122
|
3174 |
+
msgid "Default WordPress Dashboard (*)"
|
3175 |
+
msgstr "WordPress標準のダッシュボード (*)"
|
3176 |
+
|
3177 |
+
#: ../modules/custom-redirects/custom-redirects.php:133
|
3178 |
+
msgid "Redirects every user-role EXCEPT the ones with administrator privileges (can manage options)."
|
3179 |
+
msgstr "管理者権限を持たない全てのユーザをリダイレクトします。"
|
3180 |
+
|
3181 |
+
#: ../modules/email-customizer/admin-email-customizer.php:38
|
3182 |
+
msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
|
3183 |
+
msgstr "これらの設定を変更すると「メール文面編集(管理者宛)」設定ページにも反映されます。"
|
3184 |
+
|
3185 |
+
#: ../modules/email-customizer/admin-email-customizer.php:41
|
3186 |
+
#: ../modules/email-customizer/user-email-customizer.php:41
|
3187 |
+
msgid "From (name)"
|
3188 |
+
msgstr "差出人 (name)"
|
3189 |
+
|
3190 |
+
#: ../modules/email-customizer/admin-email-customizer.php:49
|
3191 |
+
#: ../modules/email-customizer/user-email-customizer.php:49
|
3192 |
+
msgid "From (reply-to email)"
|
3193 |
+
msgstr "差出人 (reply-to email)"
|
3194 |
+
|
3195 |
+
#: ../modules/email-customizer/admin-email-customizer.php:57
|
3196 |
+
#: ../modules/email-customizer/user-email-customizer.php:57
|
3197 |
+
msgid "Common Settings"
|
3198 |
+
msgstr "共通設定"
|
3199 |
+
|
3200 |
+
#: ../modules/email-customizer/admin-email-customizer.php:60
|
3201 |
+
msgid ""
|
3202 |
+
"\n"
|
3203 |
+
"<p>New subscriber on {{site_name}}.</p>\n"
|
3204 |
+
"<p>Username:{{username}}</p>\n"
|
3205 |
+
"<p>E-mail:{{user_email}}</p>\n"
|
3206 |
+
msgstr ""
|
3207 |
+
"\n"
|
3208 |
+
"<p>{{site_name}}の新規登録がありました。</p>\n"
|
3209 |
+
"<p>ユーザー名:{{username}}</p>\n"
|
3210 |
+
"<p>メールアドレス:{{user_email}}</p>\n"
|
3211 |
+
|
3212 |
+
#: ../modules/email-customizer/admin-email-customizer.php:69
|
3213 |
+
#: ../modules/email-customizer/admin-email-customizer.php:99
|
3214 |
+
#: ../modules/email-customizer/admin-email-customizer.php:126
|
3215 |
+
#: ../modules/email-customizer/user-email-customizer.php:71
|
3216 |
+
#: ../modules/email-customizer/user-email-customizer.php:99
|
3217 |
+
#: ../modules/email-customizer/user-email-customizer.php:128
|
3218 |
+
#: ../modules/email-customizer/user-email-customizer.php:155
|
3219 |
+
#: ../modules/email-customizer/user-email-customizer.php:183
|
3220 |
+
#: ../modules/email-customizer/user-email-customizer.php:214
|
3221 |
+
#: ../modules/email-customizer/user-email-customizer.php:241
|
3222 |
+
msgid "Email Subject"
|
3223 |
+
msgstr "メールタイトル"
|
3224 |
+
|
3225 |
+
#: ../modules/email-customizer/admin-email-customizer.php:84
|
3226 |
+
msgid "Default Registration & Registration with Email Confirmation"
|
3227 |
+
msgstr "標準登録およびメール確認付き登録"
|
3228 |
+
|
3229 |
+
#: ../modules/email-customizer/admin-email-customizer.php:87
|
3230 |
+
msgid ""
|
3231 |
+
"\n"
|
3232 |
+
"<p>New subscriber on {{site_name}}.</p>\n"
|
3233 |
+
"<p>Username:{{username}}</p>\n"
|
3234 |
+
"<p>E-mail:{{user_email}}</p>\n"
|
3235 |
+
"<p>The Admin Approval feature was activated at the time of registration,\n"
|
3236 |
+
"so please remember that you need to approve this user before he/she can log in!</p>\n"
|
3237 |
+
msgstr ""
|
3238 |
+
"\n"
|
3239 |
+
"<p>{{site_name}}に新規登録がありました。</p>\n"
|
3240 |
+
"<p>ユーザ名:{{username}}</p>\n"
|
3241 |
+
"<p>メールアドレス:{{user_email}}</p>\n"
|
3242 |
+
"<p>登録時点で管理者承認機能が有効でしたので、,\n"
|
3243 |
+
"あなたが承認するまでは彼/彼女はログインすることができません。</p>\n"
|
3244 |
+
|
3245 |
+
#: ../modules/email-customizer/admin-email-customizer.php:114
|
3246 |
+
#: ../modules/email-customizer/user-email-customizer.php:143
|
3247 |
+
msgid "Registration with Admin Approval"
|
3248 |
+
msgstr "登録に管理者の承認"
|
3249 |
+
|
3250 |
+
#: ../modules/email-customizer/email-customizer.php:7
|
3251 |
+
msgid "Available Tags"
|
3252 |
+
msgstr "有効なタグ"
|
3253 |
+
|
3254 |
+
#: ../features/email-confirmation/class-email-confirmation.php:91
|
3255 |
+
#: ../features/email-confirmation/class-email-confirmation.php:170
|
3256 |
+
#: ../modules/email-customizer/email-customizer.php:11
|
3257 |
+
msgid "User Meta"
|
3258 |
+
msgstr "User Meta"
|
3259 |
+
|
3260 |
+
#: ../modules/email-customizer/email-customizer.php:21
|
3261 |
+
msgid "Site Url"
|
3262 |
+
msgstr "サイトURL"
|
3263 |
+
|
3264 |
+
#: ../modules/email-customizer/email-customizer.php:22
|
3265 |
+
msgid "Site Name"
|
3266 |
+
msgstr "サイト名"
|
3267 |
+
|
3268 |
+
#: ../modules/email-customizer/email-customizer.php:25
|
3269 |
+
#: ../modules/user-listing/userlisting.php:133
|
3270 |
+
msgid "User Id"
|
3271 |
+
msgstr "ユーザーID"
|
3272 |
+
|
3273 |
+
#: ../modules/email-customizer/email-customizer.php:33
|
3274 |
+
msgid "Reply To"
|
3275 |
+
msgstr "Reply To"
|
3276 |
+
|
3277 |
+
#: ../modules/email-customizer/email-customizer.php:36
|
3278 |
+
msgid "Activation Key"
|
3279 |
+
msgstr "アクティベーションキー"
|
3280 |
+
|
3281 |
+
#: ../modules/email-customizer/email-customizer.php:37
|
3282 |
+
msgid "Activation Url"
|
3283 |
+
msgstr "アクティベーションURL"
|
3284 |
+
|
3285 |
+
#: ../modules/email-customizer/email-customizer.php:38
|
3286 |
+
msgid "Activation Link"
|
3287 |
+
msgstr "アクティベーションリンク"
|
3288 |
+
|
3289 |
+
#: ../modules/email-customizer/user-email-customizer.php:64
|
3290 |
+
msgid ""
|
3291 |
+
"\n"
|
3292 |
+
"<h3>Welcome to {{site_name}}!</h3>\n"
|
3293 |
+
"<p>Your username is:{{username}} and password:{{password}}</p>\n"
|
3294 |
+
msgstr ""
|
3295 |
+
"\n"
|
3296 |
+
"<h3>ようこそ、{{site_name}}へ!</h3>\n"
|
3297 |
+
"<p>あなたのユーザ名は{{username}}、パスワードは{{password}}になります。</p>\n"
|
3298 |
+
|
3299 |
+
#: ../modules/email-customizer/user-email-customizer.php:85
|
3300 |
+
msgid "Default Registration"
|
3301 |
+
msgstr "標準登録"
|
3302 |
+
|
3303 |
+
#: ../modules/email-customizer/user-email-customizer.php:91
|
3304 |
+
msgid ""
|
3305 |
+
"\n"
|
3306 |
+
"<p>To activate your user, please click the following link:<br/>\n"
|
3307 |
+
"{{{activation_link}}}</p>\n"
|
3308 |
+
"<p>After you activate, you will receive another email with your credentials.</p>\n"
|
3309 |
+
msgstr ""
|
3310 |
+
"\n"
|
3311 |
+
"<p>作成したアカウントのアクティベートの為に、下記のリンクをクリックしてください。<br/>\n"
|
3312 |
+
"{{{activation_link}}}</p>\n"
|
3313 |
+
"<p>アクティベート完了後、あなたの認証情報が記載されたメールが別途届きます。</p>\n"
|
3314 |
+
|
3315 |
+
#: ../modules/email-customizer/user-email-customizer.php:103
|
3316 |
+
msgid "[{{site_name}}] Activate {{username}}"
|
3317 |
+
msgstr "[{{site_name}}]のユーザー{{username}}の有効化"
|
3318 |
+
|
3319 |
+
#: ../modules/email-customizer/user-email-customizer.php:114
|
3320 |
+
msgid "Registration with Email Confirmation"
|
3321 |
+
msgstr "Eメール確認有りの登録"
|
3322 |
+
|
3323 |
+
#: ../modules/email-customizer/user-email-customizer.php:120
|
3324 |
+
msgid ""
|
3325 |
+
"\n"
|
3326 |
+
"<h3>Welcome to {{site_name}}!</h3>\n"
|
3327 |
+
"<p>Your username is:{{username}} and password:{{password}}</p>\n"
|
3328 |
+
"<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
|
3329 |
+
msgstr ""
|
3330 |
+
"\n"
|
3331 |
+
"<h3>ようこそ、{{site_name}}へ!</h3>\n"
|
3332 |
+
"<p>あなたのユーザー名は{{username}}、パスワードは{{password}}です。</p>\n"
|
3333 |
+
"<p>ご登録いただいたアカウントのご利用には、管理者の承認が必要です。eメールにて通知が届きます。</p>\n"
|
3334 |
+
|
3335 |
+
#: ../modules/email-customizer/user-email-customizer.php:132
|
3336 |
+
msgid "A new account has been created for you on {{site_name}}"
|
3337 |
+
msgstr "{{site_name}}用のあなたの新しいアカウントが作成されました。"
|
3338 |
+
|
3339 |
+
#: ../modules/email-customizer/user-email-customizer.php:148
|
3340 |
+
msgid ""
|
3341 |
+
"\n"
|
3342 |
+
"<h3>Good News!</h3>\n"
|
3343 |
+
"<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
|
3344 |
+
msgstr ""
|
3345 |
+
"\n"
|
3346 |
+
"<h3>おめでとうございます!</h3>\n"
|
3347 |
+
"<p>{{site_name}}の管理者があなたのアカウント{{username}}を承認しました。</p>\n"
|
3348 |
+
|
3349 |
+
#: ../modules/email-customizer/user-email-customizer.php:159
|
3350 |
+
msgid "Your account on {{site_name}} has been approved!"
|
3351 |
+
msgstr "{{site_name}}のあなたのアカウントが承認されました!"
|
3352 |
+
|
3353 |
+
#: ../modules/email-customizer/user-email-customizer.php:170
|
3354 |
+
msgid "User Approval Notification"
|
3355 |
+
msgstr "ユーザー承認通知"
|
3356 |
+
|
3357 |
+
#: ../modules/email-customizer/user-email-customizer.php:175
|
3358 |
+
msgid ""
|
3359 |
+
"\n"
|
3360 |
+
"<h3>Hello,</h3>\n"
|
3361 |
+
"<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
|
3362 |
+
msgstr ""
|
3363 |
+
"\n"
|
3364 |
+
"<h3>こんにちは,</h3>\n"
|
3365 |
+
"<p>残念ながら{{site_name}}の管理者はあなたのアカウント{{username}}を不承認としました。</p>\n"
|
3366 |
+
|
3367 |
+
#: ../modules/email-customizer/user-email-customizer.php:187
|
3368 |
+
msgid "Your account on {{site_name}} has been unapproved!"
|
3369 |
+
msgstr "{{site_name}}のあなたのアカウントが承認されませんでした!"
|
3370 |
+
|
3371 |
+
#: ../modules/email-customizer/user-email-customizer.php:198
|
3372 |
+
msgid "Unapproved User Notification"
|
3373 |
+
msgstr "ユーザー不承認通知"
|
3374 |
+
|
3375 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:11
|
3376 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:12
|
3377 |
+
msgid "Edit-profile Form"
|
3378 |
+
msgstr "プロフィール編集フォーム"
|
3379 |
+
|
3380 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:13
|
3381 |
+
#: ../modules/multiple-forms/register-forms.php:13
|
3382 |
+
#: ../modules/user-listing/userlisting.php:13
|
3383 |
+
msgid "Add New"
|
3384 |
+
msgstr "新規追加"
|
3385 |
+
|
3386 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:14
|
3387 |
+
msgid "Add new Edit-profile Form"
|
3388 |
+
msgstr "プロフィール編集フォームを追加"
|
3389 |
+
|
3390 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:15
|
3391 |
+
msgid "Edit the Edit-profile Forms"
|
3392 |
+
msgstr "プロフィール編集フォームを編集"
|
3393 |
+
|
3394 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:16
|
3395 |
+
msgid "New Edit-profile Form"
|
3396 |
+
msgstr "新規プロフィール編集フォーム"
|
3397 |
+
|
3398 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:17
|
3399 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:23
|
3400 |
+
msgid "Edit-profile Forms"
|
3401 |
+
msgstr "プロフィール編集フォーム"
|
3402 |
+
|
3403 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:18
|
3404 |
+
msgid "View the Edit-profile Form"
|
3405 |
+
msgstr "プロフィール編集フォームを見る"
|
3406 |
+
|
3407 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:19
|
3408 |
+
msgid "Search the Edit-profile Forms"
|
3409 |
+
msgstr "プロフィール編集フォームを検索"
|
3410 |
+
|
3411 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:20
|
3412 |
+
msgid "No Edit-profile Form found"
|
3413 |
+
msgstr "プロフィール編集フォームが見つかりません"
|
3414 |
+
|
3415 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:21
|
3416 |
+
msgid "No Edit-profile Forms found in trash"
|
3417 |
+
msgstr "ゴミ箱にプロフィール編集フォームが見つかりません"
|
3418 |
+
|
3419 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:131
|
3420 |
+
#: ../modules/multiple-forms/register-forms.php:134
|
3421 |
+
#: ../modules/user-listing/userlisting.php:1155
|
3422 |
+
msgid "Shortcode"
|
3423 |
+
msgstr "ショートコード"
|
3424 |
+
|
3425 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:151
|
3426 |
+
#: ../modules/multiple-forms/register-forms.php:155
|
3427 |
+
#: ../modules/user-listing/userlisting.php:1176
|
3428 |
+
msgid "(no title)"
|
3429 |
+
msgstr "(無題)"
|
3430 |
+
|
3431 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:171
|
3432 |
+
#: ../modules/multiple-forms/register-forms.php:174
|
3433 |
+
#: ../modules/user-listing/userlisting.php:1196
|
3434 |
+
msgid "The shortcode will be available after you publish this form."
|
3435 |
+
msgstr "ショートコードはこのフォームを公開後に有効となります。"
|
3436 |
+
|
3437 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:173
|
3438 |
+
#: ../modules/multiple-forms/register-forms.php:176
|
3439 |
+
#: ../modules/user-listing/userlisting.php:1198
|
3440 |
+
msgid "Use this shortcode on the page you want the form to be displayed:"
|
3441 |
+
msgstr "フォームを表示したいページにこのショートコードを挿入してください:"
|
3442 |
+
|
3443 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:177
|
3444 |
+
#: ../modules/multiple-forms/register-forms.php:180
|
3445 |
+
#: ../modules/user-listing/userlisting.php:1202
|
3446 |
+
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
3447 |
+
msgstr "<span style=\"color:red;\">メモ:</span> タイトルを変更するとショートコードも変更されます!"
|
3448 |
+
|
3449 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:183
|
3450 |
+
#: ../modules/multiple-forms/register-forms.php:186
|
3451 |
+
#: ../modules/user-listing/userlisting.php:1235
|
3452 |
+
msgid "Form Shortcode"
|
3453 |
+
msgstr "フォーム・ショートコード"
|
3454 |
+
|
3455 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:202
|
3456 |
+
#: ../modules/multiple-forms/register-forms.php:226
|
3457 |
+
msgid "Whether to redirect the user to a specific page or not"
|
3458 |
+
msgstr "ユーザを特定のページにリダイレクトするかを指定します。"
|
3459 |
+
|
3460 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:203
|
3461 |
+
#: ../modules/multiple-forms/register-forms.php:227
|
3462 |
+
msgid "Display Messages"
|
3463 |
+
msgstr "表示メッセージ"
|
3464 |
+
|
3465 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:203
|
3466 |
+
#: ../modules/multiple-forms/register-forms.php:227
|
3467 |
+
msgid "Allowed time to display any success messages (in seconds)"
|
3468 |
+
msgstr "成功メッセージの表示時間(秒)"
|
3469 |
+
|
3470 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:204
|
3471 |
+
msgid "Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com"
|
3472 |
+
msgstr "このフォームでプロフィールを更新した後にリダイレクトされるページを指定します。<br />次の形式で指定: http://www.mysite.com"
|
3473 |
+
|
3474 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:211
|
3475 |
+
msgid "After Profile Update..."
|
3476 |
+
msgstr "プロフォール更新後..."
|
3477 |
+
|
3478 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:237
|
3479 |
+
#: ../modules/multiple-forms/register-forms.php:258
|
3480 |
+
msgid "Add New Field to the List"
|
3481 |
+
msgstr "リストに欄を追加"
|
3482 |
+
|
3483 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:241
|
3484 |
+
#: ../modules/multiple-forms/register-forms.php:262
|
3485 |
+
msgid "Choose one of the supported fields you manage <a href=\""
|
3486 |
+
msgstr "編集したい記入欄を選んでください <a href=\""
|
3487 |
+
|
3488 |
+
#: ../modules/multiple-forms/multiple-forms.php:416
|
3489 |
+
msgid "<pre>Title (Type)</pre>"
|
3490 |
+
msgstr "<pre>タイトル (タイプ)</pre>"
|
3491 |
+
|
3492 |
+
#: ../modules/multiple-forms/multiple-forms.php:232
|
3493 |
+
msgid "You need to specify the title of the form before creating it"
|
3494 |
+
msgstr "フォーム作成前にタイトルを指定する必要があります"
|
3495 |
+
|
3496 |
+
#: ../modules/multiple-forms/register-forms.php:11
|
3497 |
+
#: ../modules/multiple-forms/register-forms.php:12
|
3498 |
+
msgid "Registration Form"
|
3499 |
+
msgstr "登録フォーム"
|
3500 |
+
|
3501 |
+
#: ../modules/multiple-forms/register-forms.php:14
|
3502 |
+
msgid "Add new Registration Form"
|
3503 |
+
msgstr "登録フォームを追加"
|
3504 |
+
|
3505 |
+
#: ../modules/multiple-forms/register-forms.php:15
|
3506 |
+
msgid "Edit the Registration Forms"
|
3507 |
+
msgstr "登録フォームを編集"
|
3508 |
+
|
3509 |
+
#: ../modules/multiple-forms/register-forms.php:16
|
3510 |
+
msgid "New Registration Form"
|
3511 |
+
msgstr "新規登録フォーム"
|
3512 |
+
|
3513 |
+
#: ../modules/multiple-forms/register-forms.php:17
|
3514 |
+
#: ../modules/multiple-forms/register-forms.php:23
|
3515 |
+
msgid "Registration Forms"
|
3516 |
+
msgstr "登録フォーム"
|
3517 |
+
|
3518 |
+
#: ../modules/multiple-forms/register-forms.php:18
|
3519 |
+
msgid "View the Registration Form"
|
3520 |
+
msgstr "登録フォームを見る"
|
3521 |
+
|
3522 |
+
#: ../modules/multiple-forms/register-forms.php:19
|
3523 |
+
msgid "Search the Registration Forms"
|
3524 |
+
msgstr "登録フォームを検索"
|
3525 |
+
|
3526 |
+
#: ../modules/multiple-forms/register-forms.php:20
|
3527 |
+
msgid "No Registration Form found"
|
3528 |
+
msgstr "登録フォームが見つかりません。"
|
3529 |
+
|
3530 |
+
#: ../modules/multiple-forms/register-forms.php:21
|
3531 |
+
msgid "No Registration Forms found in trash"
|
3532 |
+
msgstr "ゴミ箱に登録フォームが見つかりません。"
|
3533 |
+
|
3534 |
+
#: ../modules/multiple-forms/register-forms.php:215
|
3535 |
+
msgid "Default Role"
|
3536 |
+
msgstr "デフォルト権限"
|
3537 |
+
|
3538 |
+
#: ../modules/multiple-forms/register-forms.php:224
|
3539 |
+
msgid "Set Role"
|
3540 |
+
msgstr "権限をセットする"
|
3541 |
+
|
3542 |
+
#: ../modules/multiple-forms/register-forms.php:224
|
3543 |
+
msgid "Choose what role the user will have after (s)he registered<br/>If not specified, defaults to the role set in the WordPress settings"
|
3544 |
+
msgstr "登録したユーザに割り当てられる権限を選択してください。選択しなかった場合、WordPress設定のデフォルトが適用されます。"
|
3545 |
+
|
3546 |
+
#: ../modules/multiple-forms/register-forms.php:225
|
3547 |
+
msgid "Automatically Log In"
|
3548 |
+
msgstr "自動でログイン"
|
3549 |
+
|
3550 |
+
#: ../modules/multiple-forms/register-forms.php:225
|
3551 |
+
msgid "Whether to automatically log in the newly registered user or not<br/>Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated<br/>WARNING: Caching the registration form will make automatic login not work"
|
3552 |
+
msgstr "新規登録ユーザが自動的にログインするかどうかを指定します。\"管理者承認\"機能\"と\"Eメール確認\"機能が無効化されたシングルサイトでのみ機能します。注意: 登録フォームをキャッシュすると自動ログイン機能は機能しません。"
|
3553 |
+
|
3554 |
+
#: ../modules/multiple-forms/register-forms.php:228
|
3555 |
+
msgid "Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com"
|
3556 |
+
msgstr "このフォームで新規登録した後にリダイレクトされるページを指定します。<br />次の形式で指定: http://www.mysite.com"
|
3557 |
+
|
3558 |
+
#: ../modules/multiple-forms/register-forms.php:234
|
3559 |
+
msgid "After Registration..."
|
3560 |
+
msgstr "登録後..."
|
3561 |
+
|
3562 |
+
#: ../modules/user-listing/class-userlisting.php:470
|
3563 |
+
#: ../modules/user-listing/userlisting.php:724
|
3564 |
+
#: ../modules/user-listing/userlisting.php:968
|
3565 |
+
#: ../modules/user-listing/userlisting.php:1011
|
3566 |
+
#: ../modules/user-listing/userlisting.php:1355
|
3567 |
+
msgid "Search Users by All Fields"
|
3568 |
+
msgstr "全ての欄でユーザを検索"
|
3569 |
+
|
3570 |
+
#: ../modules/user-listing/userlisting.php:14
|
3571 |
+
msgid "Add new User Listing"
|
3572 |
+
msgstr "新しいユーザ一覧を追加"
|
3573 |
+
|
3574 |
+
#: ../modules/user-listing/userlisting.php:15
|
3575 |
+
msgid "Edit the User Listing"
|
3576 |
+
msgstr "ユーザ一覧の編集"
|
3577 |
+
|
3578 |
+
#: ../modules/user-listing/userlisting.php:16
|
3579 |
+
msgid "New User Listing"
|
3580 |
+
msgstr "新規ユーザ一覧"
|
3581 |
+
|
3582 |
+
#: ../modules/user-listing/userlisting.php:18
|
3583 |
+
msgid "View the User Listing"
|
3584 |
+
msgstr "ユーザー一覧を表示"
|
3585 |
+
|
3586 |
+
#: ../modules/user-listing/userlisting.php:19
|
3587 |
+
msgid "Search the User Listing"
|
3588 |
+
msgstr "ユーザー一覧を検索"
|
3589 |
+
|
3590 |
+
#: ../modules/user-listing/userlisting.php:20
|
3591 |
+
msgid "No User Listing found"
|
3592 |
+
msgstr "ユーザ一覧が見つかりません"
|
3593 |
+
|
3594 |
+
#: ../modules/user-listing/userlisting.php:21
|
3595 |
+
msgid "No User Listing found in trash"
|
3596 |
+
msgstr "ゴミ箱にユーザ一覧が見つかりません"
|
3597 |
+
|
3598 |
+
#: ../modules/user-listing/userlisting.php:95
|
3599 |
+
msgid "Display name as"
|
3600 |
+
msgstr "表示名"
|
3601 |
+
|
3602 |
+
#: ../modules/user-listing/userlisting.php:125
|
3603 |
+
#: ../modules/user-listing/userlisting.php:1263
|
3604 |
+
msgid "Registration Date"
|
3605 |
+
msgstr "登録日"
|
3606 |
+
|
3607 |
+
#: ../modules/user-listing/userlisting.php:126
|
3608 |
+
#: ../modules/user-listing/userlisting.php:1267
|
3609 |
+
msgid "Number of Posts"
|
3610 |
+
msgstr "投稿数"
|
3611 |
+
|
3612 |
+
#: ../modules/user-listing/userlisting.php:130
|
3613 |
+
msgid "More Info"
|
3614 |
+
msgstr "追加情報"
|
3615 |
+
|
3616 |
+
#: ../modules/user-listing/userlisting.php:131
|
3617 |
+
msgid "More Info Url"
|
3618 |
+
msgstr "追加情報URL"
|
3619 |
+
|
3620 |
+
#: ../modules/user-listing/userlisting.php:132
|
3621 |
+
msgid "Avatar or Gravatar"
|
3622 |
+
msgstr "アバター or Gravatar"
|
3623 |
+
|
3624 |
+
#: ../modules/user-listing/userlisting.php:161
|
3625 |
+
msgid "Meta Variables"
|
3626 |
+
msgstr "記入欄タグ(Meta Variables)"
|
3627 |
+
|
3628 |
+
#: ../modules/user-listing/userlisting.php:167
|
3629 |
+
msgid "Sort Variables"
|
3630 |
+
msgstr "ソートタグ (Sort Variables)"
|
3631 |
+
|
3632 |
+
#: ../modules/user-listing/userlisting.php:171
|
3633 |
+
#: ../modules/user-listing/userlisting.php:198
|
3634 |
+
msgid "Extra Functions"
|
3635 |
+
msgstr "追加機能タグ (Extra Functions)"
|
3636 |
+
|
3637 |
+
#: ../modules/user-listing/userlisting.php:173
|
3638 |
+
msgid "Pagination"
|
3639 |
+
msgstr "ページ分割"
|
3640 |
+
|
3641 |
+
#: ../modules/user-listing/userlisting.php:174
|
3642 |
+
msgid "Search all Fields"
|
3643 |
+
msgstr "全ての欄を検索"
|
3644 |
+
|
3645 |
+
#: ../modules/user-listing/userlisting.php:200
|
3646 |
+
msgid "Go Back Link"
|
3647 |
+
msgstr "戻るリンク"
|
3648 |
+
|
3649 |
+
#: ../modules/user-listing/userlisting.php:218
|
3650 |
+
msgid "All-userlisting Template"
|
3651 |
+
msgstr "一覧画面のテンプレート"
|
3652 |
+
|
3653 |
+
#: ../modules/user-listing/userlisting.php:221
|
3654 |
+
msgid "Single-userlisting Template"
|
3655 |
+
msgstr "個別画面のテンプレート"
|
3656 |
+
|
3657 |
+
#: ../modules/user-listing/userlisting.php:614
|
3658 |
+
msgid "First/Lastname"
|
3659 |
+
msgstr "名/姓"
|
3660 |
+
|
3661 |
+
#: ../modules/user-listing/userlisting.php:252
|
3662 |
+
#: ../modules/user-listing/userlisting.php:620
|
3663 |
+
msgid "Sign-up Date"
|
3664 |
+
msgstr "登録日"
|
3665 |
+
|
3666 |
+
#: ../modules/user-listing/userlisting.php:629
|
3667 |
+
#: ../modules/user-listing/userlisting.php:1266
|
3668 |
+
msgid "Display Name"
|
3669 |
+
msgstr "表示名"
|
3670 |
+
|
3671 |
+
#: ../modules/user-listing/userlisting.php:251
|
3672 |
+
#: ../modules/user-listing/userlisting.php:638
|
3673 |
+
msgid "Posts"
|
3674 |
+
msgstr "投稿数"
|
3675 |
+
|
3676 |
+
#: ../modules/user-listing/userlisting.php:641
|
3677 |
+
#: ../modules/user-listing/userlisting.php:1272
|
3678 |
+
msgid "Aim"
|
3679 |
+
msgstr "AIM"
|
3680 |
+
|
3681 |
+
#: ../modules/user-listing/userlisting.php:644
|
3682 |
+
#: ../modules/user-listing/userlisting.php:1273
|
3683 |
+
msgid "Yim"
|
3684 |
+
msgstr "Yahoo! Messenger"
|
3685 |
+
|
3686 |
+
#: ../modules/user-listing/userlisting.php:647
|
3687 |
+
#: ../modules/user-listing/userlisting.php:1274
|
3688 |
+
msgid "Jabber"
|
3689 |
+
msgstr "Jabber"
|
3690 |
+
|
3691 |
+
#: ../modules/user-listing/userlisting.php:827
|
3692 |
+
msgid "Click here to see more information about this user"
|
3693 |
+
msgstr "このユーザについてもっと見るにはここをクリック"
|
3694 |
+
|
3695 |
+
#: ../modules/user-listing/userlisting.php:827
|
3696 |
+
msgid "More..."
|
3697 |
+
msgstr "詳細..."
|
3698 |
+
|
3699 |
+
#: ../modules/user-listing/userlisting.php:830
|
3700 |
+
msgid "Click here to see more information about this user."
|
3701 |
+
msgstr "このユーザーの詳細はここをクリック"
|
3702 |
+
|
3703 |
+
#: ../modules/user-listing/userlisting.php:922
|
3704 |
+
#: ../modules/user-listing/userlisting.php:925
|
3705 |
+
msgid "Click here to go back"
|
3706 |
+
msgstr "戻るにはここをクリック"
|
3707 |
+
|
3708 |
+
#: ../modules/user-listing/userlisting.php:922
|
3709 |
+
msgid "Back"
|
3710 |
+
msgstr "戻る"
|
3711 |
+
|
3712 |
+
#: ../modules/user-listing/userlisting.php:955
|
3713 |
+
msgid "«« First"
|
3714 |
+
msgstr "«« 最初"
|
3715 |
+
|
3716 |
+
#: ../modules/user-listing/userlisting.php:956
|
3717 |
+
msgid "« Prev"
|
3718 |
+
msgstr "« 前"
|
3719 |
+
|
3720 |
+
#: ../modules/user-listing/userlisting.php:957
|
3721 |
+
msgid "Next » "
|
3722 |
+
msgstr "次 » "
|
3723 |
+
|
3724 |
+
#: ../modules/user-listing/userlisting.php:958
|
3725 |
+
msgid "Last »»"
|
3726 |
+
msgstr "最後 »»"
|
3727 |
+
|
3728 |
+
#: ../modules/user-listing/userlisting.php:987
|
3729 |
+
msgid "You don't have any pagination settings on this userlisting!"
|
3730 |
+
msgstr "このユーザー一覧に対するページネーションの設定がありません。"
|
3731 |
+
|
3732 |
+
#: ../modules/user-listing/userlisting.php:1028
|
3733 |
+
msgid "Search"
|
3734 |
+
msgstr "検索"
|
3735 |
+
|
3736 |
+
#: ../modules/user-listing/userlisting.php:1029
|
3737 |
+
msgid "Clear Results"
|
3738 |
+
msgstr "結果をクリア"
|
3739 |
+
|
3740 |
+
#: ../modules/user-listing/userlisting.php:1205
|
3741 |
+
#: ../modules/user-listing/userlisting.php:1209
|
3742 |
+
msgid "Extra shortcode parameters"
|
3743 |
+
msgstr "その他のショートコード用パラメーター"
|
3744 |
+
|
3745 |
+
#: ../modules/user-listing/userlisting.php:1212
|
3746 |
+
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
3747 |
+
msgstr "特定の(extra) meta-fieldが特定のmeta-valueをもつユーザのみ表示"
|
3748 |
+
|
3749 |
+
#: ../modules/user-listing/userlisting.php:1213
|
3750 |
+
msgid "Example:"
|
3751 |
+
msgstr "例:"
|
3752 |
+
|
3753 |
+
#: ../modules/user-listing/userlisting.php:1215
|
3754 |
+
msgid "Remember though, that the field-value combination must exist in the database."
|
3755 |
+
msgstr ""
|
3756 |
+
|
3757 |
+
#: ../modules/user-listing/userlisting.php:1284
|
3758 |
+
msgid "Random (very slow on large databases > 10K user)"
|
3759 |
+
msgstr "ランダム (1万ユーザ以上の大きなデータベースではとても遅い)"
|
3760 |
+
|
3761 |
+
#: ../modules/user-listing/userlisting.php:1297
|
3762 |
+
msgid "Roles to Display"
|
3763 |
+
msgstr "表示対象にする権限:"
|
3764 |
+
|
3765 |
+
#: ../modules/user-listing/userlisting.php:1297
|
3766 |
+
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
3767 |
+
msgstr "このユーザ一覧を選択した権限のみに制限してください。<br/>指定しない場合は、全ての権限のデフォルトになります。"
|
3768 |
+
|
3769 |
+
#: ../modules/user-listing/userlisting.php:1298
|
3770 |
+
msgid "Number of Users/Page"
|
3771 |
+
msgstr "1ページに表示するユーザ数:"
|
3772 |
+
|
3773 |
+
#: ../modules/user-listing/userlisting.php:1299
|
3774 |
+
msgid "Default Sorting Criteria"
|
3775 |
+
msgstr "デフォルトのソート基準"
|
3776 |
+
|
3777 |
+
#: ../modules/user-listing/userlisting.php:1299
|
3778 |
+
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
3779 |
+
msgstr "デフォルトのソート基準を指定してください。<br />この指定はセッション毎に一時的に変更できます。"
|
3780 |
+
|
3781 |
+
#: ../modules/user-listing/userlisting.php:1300
|
3782 |
+
msgid "Default Sorting Order"
|
3783 |
+
msgstr "初期ソート順"
|
3784 |
+
|
3785 |
+
#: ../modules/user-listing/userlisting.php:1300
|
3786 |
+
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
3787 |
+
msgstr "デフォルトのソート順を指定してください。この指定はセッション毎に一時的に変更できます。"
|
3788 |
+
|
3789 |
+
#: ../modules/user-listing/userlisting.php:1301
|
3790 |
+
msgid "Avatar Size (All-userlisting)"
|
3791 |
+
msgstr "アバター画像サイズ(一覧画面)"
|
3792 |
+
|
3793 |
+
#: ../modules/user-listing/userlisting.php:1301
|
3794 |
+
msgid "Set the avatar size on the all-userlisting only"
|
3795 |
+
msgstr "一覧画面で表示するアバター画像のサイズを指定してください。"
|
3796 |
+
|
3797 |
+
#: ../modules/user-listing/userlisting.php:1302
|
3798 |
+
msgid "Avatar Size (Single-userlisting)"
|
3799 |
+
msgstr "アバター画像サイズ(個別画面)"
|
3800 |
+
|
3801 |
+
#: ../modules/user-listing/userlisting.php:1302
|
3802 |
+
msgid "Set the avatar size on the single-userlisting only"
|
3803 |
+
msgstr "個別画面で表示するアバター画像のサイズを指定してください。"
|
3804 |
+
|
3805 |
+
#: ../modules/user-listing/userlisting.php:1303
|
3806 |
+
msgid "Visible only to logged in users?"
|
3807 |
+
msgstr "ログイン中のユーザーにのみ表示"
|
3808 |
+
|
3809 |
+
#: ../modules/user-listing/userlisting.php:1303
|
3810 |
+
msgid "The userlisting will only be visible only to the logged in users"
|
3811 |
+
msgstr "ユーザー一覧をログインしたユーザにだけ表示します"
|
3812 |
+
|
3813 |
+
#: ../modules/user-listing/userlisting.php:1304
|
3814 |
+
msgid "Visible to following Roles"
|
3815 |
+
msgstr ""
|
3816 |
+
|
3817 |
+
#: ../modules/user-listing/userlisting.php:1304
|
3818 |
+
msgid "The userlisting will only be visible to the following roles"
|
3819 |
+
msgstr "ユーザー一覧を以下の権限ユーザにだけ表示します"
|
3820 |
+
|
3821 |
+
#: ../modules/user-listing/userlisting.php:1310
|
3822 |
+
msgid "Userlisting Settings"
|
3823 |
+
msgstr "ユーザー一覧設定"
|
3824 |
+
|
3825 |
+
#: ../modules/user-listing/userlisting.php:1331
|
3826 |
+
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
3827 |
+
msgstr "「モジュール」タブの「ユーザー一覧表示」機能を有効にする必要があります!"
|
3828 |
+
|
3829 |
+
#: ../modules/user-listing/userlisting.php:1331
|
3830 |
+
msgid "You can find it in the Profile Builder menu."
|
3831 |
+
msgstr "Profile Builderメニューの中にあります。"
|
3832 |
+
|
3833 |
+
#: ../modules/user-listing/userlisting.php:1494
|
3834 |
+
msgid "No results found!"
|
3835 |
+
msgstr "見つかりませんでした。"
|