pages.php 854 Bytes
Newer Older
1 2 3
<?php

return [
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
    'pages' => 'Seiten',
    'create page' => 'Seite erstellen',
    'edit page' => 'Bearbeiten einer Seite',
    'name' => 'Name',
    'slug' => 'Slug',
    'title' => 'Titel',
    'slug' => 'Slug',
    'meta_title' => 'Meta-Titel',
    'meta_description' => 'Meta Beschreibung',
    'og_title' => 'Facebook Titel',
    'og_description' => 'Facebook Beschreibung',
    'og_type' => 'Facebook typ',
    'template' => 'Seitenvorlage',
    'is homepage' => 'Startseite?',
    'body' => 'Inhalt',
19 20 21 22 23 24 25 26 27 28 29
    'validation' => [
        'attributes' => [
            'title' => 'titel',
            'body' => 'inhalt',
        ],
    ],
    'facebook-types' => [
        'website' => 'Website',
        'product' => 'Produkt',
        'article' => 'Artikel',
    ],
30 31 32
    'navigation' => [
        'back to index' => 'Zurück zur Übersicht',
    ],
33
];