add latest translate by by Sirchyk

This commit is contained in:
Eugene Kuligin
2014-12-07 08:59:25 +02:00
parent a891d6291d
commit b3e811ae97
379 changed files with 11199 additions and 3362 deletions

View File

@@ -0,0 +1,26 @@
<?php
// Heading
$_['heading_title'] = 'API\'s';
// Text
$_['text_success'] = 'Success: You have modified API\'s!';
$_['text_list'] = 'API List';
$_['text_add'] = 'Add API';
$_['text_edit'] = 'Edit API';
// Column
$_['column_username'] = 'Username';
$_['column_status'] = 'Status';
$_['column_date_added'] = 'Date Added';
$_['column_date_modified'] = 'Date Modified';
$_['column_action'] = 'Action';
// Entry
$_['entry_username'] = 'Username';
$_['entry_password'] = 'Password';
$_['entry_status'] = 'Status';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify API\'s!';
$_['error_username'] = 'Username must be between 3 and 20 characters!';
$_['error_password'] = 'API password must be between 3 and 256 characters!';

View File

@@ -0,0 +1,36 @@
<?php
// Heading
$_['heading_title'] = 'Users';
// Text
$_['text_success'] = 'Success: You have modified users!';
$_['text_list'] = 'User List';
$_['text_add'] = 'Add User';
$_['text_edit'] = 'Edit User';
// Column
$_['column_username'] = 'Username';
$_['column_status'] = 'Status';
$_['column_date_added'] = 'Date Added';
$_['column_action'] = 'Action';
// Entry
$_['entry_username'] = 'Username';
$_['entry_user_group'] = 'User Group';
$_['entry_password'] = 'Password';
$_['entry_confirm'] = 'Confirm';
$_['entry_firstname'] = 'First Name';
$_['entry_lastname'] = 'Last Name';
$_['entry_email'] = 'E-Mail';
$_['entry_image'] = 'Image';
$_['entry_status'] = 'Status';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify users!';
$_['error_account'] = 'Warning: You can not delete your own account!';
$_['error_exists'] = 'Warning: Username is already in use!';
$_['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!';

View File

@@ -0,0 +1,23 @@
<?php
// Heading
$_['heading_title'] = 'User Groups';
// Text
$_['text_success'] = 'Success: You have modified user groups!';
$_['text_list'] = 'User Group';
$_['text_add'] = 'Add User Group';
$_['text_edit'] = 'Edit User Group';
// Column
$_['column_name'] = 'User Group Name';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'User Group Name';
$_['entry_access'] = 'Access Permission';
$_['entry_modify'] = 'Modify Permission';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify user groups!';
$_['error_name'] = 'User Group Name must be between 3 and 64 characters!';
$_['error_user'] = 'Warning: This user group cannot be deleted as it is currently assigned to %s users!';