first commit
This commit is contained in:
16
lang/vendor/backpack/ro/backup.php
vendored
Normal file
16
lang/vendor/backpack/ro/backup.php
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
// --------------------------------------------------------
|
||||
// This is only a pointer file, not an actual language file
|
||||
// --------------------------------------------------------
|
||||
//
|
||||
// If you've copied this file to your /resources/lang/vendor/backpack/
|
||||
// folder, please delete it, it's no use there. You need to copy/publish the
|
||||
// actual language file, from the package.
|
||||
|
||||
// If a langfile with the same name exists in the package, load that one
|
||||
if (file_exists(__DIR__.'/../../../../../backupmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
|
||||
return include __DIR__.'/../../../../../backupmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
|
||||
}
|
||||
|
||||
return [];
|
63
lang/vendor/backpack/ro/base.php
vendored
Normal file
63
lang/vendor/backpack/ro/base.php
vendored
Normal file
@ -0,0 +1,63 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Backpack\Base Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
'registration_closed' => 'Înregistrarea este închisă.',
|
||||
'first_page_you_see' => 'Prima pagină pe care o vezi după logare',
|
||||
'login_status' => 'Starea de conectare',
|
||||
'logged_in' => 'Sunteți autentificat!',
|
||||
'toggle_navigation' => 'Arată/ascunde meniul',
|
||||
'administration' => 'ADMINISTRARE',
|
||||
'user' => 'UTILIZATOR',
|
||||
'logout' => 'Ieșire din cont',
|
||||
'login' => 'Autentificare',
|
||||
'register' => 'Înregistrare cont nou',
|
||||
'name' => 'Nume',
|
||||
'email_address' => 'Adresă de email',
|
||||
'password' => 'Parolă',
|
||||
'confirm_password' => 'Confirmare parolă',
|
||||
'remember_me' => 'Ține-mă minte',
|
||||
'forgot_your_password' => 'Ți-ai uitat parola?',
|
||||
'reset_password' => 'Resetare parolă',
|
||||
'send_reset_link' => 'Trimite cererea de resetare parolă',
|
||||
'click_here_to_reset' => 'Apasa aici pentru a reseta parola',
|
||||
'unauthorized' => 'Acces neautorizat.',
|
||||
'dashboard' => 'Panou de administrare',
|
||||
'handcrafted_by' => 'Realizat de',
|
||||
'powered_by' => 'Powered by',
|
||||
'no_email_column' => 'Utilizatorii nu au o adresă de email asociată.',
|
||||
'old_password' => 'Parola veche',
|
||||
'new_password' => 'Parola nouă',
|
||||
'change_password' => 'Schimbă parola',
|
||||
'my_account' => 'Contul meu',
|
||||
'update_account_info' => 'Modifica datele contului',
|
||||
'save' => 'Salvează',
|
||||
'cancel' => 'Anulează',
|
||||
'error' => 'Eroare',
|
||||
'success' => 'Succes',
|
||||
'old_password_incorrect' => 'Parola veche este incorectă.',
|
||||
'password_dont_match' => 'Parolele nu se potrivesc.',
|
||||
'password_empty' => 'Asigurați-vă că ambele parole sunt introduse.',
|
||||
'password_updated' => 'Parola a fost modificată cu succes.',
|
||||
'account_updated' => 'Contul a fost modificat cu succes.',
|
||||
'unknown_error' => 'A avut loc o eroare necunoscută. Vă rugăm să încercați din nou.',
|
||||
'error_saving' => 'Eroare în timpul salvării. Vă rugăm să încercați din nou.',
|
||||
'session_expired_error' => 'Sesiunea dumneavoastră a expirat. Vă rugăm să vă conectați din nou la contul dvs.',
|
||||
|
||||
'password_reset' => [
|
||||
'greeting' => 'Salutare!',
|
||||
'subject' => 'Resetarea parolei dvs',
|
||||
'line_1' => 'Primiți acest email pentru ca am primit o cerere de schimbare a parolei pentru contul dumneavoastră.',
|
||||
'line_2' => 'Apăsați pe butonul de mai jos pentru a reseta parola dumneavoastră:',
|
||||
'button' => 'Schimbă parola',
|
||||
'notice' => 'Dacă nu ați facut dvs cererea, nu este nevoie să faceți nimic, parola nu va fi schimbată.',
|
||||
],
|
||||
'throttled' => 'Ați cerut deja schimbarea parolei, de curând. Verificați email-ul primit pentru instrucțiuni. Dacă nu primiți email-ul, vă rugăm să încercați mai târziu.',
|
||||
'throttled_request' => 'Ați depășit limita de încercări. Așteptați câteva minute, apoi încercați din nou.',
|
||||
];
|
133
lang/vendor/backpack/ro/crud.php
vendored
Normal file
133
lang/vendor/backpack/ro/crud.php
vendored
Normal file
@ -0,0 +1,133 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Backpack Crud Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the CRUD interface.
|
||||
| You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
// Forms
|
||||
'save_action_save_and_new' => 'Salvează și adaugă o nouă intrare',
|
||||
'save_action_save_and_edit' => 'Salvează și editează intrarea',
|
||||
'save_action_save_and_back' => 'Salvează și mergi la listă',
|
||||
'save_action_save_and_preview' => 'Salvează și previzualizează',
|
||||
'save_action_changed_notification' => 'A fost salvată preferința redirecționării după salvare.',
|
||||
|
||||
// Create form
|
||||
'add' => 'Adaugă',
|
||||
'back_to_all' => 'Înapoi la ',
|
||||
'cancel' => 'Anulează',
|
||||
'add_a_new' => 'Adaugă ',
|
||||
|
||||
// Edit form
|
||||
'edit' => 'Editează',
|
||||
'save' => 'Salvează',
|
||||
|
||||
// Translatable models
|
||||
'edit_translations' => 'EDITEAZĂ TRADUCERILE',
|
||||
'language' => 'Limbă',
|
||||
|
||||
// CRUD table view
|
||||
'all' => 'Toate ',
|
||||
'reset' => 'Resetează ',
|
||||
'in_the_database' => 'din baza de date',
|
||||
'list' => 'Listă',
|
||||
'actions' => 'Operațiuni',
|
||||
'preview' => 'Previzualizare',
|
||||
'delete' => 'Șterge',
|
||||
'admin' => 'Administrator',
|
||||
'details_row' => 'Acesta este rândul detalii. Modifică cum dorești',
|
||||
'details_row_loading_error' => 'A apărut o eroare la încărcarea detaliilor. Te rog să reîncerci.',
|
||||
|
||||
// Confirmation messages and bubbles
|
||||
'delete_confirm' => 'Ești sigur că vrei să ștergi această intrare?',
|
||||
'delete_confirmation_title' => 'Intrare ștearsă',
|
||||
'delete_confirmation_message' => 'Intrarea a fost ștearsă cu succes.',
|
||||
'delete_confirmation_not_title' => 'Eroare',
|
||||
'delete_confirmation_not_message' => 'A avut loc o eroare. E posibil ca intrarea să nu fi fost ștearsă.',
|
||||
'delete_confirmation_not_deleted_title' => 'Intrarea nu a fost ștearsă',
|
||||
'delete_confirmation_not_deleted_message' => 'Nu am șters intrarea din baza de date.',
|
||||
'ajax_error_title' => 'Eroare',
|
||||
'ajax_error_text' => 'Eroare la încărcarea paginii. Te rog să reîncarci pagina.',
|
||||
|
||||
// DataTables translation
|
||||
'emptyTable' => 'Nu există intrări în baza de date',
|
||||
'info' => 'Sunt afișate intrările _START_-_END_ din _TOTAL_',
|
||||
'infoEmpty' => '',
|
||||
'infoFiltered' => '(filtrate din totalul de _MAX_ )',
|
||||
'infoPostFix' => '.',
|
||||
'thousands' => ',',
|
||||
'lengthMenu' => '_MENU_ pe pagină',
|
||||
'loadingRecords' => 'Se încarcă...',
|
||||
'processing' => 'Se procesează...',
|
||||
'search' => 'Caută',
|
||||
'zeroRecords' => 'Nu au fost găsite intrări care să se potrivească',
|
||||
'paginate' => [
|
||||
'first' => 'Prima pagină',
|
||||
'last' => 'Ultima pagină',
|
||||
'next' => 'Pagina următoare',
|
||||
'previous' => 'Pagina anterioară',
|
||||
],
|
||||
'aria' => [
|
||||
'sortAscending' => ': activează pentru a ordona ascendent coloana',
|
||||
'sortDescending' => ': activează pentru a ordona descendent coloana',
|
||||
],
|
||||
'export' => [
|
||||
'pdf' => 'PDF',
|
||||
'print' => 'Imprimă',
|
||||
'column_visibility' => 'Vizibilitate coloane',
|
||||
'copy' => 'Copiere',
|
||||
'excel' => 'Fișier Excel',
|
||||
'csv' => 'Fișier CSV',
|
||||
],
|
||||
|
||||
// global crud - errors
|
||||
'unauthorized_access' => 'Acces neautorizat - Nu ai permisiunea necesară pentru a accesa pagina.',
|
||||
'please_fix' => 'Vă rugăm să reparați următoarele erori:',
|
||||
|
||||
// global crud - success / error notification bubbles
|
||||
'insert_success' => 'Intrarea a fost adăugată cu succes.',
|
||||
'update_success' => 'Intrarea a fost modificată cu succes.',
|
||||
|
||||
// CRUD reorder view
|
||||
'reorder' => 'Reordonare',
|
||||
'reorder_text' => 'Folosește drag&drop pentru a reordona.',
|
||||
'reorder_success_title' => 'Terminat',
|
||||
'reorder_success_message' => 'Ordinea a fost salvată.',
|
||||
'reorder_error_title' => 'Eroare',
|
||||
'reorder_error_message' => 'Ordinea nu a fost salvată.',
|
||||
|
||||
// CRUD yes/no
|
||||
'yes' => 'Da',
|
||||
'no' => 'Nu',
|
||||
|
||||
// CRUD filters navbar view
|
||||
'filters' => 'Filtre',
|
||||
'toggle_filters' => 'Comutare filtre',
|
||||
'remove_filters' => 'Anulează filtre',
|
||||
|
||||
// Fields
|
||||
'browse_uploads' => 'Alege din fișierele urcate',
|
||||
'select_all' => 'Selectează tot',
|
||||
'clear' => 'Curăță',
|
||||
'page_link' => 'Link către pagină',
|
||||
'page_link_placeholder' => 'http://example.com/pagina-dorita-de-tine',
|
||||
'internal_link' => 'Link intern',
|
||||
'internal_link_placeholder' => 'Rută internă. De ex: \'admin/page\' (fără ghilimele) pentru \':url\'',
|
||||
'external_link' => 'Link extern',
|
||||
'choose_file' => 'Alege fișier',
|
||||
|
||||
//Table field
|
||||
'table_cant_add' => 'Nu pot adăuga o nouă :entity',
|
||||
'table_max_reached' => 'Numărul maxim :max a fost atins',
|
||||
|
||||
// File manager
|
||||
'file_manager' => 'Manager fișiere',
|
||||
];
|
16
lang/vendor/backpack/ro/langfilemanager.php
vendored
Normal file
16
lang/vendor/backpack/ro/langfilemanager.php
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
// --------------------------------------------------------
|
||||
// This is only a pointer file, not an actual language file
|
||||
// --------------------------------------------------------
|
||||
//
|
||||
// If you've copied this file to your /resources/lang/vendor/backpack/
|
||||
// folder, please delete it, it's no use there. You need to copy/publish the
|
||||
// actual language file, from the package.
|
||||
|
||||
// If a langfile with the same name exists in the package, load that one
|
||||
if (file_exists(__DIR__.'/../../../../../langfilemanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
|
||||
return include __DIR__.'/../../../../../langfilemanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
|
||||
}
|
||||
|
||||
return [];
|
16
lang/vendor/backpack/ro/logmanager.php
vendored
Normal file
16
lang/vendor/backpack/ro/logmanager.php
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
// --------------------------------------------------------
|
||||
// This is only a pointer file, not an actual language file
|
||||
// --------------------------------------------------------
|
||||
//
|
||||
// If you've copied this file to your /resources/lang/vendor/backpack/
|
||||
// folder, please delete it, it's no use there. You need to copy/publish the
|
||||
// actual language file, from the package.
|
||||
|
||||
// If a langfile with the same name exists in the package, load that one
|
||||
if (file_exists(__DIR__.'/../../../../../logmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
|
||||
return include __DIR__.'/../../../../../logmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
|
||||
}
|
||||
|
||||
return [];
|
16
lang/vendor/backpack/ro/pagemanager.php
vendored
Normal file
16
lang/vendor/backpack/ro/pagemanager.php
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
// --------------------------------------------------------
|
||||
// This is only a pointer file, not an actual language file
|
||||
// --------------------------------------------------------
|
||||
//
|
||||
// If you've copied this file to your /resources/lang/vendor/backpack/
|
||||
// folder, please delete it, it's no use there. You need to copy/publish the
|
||||
// actual language file, from the package.
|
||||
|
||||
// If a langfile with the same name exists in the package, load that one
|
||||
if (file_exists(__DIR__.'/../../../../../pagemanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
|
||||
return include __DIR__.'/../../../../../pagemanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
|
||||
}
|
||||
|
||||
return [];
|
16
lang/vendor/backpack/ro/permissionmanager.php
vendored
Normal file
16
lang/vendor/backpack/ro/permissionmanager.php
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
// --------------------------------------------------------
|
||||
// This is only a pointer file, not an actual language file
|
||||
// --------------------------------------------------------
|
||||
//
|
||||
// If you've copied this file to your /resources/lang/vendor/backpack/
|
||||
// folder, please delete it, it's no use there. You need to copy/publish the
|
||||
// actual language file, from the package.
|
||||
|
||||
// If a langfile with the same name exists in the package, load that one
|
||||
if (file_exists(__DIR__.'/../../../../../permissionmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
|
||||
return include __DIR__.'/../../../../../permissionmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
|
||||
}
|
||||
|
||||
return [];
|
16
lang/vendor/backpack/ro/settings.php
vendored
Normal file
16
lang/vendor/backpack/ro/settings.php
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
// --------------------------------------------------------
|
||||
// This is only a pointer file, not an actual language file
|
||||
// --------------------------------------------------------
|
||||
//
|
||||
// If you've copied this file to your /resources/lang/vendor/backpack/
|
||||
// folder, please delete it, it's no use there. You need to copy/publish the
|
||||
// actual language file, from the package.
|
||||
|
||||
// If a langfile with the same name exists in the package, load that one
|
||||
if (file_exists(__DIR__.'/../../../../../settings/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
|
||||
return include __DIR__.'/../../../../../settings/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
|
||||
}
|
||||
|
||||
return [];
|
Reference in New Issue
Block a user