1
0
opencart-languagepack-finnish/admin/user/user.php

39 lines
1.7 KiB
PHP
Raw Permalink Normal View History

2020-02-12 21:25:39 +00:00
<?php
// Heading
2020-02-16 12:18:44 +00:00
$_['heading_title'] = 'Käyttäjät';
2020-02-12 21:25:39 +00:00
// Text
$_['text_success'] = 'Success: You have modified users!';
2020-02-16 12:18:44 +00:00
$_['text_list'] = 'Käyttäjälista';
$_['text_add'] = 'Lisää käyttäjä';
2020-03-02 08:58:49 +00:00
$_['text_edit'] = 'Muokkaa käyttäjää';
2020-02-12 21:25:39 +00:00
// Column
2020-02-16 12:18:44 +00:00
$_['column_username'] = 'Käyttäjätunnus';
$_['column_status'] = 'Tila';
$_['column_date_added'] = 'Lisäyspäivä';
$_['column_action'] = 'Toiminto';
2020-02-12 21:25:39 +00:00
// Entry
2020-02-16 12:18:44 +00:00
$_['entry_username'] = 'Käyttäjätunnus';
$_['entry_user_group'] = 'Käyttäjäryhmä';
$_['entry_password'] = 'Salasana';
$_['entry_confirm'] = 'Vahvista';
$_['entry_firstname'] = 'Etunimi';
$_['entry_lastname'] = 'Sukunimi';
$_['entry_email'] = 'Sähköpostiosoite';
$_['entry_image'] = 'Kuva';
$_['entry_status'] = 'Tila';
2020-02-12 21:25:39 +00:00
// Error
2020-02-16 11:32:04 +00:00
$_['error_permission'] = 'Varoitus: You do not have permission to modify users!';
$_['error_account'] = 'Varoitus: You can not delete your own account!';
$_['error_exists_username'] = 'Varoitus: Username is already in use!';
2020-02-12 21:25:39 +00:00
$_['error_username'] = 'Username must be between 3 and 20 characters!';
$_['error_password'] = 'Password must be between 4 and 20 characters!';
$_['error_confirm'] = 'Password and password confirmation do not match!';
$_['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!';
2020-03-02 00:28:04 +00:00
$_['error_exists_email'] = 'Varoitus: E-Mail Address is already registered!';