-
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
1 parent
66bfccb
commit f6c9429
Showing
2 changed files
with
58 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,14 @@ | ||
<?php | ||
|
||
return [ | ||
'page created' => 'Az oldal sikeresen létrehozva.', | ||
'page not found' => 'Az oldal nem található.', | ||
'page updated' => 'Az oldal sikeresen frissítve.', | ||
'page deleted' => 'Az oldal sikeresen törölve.', | ||
|
||
'template is required' => 'A salbon neve kötelező.', | ||
'title is required' => 'A cím kitöltése kötelező.', | ||
'slug is required' => 'A slug kitöltése kötelező.', | ||
'body is required' => 'Az oldal törzs kitöltése kötelező.', | ||
'only one homepage allowed' => 'Egyszerre csak egy kezdőlap lehet.', | ||
]; |
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,44 @@ | ||
<?php | ||
|
||
return [ | ||
'pages' => 'Oldalak', | ||
'create page' => 'Oldal létrehozása', | ||
'edit page' => 'Oldal szerkesztése', | ||
'name' => 'Név', | ||
|
||
'slug' => 'Slug', | ||
'title' => 'Cím', | ||
|
||
'meta_data' => 'Meta adatok', | ||
'meta_title' => 'Meta cím', | ||
'meta_description' => 'Meta leírás', | ||
'facebook_data' => 'Facebook adatok', | ||
'og_title' => 'Facebook cím', | ||
'og_description' => 'Facebook leírás', | ||
'og_type' => 'Facebook típus', | ||
'template' => 'Oldal sablon', | ||
'is homepage' => 'Kezdőlap?', | ||
'body' => 'Oldal törzs', | ||
'status' => 'Státusz', | ||
'pages were updated' => 'Az oldalak frissítve', | ||
|
||
'back to index' => 'Vissza az oldalakhoz', | ||
'list resource' => 'Oldalak listázása', | ||
'create resource' => 'Oldal létrehozása', | ||
'edit resource' => 'Oldal szerkesztése', | ||
'destroy resource' => 'Oldal törlése', | ||
|
||
'view-page' => 'Oldal megtekintése', | ||
'edit-page' => 'Oldal szerkesztése', | ||
'validation' => [ | ||
'attributes' => [ | ||
'title' => 'cím', | ||
'body' => 'oldal törzs', | ||
], | ||
], | ||
'facebook-types' => [ | ||
'website' => 'Weboldal', | ||
'product' => 'Temék', | ||
'article' => 'Cikk', | ||
], | ||
]; |