add lang: nl + deprecate lang/_target

This commit is contained in:
xiaomlove
2025-04-21 02:53:56 +07:00
parent 4166a933e1
commit d990723ebc
310 changed files with 14339 additions and 245 deletions

View File

@@ -0,0 +1,33 @@
<?php
return [
'actions' => [
'install' => 'Installér',
'delete' => 'Fjern',
'update' => 'Opgradér',
],
'labels' => [
'display_name' => 'Navn',
'package_name' => 'Pakke navn',
'remote_url' => 'Repository adresse',
'installed_version' => 'Installeret version',
'status' => 'Status',
'updated_at' => 'Seneste handling på',
],
'status' => [
\App\Models\Plugin::STATUS_NORMAL => 'Normal',
\App\Models\Plugin::STATUS_NOT_INSTALLED => 'Ikke installeret',
\App\Models\Plugin::STATUS_PRE_INSTALL => 'Klar til installation',
\App\Models\Plugin::STATUS_INSTALLING => 'Installerer',
\App\Models\Plugin::STATUS_INSTALL_FAILED => 'Installationen mislykkedes',
\App\Models\Plugin::STATUS_PRE_UPDATE => 'Klar til opgradering',
\App\Models\Plugin::STATUS_UPDATING => 'Opgradering',
\App\Models\Plugin::STATUS_UPDATE_FAILED => 'Opgradering mislykkedes',
\App\Models\Plugin::STATUS_PRE_DELETE => 'Klar til at fjerne',
\App\Models\Plugin::STATUS_DELETING => 'Fjerner',
\App\Models\Plugin::STATUS_DELETE_FAILED => 'Fjern mislykkedes',
],
];