Skip to content

Commit 8a851d4

Browse files
authored
Merge pull request #4508 from profe-pep/profe-pep-catalan
2 parents 883d97c + a4357fe commit 8a851d4

File tree

8 files changed

+346
-0
lines changed

8 files changed

+346
-0
lines changed

src/resources/lang/ca/backup.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
3+
// --------------------------------------------------------
4+
// This is only a pointer file, not an actual language file
5+
// --------------------------------------------------------
6+
//
7+
// If you've copied this file to your /resources/lang/vendor/backpack/
8+
// folder, please delete it, it's no use there. You need to copy/publish the
9+
// actual language file, from the package.
10+
11+
// If a langfile with the same name exists in the package, load that one
12+
if (file_exists(__DIR__.'/../../../../../backupmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
13+
return include __DIR__.'/../../../../../backupmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
14+
}
15+
16+
return [];

src/resources/lang/ca/base.php

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
<?php
2+
3+
return [
4+
5+
/*
6+
|--------------------------------------------------------------------------
7+
| Backpack\Base Language Lines
8+
|--------------------------------------------------------------------------
9+
*/
10+
11+
'registration_closed' => 'El registre d\'usuari(e)s està tancat.',
12+
'no_email_column' => 'Els i les usuàries no tenen una adreça de correu electrònic associada.',
13+
'first_page_you_see' => 'La pàgina que veus després d\'iniciar sessió',
14+
'login_status' => 'Estat de la connexió',
15+
'logged_in' => '¡Vostè ha iniciat sessió!',
16+
'toggle_navigation' => 'Activar/desactivar la navegació',
17+
'administration' => 'ADMINISTRACIÓ',
18+
'user' => 'USUARI/A',
19+
'logout' => 'Sortir',
20+
'login' => 'Iniciar sessió',
21+
'register' => 'Crear usuari/a',
22+
'name' => 'Nom',
23+
'email_address' => 'Correu',
24+
'password' => 'Contrasenya',
25+
'old_password' => 'Contrasenya anterior',
26+
'new_password' => 'Contrasenya nueva',
27+
'confirm_password' => 'Confirmar contrasenya',
28+
'remember_me' => 'Recordar contrasenya',
29+
'forgot_your_password' => 'Ha oblidat la seva contrasenya?',
30+
'reset_password' => 'Restaurar contrasenya',
31+
'send_reset_link' => 'Enviar enllaç per restaurar la contrasenya',
32+
'click_here_to_reset' => 'Click aquí per restaurar la contrasenya',
33+
'change_password' => 'Modificar contrasenya',
34+
'unauthorized' => 'No autorizat.',
35+
'dashboard' => 'Panell',
36+
'handcrafted_by' => 'Realitzat per',
37+
'powered_by' => 'Creat amb',
38+
'my_account' => 'El meu compte',
39+
'update_account_info' => 'Actualitzar informació del compte',
40+
'save' => 'Desar',
41+
'cancel' => 'Cancel·lar',
42+
'error' => 'Error',
43+
'success' => 'Exitós',
44+
'warning' => 'Advertència',
45+
'notice' => 'Avís',
46+
'old_password_incorrect' => 'Contrasenya antiga incorrecta.',
47+
'password_dont_match' => 'Les contrasenyes no coincideixen.',
48+
'password_empty' => 'Asseguris que ambdós camps de contrasenya estan complets.',
49+
'password_updated' => 'Contrasenya actualizada.',
50+
'account_updated' => 'Compte actualizat correctament.',
51+
'unknown_error' => 'Ha ocurregut un error. Si us plau, torni a intentar-ho.',
52+
'error_saving' => 'Error desant dades. Si us plau, torni a intentar-ho.',
53+
'welcome' => '¡Benvingut!',
54+
'use_sidebar' => 'Utilitzi la barra lateral a l\'esquerra per crear, editar o eliminar contingut.',
55+
56+
'password_reset' => [
57+
'greeting' => '¡Hola!',
58+
'subject' => 'Notificació restabliment de contrasenya',
59+
'line_1' => 'Ha rebut aquest correu electrònic perquè vam rebre una sol·licitud de restabliment de contrasenya pel seu compte.',
60+
'line_2' => 'Faci clic al botó següent per restablir la seva contrasenya:',
61+
'button' => 'Restablir contrasenya',
62+
'notice' => 'Si no ha sol·licitat un restabliment de contrasenya, no es requereix cap acció addicional.',
63+
],
64+
65+
'step' => 'Pas',
66+
'confirm_email' => 'Confirmar correo electrònic',
67+
'choose_new_password' => 'Escollir nova contrasenya',
68+
'confirm_new_password' => 'Confirmar nova contrasenya',
69+
70+
];

src/resources/lang/ca/crud.php

Lines changed: 180 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,180 @@
1+
<?php
2+
3+
return [
4+
5+
/*
6+
|--------------------------------------------------------------------------
7+
| Backpack Crud Language Lines
8+
|--------------------------------------------------------------------------
9+
|
10+
| The following language lines are used by the CRUD interface.
11+
| You are free to change them to anything
12+
| you want to customize your views to better match your application.
13+
|
14+
*/
15+
16+
// Forms
17+
'save_action_save_and_new' => 'Desar i crear nou',
18+
'save_action_save_and_edit' => 'Desar i continuar editant',
19+
'save_action_save_and_back' => 'Desar i tornar',
20+
'save_action_save_and_preview' => 'Desar i vista prèvia',
21+
'save_action_changed_notification' => 'L\'acció por defecte del botó desar ha sigut modificada.',
22+
23+
// Create form
24+
'add' => 'Afegir',
25+
'back_to_all' => 'Tornar al llistat de',
26+
'cancel' => 'Cancel·lar',
27+
'add_a_new' => 'Afegir ',
28+
29+
// Edit form
30+
'edit' => 'Editar',
31+
'save' => 'Desar',
32+
33+
// Translatable models
34+
'edit_translations' => 'EDITAR TRADUCCIONS',
35+
'language' => 'Idioma',
36+
37+
// CRUD table view
38+
'all' => 'Tots els registres de ',
39+
'in_the_database' => 'a la base de dades',
40+
'list' => 'Llistar',
41+
'reset' => 'Reiniciar',
42+
'actions' => 'Accions',
43+
'preview' => 'Vista prèvia',
44+
'delete' => 'Eliminar',
45+
'admin' => 'Admin',
46+
'details_row' => 'Aquesta és la fila de detalls. Modificar segons conveniència.',
47+
'details_row_loading_error' => 'S\'ha produït un error durant la càrrega de dades. Si us plau, intenti-ho de nou.',
48+
'clone' => 'Clonar',
49+
'clone_success' => '<strong>Element clonat</strong><br>S\'ha creat un nou element amb la mateixa información que aquest.',
50+
'clone_failure' => '<strong>La clonació ha fallat</strong><br>No s\'ha pogut crear el nou element. Intenti-ho de nou.',
51+
52+
// Confirmation messages and bubbles
53+
'delete_confirm' => 'Està segur que desitja eliminar aquest element?',
54+
'delete_confirmation_title' => 'Element eliminat',
55+
'delete_confirmation_message' => 'L\'element ha sigut eliminat de manera correcta.',
56+
'delete_confirmation_not_title' => 'No s\'ha pogut eliminar',
57+
'delete_confirmation_not_message' => 'Ha ocurregut un error. És probable que l\'element no s\'hagi eliminat.',
58+
'delete_confirmation_not_deleted_title' => 'No s\'ha pogut eliminar',
59+
'delete_confirmation_not_deleted_message' => 'No ha ocurregut res. El seu element està segur.',
60+
61+
// Bulk actions
62+
'bulk_no_entries_selected_title' => 'No hi ha registres seleccionats',
63+
'bulk_no_entries_selected_message' => 'Seleccioni un o més registres on aplicar l\'operació',
64+
65+
// Bulk delete
66+
'bulk_delete_are_you_sure' => 'Està segur que desitja eliminar :number registre/s?',
67+
'bulk_delete_sucess_title' => 'Registres eliminats',
68+
'bulk_delete_sucess_message' => ' els registres han sigut eliminats',
69+
'bulk_delete_error_title' => 'Registres no eliminats',
70+
'bulk_delete_error_message' => 'No s\'han pogut eliminar un o més registres',
71+
72+
// Bulk clone
73+
'bulk_clone_are_you_sure' => 'Està segur que desitja clonar :number registre/s?',
74+
'bulk_clone_sucess_title' => 'Registres clonats',
75+
'bulk_clone_sucess_message' => ' registres han sigut clonats.',
76+
'bulk_clone_error_title' => 'Registres no clonats',
77+
'bulk_clone_error_message' => 'No s\'han pogut crear una o més entrades. Intenti-ho de nou.',
78+
79+
// Ajax errors
80+
'ajax_error_title' => 'Error',
81+
'ajax_error_text' => 'Error de càrrega de la pàgina. Si us plau, torni a carregar la pàgina.',
82+
83+
// DataTables translation
84+
'emptyTable' => 'No hi ha dades disponibles a la taula',
85+
'info' => 'Mostrant registres _START_ a _END_ d\'un total de _TOTAL_ registres',
86+
'infoEmpty' => '',
87+
'infoFiltered' => '(filtrant de _MAX_ registres totals)',
88+
'infoPostFix' => '.',
89+
'thousands' => ',',
90+
'lengthMenu' => '_MENU_ elements per pàgina',
91+
'loadingRecords' => 'Carregant...',
92+
'processing' => 'Processant...',
93+
'search' => 'Cercar',
94+
'zeroRecords' => 'No s\'han trobat elements',
95+
'paginate' => [
96+
'first' => 'Primer',
97+
'last' => 'Últim',
98+
'next' => 'Següent',
99+
'previous' => 'Anterior',
100+
],
101+
'aria' => [
102+
'sortAscending' => ': activar per ordenar ascendentement',
103+
'sortDescending' => ': activar per ordenar descendentement',
104+
],
105+
'export' => [
106+
'export' => 'Exportar',
107+
'copy' => 'Copiar',
108+
'excel' => 'Excel',
109+
'csv' => 'CSV',
110+
'pdf' => 'PDF',
111+
'print' => 'Imprimir',
112+
'column_visibility' => 'Visibilitat de columnes',
113+
],
114+
115+
// global crud - errors
116+
'unauthorized_access' => 'Accés denegat - vostè no té els permisos necessaris per veure aquesta pàgina.',
117+
'please_fix' => 'Si us plau, corregeixi els següents errors:',
118+
119+
// global crud - success / error notification bubbles
120+
'insert_success' => 'L\'element ha sigut afegit correctament.',
121+
'update_success' => 'L\'element ha sigut modificat correctament.',
122+
123+
// CRUD reorder view
124+
'reorder' => 'Reordenar',
125+
'reorder_text' => 'Arrossegar i deixar anar per reordenar.',
126+
'reorder_success_title' => 'Fet',
127+
'reorder_success_message' => 'L\'ordre ha sigut desat.',
128+
'reorder_error_title' => 'Error',
129+
'reorder_error_message' => 'L\'ordre no s\'ha desat.',
130+
131+
// CRUD yes/no
132+
'yes' => '',
133+
'no' => 'No',
134+
135+
// CRUD filters navbar view
136+
'filters' => 'Filtres',
137+
'toggle_filters' => 'Alternar filtres',
138+
'remove_filters' => 'Eliminar filtres',
139+
'apply' => 'Aplicar',
140+
141+
// filters language strings
142+
'today' => 'Avui',
143+
'yesterday' => 'Ahir',
144+
'last_7_days' => 'Darrers 7 dies',
145+
'last_30_days' => 'Darrers 30 dies',
146+
'this_month' => 'Aquest mes',
147+
'last_month' => 'El mes pasat',
148+
'custom_range' => 'Rang personalitzat',
149+
'weekLabel' => 'Setmana',
150+
151+
// Fields
152+
'browse_uploads' => 'Pujar arxius',
153+
'select_all' => 'Seleccionar tot',
154+
'select_files' => 'Selecciona arxius',
155+
'select_file' => 'Selecciona un arxiu',
156+
'clear' => 'Netejar',
157+
'page_link' => 'Enllaç',
158+
'page_link_placeholder' => 'http://example.com/la-seva-pagina',
159+
'internal_link' => 'Enllaç intern',
160+
'internal_link_placeholder' => 'Slug intern. Exemple: \'admin/page\' (sense cometes) per \':url\'',
161+
'external_link' => 'Enllaç extern',
162+
'choose_file' => 'Triar arxiu',
163+
'new_item' => 'nou element',
164+
'select_entry' => 'Selecciona un element',
165+
'select_entries' => 'Selecciona elements',
166+
167+
// Table field
168+
'table_cant_add' => 'No es pot afegir una nova :entity',
169+
'table_max_reached' => 'El nombre màxim de :max aconseguit',
170+
171+
// File manager
172+
'file_manager' => 'Administrador d\'arxius',
173+
174+
// InlineCreateOperation
175+
'related_entry_created_success' => 'L\'element relacionat ha sigut creat i seleccionat.',
176+
'related_entry_created_error' => 'No es pot crear elements relacionats.',
177+
178+
// returned when no translations found in select inputs
179+
'empty_translations' => '(buit)',
180+
];
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
3+
// --------------------------------------------------------
4+
// This is only a pointer file, not an actual language file
5+
// --------------------------------------------------------
6+
//
7+
// If you've copied this file to your /resources/lang/vendor/backpack/
8+
// folder, please delete it, it's no use there. You need to copy/publish the
9+
// actual language file, from the package.
10+
11+
// If a langfile with the same name exists in the package, load that one
12+
if (file_exists(__DIR__.'/../../../../../langfilemanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
13+
return include __DIR__.'/../../../../../langfilemanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
14+
}
15+
16+
return [];
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
3+
// --------------------------------------------------------
4+
// This is only a pointer file, not an actual language file
5+
// --------------------------------------------------------
6+
//
7+
// If you've copied this file to your /resources/lang/vendor/backpack/
8+
// folder, please delete it, it's no use there. You need to copy/publish the
9+
// actual language file, from the package.
10+
11+
// If a langfile with the same name exists in the package, load that one
12+
if (file_exists(__DIR__.'/../../../../../logmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
13+
return include __DIR__.'/../../../../../logmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
14+
}
15+
16+
return [];
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
3+
// --------------------------------------------------------
4+
// This is only a pointer file, not an actual language file
5+
// --------------------------------------------------------
6+
//
7+
// If you've copied this file to your /resources/lang/vendor/backpack/
8+
// folder, please delete it, it's no use there. You need to copy/publish the
9+
// actual language file, from the package.
10+
11+
// If a langfile with the same name exists in the package, load that one
12+
if (file_exists(__DIR__.'/../../../../../pagemanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
13+
return include __DIR__.'/../../../../../pagemanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
14+
}
15+
16+
return [];
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
3+
// --------------------------------------------------------
4+
// This is only a pointer file, not an actual language file
5+
// --------------------------------------------------------
6+
//
7+
// If you've copied this file to your /resources/lang/vendor/backpack/
8+
// folder, please delete it, it's no use there. You need to copy/publish the
9+
// actual language file, from the package.
10+
11+
// If a langfile with the same name exists in the package, load that one
12+
if (file_exists(__DIR__.'/../../../../../permissionmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
13+
return include __DIR__.'/../../../../../permissionmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
14+
}
15+
16+
return [];

src/resources/lang/ca/settings.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
3+
// --------------------------------------------------------
4+
// This is only a pointer file, not an actual language file
5+
// --------------------------------------------------------
6+
//
7+
// If you've copied this file to your /resources/lang/vendor/backpack/
8+
// folder, please delete it, it's no use there. You need to copy/publish the
9+
// actual language file, from the package.
10+
11+
// If a langfile with the same name exists in the package, load that one
12+
if (file_exists(__DIR__.'/../../../../../settings/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
13+
return include __DIR__.'/../../../../../settings/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
14+
}
15+
16+
return [];

0 commit comments

Comments
 (0)