2021-05-04 14:21:18 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
'invalid_argument' => 'Invalid argument',
|
2022-09-25 16:33:52 +08:00
|
|
|
'require_argument' => ':argument cannot be empty',
|
|
|
|
|
'select_one_please' => 'Please select one',
|
2022-10-06 18:31:16 +08:00
|
|
|
'user_not_exists' => '(orphaned)',
|
2022-11-10 03:58:48 +08:00
|
|
|
'time_units' => [
|
|
|
|
|
'week' => 'weeks',
|
|
|
|
|
],
|
2022-12-05 17:35:39 +08:00
|
|
|
'select_all' => 'Select all',
|
|
|
|
|
'unselect_all' => 'Unselect all',
|
2022-12-13 13:51:39 +08:00
|
|
|
'increment' => 'increment',
|
|
|
|
|
'decrement' => 'decrement',
|
2022-12-20 22:24:31 +08:00
|
|
|
'action' => 'Action',
|
2023-02-09 16:34:38 +08:00
|
|
|
'no_limit' => 'No limit',
|
2023-02-10 15:13:56 +08:00
|
|
|
'sum' => 'Sum',
|
2024-05-20 11:59:12 +08:00
|
|
|
'do_not_repeat' => 'Please do not repeat the operation!',
|
2024-06-07 02:51:05 +08:00
|
|
|
'no_permission' => 'No permission!',
|
2025-05-04 02:20:18 +07:00
|
|
|
'sort' => 'sort field',
|
|
|
|
|
'order' => 'sort',
|
|
|
|
|
'asc' => 'ascending order',
|
|
|
|
|
'desc' => 'descending order',
|
2021-05-04 14:21:18 +08:00
|
|
|
];
|