-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from Turaylon/feature/adding-italian-language
Added italian traslation files
- Loading branch information
Showing
2 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
return [ | ||
'page created' => 'Pagina creata con successo.', | ||
'page not found' => 'Pagina non trovata.', | ||
'page updated' => 'Pagina modificata con successo.', | ||
'page deleted' => 'Pagina eliminata con successo.', | ||
|
||
'template is required' => 'Il nome del template è richiesto.', | ||
'title is required' => 'Il titolo è richiesto.', | ||
'body is required' => 'Il corpo è richiesto.', | ||
'only one homepage allowed' => 'Solo una homepage è consentita', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?php | ||
|
||
return [ | ||
'title' => [ | ||
'pages' => 'Pagine', | ||
'create page' => 'Crea una pagina', | ||
'edit page' => 'Modifica una pagina', | ||
], | ||
'button' => [ | ||
'create page' => 'Crea pagina', | ||
], | ||
'table' => [ | ||
'name' => 'Nome', | ||
'slug' => 'Slug', | ||
], | ||
'form' => [ | ||
'title' => 'Titolo', | ||
'slug' => 'Slug', | ||
'meta_title' => 'Meta titolo', | ||
'meta_description' => 'Meta descrizione', | ||
'og_title' => 'Facebook titolo', | ||
'og_description' => 'Facebook descrizione', | ||
'og_type' => 'Facebook tipo', | ||
'template' => 'Nome template pagina', | ||
'is homepage' => 'Homepage ?', | ||
'body' => 'Corpo', | ||
], | ||
'validation' => [ | ||
'attributes' => [ | ||
'title' => 'titolo', | ||
'body' => 'corpo', | ||
], | ||
], | ||
'facebook-types' => [ | ||
'website' => 'Website', | ||
'product' => 'Prodotto', | ||
'article' => 'Articolo', | ||
], | ||
'navigation' => [ | ||
'back to index' => 'Torna all\' indice delle pagine' | ||
] | ||
]; |