| 1 | <?php |
|---|
| 2 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
|---|
| 3 | global $lang; |
|---|
| 4 | |
|---|
| 5 | $lang['cf_plugin_name'] = 'Contact Formulier'; |
|---|
| 6 | $lang['contact_form_debug'] = 'Toon debug informatie'; |
|---|
| 7 | |
|---|
| 8 | // ================================================================== |
|---|
| 9 | // Default values if not configured |
|---|
| 10 | $lang['contact_form_title'] = 'Contact formulier'; |
|---|
| 11 | $lang['contact_form'] = 'Contact'; |
|---|
| 12 | $lang['contact_form_link'] = 'Contact webmaster'; |
|---|
| 13 | |
|---|
| 14 | // ================================================================== |
|---|
| 15 | // Redirect page |
|---|
| 16 | $lang['contact_redirect_title'] = 'Verzonden bericht status'; |
|---|
| 17 | |
|---|
| 18 | // ================================================================== |
|---|
| 19 | // Menubar block |
|---|
| 20 | $lang['cf_from_name'] = 'Je naam'; |
|---|
| 21 | $lang['cf_from_mail'] = 'Je e-mail'; |
|---|
| 22 | $lang['cf_subject'] = 'Onderwerp'; |
|---|
| 23 | $lang['cf_message'] = 'Bericht'; |
|---|
| 24 | $lang['cf_submit'] = 'Verstuur'; |
|---|
| 25 | $lang['title_send_mail'] = 'Een commentaar op de site'; |
|---|
| 26 | |
|---|
| 27 | // ================================================================== |
|---|
| 28 | // Messages |
|---|
| 29 | $lang['cf_from_name_error'] = 'Vul een naam in'; |
|---|
| 30 | $lang['cf_mail_format_error'] = $lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)']; |
|---|
| 31 | $lang['cf_subject_error'] = 'Vul een onderwerp in'; |
|---|
| 32 | $lang['cf_message_error'] = 'Vul een berichttekst in '; |
|---|
| 33 | $lang['cf_error_sending_mail'] = 'Fout tijdens versturen van e-mail'; |
|---|
| 34 | $lang['cf_sending_mail_successful'] = 'E-mail succesvol verzonden'; |
|---|
| 35 | $lang['cf_form_error'] = 'Onjuiste gegevens'; |
|---|
| 36 | $lang['cf_no_unlink'] = 'Functie \'unlink\' nie beschikbaar...'; |
|---|
| 37 | $lang['cf_unlink_errors'] = 'Fout opgetreden tijdens verwijderen van bestand'; |
|---|
| 38 | $lang['cf_config_saved'] = 'Configuratie successvol opgeslagen'; |
|---|
| 39 | $lang['cf_config_saved_with_errors'] = 'Configuratie opgeslagen met fouten'; |
|---|
| 40 | $lang['cf_length_not_integer'] = 'grootte moet een geheel getal zijn'; |
|---|
| 41 | $lang['cf_delay_not_integer'] = 'Vertraging moet een geheel getal zijn'; |
|---|
| 42 | $lang['cf_link_error'] = 'Variabele kan geen spaties bevatten'; |
|---|
| 43 | $lang['cf_hide'] = 'Verberg'; |
|---|
| 44 | |
|---|
| 45 | // ================================================================== |
|---|
| 46 | // Admin page |
|---|
| 47 | $lang['cf_validate'] = 'Verzenden'; |
|---|
| 48 | // Configuration tab |
|---|
| 49 | $lang['cf_tab_config'] = 'Configuratie'; |
|---|
| 50 | $lang['cf_config'] = 'Configuratie'; |
|---|
| 51 | $lang['cf_config_desc'] = 'Plugin hoofd configuratie'; |
|---|
| 52 | $lang['cf_label_config'] = 'Algemene configuratie'; |
|---|
| 53 | $lang['cf_label_mail'] = 'E-mail configuratie'; |
|---|
| 54 | $lang['cf_menu_link'] = 'Voeg link aan menu toe'; |
|---|
| 55 | $lang['cf_guest_allowed'] = 'Sta gasten toe om het formulier te zien'; |
|---|
| 56 | $lang['cf_mail_prefix'] = 'Voorvoegsel van het email onderwerp'; |
|---|
| 57 | $lang['cf_separator'] = 'Teken(s) gebruikt voor de scheidingsbalk in de e-mail, in tekst formaat'; |
|---|
| 58 | $lang['cf_separator_length'] = 'Grote van de balk'; |
|---|
| 59 | $lang['cf_mandatory_name'] = 'Naam is verplicht'; |
|---|
| 60 | $lang['cf_mandatory_mail'] = 'E-mail adres is verplicht'; |
|---|
| 61 | $lang['cf_redirect_delay'] = 'wachttijd voor opnieuw versturen'; |
|---|
| 62 | // Emails tab |
|---|
| 63 | $lang['cf_tab_emails'] = 'E-mails'; |
|---|
| 64 | $lang['cf_emails'] = 'E-mails'; |
|---|
| 65 | $lang['cf_emails_desc'] = 'Bestemming van e-mail beheer'; |
|---|
| 66 | $lang['cf_active'] = 'Actieve e-mail'; |
|---|
| 67 | $lang['cf_no_mail'] = 'Geen e-mail adres beschikbaar'; |
|---|
| 68 | $lang['cf_refresh'] = 'Regenereer e-mail lijst adres'; |
|---|
| 69 | // Language tab |
|---|
| 70 | $lang['cf_tab_language'] = 'Lokalisatie'; |
|---|
| 71 | $lang['cf_language'] = 'Lokalisatie'; |
|---|
| 72 | $lang['cf_language_desc'] = 'bericht vertaling'; |
|---|
| 73 | $lang['cf_select_item'] = 'Selecteer item om te vertalen'; |
|---|
| 74 | $lang['cf_default_lang'] = 'Standaard'; |
|---|
| 75 | $lang['contact_form_title_label'] = 'Titel gebruikt in menubalk'; |
|---|
| 76 | $lang['contact_form_label'] = 'Naam gebruikt in de menubalk'; |
|---|
| 77 | $lang['contact_form_link_label'] = 'Tekt gebruikt in de contact link in de pagina voettekst'; |
|---|
| 78 | ?> |
|---|