Version Description
- 13.08.2013 =
- Update : The Japanese language file is updated.
- Bugfix : We fixed the bug related to XSS attack.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Contact Form by BestWebSoft |
Version | 3.52 |
Comparing to | |
See all releases |
Code changes from version 3.51 to 3.52
- contact_form.php +51 -16
- languages/contact_form-ja.mo +0 -0
- languages/contact_form-ja.po +153 -195
- readme.txt +8 -1
contact_form.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Contact Form Plugin
|
|
4 |
Plugin URI: http://bestwebsoft.com/plugin/
|
5 |
Description: Plugin for Contact Form.
|
6 |
Author: BestWebSoft
|
7 |
-
Version: 3.
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
@@ -380,7 +380,7 @@ if( ! function_exists( 'cntctfrm_admin_menu' ) ) {
|
|
380 |
// Register settings for plugin
|
381 |
if( ! function_exists( 'cntctfrm_settings' ) ) {
|
382 |
function cntctfrm_settings() {
|
383 |
-
global $cntctfrm_options, $cntctfrm_option_defaults;
|
384 |
|
385 |
$cntctfrm_option_defaults = array(
|
386 |
'cntctfrm_user_email' => 'admin',
|
@@ -474,6 +474,31 @@ if( ! function_exists( 'cntctfrm_settings' ) ) {
|
|
474 |
$cntctfrm_options['cntctfrm_send_copy_label']['en'] = __( "Send me a copy", 'contact_form' );
|
475 |
|
476 |
update_option( 'cntctfrm_options', $cntctfrm_options );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
477 |
}
|
478 |
}
|
479 |
|
@@ -821,8 +846,6 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
821 |
<input type="checkbox" id="cntctfrm_display_address_field" name="cntctfrm_display_address_field" value="1" <?php if($cntctfrm_options['cntctfrm_display_address_field'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Address", 'contact_form' ); ?><br />
|
822 |
<input type="checkbox" id="cntctfrm_display_phone_field" name="cntctfrm_display_phone_field" value="1" <?php if($cntctfrm_options['cntctfrm_display_phone_field'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Phone", 'contact_form' ); ?><br />
|
823 |
<input type="checkbox" id="cntctfrm_attachment" name="cntctfrm_attachment" value="1" <?php if($cntctfrm_options['cntctfrm_attachment'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Attachment block", 'contact_form' ); ?> <span class="cntctfrm_info">(<?php echo __( "Users can attach the following file formats", 'contact_form' ) . ": html, txt, css, gif, png, jpeg, jpg, tiff, bmp, ai, eps, ps, rtf, pdf, doc, docx, xls, zip, rar, wav, mp3, ppt"; ?>)</span><br />
|
824 |
-
<input type="checkbox" id="cntctfrm_attachment_explanations" name="cntctfrm_attachment_explanations" value="1" <?php if( $cntctfrm_options['cntctfrm_attachment_explanations'] == '1' && $cntctfrm_options['cntctfrm_attachment'] == '1' ) echo "checked=\"checked\" "; ?>/> <?php echo __( "Tips below the Attachment block", 'contact_form' ); ?><br />
|
825 |
-
<input type="checkbox" id="cntctfrm_send_copy" name="cntctfrm_send_copy" value="1" <?php if($cntctfrm_options['cntctfrm_send_copy'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Send me a copy block", 'contact_form' ); ?> <br />
|
826 |
<?php $all_plugins = get_plugins();
|
827 |
if ( is_multisite() ) {
|
828 |
$active_plugins = (array) array_keys( get_site_option( 'active_sitewide_plugins', array() ) );
|
@@ -844,6 +867,18 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
844 |
<?php } ?>
|
845 |
</td>
|
846 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
847 |
<tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
|
848 |
<th scope="row" style="width:200px;"><?php _e( "Required fields", 'contact_form' ); ?></th>
|
849 |
<td colspan="2">
|
@@ -1286,12 +1321,12 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
|
|
1286 |
$page_url = ( isset( $_SERVER["HTTPS"] ) && $_SERVER["HTTPS"] == "on" ? "https://" : "http://" ).$_SERVER["SERVER_NAME"].strip_tags( $_SERVER["REQUEST_URI"] );
|
1287 |
|
1288 |
// If contact form submited
|
1289 |
-
$name = isset( $_POST['cntctfrm_contact_name'] ) ? $_POST['cntctfrm_contact_name'] : "";
|
1290 |
-
$address = isset( $_POST['cntctfrm_contact_address'] ) ? $_POST['cntctfrm_contact_address'] : "";
|
1291 |
-
$email = isset( $_POST['cntctfrm_contact_email'] ) ? stripslashes( $_POST['cntctfrm_contact_email'] ) : "";
|
1292 |
-
$subject = isset( $_POST['cntctfrm_contact_subject'] ) ? $_POST['cntctfrm_contact_subject'] : "";
|
1293 |
-
$message = isset( $_POST['cntctfrm_contact_message'] ) ? $_POST['cntctfrm_contact_message'] : "";
|
1294 |
-
$phone = isset( $_POST['cntctfrm_contact_phone'] ) ? $_POST['cntctfrm_contact_phone'] : "";
|
1295 |
|
1296 |
$name = strip_tags( preg_replace ( '/<[^>]*>/', '', preg_replace ( '/<script.*<\/[^>]*>/', '', $name ) ) );
|
1297 |
$address = strip_tags( preg_replace ( '/<[^>]*>/', '', preg_replace ( '/<script.*<\/[^>]*>/', '', $address ) ) );
|
@@ -1456,12 +1491,12 @@ if( ! function_exists( 'cntctfrm_check_form' ) ) {
|
|
1456 |
// Error messages array
|
1457 |
$error_message = array();
|
1458 |
|
1459 |
-
$name = isset( $_POST['cntctfrm_contact_name'] ) ? $_POST['cntctfrm_contact_name'] : "";
|
1460 |
-
$address = isset( $_POST['cntctfrm_contact_address'] ) ? $_POST['cntctfrm_contact_address'] : "";
|
1461 |
-
$email = isset( $_POST['cntctfrm_contact_email'] ) ? stripslashes( $_POST['cntctfrm_contact_email'] ) : "";
|
1462 |
-
$subject = isset( $_POST['cntctfrm_contact_subject'] ) ? $_POST['cntctfrm_contact_subject'] : "";
|
1463 |
-
$message = isset( $_POST['cntctfrm_contact_message'] ) ? $_POST['cntctfrm_contact_message'] : "";
|
1464 |
-
$phone = isset( $_POST['cntctfrm_contact_phone'] ) ? $_POST['cntctfrm_contact_phone'] : "";
|
1465 |
|
1466 |
$name = strip_tags( preg_replace ( '/<[^>]*>/', '', preg_replace ( '/<script.*<\/[^>]*>/', '', $name ) ) );
|
1467 |
$address = strip_tags( preg_replace ( '/<[^>]*>/', '', preg_replace ( '/<script.*<\/[^>]*>/', '', $address ) ) );
|
4 |
Plugin URI: http://bestwebsoft.com/plugin/
|
5 |
Description: Plugin for Contact Form.
|
6 |
Author: BestWebSoft
|
7 |
+
Version: 3.52
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
380 |
// Register settings for plugin
|
381 |
if( ! function_exists( 'cntctfrm_settings' ) ) {
|
382 |
function cntctfrm_settings() {
|
383 |
+
global $cntctfrm_options, $cntctfrm_option_defaults, $wpdb;
|
384 |
|
385 |
$cntctfrm_option_defaults = array(
|
386 |
'cntctfrm_user_email' => 'admin',
|
474 |
$cntctfrm_options['cntctfrm_send_copy_label']['en'] = __( "Send me a copy", 'contact_form' );
|
475 |
|
476 |
update_option( 'cntctfrm_options', $cntctfrm_options );
|
477 |
+
|
478 |
+
// create db table of fields list
|
479 |
+
$sql = "CREATE TABLE IF NOT EXISTS `" . $wpdb->prefix . "cntctfrm_field` (
|
480 |
+
id int NOT NULL AUTO_INCREMENT,
|
481 |
+
name CHAR(100) NOT NULL,
|
482 |
+
UNIQUE KEY id (id)
|
483 |
+
);";
|
484 |
+
require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
|
485 |
+
dbDelta( $sql );
|
486 |
+
$fields = array( 'display_address_field',
|
487 |
+
'display_phone_field',
|
488 |
+
'attachment',
|
489 |
+
'attachment_explanations',
|
490 |
+
'send_copy',
|
491 |
+
'display_sent_from',
|
492 |
+
'display_date_time',
|
493 |
+
'display_coming_from',
|
494 |
+
'display_user_agent'
|
495 |
+
);
|
496 |
+
foreach ( $fields as $key => $value ) {
|
497 |
+
$db_row = $wpdb->get_row( "SELECT * FROM " . $wpdb->prefix . "cntctfrm_field WHERE `name` = '" . $value . "'", ARRAY_A );
|
498 |
+
if ( !isset( $db_row ) || empty( $db_row ) ) {
|
499 |
+
$wpdb->insert( $wpdb->prefix . "cntctfrm_field", array( 'name' => $value ), array( '%s' ) );
|
500 |
+
}
|
501 |
+
}
|
502 |
}
|
503 |
}
|
504 |
|
846 |
<input type="checkbox" id="cntctfrm_display_address_field" name="cntctfrm_display_address_field" value="1" <?php if($cntctfrm_options['cntctfrm_display_address_field'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Address", 'contact_form' ); ?><br />
|
847 |
<input type="checkbox" id="cntctfrm_display_phone_field" name="cntctfrm_display_phone_field" value="1" <?php if($cntctfrm_options['cntctfrm_display_phone_field'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Phone", 'contact_form' ); ?><br />
|
848 |
<input type="checkbox" id="cntctfrm_attachment" name="cntctfrm_attachment" value="1" <?php if($cntctfrm_options['cntctfrm_attachment'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Attachment block", 'contact_form' ); ?> <span class="cntctfrm_info">(<?php echo __( "Users can attach the following file formats", 'contact_form' ) . ": html, txt, css, gif, png, jpeg, jpg, tiff, bmp, ai, eps, ps, rtf, pdf, doc, docx, xls, zip, rar, wav, mp3, ppt"; ?>)</span><br />
|
|
|
|
|
849 |
<?php $all_plugins = get_plugins();
|
850 |
if ( is_multisite() ) {
|
851 |
$active_plugins = (array) array_keys( get_site_option( 'active_sitewide_plugins', array() ) );
|
867 |
<?php } ?>
|
868 |
</td>
|
869 |
</tr>
|
870 |
+
<tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
|
871 |
+
<th scope="row" style="width:200px;"><?php echo __( "Display tips below the Attachment block", 'contact_form' ); ?></th>
|
872 |
+
<td colspan="2">
|
873 |
+
<input type="checkbox" id="cntctfrm_attachment_explanations" name="cntctfrm_attachment_explanations" value="1" <?php if( $cntctfrm_options['cntctfrm_attachment_explanations'] == '1' && $cntctfrm_options['cntctfrm_attachment'] == '1' ) echo "checked=\"checked\" "; ?>/>
|
874 |
+
</td>
|
875 |
+
</tr>
|
876 |
+
<tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
|
877 |
+
<th scope="row" style="width:200px;"><?php _e( "Display 'Send me a copy' block", 'contact_form' ); ?> </th>
|
878 |
+
<td colspan="2">
|
879 |
+
<input type="checkbox" id="cntctfrm_send_copy" name="cntctfrm_send_copy" value="1" <?php if($cntctfrm_options['cntctfrm_send_copy'] == '1') echo "checked=\"checked\" "; ?>/>
|
880 |
+
</td>
|
881 |
+
</tr>
|
882 |
<tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
|
883 |
<th scope="row" style="width:200px;"><?php _e( "Required fields", 'contact_form' ); ?></th>
|
884 |
<td colspan="2">
|
1321 |
$page_url = ( isset( $_SERVER["HTTPS"] ) && $_SERVER["HTTPS"] == "on" ? "https://" : "http://" ).$_SERVER["SERVER_NAME"].strip_tags( $_SERVER["REQUEST_URI"] );
|
1322 |
|
1323 |
// If contact form submited
|
1324 |
+
$name = isset( $_POST['cntctfrm_contact_name'] ) ? htmlspecialchars( $_POST['cntctfrm_contact_name'] ) : "";
|
1325 |
+
$address = isset( $_POST['cntctfrm_contact_address'] ) ? htmlspecialchars( $_POST['cntctfrm_contact_address'] ) : "";
|
1326 |
+
$email = isset( $_POST['cntctfrm_contact_email'] ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_email'] ) ) : "";
|
1327 |
+
$subject = isset( $_POST['cntctfrm_contact_subject'] ) ? htmlspecialchars( $_POST['cntctfrm_contact_subject'] ) : "";
|
1328 |
+
$message = isset( $_POST['cntctfrm_contact_message'] ) ? htmlspecialchars( $_POST['cntctfrm_contact_message'] ) : "";
|
1329 |
+
$phone = isset( $_POST['cntctfrm_contact_phone'] ) ? htmlspecialchars( $_POST['cntctfrm_contact_phone'] ) : "";
|
1330 |
|
1331 |
$name = strip_tags( preg_replace ( '/<[^>]*>/', '', preg_replace ( '/<script.*<\/[^>]*>/', '', $name ) ) );
|
1332 |
$address = strip_tags( preg_replace ( '/<[^>]*>/', '', preg_replace ( '/<script.*<\/[^>]*>/', '', $address ) ) );
|
1491 |
// Error messages array
|
1492 |
$error_message = array();
|
1493 |
|
1494 |
+
$name = isset( $_POST['cntctfrm_contact_name'] ) ? htmlspecialchars( $_POST['cntctfrm_contact_name'] ) : "";
|
1495 |
+
$address = isset( $_POST['cntctfrm_contact_address'] ) ? htmlspecialchars( $_POST['cntctfrm_contact_address'] ) : "";
|
1496 |
+
$email = isset( $_POST['cntctfrm_contact_email'] ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_email'] ) ) : "";
|
1497 |
+
$subject = isset( $_POST['cntctfrm_contact_subject'] ) ? htmlspecialchars( $_POST['cntctfrm_contact_subject'] ) : "";
|
1498 |
+
$message = isset( $_POST['cntctfrm_contact_message'] ) ? htmlspecialchars( $_POST['cntctfrm_contact_message'] ) : "";
|
1499 |
+
$phone = isset( $_POST['cntctfrm_contact_phone'] ) ? htmlspecialchars( $_POST['cntctfrm_contact_phone'] ) : "";
|
1500 |
|
1501 |
$name = strip_tags( preg_replace ( '/<[^>]*>/', '', preg_replace ( '/<script.*<\/[^>]*>/', '', $name ) ) );
|
1502 |
$address = strip_tags( preg_replace ( '/<[^>]*>/', '', preg_replace ( '/<script.*<\/[^>]*>/', '', $address ) ) );
|
languages/contact_form-ja.mo
CHANGED
Binary file
|
languages/contact_form-ja.po
CHANGED
@@ -2,10 +2,10 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: \n"
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -13,22 +13,22 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Generator: Poedit 1.5.
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: contact_form.php:106
|
20 |
msgid "Not set"
|
21 |
-
msgstr ""
|
22 |
|
23 |
#: contact_form.php:108
|
24 |
#: contact_form.php:112
|
25 |
msgid "On"
|
26 |
-
msgstr ""
|
27 |
|
28 |
#: contact_form.php:110
|
29 |
#: contact_form.php:114
|
30 |
msgid "Off"
|
31 |
-
msgstr ""
|
32 |
|
33 |
#: contact_form.php:118
|
34 |
#: contact_form.php:122
|
@@ -37,120 +37,117 @@ msgstr ""
|
|
37 |
#: contact_form.php:134
|
38 |
#: contact_form.php:160
|
39 |
msgid "N/A"
|
40 |
-
msgstr ""
|
41 |
|
42 |
#: contact_form.php:132
|
43 |
msgid " Mb"
|
44 |
-
msgstr ""
|
45 |
|
46 |
#: contact_form.php:136
|
47 |
#: contact_form.php:140
|
48 |
#: contact_form.php:144
|
49 |
#: contact_form.php:155
|
50 |
msgid "Yes"
|
51 |
-
msgstr ""
|
52 |
|
53 |
#: contact_form.php:138
|
54 |
#: contact_form.php:142
|
55 |
#: contact_form.php:146
|
56 |
#: contact_form.php:157
|
57 |
msgid "No"
|
58 |
-
msgstr ""
|
59 |
|
60 |
#: contact_form.php:171
|
61 |
msgid "Operating System"
|
62 |
-
msgstr ""
|
63 |
|
64 |
#: contact_form.php:172
|
65 |
msgid "Server"
|
66 |
-
msgstr ""
|
67 |
|
68 |
#: contact_form.php:173
|
69 |
-
#, fuzzy
|
70 |
msgid "Memory usage"
|
71 |
-
msgstr "
|
72 |
|
73 |
#: contact_form.php:174
|
74 |
msgid "MYSQL Version"
|
75 |
-
msgstr ""
|
76 |
|
77 |
#: contact_form.php:175
|
78 |
msgid "SQL Mode"
|
79 |
-
msgstr ""
|
80 |
|
81 |
#: contact_form.php:176
|
82 |
msgid "PHP Version"
|
83 |
-
msgstr ""
|
84 |
|
85 |
#: contact_form.php:177
|
86 |
msgid "PHP Safe Mode"
|
87 |
-
msgstr ""
|
88 |
|
89 |
#: contact_form.php:178
|
90 |
msgid "PHP Allow URL fopen"
|
91 |
-
msgstr ""
|
92 |
|
93 |
#: contact_form.php:179
|
94 |
msgid "PHP Memory Limit"
|
95 |
-
msgstr ""
|
96 |
|
97 |
#: contact_form.php:180
|
98 |
msgid "PHP Max Upload Size"
|
99 |
-
msgstr ""
|
100 |
|
101 |
#: contact_form.php:181
|
102 |
msgid "PHP Max Post Size"
|
103 |
-
msgstr ""
|
104 |
|
105 |
#: contact_form.php:182
|
106 |
msgid "PHP Max Script Execute Time"
|
107 |
-
msgstr ""
|
108 |
|
109 |
#: contact_form.php:183
|
110 |
msgid "PHP Exif support"
|
111 |
-
msgstr ""
|
112 |
|
113 |
#: contact_form.php:184
|
114 |
msgid "PHP IPTC support"
|
115 |
-
msgstr ""
|
116 |
|
117 |
#: contact_form.php:185
|
118 |
msgid "PHP XML support"
|
119 |
-
msgstr ""
|
120 |
|
121 |
#: contact_form.php:186
|
122 |
-
#, fuzzy
|
123 |
msgid "Site URL"
|
124 |
-
msgstr "サイト"
|
125 |
|
126 |
#: contact_form.php:187
|
127 |
msgid "Home URL"
|
128 |
-
msgstr ""
|
129 |
|
130 |
#: contact_form.php:188
|
131 |
msgid "WordPress Version"
|
132 |
-
msgstr ""
|
133 |
|
134 |
#: contact_form.php:189
|
135 |
msgid "WordPress DB Version"
|
136 |
-
msgstr ""
|
137 |
|
138 |
#: contact_form.php:190
|
139 |
msgid "Multisite"
|
140 |
-
msgstr ""
|
141 |
|
142 |
#: contact_form.php:191
|
143 |
msgid "Active Theme"
|
144 |
-
msgstr ""
|
145 |
|
146 |
#: contact_form.php:206
|
147 |
-
#, fuzzy
|
148 |
msgid "Please enter a valid email address."
|
149 |
-
msgstr "
|
150 |
|
151 |
#: contact_form.php:210
|
152 |
msgid "Email with system info is sent to "
|
153 |
-
msgstr ""
|
154 |
|
155 |
#: contact_form.php:214
|
156 |
#: contact_form.php:434
|
@@ -163,9 +160,8 @@ msgid "Sorry, email message could not be delivered."
|
|
163 |
msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
|
164 |
|
165 |
#: contact_form.php:250
|
166 |
-
#, fuzzy
|
167 |
msgid "Pro plugins"
|
168 |
-
msgstr "
|
169 |
|
170 |
#: contact_form.php:253
|
171 |
#: contact_form.php:279
|
@@ -202,12 +198,11 @@ msgstr "推奨プラグイン"
|
|
202 |
|
203 |
#: contact_form.php:271
|
204 |
msgid "Purchase"
|
205 |
-
msgstr ""
|
206 |
|
207 |
#: contact_form.php:276
|
208 |
-
#, fuzzy
|
209 |
msgid "Free plugins"
|
210 |
-
msgstr "
|
211 |
|
212 |
#: contact_form.php:297
|
213 |
msgid "Download"
|
@@ -223,57 +218,50 @@ msgid "Install now from wordpress.org"
|
|
223 |
msgstr "wordpress.org から直ぐに導入"
|
224 |
|
225 |
#: contact_form.php:302
|
226 |
-
#, fuzzy
|
227 |
msgid "If you have any questions, please contact us via"
|
228 |
-
msgstr "
|
229 |
|
230 |
#: contact_form.php:309
|
231 |
msgid "System status"
|
232 |
-
msgstr ""
|
233 |
|
234 |
#: contact_form.php:313
|
235 |
msgid "Environment"
|
236 |
-
msgstr ""
|
237 |
|
238 |
#: contact_form.php:324
|
239 |
-
#, fuzzy
|
240 |
msgid "Active Plugins"
|
241 |
msgstr "有効なプラグイン"
|
242 |
|
243 |
#: contact_form.php:335
|
244 |
-
#, fuzzy
|
245 |
msgid "Inactive Plugins"
|
246 |
-
msgstr "
|
247 |
|
248 |
#: contact_form.php:349
|
249 |
-
#, fuzzy
|
250 |
msgid "Send to support"
|
251 |
-
msgstr "
|
252 |
|
253 |
#: contact_form.php:356
|
254 |
msgid "Send to custom email »"
|
255 |
-
msgstr ""
|
256 |
|
257 |
#: contact_form.php:372
|
258 |
#: contact_form.php:750
|
259 |
-
#, fuzzy
|
260 |
msgid "Contact Form Settings"
|
261 |
-
msgstr "
|
262 |
|
263 |
#: contact_form.php:372
|
264 |
msgid "Contact Form"
|
265 |
-
msgstr "
|
266 |
|
267 |
#: contact_form.php:373
|
268 |
-
#, fuzzy
|
269 |
msgid "Contact Form Pro Extra Settings"
|
270 |
-
msgstr "
|
271 |
|
272 |
#: contact_form.php:373
|
273 |
#: contact_form.php:1010
|
274 |
-
#, fuzzy
|
275 |
msgid "Contact Form Pro"
|
276 |
-
msgstr "Contact Form"
|
277 |
|
278 |
#: contact_form.php:412
|
279 |
#: contact_form.php:899
|
@@ -284,21 +272,20 @@ msgstr "名前:"
|
|
284 |
#: contact_form.php:413
|
285 |
#: contact_form.php:900
|
286 |
#: contact_form.php:929
|
287 |
-
#, fuzzy
|
288 |
msgid "Address:"
|
289 |
-
msgstr "
|
290 |
|
291 |
#: contact_form.php:414
|
292 |
#: contact_form.php:901
|
293 |
#: contact_form.php:930
|
294 |
msgid "Email Address:"
|
295 |
-
msgstr "E
|
296 |
|
297 |
#: contact_form.php:415
|
298 |
#: contact_form.php:902
|
299 |
#: contact_form.php:931
|
300 |
msgid "Phone number:"
|
301 |
-
msgstr ""
|
302 |
|
303 |
#: contact_form.php:416
|
304 |
#: contact_form.php:903
|
@@ -336,21 +323,18 @@ msgid "Your name is required."
|
|
336 |
msgstr "名前は必須です。"
|
337 |
|
338 |
#: contact_form.php:422
|
339 |
-
#, fuzzy
|
340 |
msgid "Address is required."
|
341 |
-
msgstr "
|
342 |
|
343 |
#: contact_form.php:423
|
344 |
-
#, fuzzy
|
345 |
msgid "A valid email address is required."
|
346 |
-
msgstr "
|
347 |
|
348 |
#: contact_form.php:424
|
349 |
#: contact_form.php:469
|
350 |
#: contact_form.php:472
|
351 |
-
#, fuzzy
|
352 |
msgid "Phone number is required."
|
353 |
-
msgstr "
|
354 |
|
355 |
#: contact_form.php:425
|
356 |
#: contact_form.php:468
|
@@ -370,15 +354,15 @@ msgstr "添付が壊れています。"
|
|
370 |
|
371 |
#: contact_form.php:428
|
372 |
msgid "File upload error."
|
373 |
-
msgstr ""
|
374 |
|
375 |
#: contact_form.php:429
|
376 |
msgid "The file could not be uploaded."
|
377 |
-
msgstr ""
|
378 |
|
379 |
#: contact_form.php:430
|
380 |
msgid "This file is too large."
|
381 |
-
msgstr ""
|
382 |
|
383 |
#: contact_form.php:431
|
384 |
msgid "Please fill out the CAPTCHA."
|
@@ -390,7 +374,7 @@ msgstr "以下を修正し、再度試して下さい。"
|
|
390 |
|
391 |
#: contact_form.php:705
|
392 |
msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
|
393 |
-
msgstr ""
|
394 |
|
395 |
#: contact_form.php:714
|
396 |
msgid "Such user does not exist. Settings are not saved."
|
@@ -398,41 +382,37 @@ msgstr "このようなユーザは存在しません。設定は保存されま
|
|
398 |
|
399 |
#: contact_form.php:719
|
400 |
#: contact_form.php:725
|
401 |
-
#, fuzzy
|
402 |
msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
|
403 |
-
msgstr "
|
404 |
|
405 |
#: contact_form.php:730
|
406 |
-
#, fuzzy
|
407 |
msgid "Settings saved."
|
408 |
-
msgstr "
|
409 |
|
410 |
#: contact_form.php:755
|
411 |
#: contact_form.php:1005
|
412 |
-
#, fuzzy
|
413 |
msgid "Extra settings"
|
414 |
-
msgstr "
|
415 |
|
416 |
#: contact_form.php:760
|
417 |
#: contact_form.php:1261
|
418 |
-
#, fuzzy
|
419 |
msgid "If you would like to add the Contact Form to your website, just copy and paste this shortcode to your post or page or widget:"
|
420 |
-
msgstr "
|
421 |
|
422 |
#: contact_form.php:760
|
423 |
#: contact_form.php:761
|
424 |
#: contact_form.php:921
|
425 |
#: contact_form.php:969
|
426 |
msgid "or"
|
427 |
-
msgstr ""
|
428 |
|
429 |
#: contact_form.php:761
|
430 |
msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
|
431 |
-
msgstr ""
|
432 |
|
433 |
#: contact_form.php:762
|
434 |
msgid "They work the same way."
|
435 |
-
msgstr ""
|
436 |
|
437 |
#: contact_form.php:763
|
438 |
msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
|
@@ -447,9 +427,8 @@ msgid "Create a username"
|
|
447 |
msgstr "ユーザ名の選択"
|
448 |
|
449 |
#: contact_form.php:776
|
450 |
-
#, fuzzy
|
451 |
msgid "Enter a username of the person who should get the messages from the contact form."
|
452 |
-
msgstr "
|
453 |
|
454 |
#: contact_form.php:780
|
455 |
msgid "Use this email address:"
|
@@ -465,111 +444,102 @@ msgstr "追加オプション"
|
|
465 |
|
466 |
#: contact_form.php:790
|
467 |
msgid "What to use?"
|
468 |
-
msgstr ""
|
469 |
|
470 |
#: contact_form.php:793
|
471 |
-
#, fuzzy
|
472 |
msgid "Wp-mail"
|
473 |
-
msgstr "
|
474 |
|
475 |
#: contact_form.php:794
|
476 |
msgid "You can use the wp_mail function for mailing"
|
477 |
-
msgstr ""
|
478 |
|
479 |
#: contact_form.php:800
|
480 |
msgid "Mail"
|
481 |
-
msgstr ""
|
482 |
|
483 |
#: contact_form.php:801
|
484 |
msgid "To send mail you can use the php mail function"
|
485 |
-
msgstr ""
|
486 |
|
487 |
#: contact_form.php:805
|
488 |
-
#, fuzzy
|
489 |
msgid "Change text of the 'FROM' field"
|
490 |
-
msgstr "
|
491 |
|
492 |
#: contact_form.php:811
|
493 |
msgid "Enter the email address in the 'From' field"
|
494 |
-
msgstr ""
|
495 |
|
496 |
#: contact_form.php:813
|
497 |
msgid "User email"
|
498 |
-
msgstr ""
|
499 |
|
500 |
#: contact_form.php:813
|
501 |
msgid "The email address of the user who fills the form will be used in the field 'From'."
|
502 |
-
msgstr ""
|
503 |
|
504 |
#: contact_form.php:815
|
505 |
msgid "This email address will be used in the 'From' field."
|
506 |
-
msgstr ""
|
507 |
|
508 |
#: contact_form.php:819
|
509 |
-
#, fuzzy
|
510 |
msgid "Display fields"
|
511 |
-
msgstr "
|
512 |
|
513 |
#: contact_form.php:821
|
514 |
#: contact_form.php:851
|
515 |
#: contact_form.php:1041
|
516 |
#: contact_form.php:1693
|
517 |
-
#, fuzzy
|
518 |
msgid "Address"
|
519 |
-
msgstr "
|
520 |
|
521 |
#: contact_form.php:822
|
522 |
#: contact_form.php:853
|
523 |
#: contact_form.php:1701
|
524 |
msgid "Phone"
|
525 |
-
msgstr ""
|
526 |
|
527 |
#: contact_form.php:823
|
528 |
-
#, fuzzy
|
529 |
msgid "Attachment block"
|
530 |
-
msgstr "
|
531 |
|
532 |
#: contact_form.php:823
|
533 |
msgid "Users can attach the following file formats"
|
534 |
msgstr "ユーザは、以下のタイプのファイルを添付できる"
|
535 |
|
536 |
#: contact_form.php:824
|
537 |
-
#, fuzzy
|
538 |
msgid "Tips below the Attachment block"
|
539 |
-
msgstr "
|
540 |
|
541 |
#: contact_form.php:825
|
542 |
-
#, fuzzy
|
543 |
msgid "Send me a copy block"
|
544 |
-
msgstr "
|
545 |
|
546 |
#: contact_form.php:837
|
547 |
#: contact_form.php:840
|
548 |
#: contact_form.php:843
|
549 |
#: contact_form.php:1070
|
550 |
msgid "Captcha"
|
551 |
-
msgstr ""
|
552 |
|
553 |
#: contact_form.php:837
|
554 |
#: contact_form.php:840
|
555 |
#: contact_form.php:843
|
556 |
#: contact_form.php:1070
|
557 |
msgid "(powered by bestwebsoft.com)"
|
558 |
-
msgstr ""
|
559 |
|
560 |
#: contact_form.php:840
|
561 |
-
#, fuzzy
|
562 |
msgid "Activate captcha"
|
563 |
-
msgstr "
|
564 |
|
565 |
#: contact_form.php:843
|
566 |
-
#, fuzzy
|
567 |
msgid "Download captcha"
|
568 |
-
msgstr "
|
569 |
|
570 |
#: contact_form.php:848
|
571 |
msgid "Required fields"
|
572 |
-
msgstr ""
|
573 |
|
574 |
#: contact_form.php:850
|
575 |
#: contact_form.php:1036
|
@@ -578,9 +548,8 @@ msgid "Name"
|
|
578 |
msgstr "名前"
|
579 |
|
580 |
#: contact_form.php:852
|
581 |
-
#, fuzzy
|
582 |
msgid "Email Address"
|
583 |
-
msgstr "E
|
584 |
|
585 |
#: contact_form.php:854
|
586 |
#: contact_form.php:1056
|
@@ -596,7 +565,7 @@ msgstr "メッセージ"
|
|
596 |
|
597 |
#: contact_form.php:859
|
598 |
msgid "Display additional info in the email"
|
599 |
-
msgstr ""
|
600 |
|
601 |
#: contact_form.php:864
|
602 |
#: contact_form.php:1660
|
@@ -620,117 +589,115 @@ msgstr "(user agent)使用"
|
|
620 |
|
621 |
#: contact_form.php:871
|
622 |
msgid "Language settings for the field names in the form"
|
623 |
-
msgstr ""
|
624 |
|
625 |
#: contact_form.php:880
|
626 |
msgid "Add a language"
|
627 |
-
msgstr ""
|
628 |
|
629 |
#: contact_form.php:884
|
630 |
-
#, fuzzy
|
631 |
msgid "Change the names of the contact form fields and error messages"
|
632 |
-
msgstr "
|
633 |
|
634 |
#: contact_form.php:889
|
635 |
#: contact_form.php:960
|
636 |
msgid "English"
|
637 |
-
msgstr ""
|
638 |
|
639 |
#: contact_form.php:908
|
640 |
#: contact_form.php:937
|
641 |
msgid "Error message for the Name field"
|
642 |
-
msgstr ""
|
643 |
|
644 |
#: contact_form.php:909
|
645 |
#: contact_form.php:938
|
646 |
msgid "Error message for the Address field"
|
647 |
-
msgstr ""
|
648 |
|
649 |
#: contact_form.php:910
|
650 |
#: contact_form.php:939
|
651 |
msgid "Error message for the Email field"
|
652 |
-
msgstr ""
|
653 |
|
654 |
#: contact_form.php:911
|
655 |
#: contact_form.php:940
|
656 |
msgid "Error message for the Phone field"
|
657 |
-
msgstr ""
|
658 |
|
659 |
#: contact_form.php:912
|
660 |
#: contact_form.php:941
|
661 |
msgid "Error message for the Subject field"
|
662 |
-
msgstr ""
|
663 |
|
664 |
#: contact_form.php:913
|
665 |
#: contact_form.php:942
|
666 |
msgid "Error message for the Message field"
|
667 |
-
msgstr ""
|
668 |
|
669 |
#: contact_form.php:914
|
670 |
#: contact_form.php:943
|
671 |
msgid "Error message about the file type for the Attachment field"
|
672 |
-
msgstr ""
|
673 |
|
674 |
#: contact_form.php:915
|
675 |
#: contact_form.php:944
|
676 |
msgid "Error message while uploading a file for the Attachment field to the server"
|
677 |
-
msgstr ""
|
678 |
|
679 |
#: contact_form.php:916
|
680 |
#: contact_form.php:945
|
681 |
msgid "Error message while moving the file for the Attachment field"
|
682 |
-
msgstr ""
|
683 |
|
684 |
#: contact_form.php:917
|
685 |
#: contact_form.php:946
|
686 |
msgid "Error message when file size limit for the Attachment field is exceeded"
|
687 |
-
msgstr ""
|
688 |
|
689 |
#: contact_form.php:918
|
690 |
#: contact_form.php:947
|
691 |
msgid "Error message for the Captcha field"
|
692 |
-
msgstr ""
|
693 |
|
694 |
#: contact_form.php:919
|
695 |
#: contact_form.php:948
|
696 |
msgid "Error message for the whole form"
|
697 |
-
msgstr ""
|
698 |
|
699 |
#: contact_form.php:921
|
700 |
#: contact_form.php:950
|
701 |
#: contact_form.php:969
|
702 |
#: contact_form.php:975
|
703 |
msgid "Use shortcode"
|
704 |
-
msgstr ""
|
705 |
|
706 |
#: contact_form.php:921
|
707 |
#: contact_form.php:950
|
708 |
#: contact_form.php:969
|
709 |
#: contact_form.php:975
|
710 |
msgid "for this language"
|
711 |
-
msgstr ""
|
712 |
|
713 |
#: contact_form.php:957
|
714 |
msgid "Action after email is sent"
|
715 |
-
msgstr ""
|
716 |
|
717 |
#: contact_form.php:959
|
718 |
-
#, fuzzy
|
719 |
msgid "Display text"
|
720 |
-
msgstr "
|
721 |
|
722 |
#: contact_form.php:968
|
723 |
#: contact_form.php:974
|
724 |
msgid "Text"
|
725 |
-
msgstr ""
|
726 |
|
727 |
#: contact_form.php:981
|
728 |
msgid "Redirect to the page"
|
729 |
-
msgstr ""
|
730 |
|
731 |
#: contact_form.php:982
|
732 |
msgid "Url"
|
733 |
-
msgstr ""
|
734 |
|
735 |
#: contact_form.php:987
|
736 |
#: contact_form.php:1162
|
@@ -738,61 +705,56 @@ msgid "Save Changes"
|
|
738 |
msgstr "変更を保存"
|
739 |
|
740 |
#: contact_form.php:1002
|
741 |
-
#, fuzzy
|
742 |
msgid "Contact Form Pro | Extra Settings"
|
743 |
-
msgstr "
|
744 |
|
745 |
#: contact_form.php:1009
|
746 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
747 |
-
msgstr ""
|
748 |
|
749 |
#: contact_form.php:1016
|
750 |
msgid "Errors output"
|
751 |
-
msgstr ""
|
752 |
|
753 |
#: contact_form.php:1019
|
754 |
msgid "Display error messages"
|
755 |
-
msgstr ""
|
756 |
|
757 |
#: contact_form.php:1020
|
758 |
msgid "Color of the input field errors."
|
759 |
-
msgstr ""
|
760 |
|
761 |
#: contact_form.php:1021
|
762 |
msgid "Display error messages & color of the input field errors"
|
763 |
-
msgstr ""
|
764 |
|
765 |
#: contact_form.php:1026
|
766 |
msgid "Add placeholder to the input blocks"
|
767 |
-
msgstr ""
|
768 |
|
769 |
#: contact_form.php:1032
|
770 |
-
#, fuzzy
|
771 |
msgid "Add tooltips"
|
772 |
-
msgstr "
|
773 |
|
774 |
#: contact_form.php:1046
|
775 |
-
#, fuzzy
|
776 |
msgid "Email address"
|
777 |
-
msgstr "E
|
778 |
|
779 |
#: contact_form.php:1051
|
780 |
msgid "Phone Number"
|
781 |
-
msgstr ""
|
782 |
|
783 |
#: contact_form.php:1065
|
784 |
-
#, fuzzy
|
785 |
msgid "Attachment"
|
786 |
-
msgstr "
|
787 |
|
788 |
#: contact_form.php:1075
|
789 |
-
#, fuzzy
|
790 |
msgid "Style options"
|
791 |
-
msgstr "
|
792 |
|
793 |
#: contact_form.php:1078
|
794 |
msgid "Text color"
|
795 |
-
msgstr ""
|
796 |
|
797 |
#: contact_form.php:1081
|
798 |
#: contact_form.php:1086
|
@@ -807,118 +769,114 @@ msgstr ""
|
|
807 |
#: contact_form.php:1148
|
808 |
#: contact_form.php:1153
|
809 |
msgid "Default"
|
810 |
-
msgstr ""
|
811 |
|
812 |
#: contact_form.php:1083
|
813 |
msgid "Label text color"
|
814 |
-
msgstr ""
|
815 |
|
816 |
#: contact_form.php:1088
|
817 |
msgid "Placeholder color"
|
818 |
-
msgstr ""
|
819 |
|
820 |
#: contact_form.php:1093
|
821 |
msgid "Errors color"
|
822 |
-
msgstr ""
|
823 |
|
824 |
#: contact_form.php:1098
|
825 |
msgid "Error text color"
|
826 |
-
msgstr ""
|
827 |
|
828 |
#: contact_form.php:1103
|
829 |
msgid "Background color of the input field errors"
|
830 |
-
msgstr ""
|
831 |
|
832 |
#: contact_form.php:1108
|
833 |
msgid "Border color of the input field errors"
|
834 |
-
msgstr ""
|
835 |
|
836 |
#: contact_form.php:1113
|
837 |
msgid "Placeholder color of the input field errors"
|
838 |
-
msgstr ""
|
839 |
|
840 |
#: contact_form.php:1118
|
841 |
-
#, fuzzy
|
842 |
msgid "Input fields"
|
843 |
-
msgstr "
|
844 |
|
845 |
#: contact_form.php:1123
|
846 |
msgid "Input fields background color"
|
847 |
-
msgstr ""
|
848 |
|
849 |
#: contact_form.php:1128
|
850 |
msgid "Text fields color"
|
851 |
-
msgstr ""
|
852 |
|
853 |
#: contact_form.php:1130
|
854 |
msgid "Border width in px, numbers only"
|
855 |
-
msgstr ""
|
856 |
|
857 |
#: contact_form.php:1134
|
858 |
#: contact_form.php:1155
|
859 |
msgid "Border color"
|
860 |
-
msgstr ""
|
861 |
|
862 |
#: contact_form.php:1139
|
863 |
-
#, fuzzy
|
864 |
msgid "Submit button"
|
865 |
-
msgstr "
|
866 |
|
867 |
#: contact_form.php:1141
|
868 |
msgid "Width in px, numbers only"
|
869 |
-
msgstr ""
|
870 |
|
871 |
#: contact_form.php:1145
|
872 |
msgid "Button color"
|
873 |
-
msgstr ""
|
874 |
|
875 |
#: contact_form.php:1150
|
876 |
msgid "Button text color"
|
877 |
-
msgstr ""
|
878 |
|
879 |
#: contact_form.php:1166
|
880 |
-
#, fuzzy
|
881 |
msgid "Contact Form Pro | Preview"
|
882 |
-
msgstr "Contact Form"
|
883 |
|
884 |
#: contact_form.php:1169
|
885 |
msgid "Show with errors"
|
886 |
-
msgstr ""
|
887 |
|
888 |
#: contact_form.php:1177
|
889 |
#: contact_form.php:1179
|
890 |
msgid "Please enter your full name..."
|
891 |
-
msgstr ""
|
892 |
|
893 |
#: contact_form.php:1190
|
894 |
#: contact_form.php:1192
|
895 |
msgid "Please enter your address..."
|
896 |
-
msgstr ""
|
897 |
|
898 |
#: contact_form.php:1201
|
899 |
#: contact_form.php:1203
|
900 |
-
#, fuzzy
|
901 |
msgid "Please enter your email address..."
|
902 |
-
msgstr "
|
903 |
|
904 |
#: contact_form.php:1212
|
905 |
#: contact_form.php:1214
|
906 |
msgid "Please enter your phone number..."
|
907 |
-
msgstr ""
|
908 |
|
909 |
#: contact_form.php:1223
|
910 |
#: contact_form.php:1225
|
911 |
msgid "Please enter subject..."
|
912 |
-
msgstr ""
|
913 |
|
914 |
#: contact_form.php:1233
|
915 |
#: contact_form.php:1235
|
916 |
msgid "Please enter your message..."
|
917 |
-
msgstr ""
|
918 |
|
919 |
#: contact_form.php:1246
|
920 |
msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
|
921 |
-
msgstr ""
|
922 |
|
923 |
#: contact_form.php:1399
|
924 |
msgid "You can attach the following file formats"
|
@@ -930,7 +888,7 @@ msgstr "コンタクトフォーム"
|
|
930 |
|
931 |
#: contact_form.php:1696
|
932 |
msgid "Email"
|
933 |
-
msgstr "E
|
934 |
|
935 |
#: contact_form.php:1710
|
936 |
msgid "Site"
|
@@ -948,9 +906,9 @@ msgstr "FAQ"
|
|
948 |
msgid "Support"
|
949 |
msgstr "サポート"
|
950 |
|
951 |
-
#: contact_form.php:
|
952 |
msgid "Are you sure that you want to delete this language data?"
|
953 |
-
msgstr ""
|
954 |
|
955 |
#~ msgid "Contact Form Options"
|
956 |
#~ msgstr "コンタクトフォーム オプション"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-08-13 12:33+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-08-13 12:33+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
+
"Language-Team: foken <foken@gmx.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Generator: Poedit 1.5.7\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: contact_form.php:106
|
20 |
msgid "Not set"
|
21 |
+
msgstr "未設定"
|
22 |
|
23 |
#: contact_form.php:108
|
24 |
#: contact_form.php:112
|
25 |
msgid "On"
|
26 |
+
msgstr "On"
|
27 |
|
28 |
#: contact_form.php:110
|
29 |
#: contact_form.php:114
|
30 |
msgid "Off"
|
31 |
+
msgstr "Off"
|
32 |
|
33 |
#: contact_form.php:118
|
34 |
#: contact_form.php:122
|
37 |
#: contact_form.php:134
|
38 |
#: contact_form.php:160
|
39 |
msgid "N/A"
|
40 |
+
msgstr "該当なし"
|
41 |
|
42 |
#: contact_form.php:132
|
43 |
msgid " Mb"
|
44 |
+
msgstr " Mb"
|
45 |
|
46 |
#: contact_form.php:136
|
47 |
#: contact_form.php:140
|
48 |
#: contact_form.php:144
|
49 |
#: contact_form.php:155
|
50 |
msgid "Yes"
|
51 |
+
msgstr "はい"
|
52 |
|
53 |
#: contact_form.php:138
|
54 |
#: contact_form.php:142
|
55 |
#: contact_form.php:146
|
56 |
#: contact_form.php:157
|
57 |
msgid "No"
|
58 |
+
msgstr "いいえ"
|
59 |
|
60 |
#: contact_form.php:171
|
61 |
msgid "Operating System"
|
62 |
+
msgstr "オペレーション・システム"
|
63 |
|
64 |
#: contact_form.php:172
|
65 |
msgid "Server"
|
66 |
+
msgstr "サーバ"
|
67 |
|
68 |
#: contact_form.php:173
|
|
|
69 |
msgid "Memory usage"
|
70 |
+
msgstr "メモリー使用"
|
71 |
|
72 |
#: contact_form.php:174
|
73 |
msgid "MYSQL Version"
|
74 |
+
msgstr "MYSQL バージョン"
|
75 |
|
76 |
#: contact_form.php:175
|
77 |
msgid "SQL Mode"
|
78 |
+
msgstr "SQLモード"
|
79 |
|
80 |
#: contact_form.php:176
|
81 |
msgid "PHP Version"
|
82 |
+
msgstr "PHP バージョン"
|
83 |
|
84 |
#: contact_form.php:177
|
85 |
msgid "PHP Safe Mode"
|
86 |
+
msgstr "PHP Safe Mode"
|
87 |
|
88 |
#: contact_form.php:178
|
89 |
msgid "PHP Allow URL fopen"
|
90 |
+
msgstr "PHP Allow URL fopen"
|
91 |
|
92 |
#: contact_form.php:179
|
93 |
msgid "PHP Memory Limit"
|
94 |
+
msgstr "PHP Memory Limit"
|
95 |
|
96 |
#: contact_form.php:180
|
97 |
msgid "PHP Max Upload Size"
|
98 |
+
msgstr "PHP Max Upload Size"
|
99 |
|
100 |
#: contact_form.php:181
|
101 |
msgid "PHP Max Post Size"
|
102 |
+
msgstr "PHP Max Post Size"
|
103 |
|
104 |
#: contact_form.php:182
|
105 |
msgid "PHP Max Script Execute Time"
|
106 |
+
msgstr "PHP Max Script Execute Time"
|
107 |
|
108 |
#: contact_form.php:183
|
109 |
msgid "PHP Exif support"
|
110 |
+
msgstr "PHP Exif サポート"
|
111 |
|
112 |
#: contact_form.php:184
|
113 |
msgid "PHP IPTC support"
|
114 |
+
msgstr "PHP IPTC サポート"
|
115 |
|
116 |
#: contact_form.php:185
|
117 |
msgid "PHP XML support"
|
118 |
+
msgstr "PHP XML サポート"
|
119 |
|
120 |
#: contact_form.php:186
|
|
|
121 |
msgid "Site URL"
|
122 |
+
msgstr "サイトURL"
|
123 |
|
124 |
#: contact_form.php:187
|
125 |
msgid "Home URL"
|
126 |
+
msgstr "ホームURL"
|
127 |
|
128 |
#: contact_form.php:188
|
129 |
msgid "WordPress Version"
|
130 |
+
msgstr "WordPress バージョン"
|
131 |
|
132 |
#: contact_form.php:189
|
133 |
msgid "WordPress DB Version"
|
134 |
+
msgstr "WordPress データベース バージョン"
|
135 |
|
136 |
#: contact_form.php:190
|
137 |
msgid "Multisite"
|
138 |
+
msgstr "複数サイト"
|
139 |
|
140 |
#: contact_form.php:191
|
141 |
msgid "Active Theme"
|
142 |
+
msgstr "有効なテーマ"
|
143 |
|
144 |
#: contact_form.php:206
|
|
|
145 |
msgid "Please enter a valid email address."
|
146 |
+
msgstr "正確なEメール・アドレスを入力して下さい。"
|
147 |
|
148 |
#: contact_form.php:210
|
149 |
msgid "Email with system info is sent to "
|
150 |
+
msgstr "システム情報をメールで送信:"
|
151 |
|
152 |
#: contact_form.php:214
|
153 |
#: contact_form.php:434
|
160 |
msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
|
161 |
|
162 |
#: contact_form.php:250
|
|
|
163 |
msgid "Pro plugins"
|
164 |
+
msgstr "Pro Plugins"
|
165 |
|
166 |
#: contact_form.php:253
|
167 |
#: contact_form.php:279
|
198 |
|
199 |
#: contact_form.php:271
|
200 |
msgid "Purchase"
|
201 |
+
msgstr "購入"
|
202 |
|
203 |
#: contact_form.php:276
|
|
|
204 |
msgid "Free plugins"
|
205 |
+
msgstr "無料プラグイン"
|
206 |
|
207 |
#: contact_form.php:297
|
208 |
msgid "Download"
|
218 |
msgstr "wordpress.org から直ぐに導入"
|
219 |
|
220 |
#: contact_form.php:302
|
|
|
221 |
msgid "If you have any questions, please contact us via"
|
222 |
+
msgstr "もそご質問がある場合は、以下の方法でご連絡下さい:"
|
223 |
|
224 |
#: contact_form.php:309
|
225 |
msgid "System status"
|
226 |
+
msgstr "システム状況"
|
227 |
|
228 |
#: contact_form.php:313
|
229 |
msgid "Environment"
|
230 |
+
msgstr "環境"
|
231 |
|
232 |
#: contact_form.php:324
|
|
|
233 |
msgid "Active Plugins"
|
234 |
msgstr "有効なプラグイン"
|
235 |
|
236 |
#: contact_form.php:335
|
|
|
237 |
msgid "Inactive Plugins"
|
238 |
+
msgstr "無効なプラグイン"
|
239 |
|
240 |
#: contact_form.php:349
|
|
|
241 |
msgid "Send to support"
|
242 |
+
msgstr "サポートに送信"
|
243 |
|
244 |
#: contact_form.php:356
|
245 |
msgid "Send to custom email »"
|
246 |
+
msgstr "カスタムEメールに送信»"
|
247 |
|
248 |
#: contact_form.php:372
|
249 |
#: contact_form.php:750
|
|
|
250 |
msgid "Contact Form Settings"
|
251 |
+
msgstr "コンタクトフォーム設定"
|
252 |
|
253 |
#: contact_form.php:372
|
254 |
msgid "Contact Form"
|
255 |
+
msgstr "コンタクトフォーム"
|
256 |
|
257 |
#: contact_form.php:373
|
|
|
258 |
msgid "Contact Form Pro Extra Settings"
|
259 |
+
msgstr "Contact Form Pro 用設定"
|
260 |
|
261 |
#: contact_form.php:373
|
262 |
#: contact_form.php:1010
|
|
|
263 |
msgid "Contact Form Pro"
|
264 |
+
msgstr "Contact Form Pro"
|
265 |
|
266 |
#: contact_form.php:412
|
267 |
#: contact_form.php:899
|
272 |
#: contact_form.php:413
|
273 |
#: contact_form.php:900
|
274 |
#: contact_form.php:929
|
|
|
275 |
msgid "Address:"
|
276 |
+
msgstr "住所:"
|
277 |
|
278 |
#: contact_form.php:414
|
279 |
#: contact_form.php:901
|
280 |
#: contact_form.php:930
|
281 |
msgid "Email Address:"
|
282 |
+
msgstr "Eメール:"
|
283 |
|
284 |
#: contact_form.php:415
|
285 |
#: contact_form.php:902
|
286 |
#: contact_form.php:931
|
287 |
msgid "Phone number:"
|
288 |
+
msgstr "電話番号:"
|
289 |
|
290 |
#: contact_form.php:416
|
291 |
#: contact_form.php:903
|
323 |
msgstr "名前は必須です。"
|
324 |
|
325 |
#: contact_form.php:422
|
|
|
326 |
msgid "Address is required."
|
327 |
+
msgstr "住所が必要です。"
|
328 |
|
329 |
#: contact_form.php:423
|
|
|
330 |
msgid "A valid email address is required."
|
331 |
+
msgstr "有効なEメールアドレスlが必須です。"
|
332 |
|
333 |
#: contact_form.php:424
|
334 |
#: contact_form.php:469
|
335 |
#: contact_form.php:472
|
|
|
336 |
msgid "Phone number is required."
|
337 |
+
msgstr "電話番号は必須です。"
|
338 |
|
339 |
#: contact_form.php:425
|
340 |
#: contact_form.php:468
|
354 |
|
355 |
#: contact_form.php:428
|
356 |
msgid "File upload error."
|
357 |
+
msgstr "ファイル・アップロード・エラー。"
|
358 |
|
359 |
#: contact_form.php:429
|
360 |
msgid "The file could not be uploaded."
|
361 |
+
msgstr "ファイルは、アップロード出来ませんでした。"
|
362 |
|
363 |
#: contact_form.php:430
|
364 |
msgid "This file is too large."
|
365 |
+
msgstr "このファイルは大きすぎます。"
|
366 |
|
367 |
#: contact_form.php:431
|
368 |
msgid "Please fill out the CAPTCHA."
|
374 |
|
375 |
#: contact_form.php:705
|
376 |
msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
|
377 |
+
msgstr "’ページに転送’オプションを選択した場合は、URLフィールドが、以下の形式になります"
|
378 |
|
379 |
#: contact_form.php:714
|
380 |
msgid "Such user does not exist. Settings are not saved."
|
382 |
|
383 |
#: contact_form.php:719
|
384 |
#: contact_form.php:725
|
|
|
385 |
msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
|
386 |
+
msgstr "'送信者'フィールドに正確なEメール・アドレスを入力して下さい。設定は保存されません。"
|
387 |
|
388 |
#: contact_form.php:730
|
|
|
389 |
msgid "Settings saved."
|
390 |
+
msgstr "設定保存."
|
391 |
|
392 |
#: contact_form.php:755
|
393 |
#: contact_form.php:1005
|
|
|
394 |
msgid "Extra settings"
|
395 |
+
msgstr "追加設定"
|
396 |
|
397 |
#: contact_form.php:760
|
398 |
#: contact_form.php:1261
|
|
|
399 |
msgid "If you would like to add the Contact Form to your website, just copy and paste this shortcode to your post or page or widget:"
|
400 |
+
msgstr "コンタクトフォームをあなたのサイトに追加したい場合は、このショートカットを投稿、ページ又はウェジットにコピーして貼り付けるだけです:"
|
401 |
|
402 |
#: contact_form.php:760
|
403 |
#: contact_form.php:761
|
404 |
#: contact_form.php:921
|
405 |
#: contact_form.php:969
|
406 |
msgid "or"
|
407 |
+
msgstr "又は"
|
408 |
|
409 |
#: contact_form.php:761
|
410 |
msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
|
411 |
+
msgstr "標準的な短いコード [contact_form]に問題がある場合は、この短いコードをご利用下さい"
|
412 |
|
413 |
#: contact_form.php:762
|
414 |
msgid "They work the same way."
|
415 |
+
msgstr "同様に動作します。"
|
416 |
|
417 |
#: contact_form.php:763
|
418 |
msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
|
427 |
msgstr "ユーザ名の選択"
|
428 |
|
429 |
#: contact_form.php:776
|
|
|
430 |
msgid "Enter a username of the person who should get the messages from the contact form."
|
431 |
+
msgstr "コンタクトフォームからメッセージを受け取る方のユーザ名を入力。"
|
432 |
|
433 |
#: contact_form.php:780
|
434 |
msgid "Use this email address:"
|
444 |
|
445 |
#: contact_form.php:790
|
446 |
msgid "What to use?"
|
447 |
+
msgstr "何用途?"
|
448 |
|
449 |
#: contact_form.php:793
|
|
|
450 |
msgid "Wp-mail"
|
451 |
+
msgstr "WPメール"
|
452 |
|
453 |
#: contact_form.php:794
|
454 |
msgid "You can use the wp_mail function for mailing"
|
455 |
+
msgstr "メールにwp_mali機能が利用できます"
|
456 |
|
457 |
#: contact_form.php:800
|
458 |
msgid "Mail"
|
459 |
+
msgstr "メール"
|
460 |
|
461 |
#: contact_form.php:801
|
462 |
msgid "To send mail you can use the php mail function"
|
463 |
+
msgstr "メールを送信するには、phpメール機能が利用できます"
|
464 |
|
465 |
#: contact_form.php:805
|
|
|
466 |
msgid "Change text of the 'FROM' field"
|
467 |
+
msgstr "'送信者' フィールドのテキストを変更"
|
468 |
|
469 |
#: contact_form.php:811
|
470 |
msgid "Enter the email address in the 'From' field"
|
471 |
+
msgstr "'送信者' フィールドにメールアドレスを入力して下さい"
|
472 |
|
473 |
#: contact_form.php:813
|
474 |
msgid "User email"
|
475 |
+
msgstr "ユーザ・Eメール"
|
476 |
|
477 |
#: contact_form.php:813
|
478 |
msgid "The email address of the user who fills the form will be used in the field 'From'."
|
479 |
+
msgstr "フォームを入力したユーザのEメール・アドレスは、'送信者'フィールドに使用されます。"
|
480 |
|
481 |
#: contact_form.php:815
|
482 |
msgid "This email address will be used in the 'From' field."
|
483 |
+
msgstr "このEメール・アドレスは、'送信者'フィールドに使用されます。"
|
484 |
|
485 |
#: contact_form.php:819
|
|
|
486 |
msgid "Display fields"
|
487 |
+
msgstr "フィールドを表示"
|
488 |
|
489 |
#: contact_form.php:821
|
490 |
#: contact_form.php:851
|
491 |
#: contact_form.php:1041
|
492 |
#: contact_form.php:1693
|
|
|
493 |
msgid "Address"
|
494 |
+
msgstr "住所"
|
495 |
|
496 |
#: contact_form.php:822
|
497 |
#: contact_form.php:853
|
498 |
#: contact_form.php:1701
|
499 |
msgid "Phone"
|
500 |
+
msgstr "電話"
|
501 |
|
502 |
#: contact_form.php:823
|
|
|
503 |
msgid "Attachment block"
|
504 |
+
msgstr "添付ブロック"
|
505 |
|
506 |
#: contact_form.php:823
|
507 |
msgid "Users can attach the following file formats"
|
508 |
msgstr "ユーザは、以下のタイプのファイルを添付できる"
|
509 |
|
510 |
#: contact_form.php:824
|
|
|
511 |
msgid "Tips below the Attachment block"
|
512 |
+
msgstr "添付ブロックの下のチップス"
|
513 |
|
514 |
#: contact_form.php:825
|
|
|
515 |
msgid "Send me a copy block"
|
516 |
+
msgstr "コピーブロックを自分に送る"
|
517 |
|
518 |
#: contact_form.php:837
|
519 |
#: contact_form.php:840
|
520 |
#: contact_form.php:843
|
521 |
#: contact_form.php:1070
|
522 |
msgid "Captcha"
|
523 |
+
msgstr "Captcha"
|
524 |
|
525 |
#: contact_form.php:837
|
526 |
#: contact_form.php:840
|
527 |
#: contact_form.php:843
|
528 |
#: contact_form.php:1070
|
529 |
msgid "(powered by bestwebsoft.com)"
|
530 |
+
msgstr "(powered by bestwebsoft.com)"
|
531 |
|
532 |
#: contact_form.php:840
|
|
|
533 |
msgid "Activate captcha"
|
534 |
+
msgstr "有効なcaptcha"
|
535 |
|
536 |
#: contact_form.php:843
|
|
|
537 |
msgid "Download captcha"
|
538 |
+
msgstr "captchaをダウンロード"
|
539 |
|
540 |
#: contact_form.php:848
|
541 |
msgid "Required fields"
|
542 |
+
msgstr "必須フィールド"
|
543 |
|
544 |
#: contact_form.php:850
|
545 |
#: contact_form.php:1036
|
548 |
msgstr "名前"
|
549 |
|
550 |
#: contact_form.php:852
|
|
|
551 |
msgid "Email Address"
|
552 |
+
msgstr "Eメール・アドレス"
|
553 |
|
554 |
#: contact_form.php:854
|
555 |
#: contact_form.php:1056
|
565 |
|
566 |
#: contact_form.php:859
|
567 |
msgid "Display additional info in the email"
|
568 |
+
msgstr "メール中に追加情報を表示"
|
569 |
|
570 |
#: contact_form.php:864
|
571 |
#: contact_form.php:1660
|
589 |
|
590 |
#: contact_form.php:871
|
591 |
msgid "Language settings for the field names in the form"
|
592 |
+
msgstr "フォームのフィールド名用の言語設定"
|
593 |
|
594 |
#: contact_form.php:880
|
595 |
msgid "Add a language"
|
596 |
+
msgstr "言語の追加"
|
597 |
|
598 |
#: contact_form.php:884
|
|
|
599 |
msgid "Change the names of the contact form fields and error messages"
|
600 |
+
msgstr "コンタクト・フォームのフィールドの名前及びエラーメッセージを変更"
|
601 |
|
602 |
#: contact_form.php:889
|
603 |
#: contact_form.php:960
|
604 |
msgid "English"
|
605 |
+
msgstr "英語"
|
606 |
|
607 |
#: contact_form.php:908
|
608 |
#: contact_form.php:937
|
609 |
msgid "Error message for the Name field"
|
610 |
+
msgstr "名前フィールド用のエラーメッセージ"
|
611 |
|
612 |
#: contact_form.php:909
|
613 |
#: contact_form.php:938
|
614 |
msgid "Error message for the Address field"
|
615 |
+
msgstr "住所フィールド用のエラーメッセージ"
|
616 |
|
617 |
#: contact_form.php:910
|
618 |
#: contact_form.php:939
|
619 |
msgid "Error message for the Email field"
|
620 |
+
msgstr "Eメール・フィールド用のエラーメッセージ"
|
621 |
|
622 |
#: contact_form.php:911
|
623 |
#: contact_form.php:940
|
624 |
msgid "Error message for the Phone field"
|
625 |
+
msgstr "電話フィールド用のエラーメッセージ"
|
626 |
|
627 |
#: contact_form.php:912
|
628 |
#: contact_form.php:941
|
629 |
msgid "Error message for the Subject field"
|
630 |
+
msgstr "件名フィールド用のエラーメッセージ"
|
631 |
|
632 |
#: contact_form.php:913
|
633 |
#: contact_form.php:942
|
634 |
msgid "Error message for the Message field"
|
635 |
+
msgstr "メッセージ・フィールド用のエラーメッセージ"
|
636 |
|
637 |
#: contact_form.php:914
|
638 |
#: contact_form.php:943
|
639 |
msgid "Error message about the file type for the Attachment field"
|
640 |
+
msgstr "添付フィールド用の拡張子タイプに関するエラーメッセージ"
|
641 |
|
642 |
#: contact_form.php:915
|
643 |
#: contact_form.php:944
|
644 |
msgid "Error message while uploading a file for the Attachment field to the server"
|
645 |
+
msgstr "添付フィールド用のファイルをサーバにアップロード中のエラーメッセージ"
|
646 |
|
647 |
#: contact_form.php:916
|
648 |
#: contact_form.php:945
|
649 |
msgid "Error message while moving the file for the Attachment field"
|
650 |
+
msgstr "添付フィールド用のファイルを移動中のエラーメッセージ"
|
651 |
|
652 |
#: contact_form.php:917
|
653 |
#: contact_form.php:946
|
654 |
msgid "Error message when file size limit for the Attachment field is exceeded"
|
655 |
+
msgstr "添付フィールド用のファイルサイズ制限を超した場合のエラーメッセージ"
|
656 |
|
657 |
#: contact_form.php:918
|
658 |
#: contact_form.php:947
|
659 |
msgid "Error message for the Captcha field"
|
660 |
+
msgstr "Captcha フィールド用のエラーメッセージ"
|
661 |
|
662 |
#: contact_form.php:919
|
663 |
#: contact_form.php:948
|
664 |
msgid "Error message for the whole form"
|
665 |
+
msgstr "全体フォーム用のエラーメッセージ"
|
666 |
|
667 |
#: contact_form.php:921
|
668 |
#: contact_form.php:950
|
669 |
#: contact_form.php:969
|
670 |
#: contact_form.php:975
|
671 |
msgid "Use shortcode"
|
672 |
+
msgstr "短いコードの利用"
|
673 |
|
674 |
#: contact_form.php:921
|
675 |
#: contact_form.php:950
|
676 |
#: contact_form.php:969
|
677 |
#: contact_form.php:975
|
678 |
msgid "for this language"
|
679 |
+
msgstr "この言語用"
|
680 |
|
681 |
#: contact_form.php:957
|
682 |
msgid "Action after email is sent"
|
683 |
+
msgstr "メール送信後の行動"
|
684 |
|
685 |
#: contact_form.php:959
|
|
|
686 |
msgid "Display text"
|
687 |
+
msgstr "テキストを表示"
|
688 |
|
689 |
#: contact_form.php:968
|
690 |
#: contact_form.php:974
|
691 |
msgid "Text"
|
692 |
+
msgstr "文字"
|
693 |
|
694 |
#: contact_form.php:981
|
695 |
msgid "Redirect to the page"
|
696 |
+
msgstr "ページに転送"
|
697 |
|
698 |
#: contact_form.php:982
|
699 |
msgid "Url"
|
700 |
+
msgstr "Url"
|
701 |
|
702 |
#: contact_form.php:987
|
703 |
#: contact_form.php:1162
|
705 |
msgstr "変更を保存"
|
706 |
|
707 |
#: contact_form.php:1002
|
|
|
708 |
msgid "Contact Form Pro | Extra Settings"
|
709 |
+
msgstr "Contact Form Pro | 追加設定"
|
710 |
|
711 |
#: contact_form.php:1009
|
712 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
713 |
+
msgstr "この機能は、プラグインのProバージョンで利用できます。詳細は、リンクを参照して下さい。"
|
714 |
|
715 |
#: contact_form.php:1016
|
716 |
msgid "Errors output"
|
717 |
+
msgstr "エラー出力"
|
718 |
|
719 |
#: contact_form.php:1019
|
720 |
msgid "Display error messages"
|
721 |
+
msgstr "エラーメッセージの表示"
|
722 |
|
723 |
#: contact_form.php:1020
|
724 |
msgid "Color of the input field errors."
|
725 |
+
msgstr "入力フィールド・エラーの色"
|
726 |
|
727 |
#: contact_form.php:1021
|
728 |
msgid "Display error messages & color of the input field errors"
|
729 |
+
msgstr "エラーメッセージと入力フィールド・エラーの色を表示"
|
730 |
|
731 |
#: contact_form.php:1026
|
732 |
msgid "Add placeholder to the input blocks"
|
733 |
+
msgstr "プレースホルダーを入力ブロックに追加"
|
734 |
|
735 |
#: contact_form.php:1032
|
|
|
736 |
msgid "Add tooltips"
|
737 |
+
msgstr "ツールチップの追加"
|
738 |
|
739 |
#: contact_form.php:1046
|
|
|
740 |
msgid "Email address"
|
741 |
+
msgstr "Eメール・アドレス"
|
742 |
|
743 |
#: contact_form.php:1051
|
744 |
msgid "Phone Number"
|
745 |
+
msgstr "電話番号"
|
746 |
|
747 |
#: contact_form.php:1065
|
|
|
748 |
msgid "Attachment"
|
749 |
+
msgstr "添付"
|
750 |
|
751 |
#: contact_form.php:1075
|
|
|
752 |
msgid "Style options"
|
753 |
+
msgstr "スタイル・オプション"
|
754 |
|
755 |
#: contact_form.php:1078
|
756 |
msgid "Text color"
|
757 |
+
msgstr "文字色"
|
758 |
|
759 |
#: contact_form.php:1081
|
760 |
#: contact_form.php:1086
|
769 |
#: contact_form.php:1148
|
770 |
#: contact_form.php:1153
|
771 |
msgid "Default"
|
772 |
+
msgstr "標準"
|
773 |
|
774 |
#: contact_form.php:1083
|
775 |
msgid "Label text color"
|
776 |
+
msgstr "ラベル文字色"
|
777 |
|
778 |
#: contact_form.php:1088
|
779 |
msgid "Placeholder color"
|
780 |
+
msgstr "プレースホルダ色"
|
781 |
|
782 |
#: contact_form.php:1093
|
783 |
msgid "Errors color"
|
784 |
+
msgstr "エラーの色"
|
785 |
|
786 |
#: contact_form.php:1098
|
787 |
msgid "Error text color"
|
788 |
+
msgstr "エラーテキストの色"
|
789 |
|
790 |
#: contact_form.php:1103
|
791 |
msgid "Background color of the input field errors"
|
792 |
+
msgstr "入力フィールド・エラーの背景色"
|
793 |
|
794 |
#: contact_form.php:1108
|
795 |
msgid "Border color of the input field errors"
|
796 |
+
msgstr "入力フィールド・エラーの罫線色"
|
797 |
|
798 |
#: contact_form.php:1113
|
799 |
msgid "Placeholder color of the input field errors"
|
800 |
+
msgstr "入力フィールド・エラー用のプレースホルダ色"
|
801 |
|
802 |
#: contact_form.php:1118
|
|
|
803 |
msgid "Input fields"
|
804 |
+
msgstr "フィールドを入力"
|
805 |
|
806 |
#: contact_form.php:1123
|
807 |
msgid "Input fields background color"
|
808 |
+
msgstr "フィールドの背景色の入力"
|
809 |
|
810 |
#: contact_form.php:1128
|
811 |
msgid "Text fields color"
|
812 |
+
msgstr "文字フィールド色"
|
813 |
|
814 |
#: contact_form.php:1130
|
815 |
msgid "Border width in px, numbers only"
|
816 |
+
msgstr "罫線幅(px単位)、数値のみ"
|
817 |
|
818 |
#: contact_form.php:1134
|
819 |
#: contact_form.php:1155
|
820 |
msgid "Border color"
|
821 |
+
msgstr "罫線色"
|
822 |
|
823 |
#: contact_form.php:1139
|
|
|
824 |
msgid "Submit button"
|
825 |
+
msgstr "送信ボタン"
|
826 |
|
827 |
#: contact_form.php:1141
|
828 |
msgid "Width in px, numbers only"
|
829 |
+
msgstr "px単位の幅、数字のみ"
|
830 |
|
831 |
#: contact_form.php:1145
|
832 |
msgid "Button color"
|
833 |
+
msgstr "ボタンの色"
|
834 |
|
835 |
#: contact_form.php:1150
|
836 |
msgid "Button text color"
|
837 |
+
msgstr "ボタン文字の色"
|
838 |
|
839 |
#: contact_form.php:1166
|
|
|
840 |
msgid "Contact Form Pro | Preview"
|
841 |
+
msgstr "Contact Form Pro | プレビュー"
|
842 |
|
843 |
#: contact_form.php:1169
|
844 |
msgid "Show with errors"
|
845 |
+
msgstr "エラーで表示"
|
846 |
|
847 |
#: contact_form.php:1177
|
848 |
#: contact_form.php:1179
|
849 |
msgid "Please enter your full name..."
|
850 |
+
msgstr "貴方の氏名を入力して下さい..."
|
851 |
|
852 |
#: contact_form.php:1190
|
853 |
#: contact_form.php:1192
|
854 |
msgid "Please enter your address..."
|
855 |
+
msgstr "貴方の住所を入力して下さい..."
|
856 |
|
857 |
#: contact_form.php:1201
|
858 |
#: contact_form.php:1203
|
|
|
859 |
msgid "Please enter your email address..."
|
860 |
+
msgstr "貴方のEメール・アドレスを入力して下さい..."
|
861 |
|
862 |
#: contact_form.php:1212
|
863 |
#: contact_form.php:1214
|
864 |
msgid "Please enter your phone number..."
|
865 |
+
msgstr "貴方の電話番号を入力して下さい..."
|
866 |
|
867 |
#: contact_form.php:1223
|
868 |
#: contact_form.php:1225
|
869 |
msgid "Please enter subject..."
|
870 |
+
msgstr "件名を入力して下さい..."
|
871 |
|
872 |
#: contact_form.php:1233
|
873 |
#: contact_form.php:1235
|
874 |
msgid "Please enter your message..."
|
875 |
+
msgstr "メッセージを入力して下さい..."
|
876 |
|
877 |
#: contact_form.php:1246
|
878 |
msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
|
879 |
+
msgstr "サポートしてるファイル形式: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. 最大ファイルサイズ: 2MB"
|
880 |
|
881 |
#: contact_form.php:1399
|
882 |
msgid "You can attach the following file formats"
|
888 |
|
889 |
#: contact_form.php:1696
|
890 |
msgid "Email"
|
891 |
+
msgstr "Eメール"
|
892 |
|
893 |
#: contact_form.php:1710
|
894 |
msgid "Site"
|
906 |
msgid "Support"
|
907 |
msgstr "サポート"
|
908 |
|
909 |
+
#: contact_form.php:1865
|
910 |
msgid "Are you sure that you want to delete this language data?"
|
911 |
+
msgstr "本当に、この言語データを削除しますか?"
|
912 |
|
913 |
#~ msgid "Contact Form Options"
|
914 |
#~ msgstr "コンタクトフォーム オプション"
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10
|
|
4 |
Tags: Contact Form, text, contact, form, contacts, contact form, request, contact me, feedback form, feedback, contact button, contact form plugin, contacts form plugin, attachment, send, copy, attachment, send copy
|
5 |
Requires at least: 2.9
|
6 |
Tested up to: 3.6
|
7 |
-
Stable tag: 3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -124,6 +124,10 @@ Here is an example for the German language files.
|
|
124 |
|
125 |
== Changelog ==
|
126 |
|
|
|
|
|
|
|
|
|
127 |
= V3.51 - 05.08.2013 =
|
128 |
* Update : The Brazilian Portuguese language file is updated.
|
129 |
* Update : We updated all functionality for wordpress 3.6.
|
@@ -358,6 +362,9 @@ Here is an example for the German language files.
|
|
358 |
|
359 |
== Upgrade Notice ==
|
360 |
|
|
|
|
|
|
|
361 |
= V3.51 =
|
362 |
The Brazilian Portuguese language file is updated. We updated all functionality for wordpress 3.6. We fixed the email validation bug. We removed displaying of additional info in the copy of email to the sender.
|
363 |
|
4 |
Tags: Contact Form, text, contact, form, contacts, contact form, request, contact me, feedback form, feedback, contact button, contact form plugin, contacts form plugin, attachment, send, copy, attachment, send copy
|
5 |
Requires at least: 2.9
|
6 |
Tested up to: 3.6
|
7 |
+
Stable tag: 3.52
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
124 |
|
125 |
== Changelog ==
|
126 |
|
127 |
+
= V3.52 - 13.08.2013 =
|
128 |
+
* Update : The Japanese language file is updated.
|
129 |
+
* Bugfix : We fixed the bug related to XSS attack.
|
130 |
+
|
131 |
= V3.51 - 05.08.2013 =
|
132 |
* Update : The Brazilian Portuguese language file is updated.
|
133 |
* Update : We updated all functionality for wordpress 3.6.
|
362 |
|
363 |
== Upgrade Notice ==
|
364 |
|
365 |
+
= V3.52 =
|
366 |
+
The Japanese language file is updated. We fixed the bug related to XSS attack.
|
367 |
+
|
368 |
= V3.51 =
|
369 |
The Brazilian Portuguese language file is updated. We updated all functionality for wordpress 3.6. We fixed the email validation bug. We removed displaying of additional info in the copy of email to the sender.
|
370 |
|