mirror of
https://github.com/shadoll/translate.git
synced 2025-12-21 01:25:09 +00:00
26 lines
860 B
PHP
Executable File
26 lines
860 B
PHP
Executable File
<?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!'; |