Version Description
- The contextual help tab has been added to admin pages.
- Changed the admin menu icon to "email" dashicon.
- Translations for Croatian, Turkish, and Catalan have been updated.
Download this release
Release Info
Developer | takayukister |
Plugin | ![]() |
Version | 4.0.3 |
Comparing to | |
See all releases |
Code changes from version 4.0.2 to 4.0.3
- admin/admin.php +13 -3
- admin/includes/help-tabs.php +98 -0
- languages/contact-form-7-ca.mo +0 -0
- languages/contact-form-7-hr.mo +0 -0
- languages/contact-form-7-ja.mo +0 -0
- languages/contact-form-7-tr_TR.mo +0 -0
- languages/contact-form-7.pot +206 -53
- readme.txt +9 -3
- wp-contact-form-7.php +2 -2
admin/admin.php
CHANGED
@@ -8,7 +8,7 @@ function wpcf7_admin_menu() {
|
|
8 |
add_object_page( __( 'Contact Form 7', 'contact-form-7' ),
|
9 |
__( 'Contact', 'contact-form-7' ),
|
10 |
'wpcf7_read_contact_forms', 'wpcf7',
|
11 |
-
'wpcf7_admin_management_page' );
|
12 |
|
13 |
$edit = add_submenu_page( 'wpcf7',
|
14 |
__( 'Edit Contact Form', 'contact-form-7' ),
|
@@ -139,14 +139,24 @@ function wpcf7_load_contact_form_admin() {
|
|
139 |
$post = WPCF7_ContactForm::get_instance( $_GET['post'] );
|
140 |
}
|
141 |
|
|
|
|
|
|
|
|
|
|
|
142 |
if ( $post && current_user_can( 'wpcf7_edit_contact_form', $post->id() ) ) {
|
|
|
143 |
wpcf7_add_meta_boxes( $post->id() );
|
144 |
|
|
|
|
|
|
|
145 |
} else {
|
146 |
-
$
|
147 |
|
148 |
-
if ( ! class_exists( 'WPCF7_Contact_Form_List_Table' ) )
|
149 |
require_once WPCF7_PLUGIN_DIR . '/admin/includes/class-contact-forms-list-table.php';
|
|
|
150 |
|
151 |
add_filter( 'manage_' . $current_screen->id . '_columns',
|
152 |
array( 'WPCF7_Contact_Form_List_Table', 'define_columns' ) );
|
8 |
add_object_page( __( 'Contact Form 7', 'contact-form-7' ),
|
9 |
__( 'Contact', 'contact-form-7' ),
|
10 |
'wpcf7_read_contact_forms', 'wpcf7',
|
11 |
+
'wpcf7_admin_management_page', 'dashicons-email' );
|
12 |
|
13 |
$edit = add_submenu_page( 'wpcf7',
|
14 |
__( 'Edit Contact Form', 'contact-form-7' ),
|
139 |
$post = WPCF7_ContactForm::get_instance( $_GET['post'] );
|
140 |
}
|
141 |
|
142 |
+
$current_screen = get_current_screen();
|
143 |
+
|
144 |
+
require_once WPCF7_PLUGIN_DIR . '/admin/includes/help-tabs.php';
|
145 |
+
$help_tabs = new WPCF7_Help_Tabs( $current_screen );
|
146 |
+
|
147 |
if ( $post && current_user_can( 'wpcf7_edit_contact_form', $post->id() ) ) {
|
148 |
+
$help_tabs->set_help_tabs( 'edit' );
|
149 |
wpcf7_add_meta_boxes( $post->id() );
|
150 |
|
151 |
+
} else if ( 'wpcf7-new' == $plugin_page ) {
|
152 |
+
$help_tabs->set_help_tabs( 'add_new' );
|
153 |
+
|
154 |
} else {
|
155 |
+
$help_tabs->set_help_tabs( 'list' );
|
156 |
|
157 |
+
if ( ! class_exists( 'WPCF7_Contact_Form_List_Table' ) ) {
|
158 |
require_once WPCF7_PLUGIN_DIR . '/admin/includes/class-contact-forms-list-table.php';
|
159 |
+
}
|
160 |
|
161 |
add_filter( 'manage_' . $current_screen->id . '_columns',
|
162 |
array( 'WPCF7_Contact_Form_List_Table', 'define_columns' ) );
|
admin/includes/help-tabs.php
ADDED
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class WPCF7_Help_Tabs {
|
4 |
+
|
5 |
+
private $screen;
|
6 |
+
|
7 |
+
public function __construct( WP_Screen $screen ) {
|
8 |
+
$this->screen = $screen;
|
9 |
+
}
|
10 |
+
|
11 |
+
public function set_help_tabs( $type ) {
|
12 |
+
switch ( $type ) {
|
13 |
+
case 'list':
|
14 |
+
$this->screen->add_help_tab( array(
|
15 |
+
'id' => 'list_overview',
|
16 |
+
'title' => __( 'Sample', 'contact-form-7' ),
|
17 |
+
'content' => $this->content( 'list_overview' ) ) );
|
18 |
+
|
19 |
+
$this->screen->add_help_tab( array(
|
20 |
+
'id' => 'list_available_actions',
|
21 |
+
'title' => __( 'Available Actions', 'contact-form-7' ),
|
22 |
+
'content' => $this->content( 'list_available_actions' ) ) );
|
23 |
+
|
24 |
+
$this->sidebar();
|
25 |
+
|
26 |
+
return;
|
27 |
+
case 'add_new':
|
28 |
+
$this->screen->add_help_tab( array(
|
29 |
+
'id' => 'add_new',
|
30 |
+
'title' => __( 'Adding A New Contact Form', 'contact-form-7' ),
|
31 |
+
'content' => $this->content( 'add_new' ) ) );
|
32 |
+
|
33 |
+
$this->sidebar();
|
34 |
+
|
35 |
+
return;
|
36 |
+
case 'edit':
|
37 |
+
$this->screen->add_help_tab( array(
|
38 |
+
'id' => 'edit_overview',
|
39 |
+
'title' => __( 'Overview', 'contact-form-7' ),
|
40 |
+
'content' => $this->content( 'edit_overview' ) ) );
|
41 |
+
|
42 |
+
$this->screen->add_help_tab( array(
|
43 |
+
'id' => 'edit_form_tags',
|
44 |
+
'title' => __( 'Form-tags', 'contact-form-7' ),
|
45 |
+
'content' => $this->content( 'edit_form_tags' ) ) );
|
46 |
+
|
47 |
+
$this->screen->add_help_tab( array(
|
48 |
+
'id' => 'edit_mail_tags',
|
49 |
+
'title' => __( 'Mail-tags', 'contact-form-7' ),
|
50 |
+
'content' => $this->content( 'edit_mail_tags' ) ) );
|
51 |
+
|
52 |
+
$this->sidebar();
|
53 |
+
|
54 |
+
return;
|
55 |
+
}
|
56 |
+
}
|
57 |
+
|
58 |
+
private function content( $name ) {
|
59 |
+
$content = array();
|
60 |
+
|
61 |
+
$content['list_overview'] = '<p>' . __( "On this screen, you can manage contact forms provided by Contact Form 7. You can manage an unlimited number of contact forms. Each contact form has a unique ID and Contact Form 7 shortcode ([contact-form-7 ...]). To insert a contact form into a post or a text widget, insert the shortcode into the target.", 'contact-form-7' ) . '</p>';
|
62 |
+
|
63 |
+
$content['list_available_actions'] = '<p>' . __( "Hovering over a row in the contact forms list will display action links that allow you to manage your contact form. You can perform the following actions:", 'contact-form-7' ) . '</p>';
|
64 |
+
$content['list_available_actions'] .= '<p>' . __( "<strong>Edit</strong> - Navigates to the editing screen for that contact form. You can also reach that screen by clicking on the contact form title.", 'contact-form-7' ) . '</p>';
|
65 |
+
$content['list_available_actions'] .= '<p>' . __( "<strong>Duplicate</strong> - Clones that contact form. A cloned contact form inherits all content from the original, but has a different ID.", 'contact-form-7' ) . '</p>';
|
66 |
+
|
67 |
+
$content['add_new'] = '<p>' . __( "You can add a new contact form on this screen. You can create a contact form in your language, which is set WordPress local settings, or in a language that you select from available options.", 'contact-form-7' ) . '</p>';
|
68 |
+
|
69 |
+
$content['edit_overview'] = '<p>' . __( "On this screen, you can edit a contact form. A contact form is comprised of the following components:", 'contact-form-7' ) . '</p>';
|
70 |
+
$content['edit_overview'] .= '<p>' . __( "<strong>Title</strong> is the title of a contact form. This title is only used for labeling a contact form, and can be edited.", 'contact-form-7' ) . '</p>';
|
71 |
+
$content['edit_overview'] .= '<p>' . __( "<strong>Form</strong> is a content of HTML form. You can use arbitrary HTML, which is allowed inside a form element. You can also use Contact Form 7’s form-tags here.", 'contact-form-7' ) . '</p>';
|
72 |
+
$content['edit_overview'] .= '<p>' . __( "<strong>Mail</strong> manages a mail template (headers and message body) that this contact form will send when users submit it. You can use Contact Form 7’s mail-tags here.", 'contact-form-7' ) . '</p>';
|
73 |
+
$content['edit_overview'] .= '<p>' . __( "<strong>Mail (2)</strong> is an additional mail template that works similar to Mail. Mail (2) is different in that it is sent only when Mail has been sent successfully.", 'contact-form-7' ) . '</p>';
|
74 |
+
$content['edit_overview'] .= '<p>' . __( "In <strong>Messages</strong>, you can edit various types of messages used for this contact form. These messages are relatively short messages, like a validation error message you see when you leave a required field blank.", 'contact-form-7' ) . '</p>';
|
75 |
+
$content['edit_overview'] .= '<p>' . __( "<strong>Additional Settings</strong> provides a place where you can customize the behavior of this contact form by adding code snippets.", 'contact-form-7' ) . '</p>';
|
76 |
+
|
77 |
+
$content['edit_form_tags'] = '<p>' . __( "A form-tag is a short code enclosed in square brackets used in a form content. A form-tag generally represents an input field, and its components can be separated into four parts: type, name, options, and values. Contact Form 7 supports several types of form-tags including text fields, number fields, date fields, checkboxes, radio buttons, menus, file-uploading fields, CAPTCHAs, and quiz fields.", 'contact-form-7' ) . '</p>';
|
78 |
+
$content['edit_form_tags'] .= '<p>' . __( "While form-tags have a comparatively complex syntax, you don’t need to know the syntax to add form-tags because you can use the straightforward tag generator (<strong>Generate Tag</strong> button on this screen).", 'contact-form-7' ) . '</p>';
|
79 |
+
|
80 |
+
$content['edit_mail_tags'] = '<p>' . __( "A mail-tag is also a short code enclosed in square brackets that you can use in every Mail and Mail (2) field. A mail-tag represents a user input value through an input field of a corresponding form-tag.", 'contact-form-7' ) . '</p>';
|
81 |
+
$content['edit_mail_tags'] .= '<p>' . __( "There are also special mail-tags that have specific names, but don’t have corresponding form-tags. They are used to represent meta information of form submissions like the submitter’s IP address or the URL of the page.", 'contact-form-7' ) . '</p>';
|
82 |
+
|
83 |
+
if ( ! empty( $content[$name] ) ) {
|
84 |
+
return $content[$name];
|
85 |
+
}
|
86 |
+
}
|
87 |
+
|
88 |
+
public function sidebar() {
|
89 |
+
$content = '<p><strong>' . __( 'For more information:', 'contact-form-7' ) . '</strong></p>';
|
90 |
+
$content .= '<p>' . __( '<a href="http://contactform7.com/docs/" target="_blank">Docs</a>', 'contact-form-7' ) . '</p>';
|
91 |
+
$content .= '<p>' . __( '<a href="http://contactform7.com/faq/" target="_blank">FAQ</a>', 'contact-form-7' ) . '</p>';
|
92 |
+
$content .= '<p>' . __( '<a href="http://contactform7.com/support/" target="_blank">Support</a>', 'contact-form-7' ) . '</p>';
|
93 |
+
|
94 |
+
$this->screen->set_help_sidebar( $content );
|
95 |
+
}
|
96 |
+
}
|
97 |
+
|
98 |
+
?>
|
languages/contact-form-7-ca.mo
CHANGED
Binary file
|
languages/contact-form-7-hr.mo
CHANGED
Binary file
|
languages/contact-form-7-ja.mo
CHANGED
Binary file
|
languages/contact-form-7-tr_TR.mo
CHANGED
Binary file
|
languages/contact-form-7.pot
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contact Form 7\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-11-
|
6 |
-
"PO-Revision-Date: 2014-11-
|
7 |
"Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -38,19 +38,19 @@ msgstr ""
|
|
38 |
msgid "Edit Contact Form"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: contact-form-7/admin/admin.php:15 contact-form-7/admin/admin.php:
|
42 |
-
#: contact-form-7/admin/admin.php:
|
43 |
#: contact-form-7/includes/contact-form.php:29
|
44 |
msgid "Contact Forms"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: contact-form-7/admin/admin.php:22 contact-form-7/admin/admin.php:
|
48 |
#: contact-form-7/admin/edit-contact-form.php:11
|
49 |
msgid "Add New Contact Form"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: contact-form-7/admin/admin.php:23 contact-form-7/admin/admin.php:
|
53 |
-
#: contact-form-7/admin/admin.php:
|
54 |
#: contact-form-7/admin/edit-contact-form.php:15
|
55 |
msgid "Add New"
|
56 |
msgstr ""
|
@@ -67,196 +67,196 @@ msgstr ""
|
|
67 |
msgid "Error in deleting."
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: contact-form-7/admin/admin.php:
|
71 |
msgid "Generate Tag"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: contact-form-7/admin/admin.php:
|
75 |
#, php-format
|
76 |
msgid "Search results for “%s”"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: contact-form-7/admin/admin.php:
|
80 |
msgid "Search Contact Forms"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: contact-form-7/admin/admin.php:
|
84 |
#, php-format
|
85 |
msgid "Use the default language (%s)"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: contact-form-7/admin/admin.php:
|
89 |
msgid "Or"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: contact-form-7/admin/admin.php:
|
93 |
msgid "(select language)"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: contact-form-7/admin/admin.php:
|
97 |
msgid "Form"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: contact-form-7/admin/admin.php:
|
101 |
msgid "Mail"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: contact-form-7/admin/admin.php:
|
105 |
msgid "Mail (2)"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: contact-form-7/admin/admin.php:
|
109 |
msgid "Use mail (2)"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: contact-form-7/admin/admin.php:
|
113 |
msgid "Messages"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: contact-form-7/admin/admin.php:
|
117 |
msgid "Additional Settings"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: contact-form-7/admin/admin.php:
|
121 |
msgid "Contact form created."
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: contact-form-7/admin/admin.php:
|
125 |
msgid "Contact form saved."
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: contact-form-7/admin/admin.php:
|
129 |
msgid "Contact form deleted."
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: contact-form-7/admin/admin.php:
|
133 |
msgid "Settings"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: contact-form-7/admin/admin.php:
|
137 |
msgid "http://contactform7.com/docs/"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: contact-form-7/admin/admin.php:
|
141 |
msgid "Docs"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: contact-form-7/admin/admin.php:
|
145 |
msgid "http://contactform7.com/faq/"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: contact-form-7/admin/admin.php:
|
149 |
msgid "FAQ"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: contact-form-7/admin/admin.php:
|
153 |
msgid "http://contactform7.com/support/"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: contact-form-7/admin/admin.php:
|
157 |
msgid "Support"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: contact-form-7/admin/admin.php:
|
161 |
msgid "http://contactform7.com/donate/"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: contact-form-7/admin/admin.php:
|
165 |
msgid "Donate"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: contact-form-7/admin/admin.php:
|
169 |
#, php-format
|
170 |
msgid ""
|
171 |
"<strong>Contact Form 7 %1$s requires WordPress %2$s or higher.</strong> "
|
172 |
"Please <a href=\"%3$s\">update WordPress</a> first."
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: contact-form-7/admin/admin.php:
|
176 |
msgid "Dismiss"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: contact-form-7/admin/admin.php:
|
180 |
msgid "Contact Form 7 Needs Your Support"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: contact-form-7/admin/admin.php:
|
184 |
msgid ""
|
185 |
"It is hard to continue development and support for this plugin without "
|
186 |
"contributions from users like you. If you enjoy using Contact Form 7 and "
|
187 |
"find it useful, please consider making a donation."
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: contact-form-7/admin/admin.php:
|
191 |
msgid "Get Started"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: contact-form-7/admin/admin.php:
|
195 |
msgid "http://contactform7.com/getting-started-with-contact-form-7/"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: contact-form-7/admin/admin.php:
|
199 |
msgid "Getting Started with Contact Form 7"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: contact-form-7/admin/admin.php:
|
203 |
msgid "http://contactform7.com/admin-screen/"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: contact-form-7/admin/admin.php:
|
207 |
msgid "Admin Screen"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: contact-form-7/admin/admin.php:
|
211 |
msgid "http://contactform7.com/tag-syntax/"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: contact-form-7/admin/admin.php:
|
215 |
msgid "How Tags Work"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: contact-form-7/admin/admin.php:
|
219 |
msgid "http://contactform7.com/setting-up-mail/"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: contact-form-7/admin/admin.php:
|
223 |
msgid "Setting Up Mail"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: contact-form-7/admin/admin.php:
|
227 |
msgid "Did You Know?"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: contact-form-7/admin/admin.php:
|
231 |
msgid "http://contactform7.com/spam-filtering-with-akismet/"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: contact-form-7/admin/admin.php:
|
235 |
msgid "Spam Filtering with Akismet"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: contact-form-7/admin/admin.php:
|
239 |
msgid "http://contactform7.com/save-submitted-messages-with-flamingo/"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: contact-form-7/admin/admin.php:
|
243 |
msgid "Save Messages with Flamingo"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: contact-form-7/admin/admin.php:
|
247 |
msgid "http://contactform7.com/selectable-recipient-with-pipes/"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: contact-form-7/admin/admin.php:
|
251 |
msgid "Selectable Recipient with Pipes"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: contact-form-7/admin/admin.php:
|
255 |
msgid ""
|
256 |
"http://contactform7.com/tracking-form-submissions-with-google-analytics/"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: contact-form-7/admin/admin.php:
|
260 |
msgid "Tracking with Google Analytics"
|
261 |
msgstr ""
|
262 |
|
@@ -328,6 +328,159 @@ msgstr ""
|
|
328 |
msgid "Y/m/d"
|
329 |
msgstr ""
|
330 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
331 |
#: contact-form-7/admin/includes/meta-boxes.php:47
|
332 |
msgid "To:"
|
333 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contact Form 7\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-11-24 18:18+0900\n"
|
6 |
+
"PO-Revision-Date: 2014-11-24 18:18+0900\n"
|
7 |
"Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
38 |
msgid "Edit Contact Form"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: contact-form-7/admin/admin.php:15 contact-form-7/admin/admin.php:165
|
42 |
+
#: contact-form-7/admin/admin.php:223
|
43 |
#: contact-form-7/includes/contact-form.php:29
|
44 |
msgid "Contact Forms"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: contact-form-7/admin/admin.php:22 contact-form-7/admin/admin.php:265
|
48 |
#: contact-form-7/admin/edit-contact-form.php:11
|
49 |
msgid "Add New Contact Form"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: contact-form-7/admin/admin.php:23 contact-form-7/admin/admin.php:225
|
53 |
+
#: contact-form-7/admin/admin.php:270 contact-form-7/admin/admin.php:282
|
54 |
#: contact-form-7/admin/edit-contact-form.php:15
|
55 |
msgid "Add New"
|
56 |
msgstr ""
|
67 |
msgid "Error in deleting."
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: contact-form-7/admin/admin.php:202
|
71 |
msgid "Generate Tag"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: contact-form-7/admin/admin.php:229
|
75 |
#, php-format
|
76 |
msgid "Search results for “%s”"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: contact-form-7/admin/admin.php:238
|
80 |
msgid "Search Contact Forms"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: contact-form-7/admin/admin.php:269
|
84 |
#, php-format
|
85 |
msgid "Use the default language (%s)"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: contact-form-7/admin/admin.php:273
|
89 |
msgid "Or"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: contact-form-7/admin/admin.php:277
|
93 |
msgid "(select language)"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: contact-form-7/admin/admin.php:289
|
97 |
msgid "Form"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: contact-form-7/admin/admin.php:292
|
101 |
msgid "Mail"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: contact-form-7/admin/admin.php:295
|
105 |
msgid "Mail (2)"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: contact-form-7/admin/admin.php:300
|
109 |
msgid "Use mail (2)"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: contact-form-7/admin/admin.php:302
|
113 |
msgid "Messages"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: contact-form-7/admin/admin.php:305
|
117 |
msgid "Additional Settings"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: contact-form-7/admin/admin.php:320
|
121 |
msgid "Contact form created."
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: contact-form-7/admin/admin.php:322
|
125 |
msgid "Contact form saved."
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: contact-form-7/admin/admin.php:324
|
129 |
msgid "Contact form deleted."
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: contact-form-7/admin/admin.php:341
|
133 |
msgid "Settings"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: contact-form-7/admin/admin.php:352
|
137 |
msgid "http://contactform7.com/docs/"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: contact-form-7/admin/admin.php:353
|
141 |
msgid "Docs"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: contact-form-7/admin/admin.php:354
|
145 |
msgid "http://contactform7.com/faq/"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: contact-form-7/admin/admin.php:355
|
149 |
msgid "FAQ"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: contact-form-7/admin/admin.php:356
|
153 |
msgid "http://contactform7.com/support/"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: contact-form-7/admin/admin.php:357
|
157 |
msgid "Support"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: contact-form-7/admin/admin.php:358 contact-form-7/admin/admin.php:414
|
161 |
msgid "http://contactform7.com/donate/"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: contact-form-7/admin/admin.php:359 contact-form-7/admin/admin.php:414
|
165 |
msgid "Donate"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: contact-form-7/admin/admin.php:381
|
169 |
#, php-format
|
170 |
msgid ""
|
171 |
"<strong>Contact Form 7 %1$s requires WordPress %2$s or higher.</strong> "
|
172 |
"Please <a href=\"%3$s\">update WordPress</a> first."
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: contact-form-7/admin/admin.php:407
|
176 |
msgid "Dismiss"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: contact-form-7/admin/admin.php:412
|
180 |
msgid "Contact Form 7 Needs Your Support"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: contact-form-7/admin/admin.php:413
|
184 |
msgid ""
|
185 |
"It is hard to continue development and support for this plugin without "
|
186 |
"contributions from users like you. If you enjoy using Contact Form 7 and "
|
187 |
"find it useful, please consider making a donation."
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: contact-form-7/admin/admin.php:418
|
191 |
msgid "Get Started"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: contact-form-7/admin/admin.php:420
|
195 |
msgid "http://contactform7.com/getting-started-with-contact-form-7/"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: contact-form-7/admin/admin.php:420
|
199 |
msgid "Getting Started with Contact Form 7"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: contact-form-7/admin/admin.php:421
|
203 |
msgid "http://contactform7.com/admin-screen/"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: contact-form-7/admin/admin.php:421
|
207 |
msgid "Admin Screen"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: contact-form-7/admin/admin.php:422
|
211 |
msgid "http://contactform7.com/tag-syntax/"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: contact-form-7/admin/admin.php:422
|
215 |
msgid "How Tags Work"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: contact-form-7/admin/admin.php:423
|
219 |
msgid "http://contactform7.com/setting-up-mail/"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: contact-form-7/admin/admin.php:423
|
223 |
msgid "Setting Up Mail"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: contact-form-7/admin/admin.php:428
|
227 |
msgid "Did You Know?"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: contact-form-7/admin/admin.php:430
|
231 |
msgid "http://contactform7.com/spam-filtering-with-akismet/"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: contact-form-7/admin/admin.php:430
|
235 |
msgid "Spam Filtering with Akismet"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: contact-form-7/admin/admin.php:431
|
239 |
msgid "http://contactform7.com/save-submitted-messages-with-flamingo/"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: contact-form-7/admin/admin.php:431
|
243 |
msgid "Save Messages with Flamingo"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: contact-form-7/admin/admin.php:432
|
247 |
msgid "http://contactform7.com/selectable-recipient-with-pipes/"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: contact-form-7/admin/admin.php:432
|
251 |
msgid "Selectable Recipient with Pipes"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: contact-form-7/admin/admin.php:433
|
255 |
msgid ""
|
256 |
"http://contactform7.com/tracking-form-submissions-with-google-analytics/"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: contact-form-7/admin/admin.php:433
|
260 |
msgid "Tracking with Google Analytics"
|
261 |
msgstr ""
|
262 |
|
328 |
msgid "Y/m/d"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: contact-form-7/admin/includes/help-tabs.php:16
|
332 |
+
msgid "Sample"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
#: contact-form-7/admin/includes/help-tabs.php:21
|
336 |
+
msgid "Available Actions"
|
337 |
+
msgstr ""
|
338 |
+
|
339 |
+
#: contact-form-7/admin/includes/help-tabs.php:28
|
340 |
+
msgid "Adding A New Contact Form"
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
#: contact-form-7/admin/includes/help-tabs.php:35
|
344 |
+
msgid "Overview"
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
+
#: contact-form-7/admin/includes/help-tabs.php:40
|
348 |
+
msgid "Form-tags"
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
+
#: contact-form-7/admin/includes/help-tabs.php:45
|
352 |
+
msgid "Mail-tags"
|
353 |
+
msgstr ""
|
354 |
+
|
355 |
+
#: contact-form-7/admin/includes/help-tabs.php:55
|
356 |
+
msgid ""
|
357 |
+
"On this screen, you can manage contact forms provided by Contact Form 7. You "
|
358 |
+
"can manage an unlimited number of contact forms. Each contact form has a "
|
359 |
+
"unique ID and Contact Form 7 shortcode ([contact-form-7 ...]). To insert a "
|
360 |
+
"contact form into a post or a text widget, insert the shortcode into the "
|
361 |
+
"target."
|
362 |
+
msgstr ""
|
363 |
+
|
364 |
+
#: contact-form-7/admin/includes/help-tabs.php:57
|
365 |
+
msgid ""
|
366 |
+
"Hovering over a row in the contact forms list will display action links that "
|
367 |
+
"allow you to manage your contact form. You can perform the following actions:"
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: contact-form-7/admin/includes/help-tabs.php:58
|
371 |
+
msgid ""
|
372 |
+
"<strong>Edit</strong> - Navigates to the editing screen for that contact "
|
373 |
+
"form. You can also reach that screen by clicking on the contact form title."
|
374 |
+
msgstr ""
|
375 |
+
|
376 |
+
#: contact-form-7/admin/includes/help-tabs.php:59
|
377 |
+
msgid ""
|
378 |
+
"<strong>Duplicate</strong> - Clones that contact form. A cloned contact form "
|
379 |
+
"inherits all content from the original, but has a different ID."
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: contact-form-7/admin/includes/help-tabs.php:61
|
383 |
+
msgid ""
|
384 |
+
"You can add a new contact form on this screen. You can create a contact form "
|
385 |
+
"in your language, which is set WordPress local settings, or in a language "
|
386 |
+
"that you select from available options."
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: contact-form-7/admin/includes/help-tabs.php:63
|
390 |
+
msgid ""
|
391 |
+
"On this screen, you can edit a contact form. A contact form is comprised of "
|
392 |
+
"the following components:"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: contact-form-7/admin/includes/help-tabs.php:64
|
396 |
+
msgid ""
|
397 |
+
"<strong>Title</strong> is the title of a contact form. This title is only "
|
398 |
+
"used for labeling a contact form, and can be edited."
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
+
#: contact-form-7/admin/includes/help-tabs.php:65
|
402 |
+
msgid ""
|
403 |
+
"<strong>Form</strong> is a content of HTML form. You can use arbitrary HTML, "
|
404 |
+
"which is allowed inside a form element. You can also use Contact Form "
|
405 |
+
"7’s form-tags here."
|
406 |
+
msgstr ""
|
407 |
+
|
408 |
+
#: contact-form-7/admin/includes/help-tabs.php:66
|
409 |
+
msgid ""
|
410 |
+
"<strong>Mail</strong> manages a mail template (headers and message body) "
|
411 |
+
"that this contact form will send when users submit it. You can use Contact "
|
412 |
+
"Form 7’s mail-tags here."
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: contact-form-7/admin/includes/help-tabs.php:67
|
416 |
+
msgid ""
|
417 |
+
"<strong>Mail (2)</strong> is an additional mail template that works similar "
|
418 |
+
"to Mail. Mail (2) is different in that it is sent only when Mail has been "
|
419 |
+
"sent successfully."
|
420 |
+
msgstr ""
|
421 |
+
|
422 |
+
#: contact-form-7/admin/includes/help-tabs.php:68
|
423 |
+
msgid ""
|
424 |
+
"In <strong>Messages</strong>, you can edit various types of messages used "
|
425 |
+
"for this contact form. These messages are relatively short messages, like a "
|
426 |
+
"validation error message you see when you leave a required field blank."
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: contact-form-7/admin/includes/help-tabs.php:69
|
430 |
+
msgid ""
|
431 |
+
"<strong>Additional Settings</strong> provides a place where you can "
|
432 |
+
"customize the behavior of this contact form by adding code snippets."
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: contact-form-7/admin/includes/help-tabs.php:71
|
436 |
+
msgid ""
|
437 |
+
"A form-tag is a short code enclosed in square brackets used in a form "
|
438 |
+
"content. A form-tag generally represents an input field, and its components "
|
439 |
+
"can be separated into four parts: type, name, options, and values. Contact "
|
440 |
+
"Form 7 supports several types of form-tags including text fields, number "
|
441 |
+
"fields, date fields, checkboxes, radio buttons, menus, file-uploading "
|
442 |
+
"fields, CAPTCHAs, and quiz fields."
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: contact-form-7/admin/includes/help-tabs.php:72
|
446 |
+
msgid ""
|
447 |
+
"While form-tags have a comparatively complex syntax, you don’t need to "
|
448 |
+
"know the syntax to add form-tags because you can use the straightforward tag "
|
449 |
+
"generator (<strong>Generate Tag</strong> button on this screen)."
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
#: contact-form-7/admin/includes/help-tabs.php:74
|
453 |
+
msgid ""
|
454 |
+
"A mail-tag is also a short code enclosed in square brackets that you can use "
|
455 |
+
"in every Mail and Mail (2) field. A mail-tag represents a user input value "
|
456 |
+
"through an input field of a corresponding form-tag."
|
457 |
+
msgstr ""
|
458 |
+
|
459 |
+
#: contact-form-7/admin/includes/help-tabs.php:75
|
460 |
+
msgid ""
|
461 |
+
"There are also special mail-tags that have specific names, but don’t "
|
462 |
+
"have corresponding form-tags. They are used to represent meta information of "
|
463 |
+
"form submissions like the submitter’s IP address or the URL of the "
|
464 |
+
"page."
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: contact-form-7/admin/includes/help-tabs.php:83
|
468 |
+
msgid "For more information:"
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
#: contact-form-7/admin/includes/help-tabs.php:84
|
472 |
+
msgid "<a href=\"http://contactform7.com/docs/\" target=\"_blank\">Docs</a>"
|
473 |
+
msgstr ""
|
474 |
+
|
475 |
+
#: contact-form-7/admin/includes/help-tabs.php:85
|
476 |
+
msgid "<a href=\"http://contactform7.com/faq/\" target=\"_blank\">FAQ</a>"
|
477 |
+
msgstr ""
|
478 |
+
|
479 |
+
#: contact-form-7/admin/includes/help-tabs.php:86
|
480 |
+
msgid ""
|
481 |
+
"<a href=\"http://contactform7.com/support/\" target=\"_blank\">Support</a>"
|
482 |
+
msgstr ""
|
483 |
+
|
484 |
#: contact-form-7/admin/includes/meta-boxes.php:47
|
485 |
msgid "To:"
|
486 |
msgstr ""
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: takayukister
|
|
3 |
Donate link: http://contactform7.com/donate/
|
4 |
Tags: contact, form, contact form, feedback, email, ajax, captcha, akismet, multilingual
|
5 |
Requires at least: 3.9
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 4.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -42,7 +42,7 @@ The following are other recommended plugins by the author of Contact Form 7.
|
|
42 |
* Belarusian (be_BY) - Igor Dubilei
|
43 |
* Bosnian (bs_BA) - Vedran
|
44 |
* Bulgarian (bg_BG) - Iliyan Darganov
|
45 |
-
* Catalan (ca) - Jordi Sancho, Robert Buj, Jaume Aragay Badia
|
46 |
* Central Kurdish (ckb) - Mahr Hassan
|
47 |
* Chinese (China; zh_CN) - Soz, Keefe Dunn, Stella Hu
|
48 |
* Chinese (Taiwan; zh_TW) - James Wu
|
@@ -125,6 +125,12 @@ Do you have questions or issues with Contact Form 7? Use these support channels
|
|
125 |
|
126 |
For more information, see [Releases](http://contactform7.com/category/releases/).
|
127 |
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
= 4.0.2 =
|
129 |
|
130 |
* Introduced wpcf7_build_query() to correctly apply urlencode to keys and values in URL queries.
|
3 |
Donate link: http://contactform7.com/donate/
|
4 |
Tags: contact, form, contact form, feedback, email, ajax, captcha, akismet, multilingual
|
5 |
Requires at least: 3.9
|
6 |
+
Tested up to: 4.1
|
7 |
+
Stable tag: 4.0.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
42 |
* Belarusian (be_BY) - Igor Dubilei
|
43 |
* Bosnian (bs_BA) - Vedran
|
44 |
* Bulgarian (bg_BG) - Iliyan Darganov
|
45 |
+
* Catalan (ca) - Jordi Sancho, Robert Buj, Jaume Aragay Badia, luba lee
|
46 |
* Central Kurdish (ckb) - Mahr Hassan
|
47 |
* Chinese (China; zh_CN) - Soz, Keefe Dunn, Stella Hu
|
48 |
* Chinese (Taiwan; zh_TW) - James Wu
|
125 |
|
126 |
For more information, see [Releases](http://contactform7.com/category/releases/).
|
127 |
|
128 |
+
= 4.0.3 =
|
129 |
+
|
130 |
+
* The contextual help tab has been added to admin pages.
|
131 |
+
* Changed the admin menu icon to "email" dashicon.
|
132 |
+
* Translations for Croatian, Turkish, and Catalan have been updated.
|
133 |
+
|
134 |
= 4.0.2 =
|
135 |
|
136 |
* Introduced wpcf7_build_query() to correctly apply urlencode to keys and values in URL queries.
|
wp-contact-form-7.php
CHANGED
@@ -7,7 +7,7 @@ Author: Takayuki Miyoshi
|
|
7 |
Author URI: http://ideasilo.wordpress.com/
|
8 |
Text Domain: contact-form-7
|
9 |
Domain Path: /languages/
|
10 |
-
Version: 4.0.
|
11 |
*/
|
12 |
|
13 |
/* Copyright 2007-2014 Takayuki Miyoshi (email: takayukister at gmail.com)
|
@@ -27,7 +27,7 @@ Version: 4.0.2
|
|
27 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
28 |
*/
|
29 |
|
30 |
-
define( 'WPCF7_VERSION', '4.0.
|
31 |
|
32 |
define( 'WPCF7_REQUIRED_WP_VERSION', '3.9' );
|
33 |
|
7 |
Author URI: http://ideasilo.wordpress.com/
|
8 |
Text Domain: contact-form-7
|
9 |
Domain Path: /languages/
|
10 |
+
Version: 4.0.3
|
11 |
*/
|
12 |
|
13 |
/* Copyright 2007-2014 Takayuki Miyoshi (email: takayukister at gmail.com)
|
27 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
28 |
*/
|
29 |
|
30 |
+
define( 'WPCF7_VERSION', '4.0.3' );
|
31 |
|
32 |
define( 'WPCF7_REQUIRED_WP_VERSION', '3.9' );
|
33 |
|