mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
26 lines
722 B
PHP
26 lines
722 B
PHP
<?php
|
|
|
|
return [
|
|
'invalid_argument' => 'Invalid argument',
|
|
'require_argument' => ':argument cannot be empty',
|
|
'select_one_please' => 'Please select one',
|
|
'user_not_exists' => '(orphaned)',
|
|
'time_units' => [
|
|
'week' => 'weeks',
|
|
'hour' => 'hours',
|
|
],
|
|
'select_all' => 'Select all',
|
|
'unselect_all' => 'Unselect all',
|
|
'increment' => 'increment',
|
|
'decrement' => 'decrement',
|
|
'action' => 'Action',
|
|
'no_limit' => 'No limit',
|
|
'sum' => 'Sum',
|
|
'do_not_repeat' => 'Please do not repeat the operation!',
|
|
'no_permission' => 'No permission!',
|
|
'sort' => 'sort field',
|
|
'order' => 'sort',
|
|
'asc' => 'ascending order',
|
|
'desc' => 'descending order',
|
|
];
|