mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 20:40:49 +08:00
add lang de/pl/pt/ro/ru/sv
This commit is contained in:
33
resources/lang/ro/plugin.php
Normal file
33
resources/lang/ro/plugin.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'actions' => [
|
||||
'install' => 'Instalează',
|
||||
'delete' => 'Elimină',
|
||||
'update' => 'Actualizează',
|
||||
],
|
||||
'labels' => [
|
||||
'display_name' => 'Nume',
|
||||
'package_name' => 'Numele pachetului',
|
||||
'remote_url' => 'Adresă depozit',
|
||||
'installed_version' => 'Versiunea instalată',
|
||||
'status' => 'Status',
|
||||
'updated_at' => 'Ultima acţiune la',
|
||||
],
|
||||
'status' => [
|
||||
\App\Models\Plugin::STATUS_NORMAL => 'Normală',
|
||||
\App\Models\Plugin::STATUS_NOT_INSTALLED => 'Nu este instalat',
|
||||
|
||||
\App\Models\Plugin::STATUS_PRE_INSTALL => 'Gata de instalare',
|
||||
\App\Models\Plugin::STATUS_INSTALLING => 'Instalare',
|
||||
\App\Models\Plugin::STATUS_INSTALL_FAILED => 'Instalare eșuată',
|
||||
|
||||
\App\Models\Plugin::STATUS_PRE_UPDATE => 'Gata de actualizare',
|
||||
\App\Models\Plugin::STATUS_UPDATING => 'Actualizare',
|
||||
\App\Models\Plugin::STATUS_UPDATE_FAILED => 'Actualizare eșuată',
|
||||
|
||||
\App\Models\Plugin::STATUS_PRE_DELETE => 'Pregătit pentru eliminare',
|
||||
\App\Models\Plugin::STATUS_DELETING => 'Eliminare',
|
||||
\App\Models\Plugin::STATUS_DELETE_FAILED => 'Eliminare eșuată',
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user