21 lines
632 B
PHP
21 lines
632 B
PHP
<?php
|
|
// Heading
|
|
$_['heading_title'] = 'Administration';
|
|
|
|
// Text
|
|
$_['text_heading'] = 'Administration';
|
|
$_['text_login'] = 'Please enter your login details.';
|
|
$_['text_forgotten'] = 'Forgotten Password';
|
|
|
|
// Entry
|
|
$_['entry_username'] = 'Käyttäjätunnus';
|
|
$_['entry_password'] = 'Salasana';
|
|
|
|
// Button
|
|
$_['button_login'] = 'Kirjaudu';
|
|
|
|
// Error
|
|
$_['error_login'] = 'No match for Username and/or Password.';
|
|
$_['error_token'] = 'Invalid token session. Please login again.';
|
|
$_['error_attempts'] = 'Warning: Your account has exceeded allowed number of login attempts. Please try again in 1 hour or reset password.';
|