2020-02-12 21:25:39 +00:00
|
|
|
<?php
|
|
|
|
// Heading
|
2020-02-16 12:18:44 +00:00
|
|
|
$_['heading_title'] = 'Osoitekirja';
|
2020-02-12 21:25:39 +00:00
|
|
|
|
|
|
|
// Text
|
2020-02-16 12:18:44 +00:00
|
|
|
$_['text_account'] = 'Tili';
|
2020-02-12 21:25:39 +00:00
|
|
|
$_['text_address_book'] = 'Address Book Entries';
|
2020-02-16 12:18:44 +00:00
|
|
|
$_['text_address_add'] = 'Lisää osoite';
|
2020-02-12 21:25:39 +00:00
|
|
|
$_['text_address_edit'] = 'Edit Address';
|
|
|
|
$_['text_add'] = 'Your address has been successfully added';
|
|
|
|
$_['text_edit'] = 'Your address has been successfully updated';
|
|
|
|
$_['text_delete'] = 'Your address has been successfully deleted';
|
|
|
|
$_['text_empty'] = 'You have no addresses in your account.';
|
2021-10-08 15:17:57 +00:00
|
|
|
$_['text_confirm'] = 'Are you sure?';
|
2020-02-12 21:25:39 +00:00
|
|
|
|
|
|
|
// Entry
|
2020-02-16 12:18:44 +00:00
|
|
|
$_['entry_firstname'] = 'Etunimi';
|
|
|
|
$_['entry_lastname'] = 'Sukunimi';
|
|
|
|
$_['entry_company'] = 'Yritys';
|
|
|
|
$_['entry_address_1'] = 'Osoite (rivi 1)';
|
|
|
|
$_['entry_address_2'] = 'Osoite (rivi 2)';
|
|
|
|
$_['entry_postcode'] = 'Postinumero';
|
2021-10-08 15:57:57 +00:00
|
|
|
$_['entry_city'] = 'Postitoimipaikka';
|
|
|
|
$_['entry_country'] = 'Maa';
|
2020-02-16 12:18:44 +00:00
|
|
|
$_['entry_zone'] = 'Alue / Osavaltio';
|
|
|
|
$_['entry_default'] = 'Oletusosoite';
|
2020-02-12 21:25:39 +00:00
|
|
|
|
|
|
|
// Error
|
2020-02-16 11:32:04 +00:00
|
|
|
$_['error_delete'] = 'Varoitus: You must have at least one address!';
|
|
|
|
$_['error_default'] = 'Varoitus: You can not delete your default address!';
|
2020-02-12 21:25:39 +00:00
|
|
|
$_['error_firstname'] = 'First Name must be between 1 and 32 characters!';
|
|
|
|
$_['error_lastname'] = 'Last Name must be between 1 and 32 characters!';
|
|
|
|
$_['error_address_1'] = 'Address must be between 3 and 128 characters!';
|
|
|
|
$_['error_postcode'] = 'Postcode must be between 2 and 10 characters!';
|
|
|
|
$_['error_city'] = 'City must be between 2 and 128 characters!';
|
|
|
|
$_['error_country'] = 'Please select a country!';
|
|
|
|
$_['error_zone'] = 'Please select a region / state!';
|
2020-03-02 08:58:49 +00:00
|
|
|
$_['error_custom_field'] = '%s required!';
|