mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
588 lines
24 KiB
PHP
588 lines
24 KiB
PHP
<?php
|
||
|
||
return array(
|
||
|
||
// client
|
||
'organization' => 'Organisasjon',
|
||
'name' => 'Navn',
|
||
'website' => 'Webside',
|
||
'work_phone' => 'Telefon',
|
||
'address' => 'Adresse',
|
||
'address1' => 'Gate',
|
||
'address2' => 'Nummer',
|
||
'city' => 'By',
|
||
'state' => 'Fylke',
|
||
'postal_code' => 'Postnummer',
|
||
'country_id' => 'Land',
|
||
'contacts' => 'Kontakter',
|
||
'first_name' => 'Fornavn',
|
||
'last_name' => 'Etternavn',
|
||
'phone' => 'Telefon',
|
||
'email' => 'Email',
|
||
'additional_info' => 'Tilleggsinfo',
|
||
'payment_terms' => 'Betalingsvilkår',
|
||
'currency_id' => 'Valuta',
|
||
'size_id' => 'Størrelse',
|
||
'industry_id' => 'Sektor',
|
||
'private_notes' => 'Private notater',
|
||
|
||
// invoice
|
||
'invoice' => 'Faktura',
|
||
'client' => 'Klient',
|
||
'invoice_date' => 'Faktureringsdato',
|
||
'due_date' => 'Betalingsfrist',
|
||
'invoice_number' => 'Fakturanummer',
|
||
'invoice_number_short' => 'Faktura #',
|
||
'po_number' => 'Ordrenummer',
|
||
'po_number_short' => 'Ordre #',
|
||
'frequency_id' => 'Frekvens',
|
||
'discount' => 'Rabatt',
|
||
'taxes' => 'Skatter',
|
||
'tax' => 'Skatt',
|
||
'item' => 'Beløpstype',
|
||
'description' => 'Beskrivese',
|
||
'unit_cost' => 'á pris',
|
||
'quantity' => 'STK',
|
||
'line_total' => 'Sum',
|
||
'subtotal' => 'Totalbeløp',
|
||
'paid_to_date' => 'Betalt',
|
||
'balance_due' => 'Gjenstående',
|
||
'invoice_design_id' => 'Design',
|
||
'terms' => 'Vilkår',
|
||
'your_invoice' => 'Din faktura',
|
||
|
||
'remove_contact' => 'Fjern kontakt',
|
||
'add_contact' => 'Legg til kontakt',
|
||
'create_new_client' => 'Opprett ny klient',
|
||
'edit_client_details' => 'Endre klientdetaljer',
|
||
'enable' => 'Aktiver',
|
||
'learn_more' => 'Lær mer',
|
||
'manage_rates' => 'Administrer priser',
|
||
'note_to_client' => 'Merknad til klient',
|
||
'invoice_terms' => 'Vilkår for fakturaen',
|
||
'save_as_default_terms' => 'Lagre som standard vilkår',
|
||
'download_pdf' => 'Last ned PDF',
|
||
'pay_now' => 'Betal nå',
|
||
'save_invoice' => 'Lagre faktura',
|
||
'clone_invoice' => 'Kopier faktura',
|
||
'archive_invoice' => 'Arkiver faktura',
|
||
'delete_invoice' => 'Slett faktura',
|
||
'email_invoice' => 'Send faktura på epost',
|
||
'enter_payment' => 'Oppgi betaling',
|
||
'tax_rates' => 'Skattesatser',
|
||
'rate' => 'Sats',
|
||
'settings' => 'Innstillinger',
|
||
'enable_invoice_tax' => 'Aktiver for å spesifisere en <b>faktura skatt</b>',
|
||
'enable_line_item_tax' => 'Aktiver for å spesifisere <b>artikkel skatt</b>',
|
||
|
||
// navigation
|
||
'dashboard' => 'Dashboard',
|
||
'clients' => 'Klienter',
|
||
'invoices' => 'Fakturaer',
|
||
'payments' => 'Betalinger',
|
||
'credits' => 'Kreditter',
|
||
'history' => 'Historie',
|
||
'search' => 'Søk',
|
||
'sign_up' => 'Registrer deg',
|
||
'guest' => 'Gjest',
|
||
'company_details' => 'Firmainformasjon',
|
||
'online_payments' => 'Online betaling',
|
||
'notifications' => 'Varsler',
|
||
'import_export' => 'Import/Export',
|
||
'done' => 'Ferdig',
|
||
'save' => 'Lagre',
|
||
'create' => 'Lag',
|
||
'upload' => 'Last opp',
|
||
'import' => 'Importer',
|
||
'download' => 'Last ned',
|
||
'cancel' => 'Avbryt',
|
||
'close' => 'Lukk',
|
||
'provide_email' => 'Vennligst oppgi en gyldig e-postadresse',
|
||
'powered_by' => 'Drevet av',
|
||
'no_items' => 'Ingen elementer',
|
||
|
||
// recurring invoices
|
||
'recurring_invoices' => 'Gjentakende fakturaer',
|
||
'recurring_help' => '<p>Automatisk send klienter de samme fakturaene ukentlig, bi-månedlig, månedlig, kvartalsvis eller årlig.</p>
|
||
<p>Bruk :MONTH, :QUARTER eller :YEAR for dynamiske datoer. Grunnleggende matematikk fungerer også, for eksempel :MONTH-1.</p>
|
||
<p>Eksempler på dynamiske faktura variabler:</p>
|
||
<ul>
|
||
<li>"Treningsmedlemskap for måneden :MONTH" => "Treningsmedlemskap for måneden Juli"</li>
|
||
<li>":YEAR+1 årlig abonnement" => "2015 årlig abonnement"</li>
|
||
<li>"Forhåndsbetaling for :QUARTER+1" => "Forhåndsbetaling for Q2"</li>
|
||
</ul>',
|
||
|
||
// dashboard
|
||
'in_total_revenue' => 'totale inntekter',
|
||
'billed_client' => 'fakturert klient',
|
||
'billed_clients' => 'fakturerte klienter',
|
||
'active_client' => 'aktiv klient',
|
||
'active_clients' => 'aktive klienter',
|
||
'invoices_past_due' => 'Fakturaer forfalt',
|
||
'upcoming_invoices' => 'Forestående fakturaer',
|
||
'average_invoice' => 'Gjennomsnittlige fakturaer',
|
||
|
||
// list pages
|
||
'archive' => 'Arkiv',
|
||
'delete' => 'Slett',
|
||
'archive_client' => 'Arkiver klient',
|
||
'delete_client' => 'Slett klient',
|
||
'archive_payment' => 'Arkiver betaling',
|
||
'delete_payment' => 'Slett betaling',
|
||
'archive_credit' => 'Arkiver kreditt',
|
||
'delete_credit' => 'Slett kreditt',
|
||
'show_archived_deleted' => 'Vis slettet/arkivert',
|
||
'filter' => 'Filter',
|
||
'new_client' => 'Ny klient',
|
||
'new_invoice' => 'Ny faktura',
|
||
'new_payment' => 'Ny betaling',
|
||
'new_credit' => 'Ny kreditt',
|
||
'contact' => 'Kontakt',
|
||
'date_created' => 'Dato opprettet',
|
||
'last_login' => 'Siste pålogging',
|
||
'balance' => 'Balanse',
|
||
'action' => 'Handling',
|
||
'status' => 'Status',
|
||
'invoice_total' => 'Faktura total',
|
||
'frequency' => 'Frekvens',
|
||
'start_date' => 'Startdato',
|
||
'end_date' => 'Sluttdato',
|
||
'transaction_reference' => 'Transaksjonsreferanse',
|
||
'method' => 'Betalingsmåte',
|
||
'payment_amount' => 'Beløp',
|
||
'payment_date' => 'Betalingsdato',
|
||
'credit_amount' => 'Kredittbeløp',
|
||
'credit_balance' => 'Kreditsaldo',
|
||
'credit_date' => 'Kredittdato',
|
||
'empty_table' => 'Ingen data er tilgjengelige i tabellen',
|
||
'select' => 'Velg',
|
||
'edit_client' => 'Rediger klient',
|
||
'edit_invoice' => 'Rediger faktura',
|
||
|
||
// client view page
|
||
'create_invoice' => 'Lag faktura',
|
||
'enter_credit' => 'Oppgi kreditt',
|
||
'last_logged_in' => 'Sist pålogget',
|
||
'details' => 'Detaljer',
|
||
'standing' => 'Stående',
|
||
'credit' => 'Kreditt',
|
||
'activity' => 'Aktivitet',
|
||
'date' => 'Dato',
|
||
'message' => 'Beskjed',
|
||
'adjustment' => 'Justering',
|
||
'are_you_sure' => 'Er du sikker?',
|
||
|
||
// payment pages
|
||
'payment_type_id' => 'Betalingsmetode',
|
||
'amount' => 'Beløp',
|
||
|
||
// account/company pages
|
||
'work_email' => 'Email',
|
||
'language_id' => 'Språk',
|
||
'timezone_id' => 'Tidssone',
|
||
'date_format_id' => 'Dato format',
|
||
'datetime_format_id' => 'Dato/Tidsformat',
|
||
'users' => 'Brukere',
|
||
'localization' => 'Lokaliseing',
|
||
'remove_logo' => 'Fjern logo',
|
||
'logo_help' => 'Støttedefiltyper: JPEG, GIF og PNG. Anbefalt størrelse: 200px bredde by 120px høyde',
|
||
'payment_gateway' => 'Betalingsløsning',
|
||
'gateway_id' => 'Tilbyder',
|
||
'email_notifications' => 'Varsel via email',
|
||
'email_sent' => 'Varsle når en faktura er <b>sendt</b>',
|
||
'email_viewed' => 'Varsle når en faktura er <b>sett</b>',
|
||
'email_paid' => 'Varsle når en faktura er <b>betalt</b>',
|
||
'site_updates' => 'Nettsted oppdateringer',
|
||
'custom_messages' => 'Tilpassede meldinger',
|
||
'default_invoice_terms' => 'Sett standard fakturavilkår',
|
||
'default_email_footer' => 'Sett standard emailsignatur',
|
||
'import_clients' => 'Importer klientdata',
|
||
'csv_file' => 'Velg CSV-fil',
|
||
'export_clients' => 'Exporter klientdata',
|
||
'select_file' => 'Vennligst velg en fil',
|
||
'first_row_headers' => 'Bruk første rad som overskrifter',
|
||
'column' => 'Kolonne',
|
||
'sample' => 'Eksempel',
|
||
'import_to' => 'Importer til',
|
||
'client_will_create' => 'Klient vil bli opprettet',
|
||
'clients_will_create' => 'Klienter vil bli opprettet',
|
||
'email_settings' => 'Email Settings',
|
||
'pdf_email_attachment' => 'Attach PDF to Emails',
|
||
|
||
// application messages
|
||
'created_client' => 'Klient opprettet suksessfullt',
|
||
'created_clients' => 'Klienter opprettet suksessfullt',
|
||
'updated_settings' => 'Innstillger oppdatert',
|
||
'removed_logo' => 'Logo fjernet',
|
||
'sent_message' => 'Melding sendt',
|
||
'invoice_error' => 'Vennligst sørg for å velge en klient og rette eventuelle feil',
|
||
'limit_clients' => 'Dessverre, dette vil overstige grensen på :count klienter',
|
||
'payment_error' => 'Det oppstod en feil under din betaling. Vennligst prøv igjen senere.',
|
||
'registration_required' => 'Vennligst registrer deg for å sende e-postfaktura',
|
||
'confirmation_required' => 'Vennligst bekreft din e-postadresse',
|
||
|
||
'updated_client' => 'Klient oppdatert',
|
||
'created_client' => 'Klient lagret',
|
||
'archived_client' => 'Klient arkivert',
|
||
'archived_clients' => 'Arkiverte :count klienter',
|
||
'deleted_client' => 'Klient slettet',
|
||
'deleted_clients' => 'Slettet :count kliener',
|
||
|
||
'updated_invoice' => 'Faktura oppdatert',
|
||
'created_invoice' => 'Faktura opprettet',
|
||
'cloned_invoice' => 'Faktura kopiert',
|
||
'emailed_invoice' => 'Emailfaktura sendt',
|
||
'and_created_client' => 'og klient opprettet',
|
||
'archived_invoice' => 'Faktura arkivert',
|
||
'archived_invoices' => 'Fakturaer arkivert',
|
||
'deleted_invoice' => 'Faktura slettet',
|
||
'deleted_invoices' => 'Slettet :count fakturaer',
|
||
|
||
'created_payment' => 'Betaling opprettet',
|
||
'archived_payment' => 'Betaling arkivert',
|
||
'archived_payments' => 'Arkiverte :count betalinger',
|
||
'deleted_payment' => 'Betaling slettet',
|
||
'deleted_payments' => 'Slettet :count betalinger',
|
||
'applied_payment' => 'Betaling lagret',
|
||
|
||
'created_credit' => 'Kreditt opprettet',
|
||
'archived_credit' => 'Kreditt arkivert',
|
||
'archived_credits' => 'Arkiverte :count kreditter',
|
||
'deleted_credit' => 'Kreditt slettet',
|
||
'deleted_credits' => 'Slettet :count kreditter',
|
||
|
||
// Emails
|
||
'confirmation_subject' => 'Invoice Ninja kontobekreftelse',
|
||
'confirmation_header' => 'Kontobekreftelse',
|
||
'confirmation_message' => 'Vennligst åpne koblingen nedenfor for å bekrefte kontoen din.',
|
||
'invoice_subject' => 'Ny faktura fra :account',
|
||
'invoice_message' => 'Sor å se din faktura på :amount, klikk linken nedenfor.',
|
||
'payment_subject' => 'Betaling mottatt',
|
||
'payment_message' => 'Fakk for din betaling pålydende :amount.',
|
||
'email_salutation' => 'Kjære :name,',
|
||
'email_signature' => 'Med vennlig hilsen,',
|
||
'email_from' => 'The InvoiceNinja Team',
|
||
'user_email_footer' => 'For å justere varslingsinnstillingene vennligst besøk '.SITE_URL.'/company/notifications',
|
||
'invoice_link_message' => 'Hvis du vil se din klientfaktura klikk på linken under:',
|
||
'notification_invoice_paid_subject' => 'Faktura :invoice betalt av :client',
|
||
'notification_invoice_sent_subject' => 'Faktura :invoice sendt til :client',
|
||
'notification_invoice_viewed_subject' => 'Faktura :invoice sett av :client',
|
||
'notification_invoice_paid' => 'En betaling pålydende :amount ble gjort av :client for faktura :invoice.',
|
||
'notification_invoice_sent' => 'Email har blitt sendt til :client - Faktura :invoice pålydende :amount.',
|
||
'notification_invoice_viewed' => ':client har nå sett faktura :invoice pålydende :amount.',
|
||
'reset_password' => 'Du kan nullstille ditt passord ved å besøke følgende link:',
|
||
'reset_password_footer' => 'Hvis du ikke ba om å få nullstillt ditt passord, vennligst kontakt kundeservice: ' . CONTACT_EMAIL,
|
||
|
||
|
||
// Payment page
|
||
'secure_payment' => 'Sikker betaling',
|
||
'card_number' => 'Kortnummer',
|
||
'expiration_month' => 'Utløpsdato',
|
||
'expiration_year' => 'Utløpsår',
|
||
'cvv' => 'CVV',
|
||
|
||
// Security alerts
|
||
'security' => [
|
||
'too_many_attempts' => 'For mange forsøk. Prøv igjen om noen få minutter.',
|
||
'wrong_credentials' => 'Feil e-post eller passord.',
|
||
'confirmation' => 'Din konto har blitt bekreftet!',
|
||
'wrong_confirmation' => 'Feil bekreftelseskode.',
|
||
'password_forgot' => 'Informasjonen om tilbakestilling av passord ble sendt til e-postadressen.',
|
||
'password_reset' => 'Passordet ditt er endret.',
|
||
'wrong_password_reset' => 'Ugyldig passord. Prøv på nytt',
|
||
],
|
||
|
||
// Pro Plan
|
||
'pro_plan' => [
|
||
'remove_logo' => ':link for å fjerne Invoice Ninja-logoen, oppgrader til en Pro Plan',
|
||
'remove_logo_link' => 'Klikk her',
|
||
],
|
||
|
||
'logout' => 'Logg ut',
|
||
'sign_up_to_save' => 'Registrer deg for å lagre arbeidet ditt',
|
||
'agree_to_terms' =>'Jeg godtar Invoice Ninja :terms',
|
||
'terms_of_service' => 'vilkår for bruk',
|
||
'email_taken' => 'Epost-adressen er allerede registrert',
|
||
'working' => 'Jobber',
|
||
'success' => 'Suksess',
|
||
'success_message' => 'Du har nå blitt registrert. Vennligst gå inn på linken som du har mottatt i e-postbekreftelsen for å bekrefte e-postadressen.',
|
||
'erase_data' => 'Dette vil permanent slette dine data.',
|
||
'password' => 'Passord',
|
||
|
||
'pro_plan_product' => 'Pro Plan',
|
||
'pro_plan_description' => 'Ett års innmelding i Invoice Ninja Pro Plan.',
|
||
'pro_plan_success' => 'Takk for at du valgte Invoice Ninja\'s Pro plan!<p/> <br/>
|
||
<b>Neste steg</b><p/>en betalbar faktura er send til e-postadressen
|
||
som er tilknyttet knotoen din. For å låse opp alle de utrolige
|
||
Pro-funksjonene, kan du følge instruksjonene på fakturaen til å
|
||
betale for et år med Pro-nivå funksjonerer.<p/>
|
||
Finner du ikke fakturaen? Trenger du mer hjelp? Vi hjelper deg gjerne om det skulle være noe
|
||
-- kontakt oss på contact@invoiceninja.com',
|
||
|
||
'unsaved_changes' => 'Du har ulagrede endringer',
|
||
'custom_fields' => 'Egendefinerte felt',
|
||
'company_fields' => 'Selskapets felt',
|
||
'client_fields' => 'Klientens felt',
|
||
'field_label' => 'Felt etikett',
|
||
'field_value' => 'Feltets verdi',
|
||
'edit' => 'Endre',
|
||
'set_name' => 'Sett ditt firmanavn',
|
||
'view_as_recipient' => 'Vis som mottaker',
|
||
|
||
// product management
|
||
'product_library' => 'Produktbibliotek',
|
||
'product' => 'Produkt',
|
||
'products' => 'Produkter',
|
||
'fill_products' => 'Automatisk-fyll produkter',
|
||
'fill_products_help' => 'Valg av produkt vil automatisk fylle ut <b>beskrivelse og kostnaden</b>',
|
||
'update_products' => 'Automatisk oppdater produkter',
|
||
'update_products_help' => 'Å endre en faktura vil automatisk <b>oppdatere produktbilioteket</b>',
|
||
'create_product' => 'Lag nytt produkt',
|
||
'edit_product' => 'Endre produkt',
|
||
'archive_product' => 'Arkiver produkt',
|
||
'updated_product' => 'Produkt oppdatert',
|
||
'created_product' => 'Produkt lagret',
|
||
'archived_product' => 'Produkt arkivert',
|
||
'pro_plan_custom_fields' => ':link for å aktivere egendefinerte felt ved å delta i Pro Plan',
|
||
|
||
'advanced_settings' => 'Avanserte innstillinger',
|
||
'pro_plan_advanced_settings' => ':link for å aktivere avanserte innstillinger ved å delta i en Pro Plan',
|
||
'invoice_design' => 'Fakturadesign',
|
||
'specify_colors' => 'Egendefinerte farger',
|
||
'specify_colors_label' => 'Velg farger som brukes i fakturaen',
|
||
|
||
'chart_builder' => 'Diagram bygger',
|
||
'ninja_email_footer' => 'Bruk :site til å fakturere kundene dine og få betalt på nettet - gratis!',
|
||
'go_pro' => 'Velg Pro',
|
||
|
||
// Quotes
|
||
'quote' => 'Pristilbud',
|
||
'quotes' => 'Pristilbud',
|
||
'quote_number' => 'Tilbuds nummer',
|
||
'quote_number_short' => 'Tilbuds #',
|
||
'quote_date' => 'Tilbudsdato',
|
||
'quote_total' => 'Tilbud total',
|
||
'your_quote' => 'Ditt tilbud',
|
||
'total' => 'Total',
|
||
'clone' => 'Kopier',
|
||
|
||
'new_quote' => 'Nytt tilbud',
|
||
'create_quote' => 'Lag tilbud',
|
||
'edit_quote' => 'Endre tilbud',
|
||
'archive_quote' => 'Arkiver tilbud',
|
||
'delete_quote' => 'Slett tilbud',
|
||
'save_quote' => 'Lagre tilbud',
|
||
'email_quote' => 'Email tilbudet',
|
||
'clone_quote' => 'Kopier tilbud',
|
||
'convert_to_invoice' => 'Konverter til en faktura',
|
||
'view_invoice' => 'Se faktura',
|
||
'view_client' => 'Vis klient',
|
||
'view_quote' => 'Se tilbud',
|
||
|
||
'updated_quote' => 'Tilbud oppdatert',
|
||
'created_quote' => 'Tilbud opprettet',
|
||
'cloned_quote' => 'Tilbud kopiert',
|
||
'emailed_quote' => 'Tilbud sendt som email',
|
||
'archived_quote' => 'Tilbud arkivert',
|
||
'archived_quotes' => 'Arkiverte :count tilbud',
|
||
'deleted_quote' => 'Tilbud slettet',
|
||
'deleted_quotes' => 'Slettet :count tilbud',
|
||
'converted_to_invoice' => 'Tilbud konvertert til faktura',
|
||
|
||
'quote_subject' => 'Nytt tilbud fra :account',
|
||
'quote_message' => 'For å se ditt tilbud pålydende :amount, klikk linken nedenfor.',
|
||
'quote_link_message' => 'Hvis du vil se din klients tilbud, klikk på linken under:',
|
||
'notification_quote_sent_subject' => 'Tilbud :invoice sendt til :client',
|
||
'notification_quote_viewed_subject' => 'Tilbudet :invoice er nå sett av :client',
|
||
'notification_quote_sent' => 'Følgende klient :client ble sendt tilbudsfaktura :invoice pålydende :amount.',
|
||
'notification_quote_viewed' => 'Følgende klient :client har nå sett tilbudsfakturaen :invoice pålydende :amount.',
|
||
|
||
'session_expired' => 'Økten er utløpt.',
|
||
|
||
'invoice_fields' => 'Faktura felt',
|
||
'invoice_options' => 'Faktura alternativer',
|
||
'hide_quantity' => 'Skjul antall',
|
||
'hide_quantity_help' => 'Hvis du alltid har 1 (en) av hvert element på fakturaen, kan du velge dette alternativet for å ikke vise antall på fakturaen.',
|
||
'hide_paid_to_date' => 'Skjul delbetalinger',
|
||
'hide_paid_to_date_help' => 'Bare vis delbetalinger om det har forekommet en delbetaling.',
|
||
|
||
'charge_taxes' => 'Inkluder skatt',
|
||
'user_management' => 'Brukerhåndtering',
|
||
'add_user' => 'Legg til bruker',
|
||
'send_invite' => 'Send invitasjon',
|
||
'sent_invite' => 'Invitasjon sendt',
|
||
'updated_user' => 'Bruker oppdatert',
|
||
'invitation_message' => 'Du har blitt invitert av :invitor. ',
|
||
'register_to_add_user' => 'Vennligst registrer deg for å legge til en bruker',
|
||
'user_state' => 'Status',
|
||
'edit_user' => 'Endre bruker',
|
||
'delete_user' => 'Slett bruker',
|
||
'active' => 'Aktiv',
|
||
'pending' => 'Avventer',
|
||
'deleted_user' => 'Bruker slettet',
|
||
'limit_users' => 'Dessverre, vil dette overstiger grensen på ' . MAX_NUM_USERS . ' brukere',
|
||
|
||
'confirm_email_invoice' => 'Are you sure you want to email this invoice?',
|
||
'confirm_email_quote' => 'Are you sure you want to email this quote?',
|
||
'confirm_recurring_email_invoice' => 'Recurring is enabled, are you sure you want this invoice emailed?',
|
||
|
||
'cancel_account' => 'Cancel Account',
|
||
'cancel_account_message' => 'Warning: This will permanently erase all of your data, there is no undo.',
|
||
'go_back' => 'Go Back',
|
||
|
||
'data_visualizations' => 'Data Visualizations',
|
||
'sample_data' => 'Sample data shown',
|
||
'hide' => 'Hide',
|
||
'new_version_available' => 'A new version of :releases_link is available. You\'re running v:user_version, the latest is v:latest_version',
|
||
|
||
'invoice_settings' => 'Invoice Settings',
|
||
'invoice_number_prefix' => 'Invoice Number Prefix',
|
||
'invoice_number_counter' => 'Invoice Number Counter',
|
||
'quote_number_prefix' => 'Quote Number Prefix',
|
||
'quote_number_counter' => 'Quote Number Counter',
|
||
'share_invoice_counter' => 'Share invoice counter',
|
||
'invoice_issued_to' => 'Invoice issued to',
|
||
'invalid_counter' => 'To prevent a possible conflict please set either an invoice or quote number prefix',
|
||
'mark_sent' => 'Mark sent',
|
||
|
||
'gateway_help_1' => ':link to sign up for Authorize.net.',
|
||
'gateway_help_2' => ':link to sign up for Authorize.net.',
|
||
'gateway_help_17' => ':link to get your PayPal API signature.',
|
||
'gateway_help_23' => 'Note: use your secret API key, not your publishable API key.',
|
||
'gateway_help_27' => ':link to sign up for TwoCheckout.',
|
||
|
||
'more_designs' => 'More designs',
|
||
'more_designs_title' => 'Additional Invoice Designs',
|
||
'more_designs_cloud_header' => 'Go Pro for more invoice designs',
|
||
'more_designs_cloud_text' => '',
|
||
'more_designs_self_host_header' => 'Get 6 more invoice designs for just $20',
|
||
'more_designs_self_host_text' => '',
|
||
'buy' => 'Buy',
|
||
'bought_designs' => 'Successfully added additional invoice designs',
|
||
|
||
|
||
'sent' => 'sent',
|
||
'timesheets' => 'Timesheets',
|
||
|
||
'payment_title' => 'Enter Your Billing Address and Credit Card information',
|
||
'payment_cvv' => '*This is the 3-4 digit number onthe back of your card',
|
||
'payment_footer1' => '*Billing address must match address associated with credit card.',
|
||
'payment_footer2' => '*Please click "PAY NOW" only once - transaction may take up to 1 minute to process.',
|
||
'vat_number' => 'Vat Number',
|
||
'id_number' => 'ID Number',
|
||
|
||
'white_label_link' => 'White label',
|
||
'white_label_text' => 'Purchase a white label license for $'.WHITE_LABEL_PRICE.' to remove the Invoice Ninja branding from the top of the client pages.',
|
||
'white_label_header' => 'White Label',
|
||
'bought_white_label' => 'Successfully enabled white label license',
|
||
'white_labeled' => 'White labeled',
|
||
|
||
'restore' => 'Restore',
|
||
'restore_invoice' => 'Restore Invoice',
|
||
'restore_quote' => 'Restore Quote',
|
||
'restore_client' => 'Restore Client',
|
||
'restore_credit' => 'Restore Credit',
|
||
'restore_payment' => 'Restore Payment',
|
||
|
||
'restored_invoice' => 'Successfully restored invoice',
|
||
'restored_quote' => 'Successfully restored quote',
|
||
'restored_client' => 'Successfully restored client',
|
||
'restored_payment' => 'Successfully restored payment',
|
||
'restored_credit' => 'Successfully restored credit',
|
||
|
||
'reason_for_canceling' => 'Help us improve our site by telling us why you\'re leaving.',
|
||
'discount_percent' => 'Percent',
|
||
'discount_amount' => 'Amount',
|
||
|
||
'invoice_history' => 'Invoice History',
|
||
'quote_history' => 'Quote History',
|
||
'current_version' => 'Current version',
|
||
'select_versiony' => 'Select version',
|
||
'view_history' => 'View History',
|
||
|
||
'edit_payment' => 'Edit Payment',
|
||
'updated_payment' => 'Successfully updated payment',
|
||
'deleted' => 'Deleted',
|
||
'restore_user' => 'Restore User',
|
||
'restored_user' => 'Successfully restored user',
|
||
'show_deleted_users' => 'Show deleted users',
|
||
'email_templates' => 'Email Templates',
|
||
'invoice_email' => 'Invoice Email',
|
||
'payment_email' => 'Payment Email',
|
||
'quote_email' => 'Quote Email',
|
||
'reset_all' => 'Reset All',
|
||
'approve' => 'Approve',
|
||
|
||
'token_billing_type_id' => 'Token Billing',
|
||
'token_billing_help' => 'Enables you to store credit cards with your gateway, and charge them at a later date.',
|
||
'token_billing_1' => 'Disabled',
|
||
'token_billing_2' => 'Opt-in - checkbox is shown but not selected',
|
||
'token_billing_3' => 'Opt-out - checkbox is shown and selected',
|
||
'token_billing_4' => 'Always',
|
||
'token_billing_checkbox' => 'Store credit card details',
|
||
'view_in_stripe' => 'View in Stripe',
|
||
'use_card_on_file' => 'Use card on file',
|
||
'edit_payment_details' => 'Edit payment details',
|
||
'token_billing' => 'Save card details',
|
||
'token_billing_secure' => 'The data is stored securely by :stripe_link',
|
||
|
||
'support' => 'Support',
|
||
'contact_information' => 'Contact information',
|
||
'256_encryption' => '256-Bit Encryption',
|
||
'amount_due' => 'Amount due',
|
||
'billing_address' => 'Billing address',
|
||
'billing_method' => 'Billing method',
|
||
'order_overview' => 'Order overview',
|
||
'match_address' => '*Address must match address associated with credit card.',
|
||
'click_once' => '*Please click "PAY NOW" only once - transaction may take up to 1 minute to process.',
|
||
|
||
'default_invoice_footer' => 'Set default invoice footer',
|
||
'invoice_footer' => 'Invoice footer',
|
||
'save_as_default_footer' => 'Save as default footer',
|
||
|
||
'token_management' => 'Token Management',
|
||
'tokens' => 'Tokens',
|
||
'add_token' => 'Add Token',
|
||
'show_deleted_tokens' => 'Show deleted tokens',
|
||
'deleted_token' => 'Successfully deleted token',
|
||
'created_token' => 'Successfully created token',
|
||
'updated_token' => 'Successfully updated token',
|
||
'edit_token' => 'Edit Token',
|
||
'delete_token' => 'Delete Token',
|
||
'token' => 'Token',
|
||
|
||
'add_gateway' => 'Add Gateway',
|
||
'delete_gateway' => 'Delete Gateway',
|
||
'edit_gateway' => 'Edit Gateway',
|
||
'updated_gateway' => 'Successfully updated gateway',
|
||
'created_gateway' => 'Successfully created gateway',
|
||
'deleted_gateway' => 'Successfully deleted gateway',
|
||
'pay_with_paypal' => 'PayPal',
|
||
'pay_with_card' => 'Credit card',
|
||
|
||
'change_password' => 'Change password',
|
||
'current_password' => 'Current password',
|
||
'new_password' => 'New password',
|
||
'confirm_password' => 'Confirm password',
|
||
'password_error_incorrect' => 'The current password is incorrect.',
|
||
'password_error_invalid' => 'The new password is invalid.',
|
||
'updated_password' => 'Successfully updated password',
|
||
|
||
'api_tokens' => 'API Tokens',
|
||
'users_and_tokens' => 'Users & Tokens',
|
||
'account_login' => 'Account Login',
|
||
'recover_password' => 'Recover your password',
|
||
'forgot_password' => 'Forgot your password?',
|
||
'email_address' => 'Email address',
|
||
'lets_go' => 'Let’s go',
|
||
'password_recovery' => 'Password Recovery',
|
||
'send_email' => 'Send email',
|
||
'set_password' => 'Set Password',
|
||
'converted' => 'Converted',
|
||
|
||
'email_approved' => 'Email me when a quote is <b>approved</b>',
|
||
'notification_quote_approved_subject' => 'Quote :invoice was approved by :client',
|
||
'notification_quote_approved' => 'The following client :client approved Quote :invoice for :amount.',
|
||
|
||
|
||
); |