invoices.php 1.69 KB
<?php

return [

    'invoice_number'    => 'Faktura nummer',
    'invoice_date'      => 'Faktura dato',
    'total_price'       => 'Total pris',
    'due_date'          => 'Forfaldsdato',
    'order_number'      => 'Ordrenummer',
    'bill_to'           => 'Faktura til',

    'quantity'          => 'Antal',
    'price'             => 'Pris',
    'sub_total'         => 'Subtotal',
    'discount'          => 'Rabat',
    'tax_total'         => 'Moms i alt',
    'total'             => 'I alt',

    'item_name'         => 'Vare navn|Vare navne',

    'show_discount'     => ':discount% Rabat',
    'add_discount'      => 'Tilføj rabat',
    'discount_desc'     => 'subtotal',

    'payment_due'       => 'Betalingsfrist',
    'paid'              => 'Betalt',
    'histories'         => 'Historik',
    'payments'          => 'Betalinger',
    'add_payment'       => 'Tilføj betaling',
    'mark_paid'         => 'Marker som betalt',
    'mark_sent'         => 'Marker som sendt',
    'download_pdf'      => 'Download som PDF',
    'send_mail'         => 'Send e-mail',

    'status' => [
        'draft'         => 'Kladde',
        'sent'          => 'Sendt',
        'viewed'        => 'Vist',
        'approved'      => 'Godkendt',
        'partial'       => 'Delvist',
        'paid'          => 'Betalt',
    ],

    'messages' => [
        'email_sent'     => 'E-maiil med faktura er afsendt!',
        'marked_sent'    => 'Faktura markeret som sendt!',
        'email_required' => 'Ingen e-mail-adresse for denne kunde!',
    ],

    'notification' => [
        'message'       => 'Du modtager denne e-mail, fordi du har en faktura på :amount til :customer kunde.',
        'button'        => 'Betal nu',
    ],

];