16 lines
462 B
PHP
16 lines
462 B
PHP
<?php
|
|
// Heading
|
|
$_['heading_title'] = 'Vaihda Salasana';
|
|
|
|
// Text
|
|
$_['text_account'] = 'Tili';
|
|
$_['text_password'] = 'Your Password';
|
|
$_['text_success'] = 'Success: Your password has been successfully updated.';
|
|
|
|
// Entry
|
|
$_['entry_password'] = 'Salasana';
|
|
$_['entry_confirm'] = 'Vahvista salasana';
|
|
|
|
// Error
|
|
$_['error_password'] = 'Password must be between 4 and 20 characters!';
|
|
$_['error_confirm'] = 'Password confirmation does not match password!'; |