mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-13 17:14:10 -08:00
934afa036f
Shift automatically applies the Laravel coding style - which uses the PSR-2 coding style as a base with some minor additions. You may customize the adopted coding style by adding your own [PHP CS Fixer][1] `.php_cs` config file to your project root. Feel free to use [Shift's Laravel ruleset][2] to help you get started. [1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer [2]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200
20 lines
967 B
PHP
20 lines
967 B
PHP
<?php
|
|
|
|
return [
|
|
'about' => 'Tentang Label Status',
|
|
'archived' => 'Diarsipkan',
|
|
'create' => 'Buat label status',
|
|
'color' => 'Warna bagan',
|
|
'default_label' => 'Label standar',
|
|
'default_label_help' => 'Ini digunakan untuk memastikan label status yang paling sering digunakan muncul di bagian atas kotak pilih saat membuat / mengedit aset.',
|
|
'deployable' => 'Bisa disebarkan',
|
|
'info' => 'Label status digunakan untuk menggambarkan berbagai keadaan aset Anda. Mungkin ada perbaikan, kehilangan / pencurian, dll. Anda dapat membuat label status baru untuk aset yang dapat dideplesikan, tertunda dan diarsipkan.',
|
|
'name' => 'Nama status',
|
|
'pending' => 'Tertunda',
|
|
'status_type' => 'Tipe status',
|
|
'show_in_nav' => 'Tunjukkan di sisi nav',
|
|
'title' => 'Label status',
|
|
'undeployable' => 'Tidak dapat disebarkan',
|
|
'update' => 'Perbarui label status',
|
|
];
|