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/shop.komma.nl/resources/lang/vendor/KMS/nl/discounts.php
<?php

use App\Discounts\Actions\DiscountActionTypes as DiscountActionTypesAlias;
use App\Discounts\Conditions\DiscountConditionTypes;
use App\Discounts\DiscountableTypes;
use App\Discounts\DiscountTypes;

return [
    'type' => 'Korting',
    'discount' => 'korting',
    'entity' => 'korting',
    'discounts' => 'Kortingen',
    'for' => 'Voor',
    'controller' => 'controller',
    'searchable' => 'doorzoekbaar',
    'kind' => 'soort',
    'coupon' => 'Kortingscode',
    'coupon_fail' => 'Kortingscode kon niet worden toegevoegd.',
    'apply_when' => 'Als:',
    'coupon_codes' => 'Kortingscodes',
    'apply_coupon_code' => 'Kortingscode toevoegen',
    'shopping_cart_or_product' => 'Winkelwagen of product',
    'stop_processing' => 'Volgende kortingen niet verwerken',
    'condition_settings' => 'Voorwaarde instellingen',
    'action_settings' => 'Actie instellingen',
    'valid_from' => 'Geldig vanaf',
    'valid_trough' => 'Geldig tot en met',
    'title' => 'Kortingen',
    'sub_title' => '',
    'newPriceText' => 'Nieuwe prijs van',
    'whenAmountIsReached' => 'Bij een aantal vanaf',
    'add_condition'   => 'Voorwaarde toevoegen',
    'add_action'   => 'Actie toevoegen',
    'add'   => 'Toevoegen',
    'save'   => 'Opslaan',
    'close'   => 'Sluiten',
    'cancel'   => 'Annuleren',
    'delete'   => 'Verwijderen',
    'new' => 'Nieuwe korting',
    'and_act_as_follows' => 'Dan:',
    'active' => 'Actief',
    'edit' => 'Aanpassen',
    'general' => 'Algemeen',
    'name' => 'Naam',
    'description' => 'Omschrijving',
    'save_order' => 'Volgorde opslaan',
    'select_category' => 'Selecteer een categorie',
    'buyXpayY' => [
        'per' => 'per',
        'products_you_will_get' => 'krijg je er',
        'free' => 'gratis'
    ],

    'properties' => [
        'shopping_cart' => [
            'getItemsCount' => 'aantal producten',
            'getPrice' => 'totaalprijs (in centen)',
            'getPriceEx' => 'prijs ex. btw (in centen)',
            'getPriceInc' => 'prijs inc. btw (in centen)',
        ],
        'shopping_cart_item' => [
            'getId' => 'Id',
            'getItemsCount' => 'aantal',
            'getPrice' => 'totaalprijs (in centen)',
            'getPriceEx' => 'prijs ex. btw (in centen)',
            'getPriceInc' => 'prijs inc. btw (in centen)',
            'getVatAmount' => 'hoeveelheid btw (in centen)'
        ]
    ],

    'confirm_modals' => [
        'delete_discount' => [
            'header_text' => 'Weet je het zeker',
            'message' => 'Weet je zeker dat je deze korting wil verwijderen?',
            'confirm_text' => 'Ja',
            'cancel_text' => 'Nee'
        ]
    ],

    'operators' => [
        '<' => 'kleiner dan',
        '<=' => 'kleiner dan of gelijk aan',
        '==' => 'gelijk aan',
        '!=' => 'niet gelijk aan',
        '>=' => 'groter dan of gelijk aan',
        '>' => 'groter dan',
        'in' => 'in komma gescheiden lijst',
        'not_in' => 'niet in komma gescheiden lijst'
    ],
    'degrees' => '°',
    'temperature_operators' => [
        '<' => 'kouder dan',
        '<=' => 'kouder of gelijk is aan',
        '==' => 'gelijk is aan',
        '>=' => 'warmer of gelijk is aan',
        '>' => 'warmer is dan'
    ],

    'conditionTypes' => [
        DiscountConditionTypes::CART_PRODUCT_COUNT   => [
            'displayText' =>'Aantal producten in winkelwagen',
            'paramForm' => 'NumberWithOperatorParameterForm'
        ],
        DiscountConditionTypes::PRODUCT_COUNT   => [
            'displayText' =>'Aantal van een bepaald product',
            'paramForm' => 'NumberWithOperatorParameterForm'
        ],
        DiscountConditionTypes::CART_SUBTOTAL   => [
            'displayText' =>'Subtotaal van winkelwagen',
            'paramForm' => 'CurrencyWithOperatorParameterForm'
        ],
        DiscountConditionTypes::PRODUCT_CATEGORY   => [
            'displayText' =>'Winkelwagen een product bevat uit categorie(ën)',
            'paramForm' => 'ProductCategoryForm'
        ],
        DiscountConditionTypes::WEATHER   => [
            'displayText' =>'Temperatuur',
            'paramForm' => 'WeatherParameterForm'
        ],
    ],
    
    'actionTypes' => [
        DiscountActionTypesAlias::MODIFY_CART_PRICE_ABSOLUTE => [
            'displayText' => 'Pas de totaalprijs aan met een bedrag',
            'paramForm' => 'CurrencyParameterForm'
        ],
        DiscountActionTypesAlias::MODIFY_CART_PRICE_PERCENTAGE => [
            'displayText' => 'Geef een percentuele korting op de totaalprijs',
            'paramForm' => 'PercentageParameterForm'
        ],
        DiscountActionTypesAlias::MODIFY_CART_ITEM_PRICE_ABSOLUTE => [
            'displayText' => 'Pas de prijs van een product met een bedrag',
            'paramForm' => 'CurrencyParameterForm'
        ],
        DiscountActionTypesAlias::MODIFY_CART_ITEM_PRICE_PERCENTAGE => [
            'displayText' => 'Geef een percentuele korting op het product van',
            'paramForm' => 'PercentageParameterForm'
        ],
        DiscountActionTypesAlias::FREE_SHIPPING => [
            'displayText' => 'Reken geen verzendkosten',
            'paramForm' => ''
        ],
        DiscountActionTypesAlias::QUANTITY_FOR_PRICE_OF => [
            'displayText' => 'X halen Y betalen',
            'paramForm' => 'BuyXPayY'
        ],
    ],

    'types' => [
        DiscountTypes::None             => 'Geen',
        DiscountTypes::Discountable     => 'Specifiek product',
        DiscountTypes::Quantity         => 'Staffel',
        DiscountTypes::Coupon           => 'Kortingscode'
    ],
    'selectable_discountable_types' => [
        DiscountableTypes::ShoppingCartItem                     => 'Item in winkelwagen',
        DiscountableTypes::ShoppingCart                         => 'Winkelwagen',
    ],
    'discountable_types' => [
        DiscountableTypes::None                                 => 'Geen',
        DiscountableTypes::ShoppingCartItem                     => 'Item in winkelwagen',
        DiscountableTypes::ShoppingCart                         => 'Winkelwagen',
        DiscountableTypes::ShoppingCartAndShoppingCartItem      => 'Winkelwagen en Item in winkelwagen',
    ]
];