Version Description
- The required WordPress version has been changed and now requires WordPress 2.9 or higher. If you use WordPress 2.8, you will need to upgrade WordPress.
- When you insert multi-line text input into the message body of HTML-formatted mail, Contact Form 7 automatically applies an 'autop' (auto paragraph) filter to the text. This makes it so that the original user input styles remain -- and does not break paragraph styles in the HTML view.
- Translations for German (Ivan Graf), Finnish (Mediajalostamo), Thai (kazama) and Danish (Georg S. Adamsen) have been updated.
Releases
=
Download this release
Release Info
Developer | takayukister |
Plugin | Contact Form 7 |
Version | 2.3 |
Comparing to | |
See all releases |
Code changes from version 2.2.1 to 2.3
- includes/classes.php +6 -3
- includes/controller.php +2 -2
- includes/functions.php +0 -39
- languages/wpcf7-da_DK.mo +0 -0
- languages/wpcf7-da_DK.po +144 -137
- languages/wpcf7-de_DE.mo +0 -0
- languages/wpcf7-de_DE.po +3 -3
- languages/wpcf7-fi.mo +0 -0
- languages/wpcf7-fi.po +722 -204
- languages/wpcf7-th.mo +0 -0
- languages/wpcf7-th.po +612 -295
- modules/file.php +2 -0
- modules/quiz.php +2 -0
- modules/select.php +2 -0
- modules/submit.php +2 -0
- modules/text.php +2 -0
- readme.txt +11 -19
- wp-contact-form-7.php +2 -2
includes/classes.php
CHANGED
@@ -273,7 +273,7 @@ class WPCF7_ContactForm {
|
|
273 |
|
274 |
$query_string = '';
|
275 |
foreach ( $c as $key => $data )
|
276 |
-
$query_string .= $key . '=' . urlencode( stripslashes( $data ) ) . '&';
|
277 |
|
278 |
$response = akismet_http_post( $query_string, $akismet_api_host,
|
279 |
'/1.1/comment-check', $akismet_api_port );
|
@@ -384,8 +384,11 @@ class WPCF7_ContactForm {
|
|
384 |
else
|
385 |
$replaced = $submitted;
|
386 |
|
387 |
-
if ( $html )
|
388 |
-
$replaced =
|
|
|
|
|
|
|
389 |
|
390 |
$replaced = apply_filters( 'wpcf7_mail_tag_replaced', $replaced, $submitted );
|
391 |
|
273 |
|
274 |
$query_string = '';
|
275 |
foreach ( $c as $key => $data )
|
276 |
+
$query_string .= $key . '=' . urlencode( stripslashes( (string) $data ) ) . '&';
|
277 |
|
278 |
$response = akismet_http_post( $query_string, $akismet_api_host,
|
279 |
'/1.1/comment-check', $akismet_api_port );
|
384 |
else
|
385 |
$replaced = $submitted;
|
386 |
|
387 |
+
if ( $html ) {
|
388 |
+
$replaced = strip_tags( $replaced );
|
389 |
+
$replaced = wptexturize( $replaced );
|
390 |
+
$replaced = wpautop( $replaced );
|
391 |
+
}
|
392 |
|
393 |
$replaced = apply_filters( 'wpcf7_mail_tag_replaced', $replaced, $submitted );
|
394 |
|
includes/controller.php
CHANGED
@@ -28,7 +28,7 @@ function wpcf7_ajax_onload() {
|
|
28 |
}
|
29 |
}
|
30 |
|
31 |
-
$echo =
|
32 |
|
33 |
if ( $_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest' ) {
|
34 |
@header( 'Content-Type: application/json; charset=' . get_option( 'blog_charset' ) );
|
@@ -100,7 +100,7 @@ function wpcf7_ajax_json_echo() {
|
|
100 |
}
|
101 |
}
|
102 |
|
103 |
-
$echo =
|
104 |
|
105 |
if ( $_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest' ) {
|
106 |
@header( 'Content-Type: application/json; charset=' . get_option( 'blog_charset' ) );
|
28 |
}
|
29 |
}
|
30 |
|
31 |
+
$echo = json_encode( $items );
|
32 |
|
33 |
if ( $_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest' ) {
|
34 |
@header( 'Content-Type: application/json; charset=' . get_option( 'blog_charset' ) );
|
100 |
}
|
101 |
}
|
102 |
|
103 |
+
$echo = json_encode( $items );
|
104 |
|
105 |
if ( $_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest' ) {
|
106 |
@header( 'Content-Type: application/json; charset=' . get_option( 'blog_charset' ) );
|
includes/functions.php
CHANGED
@@ -124,45 +124,6 @@ function wpcf7_upload_dir( $type = false ) {
|
|
124 |
return array( 'dir' => $dir, 'url' => $url );
|
125 |
}
|
126 |
|
127 |
-
function wpcf7_json( $items ) {
|
128 |
-
if ( is_array( $items ) ) {
|
129 |
-
if ( empty( $items ) )
|
130 |
-
return 'null';
|
131 |
-
|
132 |
-
$keys = array_keys( $items );
|
133 |
-
$all_int = true;
|
134 |
-
foreach ( $keys as $key ) {
|
135 |
-
if ( ! is_int( $key ) ) {
|
136 |
-
$all_int = false;
|
137 |
-
break;
|
138 |
-
}
|
139 |
-
}
|
140 |
-
|
141 |
-
if ( $all_int ) {
|
142 |
-
$children = array();
|
143 |
-
foreach ( $items as $item ) {
|
144 |
-
$children[] = wpcf7_json( $item );
|
145 |
-
}
|
146 |
-
return '[' . join( ', ', $children ) . ']';
|
147 |
-
} else { // Object
|
148 |
-
$children = array();
|
149 |
-
foreach ( $items as $key => $item ) {
|
150 |
-
$key = '"' . esc_js( (string) $key ) . '"';
|
151 |
-
$children[] = $key . ': ' . wpcf7_json( $item );
|
152 |
-
}
|
153 |
-
return '{ ' . join( ', ', $children ) . ' }';
|
154 |
-
}
|
155 |
-
} elseif ( is_numeric( $items ) ) {
|
156 |
-
return (string) $items;
|
157 |
-
} elseif ( is_bool( $items ) ) {
|
158 |
-
return $items ? '1' : '0';
|
159 |
-
} elseif ( is_null( $items ) ) {
|
160 |
-
return 'null';
|
161 |
-
} else {
|
162 |
-
return '"' . esc_js( (string) $items ) . '"';
|
163 |
-
}
|
164 |
-
}
|
165 |
-
|
166 |
function wpcf7_l10n() {
|
167 |
$l10n = array(
|
168 |
'af' => __( 'Afrikaans', 'wpcf7' ),
|
124 |
return array( 'dir' => $dir, 'url' => $url );
|
125 |
}
|
126 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
function wpcf7_l10n() {
|
128 |
$l10n = array(
|
129 |
'af' => __( 'Afrikaans', 'wpcf7' ),
|
languages/wpcf7-da_DK.mo
CHANGED
Binary file
|
languages/wpcf7-da_DK.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Contact Form 7 version 2.1
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2010-
|
6 |
-
"PO-Revision-Date: 2010-
|
7 |
"Last-Translator: Team Blogos <wordpress@blogos.dk>\n"
|
8 |
"Language-Team: Team Blogos <wordpress@blogos.dk>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -37,7 +37,7 @@ msgstr "Redigér"
|
|
37 |
|
38 |
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:162
|
39 |
msgid "Generate Tag"
|
40 |
-
msgstr "
|
41 |
|
42 |
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:163
|
43 |
msgid "Show"
|
@@ -47,79 +47,79 @@ msgstr "Vis"
|
|
47 |
msgid "Hide"
|
48 |
msgstr "Skjul"
|
49 |
|
50 |
-
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:
|
51 |
msgid "Contact form"
|
52 |
msgstr "Kontaktformular"
|
53 |
|
54 |
-
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:
|
55 |
msgid "Settings"
|
56 |
msgstr "Indstillinger"
|
57 |
|
58 |
-
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:
|
59 |
msgid "http://contactform7.com/"
|
60 |
msgstr "http://contactform7.com/"
|
61 |
|
62 |
-
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:
|
63 |
msgid "Contactform7.com"
|
64 |
msgstr "Contactform7.com"
|
65 |
|
66 |
-
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:
|
67 |
msgid "http://contactform7.com/docs/"
|
68 |
msgstr "http://contactform7.com/docs/"
|
69 |
|
70 |
-
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:
|
71 |
msgid "Docs"
|
72 |
msgstr "Dokumenter"
|
73 |
|
74 |
-
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:
|
75 |
msgid "http://contactform7.com/faq/"
|
76 |
msgstr "http://contactform7.com/faq/"
|
77 |
|
78 |
-
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:
|
79 |
msgid "FAQ"
|
80 |
msgstr "FAQ"
|
81 |
|
82 |
-
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:
|
83 |
msgid "http://contactform7.com/support/"
|
84 |
msgstr "http://contactform7.com/support/"
|
85 |
|
86 |
-
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:
|
87 |
msgid "Support"
|
88 |
msgstr "Support"
|
89 |
|
90 |
-
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:
|
91 |
msgid "Contact form created."
|
92 |
msgstr "Kontaktformular oprettet."
|
93 |
|
94 |
-
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:
|
95 |
msgid "Contact form saved."
|
96 |
msgstr "Kontaktformular gemt."
|
97 |
|
98 |
-
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:
|
99 |
msgid "Contact form deleted."
|
100 |
msgstr "Kontaktformular slettet."
|
101 |
|
102 |
-
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:
|
103 |
msgid "Database table created."
|
104 |
msgstr "Databasetabel oprettet."
|
105 |
|
106 |
-
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:
|
107 |
msgid "Failed to create database table."
|
108 |
msgstr "Oprettelse af databasetabel mislykkedes."
|
109 |
|
110 |
-
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:
|
111 |
msgid "Contact Form 7 needs your support. Please donate today."
|
112 |
msgstr "Kontaktformular 7 behøver din støtte. Send en gave i dag."
|
113 |
|
114 |
-
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:
|
115 |
msgid "Your contribution is needed for making this plugin better."
|
116 |
msgstr "Dit bidrag behøves, hvis pluginnet skal blive bedre."
|
117 |
|
118 |
-
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:
|
119 |
msgid "http://contactform7.com/donate/"
|
120 |
msgstr "http://contactform7.com/donate/"
|
121 |
|
122 |
-
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:
|
123 |
msgid "Donate"
|
124 |
msgstr "Donér"
|
125 |
|
@@ -239,7 +239,7 @@ msgstr "Eller"
|
|
239 |
msgid "(select language)"
|
240 |
msgstr "(vælg sprog)"
|
241 |
|
242 |
-
#: d:\wordpress\plugins\contact-form-7/includes/classes.php:
|
243 |
msgid "Untitled"
|
244 |
msgstr "Uden titel"
|
245 |
|
@@ -414,327 +414,331 @@ msgid "French"
|
|
414 |
msgstr "Fransk"
|
415 |
|
416 |
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:186
|
|
|
|
|
|
|
|
|
417 |
msgid "Georgian"
|
418 |
msgstr "Georgisk"
|
419 |
|
420 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
421 |
msgid "German"
|
422 |
msgstr "Tysk"
|
423 |
|
424 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
425 |
msgid "Greek"
|
426 |
msgstr "Græsk"
|
427 |
|
428 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
429 |
msgid "Hebrew"
|
430 |
msgstr "Hebraisk"
|
431 |
|
432 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
433 |
msgid "Hindi"
|
434 |
msgstr "Hindu"
|
435 |
|
436 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
437 |
msgid "Hungarian"
|
438 |
msgstr "Ungarsk"
|
439 |
|
440 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
441 |
msgid "Indonesian"
|
442 |
msgstr "Indonesisk"
|
443 |
|
444 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
445 |
msgid "Italian"
|
446 |
msgstr "Italiensk"
|
447 |
|
448 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
449 |
msgid "Japanese"
|
450 |
msgstr "Japansk"
|
451 |
|
452 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
453 |
msgid "Korean"
|
454 |
msgstr "Koreansk"
|
455 |
|
456 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
457 |
msgid "Latvian"
|
458 |
msgstr "Lettisk"
|
459 |
|
460 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
461 |
msgid "Lithuanian"
|
462 |
msgstr "Litauisk"
|
463 |
|
464 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
465 |
msgid "Malayalam"
|
466 |
msgstr "Malayalam"
|
467 |
|
468 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
469 |
msgid "Norwegian"
|
470 |
msgstr "Norsk"
|
471 |
|
472 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
473 |
msgid "Persian"
|
474 |
msgstr "Persisk (farsi)"
|
475 |
|
476 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
477 |
msgid "Polish"
|
478 |
msgstr "Polsk"
|
479 |
|
480 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
481 |
msgid "Portuguese"
|
482 |
msgstr "Portugisisk"
|
483 |
|
484 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
485 |
msgid "Russian"
|
486 |
msgstr "Russisk"
|
487 |
|
488 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
489 |
msgid "Romanian"
|
490 |
msgstr "Rumænsk"
|
491 |
|
492 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
493 |
msgid "Serbian"
|
494 |
msgstr "Serbisk"
|
495 |
|
496 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
497 |
msgid "Slovak"
|
498 |
msgstr "Slovakisk"
|
499 |
|
500 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
501 |
msgid "Slovene"
|
502 |
msgstr "Slovensk"
|
503 |
|
504 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
505 |
msgid "Spanish"
|
506 |
msgstr "Spansk"
|
507 |
|
508 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
509 |
msgid "Swedish"
|
510 |
msgstr "Svensk"
|
511 |
|
512 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
513 |
msgid "Thai"
|
514 |
msgstr "Thailandsk"
|
515 |
|
516 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
517 |
msgid "Turkish"
|
518 |
msgstr "Tyrkisk"
|
519 |
|
520 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
521 |
msgid "Ukrainian"
|
522 |
msgstr "Ukrainsk"
|
523 |
|
524 |
-
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:
|
525 |
msgid "Vietnamese"
|
526 |
msgstr "Vietnamesisk"
|
527 |
|
528 |
-
#: d:\wordpress\plugins\contact-form-7/modules/acceptance.php:
|
529 |
msgid "Acceptance"
|
530 |
msgstr "Accept"
|
531 |
|
532 |
-
#: d:\wordpress\plugins\contact-form-7/modules/acceptance.php:
|
533 |
-
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:
|
534 |
-
#: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:
|
535 |
-
#: d:\wordpress\plugins\contact-form-7/modules/file.php:
|
536 |
msgid "Name"
|
537 |
msgstr "Navn"
|
538 |
|
539 |
-
#: d:\wordpress\plugins\contact-form-7/modules/acceptance.php:
|
540 |
-
#: d:\wordpress\plugins\contact-form-7/modules/acceptance.php:
|
541 |
-
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:213
|
542 |
-
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:216
|
543 |
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:221
|
544 |
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:224
|
545 |
-
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:
|
546 |
-
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:
|
547 |
-
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:
|
548 |
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:247
|
549 |
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:250
|
550 |
-
#: d:\wordpress\plugins\contact-form-7/modules/
|
551 |
-
#: d:\wordpress\plugins\contact-form-7/modules/
|
552 |
-
#: d:\wordpress\plugins\contact-form-7/modules/
|
553 |
-
#: d:\wordpress\plugins\contact-form-7/modules/
|
554 |
-
#: d:\wordpress\plugins\contact-form-7/modules/file.php:
|
555 |
-
#: d:\wordpress\plugins\contact-form-7/modules/file.php:
|
|
|
|
|
556 |
msgid "optional"
|
557 |
msgstr "valgfrit"
|
558 |
|
559 |
-
#: d:\wordpress\plugins\contact-form-7/modules/acceptance.php:
|
560 |
msgid "Make this checkbox checked by default?"
|
561 |
msgstr "Skal afkrydsningsfeltet være markeret som standard?"
|
562 |
|
563 |
# tjekkes
|
564 |
-
#: d:\wordpress\plugins\contact-form-7/modules/acceptance.php:
|
565 |
msgid "Make this checkbox work inversely?"
|
566 |
msgstr "Skal afkrydsningsfeltet virke omvendt?"
|
567 |
|
568 |
-
#: d:\wordpress\plugins\contact-form-7/modules/acceptance.php:
|
569 |
msgid "* That means visitor who accepts the term unchecks it."
|
570 |
msgstr "* Det betyder, at en besøgende, som accepterer betingelserne, afmarkerer det."
|
571 |
|
572 |
-
#: d:\wordpress\plugins\contact-form-7/modules/acceptance.php:
|
573 |
-
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:
|
574 |
-
#: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:
|
575 |
-
#: d:\wordpress\plugins\contact-form-7/modules/file.php:
|
576 |
msgid "Copy this code and paste it into the form left."
|
577 |
msgstr "Kopier og indsæt denne kode i formularen til venstre"
|
578 |
|
579 |
-
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:
|
580 |
msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
|
581 |
msgstr "For at bruge CAPTCHA skal du have<a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> pluginnet installeret."
|
582 |
|
583 |
-
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:
|
584 |
msgid "The code that sender entered does not match the CAPTCHA"
|
585 |
msgstr "Svaret, som afsender indtastede, matcher ikke CAPTCHA-kontrollen"
|
586 |
|
587 |
-
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:
|
588 |
msgid "Your entered code is incorrect."
|
589 |
msgstr "Dit indtastede svar er forkert."
|
590 |
|
591 |
-
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:
|
592 |
msgid "CAPTCHA"
|
593 |
msgstr "CAPTCHA-kontrol"
|
594 |
|
595 |
-
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:
|
596 |
msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
|
597 |
msgstr "Bemærk, at du for at bruge CAPTCHA, skal have Really Simple CAPTCHA-pluginnet installeret."
|
598 |
|
599 |
-
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:
|
600 |
msgid "Image settings"
|
601 |
msgstr "Billedindstillinger"
|
602 |
|
603 |
-
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:
|
604 |
msgid "Foreground color"
|
605 |
msgstr "Forgrundsfarve"
|
606 |
|
607 |
-
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:
|
608 |
msgid "Background color"
|
609 |
msgstr "Baggrundsfarve"
|
610 |
|
611 |
-
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:
|
612 |
msgid "Image size"
|
613 |
msgstr "Billedstørrelse"
|
614 |
|
615 |
-
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:
|
616 |
msgid "Small"
|
617 |
msgstr "Lille"
|
618 |
|
619 |
-
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:
|
620 |
msgid "Medium"
|
621 |
msgstr "Medium"
|
622 |
|
623 |
-
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:
|
624 |
msgid "Large"
|
625 |
msgstr "Stor"
|
626 |
|
627 |
-
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:
|
628 |
msgid "Input field settings"
|
629 |
msgstr "Indstillinger for feltet"
|
630 |
|
631 |
-
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:
|
632 |
msgid "For image"
|
633 |
msgstr "For billedet"
|
634 |
|
635 |
-
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:
|
636 |
msgid "For input field"
|
637 |
msgstr "For indtastningsfeltet"
|
638 |
|
639 |
-
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:
|
640 |
#, php-format
|
641 |
msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
|
642 |
msgstr "Denne kontaktformular indeholder CAPTCHA-felter, men den midlertidige mappe til filerne (%s) eksisterer ikke eller er skrivbar. Du kan oprette mappen eller ændre adgangstilladelserne (permissions) selv."
|
643 |
|
644 |
-
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:
|
645 |
msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
|
646 |
msgstr "Denne kontaktformular indeholder CAPTCHA-felter, men de nødvendige biblioteker (GD og FreeType) er ikke tilgængelige på din server."
|
647 |
|
648 |
-
#: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:
|
649 |
msgid "Checkboxes"
|
650 |
msgstr "Afkrydsningsfelt"
|
651 |
|
652 |
-
#: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:
|
653 |
msgid "Radio buttons"
|
654 |
msgstr "Radioknapper"
|
655 |
|
656 |
-
#: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:
|
657 |
-
#: d:\wordpress\plugins\contact-form-7/modules/file.php:
|
658 |
msgid "Required field?"
|
659 |
msgstr "Påkrævet felt?"
|
660 |
|
661 |
-
#: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:
|
662 |
msgid "Choices"
|
663 |
msgstr "Valg"
|
664 |
|
665 |
-
#: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:
|
666 |
msgid "* One choice per line."
|
667 |
msgstr "* Et valg per linje."
|
668 |
|
669 |
-
#: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:
|
670 |
msgid "Put a label first, a checkbox last?"
|
671 |
msgstr "Vil du have etiketten forrest og afkrydsningsfeltet sidst?"
|
672 |
|
673 |
-
#: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:
|
674 |
msgid "Wrap each item with <label> tag?"
|
675 |
msgstr "Sæt <label>-tag uden om hver?"
|
676 |
|
677 |
-
#: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:
|
678 |
msgid "Make checkboxes exclusive?"
|
679 |
msgstr "Skal afkrydsningsfelter være eksklusive? (altså så der kun kan vælges én?)"
|
680 |
|
681 |
-
#: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:
|
682 |
msgid "And, put this code into the Mail fields below."
|
683 |
msgstr "Og indsæt denne kode i Mail-felterne nedenfor."
|
684 |
|
685 |
-
#: d:\wordpress\plugins\contact-form-7/modules/file.php:
|
686 |
msgid "Uploading a file fails for any reason"
|
687 |
msgstr "Uploadning af en fil mislykkedes af en eller anden grund"
|
688 |
|
689 |
-
#: d:\wordpress\plugins\contact-form-7/modules/file.php:
|
690 |
msgid "Failed to upload file."
|
691 |
msgstr "Filupload mislykkedes"
|
692 |
|
693 |
-
#: d:\wordpress\plugins\contact-form-7/modules/file.php:
|
694 |
msgid "Uploaded file is not allowed file type"
|
695 |
msgstr "Uploadet fil har ikke en tilladt filtype"
|
696 |
|
697 |
-
#: d:\wordpress\plugins\contact-form-7/modules/file.php:
|
698 |
msgid "This file type is not allowed."
|
699 |
msgstr "Denne filtype er ikke tilladt."
|
700 |
|
701 |
-
#: d:\wordpress\plugins\contact-form-7/modules/file.php:
|
702 |
msgid "Uploaded file is too large"
|
703 |
msgstr "Uploadet fil er for stor"
|
704 |
|
705 |
-
#: d:\wordpress\plugins\contact-form-7/modules/file.php:
|
706 |
msgid "This file is too large."
|
707 |
msgstr "Filen er for stor."
|
708 |
|
709 |
-
#: d:\wordpress\plugins\contact-form-7/modules/file.php:
|
710 |
msgid "Uploading a file fails for PHP error"
|
711 |
msgstr "Uploadning af en fil mislykkedes på grund af en PHP-fejl"
|
712 |
|
713 |
-
#: d:\wordpress\plugins\contact-form-7/modules/file.php:
|
714 |
msgid "Failed to upload file. Error occurred."
|
715 |
msgstr "Filupload mislykkedes. En fejl opstod."
|
716 |
|
717 |
-
#: d:\wordpress\plugins\contact-form-7/modules/file.php:
|
718 |
msgid "File upload"
|
719 |
msgstr "Filupload"
|
720 |
|
721 |
-
#: d:\wordpress\plugins\contact-form-7/modules/file.php:
|
722 |
msgid "File size limit"
|
723 |
msgstr "Begrænsning på filstørrelse"
|
724 |
|
725 |
-
#: d:\wordpress\plugins\contact-form-7/modules/file.php:
|
726 |
msgid "bytes"
|
727 |
msgstr "bytes"
|
728 |
|
729 |
-
#: d:\wordpress\plugins\contact-form-7/modules/file.php:
|
730 |
msgid "Acceptable file types"
|
731 |
msgstr "Tilladte filtyper"
|
732 |
|
733 |
-
#: d:\wordpress\plugins\contact-form-7/modules/file.php:
|
734 |
msgid "And, put this code into the File Attachments field below."
|
735 |
msgstr "Og indsæt denne kode i feltet Filvedhæftninger nedenfor."
|
736 |
|
737 |
-
#: d:\wordpress\plugins\contact-form-7/modules/file.php:
|
738 |
#, php-format
|
739 |
msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
|
740 |
msgstr "Denne kontaktformular indeholder felter for filuploadning, men den midlertidige mappe til filerne (%s) eksisterer ikke eller er skrivbar. Du kan oprette mappen eller ændre adgangstilladelserne (permissions) selv."
|
@@ -743,76 +747,76 @@ msgstr "Denne kontaktformular indeholder felter for filuploadning, men den midle
|
|
743 |
msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
|
744 |
msgstr "Denne kontaktformular indeholder [icl]-tags, men de bruges ikke mere og virker ikke længere med denne version af Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">Der er en simplere måde at oprette kontaktformularer på andre sprog på</a>, og du anbefales at bruge den."
|
745 |
|
746 |
-
#: d:\wordpress\plugins\contact-form-7/modules/quiz.php:
|
747 |
msgid "Sender doesn't enter the correct answer to the quiz"
|
748 |
msgstr "Afsender indtastede ikke det rigtige svar på quizzen"
|
749 |
|
750 |
-
#: d:\wordpress\plugins\contact-form-7/modules/quiz.php:
|
751 |
msgid "Your answer is not correct."
|
752 |
msgstr "Dit indtastede svar er ikke korrekt."
|
753 |
|
754 |
-
#: d:\wordpress\plugins\contact-form-7/modules/quiz.php:
|
755 |
msgid "Quiz"
|
756 |
msgstr "Quiz"
|
757 |
|
758 |
-
#: d:\wordpress\plugins\contact-form-7/modules/quiz.php:
|
759 |
msgid "Quizzes"
|
760 |
msgstr "Quizzer"
|
761 |
|
762 |
-
#: d:\wordpress\plugins\contact-form-7/modules/quiz.php:
|
763 |
msgid "* quiz|answer (e.g. 1+1=?|2)"
|
764 |
msgstr "' quiz|svar (f.eks. 1+1=?|2)"
|
765 |
|
766 |
-
#: d:\wordpress\plugins\contact-form-7/modules/select.php:
|
767 |
msgid "Drop-down menu"
|
768 |
msgstr "Drop-down menu"
|
769 |
|
770 |
-
#: d:\wordpress\plugins\contact-form-7/modules/select.php:
|
771 |
msgid "Allow multiple selections?"
|
772 |
msgstr "Tillad flere valg?"
|
773 |
|
774 |
-
#: d:\wordpress\plugins\contact-form-7/modules/select.php:
|
775 |
msgid "Insert a blank item as the first option?"
|
776 |
msgstr "Indsæt et tomt punkt som første valgmulighed?"
|
777 |
|
778 |
-
#: d:\wordpress\plugins\contact-form-7/modules/submit.php:
|
779 |
msgid "Submit button"
|
780 |
msgstr "Send-knap"
|
781 |
|
782 |
-
#: d:\wordpress\plugins\contact-form-7/modules/submit.php:
|
783 |
msgid "Label"
|
784 |
msgstr "Tekst på knap"
|
785 |
|
786 |
-
#: d:\wordpress\plugins\contact-form-7/modules/text.php:
|
787 |
msgid "Text field"
|
788 |
msgstr "Tekstfelt"
|
789 |
|
790 |
-
#: d:\wordpress\plugins\contact-form-7/modules/text.php:
|
791 |
msgid "Email field"
|
792 |
msgstr "E-mail-felt"
|
793 |
|
794 |
-
#: d:\wordpress\plugins\contact-form-7/modules/text.php:
|
795 |
msgid "Akismet"
|
796 |
msgstr "Akismet"
|
797 |
|
798 |
-
#: d:\wordpress\plugins\contact-form-7/modules/text.php:
|
799 |
msgid "This field requires author's name"
|
800 |
msgstr "Dette felt kræver forfatters navn"
|
801 |
|
802 |
-
#: d:\wordpress\plugins\contact-form-7/modules/text.php:
|
803 |
msgid "This field requires author's URL"
|
804 |
msgstr "Dette felt kræver forfatters URL"
|
805 |
|
806 |
-
#: d:\wordpress\plugins\contact-form-7/modules/text.php:
|
807 |
msgid "This field requires author's email address"
|
808 |
msgstr "Dette felt kræver forfatters e-mail-adresse"
|
809 |
|
810 |
-
#: d:\wordpress\plugins\contact-form-7/modules/text.php:
|
811 |
-
#: d:\wordpress\plugins\contact-form-7/modules/textarea.php:
|
812 |
msgid "Default value"
|
813 |
msgstr "Standardværdi"
|
814 |
|
815 |
-
#: d:\wordpress\plugins\contact-form-7/modules/textarea.php:
|
816 |
msgid "Text area"
|
817 |
msgstr "Tekstboks"
|
818 |
|
@@ -820,16 +824,19 @@ msgstr "Tekstboks"
|
|
820 |
#~ "Is this plugin useful for you? If you like it, please help the developer."
|
821 |
#~ msgstr ""
|
822 |
#~ "Kan du bruge dette plugin? Hvis du kan lide det, så hjælp udvikleren."
|
|
|
823 |
#~ msgid ""
|
824 |
#~ "Developing a plugin and providing user support is really hard work. "
|
825 |
#~ "Please help."
|
826 |
#~ msgstr ""
|
827 |
#~ "Udvikling af plugins og brugersupport er faktisk hårdt arbejde. Støt det!"
|
|
|
828 |
#~ msgid "This mail is created by Contact Form 7 plugin for WordPress."
|
829 |
#~ msgstr "Denne mail er genereret af pluginnet Contact Form 7 for WordPress."
|
|
|
830 |
#~ msgid "(You need WordPress 2.7 or greater to use this feature)"
|
831 |
#~ msgstr ""
|
832 |
#~ "(Du skal bruge WordPress 2.7 eller nyere for at bruge denne funktion)"
|
|
|
833 |
#~ msgid "Delete this contact form"
|
834 |
#~ msgstr "Slet denne kontakt formular"
|
835 |
-
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Form 7 version 2.2.1\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-06-12 19:48+0100\n"
|
6 |
+
"PO-Revision-Date: 2010-07-14 01:04+0100\n"
|
7 |
"Last-Translator: Team Blogos <wordpress@blogos.dk>\n"
|
8 |
"Language-Team: Team Blogos <wordpress@blogos.dk>\n"
|
9 |
"MIME-Version: 1.0\n"
|
37 |
|
38 |
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:162
|
39 |
msgid "Generate Tag"
|
40 |
+
msgstr "Generér tag"
|
41 |
|
42 |
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:163
|
43 |
msgid "Show"
|
47 |
msgid "Hide"
|
48 |
msgstr "Skjul"
|
49 |
|
50 |
+
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:261
|
51 |
msgid "Contact form"
|
52 |
msgstr "Kontaktformular"
|
53 |
|
54 |
+
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:280
|
55 |
msgid "Settings"
|
56 |
msgstr "Indstillinger"
|
57 |
|
58 |
+
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:291
|
59 |
msgid "http://contactform7.com/"
|
60 |
msgstr "http://contactform7.com/"
|
61 |
|
62 |
+
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:292
|
63 |
msgid "Contactform7.com"
|
64 |
msgstr "Contactform7.com"
|
65 |
|
66 |
+
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:293
|
67 |
msgid "http://contactform7.com/docs/"
|
68 |
msgstr "http://contactform7.com/docs/"
|
69 |
|
70 |
+
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:294
|
71 |
msgid "Docs"
|
72 |
msgstr "Dokumenter"
|
73 |
|
74 |
+
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:295
|
75 |
msgid "http://contactform7.com/faq/"
|
76 |
msgstr "http://contactform7.com/faq/"
|
77 |
|
78 |
+
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:296
|
79 |
msgid "FAQ"
|
80 |
msgstr "FAQ"
|
81 |
|
82 |
+
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:297
|
83 |
msgid "http://contactform7.com/support/"
|
84 |
msgstr "http://contactform7.com/support/"
|
85 |
|
86 |
+
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:298
|
87 |
msgid "Support"
|
88 |
msgstr "Support"
|
89 |
|
90 |
+
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:312
|
91 |
msgid "Contact form created."
|
92 |
msgstr "Kontaktformular oprettet."
|
93 |
|
94 |
+
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:315
|
95 |
msgid "Contact form saved."
|
96 |
msgstr "Kontaktformular gemt."
|
97 |
|
98 |
+
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:318
|
99 |
msgid "Contact form deleted."
|
100 |
msgstr "Kontaktformular slettet."
|
101 |
|
102 |
+
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:321
|
103 |
msgid "Database table created."
|
104 |
msgstr "Databasetabel oprettet."
|
105 |
|
106 |
+
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:324
|
107 |
msgid "Failed to create database table."
|
108 |
msgstr "Oprettelse af databasetabel mislykkedes."
|
109 |
|
110 |
+
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:358
|
111 |
msgid "Contact Form 7 needs your support. Please donate today."
|
112 |
msgstr "Kontaktformular 7 behøver din støtte. Send en gave i dag."
|
113 |
|
114 |
+
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:359
|
115 |
msgid "Your contribution is needed for making this plugin better."
|
116 |
msgstr "Dit bidrag behøves, hvis pluginnet skal blive bedre."
|
117 |
|
118 |
+
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:365
|
119 |
msgid "http://contactform7.com/donate/"
|
120 |
msgstr "http://contactform7.com/donate/"
|
121 |
|
122 |
+
#: d:\wordpress\plugins\contact-form-7/admin/admin.php:365
|
123 |
msgid "Donate"
|
124 |
msgstr "Donér"
|
125 |
|
239 |
msgid "(select language)"
|
240 |
msgstr "(vælg sprog)"
|
241 |
|
242 |
+
#: d:\wordpress\plugins\contact-form-7/includes/classes.php:577
|
243 |
msgid "Untitled"
|
244 |
msgstr "Uden titel"
|
245 |
|
414 |
msgstr "Fransk"
|
415 |
|
416 |
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:186
|
417 |
+
msgid "Galician"
|
418 |
+
msgstr "Galicisk"
|
419 |
+
|
420 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:187
|
421 |
msgid "Georgian"
|
422 |
msgstr "Georgisk"
|
423 |
|
424 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:188
|
425 |
msgid "German"
|
426 |
msgstr "Tysk"
|
427 |
|
428 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:189
|
429 |
msgid "Greek"
|
430 |
msgstr "Græsk"
|
431 |
|
432 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:190
|
433 |
msgid "Hebrew"
|
434 |
msgstr "Hebraisk"
|
435 |
|
436 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:191
|
437 |
msgid "Hindi"
|
438 |
msgstr "Hindu"
|
439 |
|
440 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:192
|
441 |
msgid "Hungarian"
|
442 |
msgstr "Ungarsk"
|
443 |
|
444 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:193
|
445 |
msgid "Indonesian"
|
446 |
msgstr "Indonesisk"
|
447 |
|
448 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:194
|
449 |
msgid "Italian"
|
450 |
msgstr "Italiensk"
|
451 |
|
452 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:195
|
453 |
msgid "Japanese"
|
454 |
msgstr "Japansk"
|
455 |
|
456 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:196
|
457 |
msgid "Korean"
|
458 |
msgstr "Koreansk"
|
459 |
|
460 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:197
|
461 |
msgid "Latvian"
|
462 |
msgstr "Lettisk"
|
463 |
|
464 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:198
|
465 |
msgid "Lithuanian"
|
466 |
msgstr "Litauisk"
|
467 |
|
468 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:199
|
469 |
msgid "Malayalam"
|
470 |
msgstr "Malayalam"
|
471 |
|
472 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:200
|
473 |
msgid "Norwegian"
|
474 |
msgstr "Norsk"
|
475 |
|
476 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:201
|
477 |
msgid "Persian"
|
478 |
msgstr "Persisk (farsi)"
|
479 |
|
480 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:202
|
481 |
msgid "Polish"
|
482 |
msgstr "Polsk"
|
483 |
|
484 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:203
|
485 |
msgid "Portuguese"
|
486 |
msgstr "Portugisisk"
|
487 |
|
488 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:204
|
489 |
msgid "Russian"
|
490 |
msgstr "Russisk"
|
491 |
|
492 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:205
|
493 |
msgid "Romanian"
|
494 |
msgstr "Rumænsk"
|
495 |
|
496 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:206
|
497 |
msgid "Serbian"
|
498 |
msgstr "Serbisk"
|
499 |
|
500 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:207
|
501 |
msgid "Slovak"
|
502 |
msgstr "Slovakisk"
|
503 |
|
504 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:208
|
505 |
msgid "Slovene"
|
506 |
msgstr "Slovensk"
|
507 |
|
508 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:209
|
509 |
msgid "Spanish"
|
510 |
msgstr "Spansk"
|
511 |
|
512 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:210
|
513 |
msgid "Swedish"
|
514 |
msgstr "Svensk"
|
515 |
|
516 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:211
|
517 |
msgid "Thai"
|
518 |
msgstr "Thailandsk"
|
519 |
|
520 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:212
|
521 |
msgid "Turkish"
|
522 |
msgstr "Tyrkisk"
|
523 |
|
524 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:213
|
525 |
msgid "Ukrainian"
|
526 |
msgstr "Ukrainsk"
|
527 |
|
528 |
+
#: d:\wordpress\plugins\contact-form-7/includes/functions.php:214
|
529 |
msgid "Vietnamese"
|
530 |
msgstr "Vietnamesisk"
|
531 |
|
532 |
+
#: d:\wordpress\plugins\contact-form-7/modules/acceptance.php:104
|
533 |
msgid "Acceptance"
|
534 |
msgstr "Accept"
|
535 |
|
536 |
+
#: d:\wordpress\plugins\contact-form-7/modules/acceptance.php:113
|
537 |
+
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:214
|
538 |
+
#: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:209
|
539 |
+
#: d:\wordpress\plugins\contact-form-7/modules/file.php:241
|
540 |
msgid "Name"
|
541 |
msgstr "Navn"
|
542 |
|
543 |
+
#: d:\wordpress\plugins\contact-form-7/modules/acceptance.php:118
|
544 |
+
#: d:\wordpress\plugins\contact-form-7/modules/acceptance.php:121
|
|
|
|
|
545 |
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:221
|
546 |
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:224
|
547 |
+
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:229
|
548 |
+
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:232
|
549 |
+
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:236
|
550 |
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:247
|
551 |
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:250
|
552 |
+
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:255
|
553 |
+
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:258
|
554 |
+
#: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:214
|
555 |
+
#: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:217
|
556 |
+
#: d:\wordpress\plugins\contact-form-7/modules/file.php:246
|
557 |
+
#: d:\wordpress\plugins\contact-form-7/modules/file.php:249
|
558 |
+
#: d:\wordpress\plugins\contact-form-7/modules/file.php:254
|
559 |
+
#: d:\wordpress\plugins\contact-form-7/modules/file.php:257
|
560 |
msgid "optional"
|
561 |
msgstr "valgfrit"
|
562 |
|
563 |
+
#: d:\wordpress\plugins\contact-form-7/modules/acceptance.php:127
|
564 |
msgid "Make this checkbox checked by default?"
|
565 |
msgstr "Skal afkrydsningsfeltet være markeret som standard?"
|
566 |
|
567 |
# tjekkes
|
568 |
+
#: d:\wordpress\plugins\contact-form-7/modules/acceptance.php:128
|
569 |
msgid "Make this checkbox work inversely?"
|
570 |
msgstr "Skal afkrydsningsfeltet virke omvendt?"
|
571 |
|
572 |
+
#: d:\wordpress\plugins\contact-form-7/modules/acceptance.php:129
|
573 |
msgid "* That means visitor who accepts the term unchecks it."
|
574 |
msgstr "* Det betyder, at en besøgende, som accepterer betingelserne, afmarkerer det."
|
575 |
|
576 |
+
#: d:\wordpress\plugins\contact-form-7/modules/acceptance.php:134
|
577 |
+
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:263
|
578 |
+
#: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:237
|
579 |
+
#: d:\wordpress\plugins\contact-form-7/modules/file.php:262
|
580 |
msgid "Copy this code and paste it into the form left."
|
581 |
msgstr "Kopier og indsæt denne kode i formularen til venstre"
|
582 |
|
583 |
+
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:70
|
584 |
msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
|
585 |
msgstr "For at bruge CAPTCHA skal du have<a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> pluginnet installeret."
|
586 |
|
587 |
+
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:189
|
588 |
msgid "The code that sender entered does not match the CAPTCHA"
|
589 |
msgstr "Svaret, som afsender indtastede, matcher ikke CAPTCHA-kontrollen"
|
590 |
|
591 |
+
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:190
|
592 |
msgid "Your entered code is incorrect."
|
593 |
msgstr "Dit indtastede svar er forkert."
|
594 |
|
595 |
+
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:200
|
596 |
msgid "CAPTCHA"
|
597 |
msgstr "CAPTCHA-kontrol"
|
598 |
|
599 |
+
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:211
|
600 |
msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
|
601 |
msgstr "Bemærk, at du for at bruge CAPTCHA, skal have Really Simple CAPTCHA-pluginnet installeret."
|
602 |
|
603 |
+
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:218
|
604 |
msgid "Image settings"
|
605 |
msgstr "Billedindstillinger"
|
606 |
|
607 |
+
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:229
|
608 |
msgid "Foreground color"
|
609 |
msgstr "Forgrundsfarve"
|
610 |
|
611 |
+
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:232
|
612 |
msgid "Background color"
|
613 |
msgstr "Baggrundsfarve"
|
614 |
|
615 |
+
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:236
|
616 |
msgid "Image size"
|
617 |
msgstr "Billedstørrelse"
|
618 |
|
619 |
+
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:237
|
620 |
msgid "Small"
|
621 |
msgstr "Lille"
|
622 |
|
623 |
+
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:238
|
624 |
msgid "Medium"
|
625 |
msgstr "Medium"
|
626 |
|
627 |
+
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:239
|
628 |
msgid "Large"
|
629 |
msgstr "Stor"
|
630 |
|
631 |
+
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:244
|
632 |
msgid "Input field settings"
|
633 |
msgstr "Indstillinger for feltet"
|
634 |
|
635 |
+
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:264
|
636 |
msgid "For image"
|
637 |
msgstr "For billedet"
|
638 |
|
639 |
+
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:266
|
640 |
msgid "For input field"
|
641 |
msgstr "For indtastningsfeltet"
|
642 |
|
643 |
+
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:296
|
644 |
#, php-format
|
645 |
msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
|
646 |
msgstr "Denne kontaktformular indeholder CAPTCHA-felter, men den midlertidige mappe til filerne (%s) eksisterer ikke eller er skrivbar. Du kan oprette mappen eller ændre adgangstilladelserne (permissions) selv."
|
647 |
|
648 |
+
#: d:\wordpress\plugins\contact-form-7/modules/captcha.php:302
|
649 |
msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
|
650 |
msgstr "Denne kontaktformular indeholder CAPTCHA-felter, men de nødvendige biblioteker (GD og FreeType) er ikke tilgængelige på din server."
|
651 |
|
652 |
+
#: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:182
|
653 |
msgid "Checkboxes"
|
654 |
msgstr "Afkrydsningsfelt"
|
655 |
|
656 |
+
#: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:185
|
657 |
msgid "Radio buttons"
|
658 |
msgstr "Radioknapper"
|
659 |
|
660 |
+
#: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:206
|
661 |
+
#: d:\wordpress\plugins\contact-form-7/modules/file.php:240
|
662 |
msgid "Required field?"
|
663 |
msgstr "Påkrævet felt?"
|
664 |
|
665 |
+
#: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:222
|
666 |
msgid "Choices"
|
667 |
msgstr "Valg"
|
668 |
|
669 |
+
#: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:224
|
670 |
msgid "* One choice per line."
|
671 |
msgstr "* Et valg per linje."
|
672 |
|
673 |
+
#: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:228
|
674 |
msgid "Put a label first, a checkbox last?"
|
675 |
msgstr "Vil du have etiketten forrest og afkrydsningsfeltet sidst?"
|
676 |
|
677 |
+
#: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:229
|
678 |
msgid "Wrap each item with <label> tag?"
|
679 |
msgstr "Sæt <label>-tag uden om hver?"
|
680 |
|
681 |
+
#: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:231
|
682 |
msgid "Make checkboxes exclusive?"
|
683 |
msgstr "Skal afkrydsningsfelter være eksklusive? (altså så der kun kan vælges én?)"
|
684 |
|
685 |
+
#: d:\wordpress\plugins\contact-form-7/modules/checkbox.php:239
|
686 |
msgid "And, put this code into the Mail fields below."
|
687 |
msgstr "Og indsæt denne kode i Mail-felterne nedenfor."
|
688 |
|
689 |
+
#: d:\wordpress\plugins\contact-form-7/modules/file.php:204
|
690 |
msgid "Uploading a file fails for any reason"
|
691 |
msgstr "Uploadning af en fil mislykkedes af en eller anden grund"
|
692 |
|
693 |
+
#: d:\wordpress\plugins\contact-form-7/modules/file.php:205
|
694 |
msgid "Failed to upload file."
|
695 |
msgstr "Filupload mislykkedes"
|
696 |
|
697 |
+
#: d:\wordpress\plugins\contact-form-7/modules/file.php:209
|
698 |
msgid "Uploaded file is not allowed file type"
|
699 |
msgstr "Uploadet fil har ikke en tilladt filtype"
|
700 |
|
701 |
+
#: d:\wordpress\plugins\contact-form-7/modules/file.php:210
|
702 |
msgid "This file type is not allowed."
|
703 |
msgstr "Denne filtype er ikke tilladt."
|
704 |
|
705 |
+
#: d:\wordpress\plugins\contact-form-7/modules/file.php:214
|
706 |
msgid "Uploaded file is too large"
|
707 |
msgstr "Uploadet fil er for stor"
|
708 |
|
709 |
+
#: d:\wordpress\plugins\contact-form-7/modules/file.php:215
|
710 |
msgid "This file is too large."
|
711 |
msgstr "Filen er for stor."
|
712 |
|
713 |
+
#: d:\wordpress\plugins\contact-form-7/modules/file.php:219
|
714 |
msgid "Uploading a file fails for PHP error"
|
715 |
msgstr "Uploadning af en fil mislykkedes på grund af en PHP-fejl"
|
716 |
|
717 |
+
#: d:\wordpress\plugins\contact-form-7/modules/file.php:220
|
718 |
msgid "Failed to upload file. Error occurred."
|
719 |
msgstr "Filupload mislykkedes. En fejl opstod."
|
720 |
|
721 |
+
#: d:\wordpress\plugins\contact-form-7/modules/file.php:231
|
722 |
msgid "File upload"
|
723 |
msgstr "Filupload"
|
724 |
|
725 |
+
#: d:\wordpress\plugins\contact-form-7/modules/file.php:254
|
726 |
msgid "File size limit"
|
727 |
msgstr "Begrænsning på filstørrelse"
|
728 |
|
729 |
+
#: d:\wordpress\plugins\contact-form-7/modules/file.php:254
|
730 |
msgid "bytes"
|
731 |
msgstr "bytes"
|
732 |
|
733 |
+
#: d:\wordpress\plugins\contact-form-7/modules/file.php:257
|
734 |
msgid "Acceptable file types"
|
735 |
msgstr "Tilladte filtyper"
|
736 |
|
737 |
+
#: d:\wordpress\plugins\contact-form-7/modules/file.php:264
|
738 |
msgid "And, put this code into the File Attachments field below."
|
739 |
msgstr "Og indsæt denne kode i feltet Filvedhæftninger nedenfor."
|
740 |
|
741 |
+
#: d:\wordpress\plugins\contact-form-7/modules/file.php:289
|
742 |
#, php-format
|
743 |
msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
|
744 |
msgstr "Denne kontaktformular indeholder felter for filuploadning, men den midlertidige mappe til filerne (%s) eksisterer ikke eller er skrivbar. Du kan oprette mappen eller ændre adgangstilladelserne (permissions) selv."
|
747 |
msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
|
748 |
msgstr "Denne kontaktformular indeholder [icl]-tags, men de bruges ikke mere og virker ikke længere med denne version af Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">Der er en simplere måde at oprette kontaktformularer på andre sprog på</a>, og du anbefales at bruge den."
|
749 |
|
750 |
+
#: d:\wordpress\plugins\contact-form-7/modules/quiz.php:170
|
751 |
msgid "Sender doesn't enter the correct answer to the quiz"
|
752 |
msgstr "Afsender indtastede ikke det rigtige svar på quizzen"
|
753 |
|
754 |
+
#: d:\wordpress\plugins\contact-form-7/modules/quiz.php:171
|
755 |
msgid "Your answer is not correct."
|
756 |
msgstr "Dit indtastede svar er ikke korrekt."
|
757 |
|
758 |
+
#: d:\wordpress\plugins\contact-form-7/modules/quiz.php:181
|
759 |
msgid "Quiz"
|
760 |
msgstr "Quiz"
|
761 |
|
762 |
+
#: d:\wordpress\plugins\contact-form-7/modules/quiz.php:211
|
763 |
msgid "Quizzes"
|
764 |
msgstr "Quizzer"
|
765 |
|
766 |
+
#: d:\wordpress\plugins\contact-form-7/modules/quiz.php:213
|
767 |
msgid "* quiz|answer (e.g. 1+1=?|2)"
|
768 |
msgstr "' quiz|svar (f.eks. 1+1=?|2)"
|
769 |
|
770 |
+
#: d:\wordpress\plugins\contact-form-7/modules/select.php:154
|
771 |
msgid "Drop-down menu"
|
772 |
msgstr "Drop-down menu"
|
773 |
|
774 |
+
#: d:\wordpress\plugins\contact-form-7/modules/select.php:183
|
775 |
msgid "Allow multiple selections?"
|
776 |
msgstr "Tillad flere valg?"
|
777 |
|
778 |
+
#: d:\wordpress\plugins\contact-form-7/modules/select.php:184
|
779 |
msgid "Insert a blank item as the first option?"
|
780 |
msgstr "Indsæt et tomt punkt som første valgmulighed?"
|
781 |
|
782 |
+
#: d:\wordpress\plugins\contact-form-7/modules/submit.php:62
|
783 |
msgid "Submit button"
|
784 |
msgstr "Send-knap"
|
785 |
|
786 |
+
#: d:\wordpress\plugins\contact-form-7/modules/submit.php:80
|
787 |
msgid "Label"
|
788 |
msgstr "Tekst på knap"
|
789 |
|
790 |
+
#: d:\wordpress\plugins\contact-form-7/modules/text.php:137
|
791 |
msgid "Text field"
|
792 |
msgstr "Tekstfelt"
|
793 |
|
794 |
+
#: d:\wordpress\plugins\contact-form-7/modules/text.php:140
|
795 |
msgid "Email field"
|
796 |
msgstr "E-mail-felt"
|
797 |
|
798 |
+
#: d:\wordpress\plugins\contact-form-7/modules/text.php:182
|
799 |
msgid "Akismet"
|
800 |
msgstr "Akismet"
|
801 |
|
802 |
+
#: d:\wordpress\plugins\contact-form-7/modules/text.php:184
|
803 |
msgid "This field requires author's name"
|
804 |
msgstr "Dette felt kræver forfatters navn"
|
805 |
|
806 |
+
#: d:\wordpress\plugins\contact-form-7/modules/text.php:185
|
807 |
msgid "This field requires author's URL"
|
808 |
msgstr "Dette felt kræver forfatters URL"
|
809 |
|
810 |
+
#: d:\wordpress\plugins\contact-form-7/modules/text.php:187
|
811 |
msgid "This field requires author's email address"
|
812 |
msgstr "Dette felt kræver forfatters e-mail-adresse"
|
813 |
|
814 |
+
#: d:\wordpress\plugins\contact-form-7/modules/text.php:191
|
815 |
+
#: d:\wordpress\plugins\contact-form-7/modules/textarea.php:157
|
816 |
msgid "Default value"
|
817 |
msgstr "Standardværdi"
|
818 |
|
819 |
+
#: d:\wordpress\plugins\contact-form-7/modules/textarea.php:126
|
820 |
msgid "Text area"
|
821 |
msgstr "Tekstboks"
|
822 |
|
824 |
#~ "Is this plugin useful for you? If you like it, please help the developer."
|
825 |
#~ msgstr ""
|
826 |
#~ "Kan du bruge dette plugin? Hvis du kan lide det, så hjælp udvikleren."
|
827 |
+
|
828 |
#~ msgid ""
|
829 |
#~ "Developing a plugin and providing user support is really hard work. "
|
830 |
#~ "Please help."
|
831 |
#~ msgstr ""
|
832 |
#~ "Udvikling af plugins og brugersupport er faktisk hårdt arbejde. Støt det!"
|
833 |
+
|
834 |
#~ msgid "This mail is created by Contact Form 7 plugin for WordPress."
|
835 |
#~ msgstr "Denne mail er genereret af pluginnet Contact Form 7 for WordPress."
|
836 |
+
|
837 |
#~ msgid "(You need WordPress 2.7 or greater to use this feature)"
|
838 |
#~ msgstr ""
|
839 |
#~ "(Du skal bruge WordPress 2.7 eller nyere for at bruge denne funktion)"
|
840 |
+
|
841 |
#~ msgid "Delete this contact form"
|
842 |
#~ msgstr "Slet denne kontakt formular"
|
|
languages/wpcf7-de_DE.mo
CHANGED
Binary file
|
languages/wpcf7-de_DE.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Contact Form | V2.2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2010-03-23 06:47+0900\n"
|
6 |
-
"PO-Revision-Date: 2010-
|
7 |
"Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -270,7 +270,7 @@ msgstr "Fehler beim Ausfüllen des Formulars!"
|
|
270 |
|
271 |
#: contact-form-7/includes/functions.php:22
|
272 |
msgid "Validation errors occurred. Please confirm the fields and submit it again."
|
273 |
-
msgstr "Fehler beim Ausfüllen des Formulars. Bitte überprüfen Sie Ihre Eingaben und drücken nochmals auf
|
274 |
|
275 |
#: contact-form-7/includes/functions.php:26
|
276 |
msgid "There is a field of term that sender is needed to accept"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Form | V2.2.1\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2010-03-23 06:47+0900\n"
|
6 |
+
"PO-Revision-Date: 2010-05-26 21:16+0100\n"
|
7 |
"Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
270 |
|
271 |
#: contact-form-7/includes/functions.php:22
|
272 |
msgid "Validation errors occurred. Please confirm the fields and submit it again."
|
273 |
+
msgstr "Fehler beim Ausfüllen des Formulars. Bitte überprüfen Sie Ihre Eingaben und drücken nochmals auf senden."
|
274 |
|
275 |
#: contact-form-7/includes/functions.php:26
|
276 |
msgid "There is a field of term that sender is needed to accept"
|
languages/wpcf7-fi.mo
CHANGED
Binary file
|
languages/wpcf7-fi.po
CHANGED
@@ -2,319 +2,837 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP Contact Form 7\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Poedit-Language:
|
13 |
-
"X-Poedit-Country:
|
14 |
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
"X-Poedit-Basepath: ../..\n"
|
17 |
"X-Poedit-SearchPath-0: contact-form-7\n"
|
18 |
|
19 |
-
#: contact-form-7/
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
#: contact-form-7/wp-contact-form-7.php:403
|
24 |
-
#: contact-form-7/includes/admin-panel.php:5
|
25 |
msgid "Contact Form 7"
|
26 |
msgstr "Contact Form 7"
|
27 |
|
28 |
-
#: contact-form-7/
|
29 |
-
msgid "
|
30 |
-
msgstr "
|
|
|
|
|
|
|
|
|
31 |
|
32 |
-
#: contact-form-7/
|
|
|
|
|
|
|
|
|
33 |
msgid "Generate Tag"
|
34 |
msgstr "Luo tagi"
|
35 |
|
36 |
-
#: contact-form-7/
|
37 |
-
msgid "
|
38 |
-
msgstr "
|
39 |
|
40 |
-
#: contact-form-7/
|
41 |
-
msgid "
|
42 |
-
msgstr "
|
43 |
|
44 |
-
#: contact-form-7/
|
45 |
-
msgid "
|
46 |
-
msgstr "
|
47 |
|
48 |
-
#: contact-form-7/
|
49 |
-
msgid "
|
50 |
-
msgstr "
|
51 |
|
52 |
-
#: contact-form-7/
|
53 |
-
msgid "
|
54 |
-
msgstr "
|
55 |
|
56 |
-
#: contact-form-7/
|
57 |
-
msgid "
|
58 |
-
msgstr "
|
59 |
|
60 |
-
#: contact-form-7/
|
61 |
-
msgid "
|
62 |
-
msgstr "
|
63 |
|
64 |
-
#: contact-form-7/
|
65 |
-
msgid "
|
66 |
-
msgstr "
|
67 |
|
68 |
-
#: contact-form-7/
|
69 |
-
msgid "
|
70 |
-
msgstr "
|
71 |
|
72 |
-
#: contact-form-7/
|
73 |
-
msgid "
|
74 |
-
msgstr "
|
75 |
|
76 |
-
#: contact-form-7/
|
77 |
-
msgid "
|
78 |
-
msgstr "
|
79 |
|
80 |
-
#: contact-form-7/
|
81 |
-
msgid "
|
82 |
-
msgstr "
|
83 |
|
84 |
-
#: contact-form-7/
|
85 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
msgstr "Nimi"
|
87 |
|
88 |
-
#: contact-form-7/
|
89 |
-
|
90 |
-
|
|
|
91 |
|
92 |
-
#: contact-form-7/
|
93 |
-
msgid "
|
94 |
-
msgstr "
|
95 |
|
96 |
-
#: contact-form-7/
|
97 |
-
msgid "
|
98 |
-
msgstr "
|
99 |
|
100 |
-
#: contact-form-7/
|
101 |
-
msgid "
|
102 |
-
msgstr "
|
103 |
|
104 |
-
#: contact-form-7/
|
105 |
-
msgid "
|
106 |
-
msgstr "
|
107 |
|
108 |
-
#: contact-form-7/
|
109 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
msgstr "Nimi"
|
111 |
|
112 |
-
#: contact-form-7/
|
113 |
-
|
114 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
|
116 |
-
#: contact-form-7/
|
117 |
-
msgid "
|
118 |
-
msgstr "
|
119 |
|
120 |
-
#: contact-form-7/
|
121 |
-
msgid "
|
122 |
-
msgstr "
|
123 |
|
124 |
-
#: contact-form-7/
|
125 |
-
msgid "
|
126 |
-
msgstr "Tämä
|
127 |
|
128 |
-
#: contact-form-7/
|
129 |
-
|
130 |
-
|
|
|
|
|
|
|
131 |
|
132 |
-
#: contact-form-7/
|
133 |
-
msgid "
|
134 |
-
msgstr "
|
135 |
|
136 |
-
#: contact-form-7/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
msgid "Foreground color"
|
138 |
msgstr "Etuosan väri"
|
139 |
|
140 |
-
#: contact-form-7/
|
141 |
msgid "Background color"
|
142 |
msgstr "Taustan väri"
|
143 |
|
144 |
-
#: contact-form-7/
|
145 |
msgid "Image size"
|
146 |
msgstr "Kuvan koko"
|
147 |
|
148 |
-
#: contact-form-7/
|
149 |
msgid "Small"
|
150 |
msgstr "Pieni"
|
151 |
|
152 |
-
#: contact-form-7/
|
153 |
msgid "Medium"
|
154 |
msgstr "Keski"
|
155 |
|
156 |
-
#: contact-form-7/
|
157 |
msgid "Large"
|
158 |
msgstr "Suuri"
|
159 |
|
160 |
-
#: contact-form-7/
|
161 |
-
msgid "Image settings"
|
162 |
-
msgstr "Kuvan asetukset"
|
163 |
-
|
164 |
-
#: contact-form-7/wp-contact-form-7.php:453
|
165 |
msgid "Input field settings"
|
166 |
msgstr "Syötekentän asetukset"
|
167 |
|
168 |
-
#: contact-form-7/
|
169 |
msgid "For image"
|
170 |
msgstr "Kuvalle"
|
171 |
|
172 |
-
#: contact-form-7/
|
173 |
msgid "For input field"
|
174 |
msgstr "Syötekentälle"
|
175 |
|
176 |
-
#: contact-form-7/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
msgid "* One choice per line."
|
178 |
msgstr "* Yksi valinta per rivi"
|
179 |
|
180 |
-
#: contact-form-7/
|
181 |
-
msgid "
|
182 |
-
msgstr "
|
183 |
|
184 |
-
#: contact-form-7/
|
185 |
-
|
186 |
-
|
|
|
187 |
|
188 |
-
#: contact-form-7/
|
189 |
-
msgid "
|
190 |
-
msgstr "
|
191 |
|
192 |
-
#: contact-form-7/
|
193 |
-
msgid "
|
194 |
-
msgstr "
|
195 |
|
196 |
-
#: contact-form-7/
|
197 |
-
msgid "
|
198 |
-
msgstr "
|
199 |
|
200 |
-
#: contact-form-7/
|
201 |
-
|
202 |
-
|
203 |
-
msgstr "(pakollinen)"
|
204 |
|
205 |
-
#: contact-form-7/
|
206 |
-
msgid "
|
207 |
-
msgstr "
|
208 |
|
209 |
-
#: contact-form-7/
|
210 |
-
msgid "
|
211 |
-
msgstr "
|
212 |
|
213 |
-
#: contact-form-7/
|
214 |
-
msgid "
|
215 |
-
msgstr "
|
216 |
|
217 |
-
#: contact-form-7/
|
218 |
-
|
219 |
-
|
220 |
-
msgstr "Lähetä"
|
221 |
|
222 |
-
#: contact-form-7/
|
223 |
-
msgid "
|
224 |
-
msgstr "
|
225 |
|
226 |
-
#: contact-form-7/
|
227 |
-
msgid "Failed to
|
228 |
-
msgstr "
|
229 |
|
230 |
-
#: contact-form-7/
|
231 |
-
msgid "
|
232 |
-
msgstr "
|
233 |
|
234 |
-
#: contact-form-7/
|
235 |
-
msgid "
|
236 |
-
msgstr "
|
237 |
|
238 |
-
#: contact-form-7/
|
239 |
-
msgid "
|
240 |
-
msgstr "
|
241 |
|
242 |
-
#: contact-form-7/
|
243 |
-
msgid "
|
244 |
-
msgstr "
|
245 |
|
246 |
-
#: contact-form-7/
|
247 |
-
msgid "
|
248 |
-
msgstr "
|
249 |
|
250 |
-
#: contact-form-7/
|
251 |
-
|
252 |
-
|
|
|
253 |
|
254 |
-
#: contact-form-7/
|
255 |
-
msgid "
|
256 |
-
msgstr "
|
257 |
|
258 |
-
#: contact-form-7/
|
259 |
-
msgid "
|
260 |
-
msgstr "
|
261 |
|
262 |
-
#: contact-form-7/
|
263 |
-
msgid "
|
264 |
-
msgstr "
|
265 |
|
266 |
-
#: contact-form-7/
|
267 |
-
|
268 |
-
|
269 |
-
msgstr "Vastaanottaja:"
|
270 |
|
271 |
-
#: contact-form-7/
|
272 |
-
|
273 |
-
|
274 |
-
msgstr "Lähettäjä:"
|
275 |
|
276 |
-
#: contact-form-7/
|
277 |
-
|
278 |
-
|
279 |
-
msgstr "Aihe:"
|
280 |
|
281 |
-
#: contact-form-7/
|
282 |
-
|
283 |
-
|
284 |
-
msgstr "Viesti:"
|
285 |
|
286 |
-
#: contact-form-7/
|
287 |
-
msgid "
|
288 |
-
msgstr "
|
289 |
|
290 |
-
#: contact-form-7/
|
291 |
-
msgid "
|
292 |
-
msgstr "
|
293 |
|
294 |
-
#: contact-form-7/
|
295 |
-
msgid "
|
296 |
-
msgstr "
|
297 |
|
298 |
-
#: contact-form-7/
|
299 |
-
msgid "
|
300 |
-
msgstr "
|
301 |
|
302 |
-
#: contact-form-7/
|
303 |
-
msgid ""
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
"
|
308 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
309 |
|
310 |
#~ msgid "Form content"
|
311 |
#~ msgstr "Lomakkeen sisältö"
|
|
|
312 |
#~ msgid "Mail template"
|
313 |
#~ msgstr "Sähköpostimalli"
|
|
|
314 |
#~ msgid "Sender field:"
|
315 |
#~ msgstr "Lähettäjä:"
|
|
|
316 |
#~ msgid "Recipient address:"
|
317 |
#~ msgstr "Vastaanottajan osoite:"
|
|
|
318 |
#~ msgid "Insert"
|
319 |
#~ msgstr "Syötä"
|
320 |
-
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP Contact Form 7\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-05-24 14:34+0200\n"
|
6 |
+
"PO-Revision-Date: 2010-05-27 17:45+0900\n"
|
7 |
+
"Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
|
8 |
+
"Language-Team: Mediajalostamo <info@mediajalostamo.fi>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-Language: Finnish\n"
|
13 |
+
"X-Poedit-Country: FINLAND\n"
|
14 |
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
"X-Poedit-Basepath: ../..\n"
|
17 |
"X-Poedit-SearchPath-0: contact-form-7\n"
|
18 |
|
19 |
+
#: contact-form-7/admin/admin.php:120
|
20 |
+
#: contact-form-7/admin/edit.php:17
|
21 |
+
#: contact-form-7/admin/edit.php:30
|
|
|
|
|
|
|
22 |
msgid "Contact Form 7"
|
23 |
msgstr "Contact Form 7"
|
24 |
|
25 |
+
#: contact-form-7/admin/admin.php:120
|
26 |
+
msgid "Contact"
|
27 |
+
msgstr "Yhteydenotto"
|
28 |
+
|
29 |
+
#: contact-form-7/admin/admin.php:123
|
30 |
+
msgid "Edit Contact Forms"
|
31 |
+
msgstr "Muokkaa yhteydenottolomakkeita"
|
32 |
|
33 |
+
#: contact-form-7/admin/admin.php:123
|
34 |
+
msgid "Edit"
|
35 |
+
msgstr "Muokkaa"
|
36 |
+
|
37 |
+
#: contact-form-7/admin/admin.php:162
|
38 |
msgid "Generate Tag"
|
39 |
msgstr "Luo tagi"
|
40 |
|
41 |
+
#: contact-form-7/admin/admin.php:163
|
42 |
+
msgid "Show"
|
43 |
+
msgstr "Näytä"
|
44 |
|
45 |
+
#: contact-form-7/admin/admin.php:164
|
46 |
+
msgid "Hide"
|
47 |
+
msgstr "Piilota"
|
48 |
|
49 |
+
#: contact-form-7/admin/admin.php:261
|
50 |
+
msgid "Contact form"
|
51 |
+
msgstr "Yhteydenottolomake"
|
52 |
|
53 |
+
#: contact-form-7/admin/admin.php:280
|
54 |
+
msgid "Settings"
|
55 |
+
msgstr "Asetukset"
|
56 |
|
57 |
+
#: contact-form-7/admin/admin.php:291
|
58 |
+
msgid "http://contactform7.com/"
|
59 |
+
msgstr "http://contactform7.com/"
|
60 |
|
61 |
+
#: contact-form-7/admin/admin.php:292
|
62 |
+
msgid "Contactform7.com"
|
63 |
+
msgstr "Contactform7.com"
|
64 |
|
65 |
+
#: contact-form-7/admin/admin.php:293
|
66 |
+
msgid "http://contactform7.com/docs/"
|
67 |
+
msgstr "http://contactform7.com/docs/"
|
68 |
|
69 |
+
#: contact-form-7/admin/admin.php:294
|
70 |
+
msgid "Docs"
|
71 |
+
msgstr "Docs"
|
72 |
|
73 |
+
#: contact-form-7/admin/admin.php:295
|
74 |
+
msgid "http://contactform7.com/faq/"
|
75 |
+
msgstr "http://contactform7.com/faq/"
|
76 |
|
77 |
+
#: contact-form-7/admin/admin.php:296
|
78 |
+
msgid "FAQ"
|
79 |
+
msgstr "Usein kysytyt kysymykset"
|
80 |
|
81 |
+
#: contact-form-7/admin/admin.php:297
|
82 |
+
msgid "http://contactform7.com/support/"
|
83 |
+
msgstr "http://contactform7.com/support/"
|
84 |
|
85 |
+
#: contact-form-7/admin/admin.php:298
|
86 |
+
msgid "Support"
|
87 |
+
msgstr "Tuki"
|
88 |
|
89 |
+
#: contact-form-7/admin/admin.php:312
|
90 |
+
msgid "Contact form created."
|
91 |
+
msgstr "Yhteydenottolomake \"%s\" luotiin."
|
92 |
+
|
93 |
+
#: contact-form-7/admin/admin.php:315
|
94 |
+
msgid "Contact form saved."
|
95 |
+
msgstr "Yhteydenottolomake \"%s\" tallennettiin."
|
96 |
+
|
97 |
+
#: contact-form-7/admin/admin.php:318
|
98 |
+
msgid "Contact form deleted."
|
99 |
+
msgstr "Yhteydenottolomake \"%s\" poistettiin."
|
100 |
+
|
101 |
+
#: contact-form-7/admin/admin.php:321
|
102 |
+
msgid "Database table created."
|
103 |
+
msgstr "Tietokantataulukko luotu."
|
104 |
+
|
105 |
+
#: contact-form-7/admin/admin.php:324
|
106 |
+
msgid "Failed to create database table."
|
107 |
+
msgstr "Tietokantataulukon luonti epäonnistui."
|
108 |
+
|
109 |
+
#: contact-form-7/admin/admin.php:357
|
110 |
+
msgid "Contact Form 7 needs your support. Please donate today."
|
111 |
+
msgstr "Contact Form 7 tarvitsee tukeasi. Lahjoita."
|
112 |
+
|
113 |
+
#: contact-form-7/admin/admin.php:358
|
114 |
+
msgid "Your contribution is needed for making this plugin better."
|
115 |
+
msgstr "Apuasi tarvitaan tekemään tästä pluginista parempi."
|
116 |
+
|
117 |
+
#: contact-form-7/admin/admin.php:364
|
118 |
+
msgid "http://contactform7.com/donate/"
|
119 |
+
msgstr "http://contactform7.com/donate/"
|
120 |
+
|
121 |
+
#: contact-form-7/admin/admin.php:364
|
122 |
+
msgid "Donate"
|
123 |
+
msgstr "Lahjoita"
|
124 |
+
|
125 |
+
#: contact-form-7/admin/edit.php:9
|
126 |
+
#, php-format
|
127 |
+
msgid "<strong>The database table for Contact Form 7 does not exist.</strong> You must <a href=\"%s\">create the table</a> for it to work."
|
128 |
+
msgstr "<strong>Contact Form 7 tietokantataulukkoa ei ole.</strong>Sinun täytyy <a href=\"%s\">luoda taulukko</a> jotta se toimii."
|
129 |
+
|
130 |
+
#: contact-form-7/admin/edit.php:12
|
131 |
+
msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
|
132 |
+
msgstr "<strong>Contact Form 7 tietokantataulukkoa ei ole.</strong>"
|
133 |
+
|
134 |
+
#: contact-form-7/admin/edit.php:45
|
135 |
+
msgid "Add new"
|
136 |
+
msgstr "Lisää uusi"
|
137 |
+
|
138 |
+
#: contact-form-7/admin/edit.php:67
|
139 |
+
msgid "Copy this code and paste it into your post, page or text widget content."
|
140 |
+
msgstr "Kopioi ja liitä tämä koodi artikkeliin,sivulle tai vimpaimeen"
|
141 |
+
|
142 |
+
#: contact-form-7/admin/edit.php:75
|
143 |
+
#: contact-form-7/admin/edit.php:309
|
144 |
+
msgid "Save"
|
145 |
+
msgstr "Tallenna"
|
146 |
+
|
147 |
+
#: contact-form-7/admin/edit.php:82
|
148 |
+
msgid "Copy"
|
149 |
+
msgstr "Kopioi"
|
150 |
+
|
151 |
+
#: contact-form-7/admin/edit.php:87
|
152 |
+
msgid "Delete"
|
153 |
+
msgstr "Poista"
|
154 |
+
|
155 |
+
#: contact-form-7/admin/edit.php:89
|
156 |
+
msgid ""
|
157 |
+
"You are about to delete this contact form.\n"
|
158 |
+
" 'Cancel' to stop, 'OK' to delete."
|
159 |
+
msgstr ""
|
160 |
+
"Olet poistamassa yhteydenottolomaketta. \n"
|
161 |
+
"Paina 'Peruuta' peruuttaaksesi tai 'OK' poistaaksesi."
|
162 |
+
|
163 |
+
#: contact-form-7/admin/edit.php:104
|
164 |
+
msgid "Form"
|
165 |
+
msgstr "Lomake"
|
166 |
+
|
167 |
+
#: contact-form-7/admin/edit.php:128
|
168 |
+
msgid "Mail"
|
169 |
+
msgstr "Sähköposti"
|
170 |
+
|
171 |
+
#: contact-form-7/admin/edit.php:135
|
172 |
+
#: contact-form-7/admin/edit.php:202
|
173 |
+
msgid "To:"
|
174 |
+
msgstr "Vastaanottaja:"
|
175 |
+
|
176 |
+
#: contact-form-7/admin/edit.php:140
|
177 |
+
#: contact-form-7/admin/edit.php:207
|
178 |
+
msgid "From:"
|
179 |
+
msgstr "Lähettäjä:"
|
180 |
+
|
181 |
+
#: contact-form-7/admin/edit.php:145
|
182 |
+
#: contact-form-7/admin/edit.php:212
|
183 |
+
msgid "Subject:"
|
184 |
+
msgstr "Aihe:"
|
185 |
+
|
186 |
+
#: contact-form-7/admin/edit.php:152
|
187 |
+
#: contact-form-7/admin/edit.php:219
|
188 |
+
msgid "Additional headers:"
|
189 |
+
msgstr "Muita otsikoita:"
|
190 |
+
|
191 |
+
#: contact-form-7/admin/edit.php:157
|
192 |
+
#: contact-form-7/admin/edit.php:224
|
193 |
+
msgid "File attachments:"
|
194 |
+
msgstr "Liitetiedostot"
|
195 |
+
|
196 |
+
#: contact-form-7/admin/edit.php:165
|
197 |
+
#: contact-form-7/admin/edit.php:232
|
198 |
+
msgid "Use HTML content type"
|
199 |
+
msgstr "Käytä HTML:ää"
|
200 |
+
|
201 |
+
#: contact-form-7/admin/edit.php:172
|
202 |
+
#: contact-form-7/admin/edit.php:239
|
203 |
+
#: contact-form-7/includes/functions.php:78
|
204 |
+
msgid "Message body:"
|
205 |
+
msgstr "Viesti:"
|
206 |
+
|
207 |
+
#: contact-form-7/admin/edit.php:188
|
208 |
+
msgid "Mail (2)"
|
209 |
+
msgstr "Sähköposti (2)"
|
210 |
+
|
211 |
+
#: contact-form-7/admin/edit.php:194
|
212 |
+
msgid "Use mail (2)"
|
213 |
+
msgstr "Käytä Sähköpostia (2)"
|
214 |
+
|
215 |
+
#: contact-form-7/admin/edit.php:255
|
216 |
+
msgid "Messages"
|
217 |
+
msgstr "Viestit"
|
218 |
+
|
219 |
+
#: contact-form-7/admin/edit.php:285
|
220 |
+
msgid "Additional Settings"
|
221 |
+
msgstr "Lisäasetukset"
|
222 |
+
|
223 |
+
#: contact-form-7/admin/edit.php:333
|
224 |
+
#, php-format
|
225 |
+
msgid "Use the default language (%s)"
|
226 |
+
msgstr "Käytä oletuskieltä (%s)"
|
227 |
+
|
228 |
+
#: contact-form-7/admin/edit.php:334
|
229 |
+
#: contact-form-7/admin/edit.php:347
|
230 |
+
msgid "Add New"
|
231 |
+
msgstr "Lisää uusi "
|
232 |
+
|
233 |
+
#: contact-form-7/admin/edit.php:337
|
234 |
+
msgid "Or"
|
235 |
+
msgstr "Tai"
|
236 |
+
|
237 |
+
#: contact-form-7/admin/edit.php:342
|
238 |
+
msgid "(select language)"
|
239 |
+
msgstr "(valitse kieli)"
|
240 |
+
|
241 |
+
#: contact-form-7/includes/classes.php:564
|
242 |
+
msgid "Untitled"
|
243 |
+
msgstr "Ei otsikkoa"
|
244 |
+
|
245 |
+
#: contact-form-7/includes/functions.php:6
|
246 |
+
msgid "Sender's message was sent successfully"
|
247 |
+
msgstr "Viesti lähetettiin onnistuneesti."
|
248 |
+
|
249 |
+
#: contact-form-7/includes/functions.php:7
|
250 |
+
msgid "Your message was sent successfully. Thanks."
|
251 |
+
msgstr "Viesti lähetettiin onnistuneesti. Kiitos yhteydenotostanne!"
|
252 |
+
|
253 |
+
#: contact-form-7/includes/functions.php:11
|
254 |
+
msgid "Sender's message was failed to send"
|
255 |
+
msgstr "Viestin lähettäminen epäonnistui"
|
256 |
+
|
257 |
+
#: contact-form-7/includes/functions.php:12
|
258 |
+
#: contact-form-7/includes/functions.php:17
|
259 |
+
msgid "Failed to send your message. Please try later or contact administrator by other way."
|
260 |
+
msgstr "Viestin lähetys epäonnistui. Yritä myöhemmin uudestaan tai ota yhteyttä järjestelmänvalvojaan."
|
261 |
+
|
262 |
+
#: contact-form-7/includes/functions.php:16
|
263 |
+
msgid "Akismet judged the sending activity as spamming"
|
264 |
+
msgstr "Akismet piti viestiä spämminä."
|
265 |
+
|
266 |
+
#: contact-form-7/includes/functions.php:21
|
267 |
+
msgid "Validation errors occurred"
|
268 |
+
msgstr "Viestissä virheitä"
|
269 |
+
|
270 |
+
#: contact-form-7/includes/functions.php:22
|
271 |
+
msgid "Validation errors occurred. Please confirm the fields and submit it again."
|
272 |
+
msgstr "Lomakkeesta löytyi virheitä. Tarkasta lomake ja yritä uudelleen."
|
273 |
+
|
274 |
+
#: contact-form-7/includes/functions.php:26
|
275 |
+
msgid "There is a field of term that sender is needed to accept"
|
276 |
+
msgstr "Lähettäjän täytyy hyväksyä käyttöehdot"
|
277 |
+
|
278 |
+
#: contact-form-7/includes/functions.php:27
|
279 |
+
msgid "Please accept the terms to proceed."
|
280 |
+
msgstr "Hyväksy käyttöehdot jatkaaksesi."
|
281 |
+
|
282 |
+
#: contact-form-7/includes/functions.php:31
|
283 |
+
msgid "Email address that sender entered is invalid"
|
284 |
+
msgstr "Lähettäjän sähköpostiosoite vaikuttaa virheelliseltä."
|
285 |
+
|
286 |
+
#: contact-form-7/includes/functions.php:32
|
287 |
+
msgid "Email address seems invalid."
|
288 |
+
msgstr "Sähköpostiosoite vaikuttaa virheelliseltä."
|
289 |
+
|
290 |
+
#: contact-form-7/includes/functions.php:36
|
291 |
+
msgid "There is a field that sender is needed to fill in"
|
292 |
+
msgstr "Lähettäjän täytyy täyttää lomakkeen kenttä"
|
293 |
+
|
294 |
+
#: contact-form-7/includes/functions.php:37
|
295 |
+
msgid "Please fill the required field."
|
296 |
+
msgstr "Täytä pakollinen kenttä."
|
297 |
+
|
298 |
+
#: contact-form-7/includes/functions.php:46
|
299 |
+
msgid "Your Name"
|
300 |
msgstr "Nimi"
|
301 |
|
302 |
+
#: contact-form-7/includes/functions.php:46
|
303 |
+
#: contact-form-7/includes/functions.php:48
|
304 |
+
msgid "(required)"
|
305 |
+
msgstr "(pakollinen)"
|
306 |
|
307 |
+
#: contact-form-7/includes/functions.php:48
|
308 |
+
msgid "Your Email"
|
309 |
+
msgstr "Sähköposti"
|
310 |
|
311 |
+
#: contact-form-7/includes/functions.php:50
|
312 |
+
msgid "Subject"
|
313 |
+
msgstr "Aihe"
|
314 |
|
315 |
+
#: contact-form-7/includes/functions.php:52
|
316 |
+
msgid "Your Message"
|
317 |
+
msgstr "Viesti"
|
318 |
|
319 |
+
#: contact-form-7/includes/functions.php:54
|
320 |
+
msgid "Send"
|
321 |
+
msgstr "Lähetä"
|
322 |
|
323 |
+
#: contact-form-7/includes/functions.php:62
|
324 |
+
#, php-format
|
325 |
+
msgid "From: %s"
|
326 |
+
msgstr "Lähettäjä: %s"
|
327 |
+
|
328 |
+
#: contact-form-7/includes/functions.php:63
|
329 |
+
#, php-format
|
330 |
+
msgid "Subject: %s"
|
331 |
+
msgstr "Aihe: %s"
|
332 |
+
|
333 |
+
#: contact-form-7/includes/functions.php:64
|
334 |
+
msgid "Message Body:"
|
335 |
+
msgstr "Viesti: "
|
336 |
+
|
337 |
+
#: contact-form-7/includes/functions.php:65
|
338 |
+
#: contact-form-7/includes/functions.php:79
|
339 |
+
#, php-format
|
340 |
+
msgid "This mail is sent via contact form on %1$s %2$s"
|
341 |
+
msgstr "Tämä viesti on lähetetty palautelomakkeella %1$s %2$s"
|
342 |
+
|
343 |
+
#: contact-form-7/includes/functions.php:168
|
344 |
+
msgid "Afrikaans"
|
345 |
+
msgstr "Afrikaans"
|
346 |
+
|
347 |
+
#: contact-form-7/includes/functions.php:169
|
348 |
+
msgid "Albanian"
|
349 |
+
msgstr "Albanian"
|
350 |
+
|
351 |
+
#: contact-form-7/includes/functions.php:170
|
352 |
+
msgid "Arabic"
|
353 |
+
msgstr "Arabic"
|
354 |
+
|
355 |
+
#: contact-form-7/includes/functions.php:171
|
356 |
+
msgid "Bangla"
|
357 |
+
msgstr "Bangla"
|
358 |
+
|
359 |
+
#: contact-form-7/includes/functions.php:172
|
360 |
+
msgid "Bosnian"
|
361 |
+
msgstr "Bosnian"
|
362 |
+
|
363 |
+
#: contact-form-7/includes/functions.php:173
|
364 |
+
msgid "Brazilian Portuguese"
|
365 |
+
msgstr "Brazilian Portuguese"
|
366 |
+
|
367 |
+
#: contact-form-7/includes/functions.php:174
|
368 |
+
msgid "Bulgarian"
|
369 |
+
msgstr "Bulgarian"
|
370 |
+
|
371 |
+
#: contact-form-7/includes/functions.php:175
|
372 |
+
msgid "Catalan"
|
373 |
+
msgstr "Catalan"
|
374 |
+
|
375 |
+
#: contact-form-7/includes/functions.php:176
|
376 |
+
msgid "Chinese (Simplified)"
|
377 |
+
msgstr "Chinese (Simplified)"
|
378 |
+
|
379 |
+
#: contact-form-7/includes/functions.php:177
|
380 |
+
msgid "Chinese (Traditional)"
|
381 |
+
msgstr "Chinese (Traditional)"
|
382 |
+
|
383 |
+
#: contact-form-7/includes/functions.php:178
|
384 |
+
msgid "Croatian"
|
385 |
+
msgstr "Croatian"
|
386 |
+
|
387 |
+
#: contact-form-7/includes/functions.php:179
|
388 |
+
msgid "Czech"
|
389 |
+
msgstr "Czech"
|
390 |
+
|
391 |
+
#: contact-form-7/includes/functions.php:180
|
392 |
+
msgid "Danish"
|
393 |
+
msgstr "Danish"
|
394 |
+
|
395 |
+
#: contact-form-7/includes/functions.php:181
|
396 |
+
msgid "Dutch"
|
397 |
+
msgstr "Dutch"
|
398 |
+
|
399 |
+
#: contact-form-7/includes/functions.php:182
|
400 |
+
msgid "English"
|
401 |
+
msgstr "English"
|
402 |
+
|
403 |
+
#: contact-form-7/includes/functions.php:183
|
404 |
+
msgid "Estonian"
|
405 |
+
msgstr "Estonian"
|
406 |
+
|
407 |
+
#: contact-form-7/includes/functions.php:184
|
408 |
+
msgid "Finnish"
|
409 |
+
msgstr "Suomi"
|
410 |
+
|
411 |
+
#: contact-form-7/includes/functions.php:185
|
412 |
+
msgid "French"
|
413 |
+
msgstr "French"
|
414 |
+
|
415 |
+
#: contact-form-7/includes/functions.php:186
|
416 |
+
msgid "Galician"
|
417 |
+
msgstr "Galician"
|
418 |
+
|
419 |
+
#: contact-form-7/includes/functions.php:187
|
420 |
+
msgid "Georgian"
|
421 |
+
msgstr "Georgian"
|
422 |
+
|
423 |
+
#: contact-form-7/includes/functions.php:188
|
424 |
+
msgid "German"
|
425 |
+
msgstr "German"
|
426 |
+
|
427 |
+
#: contact-form-7/includes/functions.php:189
|
428 |
+
msgid "Greek"
|
429 |
+
msgstr "Greek"
|
430 |
+
|
431 |
+
#: contact-form-7/includes/functions.php:190
|
432 |
+
msgid "Hebrew"
|
433 |
+
msgstr "Hebrew"
|
434 |
+
|
435 |
+
#: contact-form-7/includes/functions.php:191
|
436 |
+
msgid "Hindi"
|
437 |
+
msgstr "Hindi"
|
438 |
+
|
439 |
+
#: contact-form-7/includes/functions.php:192
|
440 |
+
msgid "Hungarian"
|
441 |
+
msgstr "Hungarian"
|
442 |
+
|
443 |
+
#: contact-form-7/includes/functions.php:193
|
444 |
+
msgid "Indonesian"
|
445 |
+
msgstr "Indonesian"
|
446 |
+
|
447 |
+
#: contact-form-7/includes/functions.php:194
|
448 |
+
msgid "Italian"
|
449 |
+
msgstr "Italian"
|
450 |
+
|
451 |
+
#: contact-form-7/includes/functions.php:195
|
452 |
+
msgid "Japanese"
|
453 |
+
msgstr "Japanese"
|
454 |
+
|
455 |
+
#: contact-form-7/includes/functions.php:196
|
456 |
+
msgid "Korean"
|
457 |
+
msgstr "Korean"
|
458 |
+
|
459 |
+
#: contact-form-7/includes/functions.php:197
|
460 |
+
msgid "Latvian"
|
461 |
+
msgstr "Latvian"
|
462 |
+
|
463 |
+
#: contact-form-7/includes/functions.php:198
|
464 |
+
msgid "Lithuanian"
|
465 |
+
msgstr "Lithuanian"
|
466 |
+
|
467 |
+
#: contact-form-7/includes/functions.php:199
|
468 |
+
msgid "Malayalam"
|
469 |
+
msgstr "Malayalam"
|
470 |
+
|
471 |
+
#: contact-form-7/includes/functions.php:200
|
472 |
+
msgid "Norwegian"
|
473 |
+
msgstr "Norwegian"
|
474 |
+
|
475 |
+
#: contact-form-7/includes/functions.php:201
|
476 |
+
msgid "Persian"
|
477 |
+
msgstr "Persian"
|
478 |
+
|
479 |
+
#: contact-form-7/includes/functions.php:202
|
480 |
+
msgid "Polish"
|
481 |
+
msgstr "Polish"
|
482 |
+
|
483 |
+
#: contact-form-7/includes/functions.php:203
|
484 |
+
msgid "Portuguese"
|
485 |
+
msgstr "Portuguese"
|
486 |
+
|
487 |
+
#: contact-form-7/includes/functions.php:204
|
488 |
+
msgid "Russian"
|
489 |
+
msgstr "Russian"
|
490 |
+
|
491 |
+
#: contact-form-7/includes/functions.php:205
|
492 |
+
msgid "Romanian"
|
493 |
+
msgstr "Romanian"
|
494 |
+
|
495 |
+
#: contact-form-7/includes/functions.php:206
|
496 |
+
msgid "Serbian"
|
497 |
+
msgstr "Serbian"
|
498 |
+
|
499 |
+
#: contact-form-7/includes/functions.php:207
|
500 |
+
msgid "Slovak"
|
501 |
+
msgstr "Slovak"
|
502 |
+
|
503 |
+
#: contact-form-7/includes/functions.php:208
|
504 |
+
msgid "Slovene"
|
505 |
+
msgstr "Slovene"
|
506 |
+
|
507 |
+
#: contact-form-7/includes/functions.php:209
|
508 |
+
msgid "Spanish"
|
509 |
+
msgstr "Spanish"
|
510 |
+
|
511 |
+
#: contact-form-7/includes/functions.php:210
|
512 |
+
msgid "Swedish"
|
513 |
+
msgstr "Swedish"
|
514 |
+
|
515 |
+
#: contact-form-7/includes/functions.php:211
|
516 |
+
msgid "Thai"
|
517 |
+
msgstr "Thai"
|
518 |
+
|
519 |
+
#: contact-form-7/includes/functions.php:212
|
520 |
+
msgid "Turkish"
|
521 |
+
msgstr "Turkish"
|
522 |
+
|
523 |
+
#: contact-form-7/includes/functions.php:213
|
524 |
+
msgid "Ukrainian"
|
525 |
+
msgstr "Ukrainian"
|
526 |
+
|
527 |
+
#: contact-form-7/includes/functions.php:214
|
528 |
+
msgid "Vietnamese"
|
529 |
+
msgstr "Vietnamese"
|
530 |
+
|
531 |
+
#: contact-form-7/modules/acceptance.php:104
|
532 |
+
msgid "Acceptance"
|
533 |
+
msgstr "Hyväksyntä"
|
534 |
+
|
535 |
+
#: contact-form-7/modules/acceptance.php:113
|
536 |
+
#: contact-form-7/modules/captcha.php:214
|
537 |
+
#: contact-form-7/modules/checkbox.php:209
|
538 |
+
#: contact-form-7/modules/file.php:241
|
539 |
+
msgid "Name"
|
540 |
msgstr "Nimi"
|
541 |
|
542 |
+
#: contact-form-7/modules/acceptance.php:118
|
543 |
+
#: contact-form-7/modules/acceptance.php:121
|
544 |
+
#: contact-form-7/modules/captcha.php:221
|
545 |
+
#: contact-form-7/modules/captcha.php:224
|
546 |
+
#: contact-form-7/modules/captcha.php:229
|
547 |
+
#: contact-form-7/modules/captcha.php:232
|
548 |
+
#: contact-form-7/modules/captcha.php:236
|
549 |
+
#: contact-form-7/modules/captcha.php:247
|
550 |
+
#: contact-form-7/modules/captcha.php:250
|
551 |
+
#: contact-form-7/modules/captcha.php:255
|
552 |
+
#: contact-form-7/modules/captcha.php:258
|
553 |
+
#: contact-form-7/modules/checkbox.php:214
|
554 |
+
#: contact-form-7/modules/checkbox.php:217
|
555 |
+
#: contact-form-7/modules/file.php:246
|
556 |
+
#: contact-form-7/modules/file.php:249
|
557 |
+
#: contact-form-7/modules/file.php:254
|
558 |
+
#: contact-form-7/modules/file.php:257
|
559 |
+
msgid "optional"
|
560 |
+
msgstr "Valinnainen"
|
561 |
|
562 |
+
#: contact-form-7/modules/acceptance.php:127
|
563 |
+
msgid "Make this checkbox checked by default?"
|
564 |
+
msgstr "Merkitse tämä valintaruutu aktiiviseksi oletuksena?"
|
565 |
|
566 |
+
#: contact-form-7/modules/acceptance.php:128
|
567 |
+
msgid "Make this checkbox work inversely?"
|
568 |
+
msgstr "Laita tämä valintaruutu toimimaan käänteisesti"
|
569 |
|
570 |
+
#: contact-form-7/modules/acceptance.php:129
|
571 |
+
msgid "* That means visitor who accepts the term unchecks it."
|
572 |
+
msgstr "* Tämä tarkoittaa sitä että käyttäjän täytyy ottaa valinta pois hyväksyäkseen ehdon"
|
573 |
|
574 |
+
#: contact-form-7/modules/acceptance.php:134
|
575 |
+
#: contact-form-7/modules/captcha.php:263
|
576 |
+
#: contact-form-7/modules/checkbox.php:237
|
577 |
+
#: contact-form-7/modules/file.php:262
|
578 |
+
msgid "Copy this code and paste it into the form left."
|
579 |
+
msgstr "Kopioi ja liitä tämä koodi lomakkeeseen"
|
580 |
|
581 |
+
#: contact-form-7/modules/captcha.php:70
|
582 |
+
msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
|
583 |
+
msgstr "Käyttääksesi CAPTCHAa, sinun täytyy asentaa <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a>."
|
584 |
|
585 |
+
#: contact-form-7/modules/captcha.php:189
|
586 |
+
msgid "The code that sender entered does not match the CAPTCHA"
|
587 |
+
msgstr "Koodi jonka lähettäjä kirjoitta ei matsaa CAPTCHAa"
|
588 |
+
|
589 |
+
#: contact-form-7/modules/captcha.php:190
|
590 |
+
msgid "Your entered code is incorrect."
|
591 |
+
msgstr "Syöttämäsi koodi on virheellinen."
|
592 |
+
|
593 |
+
#: contact-form-7/modules/captcha.php:200
|
594 |
+
msgid "CAPTCHA"
|
595 |
+
msgstr "CAPTCHA"
|
596 |
+
|
597 |
+
#: contact-form-7/modules/captcha.php:211
|
598 |
+
msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
|
599 |
+
msgstr "Huom: Käyttääksesi CAPTCHAa, asenna Really Simple CAPTCHA"
|
600 |
+
|
601 |
+
#: contact-form-7/modules/captcha.php:218
|
602 |
+
msgid "Image settings"
|
603 |
+
msgstr "Kuvan asetukset"
|
604 |
+
|
605 |
+
#: contact-form-7/modules/captcha.php:229
|
606 |
msgid "Foreground color"
|
607 |
msgstr "Etuosan väri"
|
608 |
|
609 |
+
#: contact-form-7/modules/captcha.php:232
|
610 |
msgid "Background color"
|
611 |
msgstr "Taustan väri"
|
612 |
|
613 |
+
#: contact-form-7/modules/captcha.php:236
|
614 |
msgid "Image size"
|
615 |
msgstr "Kuvan koko"
|
616 |
|
617 |
+
#: contact-form-7/modules/captcha.php:237
|
618 |
msgid "Small"
|
619 |
msgstr "Pieni"
|
620 |
|
621 |
+
#: contact-form-7/modules/captcha.php:238
|
622 |
msgid "Medium"
|
623 |
msgstr "Keski"
|
624 |
|
625 |
+
#: contact-form-7/modules/captcha.php:239
|
626 |
msgid "Large"
|
627 |
msgstr "Suuri"
|
628 |
|
629 |
+
#: contact-form-7/modules/captcha.php:244
|
|
|
|
|
|
|
|
|
630 |
msgid "Input field settings"
|
631 |
msgstr "Syötekentän asetukset"
|
632 |
|
633 |
+
#: contact-form-7/modules/captcha.php:264
|
634 |
msgid "For image"
|
635 |
msgstr "Kuvalle"
|
636 |
|
637 |
+
#: contact-form-7/modules/captcha.php:266
|
638 |
msgid "For input field"
|
639 |
msgstr "Syötekentälle"
|
640 |
|
641 |
+
#: contact-form-7/modules/captcha.php:296
|
642 |
+
#, php-format
|
643 |
+
msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
|
644 |
+
msgstr "Tämä palautelomake sisältää CAPTCHA-kentän, mutta väliaikaiskansiota tiedostoille (%s) ei ole tai sinne ei voi kirjoittaa. Voit luoda kansion tai vaihtaa oikeudet manuaalisesti."
|
645 |
+
|
646 |
+
#: contact-form-7/modules/captcha.php:302
|
647 |
+
msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
|
648 |
+
msgstr "Tämä palautelomake sisältää CAPTCHA-kentän, mutta tarvittavia kirjastoja (GD ja FreeType) ei ole serverillä."
|
649 |
+
|
650 |
+
#: contact-form-7/modules/checkbox.php:182
|
651 |
+
msgid "Checkboxes"
|
652 |
+
msgstr "Valintaruudut"
|
653 |
+
|
654 |
+
#: contact-form-7/modules/checkbox.php:185
|
655 |
+
msgid "Radio buttons"
|
656 |
+
msgstr "Valintanapit"
|
657 |
+
|
658 |
+
#: contact-form-7/modules/checkbox.php:206
|
659 |
+
#: contact-form-7/modules/file.php:240
|
660 |
+
msgid "Required field?"
|
661 |
+
msgstr "Pakollinen tieto?"
|
662 |
+
|
663 |
+
#: contact-form-7/modules/checkbox.php:222
|
664 |
+
msgid "Choices"
|
665 |
+
msgstr "Valinnat"
|
666 |
+
|
667 |
+
#: contact-form-7/modules/checkbox.php:224
|
668 |
msgid "* One choice per line."
|
669 |
msgstr "* Yksi valinta per rivi"
|
670 |
|
671 |
+
#: contact-form-7/modules/checkbox.php:228
|
672 |
+
msgid "Put a label first, a checkbox last?"
|
673 |
+
msgstr "Nimi ensin, valintaruutu viimeseksi?"
|
674 |
|
675 |
+
#: contact-form-7/modules/checkbox.php:229
|
676 |
+
#, fuzzy
|
677 |
+
msgid "Wrap each item with <label> tag?"
|
678 |
+
msgstr "Wrap each item with <label> tag?"
|
679 |
|
680 |
+
#: contact-form-7/modules/checkbox.php:231
|
681 |
+
msgid "Make checkboxes exclusive?"
|
682 |
+
msgstr "Tee valintaruuduista poissulkeva?"
|
683 |
|
684 |
+
#: contact-form-7/modules/checkbox.php:239
|
685 |
+
msgid "And, put this code into the Mail fields below."
|
686 |
+
msgstr "Kopioi ja liitä tämä koodi viestikenttiin alla."
|
687 |
|
688 |
+
#: contact-form-7/modules/file.php:204
|
689 |
+
msgid "Uploading a file fails for any reason"
|
690 |
+
msgstr "Tiedoston lataaminen epäonnistuu jostain syystä"
|
691 |
|
692 |
+
#: contact-form-7/modules/file.php:205
|
693 |
+
msgid "Failed to upload file."
|
694 |
+
msgstr "Tiedoston lataaminen epäonnistui."
|
|
|
695 |
|
696 |
+
#: contact-form-7/modules/file.php:209
|
697 |
+
msgid "Uploaded file is not allowed file type"
|
698 |
+
msgstr "Ladattu tiedosto ei ole sallittua tiedostotyyppiä"
|
699 |
|
700 |
+
#: contact-form-7/modules/file.php:210
|
701 |
+
msgid "This file type is not allowed."
|
702 |
+
msgstr "Tiedostotyyppi ei ole sallittu."
|
703 |
|
704 |
+
#: contact-form-7/modules/file.php:214
|
705 |
+
msgid "Uploaded file is too large"
|
706 |
+
msgstr "Ladattu tiedosto on liian suuri"
|
707 |
|
708 |
+
#: contact-form-7/modules/file.php:215
|
709 |
+
msgid "This file is too large."
|
710 |
+
msgstr "Tiedosto on liian suuri"
|
|
|
711 |
|
712 |
+
#: contact-form-7/modules/file.php:219
|
713 |
+
msgid "Uploading a file fails for PHP error"
|
714 |
+
msgstr "Tiedoston lataaminen epäonnistui PHP-virheen vuoksi"
|
715 |
|
716 |
+
#: contact-form-7/modules/file.php:220
|
717 |
+
msgid "Failed to upload file. Error occurred."
|
718 |
+
msgstr "Tiedoston lataaminen epäonnistui. Virhe."
|
719 |
|
720 |
+
#: contact-form-7/modules/file.php:231
|
721 |
+
msgid "File upload"
|
722 |
+
msgstr "Tiedoston lataaminen"
|
723 |
|
724 |
+
#: contact-form-7/modules/file.php:254
|
725 |
+
msgid "File size limit"
|
726 |
+
msgstr "Tiedoston maksimikoko"
|
727 |
|
728 |
+
#: contact-form-7/modules/file.php:254
|
729 |
+
msgid "bytes"
|
730 |
+
msgstr "bittiä"
|
731 |
|
732 |
+
#: contact-form-7/modules/file.php:257
|
733 |
+
msgid "Acceptable file types"
|
734 |
+
msgstr "Hyväksytyt tiedostotyypit"
|
735 |
|
736 |
+
#: contact-form-7/modules/file.php:264
|
737 |
+
msgid "And, put this code into the File Attachments field below."
|
738 |
+
msgstr "Ja laita tämä koodi Liitetiedosto-kenttään."
|
739 |
|
740 |
+
#: contact-form-7/modules/file.php:289
|
741 |
+
#, php-format
|
742 |
+
msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
|
743 |
+
msgstr "Tämä palautelomake sisältää ladattuja tiedostoja, mutta väliaikaista kansiota tiedostoille (%s) ei ole tai ei voi kirjoittaa. Voit luoda kansion tai vaihtaa oikeudet manuaalisesti."
|
744 |
|
745 |
+
#: contact-form-7/modules/icl.php:74
|
746 |
+
msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
|
747 |
+
msgstr "Tämä palautelomake sisältää [icl] tageja, mutta ne ovat vanhentuneita eivätkä toimi Contact Form 7:ssä. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">On helpompi tapa luoda lomakkeita eri kielille</a> ja suosittelemme käyttämään sitä."
|
748 |
|
749 |
+
#: contact-form-7/modules/quiz.php:170
|
750 |
+
msgid "Sender doesn't enter the correct answer to the quiz"
|
751 |
+
msgstr "Lähettäjä ei antanut oikeaa vastausta kysymykseen"
|
752 |
|
753 |
+
#: contact-form-7/modules/quiz.php:171
|
754 |
+
msgid "Your answer is not correct."
|
755 |
+
msgstr "Vastauksesi on väärä"
|
756 |
|
757 |
+
#: contact-form-7/modules/quiz.php:181
|
758 |
+
msgid "Quiz"
|
759 |
+
msgstr "Kysymys"
|
|
|
760 |
|
761 |
+
#: contact-form-7/modules/quiz.php:211
|
762 |
+
msgid "Quizzes"
|
763 |
+
msgstr "Kysymykset"
|
|
|
764 |
|
765 |
+
#: contact-form-7/modules/quiz.php:213
|
766 |
+
msgid "* quiz|answer (e.g. 1+1=?|2)"
|
767 |
+
msgstr "*kysymys|vastaus (esim 1+1=?|2)"
|
|
|
768 |
|
769 |
+
#: contact-form-7/modules/select.php:154
|
770 |
+
msgid "Drop-down menu"
|
771 |
+
msgstr "Alasvetovalikko"
|
|
|
772 |
|
773 |
+
#: contact-form-7/modules/select.php:183
|
774 |
+
msgid "Allow multiple selections?"
|
775 |
+
msgstr "Salli monivalinta?"
|
776 |
|
777 |
+
#: contact-form-7/modules/select.php:184
|
778 |
+
msgid "Insert a blank item as the first option?"
|
779 |
+
msgstr "Laita tyhjä valinta ensimmäiseksi vaihtoehdoksi?"
|
780 |
|
781 |
+
#: contact-form-7/modules/submit.php:62
|
782 |
+
msgid "Submit button"
|
783 |
+
msgstr "Lähetä -nappi"
|
784 |
|
785 |
+
#: contact-form-7/modules/submit.php:80
|
786 |
+
msgid "Label"
|
787 |
+
msgstr "Nimi"
|
788 |
|
789 |
+
#: contact-form-7/modules/text.php:137
|
790 |
+
msgid "Text field"
|
791 |
+
msgstr "Tekstialue"
|
792 |
+
|
793 |
+
#: contact-form-7/modules/text.php:140
|
794 |
+
msgid "Email field"
|
795 |
+
msgstr "Sähköpostikenttä"
|
796 |
+
|
797 |
+
#: contact-form-7/modules/text.php:182
|
798 |
+
msgid "Akismet"
|
799 |
+
msgstr "Akismet"
|
800 |
+
|
801 |
+
#: contact-form-7/modules/text.php:184
|
802 |
+
msgid "This field requires author's name"
|
803 |
+
msgstr "Tämä kenttä vaatii kirjoittajan nimen"
|
804 |
+
|
805 |
+
#: contact-form-7/modules/text.php:185
|
806 |
+
msgid "This field requires author's URL"
|
807 |
+
msgstr "Tämä kenttä vaatii kirjoittajan URL:n"
|
808 |
+
|
809 |
+
#: contact-form-7/modules/text.php:187
|
810 |
+
msgid "This field requires author's email address"
|
811 |
+
msgstr "Tämä kenttä vaatii kirjoittajan sähköpostiosoitteen"
|
812 |
+
|
813 |
+
#: contact-form-7/modules/text.php:191
|
814 |
+
#: contact-form-7/modules/textarea.php:157
|
815 |
+
msgid "Default value"
|
816 |
+
msgstr "Vakioarvo"
|
817 |
+
|
818 |
+
#: contact-form-7/modules/textarea.php:126
|
819 |
+
msgid "Text area"
|
820 |
+
msgstr "Tekstikenttä"
|
821 |
+
|
822 |
+
#~ msgid "Delete this contact form"
|
823 |
+
#~ msgstr "Poista tämä yhteydenottolomake"
|
824 |
|
825 |
#~ msgid "Form content"
|
826 |
#~ msgstr "Lomakkeen sisältö"
|
827 |
+
|
828 |
#~ msgid "Mail template"
|
829 |
#~ msgstr "Sähköpostimalli"
|
830 |
+
|
831 |
#~ msgid "Sender field:"
|
832 |
#~ msgstr "Lähettäjä:"
|
833 |
+
|
834 |
#~ msgid "Recipient address:"
|
835 |
#~ msgstr "Vastaanottajan osoite:"
|
836 |
+
|
837 |
#~ msgid "Insert"
|
838 |
#~ msgstr "Syötä"
|
|
languages/wpcf7-th.mo
CHANGED
Binary file
|
languages/wpcf7-th.po
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: kazama <anotherkaz@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -15,43 +15,143 @@ msgstr ""
|
|
15 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
16 |
"X-Poedit-SearchPath-0: contact-form-7\n"
|
17 |
|
18 |
-
#: contact-form-7/admin/admin
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
#, php-format
|
20 |
msgid "<strong>The database table for Contact Form 7 does not exist.</strong> You must <a href=\"%s\">create the table</a> for it to work."
|
21 |
msgstr "<strong>ตารางฐานข้อมูลสำหรับ Contact Form 7 ยังไม่ได้ถูกสร้าง</strong> คุณต้อง <a href=\"%s\">สร้างตารางข้อมูล</a> เพื่อให้มันทำงานได้"
|
22 |
|
23 |
-
#: contact-form-7/admin/
|
24 |
msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
|
25 |
msgstr "<strong>ตารางฐานข้อมูลสำหรับ Contact Form 7 ยังไม่ได้ถูกสร้าง</strong> "
|
26 |
|
27 |
-
#: contact-form-7/admin/
|
28 |
-
#: contact-form-7/admin/admin-panel.php:30
|
29 |
-
#: contact-form-7/admin/admin.php:119
|
30 |
-
msgid "Contact Form 7"
|
31 |
-
msgstr "Contact Form 7"
|
32 |
-
|
33 |
-
#: contact-form-7/admin/admin-panel.php:45
|
34 |
msgid "Add new"
|
35 |
msgstr "เพิ่มใหม่"
|
36 |
|
37 |
-
#: contact-form-7/admin/
|
38 |
msgid "Copy this code and paste it into your post, page or text widget content."
|
39 |
msgstr "คัดลอกโค๊ดนี้แล้ววางมันลงในเรื่อง หน้า หรือ ข้อความ text widget ของคุณ"
|
40 |
|
41 |
-
#: contact-form-7/admin/
|
42 |
-
#: contact-form-7/admin/
|
43 |
msgid "Save"
|
44 |
msgstr "บันทึก"
|
45 |
|
46 |
-
#: contact-form-7/admin/
|
47 |
msgid "Copy"
|
48 |
msgstr "คัดลอก"
|
49 |
|
50 |
-
#: contact-form-7/admin/
|
51 |
msgid "Delete"
|
52 |
msgstr "ลบ"
|
53 |
|
54 |
-
#: contact-form-7/admin/
|
55 |
msgid ""
|
56 |
"You are about to delete this contact form.\n"
|
57 |
" 'Cancel' to stop, 'OK' to delete."
|
@@ -59,444 +159,661 @@ msgstr ""
|
|
59 |
"คุณกำลังลบแบบฟอร์มติดต่อนี้\n"
|
60 |
" 'Cancel' เพื่อหยุด 'OK' เพื่อลบ"
|
61 |
|
62 |
-
#: contact-form-7/admin/
|
63 |
msgid "Form"
|
64 |
msgstr "ฟอร์ม"
|
65 |
|
66 |
-
#: contact-form-7/admin/
|
67 |
msgid "Mail"
|
68 |
msgstr "เมล์"
|
69 |
|
70 |
-
#: contact-form-7/admin/
|
71 |
-
#: contact-form-7/admin/
|
72 |
msgid "To:"
|
73 |
msgstr "ถึง:"
|
74 |
|
75 |
-
#: contact-form-7/admin/
|
76 |
-
#: contact-form-7/admin/
|
77 |
msgid "From:"
|
78 |
msgstr "จาก:"
|
79 |
|
80 |
-
#: contact-form-7/admin/
|
81 |
-
#: contact-form-7/admin/
|
82 |
msgid "Subject:"
|
83 |
msgstr "หัวข้อ:"
|
84 |
|
85 |
-
#: contact-form-7/admin/
|
86 |
-
#: contact-form-7/admin/
|
87 |
msgid "Additional headers:"
|
88 |
msgstr "ส่วนหัวเพิ่มเติม:"
|
89 |
|
90 |
-
#: contact-form-7/admin/
|
91 |
-
#: contact-form-7/admin/
|
92 |
msgid "File attachments:"
|
93 |
msgstr "ไฟล์แนบ:"
|
94 |
|
95 |
-
#: contact-form-7/admin/
|
96 |
-
#: contact-form-7/admin/
|
97 |
msgid "Use HTML content type"
|
98 |
msgstr "ใช้ชนิดเนื้อหาแบบ HTML"
|
99 |
|
100 |
-
#: contact-form-7/admin/
|
101 |
-
#: contact-form-7/admin/
|
|
|
102 |
msgid "Message body:"
|
103 |
msgstr "เนื้อหาข้อความ:"
|
104 |
|
105 |
-
#: contact-form-7/admin/
|
106 |
msgid "Mail (2)"
|
107 |
msgstr "เมล์ (2)"
|
108 |
|
109 |
-
#: contact-form-7/admin/
|
110 |
msgid "Use mail (2)"
|
111 |
msgstr "ใช้เมล์l (2)"
|
112 |
|
113 |
-
#: contact-form-7/admin/
|
114 |
msgid "Messages"
|
115 |
msgstr "ข้อความ"
|
116 |
|
117 |
-
#: contact-form-7/admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
msgid "Sender's message was sent successfully"
|
119 |
msgstr "ข้อความผู้ส่งถูกส่งเรียบร้อยแล้ว"
|
120 |
|
121 |
-
#: contact-form-7/
|
|
|
|
|
|
|
|
|
122 |
msgid "Sender's message was failed to send"
|
123 |
msgstr "ข้อความผู้ส่งล้มเหลวในการส่ง"
|
124 |
|
125 |
-
#: contact-form-7/
|
|
|
|
|
|
|
|
|
|
|
126 |
msgid "Akismet judged the sending activity as spamming"
|
127 |
msgstr "Akismet พิจารณาว่าการส่งเป็นการ spam"
|
128 |
|
129 |
-
#: contact-form-7/
|
130 |
msgid "Validation errors occurred"
|
131 |
msgstr "การตรวจสอบผิดพลาด"
|
132 |
|
133 |
-
#: contact-form-7/
|
134 |
-
msgid "
|
135 |
-
msgstr "
|
|
|
|
|
|
|
|
|
136 |
|
137 |
-
#: contact-form-7/
|
|
|
|
|
|
|
|
|
138 |
msgid "Email address that sender entered is invalid"
|
139 |
msgstr "อีเมล์ที่ผู้ส่งให้มานั้นใช้งานไม่ได้"
|
140 |
|
141 |
-
#: contact-form-7/
|
142 |
-
msgid "
|
143 |
-
msgstr "
|
144 |
|
145 |
-
#: contact-form-7/
|
146 |
-
msgid "
|
147 |
-
msgstr "
|
148 |
|
149 |
-
#: contact-form-7/
|
150 |
-
msgid "
|
151 |
-
msgstr "
|
152 |
|
153 |
-
#: contact-form-7/
|
154 |
-
msgid "
|
155 |
-
msgstr "
|
156 |
|
157 |
-
#: contact-form-7/
|
158 |
-
|
159 |
-
|
|
|
160 |
|
161 |
-
#: contact-form-7/
|
162 |
-
msgid "
|
163 |
-
msgstr "
|
164 |
|
165 |
-
#: contact-form-7/
|
166 |
-
msgid "
|
167 |
-
msgstr "
|
168 |
|
169 |
-
#: contact-form-7/
|
170 |
-
msgid "
|
171 |
-
msgstr "
|
172 |
|
173 |
-
#: contact-form-7/
|
174 |
-
msgid "
|
175 |
-
msgstr "
|
176 |
|
177 |
-
#: contact-form-7/
|
178 |
-
|
179 |
-
|
|
|
180 |
|
181 |
-
#: contact-form-7/
|
182 |
-
|
183 |
-
|
|
|
184 |
|
185 |
-
#: contact-form-7/
|
186 |
-
msgid "
|
187 |
-
msgstr "
|
188 |
|
189 |
-
#: contact-form-7/
|
190 |
-
|
191 |
-
|
|
|
|
|
192 |
|
193 |
-
#: contact-form-7/
|
194 |
-
msgid "
|
195 |
-
msgstr "
|
196 |
|
197 |
-
#: contact-form-7/
|
198 |
-
msgid "
|
199 |
-
msgstr "
|
200 |
|
201 |
-
#: contact-form-7/
|
202 |
-
msgid "
|
203 |
-
msgstr "
|
204 |
|
205 |
-
#: contact-form-7/
|
206 |
-
msgid "
|
207 |
-
msgstr "
|
208 |
|
209 |
-
#: contact-form-7/
|
210 |
-
msgid "
|
211 |
-
msgstr "
|
212 |
|
213 |
-
#: contact-form-7/
|
214 |
-
msgid "
|
215 |
-
msgstr "
|
216 |
|
217 |
-
#: contact-form-7/
|
218 |
-
msgid "
|
219 |
-
msgstr "
|
220 |
|
221 |
-
#: contact-form-7/
|
222 |
-
msgid "
|
223 |
-
msgstr "
|
224 |
|
225 |
-
#: contact-form-7/
|
226 |
-
msgid "
|
227 |
-
msgstr "
|
228 |
|
229 |
-
#: contact-form-7/
|
230 |
-
msgid "
|
231 |
-
msgstr "
|
232 |
|
233 |
-
#: contact-form-7/
|
234 |
-
msgid "
|
235 |
-
msgstr "
|
236 |
|
237 |
-
#: contact-form-7/
|
238 |
-
msgid "
|
239 |
-
msgstr "
|
240 |
|
241 |
-
#: contact-form-7/
|
242 |
-
msgid "
|
243 |
-
msgstr "
|
244 |
|
245 |
-
#: contact-form-7/
|
246 |
-
msgid "
|
247 |
-
msgstr "
|
248 |
|
249 |
-
#: contact-form-7/
|
250 |
-
msgid "
|
251 |
-
msgstr "
|
252 |
|
253 |
-
#: contact-form-7/
|
254 |
-
msgid "
|
255 |
-
msgstr "
|
256 |
|
257 |
-
#: contact-form-7/
|
258 |
-
msgid "
|
259 |
-
msgstr "
|
260 |
|
261 |
-
#: contact-form-7/
|
262 |
-
msgid "
|
263 |
-
msgstr "
|
264 |
|
265 |
-
#: contact-form-7/
|
266 |
-
msgid "
|
267 |
-
msgstr "
|
268 |
|
269 |
-
#: contact-form-7/
|
270 |
-
msgid "
|
271 |
-
msgstr "
|
272 |
|
273 |
-
#: contact-form-7/
|
274 |
-
msgid "
|
275 |
-
msgstr "
|
276 |
|
277 |
-
#: contact-form-7/
|
278 |
-
msgid "
|
279 |
-
msgstr "
|
280 |
|
281 |
-
#: contact-form-7/
|
282 |
-
msgid "
|
283 |
-
msgstr "
|
284 |
|
285 |
-
#: contact-form-7/
|
286 |
-
msgid "
|
287 |
-
msgstr "
|
288 |
|
289 |
-
#: contact-form-7/
|
290 |
-
msgid "
|
291 |
-
msgstr "
|
292 |
|
293 |
-
#: contact-form-7/
|
294 |
-
msgid "
|
295 |
-
msgstr "
|
296 |
|
297 |
-
#: contact-form-7/
|
298 |
-
msgid "
|
299 |
-
msgstr "
|
300 |
|
301 |
-
#: contact-form-7/
|
302 |
-
msgid "
|
303 |
-
msgstr "
|
304 |
|
305 |
-
#: contact-form-7/
|
306 |
-
msgid "
|
307 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
308 |
|
309 |
-
#: contact-form-7/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
310 |
msgid "Copy this code and paste it into the form left."
|
311 |
msgstr "คัดลอกโค๊ดนี้และวางมันลงในฟอร์มด้านซ้าย"
|
312 |
|
313 |
-
#: contact-form-7/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
314 |
msgid "Foreground color"
|
315 |
msgstr "สีด้านหน้า"
|
316 |
|
317 |
-
#: contact-form-7/
|
318 |
msgid "Background color"
|
319 |
msgstr "สีด้านหลัง"
|
320 |
|
321 |
-
#: contact-form-7/
|
322 |
msgid "Image size"
|
323 |
msgstr "ขนาดรูปภาพ"
|
324 |
|
325 |
-
#: contact-form-7/
|
326 |
msgid "Small"
|
327 |
msgstr "เล็ก"
|
328 |
|
329 |
-
#: contact-form-7/
|
330 |
msgid "Medium"
|
331 |
msgstr "ปานกลาง"
|
332 |
|
333 |
-
#: contact-form-7/
|
334 |
msgid "Large"
|
335 |
msgstr "ใหญ่"
|
336 |
|
337 |
-
#: contact-form-7/
|
338 |
-
msgid "Image settings"
|
339 |
-
msgstr "การตั้งค่ารูปภาพ"
|
340 |
-
|
341 |
-
#: contact-form-7/admin/admin.php:217
|
342 |
msgid "Input field settings"
|
343 |
msgstr "การตั้งค่าช่องใส่ข้อมูล"
|
344 |
|
345 |
-
#: contact-form-7/
|
346 |
msgid "For image"
|
347 |
msgstr "สำหรับรูปภาพ"
|
348 |
|
349 |
-
#: contact-form-7/
|
350 |
msgid "For input field"
|
351 |
msgstr "สำหรับช่องใส่ข้อมูล"
|
352 |
|
353 |
-
#: contact-form-7/
|
354 |
-
|
355 |
-
|
|
|
356 |
|
357 |
-
#: contact-form-7/
|
358 |
-
msgid "
|
359 |
-
msgstr "
|
360 |
|
361 |
-
#: contact-form-7/
|
362 |
-
msgid "
|
363 |
-
msgstr "
|
364 |
|
365 |
-
#: contact-form-7/
|
366 |
-
msgid "
|
367 |
-
msgstr "
|
368 |
|
369 |
-
#: contact-form-7/
|
370 |
-
|
371 |
-
|
|
|
372 |
|
373 |
-
#: contact-form-7/
|
374 |
-
msgid "
|
375 |
-
msgstr "
|
376 |
|
377 |
-
#: contact-form-7/
|
378 |
-
msgid "
|
379 |
-
msgstr "
|
380 |
|
381 |
-
#: contact-form-7/
|
382 |
-
msgid "
|
383 |
-
msgstr "
|
384 |
|
385 |
-
#: contact-form-7/
|
386 |
-
msgid "
|
387 |
-
msgstr "
|
388 |
|
389 |
-
#: contact-form-7/
|
390 |
-
msgid "
|
391 |
-
msgstr "
|
392 |
|
393 |
-
#: contact-form-7/
|
394 |
-
msgid "
|
395 |
-
msgstr "
|
396 |
|
397 |
-
#: contact-form-7/
|
398 |
-
msgid "
|
399 |
-
msgstr "
|
400 |
|
401 |
-
#: contact-form-7/
|
402 |
-
msgid "
|
403 |
-
msgstr "
|
404 |
|
405 |
-
#: contact-form-7/
|
406 |
-
msgid "
|
407 |
-
msgstr "
|
408 |
|
409 |
-
#: contact-form-7/
|
410 |
-
msgid "
|
411 |
-
msgstr "
|
412 |
|
413 |
-
#: contact-form-7/
|
414 |
-
msgid "
|
415 |
-
msgstr "
|
416 |
|
417 |
-
#: contact-form-7/
|
418 |
-
msgid "
|
419 |
-
msgstr "
|
420 |
|
421 |
-
#: contact-form-7/
|
422 |
-
msgid "
|
423 |
-
msgstr "
|
424 |
|
425 |
-
#: contact-form-7/
|
426 |
-
msgid "
|
427 |
-
msgstr "
|
428 |
|
429 |
-
#: contact-form-7/
|
430 |
-
|
431 |
-
|
432 |
-
msgstr "การส่งข้อความของคุณล้มเหลว โปรดลองใหม่อีกครั้งหรือติดต่อผู้ควบคุมโดยทางอื่น"
|
433 |
|
434 |
-
#: contact-form-7/
|
435 |
-
msgid "
|
436 |
-
msgstr "
|
437 |
|
438 |
-
#: contact-form-7/
|
439 |
-
msgid "
|
440 |
-
msgstr "
|
441 |
|
442 |
-
#: contact-form-7/
|
443 |
-
msgid "
|
444 |
-
msgstr "
|
445 |
|
446 |
-
#: contact-form-7/
|
447 |
-
msgid "
|
448 |
-
msgstr "
|
449 |
|
450 |
-
#: contact-form-7/
|
451 |
-
|
452 |
-
|
|
|
453 |
|
454 |
-
#: contact-form-7/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
455 |
msgid "Your answer is not correct."
|
456 |
msgstr "คำตอบของคุณไม่ถูกต้อง"
|
457 |
|
458 |
-
#: contact-form-7/
|
459 |
-
msgid "
|
460 |
-
msgstr "
|
461 |
|
462 |
-
#: contact-form-7/
|
463 |
-
msgid "
|
464 |
-
msgstr "
|
465 |
|
466 |
-
#: contact-form-7/
|
467 |
-
msgid "
|
468 |
-
msgstr "
|
469 |
|
470 |
-
#: contact-form-7/
|
471 |
-
msgid "
|
472 |
-
msgstr "
|
473 |
|
474 |
-
#: contact-form-7/
|
475 |
-
msgid "
|
476 |
-
msgstr "
|
477 |
|
478 |
-
#: contact-form-7/
|
479 |
-
|
480 |
-
|
481 |
-
msgstr "(ต้องการ)"
|
482 |
|
483 |
-
#: contact-form-7/
|
484 |
-
msgid "
|
485 |
-
msgstr "
|
486 |
|
487 |
-
#: contact-form-7/
|
488 |
-
msgid "
|
489 |
-
msgstr "
|
490 |
|
491 |
-
#: contact-form-7/
|
492 |
-
msgid "
|
493 |
-
msgstr "
|
494 |
|
495 |
-
#: contact-form-7/
|
496 |
-
msgid "
|
497 |
-
msgstr "
|
498 |
|
499 |
-
#: contact-form-7/modules/
|
500 |
-
msgid "
|
501 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
502 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contact Form 7\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-05-18 23:31+0900\n"
|
6 |
+
"PO-Revision-Date: 2010-06-15 15:12+0700\n"
|
7 |
"Last-Translator: kazama <anotherkaz@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
15 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
16 |
"X-Poedit-SearchPath-0: contact-form-7\n"
|
17 |
|
18 |
+
#: contact-form-7/admin/admin.php:120
|
19 |
+
#: contact-form-7/admin/edit.php:17
|
20 |
+
#: contact-form-7/admin/edit.php:30
|
21 |
+
msgid "Contact Form 7"
|
22 |
+
msgstr "Contact Form 7"
|
23 |
+
|
24 |
+
#: contact-form-7/admin/admin.php:120
|
25 |
+
msgid "Contact"
|
26 |
+
msgstr "ติดต่อ"
|
27 |
+
|
28 |
+
#: contact-form-7/admin/admin.php:123
|
29 |
+
msgid "Edit Contact Forms"
|
30 |
+
msgstr "แก้ไขแบบฟอร์มติดต่อ"
|
31 |
+
|
32 |
+
#: contact-form-7/admin/admin.php:123
|
33 |
+
msgid "Edit"
|
34 |
+
msgstr "แก้ไข"
|
35 |
+
|
36 |
+
#: contact-form-7/admin/admin.php:162
|
37 |
+
msgid "Generate Tag"
|
38 |
+
msgstr "สร้างป้ายกำกับ"
|
39 |
+
|
40 |
+
#: contact-form-7/admin/admin.php:163
|
41 |
+
msgid "Show"
|
42 |
+
msgstr "แสดง"
|
43 |
+
|
44 |
+
#: contact-form-7/admin/admin.php:164
|
45 |
+
msgid "Hide"
|
46 |
+
msgstr "ซ่อน"
|
47 |
+
|
48 |
+
#: contact-form-7/admin/admin.php:261
|
49 |
+
msgid "Contact form"
|
50 |
+
msgstr "ฟอร์มติดต่อ"
|
51 |
+
|
52 |
+
#: contact-form-7/admin/admin.php:280
|
53 |
+
msgid "Settings"
|
54 |
+
msgstr "การตั้งค่า"
|
55 |
+
|
56 |
+
#: contact-form-7/admin/admin.php:291
|
57 |
+
msgid "http://contactform7.com/"
|
58 |
+
msgstr "http://contactform7.com/"
|
59 |
+
|
60 |
+
#: contact-form-7/admin/admin.php:292
|
61 |
+
msgid "Contactform7.com"
|
62 |
+
msgstr "Contactform7.com"
|
63 |
+
|
64 |
+
#: contact-form-7/admin/admin.php:293
|
65 |
+
msgid "http://contactform7.com/docs/"
|
66 |
+
msgstr "http://contactform7.com/docs/"
|
67 |
+
|
68 |
+
#: contact-form-7/admin/admin.php:294
|
69 |
+
msgid "Docs"
|
70 |
+
msgstr "เอกสารคู่มือ"
|
71 |
+
|
72 |
+
#: contact-form-7/admin/admin.php:295
|
73 |
+
msgid "http://contactform7.com/faq/"
|
74 |
+
msgstr "http://contactform7.com/faq/"
|
75 |
+
|
76 |
+
#: contact-form-7/admin/admin.php:296
|
77 |
+
msgid "FAQ"
|
78 |
+
msgstr "คำถามที่พบบ่อย"
|
79 |
+
|
80 |
+
#: contact-form-7/admin/admin.php:297
|
81 |
+
msgid "http://contactform7.com/support/"
|
82 |
+
msgstr "http://contactform7.com/support/"
|
83 |
+
|
84 |
+
#: contact-form-7/admin/admin.php:298
|
85 |
+
msgid "Support"
|
86 |
+
msgstr "ทีมงานช่วยเหลือ"
|
87 |
+
|
88 |
+
#: contact-form-7/admin/admin.php:312
|
89 |
+
msgid "Contact form created."
|
90 |
+
msgstr "สร้างแบบฟอร์มติดต่อแล้ว"
|
91 |
+
|
92 |
+
#: contact-form-7/admin/admin.php:315
|
93 |
+
msgid "Contact form saved."
|
94 |
+
msgstr "บันทึกแบบฟอร์มติดต่อแล้ว"
|
95 |
+
|
96 |
+
#: contact-form-7/admin/admin.php:318
|
97 |
+
msgid "Contact form deleted."
|
98 |
+
msgstr "ลบแบบฟอร์มติดต่อแล้ว"
|
99 |
+
|
100 |
+
#: contact-form-7/admin/admin.php:321
|
101 |
+
msgid "Database table created."
|
102 |
+
msgstr "สร้างตารางฐานข้อมูลแล้ว"
|
103 |
+
|
104 |
+
#: contact-form-7/admin/admin.php:324
|
105 |
+
msgid "Failed to create database table."
|
106 |
+
msgstr "ล้มเหลวในการสร้างตารางฐานข้อมูล"
|
107 |
+
|
108 |
+
#: contact-form-7/admin/admin.php:358
|
109 |
+
msgid "Contact Form 7 needs your support. Please donate today."
|
110 |
+
msgstr "Contact Form 7 ต้องการการสนับสนุนจากคุณ โปรดช่วยบริจาคให้เรา"
|
111 |
+
|
112 |
+
#: contact-form-7/admin/admin.php:359
|
113 |
+
msgid "Your contribution is needed for making this plugin better."
|
114 |
+
msgstr "การบริจาคของคุณจะช่วยให้ปลั๊กอินนี้พัฒนาได้ดีขึ้น"
|
115 |
+
|
116 |
+
#: contact-form-7/admin/admin.php:365
|
117 |
+
msgid "http://contactform7.com/donate/"
|
118 |
+
msgstr "http://contactform7.com/donate/"
|
119 |
+
|
120 |
+
#: contact-form-7/admin/admin.php:365
|
121 |
+
msgid "Donate"
|
122 |
+
msgstr "บริจาค"
|
123 |
+
|
124 |
+
#: contact-form-7/admin/edit.php:9
|
125 |
#, php-format
|
126 |
msgid "<strong>The database table for Contact Form 7 does not exist.</strong> You must <a href=\"%s\">create the table</a> for it to work."
|
127 |
msgstr "<strong>ตารางฐานข้อมูลสำหรับ Contact Form 7 ยังไม่ได้ถูกสร้าง</strong> คุณต้อง <a href=\"%s\">สร้างตารางข้อมูล</a> เพื่อให้มันทำงานได้"
|
128 |
|
129 |
+
#: contact-form-7/admin/edit.php:12
|
130 |
msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
|
131 |
msgstr "<strong>ตารางฐานข้อมูลสำหรับ Contact Form 7 ยังไม่ได้ถูกสร้าง</strong> "
|
132 |
|
133 |
+
#: contact-form-7/admin/edit.php:45
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
msgid "Add new"
|
135 |
msgstr "เพิ่มใหม่"
|
136 |
|
137 |
+
#: contact-form-7/admin/edit.php:67
|
138 |
msgid "Copy this code and paste it into your post, page or text widget content."
|
139 |
msgstr "คัดลอกโค๊ดนี้แล้ววางมันลงในเรื่อง หน้า หรือ ข้อความ text widget ของคุณ"
|
140 |
|
141 |
+
#: contact-form-7/admin/edit.php:75
|
142 |
+
#: contact-form-7/admin/edit.php:309
|
143 |
msgid "Save"
|
144 |
msgstr "บันทึก"
|
145 |
|
146 |
+
#: contact-form-7/admin/edit.php:82
|
147 |
msgid "Copy"
|
148 |
msgstr "คัดลอก"
|
149 |
|
150 |
+
#: contact-form-7/admin/edit.php:87
|
151 |
msgid "Delete"
|
152 |
msgstr "ลบ"
|
153 |
|
154 |
+
#: contact-form-7/admin/edit.php:89
|
155 |
msgid ""
|
156 |
"You are about to delete this contact form.\n"
|
157 |
" 'Cancel' to stop, 'OK' to delete."
|
159 |
"คุณกำลังลบแบบฟอร์มติดต่อนี้\n"
|
160 |
" 'Cancel' เพื่อหยุด 'OK' เพื่อลบ"
|
161 |
|
162 |
+
#: contact-form-7/admin/edit.php:104
|
163 |
msgid "Form"
|
164 |
msgstr "ฟอร์ม"
|
165 |
|
166 |
+
#: contact-form-7/admin/edit.php:128
|
167 |
msgid "Mail"
|
168 |
msgstr "เมล์"
|
169 |
|
170 |
+
#: contact-form-7/admin/edit.php:135
|
171 |
+
#: contact-form-7/admin/edit.php:202
|
172 |
msgid "To:"
|
173 |
msgstr "ถึง:"
|
174 |
|
175 |
+
#: contact-form-7/admin/edit.php:140
|
176 |
+
#: contact-form-7/admin/edit.php:207
|
177 |
msgid "From:"
|
178 |
msgstr "จาก:"
|
179 |
|
180 |
+
#: contact-form-7/admin/edit.php:145
|
181 |
+
#: contact-form-7/admin/edit.php:212
|
182 |
msgid "Subject:"
|
183 |
msgstr "หัวข้อ:"
|
184 |
|
185 |
+
#: contact-form-7/admin/edit.php:152
|
186 |
+
#: contact-form-7/admin/edit.php:219
|
187 |
msgid "Additional headers:"
|
188 |
msgstr "ส่วนหัวเพิ่มเติม:"
|
189 |
|
190 |
+
#: contact-form-7/admin/edit.php:157
|
191 |
+
#: contact-form-7/admin/edit.php:224
|
192 |
msgid "File attachments:"
|
193 |
msgstr "ไฟล์แนบ:"
|
194 |
|
195 |
+
#: contact-form-7/admin/edit.php:165
|
196 |
+
#: contact-form-7/admin/edit.php:232
|
197 |
msgid "Use HTML content type"
|
198 |
msgstr "ใช้ชนิดเนื้อหาแบบ HTML"
|
199 |
|
200 |
+
#: contact-form-7/admin/edit.php:172
|
201 |
+
#: contact-form-7/admin/edit.php:239
|
202 |
+
#: contact-form-7/includes/functions.php:78
|
203 |
msgid "Message body:"
|
204 |
msgstr "เนื้อหาข้อความ:"
|
205 |
|
206 |
+
#: contact-form-7/admin/edit.php:188
|
207 |
msgid "Mail (2)"
|
208 |
msgstr "เมล์ (2)"
|
209 |
|
210 |
+
#: contact-form-7/admin/edit.php:194
|
211 |
msgid "Use mail (2)"
|
212 |
msgstr "ใช้เมล์l (2)"
|
213 |
|
214 |
+
#: contact-form-7/admin/edit.php:255
|
215 |
msgid "Messages"
|
216 |
msgstr "ข้อความ"
|
217 |
|
218 |
+
#: contact-form-7/admin/edit.php:285
|
219 |
+
msgid "Additional Settings"
|
220 |
+
msgstr "การตั้งค่าเพิ่มเติม"
|
221 |
+
|
222 |
+
#: contact-form-7/admin/edit.php:333
|
223 |
+
#, php-format
|
224 |
+
msgid "Use the default language (%s)"
|
225 |
+
msgstr "ใช้ภาษามาตรฐาน (%s)"
|
226 |
+
|
227 |
+
#: contact-form-7/admin/edit.php:334
|
228 |
+
#: contact-form-7/admin/edit.php:347
|
229 |
+
msgid "Add New"
|
230 |
+
msgstr "เพิ่มใหม่"
|
231 |
+
|
232 |
+
#: contact-form-7/admin/edit.php:337
|
233 |
+
msgid "Or"
|
234 |
+
msgstr "หรือ"
|
235 |
+
|
236 |
+
#: contact-form-7/admin/edit.php:342
|
237 |
+
msgid "(select language)"
|
238 |
+
msgstr "(เลือกภาษา)"
|
239 |
+
|
240 |
+
#: contact-form-7/includes/classes.php:577
|
241 |
+
msgid "Untitled"
|
242 |
+
msgstr "ไม่มีหัวข้อ"
|
243 |
+
|
244 |
+
#: contact-form-7/includes/functions.php:6
|
245 |
msgid "Sender's message was sent successfully"
|
246 |
msgstr "ข้อความผู้ส่งถูกส่งเรียบร้อยแล้ว"
|
247 |
|
248 |
+
#: contact-form-7/includes/functions.php:7
|
249 |
+
msgid "Your message was sent successfully. Thanks."
|
250 |
+
msgstr "ข้อความของคุณได้ถูกส่งเรียบร้อยแล้ว ขอบคุณ"
|
251 |
+
|
252 |
+
#: contact-form-7/includes/functions.php:11
|
253 |
msgid "Sender's message was failed to send"
|
254 |
msgstr "ข้อความผู้ส่งล้มเหลวในการส่ง"
|
255 |
|
256 |
+
#: contact-form-7/includes/functions.php:12
|
257 |
+
#: contact-form-7/includes/functions.php:17
|
258 |
+
msgid "Failed to send your message. Please try later or contact administrator by other way."
|
259 |
+
msgstr "การส่งข้อความของคุณล้มเหลว โปรดลองใหม่อีกครั้งหรือติดต่อผู้ควบคุมโดยทางอื่น"
|
260 |
+
|
261 |
+
#: contact-form-7/includes/functions.php:16
|
262 |
msgid "Akismet judged the sending activity as spamming"
|
263 |
msgstr "Akismet พิจารณาว่าการส่งเป็นการ spam"
|
264 |
|
265 |
+
#: contact-form-7/includes/functions.php:21
|
266 |
msgid "Validation errors occurred"
|
267 |
msgstr "การตรวจสอบผิดพลาด"
|
268 |
|
269 |
+
#: contact-form-7/includes/functions.php:22
|
270 |
+
msgid "Validation errors occurred. Please confirm the fields and submit it again."
|
271 |
+
msgstr "การตรวจสอบผิดพลาด โปรดยืนยันข้อมูลและการส่งอีกครั้ง"
|
272 |
+
|
273 |
+
#: contact-form-7/includes/functions.php:26
|
274 |
+
msgid "There is a field of term that sender is needed to accept"
|
275 |
+
msgstr "มีช่องเงื่อนไขที่ผู้ต้องต้องยอมรับ"
|
276 |
|
277 |
+
#: contact-form-7/includes/functions.php:27
|
278 |
+
msgid "Please accept the terms to proceed."
|
279 |
+
msgstr "โปรดยอมรับเงื่อนไขเพื่อทำงานต่อ"
|
280 |
+
|
281 |
+
#: contact-form-7/includes/functions.php:31
|
282 |
msgid "Email address that sender entered is invalid"
|
283 |
msgstr "อีเมล์ที่ผู้ส่งให้มานั้นใช้งานไม่ได้"
|
284 |
|
285 |
+
#: contact-form-7/includes/functions.php:32
|
286 |
+
msgid "Email address seems invalid."
|
287 |
+
msgstr "ดูเหมือนว่าอีเมล์ใช้ไม่ได้"
|
288 |
|
289 |
+
#: contact-form-7/includes/functions.php:36
|
290 |
+
msgid "There is a field that sender is needed to fill in"
|
291 |
+
msgstr "นี่คือช่องที่ผู้ส่งต้องการสำหรับใส่ข้อมูล"
|
292 |
|
293 |
+
#: contact-form-7/includes/functions.php:37
|
294 |
+
msgid "Please fill the required field."
|
295 |
+
msgstr "โปรดกรอข้อมูลลงในช่องที่ต้องการ"
|
296 |
|
297 |
+
#: contact-form-7/includes/functions.php:46
|
298 |
+
msgid "Your Name"
|
299 |
+
msgstr "ชื่อของคุณ"
|
300 |
|
301 |
+
#: contact-form-7/includes/functions.php:46
|
302 |
+
#: contact-form-7/includes/functions.php:48
|
303 |
+
msgid "(required)"
|
304 |
+
msgstr "(ต้องการ)"
|
305 |
|
306 |
+
#: contact-form-7/includes/functions.php:48
|
307 |
+
msgid "Your Email"
|
308 |
+
msgstr "อีเมล์ของคุณ"
|
309 |
|
310 |
+
#: contact-form-7/includes/functions.php:50
|
311 |
+
msgid "Subject"
|
312 |
+
msgstr "หัวข้อ"
|
313 |
|
314 |
+
#: contact-form-7/includes/functions.php:52
|
315 |
+
msgid "Your Message"
|
316 |
+
msgstr "ข้อความของคุณ"
|
317 |
|
318 |
+
#: contact-form-7/includes/functions.php:54
|
319 |
+
msgid "Send"
|
320 |
+
msgstr "ส่ง"
|
321 |
|
322 |
+
#: contact-form-7/includes/functions.php:62
|
323 |
+
#, php-format
|
324 |
+
msgid "From: %s"
|
325 |
+
msgstr "จาก: %s"
|
326 |
|
327 |
+
#: contact-form-7/includes/functions.php:63
|
328 |
+
#, php-format
|
329 |
+
msgid "Subject: %s"
|
330 |
+
msgstr "หัวข้อ: %s"
|
331 |
|
332 |
+
#: contact-form-7/includes/functions.php:64
|
333 |
+
msgid "Message Body:"
|
334 |
+
msgstr "เนื้อหาข้อความ:"
|
335 |
|
336 |
+
#: contact-form-7/includes/functions.php:65
|
337 |
+
#: contact-form-7/includes/functions.php:79
|
338 |
+
#, php-format
|
339 |
+
msgid "This mail is sent via contact form on %1$s %2$s"
|
340 |
+
msgstr "อีเมล์นี้ถูกส่งผ่านทางแบบฟอร์มติดต่อบน %1$s %2$s"
|
341 |
|
342 |
+
#: contact-form-7/includes/functions.php:168
|
343 |
+
msgid "Afrikaans"
|
344 |
+
msgstr "ภาษาแอฟริกัน"
|
345 |
|
346 |
+
#: contact-form-7/includes/functions.php:169
|
347 |
+
msgid "Albanian"
|
348 |
+
msgstr "ภาษาอัลเบเนียน"
|
349 |
|
350 |
+
#: contact-form-7/includes/functions.php:170
|
351 |
+
msgid "Arabic"
|
352 |
+
msgstr "ภาษาอารบิก"
|
353 |
|
354 |
+
#: contact-form-7/includes/functions.php:171
|
355 |
+
msgid "Bangla"
|
356 |
+
msgstr "ภาษาบังกลา"
|
357 |
|
358 |
+
#: contact-form-7/includes/functions.php:172
|
359 |
+
msgid "Bosnian"
|
360 |
+
msgstr "ภาษาบอสเนียน"
|
361 |
|
362 |
+
#: contact-form-7/includes/functions.php:173
|
363 |
+
msgid "Brazilian Portuguese"
|
364 |
+
msgstr "ภาษาบราซิล (โปรตุกีส)"
|
365 |
|
366 |
+
#: contact-form-7/includes/functions.php:174
|
367 |
+
msgid "Bulgarian"
|
368 |
+
msgstr "ภาษาบัลแกเรียน"
|
369 |
|
370 |
+
#: contact-form-7/includes/functions.php:175
|
371 |
+
msgid "Catalan"
|
372 |
+
msgstr "ภาษาคาตาลัน"
|
373 |
|
374 |
+
#: contact-form-7/includes/functions.php:176
|
375 |
+
msgid "Chinese (Simplified)"
|
376 |
+
msgstr "ภาษาจีน (Simplified)"
|
377 |
|
378 |
+
#: contact-form-7/includes/functions.php:177
|
379 |
+
msgid "Chinese (Traditional)"
|
380 |
+
msgstr "ภาษาจีน (Traditional)"
|
381 |
|
382 |
+
#: contact-form-7/includes/functions.php:178
|
383 |
+
msgid "Croatian"
|
384 |
+
msgstr "ภาษาโครเอเชียน"
|
385 |
|
386 |
+
#: contact-form-7/includes/functions.php:179
|
387 |
+
msgid "Czech"
|
388 |
+
msgstr "ภาษาเช็ค"
|
389 |
|
390 |
+
#: contact-form-7/includes/functions.php:180
|
391 |
+
msgid "Danish"
|
392 |
+
msgstr "ภาษาเดนนิช"
|
393 |
|
394 |
+
#: contact-form-7/includes/functions.php:181
|
395 |
+
msgid "Dutch"
|
396 |
+
msgstr "ภาษาดัตช์"
|
397 |
|
398 |
+
#: contact-form-7/includes/functions.php:182
|
399 |
+
msgid "English"
|
400 |
+
msgstr "ภาษาอังกฤษ"
|
401 |
|
402 |
+
#: contact-form-7/includes/functions.php:183
|
403 |
+
msgid "Estonian"
|
404 |
+
msgstr "ภาษาเอสโตเนียน"
|
405 |
|
406 |
+
#: contact-form-7/includes/functions.php:184
|
407 |
+
msgid "Finnish"
|
408 |
+
msgstr "ภาษาฟินนิช"
|
409 |
|
410 |
+
#: contact-form-7/includes/functions.php:185
|
411 |
+
msgid "French"
|
412 |
+
msgstr "ภาษาฝรั่งเศส"
|
413 |
|
414 |
+
#: contact-form-7/includes/functions.php:186
|
415 |
+
msgid "Galician"
|
416 |
+
msgstr "ภาษากาลิเซียน"
|
417 |
|
418 |
+
#: contact-form-7/includes/functions.php:187
|
419 |
+
msgid "Georgian"
|
420 |
+
msgstr "ภาษาจอร์เจียน"
|
421 |
|
422 |
+
#: contact-form-7/includes/functions.php:188
|
423 |
+
msgid "German"
|
424 |
+
msgstr "ภาษาเยอรมัน"
|
425 |
|
426 |
+
#: contact-form-7/includes/functions.php:189
|
427 |
+
msgid "Greek"
|
428 |
+
msgstr "ภาษากรีก"
|
429 |
|
430 |
+
#: contact-form-7/includes/functions.php:190
|
431 |
+
msgid "Hebrew"
|
432 |
+
msgstr "ภาษาฮีบรู"
|
433 |
|
434 |
+
#: contact-form-7/includes/functions.php:191
|
435 |
+
msgid "Hindi"
|
436 |
+
msgstr "ภาษาฮินดู"
|
437 |
|
438 |
+
#: contact-form-7/includes/functions.php:192
|
439 |
+
msgid "Hungarian"
|
440 |
+
msgstr "ภาษาฮังกาเรียน"
|
441 |
|
442 |
+
#: contact-form-7/includes/functions.php:193
|
443 |
+
msgid "Indonesian"
|
444 |
+
msgstr "ภาษาอินโดนีเซีย"
|
445 |
|
446 |
+
#: contact-form-7/includes/functions.php:194
|
447 |
+
msgid "Italian"
|
448 |
+
msgstr "ภาษาอิตาเลียน"
|
449 |
|
450 |
+
#: contact-form-7/includes/functions.php:195
|
451 |
+
msgid "Japanese"
|
452 |
+
msgstr "ภาษาญี่ปุ่น"
|
453 |
|
454 |
+
#: contact-form-7/includes/functions.php:196
|
455 |
+
msgid "Korean"
|
456 |
+
msgstr "ภาษาเกาหลี"
|
457 |
+
|
458 |
+
#: contact-form-7/includes/functions.php:197
|
459 |
+
msgid "Latvian"
|
460 |
+
msgstr "ภาษาลัตเวียน"
|
461 |
+
|
462 |
+
#: contact-form-7/includes/functions.php:198
|
463 |
+
msgid "Lithuanian"
|
464 |
+
msgstr "ภาษาลิทัวเนียน"
|
465 |
+
|
466 |
+
#: contact-form-7/includes/functions.php:199
|
467 |
+
msgid "Malayalam"
|
468 |
+
msgstr "ภาษามาลายาลาม"
|
469 |
|
470 |
+
#: contact-form-7/includes/functions.php:200
|
471 |
+
msgid "Norwegian"
|
472 |
+
msgstr "ภาษานอร์เวย์"
|
473 |
+
|
474 |
+
#: contact-form-7/includes/functions.php:201
|
475 |
+
msgid "Persian"
|
476 |
+
msgstr "ภาษาเปอร์เซียน"
|
477 |
+
|
478 |
+
#: contact-form-7/includes/functions.php:202
|
479 |
+
msgid "Polish"
|
480 |
+
msgstr "ภาษาโปแลนด์"
|
481 |
+
|
482 |
+
#: contact-form-7/includes/functions.php:203
|
483 |
+
msgid "Portuguese"
|
484 |
+
msgstr "ภาษาโปรตุเกส"
|
485 |
+
|
486 |
+
#: contact-form-7/includes/functions.php:204
|
487 |
+
msgid "Russian"
|
488 |
+
msgstr "ภาษารัสเซีย"
|
489 |
+
|
490 |
+
#: contact-form-7/includes/functions.php:205
|
491 |
+
msgid "Romanian"
|
492 |
+
msgstr "ภาษาโรมาเนียน"
|
493 |
+
|
494 |
+
#: contact-form-7/includes/functions.php:206
|
495 |
+
msgid "Serbian"
|
496 |
+
msgstr "ภาษาเซอร์เบียน"
|
497 |
+
|
498 |
+
#: contact-form-7/includes/functions.php:207
|
499 |
+
msgid "Slovak"
|
500 |
+
msgstr "ภาษาสโลวัค"
|
501 |
+
|
502 |
+
#: contact-form-7/includes/functions.php:208
|
503 |
+
msgid "Slovene"
|
504 |
+
msgstr "ภาษาสโลวีเนีย"
|
505 |
+
|
506 |
+
#: contact-form-7/includes/functions.php:209
|
507 |
+
msgid "Spanish"
|
508 |
+
msgstr "ภาษาสเปน"
|
509 |
+
|
510 |
+
#: contact-form-7/includes/functions.php:210
|
511 |
+
msgid "Swedish"
|
512 |
+
msgstr "ภาษาสวีเดน"
|
513 |
+
|
514 |
+
#: contact-form-7/includes/functions.php:211
|
515 |
+
msgid "Thai"
|
516 |
+
msgstr "ภาษาไทย"
|
517 |
+
|
518 |
+
#: contact-form-7/includes/functions.php:212
|
519 |
+
msgid "Turkish"
|
520 |
+
msgstr "ภาษาตุรกี"
|
521 |
+
|
522 |
+
#: contact-form-7/includes/functions.php:213
|
523 |
+
msgid "Ukrainian"
|
524 |
+
msgstr "ภาษายูเครน"
|
525 |
+
|
526 |
+
#: contact-form-7/includes/functions.php:214
|
527 |
+
msgid "Vietnamese"
|
528 |
+
msgstr "ภาษาเวียตนาม"
|
529 |
+
|
530 |
+
#: contact-form-7/modules/acceptance.php:104
|
531 |
+
msgid "Acceptance"
|
532 |
+
msgstr "ยอมรับ"
|
533 |
+
|
534 |
+
#: contact-form-7/modules/acceptance.php:113
|
535 |
+
#: contact-form-7/modules/captcha.php:214
|
536 |
+
#: contact-form-7/modules/checkbox.php:209
|
537 |
+
#: contact-form-7/modules/file.php:241
|
538 |
+
msgid "Name"
|
539 |
+
msgstr "ชื่อ"
|
540 |
+
|
541 |
+
#: contact-form-7/modules/acceptance.php:118
|
542 |
+
#: contact-form-7/modules/acceptance.php:121
|
543 |
+
#: contact-form-7/modules/captcha.php:221
|
544 |
+
#: contact-form-7/modules/captcha.php:224
|
545 |
+
#: contact-form-7/modules/captcha.php:229
|
546 |
+
#: contact-form-7/modules/captcha.php:232
|
547 |
+
#: contact-form-7/modules/captcha.php:236
|
548 |
+
#: contact-form-7/modules/captcha.php:247
|
549 |
+
#: contact-form-7/modules/captcha.php:250
|
550 |
+
#: contact-form-7/modules/captcha.php:255
|
551 |
+
#: contact-form-7/modules/captcha.php:258
|
552 |
+
#: contact-form-7/modules/checkbox.php:214
|
553 |
+
#: contact-form-7/modules/checkbox.php:217
|
554 |
+
#: contact-form-7/modules/file.php:246
|
555 |
+
#: contact-form-7/modules/file.php:249
|
556 |
+
#: contact-form-7/modules/file.php:254
|
557 |
+
#: contact-form-7/modules/file.php:257
|
558 |
+
msgid "optional"
|
559 |
+
msgstr "ตัวเลือก"
|
560 |
+
|
561 |
+
#: contact-form-7/modules/acceptance.php:127
|
562 |
+
msgid "Make this checkbox checked by default?"
|
563 |
+
msgstr "ทำให้ checkbox นี้ถูกเลือกอยู่แล้ว?"
|
564 |
+
|
565 |
+
#: contact-form-7/modules/acceptance.php:128
|
566 |
+
msgid "Make this checkbox work inversely?"
|
567 |
+
msgstr "ทำให้ checkbox นี้ทำงานกลับด้าน?"
|
568 |
+
|
569 |
+
#: contact-form-7/modules/acceptance.php:129
|
570 |
+
msgid "* That means visitor who accepts the term unchecks it."
|
571 |
+
msgstr "* หมายความว่าผู้เยี่ยมชมยอมรับเงื่อนไขที่ไม่เลือกตัวเลือกนี้"
|
572 |
+
|
573 |
+
#: contact-form-7/modules/acceptance.php:134
|
574 |
+
#: contact-form-7/modules/captcha.php:263
|
575 |
+
#: contact-form-7/modules/checkbox.php:237
|
576 |
+
#: contact-form-7/modules/file.php:262
|
577 |
msgid "Copy this code and paste it into the form left."
|
578 |
msgstr "คัดลอกโค๊ดนี้และวางมันลงในฟอร์มด้านซ้าย"
|
579 |
|
580 |
+
#: contact-form-7/modules/captcha.php:70
|
581 |
+
msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
|
582 |
+
msgstr "เพื่อใช้ CAPTCHA คุณต้องติดตั้งปลั๊กอิน <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a>"
|
583 |
+
|
584 |
+
#: contact-form-7/modules/captcha.php:189
|
585 |
+
msgid "The code that sender entered does not match the CAPTCHA"
|
586 |
+
msgstr "โค๊ดที่ผู้ส่งใส่ไม่ตรงกับ CAPTCHA"
|
587 |
+
|
588 |
+
#: contact-form-7/modules/captcha.php:190
|
589 |
+
msgid "Your entered code is incorrect."
|
590 |
+
msgstr "โค๊ดที่คุณใส่ไม่ถูกต้อง"
|
591 |
+
|
592 |
+
#: contact-form-7/modules/captcha.php:200
|
593 |
+
msgid "CAPTCHA"
|
594 |
+
msgstr "CAPTCHA"
|
595 |
+
|
596 |
+
#: contact-form-7/modules/captcha.php:211
|
597 |
+
msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
|
598 |
+
msgstr "หมายเหตุ: เพื่อใช้ CAPTCHA คุณต้องลงปลั๊กอิน Really Simple CAPTCHA "
|
599 |
+
|
600 |
+
#: contact-form-7/modules/captcha.php:218
|
601 |
+
msgid "Image settings"
|
602 |
+
msgstr "การตั้งค่ารูปภาพ"
|
603 |
+
|
604 |
+
#: contact-form-7/modules/captcha.php:229
|
605 |
msgid "Foreground color"
|
606 |
msgstr "สีด้านหน้า"
|
607 |
|
608 |
+
#: contact-form-7/modules/captcha.php:232
|
609 |
msgid "Background color"
|
610 |
msgstr "สีด้านหลัง"
|
611 |
|
612 |
+
#: contact-form-7/modules/captcha.php:236
|
613 |
msgid "Image size"
|
614 |
msgstr "ขนาดรูปภาพ"
|
615 |
|
616 |
+
#: contact-form-7/modules/captcha.php:237
|
617 |
msgid "Small"
|
618 |
msgstr "เล็ก"
|
619 |
|
620 |
+
#: contact-form-7/modules/captcha.php:238
|
621 |
msgid "Medium"
|
622 |
msgstr "ปานกลาง"
|
623 |
|
624 |
+
#: contact-form-7/modules/captcha.php:239
|
625 |
msgid "Large"
|
626 |
msgstr "ใหญ่"
|
627 |
|
628 |
+
#: contact-form-7/modules/captcha.php:244
|
|
|
|
|
|
|
|
|
629 |
msgid "Input field settings"
|
630 |
msgstr "การตั้งค่าช่องใส่ข้อมูล"
|
631 |
|
632 |
+
#: contact-form-7/modules/captcha.php:264
|
633 |
msgid "For image"
|
634 |
msgstr "สำหรับรูปภาพ"
|
635 |
|
636 |
+
#: contact-form-7/modules/captcha.php:266
|
637 |
msgid "For input field"
|
638 |
msgstr "สำหรับช่องใส่ข้อมูล"
|
639 |
|
640 |
+
#: contact-form-7/modules/captcha.php:296
|
641 |
+
#, php-format
|
642 |
+
msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
|
643 |
+
msgstr "แบบฟอร์มติดต่อนี้ประกอบด้วยช่อง CAPTCHA หลายช่อง แต่โฟลเดอร์ชั่วคราวสำหรับไฟล์ (%s) ไม่มีอยู่จริง หรือไม่สามารถเขียนทับได้ คุณสามารถสร้างโฟลเดอร์ หรือเปลี่ยนการอนุญาตด้วยตัวเอง"
|
644 |
|
645 |
+
#: contact-form-7/modules/captcha.php:302
|
646 |
+
msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
|
647 |
+
msgstr "แบบฟอร์มติดต่อนี้ประกอบด้วยช่อง CAPTCHA หลายช่อง แต่ libraries ที่จำเป็น (GD and FreeType) นั้นใช้งานไม่ได้บนเซิร์ฟเวอร์ของคุณ"
|
648 |
|
649 |
+
#: contact-form-7/modules/checkbox.php:182
|
650 |
+
msgid "Checkboxes"
|
651 |
+
msgstr "เช็คบ็อกซ์"
|
652 |
|
653 |
+
#: contact-form-7/modules/checkbox.php:185
|
654 |
+
msgid "Radio buttons"
|
655 |
+
msgstr "Radio buttons"
|
656 |
|
657 |
+
#: contact-form-7/modules/checkbox.php:206
|
658 |
+
#: contact-form-7/modules/file.php:240
|
659 |
+
msgid "Required field?"
|
660 |
+
msgstr "ช่องที่ต้องการ?"
|
661 |
|
662 |
+
#: contact-form-7/modules/checkbox.php:222
|
663 |
+
msgid "Choices"
|
664 |
+
msgstr "ตัวเลือก"
|
665 |
|
666 |
+
#: contact-form-7/modules/checkbox.php:224
|
667 |
+
msgid "* One choice per line."
|
668 |
+
msgstr "* หนึ่งตัวเลือกต่อบรรทัด"
|
669 |
|
670 |
+
#: contact-form-7/modules/checkbox.php:228
|
671 |
+
msgid "Put a label first, a checkbox last?"
|
672 |
+
msgstr "ใส่ป้ายชื่อก่อน แล้วเช็คบ็อกซ์ทีหลัง?"
|
673 |
|
674 |
+
#: contact-form-7/modules/checkbox.php:229
|
675 |
+
msgid "Wrap each item with <label> tag?"
|
676 |
+
msgstr "ปิดแต่ละรายการด้วยป้ายกำกับ <label> ?"
|
677 |
|
678 |
+
#: contact-form-7/modules/checkbox.php:231
|
679 |
+
msgid "Make checkboxes exclusive?"
|
680 |
+
msgstr "ให้เลือก checkboxes เดียว?"
|
681 |
|
682 |
+
#: contact-form-7/modules/checkbox.php:239
|
683 |
+
msgid "And, put this code into the Mail fields below."
|
684 |
+
msgstr "และใส่โค๊ดนี้ลงในช่องเมล์ด้านล่าง"
|
685 |
|
686 |
+
#: contact-form-7/modules/file.php:204
|
687 |
+
msgid "Uploading a file fails for any reason"
|
688 |
+
msgstr "การอัปโหลดไฟล์ล้มเหลวด้วยเหตุผลบางอย่าง"
|
689 |
|
690 |
+
#: contact-form-7/modules/file.php:205
|
691 |
+
msgid "Failed to upload file."
|
692 |
+
msgstr "การอัปโหลดไฟล์ล้มเหลว"
|
693 |
|
694 |
+
#: contact-form-7/modules/file.php:209
|
695 |
+
msgid "Uploaded file is not allowed file type"
|
696 |
+
msgstr "ชนิดไฟล์นี้ไม่อนุญาตให้อัปโหลด"
|
697 |
|
698 |
+
#: contact-form-7/modules/file.php:210
|
699 |
+
msgid "This file type is not allowed."
|
700 |
+
msgstr "ชนิดไฟล์นี้ไม่อนุญาตให้ใช้"
|
701 |
|
702 |
+
#: contact-form-7/modules/file.php:214
|
703 |
+
msgid "Uploaded file is too large"
|
704 |
+
msgstr "ไฟล์ที่อัปโหลดใหญ่เกินไป"
|
705 |
|
706 |
+
#: contact-form-7/modules/file.php:215
|
707 |
+
msgid "This file is too large."
|
708 |
+
msgstr "ไฟล์นี้ใหญ่เกินไป"
|
709 |
|
710 |
+
#: contact-form-7/modules/file.php:219
|
711 |
+
msgid "Uploading a file fails for PHP error"
|
712 |
+
msgstr "การอัปโหลดไฟล์ล้มเหลวเพราะ PHP ผิดพลาด"
|
713 |
|
714 |
+
#: contact-form-7/modules/file.php:220
|
715 |
+
msgid "Failed to upload file. Error occurred."
|
716 |
+
msgstr "ล้มเหลวในการอัปโหลดไฟล์ มีความผิดพลาดเกิดขึ้น"
|
717 |
|
718 |
+
#: contact-form-7/modules/file.php:231
|
719 |
+
msgid "File upload"
|
720 |
+
msgstr "ไฟล์อัปโหลด"
|
|
|
721 |
|
722 |
+
#: contact-form-7/modules/file.php:254
|
723 |
+
msgid "File size limit"
|
724 |
+
msgstr "ขนาดไฟล์จำกัด"
|
725 |
|
726 |
+
#: contact-form-7/modules/file.php:254
|
727 |
+
msgid "bytes"
|
728 |
+
msgstr "bytes"
|
729 |
|
730 |
+
#: contact-form-7/modules/file.php:257
|
731 |
+
msgid "Acceptable file types"
|
732 |
+
msgstr "ชนิดไฟล์ที่ยอมรับได้"
|
733 |
|
734 |
+
#: contact-form-7/modules/file.php:264
|
735 |
+
msgid "And, put this code into the File Attachments field below."
|
736 |
+
msgstr "และใส่โค๊ดนี้ลงในช่องแนบไฟล์ด้านล่าง"
|
737 |
|
738 |
+
#: contact-form-7/modules/file.php:289
|
739 |
+
#, php-format
|
740 |
+
msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
|
741 |
+
msgstr "แบบฟอร์มติดต่อนี้ประกอบด้วยช่องอัพโหลดไฟล์หลายช่อง แต่โฟลเดอร์ชั่วคราวสำหรับไฟล์ (%s) ไม่มีอยู่จริง หรือไม่สามารถเขียนทับได้ คุณสามารถสร้างโฟลเดอร์ หรือเปลี่ยนการอนุญาตด้วยตัวเอง"
|
742 |
|
743 |
+
#: contact-form-7/modules/icl.php:74
|
744 |
+
msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
|
745 |
+
msgstr "แบบฟอร์มติดต่อนี้ประกอบด้วยป้ายกำกับ [icl] หลายป้ายกำกับ แต่พวกมันล้าสมัยและใช้ไม่ได้กับคำสั่งของ Contact Form 7 รุ่นนี้ <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">นี่คือวิธีที่ง่ายที่สุดในการสร้างแบบฟอร์มติดต่อของภาษาอื่น</a> และเราแนะนำให้คุณใช้มัน"
|
746 |
+
|
747 |
+
#: contact-form-7/modules/quiz.php:170
|
748 |
+
msgid "Sender doesn't enter the correct answer to the quiz"
|
749 |
+
msgstr "ผู้ส่งไม่ได้ใส่คำตอบที่ถูกต้องกับคำถาม"
|
750 |
+
|
751 |
+
#: contact-form-7/modules/quiz.php:171
|
752 |
msgid "Your answer is not correct."
|
753 |
msgstr "คำตอบของคุณไม่ถูกต้อง"
|
754 |
|
755 |
+
#: contact-form-7/modules/quiz.php:181
|
756 |
+
msgid "Quiz"
|
757 |
+
msgstr "คำถาม"
|
758 |
|
759 |
+
#: contact-form-7/modules/quiz.php:211
|
760 |
+
msgid "Quizzes"
|
761 |
+
msgstr "คำถาม"
|
762 |
|
763 |
+
#: contact-form-7/modules/quiz.php:213
|
764 |
+
msgid "* quiz|answer (e.g. 1+1=?|2)"
|
765 |
+
msgstr "* คำถาม|คำตอบ (ตัวอย่าง 1+1=?|2)"
|
766 |
|
767 |
+
#: contact-form-7/modules/select.php:154
|
768 |
+
msgid "Drop-down menu"
|
769 |
+
msgstr "เมนู Drop down"
|
770 |
|
771 |
+
#: contact-form-7/modules/select.php:183
|
772 |
+
msgid "Allow multiple selections?"
|
773 |
+
msgstr "อนุญาตการเลือกหลายข้อ?"
|
774 |
|
775 |
+
#: contact-form-7/modules/select.php:184
|
776 |
+
msgid "Insert a blank item as the first option?"
|
777 |
+
msgstr "ใส่ช่องว่างเป็นตัวเลือกแรก"
|
|
|
778 |
|
779 |
+
#: contact-form-7/modules/submit.php:62
|
780 |
+
msgid "Submit button"
|
781 |
+
msgstr "ปุ่มส่ง"
|
782 |
|
783 |
+
#: contact-form-7/modules/submit.php:80
|
784 |
+
msgid "Label"
|
785 |
+
msgstr "ป้ายชื่อ"
|
786 |
|
787 |
+
#: contact-form-7/modules/text.php:137
|
788 |
+
msgid "Text field"
|
789 |
+
msgstr "ช่องตัวอักษร"
|
790 |
|
791 |
+
#: contact-form-7/modules/text.php:140
|
792 |
+
msgid "Email field"
|
793 |
+
msgstr "ช่องใส่อีเมล์"
|
794 |
|
795 |
+
#: contact-form-7/modules/text.php:182
|
796 |
+
msgid "Akismet"
|
797 |
+
msgstr "Akismet"
|
798 |
+
|
799 |
+
#: contact-form-7/modules/text.php:184
|
800 |
+
msgid "This field requires author's name"
|
801 |
+
msgstr "ช่องนี้ต้องการชื่อผู้เขียน"
|
802 |
+
|
803 |
+
#: contact-form-7/modules/text.php:185
|
804 |
+
msgid "This field requires author's URL"
|
805 |
+
msgstr "ช่องนี้ต้องการ URL ผู้เขียน"
|
806 |
+
|
807 |
+
#: contact-form-7/modules/text.php:187
|
808 |
+
msgid "This field requires author's email address"
|
809 |
+
msgstr "ช่องนี้ต้องการอีเมล์ผู้เขียน"
|
810 |
+
|
811 |
+
#: contact-form-7/modules/text.php:191
|
812 |
+
#: contact-form-7/modules/textarea.php:157
|
813 |
+
msgid "Default value"
|
814 |
+
msgstr "ค่ามาตรฐาน"
|
815 |
+
|
816 |
+
#: contact-form-7/modules/textarea.php:126
|
817 |
+
msgid "Text area"
|
818 |
+
msgstr "กล่องข้อความ"
|
819 |
|
modules/file.php
CHANGED
@@ -27,6 +27,8 @@ function wpcf7_file_shortcode_handler( $tag ) {
|
|
27 |
$class_att = '';
|
28 |
$tabindex_att = '';
|
29 |
|
|
|
|
|
30 |
if ( 'file*' == $type )
|
31 |
$class_att .= ' wpcf7-validates-as-required';
|
32 |
|
27 |
$class_att = '';
|
28 |
$tabindex_att = '';
|
29 |
|
30 |
+
$class_att .= ' wpcf7-file';
|
31 |
+
|
32 |
if ( 'file*' == $type )
|
33 |
$class_att .= ' wpcf7-validates-as-required';
|
34 |
|
modules/quiz.php
CHANGED
@@ -28,6 +28,8 @@ function wpcf7_quiz_shortcode_handler( $tag ) {
|
|
28 |
$maxlength_att = '';
|
29 |
$tabindex_att = '';
|
30 |
|
|
|
|
|
31 |
foreach ( $options as $option ) {
|
32 |
if ( preg_match( '%^id:([-0-9a-zA-Z_]+)$%', $option, $matches ) ) {
|
33 |
$id_att = $matches[1];
|
28 |
$maxlength_att = '';
|
29 |
$tabindex_att = '';
|
30 |
|
31 |
+
$class_att .= ' wpcf7-quiz';
|
32 |
+
|
33 |
foreach ( $options as $option ) {
|
34 |
if ( preg_match( '%^id:([-0-9a-zA-Z_]+)$%', $option, $matches ) ) {
|
35 |
$id_att = $matches[1];
|
modules/select.php
CHANGED
@@ -30,6 +30,8 @@ function wpcf7_select_shortcode_handler( $tag ) {
|
|
30 |
|
31 |
$defaults = array();
|
32 |
|
|
|
|
|
33 |
if ( 'select*' == $type )
|
34 |
$class_att .= ' wpcf7-validates-as-required';
|
35 |
|
30 |
|
31 |
$defaults = array();
|
32 |
|
33 |
+
$class_att .= ' wpcf7-select';
|
34 |
+
|
35 |
if ( 'select*' == $type )
|
36 |
$class_att .= ' wpcf7-validates-as-required';
|
37 |
|
modules/submit.php
CHANGED
@@ -19,6 +19,8 @@ function wpcf7_submit_shortcode_handler( $tag ) {
|
|
19 |
$class_att = '';
|
20 |
$tabindex_att = '';
|
21 |
|
|
|
|
|
22 |
foreach ( $options as $option ) {
|
23 |
if ( preg_match( '%^id:([-0-9a-zA-Z_]+)$%', $option, $matches ) ) {
|
24 |
$id_att = $matches[1];
|
19 |
$class_att = '';
|
20 |
$tabindex_att = '';
|
21 |
|
22 |
+
$class_att .= ' wpcf7-submit';
|
23 |
+
|
24 |
foreach ( $options as $option ) {
|
25 |
if ( preg_match( '%^id:([-0-9a-zA-Z_]+)$%', $option, $matches ) ) {
|
26 |
$id_att = $matches[1];
|
modules/text.php
CHANGED
@@ -31,6 +31,8 @@ function wpcf7_text_shortcode_handler( $tag ) {
|
|
31 |
$maxlength_att = '';
|
32 |
$tabindex_att = '';
|
33 |
|
|
|
|
|
34 |
if ( 'email' == $type || 'email*' == $type )
|
35 |
$class_att .= ' wpcf7-validates-as-email';
|
36 |
|
31 |
$maxlength_att = '';
|
32 |
$tabindex_att = '';
|
33 |
|
34 |
+
$class_att .= ' wpcf7-text';
|
35 |
+
|
36 |
if ( 'email' == $type || 'email*' == $type )
|
37 |
$class_att .= ' wpcf7-validates-as-email';
|
38 |
|
readme.txt
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
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: 2.
|
6 |
-
Tested up to:
|
7 |
-
Stable tag: 2.
|
8 |
|
9 |
Just another contact form plugin. Simple but flexible.
|
10 |
|
@@ -39,7 +39,7 @@ It is hard to continue development and support for this plugin without contribut
|
|
39 |
* Danish (da_DK) - [Jens Griebel](http://www.kompas-it.dk/), [Georg S. Adamsen](http://wordpress.blogos.dk/)
|
40 |
* Dutch (nl_NL) - [Chris Devriese](http://www.100it.be/), [Martin Hein](http://www.split-a-pixel.nl/)
|
41 |
* Estonian (et) - [Peeter Rahuvarm](http://www.kraabus.ee), Egon Elbre
|
42 |
-
* Finnish (fi) - [Miika Turunen](http://www.webwork.fi/)
|
43 |
* French (fr_FR) - [Jillij](http://www.jillij.com/), [Maître Mô](http://maitremo.fr/), [Oncle Tom](http://case.oncle-tom.net/)
|
44 |
* Galician (gl_ES) - [Arume Desenvolvementos Informáticos](http://www.arumeinformatica.es/)
|
45 |
* Georgian (ka_GE) - [Nodar Davituri](http://omedia.ge/)
|
@@ -99,22 +99,14 @@ Do you have questions or issues with Contact Form 7? Use these support channels
|
|
99 |
|
100 |
== Changelog ==
|
101 |
|
102 |
-
= 2.
|
103 |
|
104 |
-
*
|
105 |
-
*
|
106 |
-
*
|
107 |
-
* `esc_html()` is applied to posted texts when the texts are inserted into the message body of HTML-formatted mail.
|
108 |
-
* Action hooks, `wpcf7_enqueue_scripts` and `wpcf7_enqueue_styles`, have been added.
|
109 |
-
* Translations for Italian (Gianni Diurno), German (Ivan Graf), French (Oncle Tom), Traditional Chinese (James Wu) and Hungarian (Farkas Győző) have been updated.
|
110 |
|
111 |
-
|
112 |
|
113 |
-
|
114 |
-
* The tab index option is newly supported for most of form tags.
|
115 |
-
* New special mail tags have been added. These include the following: `[_url]`, `[_date]`, `[_time]`, `[_post_author]` and `[_post_author_email]`.
|
116 |
-
* `wpcf7_mail_tag_replaced` filter has been introduced in includes/classes.php.
|
117 |
-
* Translation for Galician has been created by Arume Desenvolvementos Informáticos.
|
118 |
-
* Translations for Italian (Gianni Diurno), German (Ivan Graf), Danish (Georg S. Adamsen) and Hungarian (Farkas Győző) have been updated.
|
119 |
|
120 |
-
|
2 |
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: 2.9
|
6 |
+
Tested up to: 3.0
|
7 |
+
Stable tag: 2.3
|
8 |
|
9 |
Just another contact form plugin. Simple but flexible.
|
10 |
|
39 |
* Danish (da_DK) - [Jens Griebel](http://www.kompas-it.dk/), [Georg S. Adamsen](http://wordpress.blogos.dk/)
|
40 |
* Dutch (nl_NL) - [Chris Devriese](http://www.100it.be/), [Martin Hein](http://www.split-a-pixel.nl/)
|
41 |
* Estonian (et) - [Peeter Rahuvarm](http://www.kraabus.ee), Egon Elbre
|
42 |
+
* Finnish (fi) - [Miika Turunen](http://www.webwork.fi/), [Mediajalostamo](http://www.mediajalostamo.fi/)
|
43 |
* French (fr_FR) - [Jillij](http://www.jillij.com/), [Maître Mô](http://maitremo.fr/), [Oncle Tom](http://case.oncle-tom.net/)
|
44 |
* Galician (gl_ES) - [Arume Desenvolvementos Informáticos](http://www.arumeinformatica.es/)
|
45 |
* Georgian (ka_GE) - [Nodar Davituri](http://omedia.ge/)
|
99 |
|
100 |
== Changelog ==
|
101 |
|
102 |
+
= 2.3 =
|
103 |
|
104 |
+
* The required WordPress version has been changed and now requires WordPress 2.9 or higher. If you use WordPress 2.8, you will need to upgrade WordPress.
|
105 |
+
* When you insert multi-line text input into the message body of HTML-formatted mail, Contact Form 7 automatically applies an 'autop' (auto paragraph) filter to the text. This makes it so that the original user input styles remain -- and does not break paragraph styles in the HTML view.
|
106 |
+
* Translations for German (Ivan Graf), Finnish (Mediajalostamo), Thai (kazama) and Danish (Georg S. Adamsen) have been updated.
|
|
|
|
|
|
|
107 |
|
108 |
+
[Releases](http://contactform7.com/category/releases/)
|
109 |
|
110 |
+
== Upgrade Notice ==
|
|
|
|
|
|
|
|
|
|
|
111 |
|
112 |
+
The required WordPress version has been changed and now requires WordPress 2.9 or higher. If you use WordPress 2.8, you will need to upgrade WordPress.
|
wp-contact-form-7.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://contactform7.com/
|
|
5 |
Description: Just another contact form plugin. Simple but flexible.
|
6 |
Author: Takayuki Miyoshi
|
7 |
Author URI: http://ideasilo.wordpress.com/
|
8 |
-
Version: 2.
|
9 |
*/
|
10 |
|
11 |
/* Copyright 2007-2010 Takayuki Miyoshi (email: takayukister at gmail.com)
|
@@ -25,7 +25,7 @@ Version: 2.2.1
|
|
25 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
26 |
*/
|
27 |
|
28 |
-
define( 'WPCF7_VERSION', '2.
|
29 |
|
30 |
if ( ! defined( 'WPCF7_PLUGIN_BASENAME' ) )
|
31 |
define( 'WPCF7_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
5 |
Description: Just another contact form plugin. Simple but flexible.
|
6 |
Author: Takayuki Miyoshi
|
7 |
Author URI: http://ideasilo.wordpress.com/
|
8 |
+
Version: 2.3
|
9 |
*/
|
10 |
|
11 |
/* Copyright 2007-2010 Takayuki Miyoshi (email: takayukister at gmail.com)
|
25 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
26 |
*/
|
27 |
|
28 |
+
define( 'WPCF7_VERSION', '2.3' );
|
29 |
|
30 |
if ( ! defined( 'WPCF7_PLUGIN_BASENAME' ) )
|
31 |
define( 'WPCF7_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|