1
0

24 lines
905 B
PHP
Raw Permalink Normal View History

2020-02-12 23:25:39 +02:00
<?php
// Heading
$_['heading_title'] = 'My Account Information';
// Text
2020-02-16 14:18:44 +02:00
$_['text_account'] = 'Tili';
2021-11-05 15:21:00 +02:00
$_['text_edit'] = 'Muokkaa tietoja';
$_['text_your_details'] = 'Henkilötiedot';
2020-02-12 23:25:39 +02:00
$_['text_success'] = 'Success: Your account has been successfully updated.';
// Entry
2020-02-16 14:18:44 +02:00
$_['entry_firstname'] = 'Etunimi';
$_['entry_lastname'] = 'Salasana';
$_['entry_email'] = 'Sähköpostiosoite';
$_['entry_telephone'] = 'Puhelinnumero';
2020-02-12 23:25:39 +02:00
// Error
2020-02-16 13:32:04 +02:00
$_['error_exists'] = 'Varoitus: E-Mail address is already registered!';
2020-02-12 23:25:39 +02:00
$_['error_firstname'] = 'First Name must be between 1 and 32 characters!';
$_['error_lastname'] = 'Last Name must be between 1 and 32 characters!';
$_['error_email'] = 'E-Mail Address does not appear to be valid!';
$_['error_telephone'] = 'Telephone must be between 3 and 32 characters!';
2020-03-02 10:58:49 +02:00
$_['error_custom_field'] = '%s required!';