mep template

This commit is contained in:
2018-08-02 14:46:36 +02:00
parent dfc21db8bc
commit e4b4bbdb09
68 changed files with 643 additions and 1020 deletions
+41 -2
View File
@@ -1,8 +1,8 @@
<?php
return [
'@class' => 'Grav\\Common\\Config\\CompiledBlueprints',
'timestamp' => 1533136703,
'checksum' => '8adcdeef63232c2546b4b3b573a22ad6',
'timestamp' => 1533212898,
'checksum' => '4dcee84bfe33cf4c48e8f8ff29b374b7',
'files' => [
'user/plugins/admin/blueprints/config' => [
'media' => [
@@ -53,6 +53,10 @@ return [
'file' => 'user/plugins/email/blueprints.yaml',
'modified' => 1533014916
],
'plugins/taxonomylist' => [
'file' => 'user/plugins/taxonomylist/blueprints.yaml',
'modified' => 1533212893
],
'plugins/problems' => [
'file' => 'user/plugins/problems/blueprints.yaml',
'modified' => 1533014916
@@ -3287,6 +3291,37 @@ return [
'name' => 'plugins.email.debug',
'validation' => 'loose'
],
'plugins.taxonomylist' => [
'type' => '_root',
'form_field' => false,
'form' => [
'validation' => 'strict'
]
],
'plugins.taxonomylist.enabled' => [
'type' => 'toggle',
'label' => 'Plugin status',
'highlight' => 1,
'default' => 0,
'options' => [
1 => 'Enabled',
0 => 'Disabled'
],
'validate' => [
'type' => 'bool'
],
'name' => 'plugins.taxonomylist.enabled',
'validation' => 'strict'
],
'plugins.taxonomylist.route' => [
'type' => 'text',
'label' => 'Route to blog',
'validate' => [
'pattern' => '/([a-z\\-_]+/?)+'
],
'name' => 'plugins.taxonomylist.route',
'validation' => 'strict'
],
'plugins.problems' => [
'type' => '_root',
'form_field' => false,
@@ -3692,6 +3727,10 @@ return [
'body' => 'plugins.email.body',
'debug' => 'plugins.email.debug'
],
'taxonomylist' => [
'enabled' => 'plugins.taxonomylist.enabled',
'route' => 'plugins.taxonomylist.route'
],
'problems' => [
'enabled' => 'plugins.problems.enabled',
'built_in_css' => 'plugins.problems.built_in_css'
+16 -4
View File
@@ -1,14 +1,18 @@
<?php
return [
'@class' => 'Grav\\Common\\Config\\CompiledConfig',
'timestamp' => 1533136703,
'checksum' => 'd2d3a9845188fdd4768c33d77874d32b',
'timestamp' => 1533212898,
'checksum' => 'c81a8b8a807087534f87e6d61103fb33',
'files' => [
'user/config' => [
'media' => [
'file' => 'user/config/media.yaml',
'modified' => 1533133695
],
'plugins/taxonomylist' => [
'file' => 'user/config/plugins/taxonomylist.yaml',
'modified' => 1533212898
],
'security' => [
'file' => 'user/config/security.yaml',
'modified' => 1533133695
@@ -23,7 +27,7 @@ return [
],
'system' => [
'file' => 'user/config/system.yaml',
'modified' => 1533136703
'modified' => 1533208003
]
],
'system/config' => [
@@ -69,6 +73,10 @@ return [
'file' => 'user/plugins/email/email.yaml',
'modified' => 1533014916
],
'plugins/taxonomylist' => [
'file' => 'user/plugins/taxonomylist/taxonomylist.yaml',
'modified' => 1533212893
],
'plugins/problems' => [
'file' => 'user/plugins/problems/problems.yaml',
'modified' => 1533014916
@@ -247,6 +255,10 @@ return [
'content_type' => 'text/html',
'debug' => false
],
'taxonomylist' => [
'enabled' => true,
'route' => '/blog'
],
'problems' => [
'enabled' => true,
'built_in_css' => true
@@ -592,7 +604,7 @@ return [
'override_locale' => false
],
'home' => [
'alias' => '/home',
'alias' => '/projets',
'hide_in_urls' => false
],
'pages' => [
@@ -0,0 +1,48 @@
<?php
return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/mnt/data/Sites/hehe.net/user/plugins/taxonomylist/blueprints.yaml',
'modified' => 1533212893,
'data' => [
'name' => 'Taxonomy List',
'version' => '1.3.2',
'description' => 'With the **TaxonomyList plugin** you can easily create list of **taxonomy** items such as **tags**, **categories**, etc.',
'icon' => 'tag',
'author' => [
'name' => 'Team Grav',
'email' => 'devs@getgrav.org',
'url' => 'http://getgrav.org'
],
'homepage' => 'https://github.com/getgrav/grav-plugin-taxonomylist',
'demo' => 'http://demo.getgrav.org/blog-skeleton',
'keywords' => 'taxonomylist, plugin, taxonomy, list, tags, categories',
'bugs' => 'https://github.com/getgrav/grav-plugin-taxonomylist/issues',
'license' => 'MIT',
'form' => [
'validation' => 'strict',
'fields' => [
'enabled' => [
'type' => 'toggle',
'label' => 'Plugin status',
'highlight' => 1,
'default' => 0,
'options' => [
1 => 'Enabled',
0 => 'Disabled'
],
'validate' => [
'type' => 'bool'
]
],
'route' => [
'type' => 'text',
'label' => 'Route to blog',
'placeholder' => '/blog',
'validate' => [
'pattern' => '/([a-z\\-_]+/?)+'
]
]
]
]
]
];
@@ -2,7 +2,7 @@
return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/mnt/data/Sites/hehe.net/user/config/system.yaml',
'modified' => 1533134392,
'modified' => 1533208003,
'data' => [
'absolute_urls' => false,
'param_sep' => ':',
@@ -22,11 +22,11 @@ return [
'override_locale' => false
],
'home' => [
'alias' => '/home',
'alias' => '/projets',
'hide_in_urls' => false
],
'pages' => [
'theme' => 'quark',
'theme' => 'hehe',
'order' => [
'by' => 'default',
'dir' => 'asc'
@@ -1,126 +0,0 @@
<?php
return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/mnt/data/Sites/hehe.net/user/plugins/admin/blueprints/admin/pages/raw.yaml',
'modified' => 1533014916,
'data' => [
'rules' => [
'slug' => [
'pattern' => '[a-zA-Zа-яA-Я0-9_\\-]+',
'min' => 1,
'max' => 200
]
],
'form' => [
'validation' => 'loose',
'fields' => [
'tabs' => [
'type' => 'tabs',
'active' => 1,
'fields' => [
'content' => [
'type' => 'tab',
'title' => 'PLUGIN_ADMIN.CONTENT',
'fields' => [
'frontmatter' => [
'classes' => 'frontmatter',
'type' => 'editor',
'label' => 'PLUGIN_ADMIN.FRONTMATTER',
'autofocus' => true,
'codemirror' => [
'mode' => 'yaml',
'indentUnit' => 4,
'autofocus' => true,
'indentWithTabs' => false,
'lineNumbers' => true,
'styleActiveLine' => true,
'gutters' => [
0 => 'CodeMirror-lint-markers'
],
'lint' => true
]
],
'content' => [
'type' => 'markdown'
],
'header.media_order' => [
'type' => 'pagemedia',
'label' => 'PLUGIN_ADMIN.PAGE_MEDIA'
]
]
],
'options' => [
'type' => 'tab',
'title' => 'PLUGIN_ADMIN.OPTIONS',
'fields' => [
'columns' => [
'type' => 'columns',
'fields' => [
'column1' => [
'type' => 'column',
'fields' => [
'ordering' => [
'type' => 'toggle',
'label' => 'PLUGIN_ADMIN.FOLDER_NUMERIC_PREFIX',
'help' => 'PLUGIN_ADMIN.FOLDER_NUMERIC_PREFIX_HELP',
'highlight' => 1,
'options' => [
1 => 'PLUGIN_ADMIN.ENABLED',
0 => 'PLUGIN_ADMIN.DISABLED'
],
'validate' => [
'type' => 'bool'
]
],
'folder' => [
'type' => 'text',
'label' => 'PLUGIN_ADMIN.FOLDER_NAME',
'help' => 'PLUGIN_ADMIN.FOLDER_NAME_HELP',
'validate' => [
'rule' => 'slug',
'required' => true
]
],
'route' => [
'type' => 'parents',
'label' => 'PLUGIN_ADMIN.PARENT',
'classes' => 'fancy',
'validate' => [
'required' => true
]
],
'name' => [
'type' => 'select',
'classes' => 'fancy',
'label' => 'PLUGIN_ADMIN.DISPLAY_TEMPLATE',
'help' => 'PLUGIN_ADMIN.DISPLAY_TEMPLATE_HELP',
'default' => 'default',
'data-options@' => '\\Grav\\Plugin\\AdminPlugin::pagesTypes',
'validate' => [
'required' => true
]
]
]
],
'column2' => [
'type' => 'column',
'fields' => [
'order' => [
'type' => 'order',
'label' => 'PLUGIN_ADMIN.ORDERING'
]
]
]
]
],
'blueprint' => [
'type' => 'blueprint'
]
]
]
]
]
]
]
]
];
@@ -0,0 +1,9 @@
<?php
return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/mnt/data/Sites/hehe.net/user/data/licenses.yaml',
'modified' => 1533212888,
'data' => [
]
];
@@ -1,139 +0,0 @@
<?php
return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/mnt/data/Sites/hehe.net/system/blueprints/user/account.yaml',
'modified' => 1533014916,
'data' => [
'title' => 'Account',
'form' => [
'validation' => 'loose',
'fields' => [
'info' => [
'type' => 'userinfo',
'size' => 'large'
],
'avatar' => [
'type' => 'file',
'size' => 'large',
'destination' => 'user://accounts/avatars',
'multiple' => false,
'random_name' => true
],
'content' => [
'type' => 'section',
'title' => 'PLUGIN_ADMIN.ACCOUNT',
'underline' => true
],
'username' => [
'type' => 'text',
'size' => 'large',
'label' => 'PLUGIN_ADMIN.USERNAME',
'disabled' => true,
'readonly' => true
],
'email' => [
'type' => 'email',
'size' => 'large',
'label' => 'PLUGIN_ADMIN.EMAIL',
'validate' => [
'type' => 'email',
'message' => 'PLUGIN_ADMIN.EMAIL_VALIDATION_MESSAGE',
'required' => true
]
],
'password' => [
'type' => 'password',
'size' => 'large',
'label' => 'PLUGIN_ADMIN.PASSWORD',
'autocomplete' => 'new-password',
'validate' => [
'required' => false,
'message' => 'PLUGIN_ADMIN.PASSWORD_VALIDATION_MESSAGE',
'config-pattern@' => 'system.pwd_regex'
]
],
'fullname' => [
'type' => 'text',
'size' => 'large',
'label' => 'PLUGIN_ADMIN.FULL_NAME',
'validate' => [
'required' => true
]
],
'title' => [
'type' => 'text',
'size' => 'large',
'label' => 'PLUGIN_ADMIN.TITLE'
],
'language' => [
'type' => 'select',
'label' => 'PLUGIN_ADMIN.LANGUAGE',
'size' => 'medium',
'classes' => 'fancy',
'data-options@' => '\\Grav\\Plugin\\Admin\\Admin::adminLanguages',
'default' => 'en',
'help' => 'PLUGIN_ADMIN.LANGUAGE_HELP'
],
'twofa_check' => [
'type' => 'conditional',
'condition' => 'config.plugins.admin.twofa_enabled',
'fields' => [
'twofa' => [
'title' => 'PLUGIN_ADMIN.2FA_TITLE',
'type' => 'section',
'underline' => true
],
'twofa_enabled' => [
'type' => 'toggle',
'label' => 'PLUGIN_ADMIN.2FA_ENABLED',
'classes' => 'twofa-toggle',
'highlight' => 1,
'default' => 0,
'options' => [
1 => 'PLUGIN_ADMIN.YES',
0 => 'PLUGIN_ADMIN.NO'
],
'validate' => [
'type' => 'bool'
]
],
'twofa_secret' => [
'type' => '2fa_secret',
'outerclasses' => 'twofa-secret',
'label' => 'PLUGIN_ADMIN.2FA_SECRET',
'sublabel' => 'PLUGIN_ADMIN.2FA_SECRET_HELP'
]
]
],
'security' => [
'title' => 'PLUGIN_ADMIN.ACCESS_LEVELS',
'type' => 'section',
'security' => 'admin.super',
'underline' => true,
'fields' => [
'groups' => [
'type' => 'select',
'multiple' => true,
'size' => 'large',
'label' => 'PLUGIN_ADMIN.GROUPS',
'data-options@' => '\\Grav\\Common\\User\\Group::groupNames',
'classes' => 'fancy',
'help' => 'PLUGIN_ADMIN.GROUPS_HELP',
'validate' => [
'type' => 'commalist'
]
],
'access' => [
'type' => 'permissions',
'label' => 'PLUGIN_ADMIN.PERMISSIONS',
'ignore_empty' => true,
'validate' => [
'type' => 'array'
]
]
]
]
]
]
]
];
@@ -1,117 +0,0 @@
<?php
return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/mnt/data/Sites/hehe.net/user/themes/hehe/blueprints/blog.yaml',
'modified' => 1533014916,
'data' => [
'extends@' => 'default',
'child_type' => 'item',
'rules' => [
'slug' => [
'pattern' => '[a-z][a-z0-9_\\-]+',
'min' => 2,
'max' => 80
]
],
'form' => [
'fields' => [
'tabs' => [
'type' => 'tabs',
'active' => 1,
'fields' => [
'advanced' => [
'fields' => [
'overrides' => [
'fields' => [
'header.child_type' => [
'default' => 'item'
]
]
]
]
],
'blog' => [
'type' => 'tab',
'title' => 'Blog Config',
'fields' => [
'content_title' => [
'type' => 'spacer',
'title' => 'Content Definition'
],
'header.content.items' => [
'type' => 'textarea',
'yaml' => true,
'label' => 'Items',
'default' => '@self.children',
'validate' => [
'type' => 'yaml'
]
],
'header.content.limit' => [
'type' => 'text',
'label' => 'Max Item Count',
'default' => 5,
'validate' => [
'required' => true,
'type' => 'int',
'min' => 1
]
],
'header.content.order.by' => [
'type' => 'select',
'label' => 'Order By',
'default' => 'date',
'options' => [
'folder' => 'Folder',
'title' => 'Title',
'date' => 'Date',
'default' => 'Default'
]
],
'header.content.order.dir' => [
'type' => 'select',
'label' => 'Order',
'default' => 'desc',
'options' => [
'asc' => 'Ascending',
'desc' => 'Descending'
]
],
'header.content.pagination' => [
'type' => 'toggle',
'label' => 'Pagination',
'highlight' => 1,
'default' => 1,
'options' => [
1 => 'PLUGIN_ADMIN.ENABLED',
0 => 'PLUGIN_ADMIN.DISABLED'
],
'validate' => [
'type' => 'bool'
]
],
'header.content.url_taxonomy_filters' => [
'type' => 'toggle',
'label' => 'URL Taxonomy Filters',
'highlight' => 1,
'default' => 1,
'options' => [
1 => 'PLUGIN_ADMIN.ENABLED',
0 => 'PLUGIN_ADMIN.DISABLED'
],
'validate' => [
'type' => 'bool'
]
]
],
'import@' => [
'type' => 'partials/blog-bits',
'context' => 'blueprints://pages'
]
]
]
]
]
]
]
];
@@ -1,415 +0,0 @@
<?php
return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/mnt/data/Sites/hehe.net/user/themes/quark/languages.yaml',
'modified' => 1533014916,
'data' => [
'en' => [
'TRANSLATION_TEST' => 'Quark!',
'BLOG' => [
'ITEM' => [
'CONTINUE_READING' => 'Continue reading...',
'NEXT_POST' => 'Next Post',
'PREV_POST' => 'Previous Post'
]
],
'SHOP' => [
'ITEM' => [
'BACK' => 'Back',
'NEXT_ITEM' => 'Next Item',
'PREV_ITEM' => 'Previous Item'
]
],
'SIDEBAR' => [
'SIMPLE_SEARCH' => [
'HEADLINE' => 'Search'
],
'RELATED_POSTS' => [
'HEADLINE' => 'Related Posts'
],
'RANDOM_ARTICLE' => [
'HEADLINE' => 'Random Article',
'FEELING_LUCKY' => 'I\'m Feeling Lucky!'
],
'SOME_TEXT_WIDGET' => [
'HEADLINE' => 'Some Text Widget'
],
'POPULAR_TAGS' => [
'HEADLINE' => 'Popular Tags'
],
'ARCHIVES' => [
'HEADLINE' => 'Archives'
],
'SYNDICATE' => [
'HEADLINE' => 'Syndicate'
]
],
'FORM_DATA' => [
'SUMMARY' => 'Here is the summary of what you wrote to us:'
],
'ERROR' => 'Error'
],
'de' => [
'TRANSLATION_TEST' => 'Quark!',
'BLOG' => [
'ITEM' => [
'CONTINUE_READING' => 'Weiterlesen...',
'NEXT_POST' => 'Nächster Beitrag',
'PREV_POST' => 'Vorheriger Beitrag'
]
],
'SHOP' => [
'ITEM' => [
'BACK' => 'Zurück',
'NEXT_ITEM' => 'Nächstes Objekt',
'PREV_ITEM' => 'Vorheriger Objekt'
]
],
'SIDEBAR' => [
'SIMPLE_SEARCH' => [
'HEADLINE' => 'SimpleSearch'
],
'RELATED_POSTS' => [
'HEADLINE' => 'Ähnliche Beiträge'
],
'RANDOM_ARTICLE' => [
'HEADLINE' => 'Zufälliger Artikel',
'FEELING_LUCKY' => 'Auf gut Glück!'
],
'SOME_TEXT_WIDGET' => [
'HEADLINE' => 'Text Widget Beispiel'
],
'POPULAR_TAGS' => [
'HEADLINE' => 'Häufigste Tags'
],
'ARCHIVES' => [
'HEADLINE' => 'Archiv'
],
'SYNDICATE' => [
'HEADLINE' => 'Abonnements'
]
],
'FORM_DATA' => [
'SUMMARY' => 'Folgendes haben Sie uns mitgeteilt:'
],
'ERROR' => 'Fehler'
],
'es' => [
'TRANSLATION_TEST' => 'Quark!',
'BLOG' => [
'ITEM' => [
'CONTINUE_READING' => 'Continuar leyendo...',
'NEXT_POST' => 'Siguiente Entrada',
'PREV_POST' => 'Entrada Anterior'
]
],
'SHOP' => [
'ITEM' => [
'BACK' => 'Espalda',
'NEXT_ITEM' => 'Siguiente Artículo',
'PREV_ITEM' => 'Artículo Anterior'
]
],
'SIDEBAR' => [
'SIMPLE_SEARCH' => [
'HEADLINE' => 'Buscar'
],
'RELATED_POSTS' => [
'HEADLINE' => 'Entradas Relacionadas'
],
'RANDOM_ARTICLE' => [
'HEADLINE' => 'Artículo Aleatorio',
'FEELING_LUCKY' => 'Voy a tener suerte!'
],
'SOME_TEXT_WIDGET' => [
'HEADLINE' => 'Algunos Widget de Texto'
],
'POPULAR_TAGS' => [
'HEADLINE' => 'Etiquetas Populares'
],
'ARCHIVES' => [
'HEADLINE' => 'Archivos'
],
'SYNDICATE' => [
'HEADLINE' => 'Distribuir'
]
],
'FORM_DATA' => [
'SUMMARY' => 'Este es un resumen de lo escrito:'
],
'ERROR' => 'Error'
],
'fr' => [
'TRANSLATION_TEST' => 'Quark !',
'BLOG' => [
'ITEM' => [
'CONTINUE_READING' => 'Continuer la lecture...',
'NEXT_POST' => 'Article suivant',
'PREV_POST' => 'Article précédent'
]
],
'SIDEBAR' => [
'SIMPLE_SEARCH' => [
'HEADLINE' => 'Recherche simple'
],
'RELATED_POSTS' => [
'HEADLINE' => 'Articles en relation'
],
'RANDOM_ARTICLE' => [
'HEADLINE' => 'Article aléatoire',
'FEELING_LUCKY' => 'J\'ai de la chance !'
],
'SOME_TEXT_WIDGET' => [
'HEADLINE' => 'Du texte gadget'
],
'POPULAR_TAGS' => [
'HEADLINE' => 'Tags populaires'
],
'ARCHIVES' => [
'HEADLINE' => 'Archives'
],
'SYNDICATE' => [
'HEADLINE' => 'Syndication'
]
],
'FORM_DATA' => [
'SUMMARY' => 'Voici le résumé de ce que vous avez écrit pour nous:'
],
'ERROR' => 'Erreur'
],
'it' => [
'TRANSLATION_TEST' => 'Quark!',
'BLOG' => [
'ITEM' => [
'CONTINUE_READING' => 'Continua a leggere...',
'NEXT_POST' => 'Prossimo articolo',
'PREV_POST' => 'Articolo precedente'
]
],
'SIDEBAR' => [
'SIMPLE_SEARCH' => [
'HEADLINE' => 'SimpleSearch'
],
'RELATED_POSTS' => [
'HEADLINE' => 'Articoli correlati'
],
'RANDOM_ARTICLE' => [
'HEADLINE' => 'Articolo a caso',
'FEELING_LUCKY' => 'Mi sento fortunato!'
],
'SOME_TEXT_WIDGET' => [
'HEADLINE' => 'Widget di testo'
],
'POPULAR_TAGS' => [
'HEADLINE' => 'Tag popolari'
],
'ARCHIVES' => [
'HEADLINE' => 'Archivio'
],
'SYNDICATE' => [
'HEADLINE' => 'Feed'
]
],
'FORM_DATA' => [
'SUMMARY' => 'Questo è il riassunto di quanto ci hai scritto:'
],
'ERROR' => 'Errore'
],
'ro' => [
'BLOG' => [
'ITEM' => [
'CONTINUE_READING' => 'Mai multe...',
'NEXT_POST' => 'Următorul articol',
'PREV_POST' => 'Articolul anterior'
]
],
'SIDEBAR' => [
'SIMPLE_SEARCH' => [
'HEADLINE' => 'Căutare'
],
'RELATED_POSTS' => [
'HEADLINE' => 'Articole corelate'
],
'RANDOM_ARTICLE' => [
'HEADLINE' => 'Articol aleator'
],
'FEELING_LUCKY' => 'Mă simt norocos',
'SOME_TEXT_WIDGET' => [
'HEADLINE' => 'Text modular'
],
'POPULAR_TAGS' => [
'HEADLINE' => 'Etichete populare'
],
'ARCHIVES' => [
'HEADLINE' => 'Arhive'
],
'SYNDICATE' => [
'HEADLINE' => 'Abonați-vă'
]
],
'FORM_DATA' => [
'SUMMARY' => 'Acesta este rezumatul mesajului Dvs:'
],
'ERROR' => 'Eroare'
],
'ru' => [
'TRANSLATION_TEST' => 'Quark!',
'BLOG' => [
'ITEM' => [
'CONTINUE_READING' => 'Читать далее...',
'NEXT_POST' => 'Следующая запись',
'PREV_POST' => 'Предыдущая запись'
]
],
'SIDEBAR' => [
'SIMPLE_SEARCH' => [
'HEADLINE' => 'Поиск'
],
'RELATED_POSTS' => [
'HEADLINE' => 'Также читайте'
],
'RANDOM_ARTICLE' => [
'HEADLINE' => 'Случайная запись',
'FEELING_LUCKY' => 'Мне повезёт!'
],
'SOME_TEXT_WIDGET' => [
'HEADLINE' => 'Текстовой виджет'
],
'POPULAR_TAGS' => [
'HEADLINE' => 'Популярные теги'
],
'ARCHIVES' => [
'HEADLINE' => 'Архив'
],
'SYNDICATE' => [
'HEADLINE' => 'Синдикация'
]
],
'FORM_DATA' => [
'SUMMARY' => 'Вы написали нам:'
],
'ERROR' => 'Ошибка'
],
'uk' => [
'TRANSLATION_TEST' => 'Quark!',
'BLOG' => [
'ITEM' => [
'CONTINUE_READING' => 'Читати далі...',
'NEXT_POST' => 'Наступний запис',
'PREV_POST' => 'Попередній запис'
]
],
'SIDEBAR' => [
'SIMPLE_SEARCH' => [
'HEADLINE' => 'Пошук'
],
'RELATED_POSTS' => [
'HEADLINE' => 'Також читайте'
],
'RANDOM_ARTICLE' => [
'HEADLINE' => 'Випадковий запис',
'FEELING_LUCKY' => 'Мені пощастить!'
],
'SOME_TEXT_WIDGET' => [
'HEADLINE' => 'Текстовий віджет'
],
'POPULAR_TAGS' => [
'HEADLINE' => 'Популярні теги'
],
'ARCHIVES' => [
'HEADLINE' => 'Архів'
],
'SYNDICATE' => [
'HEADLINE' => 'Синдикація'
]
],
'FORM_DATA' => [
'SUMMARY' => 'Ви написали нам:'
],
'ERROR' => 'Помилка'
],
'hr' => [
'TRANSLATION_TEST' => 'Quark!',
'BLOG' => [
'ITEM' => [
'CONTINUE_READING' => 'Nastavi s čitanjem...',
'NEXT_POST' => 'Slijedeća objava',
'PREV_POST' => 'Prethodna objava'
]
],
'SIDEBAR' => [
'SIMPLE_SEARCH' => [
'HEADLINE' => 'Pretraživanje'
],
'RELATED_POSTS' => [
'HEADLINE' => 'Povezane objave'
],
'RANDOM_ARTICLE' => [
'HEADLINE' => 'Slučajni članak',
'FEELING_LUCKY' => 'Osjećam se sretno!'
],
'SOME_TEXT_WIDGET' => [
'HEADLINE' => 'Neki tekst widget'
],
'POPULAR_TAGS' => [
'HEADLINE' => 'Popularni tagovi'
],
'ARCHIVES' => [
'HEADLINE' => 'Arhiva'
],
'SYNDICATE' => [
'HEADLINE' => 'Kanali'
]
],
'FORM_DATA' => [
'SUMMARY' => 'Ovo je sažetak onog što ste nam napisali:'
],
'ERROR' => 'Greška'
],
'nl' => [
'TRANSLATION_TEST' => 'Quark!',
'BLOG' => [
'ITEM' => [
'CONTINUE_READING' => 'Lees Meer...',
'NEXT_POST' => 'Volgende Bericht',
'PREV_POST' => 'Vorige Bericht'
]
],
'SHOP' => [
'ITEM' => [
'BACK' => 'Teru',
'NEXT_ITEM' => 'Volgende Onderdeel',
'PREV_ITEM' => 'Vorige Onderdeel'
]
],
'SIDEBAR' => [
'SIMPLE_SEARCH' => [
'HEADLINE' => 'Zoek'
],
'RELATED_POSTS' => [
'HEADLINE' => 'Gerelateerde Berichten'
],
'RANDOM_ARTICLE' => [
'HEADLINE' => 'Willekeurig Artikel',
'FEELING_LUCKY' => 'Ik Voel Me Gelukkig!'
],
'SOME_TEXT_WIDGET' => [
'HEADLINE' => 'Een Tekst Widget'
],
'POPULAR_TAGS' => [
'HEADLINE' => 'Populaire Labels'
],
'ARCHIVES' => [
'HEADLINE' => 'Archieven'
],
'SYNDICATE' => [
'HEADLINE' => 'Syndicatie'
]
],
'FORM_DATA' => [
'SUMMARY' => 'Hier is de samenvatting van wat je aan ons schreef:'
],
'ERROR' => 'Fout'
]
]
];
@@ -0,0 +1,10 @@
<?php
return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/mnt/data/Sites/hehe.net/user/plugins/taxonomylist/taxonomylist.yaml',
'modified' => 1533212893,
'data' => [
'enabled' => true,
'route' => '/blog'
]
];
@@ -0,0 +1,10 @@
<?php
return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => 'plugins://taxonomylist/taxonomylist.yaml',
'modified' => 1533212893,
'data' => [
'enabled' => true,
'route' => '/blog'
]
];
+2 -2
View File
@@ -1,7 +1,7 @@
<?php
return [
'@class' => 'Grav\\Common\\Config\\CompiledLanguages',
'timestamp' => 1533134392,
'timestamp' => 1533208004,
'checksum' => '6c5391e484bf1638c9846acf597e3d7f',
'files' => [
'system/languages' => [
@@ -22875,6 +22875,6 @@ Path: `%2$s`
]
],
'checksum' => '6c5391e484bf1638c9846acf597e3d7f',
'timestamp' => 1533134392
'timestamp' => 1533208004
]
];