-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
30 additions
and
29 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 |
---|---|---|
@@ -1,44 +1,45 @@ | ||
<?php | ||
|
||
return [ | ||
'pages' => 'Pages', | ||
'create page' => 'Create a page', | ||
'edit page' => 'Edit a page', | ||
'name' => 'Name', | ||
'pages' => 'Páginas', | ||
'create page' => 'Crear una página', | ||
'edit page' => 'Editar una página', | ||
'name' => 'Nombre', | ||
|
||
'slug' => 'Slug', | ||
'title' => 'Title', | ||
'slug' => 'URL amigable', | ||
'title' => 'Título', | ||
|
||
'meta_data' => 'Meta data', | ||
'meta_title' => 'Meta title', | ||
'meta_description' => 'Meta description', | ||
'facebook_data' => 'Facebook data', | ||
'og_title' => 'Facebook title', | ||
'og_description' => 'Facebook description', | ||
'og_type' => 'Facebook type', | ||
'template' => 'Page template name', | ||
'is homepage' => 'Homepage ?', | ||
'body' => 'Body', | ||
'meta_data' => 'Datos de Meta', | ||
'meta_title' => 'Título para el Meta', | ||
'meta_description' => 'Descripción para el Meta', | ||
'facebook_data' => 'Datos de Facebook', | ||
'og_title' => 'Título para Facebook', | ||
'og_description' => 'Descripción para Facebook', | ||
'og_type' => 'Tipo Facebook', | ||
'template' => 'Nombre de la plantilla de la página', | ||
'is homepage' => '¿Es la Página principal?', | ||
'body' => 'Cuerpo', | ||
'status' => 'Status', | ||
'pages were updated' => 'Pages were updated', | ||
'pages were updated' => 'Las Páginas fueron actualizadas', | ||
|
||
'back to index' => 'Go back to the pages index', | ||
'list resource' => 'List pages', | ||
'create resource' => 'Create pages', | ||
'edit resource' => 'Edit pages', | ||
'destroy resource' => 'Delete pages', | ||
'back to index' => 'Volver a la lista de páginas', | ||
'list resource' => 'Lista páginas', | ||
'create resource' => 'Crear páginas', | ||
'edit resource' => 'Editar páginas', | ||
'destroy resource' => 'Eliminar páginas', | ||
|
||
'view-page' => 'View page', | ||
'edit-page' => 'Edit page', | ||
'view-page' => 'Ver página', | ||
'edit-page' => 'Editar página', | ||
'validation' => [ | ||
'attributes' => [ | ||
'title' => 'title', | ||
'body' => 'body', | ||
'title' => 'Título', | ||
'body' => 'Cuerpo', | ||
], | ||
], | ||
'facebook-types' => [ | ||
'website' => 'Website', | ||
'product' => 'Product', | ||
'article' => 'Article', | ||
'website' => 'Página web', | ||
'product' => 'Producto', | ||
'article' => 'Artículo', | ||
], | ||
|
||
]; |