HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/tops.komma.pro/wwwroot/config/lang/nl.php
<?php
/*
 * nl.php
 * Created by Komma Mediadesign.
 * Author: mike
 * Date: 3/21/13
 */

require_once DOCUMENT_ROOT . 'config/lang/language.class.php';

class Language_Nl extends Language
{
    /*
     * Constructor
     */
    public function __construct()
    {
        // All the main pages
        $this->mainPages = array(
            'page_not_found' => '404',
            'company' => 'bedrijfsprofiel',
            'filters' => 'filters-en-accessoires',
            'uses' => 'toepassingen',
            'installation' => 'installatiebedrijven',
            'certificates' => 'normeringen',
            'webshop' => 'webshop',
            'contact' => 'contact',
            'offer' => 'offerte-aanvragen',
            'terms' => 'algemene-voorwaarden',

        );

        // All the sub pages
        $this->subPages = array(
            // Uses
            'hospitals' => 'ziekenhuizen',
            'houses' => 'woonhuizen',
            'offices' => 'kantoorgebouwen',
            'spray_booths' => 'spuiterijen',
            'schools' => 'scholen',
            'sports' => 'sportcentra',
            'shipping_aviation' => 'scheep-en-luchtvaart',

            // Certificates
            'en1822' => 'en1822',
            'en779' => 'en779',
            'iso16890' => 'ISO16890',

            // Filters
            'active_carbon_filters' => 'actiefkoolfilters',
            'active_carbon_cylinders' => 'actiefkoolcilinders',
            'active_carbon_v_cel' => 'actiefkoolcompactfilters',
            'active_carbon_f7' => 'actiefkoolzakkenfilters',
            'bag_filters' => 'zakkenfilters',
            'bag_filters_synthetic' => 'synthetisch',
            'bag_filters_compoplus' => 'synthetisch-compoplus',
            'bag_filters_fiberglass' => 'glasvezel-zakkenfilters',
            'compact_filters' => 'compactfilters',
            'compact_filters_airpac' => 'airpac',
            'compact_filters_v_cel' => 'v-cel',
            'compact_filters_cassette' => 'cassettefilters',
            'filter_cloth' => 'filterdoeken',
            'filter_cloth_synthetic' => 'synthetisch-filterdoek',
            'filter_cloth_glass' => 'glasmedium-verfvangfilters',
            'filter_cloth_ppi' => 'ppi-filterdoek',
            'filter_cabinets' => 'filterkasten',
            'filter_windows' => 'filterramen-inzetframes',
            'heat_recovery' => 'wtw-filters',
            'heat_recovery_business' => 'bedrijven',
            'heat_recovery_house' => 'woningen',
            'hepa_ulpa_filters' => 'hepa-ulpa-filters',
            'panel_filters' => 'paneelfilters',
            'panel_filters_cardboard' => 'kartonnen-paneelfilters',
            'panel_filters_metal' => 'metalen-paneelfilters',
            'panel_filters_plastic' => 'kunststof-paneelfilters',
            'panel_filters_fiberglass' => 'glasvezel-paneelfilters',
            'spray_booth_filters' => 'spuitcabinefilters',
            'v_belts' => 'v-snaren',
            'wire_frame_filters' => 'draadframefilters',

            'iso16890_about' => 'wat-betekent-dit?',
            'iso16890_what' => 'wat-is-het?',
            'iso16890_summary' => 'samenvatting',
        );

        // All pages
        $this->pages =  array_merge($this->mainPages, $this->subPages);

        $this->lang = array(

            // Main Pages
            'company' => 'Bedrijfsprofiel',
            'filters' => 'Filters &amp; accessoires',
            'uses' => 'Toepassingen',
            'installation' => 'Installatiebedrijven',
            'certificates' => 'Normeringen',
            'webshop' => 'Webshop',
            'contact' => 'Contact',
            'offer' => 'Offerte aanvragen',
            'terms' => 'Algemene voorwaarden',

            // Phrases
            'call_advice' => 'Bel ons voor<br /> persoonlijk advies',
            'choose_filter' => 'Kies uw filter',
            'choose_certificates' => 'Kies normering',
            'contact_us' => 'Contact opnemen',
            'filter_survey' => 'Filteroverzicht',
            'general' => 'Algemeen',
            'offer_request' => 'Vraag offerte aan',
            'offer_request2' => 'Offerte aanvragen',
            'other' => 'Overige',
            'related_filters' => 'Relevante filters',
            'survey' => 'Totaaloverzicht',
            'type' => 'Type',
            'phone' => '040 - 204 54 06',

            // Certificates
            'en1822' => 'EN1822',
            'en779' => 'EN779',

            // Filters
            'compact_filters_v_cel' => 'V-cel',
            'filter_cloth_ppi' => 'PPI Filterdoek',
            'heat_recovery' => 'WTW-filters',
            'hepa_ulpa_filters' => 'HEPA / ULPA Filters',
            'v_belts' => 'V-Snaren',
            'filter_cloth_glass' => 'Glasmedium (verfvangfilter)',

            // Uses
            'shipping_aviation' => 'Scheep- en luchtvaart',

            // Form
            'company_name' => 'Bedrijfsnaam',
            'first_name' => 'Voornaam',
            'last_name' => 'Achternaam',
            'email' => 'E-mail',
            'tel' => 'Telefoonnummer',
            'message' => 'Bericht',
            'send'=>'Verzenden',

            //footer
            'tops_luchtfilters' => 'Tops Luchtfilters ',
            'filteroverzicht' => 'Filteroverzicht',

            'iso16890_about' => 'Wat betekent dit?',
            'iso16890_what' => 'Wat is het?',
            'iso16890_summary' => 'Samenvatting',
        );

        // Urls
        $this->urls = array(
            // All sub pages
            'index' => $this->subPages
        );
        $this->urls = array_merge($this->mainPages, $this->urls);
    }
}