Version Description
- 03.08.2012 =
- Bugfix : Cross Site Request Forgery bug was fixed.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Contact Form by BestWebSoft |
Version | 3.23 |
Comparing to | |
See all releases |
Code changes from version 3.22 to 3.23
- contact_form.php +14 -14
- images/icon_16.png +0 -0
- images/icon_16_b.png +0 -0
- images/icon_16_c.png +0 -0
- images/icon_36.png +0 -0
- images/icon_36_b.png +0 -0
- images/px.png +0 -0
- js/script.js +0 -0
- languages/contact_form-ar.mo +0 -0
- languages/contact_form-ar.po +84 -119
- languages/contact_form-hi_IN.mo +0 -0
- languages/contact_form-hi_IN.po +84 -119
- readme.txt +7 -1
- screenshot-1.jpg +0 -0
- screenshot-2.jpg +0 -0
- screenshot-3.jpg +0 -0
- screenshot-5.jpg +0 -0
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 |
*/
|
@@ -419,7 +419,7 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
|
|
419 |
// If email not be delivered
|
420 |
$error_message['error_form'] = __( "Sorry, your e-mail could not be delivered.", 'contact_form' );
|
421 |
}
|
422 |
-
|
423 |
$_SESSION['cntctfrm_send_mail'] = false;
|
424 |
// Output form
|
425 |
$content .= '<form method="post" id="cntctfrm_contact_form" action="'.$page_url.'" enctype="multipart/form-data">';
|
@@ -632,8 +632,8 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
|
|
632 |
$to = "";
|
633 |
if( isset( $_SESSION['cntctfrm_send_mail'] ) && $_SESSION['cntctfrm_send_mail'] == true )
|
634 |
return true;
|
635 |
-
if($cntctfrm_options['cntctfrm_select_email'] == 'user') {
|
636 |
-
if( function_exists('get_userdatabylogin') && false !== $user = get_userdatabylogin($cntctfrm_options['cntctfrm_user_email'] ) ){
|
637 |
$to = $user->user_email;
|
638 |
}
|
639 |
else if( false !== $user = get_user_by( 'login', $cntctfrm_options_submit['cntctfrm_user_email'] ) )
|
@@ -662,7 +662,7 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
|
|
662 |
}
|
663 |
|
664 |
if( $cntctfrm_options['cntctfrm_display_add_info'] == 1) {
|
665 |
-
$userdomain = gethostbyaddr($_SERVER['REMOTE_ADDR']);
|
666 |
if( $cntctfrm_options['cntctfrm_display_add_info'] == 1 ||
|
667 |
$cntctfrm_options['cntctfrm_display_sent_from'] == 1 ||
|
668 |
$cntctfrm_options['cntctfrm_display_coming_from'] == 1 ||
|
@@ -701,13 +701,13 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
|
|
701 |
<body>
|
702 |
<table>
|
703 |
<tr>
|
704 |
-
<td width="160">'. __( "Name", 'contact_form' ) . '</td><td>'
|
705 |
</tr>
|
706 |
<tr>
|
707 |
<td>'. __( "Email", 'contact_form' ) .'</td><td>'.$_REQUEST['cntctfrm_contact_email'].'</td>
|
708 |
</tr>
|
709 |
<tr>
|
710 |
-
<td>'. __( "Subject", 'contact_form' ) . '</td><td>'
|
711 |
</tr>
|
712 |
<tr>
|
713 |
<td>'. __( "Message", 'contact_form' ) . '</td><td>'.$_REQUEST['cntctfrm_contact_message'].'</td>
|
@@ -735,13 +735,13 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
|
|
735 |
}
|
736 |
|
737 |
if( isset( $_REQUEST['cntctfrm_contact_send_copy'] ) && $_REQUEST['cntctfrm_contact_send_copy'] == 1 )
|
738 |
-
wp_mail($_REQUEST['cntctfrm_contact_email'], stripslashes($subject), stripslashes($message), $headers, $attachments);
|
739 |
|
740 |
// Mail it
|
741 |
-
return wp_mail($to, stripslashes($subject), stripslashes($message), $headers, $attachments);
|
742 |
}
|
743 |
else{
|
744 |
-
if( $cntctfrm_options['cntctfrm_attachment'] == 1 && isset($_FILES["cntctfrm_contact_attachment"]["tmp_name"]) && $_FILES["cntctfrm_contact_attachment"]["tmp_name"] != "") {
|
745 |
global $path_of_uploaded_file;
|
746 |
$headers = "";
|
747 |
$message_block = $message;
|
@@ -770,9 +770,9 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
|
|
770 |
$file = file_get_contents($path_of_uploaded_file);
|
771 |
$path_info = pathinfo( $path_of_uploaded_file );
|
772 |
|
773 |
-
$message .= "Content-Type: ".$path_info['extension']."; name=\"".basename($path_of_uploaded_file)."\"\r\n"
|
774 |
."Content-Transfer-Encoding: base64\r\n"
|
775 |
-
."Content-disposition: attachment; file=\"".basename($path_of_uploaded_file)."\"\r\n"
|
776 |
."\r\n"
|
777 |
.chunk_split( base64_encode( $file ) )
|
778 |
.$bound_last;
|
@@ -786,9 +786,9 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
|
|
786 |
$headers .= 'From: '.$_REQUEST['cntctfrm_contact_email']. "\r\n";
|
787 |
}
|
788 |
if( isset( $_REQUEST['cntctfrm_contact_send_copy'] ) && $_REQUEST['cntctfrm_contact_send_copy'] == 1 )
|
789 |
-
@mail($_REQUEST['cntctfrm_contact_email'], stripslashes($subject), stripslashes($message), $headers);
|
790 |
|
791 |
-
return @mail($to, stripslashes($subject), stripslashes($message), $headers);
|
792 |
}
|
793 |
|
794 |
}
|
4 |
Plugin URI: http://bestwebsoft.com/plugin/
|
5 |
Description: Plugin for Contact Form.
|
6 |
Author: BestWebSoft
|
7 |
+
Version: 3.23
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
419 |
// If email not be delivered
|
420 |
$error_message['error_form'] = __( "Sorry, your e-mail could not be delivered.", 'contact_form' );
|
421 |
}
|
422 |
+
if( true !== $result) {
|
423 |
$_SESSION['cntctfrm_send_mail'] = false;
|
424 |
// Output form
|
425 |
$content .= '<form method="post" id="cntctfrm_contact_form" action="'.$page_url.'" enctype="multipart/form-data">';
|
632 |
$to = "";
|
633 |
if( isset( $_SESSION['cntctfrm_send_mail'] ) && $_SESSION['cntctfrm_send_mail'] == true )
|
634 |
return true;
|
635 |
+
if( $cntctfrm_options['cntctfrm_select_email'] == 'user' ) {
|
636 |
+
if( function_exists('get_userdatabylogin') && false !== $user = get_userdatabylogin( $cntctfrm_options['cntctfrm_user_email'] ) ){
|
637 |
$to = $user->user_email;
|
638 |
}
|
639 |
else if( false !== $user = get_user_by( 'login', $cntctfrm_options_submit['cntctfrm_user_email'] ) )
|
662 |
}
|
663 |
|
664 |
if( $cntctfrm_options['cntctfrm_display_add_info'] == 1) {
|
665 |
+
$userdomain = @gethostbyaddr($_SERVER['REMOTE_ADDR']);
|
666 |
if( $cntctfrm_options['cntctfrm_display_add_info'] == 1 ||
|
667 |
$cntctfrm_options['cntctfrm_display_sent_from'] == 1 ||
|
668 |
$cntctfrm_options['cntctfrm_display_coming_from'] == 1 ||
|
701 |
<body>
|
702 |
<table>
|
703 |
<tr>
|
704 |
+
<td width="160">'. __( "Name", 'contact_form' ) . '</td><td>'.strip_tags( $_REQUEST['cntctfrm_contact_name'] ).'</td>
|
705 |
</tr>
|
706 |
<tr>
|
707 |
<td>'. __( "Email", 'contact_form' ) .'</td><td>'.$_REQUEST['cntctfrm_contact_email'].'</td>
|
708 |
</tr>
|
709 |
<tr>
|
710 |
+
<td>'. __( "Subject", 'contact_form' ) . '</td><td>'. strip_tags( $subject ).'</td>
|
711 |
</tr>
|
712 |
<tr>
|
713 |
<td>'. __( "Message", 'contact_form' ) . '</td><td>'.$_REQUEST['cntctfrm_contact_message'].'</td>
|
735 |
}
|
736 |
|
737 |
if( isset( $_REQUEST['cntctfrm_contact_send_copy'] ) && $_REQUEST['cntctfrm_contact_send_copy'] == 1 )
|
738 |
+
wp_mail( $_REQUEST['cntctfrm_contact_email'], stripslashes( strip_tags( $subject ) ), stripslashes( $message ), $headers, $attachments );
|
739 |
|
740 |
// Mail it
|
741 |
+
return wp_mail( $to, stripslashes( strip_tags( $subject ) ), stripslashes( $message ), $headers, $attachments );
|
742 |
}
|
743 |
else{
|
744 |
+
if( $cntctfrm_options['cntctfrm_attachment'] == 1 && isset( $_FILES["cntctfrm_contact_attachment"]["tmp_name"] ) && $_FILES["cntctfrm_contact_attachment"]["tmp_name"] != "") {
|
745 |
global $path_of_uploaded_file;
|
746 |
$headers = "";
|
747 |
$message_block = $message;
|
770 |
$file = file_get_contents($path_of_uploaded_file);
|
771 |
$path_info = pathinfo( $path_of_uploaded_file );
|
772 |
|
773 |
+
$message .= "Content-Type: ".$path_info['extension']."; name=\"".basename( $path_of_uploaded_file )."\"\r\n"
|
774 |
."Content-Transfer-Encoding: base64\r\n"
|
775 |
+
."Content-disposition: attachment; file=\"".basename( $path_of_uploaded_file )."\"\r\n"
|
776 |
."\r\n"
|
777 |
.chunk_split( base64_encode( $file ) )
|
778 |
.$bound_last;
|
786 |
$headers .= 'From: '.$_REQUEST['cntctfrm_contact_email']. "\r\n";
|
787 |
}
|
788 |
if( isset( $_REQUEST['cntctfrm_contact_send_copy'] ) && $_REQUEST['cntctfrm_contact_send_copy'] == 1 )
|
789 |
+
@mail( $_REQUEST['cntctfrm_contact_email'], stripslashes( strip_tags( $subject ) ), stripslashes( $message ), $headers );
|
790 |
|
791 |
+
return @mail( $to, stripslashes( strip_tags( $subject ) ), stripslashes( $message ), $headers );
|
792 |
}
|
793 |
|
794 |
}
|
images/icon_16.png
CHANGED
File without changes
|
images/icon_16_b.png
CHANGED
File without changes
|
images/icon_16_c.png
CHANGED
File without changes
|
images/icon_36.png
CHANGED
File without changes
|
images/icon_36_b.png
CHANGED
File without changes
|
images/px.png
CHANGED
File without changes
|
js/script.js
CHANGED
File without changes
|
languages/contact_form-ar.mo
CHANGED
Binary file
|
languages/contact_form-ar.po
CHANGED
@@ -2,11 +2,10 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-07
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Hammad Alshammari (ABU HATIM) www.abuhatim.net <al3zz.com@gmail.com>\n"
|
9 |
-
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -28,8 +27,8 @@ msgid "Read more"
|
|
28 |
msgstr "اقرأ المزيد"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
-
#: contact_form.php:
|
32 |
-
#: contact_form.php:
|
33 |
msgid "Settings"
|
34 |
msgstr "إعدادات"
|
35 |
|
@@ -59,7 +58,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
|
|
59 |
msgstr "إذا كان لديك أي أسئلة، يرجى الاتصال بنا عبر plugin@bestwebsoft.com أو ملء استمارة الاتصال على موقعنا"
|
60 |
|
61 |
#: contact_form.php:108
|
62 |
-
#: contact_form.php:
|
63 |
msgid "Contact Form Options"
|
64 |
msgstr "خيارات نموذج اتصل بنا"
|
65 |
|
@@ -67,277 +66,243 @@ msgstr "خيارات نموذج اتصل بنا"
|
|
67 |
msgid "Contact Form"
|
68 |
msgstr "نموذج الاتصال"
|
69 |
|
70 |
-
#: contact_form.php:
|
71 |
-
#: contact_form.php:
|
72 |
-
#: contact_form.php:
|
73 |
-
#: contact_form.php:
|
74 |
msgid "Name:"
|
75 |
msgstr "الأسم:"
|
76 |
|
77 |
-
#: contact_form.php:
|
78 |
-
#: contact_form.php:
|
79 |
-
#: contact_form.php:
|
80 |
-
#: contact_form.php:
|
81 |
msgid "E-Mail Address:"
|
82 |
msgstr "البريد الالكتروني:"
|
83 |
|
84 |
-
#: contact_form.php:
|
85 |
-
#: contact_form.php:
|
86 |
-
#: contact_form.php:
|
87 |
-
#: contact_form.php:
|
88 |
msgid "Subject:"
|
89 |
msgstr "موضوع الرسالة:"
|
90 |
|
91 |
-
#: contact_form.php:
|
92 |
-
#: contact_form.php:
|
93 |
-
#: contact_form.php:
|
94 |
-
#: contact_form.php:
|
95 |
msgid "Message:"
|
96 |
msgstr "الرسالة:"
|
97 |
|
98 |
-
#: contact_form.php:
|
99 |
-
#: contact_form.php:
|
100 |
-
#: contact_form.php:
|
101 |
-
#: contact_form.php:
|
102 |
msgid "Attachment:"
|
103 |
msgstr "المرفقات:"
|
104 |
|
105 |
-
#: contact_form.php:
|
106 |
-
#: contact_form.php:
|
107 |
-
msgid "Thank you for contacting us."
|
108 |
-
msgstr "أشكركم على الاتصال بنا. سيتم الرد عليكم في أقرب فرصة."
|
109 |
-
|
110 |
-
#: contact_form.php:230
|
111 |
-
msgid "If the option 'Redirect to page' is selected then url field should be fillied in the following format"
|
112 |
-
msgstr ""
|
113 |
-
|
114 |
-
#: contact_form.php:237
|
115 |
-
#: contact_form.php:242
|
116 |
-
#: contact_form.php:251
|
117 |
msgid "Options saved."
|
118 |
msgstr "الخيارات حُفظت."
|
119 |
|
120 |
-
#: contact_form.php:
|
121 |
msgid "Such user is not exist. Settings are not saved."
|
122 |
msgstr "هذا المستخدم لا وجود له. لم يتم حفظ الإعدادات."
|
123 |
|
124 |
-
#: contact_form.php:
|
125 |
msgid "Please input correct email. Settings are not saved."
|
126 |
msgstr "الرجاء إدخال بريد الكتروني صحيح. الاعدادات لم تُحفظ."
|
127 |
|
128 |
-
#: contact_form.php:
|
129 |
msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
|
130 |
msgstr "إذا كنت ترغب في إضافة نموذج الاتصال إلى موقع الويب الخاص بك، قم بنسخ ولصق هذا الرمز القصير:"
|
131 |
|
132 |
-
#: contact_form.php:
|
133 |
msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
|
134 |
msgstr "إذا كانت المعلومات في الحقول أدناه فارغة سيتم إرسال الرسالة إلى عنوان الذي تم تحديده أثناء التسجيل."
|
135 |
|
136 |
-
#: contact_form.php:
|
137 |
msgid "Use email of wordpress user:"
|
138 |
msgstr "أستخدم بريد العضو في وورد بريس:"
|
139 |
|
140 |
-
#: contact_form.php:
|
141 |
msgid "Select user name"
|
142 |
msgstr "اختر اسم المستخدم"
|
143 |
|
144 |
-
#: contact_form.php:
|
145 |
msgid "Set a name of user who will get messages from a contact form."
|
146 |
msgstr "تعيين اسم المستخدم من الذين سيحصلون على رسائل من شكل من أشكال الاتصال."
|
147 |
|
148 |
-
#: contact_form.php:
|
149 |
msgid "Use this email:"
|
150 |
msgstr "استخدام هذا البريد الالكتروني:"
|
151 |
|
152 |
-
#: contact_form.php:
|
153 |
msgid "Set an email address which will be used for messages receiving."
|
154 |
msgstr "تعيين عنوان البريد الإلكتروني التي سيتم استخدامها لاستقبال الرسائل."
|
155 |
|
156 |
-
#: contact_form.php:
|
157 |
msgid "Additional options"
|
158 |
msgstr "خيارات إضافية"
|
159 |
|
160 |
-
#: contact_form.php:
|
161 |
msgid "Display Attachment block"
|
162 |
msgstr "عرض حقل المرفقات"
|
163 |
|
164 |
-
#: contact_form.php:
|
165 |
msgid "Users can attach files of the following types"
|
166 |
msgstr "يمكن للمستخدمين إرفاق الملفات من الأنواع التالية"
|
167 |
|
168 |
-
#: contact_form.php:
|
169 |
-
msgid "Display Attachment explanations"
|
170 |
-
msgstr ""
|
171 |
-
|
172 |
-
#: contact_form.php:314
|
173 |
-
msgid "Display explanations after Attachment block"
|
174 |
-
msgstr ""
|
175 |
-
|
176 |
-
#: contact_form.php:318
|
177 |
msgid "Display Send me a copy block"
|
178 |
msgstr "عرض خيار (أرسل لي نسخة)"
|
179 |
|
180 |
-
#: contact_form.php:
|
181 |
msgid "What use?"
|
182 |
msgstr "ماذا تستخدم؟"
|
183 |
|
184 |
-
#: contact_form.php:
|
185 |
msgid "Wp-mail"
|
186 |
msgstr "Wp-mail"
|
187 |
|
188 |
-
#: contact_form.php:
|
189 |
msgid "To send mail you can use the wordpress wp_mail function"
|
190 |
msgstr "لإرسال البريد يمكنك استخدام وظيفة wp_mail"
|
191 |
|
192 |
-
#: contact_form.php:
|
193 |
msgid "Mail"
|
194 |
msgstr "Mail"
|
195 |
|
196 |
-
#: contact_form.php:
|
197 |
msgid "To send mail you can use the php mail function"
|
198 |
msgstr "لإرسال البريد يمكنك استخدام وظيفة البريد PHP"
|
199 |
|
200 |
-
#: contact_form.php:
|
201 |
msgid "Change FROM fields of the contact form"
|
202 |
msgstr "تغيير من الحقول من نموذج الاتصال"
|
203 |
|
204 |
-
#: contact_form.php:
|
205 |
msgid "Display additional info in email"
|
206 |
msgstr "عرض معلومات اضافية في البريد الالكتروني"
|
207 |
|
208 |
-
#: contact_form.php:
|
209 |
-
#: contact_form.php:
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "ارسلت من (عنوان IP)"
|
212 |
|
213 |
-
#: contact_form.php:
|
214 |
-
#: contact_form.php:
|
215 |
msgid "Date/Time"
|
216 |
msgstr "الوقت/التاريخ"
|
217 |
|
218 |
-
#: contact_form.php:
|
219 |
-
#: contact_form.php:
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Coming from (referer)"
|
222 |
|
223 |
-
#: contact_form.php:
|
224 |
-
#: contact_form.php:
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "باستخدام (وكيل المستخدم)"
|
227 |
|
228 |
-
#: contact_form.php:
|
229 |
msgid "Change label for fields of the contact form"
|
230 |
msgstr "تغيير تسمية حقول نموذج الاتصال"
|
231 |
|
232 |
-
#: contact_form.php:
|
233 |
-
msgid "Action after the send mail"
|
234 |
-
msgstr ""
|
235 |
-
|
236 |
-
#: contact_form.php:376
|
237 |
-
#, fuzzy
|
238 |
-
msgid "Display text"
|
239 |
-
msgstr "عرض حقل المرفقات"
|
240 |
-
|
241 |
-
#: contact_form.php:377
|
242 |
-
msgid "Text"
|
243 |
-
msgstr ""
|
244 |
-
|
245 |
-
#: contact_form.php:378
|
246 |
-
msgid "Redirect to page"
|
247 |
-
msgstr ""
|
248 |
-
|
249 |
-
#: contact_form.php:379
|
250 |
-
msgid "Url"
|
251 |
-
msgstr ""
|
252 |
-
|
253 |
-
#: contact_form.php:384
|
254 |
msgid "Save Changes"
|
255 |
msgstr "حفظ التغييرات"
|
256 |
|
257 |
-
#: contact_form.php:
|
|
|
|
|
|
|
|
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "عذراً, لم نستطيع تسليم رسالتك."
|
260 |
|
261 |
-
#: contact_form.php:
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "يمكنك إرفاق الملفات من الأنواع التالية"
|
264 |
|
265 |
-
#: contact_form.php:
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "أرسل لي نسخة"
|
268 |
|
269 |
-
#: contact_form.php:
|
270 |
msgid "Submit"
|
271 |
msgstr "تقدم"
|
272 |
|
273 |
-
#: contact_form.php:
|
274 |
msgid "Your name is required."
|
275 |
msgstr "مطلوب اسمك."
|
276 |
|
277 |
-
#: contact_form.php:
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "مطلوب بريد الكتروني صحيح."
|
280 |
|
281 |
-
#: contact_form.php:
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "مطلوب نص الموضوع."
|
284 |
|
285 |
-
#: contact_form.php:
|
286 |
msgid "Message text is required."
|
287 |
msgstr "مطلوب نص الرسالة."
|
288 |
|
289 |
-
#: contact_form.php:
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "يرجى إجراء التصحيحات أدناه وحاول مرة أخرى."
|
292 |
|
293 |
-
#: contact_form.php:
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "المرفق تعطل."
|
296 |
|
297 |
-
#: contact_form.php:
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "يرجى استكمال رمز التحقق."
|
300 |
|
301 |
-
#: contact_form.php:
|
302 |
msgid "Contact from"
|
303 |
msgstr "اتصل من"
|
304 |
|
305 |
-
#: contact_form.php:
|
306 |
msgid "Name"
|
307 |
msgstr "الأسم"
|
308 |
|
309 |
-
#: contact_form.php:
|
310 |
msgid "Email"
|
311 |
msgstr "البريد الألكتروني"
|
312 |
|
313 |
-
#: contact_form.php:
|
314 |
msgid "Subject"
|
315 |
msgstr "موضوع الرسالة"
|
316 |
|
317 |
-
#: contact_form.php:
|
318 |
msgid "Message"
|
319 |
msgstr "الرسالة"
|
320 |
|
321 |
-
#: contact_form.php:
|
322 |
msgid "Site"
|
323 |
msgstr "الموقع"
|
324 |
|
325 |
-
#: contact_form.php:
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "إذا يمكنك أن ترى هذه MIME من العميل الخاص بك لا يقبل أنواع MIME!"
|
328 |
|
329 |
-
#: contact_form.php:
|
330 |
msgid "FAQ"
|
331 |
msgstr "أسئلة وأجوبة"
|
332 |
|
333 |
-
#: contact_form.php:
|
334 |
msgid "Support"
|
335 |
msgstr "دعم"
|
336 |
|
337 |
#~ msgid "E-Mail Addresse:"
|
338 |
#~ msgstr "Indirizzo e-mail:"
|
|
|
339 |
#~ msgid "Install Now"
|
340 |
#~ msgstr "Installa Ora"
|
|
|
341 |
#~ msgid "BWS Plugins"
|
342 |
#~ msgstr "BWS Plugins"
|
343 |
-
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-04-12 19:38+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-05-07 10:05+0200\n"
|
7 |
+
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Hammad Alshammari (ABU HATIM) www.abuhatim.net <al3zz.com@gmail.com>\n"
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
27 |
msgstr "اقرأ المزيد"
|
28 |
|
29 |
#: contact_form.php:78
|
30 |
+
#: contact_form.php:735
|
31 |
+
#: contact_form.php:744
|
32 |
msgid "Settings"
|
33 |
msgstr "إعدادات"
|
34 |
|
58 |
msgstr "إذا كان لديك أي أسئلة، يرجى الاتصال بنا عبر plugin@bestwebsoft.com أو ملء استمارة الاتصال على موقعنا"
|
59 |
|
60 |
#: contact_form.php:108
|
61 |
+
#: contact_form.php:239
|
62 |
msgid "Contact Form Options"
|
63 |
msgstr "خيارات نموذج اتصل بنا"
|
64 |
|
66 |
msgid "Contact Form"
|
67 |
msgstr "نموذج الاتصال"
|
68 |
|
69 |
+
#: contact_form.php:135
|
70 |
+
#: contact_form.php:175
|
71 |
+
#: contact_form.php:207
|
72 |
+
#: contact_form.php:334
|
73 |
msgid "Name:"
|
74 |
msgstr "الأسم:"
|
75 |
|
76 |
+
#: contact_form.php:136
|
77 |
+
#: contact_form.php:176
|
78 |
+
#: contact_form.php:208
|
79 |
+
#: contact_form.php:335
|
80 |
msgid "E-Mail Address:"
|
81 |
msgstr "البريد الالكتروني:"
|
82 |
|
83 |
+
#: contact_form.php:137
|
84 |
+
#: contact_form.php:177
|
85 |
+
#: contact_form.php:209
|
86 |
+
#: contact_form.php:336
|
87 |
msgid "Subject:"
|
88 |
msgstr "موضوع الرسالة:"
|
89 |
|
90 |
+
#: contact_form.php:138
|
91 |
+
#: contact_form.php:178
|
92 |
+
#: contact_form.php:210
|
93 |
+
#: contact_form.php:337
|
94 |
msgid "Message:"
|
95 |
msgstr "الرسالة:"
|
96 |
|
97 |
+
#: contact_form.php:139
|
98 |
+
#: contact_form.php:179
|
99 |
+
#: contact_form.php:211
|
100 |
+
#: contact_form.php:338
|
101 |
msgid "Attachment:"
|
102 |
msgstr "المرفقات:"
|
103 |
|
104 |
+
#: contact_form.php:219
|
105 |
+
#: contact_form.php:228
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
msgid "Options saved."
|
107 |
msgstr "الخيارات حُفظت."
|
108 |
|
109 |
+
#: contact_form.php:222
|
110 |
msgid "Such user is not exist. Settings are not saved."
|
111 |
msgstr "هذا المستخدم لا وجود له. لم يتم حفظ الإعدادات."
|
112 |
|
113 |
+
#: contact_form.php:231
|
114 |
msgid "Please input correct email. Settings are not saved."
|
115 |
msgstr "الرجاء إدخال بريد الكتروني صحيح. الاعدادات لم تُحفظ."
|
116 |
|
117 |
+
#: contact_form.php:244
|
118 |
msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
|
119 |
msgstr "إذا كنت ترغب في إضافة نموذج الاتصال إلى موقع الويب الخاص بك، قم بنسخ ولصق هذا الرمز القصير:"
|
120 |
|
121 |
+
#: contact_form.php:245
|
122 |
msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
|
123 |
msgstr "إذا كانت المعلومات في الحقول أدناه فارغة سيتم إرسال الرسالة إلى عنوان الذي تم تحديده أثناء التسجيل."
|
124 |
|
125 |
+
#: contact_form.php:249
|
126 |
msgid "Use email of wordpress user:"
|
127 |
msgstr "أستخدم بريد العضو في وورد بريس:"
|
128 |
|
129 |
+
#: contact_form.php:255
|
130 |
msgid "Select user name"
|
131 |
msgstr "اختر اسم المستخدم"
|
132 |
|
133 |
+
#: contact_form.php:260
|
134 |
msgid "Set a name of user who will get messages from a contact form."
|
135 |
msgstr "تعيين اسم المستخدم من الذين سيحصلون على رسائل من شكل من أشكال الاتصال."
|
136 |
|
137 |
+
#: contact_form.php:264
|
138 |
msgid "Use this email:"
|
139 |
msgstr "استخدام هذا البريد الالكتروني:"
|
140 |
|
141 |
+
#: contact_form.php:270
|
142 |
msgid "Set an email address which will be used for messages receiving."
|
143 |
msgstr "تعيين عنوان البريد الإلكتروني التي سيتم استخدامها لاستقبال الرسائل."
|
144 |
|
145 |
+
#: contact_form.php:274
|
146 |
msgid "Additional options"
|
147 |
msgstr "خيارات إضافية"
|
148 |
|
149 |
+
#: contact_form.php:277
|
150 |
msgid "Display Attachment block"
|
151 |
msgstr "عرض حقل المرفقات"
|
152 |
|
153 |
+
#: contact_form.php:282
|
154 |
msgid "Users can attach files of the following types"
|
155 |
msgstr "يمكن للمستخدمين إرفاق الملفات من الأنواع التالية"
|
156 |
|
157 |
+
#: contact_form.php:286
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
msgid "Display Send me a copy block"
|
159 |
msgstr "عرض خيار (أرسل لي نسخة)"
|
160 |
|
161 |
+
#: contact_form.php:292
|
162 |
msgid "What use?"
|
163 |
msgstr "ماذا تستخدم؟"
|
164 |
|
165 |
+
#: contact_form.php:297
|
166 |
msgid "Wp-mail"
|
167 |
msgstr "Wp-mail"
|
168 |
|
169 |
+
#: contact_form.php:298
|
170 |
msgid "To send mail you can use the wordpress wp_mail function"
|
171 |
msgstr "لإرسال البريد يمكنك استخدام وظيفة wp_mail"
|
172 |
|
173 |
+
#: contact_form.php:306
|
174 |
msgid "Mail"
|
175 |
msgstr "Mail"
|
176 |
|
177 |
+
#: contact_form.php:307
|
178 |
msgid "To send mail you can use the php mail function"
|
179 |
msgstr "لإرسال البريد يمكنك استخدام وظيفة البريد PHP"
|
180 |
|
181 |
+
#: contact_form.php:311
|
182 |
msgid "Change FROM fields of the contact form"
|
183 |
msgstr "تغيير من الحقول من نموذج الاتصال"
|
184 |
|
185 |
+
#: contact_form.php:317
|
186 |
msgid "Display additional info in email"
|
187 |
msgstr "عرض معلومات اضافية في البريد الالكتروني"
|
188 |
|
189 |
+
#: contact_form.php:322
|
190 |
+
#: contact_form.php:606
|
191 |
msgid "Sent from (ip address)"
|
192 |
msgstr "ارسلت من (عنوان IP)"
|
193 |
|
194 |
+
#: contact_form.php:323
|
195 |
+
#: contact_form.php:611
|
196 |
msgid "Date/Time"
|
197 |
msgstr "الوقت/التاريخ"
|
198 |
|
199 |
+
#: contact_form.php:324
|
200 |
+
#: contact_form.php:616
|
201 |
msgid "Coming from (referer)"
|
202 |
msgstr "Coming from (referer)"
|
203 |
|
204 |
+
#: contact_form.php:325
|
205 |
+
#: contact_form.php:621
|
206 |
msgid "Using (user agent)"
|
207 |
msgstr "باستخدام (وكيل المستخدم)"
|
208 |
|
209 |
+
#: contact_form.php:329
|
210 |
msgid "Change label for fields of the contact form"
|
211 |
msgstr "تغيير تسمية حقول نموذج الاتصال"
|
212 |
|
213 |
+
#: contact_form.php:344
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
msgid "Save Changes"
|
215 |
msgstr "حفظ التغييرات"
|
216 |
|
217 |
+
#: contact_form.php:377
|
218 |
+
msgid "Thank you for contacting us."
|
219 |
+
msgstr "أشكركم على الاتصال بنا. سيتم الرد عليكم في أقرب فرصة."
|
220 |
+
|
221 |
+
#: contact_form.php:382
|
222 |
msgid "Sorry, your e-mail could not be delivered."
|
223 |
msgstr "عذراً, لم نستطيع تسليم رسالتك."
|
224 |
|
225 |
+
#: contact_form.php:439
|
226 |
msgid "You can attach files of the following types"
|
227 |
msgstr "يمكنك إرفاق الملفات من الأنواع التالية"
|
228 |
|
229 |
+
#: contact_form.php:445
|
230 |
msgid "Send me a copy"
|
231 |
msgstr "أرسل لي نسخة"
|
232 |
|
233 |
+
#: contact_form.php:455
|
234 |
msgid "Submit"
|
235 |
msgstr "تقدم"
|
236 |
|
237 |
+
#: contact_form.php:471
|
238 |
msgid "Your name is required."
|
239 |
msgstr "مطلوب اسمك."
|
240 |
|
241 |
+
#: contact_form.php:472
|
242 |
msgid "A proper e-mail address is required."
|
243 |
msgstr "مطلوب بريد الكتروني صحيح."
|
244 |
|
245 |
+
#: contact_form.php:473
|
246 |
msgid "Subject text is required."
|
247 |
msgstr "مطلوب نص الموضوع."
|
248 |
|
249 |
+
#: contact_form.php:474
|
250 |
msgid "Message text is required."
|
251 |
msgstr "مطلوب نص الرسالة."
|
252 |
|
253 |
+
#: contact_form.php:475
|
254 |
msgid "Please make corrections below and try again."
|
255 |
msgstr "يرجى إجراء التصحيحات أدناه وحاول مرة أخرى."
|
256 |
|
257 |
+
#: contact_form.php:506
|
258 |
msgid "Attachment is broken."
|
259 |
msgstr "المرفق تعطل."
|
260 |
|
261 |
+
#: contact_form.php:519
|
262 |
msgid "Please complete the CAPTCHA."
|
263 |
msgstr "يرجى استكمال رمز التحقق."
|
264 |
|
265 |
+
#: contact_form.php:629
|
266 |
msgid "Contact from"
|
267 |
msgstr "اتصل من"
|
268 |
|
269 |
+
#: contact_form.php:634
|
270 |
msgid "Name"
|
271 |
msgstr "الأسم"
|
272 |
|
273 |
+
#: contact_form.php:637
|
274 |
msgid "Email"
|
275 |
msgstr "البريد الألكتروني"
|
276 |
|
277 |
+
#: contact_form.php:640
|
278 |
msgid "Subject"
|
279 |
msgstr "موضوع الرسالة"
|
280 |
|
281 |
+
#: contact_form.php:643
|
282 |
msgid "Message"
|
283 |
msgstr "الرسالة"
|
284 |
|
285 |
+
#: contact_form.php:646
|
286 |
msgid "Site"
|
287 |
msgstr "الموقع"
|
288 |
|
289 |
+
#: contact_form.php:691
|
290 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
291 |
msgstr "إذا يمكنك أن ترى هذه MIME من العميل الخاص بك لا يقبل أنواع MIME!"
|
292 |
|
293 |
+
#: contact_form.php:745
|
294 |
msgid "FAQ"
|
295 |
msgstr "أسئلة وأجوبة"
|
296 |
|
297 |
+
#: contact_form.php:746
|
298 |
msgid "Support"
|
299 |
msgstr "دعم"
|
300 |
|
301 |
#~ msgid "E-Mail Addresse:"
|
302 |
#~ msgstr "Indirizzo e-mail:"
|
303 |
+
|
304 |
#~ msgid "Install Now"
|
305 |
#~ msgstr "Installa Ora"
|
306 |
+
|
307 |
#~ msgid "BWS Plugins"
|
308 |
#~ msgstr "BWS Plugins"
|
|
languages/contact_form-hi_IN.mo
CHANGED
Binary file
|
languages/contact_form-hi_IN.po
CHANGED
@@ -2,11 +2,10 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Team Outshine <ash.pr@outshinesolutions.com>\n"
|
9 |
-
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -28,8 +27,8 @@ msgid "Read more"
|
|
28 |
msgstr "अधिक पढ़ें"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
-
#: contact_form.php:
|
32 |
-
#: contact_form.php:
|
33 |
msgid "Settings"
|
34 |
msgstr "सेटिंग्स"
|
35 |
|
@@ -59,7 +58,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
|
|
59 |
msgstr "यदि आप कोई प्रश्न हैं, हमें plugin@bestwebsoft.com के माध्यम से संपर्क करें या हमारी साइट पर हमारे संपर्क फार्म में भरें"
|
60 |
|
61 |
#: contact_form.php:108
|
62 |
-
#: contact_form.php:
|
63 |
msgid "Contact Form Options"
|
64 |
msgstr "संपर्क प्रपत्र विकल्प"
|
65 |
|
@@ -67,277 +66,243 @@ msgstr "संपर्क प्रपत्र विकल्प"
|
|
67 |
msgid "Contact Form"
|
68 |
msgstr "संपर्क प्रपत्र"
|
69 |
|
70 |
-
#: contact_form.php:
|
71 |
-
#: contact_form.php:
|
72 |
-
#: contact_form.php:
|
73 |
-
#: contact_form.php:
|
74 |
msgid "Name:"
|
75 |
msgstr "नाम:"
|
76 |
|
77 |
-
#: contact_form.php:
|
78 |
-
#: contact_form.php:
|
79 |
-
#: contact_form.php:
|
80 |
-
#: contact_form.php:
|
81 |
msgid "E-Mail Address:"
|
82 |
msgstr "ई - मेल पता:"
|
83 |
|
84 |
-
#: contact_form.php:
|
85 |
-
#: contact_form.php:
|
86 |
-
#: contact_form.php:
|
87 |
-
#: contact_form.php:
|
88 |
msgid "Subject:"
|
89 |
msgstr "विषय:"
|
90 |
|
91 |
-
#: contact_form.php:
|
92 |
-
#: contact_form.php:
|
93 |
-
#: contact_form.php:
|
94 |
-
#: contact_form.php:
|
95 |
msgid "Message:"
|
96 |
msgstr "संदेश:"
|
97 |
|
98 |
-
#: contact_form.php:
|
99 |
-
#: contact_form.php:
|
100 |
-
#: contact_form.php:
|
101 |
-
#: contact_form.php:
|
102 |
msgid "Attachment:"
|
103 |
msgstr "लगाव:"
|
104 |
|
105 |
-
#: contact_form.php:
|
106 |
-
#: contact_form.php:
|
107 |
-
msgid "Thank you for contacting us."
|
108 |
-
msgstr "हमसे संपर्क करने के लिए धन्यवाद.हमसे संपर्क करने के लिए धन्यवाद."
|
109 |
-
|
110 |
-
#: contact_form.php:230
|
111 |
-
msgid "If the option 'Redirect to page' is selected then url field should be fillied in the following format"
|
112 |
-
msgstr ""
|
113 |
-
|
114 |
-
#: contact_form.php:237
|
115 |
-
#: contact_form.php:242
|
116 |
-
#: contact_form.php:251
|
117 |
msgid "Options saved."
|
118 |
msgstr "विकल्प बचाया."
|
119 |
|
120 |
-
#: contact_form.php:
|
121 |
msgid "Such user is not exist. Settings are not saved."
|
122 |
msgstr "इस तरह के उपयोगकर्ता मौजूद नहीं है. सेटिंग्स सहेजे नहीं जाते हैं."
|
123 |
|
124 |
-
#: contact_form.php:
|
125 |
msgid "Please input correct email. Settings are not saved."
|
126 |
msgstr "कृपया सही ईमेल इनपुट करे . सेटिंग्स सहेजे नहीं जाते हैं."
|
127 |
|
128 |
-
#: contact_form.php:
|
129 |
msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
|
130 |
msgstr "यदि आप अपनी वेबसाइट पर एक संपर्क फ़ॉर्म को जोड़ना चाहते हैं, बस कॉपी और अपनी पोस्ट या पृष्ठ या विजेट पर यह लघुकोडः को रखा:"
|
131 |
|
132 |
-
#: contact_form.php:
|
133 |
msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
|
134 |
msgstr "यदि नीचे दी गई फ़ील्ड्स में जानकारी खाली रहे हैं तो जो पंजीकरण के दौरान निर्दिष्ट किया गया था एक पता करने के लिए संदेश भेजने के लिए किया जाएगा."
|
135 |
|
136 |
-
#: contact_form.php:
|
137 |
msgid "Use email of wordpress user:"
|
138 |
msgstr "WordPress के उपयोगकर्ता का ईमेल का उपयोग करें:"
|
139 |
|
140 |
-
#: contact_form.php:
|
141 |
msgid "Select user name"
|
142 |
msgstr "उपयोगकर्ता नाम का चयन करें"
|
143 |
|
144 |
-
#: contact_form.php:
|
145 |
msgid "Set a name of user who will get messages from a contact form."
|
146 |
msgstr "उपयोगकर्ता का नाम है जो एक संपर्क फ़ॉर्म से संदेश मिल जाएगा"
|
147 |
|
148 |
-
#: contact_form.php:
|
149 |
msgid "Use this email:"
|
150 |
msgstr "इस ईमेल का उपयोग करें:"
|
151 |
|
152 |
-
#: contact_form.php:
|
153 |
msgid "Set an email address which will be used for messages receiving."
|
154 |
msgstr "एक ईमेल पता है जो संदेश प्राप्त करने के लिए इस्तेमाल किया जाएगा "
|
155 |
|
156 |
-
#: contact_form.php:
|
157 |
msgid "Additional options"
|
158 |
msgstr "अतिरिक्त विकल्प"
|
159 |
|
160 |
-
#: contact_form.php:
|
161 |
msgid "Display Attachment block"
|
162 |
msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
|
163 |
|
164 |
-
#: contact_form.php:
|
165 |
msgid "Users can attach files of the following types"
|
166 |
msgstr "उपयोगकर्ताओं को निम्नलिखित प्रकार की फ़ाइलों को संलग्न कर सकते हैं"
|
167 |
|
168 |
-
#: contact_form.php:
|
169 |
-
msgid "Display Attachment explanations"
|
170 |
-
msgstr ""
|
171 |
-
|
172 |
-
#: contact_form.php:314
|
173 |
-
msgid "Display explanations after Attachment block"
|
174 |
-
msgstr ""
|
175 |
-
|
176 |
-
#: contact_form.php:318
|
177 |
msgid "Display Send me a copy block"
|
178 |
msgstr "मुझे एक प्रति ब्लॉक भेजें प्रदर्शित करें"
|
179 |
|
180 |
-
#: contact_form.php:
|
181 |
msgid "What use?"
|
182 |
msgstr "किस का उपयोग करें?."
|
183 |
|
184 |
-
#: contact_form.php:
|
185 |
msgid "Wp-mail"
|
186 |
msgstr "Wp-mail"
|
187 |
|
188 |
-
#: contact_form.php:
|
189 |
msgid "To send mail you can use the wordpress wp_mail function"
|
190 |
msgstr "मेल भेजने के लिए आपको WordPress के wp_mail समारोह का उपयोग कर सकते हैं"
|
191 |
|
192 |
-
#: contact_form.php:
|
193 |
msgid "Mail"
|
194 |
msgstr "मेल"
|
195 |
|
196 |
-
#: contact_form.php:
|
197 |
msgid "To send mail you can use the php mail function"
|
198 |
msgstr "मेल भेजने के लिए आपको php मेल समारोह का उपयोग कर सकते हैं"
|
199 |
|
200 |
-
#: contact_form.php:
|
201 |
msgid "Change FROM fields of the contact form"
|
202 |
msgstr "संपर्क प्रपत्र की फ़ील्ड्स से बदलें"
|
203 |
|
204 |
-
#: contact_form.php:
|
205 |
msgid "Display additional info in email"
|
206 |
msgstr "ईमेल में अतिरिक्त जानकारी प्रदर्शित करें"
|
207 |
|
208 |
-
#: contact_form.php:
|
209 |
-
#: contact_form.php:
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "(आईपी पते से भेजा गया)"
|
212 |
|
213 |
-
#: contact_form.php:
|
214 |
-
#: contact_form.php:
|
215 |
msgid "Date/Time"
|
216 |
msgstr "दिनांक / समय"
|
217 |
|
218 |
-
#: contact_form.php:
|
219 |
-
#: contact_form.php:
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "से आ रहा है (referer)"
|
222 |
|
223 |
-
#: contact_form.php:
|
224 |
-
#: contact_form.php:
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "उपयोग करना (प्रयोक्ता एजेंट)"
|
227 |
|
228 |
-
#: contact_form.php:
|
229 |
msgid "Change label for fields of the contact form"
|
230 |
msgstr "संपर्क प्रपत्र का फ़ील्ड्स के लिए लेबल बदलें"
|
231 |
|
232 |
-
#: contact_form.php:
|
233 |
-
msgid "Action after the send mail"
|
234 |
-
msgstr ""
|
235 |
-
|
236 |
-
#: contact_form.php:376
|
237 |
-
#, fuzzy
|
238 |
-
msgid "Display text"
|
239 |
-
msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
|
240 |
-
|
241 |
-
#: contact_form.php:377
|
242 |
-
msgid "Text"
|
243 |
-
msgstr ""
|
244 |
-
|
245 |
-
#: contact_form.php:378
|
246 |
-
msgid "Redirect to page"
|
247 |
-
msgstr ""
|
248 |
-
|
249 |
-
#: contact_form.php:379
|
250 |
-
msgid "Url"
|
251 |
-
msgstr ""
|
252 |
-
|
253 |
-
#: contact_form.php:384
|
254 |
msgid "Save Changes"
|
255 |
msgstr "परिवर्तन सहेजें"
|
256 |
|
257 |
-
#: contact_form.php:
|
|
|
|
|
|
|
|
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "क्षमा करें, आपका ई - मेल वितरित नहीं किया जा सकता है."
|
260 |
|
261 |
-
#: contact_form.php:
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "आप निम्न प्रकार का फ़ाइलों को संलग्न कर सकते हैं"
|
264 |
|
265 |
-
#: contact_form.php:
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "मुझे एक प्रतिलिपि भेजें"
|
268 |
|
269 |
-
#: contact_form.php:
|
270 |
msgid "Submit"
|
271 |
msgstr "सबमिट"
|
272 |
|
273 |
-
#: contact_form.php:
|
274 |
msgid "Your name is required."
|
275 |
msgstr "आपका नाम की आवश्यकता है."
|
276 |
|
277 |
-
#: contact_form.php:
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "एक उचित ई - मेल पते की आवश्यकता है."
|
280 |
|
281 |
-
#: contact_form.php:
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "विषय पाठ की आवश्यकता होती है"
|
284 |
|
285 |
-
#: contact_form.php:
|
286 |
msgid "Message text is required."
|
287 |
msgstr "संदेश पाठ की आवश्यकता है."
|
288 |
|
289 |
-
#: contact_form.php:
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "सुधार नीचे बनाने के लिए और फिर प्रयास करें"
|
292 |
|
293 |
-
#: contact_form.php:
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "अटैचमेंट टूटा ."
|
296 |
|
297 |
-
#: contact_form.php:
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "कॅप्चा पूरा करें."
|
300 |
|
301 |
-
#: contact_form.php:
|
302 |
msgid "Contact from"
|
303 |
msgstr "संपर्क करें"
|
304 |
|
305 |
-
#: contact_form.php:
|
306 |
msgid "Name"
|
307 |
msgstr "नाम"
|
308 |
|
309 |
-
#: contact_form.php:
|
310 |
msgid "Email"
|
311 |
msgstr "ईमेल"
|
312 |
|
313 |
-
#: contact_form.php:
|
314 |
msgid "Subject"
|
315 |
msgstr "विषय"
|
316 |
|
317 |
-
#: contact_form.php:
|
318 |
msgid "Message"
|
319 |
msgstr "संदेश"
|
320 |
|
321 |
-
#: contact_form.php:
|
322 |
msgid "Site"
|
323 |
msgstr "साइट"
|
324 |
|
325 |
-
#: contact_form.php:
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "यदि आप अपने ग्राहक की तुलना में इस माइम देख सकते हैं MIME प्रकार स्वीकार नहीं करता है!"
|
328 |
|
329 |
-
#: contact_form.php:
|
330 |
msgid "FAQ"
|
331 |
msgstr "अक्सर पूछे जाने वाले प्रश्न"
|
332 |
|
333 |
-
#: contact_form.php:
|
334 |
msgid "Support"
|
335 |
msgstr "समर्थन"
|
336 |
|
337 |
#~ msgid "E-Mail Addresse:"
|
338 |
#~ msgstr "Indirizzo e-mail:"
|
|
|
339 |
#~ msgid "Install Now"
|
340 |
#~ msgstr "Installa Ora"
|
|
|
341 |
#~ msgid "BWS Plugins"
|
342 |
#~ msgstr "BWS Plugins"
|
343 |
-
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-04-12 19:38+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-05-23 16:26+0200\n"
|
7 |
+
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Team Outshine <ash.pr@outshinesolutions.com>\n"
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
27 |
msgstr "अधिक पढ़ें"
|
28 |
|
29 |
#: contact_form.php:78
|
30 |
+
#: contact_form.php:735
|
31 |
+
#: contact_form.php:744
|
32 |
msgid "Settings"
|
33 |
msgstr "सेटिंग्स"
|
34 |
|
58 |
msgstr "यदि आप कोई प्रश्न हैं, हमें plugin@bestwebsoft.com के माध्यम से संपर्क करें या हमारी साइट पर हमारे संपर्क फार्म में भरें"
|
59 |
|
60 |
#: contact_form.php:108
|
61 |
+
#: contact_form.php:239
|
62 |
msgid "Contact Form Options"
|
63 |
msgstr "संपर्क प्रपत्र विकल्प"
|
64 |
|
66 |
msgid "Contact Form"
|
67 |
msgstr "संपर्क प्रपत्र"
|
68 |
|
69 |
+
#: contact_form.php:135
|
70 |
+
#: contact_form.php:175
|
71 |
+
#: contact_form.php:207
|
72 |
+
#: contact_form.php:334
|
73 |
msgid "Name:"
|
74 |
msgstr "नाम:"
|
75 |
|
76 |
+
#: contact_form.php:136
|
77 |
+
#: contact_form.php:176
|
78 |
+
#: contact_form.php:208
|
79 |
+
#: contact_form.php:335
|
80 |
msgid "E-Mail Address:"
|
81 |
msgstr "ई - मेल पता:"
|
82 |
|
83 |
+
#: contact_form.php:137
|
84 |
+
#: contact_form.php:177
|
85 |
+
#: contact_form.php:209
|
86 |
+
#: contact_form.php:336
|
87 |
msgid "Subject:"
|
88 |
msgstr "विषय:"
|
89 |
|
90 |
+
#: contact_form.php:138
|
91 |
+
#: contact_form.php:178
|
92 |
+
#: contact_form.php:210
|
93 |
+
#: contact_form.php:337
|
94 |
msgid "Message:"
|
95 |
msgstr "संदेश:"
|
96 |
|
97 |
+
#: contact_form.php:139
|
98 |
+
#: contact_form.php:179
|
99 |
+
#: contact_form.php:211
|
100 |
+
#: contact_form.php:338
|
101 |
msgid "Attachment:"
|
102 |
msgstr "लगाव:"
|
103 |
|
104 |
+
#: contact_form.php:219
|
105 |
+
#: contact_form.php:228
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
msgid "Options saved."
|
107 |
msgstr "विकल्प बचाया."
|
108 |
|
109 |
+
#: contact_form.php:222
|
110 |
msgid "Such user is not exist. Settings are not saved."
|
111 |
msgstr "इस तरह के उपयोगकर्ता मौजूद नहीं है. सेटिंग्स सहेजे नहीं जाते हैं."
|
112 |
|
113 |
+
#: contact_form.php:231
|
114 |
msgid "Please input correct email. Settings are not saved."
|
115 |
msgstr "कृपया सही ईमेल इनपुट करे . सेटिंग्स सहेजे नहीं जाते हैं."
|
116 |
|
117 |
+
#: contact_form.php:244
|
118 |
msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
|
119 |
msgstr "यदि आप अपनी वेबसाइट पर एक संपर्क फ़ॉर्म को जोड़ना चाहते हैं, बस कॉपी और अपनी पोस्ट या पृष्ठ या विजेट पर यह लघुकोडः को रखा:"
|
120 |
|
121 |
+
#: contact_form.php:245
|
122 |
msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
|
123 |
msgstr "यदि नीचे दी गई फ़ील्ड्स में जानकारी खाली रहे हैं तो जो पंजीकरण के दौरान निर्दिष्ट किया गया था एक पता करने के लिए संदेश भेजने के लिए किया जाएगा."
|
124 |
|
125 |
+
#: contact_form.php:249
|
126 |
msgid "Use email of wordpress user:"
|
127 |
msgstr "WordPress के उपयोगकर्ता का ईमेल का उपयोग करें:"
|
128 |
|
129 |
+
#: contact_form.php:255
|
130 |
msgid "Select user name"
|
131 |
msgstr "उपयोगकर्ता नाम का चयन करें"
|
132 |
|
133 |
+
#: contact_form.php:260
|
134 |
msgid "Set a name of user who will get messages from a contact form."
|
135 |
msgstr "उपयोगकर्ता का नाम है जो एक संपर्क फ़ॉर्म से संदेश मिल जाएगा"
|
136 |
|
137 |
+
#: contact_form.php:264
|
138 |
msgid "Use this email:"
|
139 |
msgstr "इस ईमेल का उपयोग करें:"
|
140 |
|
141 |
+
#: contact_form.php:270
|
142 |
msgid "Set an email address which will be used for messages receiving."
|
143 |
msgstr "एक ईमेल पता है जो संदेश प्राप्त करने के लिए इस्तेमाल किया जाएगा "
|
144 |
|
145 |
+
#: contact_form.php:274
|
146 |
msgid "Additional options"
|
147 |
msgstr "अतिरिक्त विकल्प"
|
148 |
|
149 |
+
#: contact_form.php:277
|
150 |
msgid "Display Attachment block"
|
151 |
msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
|
152 |
|
153 |
+
#: contact_form.php:282
|
154 |
msgid "Users can attach files of the following types"
|
155 |
msgstr "उपयोगकर्ताओं को निम्नलिखित प्रकार की फ़ाइलों को संलग्न कर सकते हैं"
|
156 |
|
157 |
+
#: contact_form.php:286
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
msgid "Display Send me a copy block"
|
159 |
msgstr "मुझे एक प्रति ब्लॉक भेजें प्रदर्शित करें"
|
160 |
|
161 |
+
#: contact_form.php:292
|
162 |
msgid "What use?"
|
163 |
msgstr "किस का उपयोग करें?."
|
164 |
|
165 |
+
#: contact_form.php:297
|
166 |
msgid "Wp-mail"
|
167 |
msgstr "Wp-mail"
|
168 |
|
169 |
+
#: contact_form.php:298
|
170 |
msgid "To send mail you can use the wordpress wp_mail function"
|
171 |
msgstr "मेल भेजने के लिए आपको WordPress के wp_mail समारोह का उपयोग कर सकते हैं"
|
172 |
|
173 |
+
#: contact_form.php:306
|
174 |
msgid "Mail"
|
175 |
msgstr "मेल"
|
176 |
|
177 |
+
#: contact_form.php:307
|
178 |
msgid "To send mail you can use the php mail function"
|
179 |
msgstr "मेल भेजने के लिए आपको php मेल समारोह का उपयोग कर सकते हैं"
|
180 |
|
181 |
+
#: contact_form.php:311
|
182 |
msgid "Change FROM fields of the contact form"
|
183 |
msgstr "संपर्क प्रपत्र की फ़ील्ड्स से बदलें"
|
184 |
|
185 |
+
#: contact_form.php:317
|
186 |
msgid "Display additional info in email"
|
187 |
msgstr "ईमेल में अतिरिक्त जानकारी प्रदर्शित करें"
|
188 |
|
189 |
+
#: contact_form.php:322
|
190 |
+
#: contact_form.php:606
|
191 |
msgid "Sent from (ip address)"
|
192 |
msgstr "(आईपी पते से भेजा गया)"
|
193 |
|
194 |
+
#: contact_form.php:323
|
195 |
+
#: contact_form.php:611
|
196 |
msgid "Date/Time"
|
197 |
msgstr "दिनांक / समय"
|
198 |
|
199 |
+
#: contact_form.php:324
|
200 |
+
#: contact_form.php:616
|
201 |
msgid "Coming from (referer)"
|
202 |
msgstr "से आ रहा है (referer)"
|
203 |
|
204 |
+
#: contact_form.php:325
|
205 |
+
#: contact_form.php:621
|
206 |
msgid "Using (user agent)"
|
207 |
msgstr "उपयोग करना (प्रयोक्ता एजेंट)"
|
208 |
|
209 |
+
#: contact_form.php:329
|
210 |
msgid "Change label for fields of the contact form"
|
211 |
msgstr "संपर्क प्रपत्र का फ़ील्ड्स के लिए लेबल बदलें"
|
212 |
|
213 |
+
#: contact_form.php:344
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
msgid "Save Changes"
|
215 |
msgstr "परिवर्तन सहेजें"
|
216 |
|
217 |
+
#: contact_form.php:377
|
218 |
+
msgid "Thank you for contacting us."
|
219 |
+
msgstr "हमसे संपर्क करने के लिए धन्यवाद.हमसे संपर्क करने के लिए धन्यवाद."
|
220 |
+
|
221 |
+
#: contact_form.php:382
|
222 |
msgid "Sorry, your e-mail could not be delivered."
|
223 |
msgstr "क्षमा करें, आपका ई - मेल वितरित नहीं किया जा सकता है."
|
224 |
|
225 |
+
#: contact_form.php:439
|
226 |
msgid "You can attach files of the following types"
|
227 |
msgstr "आप निम्न प्रकार का फ़ाइलों को संलग्न कर सकते हैं"
|
228 |
|
229 |
+
#: contact_form.php:445
|
230 |
msgid "Send me a copy"
|
231 |
msgstr "मुझे एक प्रतिलिपि भेजें"
|
232 |
|
233 |
+
#: contact_form.php:455
|
234 |
msgid "Submit"
|
235 |
msgstr "सबमिट"
|
236 |
|
237 |
+
#: contact_form.php:471
|
238 |
msgid "Your name is required."
|
239 |
msgstr "आपका नाम की आवश्यकता है."
|
240 |
|
241 |
+
#: contact_form.php:472
|
242 |
msgid "A proper e-mail address is required."
|
243 |
msgstr "एक उचित ई - मेल पते की आवश्यकता है."
|
244 |
|
245 |
+
#: contact_form.php:473
|
246 |
msgid "Subject text is required."
|
247 |
msgstr "विषय पाठ की आवश्यकता होती है"
|
248 |
|
249 |
+
#: contact_form.php:474
|
250 |
msgid "Message text is required."
|
251 |
msgstr "संदेश पाठ की आवश्यकता है."
|
252 |
|
253 |
+
#: contact_form.php:475
|
254 |
msgid "Please make corrections below and try again."
|
255 |
msgstr "सुधार नीचे बनाने के लिए और फिर प्रयास करें"
|
256 |
|
257 |
+
#: contact_form.php:506
|
258 |
msgid "Attachment is broken."
|
259 |
msgstr "अटैचमेंट टूटा ."
|
260 |
|
261 |
+
#: contact_form.php:519
|
262 |
msgid "Please complete the CAPTCHA."
|
263 |
msgstr "कॅप्चा पूरा करें."
|
264 |
|
265 |
+
#: contact_form.php:629
|
266 |
msgid "Contact from"
|
267 |
msgstr "संपर्क करें"
|
268 |
|
269 |
+
#: contact_form.php:634
|
270 |
msgid "Name"
|
271 |
msgstr "नाम"
|
272 |
|
273 |
+
#: contact_form.php:637
|
274 |
msgid "Email"
|
275 |
msgstr "ईमेल"
|
276 |
|
277 |
+
#: contact_form.php:640
|
278 |
msgid "Subject"
|
279 |
msgstr "विषय"
|
280 |
|
281 |
+
#: contact_form.php:643
|
282 |
msgid "Message"
|
283 |
msgstr "संदेश"
|
284 |
|
285 |
+
#: contact_form.php:646
|
286 |
msgid "Site"
|
287 |
msgstr "साइट"
|
288 |
|
289 |
+
#: contact_form.php:691
|
290 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
291 |
msgstr "यदि आप अपने ग्राहक की तुलना में इस माइम देख सकते हैं MIME प्रकार स्वीकार नहीं करता है!"
|
292 |
|
293 |
+
#: contact_form.php:745
|
294 |
msgid "FAQ"
|
295 |
msgstr "अक्सर पूछे जाने वाले प्रश्न"
|
296 |
|
297 |
+
#: contact_form.php:746
|
298 |
msgid "Support"
|
299 |
msgstr "समर्थन"
|
300 |
|
301 |
#~ msgid "E-Mail Addresse:"
|
302 |
#~ msgstr "Indirizzo e-mail:"
|
303 |
+
|
304 |
#~ msgid "Install Now"
|
305 |
#~ msgstr "Installa Ora"
|
306 |
+
|
307 |
#~ msgid "BWS Plugins"
|
308 |
#~ msgstr "BWS Plugins"
|
|
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, contakt form, request, contact me, feedback form, feedback, contact button, contact form plugin, contacts form plugin, attachment, send, copy, atachment, send copy
|
5 |
Requires at least: 2.9
|
6 |
Tested up to: 3.4.1
|
7 |
-
Stable tag: 3.
|
8 |
|
9 |
Add Contact Form to your WordPress website.
|
10 |
|
@@ -100,6 +100,9 @@ Here is an example for German language files.
|
|
100 |
|
101 |
== Changelog ==
|
102 |
|
|
|
|
|
|
|
103 |
= V3.22 - 24.07.2012 =
|
104 |
* NEW : Japanese language file is added to the plugin.
|
105 |
* Bugfix : Cross Site Request Forgery bug was fixed.
|
@@ -223,6 +226,9 @@ Here is an example for German language files.
|
|
223 |
|
224 |
== Upgrade Notice ==
|
225 |
|
|
|
|
|
|
|
226 |
= V3.22 =
|
227 |
Japanese language file is added to the plugin. Cross Site Request Forgery bug was fixed.
|
228 |
|
4 |
Tags: Contact Form, text, contact, form, contacts, contakt form, request, contact me, feedback form, feedback, contact button, contact form plugin, contacts form plugin, attachment, send, copy, atachment, send copy
|
5 |
Requires at least: 2.9
|
6 |
Tested up to: 3.4.1
|
7 |
+
Stable tag: 3.23
|
8 |
|
9 |
Add Contact Form to your WordPress website.
|
10 |
|
100 |
|
101 |
== Changelog ==
|
102 |
|
103 |
+
= V3.23 - 03.08.2012 =
|
104 |
+
* Bugfix : Cross Site Request Forgery bug was fixed.
|
105 |
+
|
106 |
= V3.22 - 24.07.2012 =
|
107 |
* NEW : Japanese language file is added to the plugin.
|
108 |
* Bugfix : Cross Site Request Forgery bug was fixed.
|
226 |
|
227 |
== Upgrade Notice ==
|
228 |
|
229 |
+
= V3.23 =
|
230 |
+
Cross Site Request Forgery bug was fixed.
|
231 |
+
|
232 |
= V3.22 =
|
233 |
Japanese language file is added to the plugin. Cross Site Request Forgery bug was fixed.
|
234 |
|
screenshot-1.jpg
CHANGED
File without changes
|
screenshot-2.jpg
CHANGED
File without changes
|
screenshot-3.jpg
CHANGED
File without changes
|
screenshot-5.jpg
CHANGED
File without changes
|