add templateimg

This commit is contained in:
2018-07-26 08:20:55 +02:00
parent 89b9500179
commit 21d6860753
140 changed files with 6142 additions and 492 deletions
+9
View File
@@ -1,3 +1,12 @@
# v1.4.7
## 07/13/2018
1. [](#improved)
* Use `getFilename` instead of `getBasename` [#2087](https://github.com/getgrav/grav/issues/2087)
1. [](#bugfix)
* Fix for modular page preview [#2066](https://github.com/getgrav/grav/issues/2066)
* `Page::routeCanonical()` should be string not array [#2069](https://github.com/getgrav/grav/issues/2069)
# v1.4.6 # v1.4.6
## 06/20/2018 ## 06/20/2018
+192 -104
View File
@@ -1,31 +1,25 @@
<?php <?php
return [ return [
'@class' => 'Grav\\Common\\Config\\CompiledBlueprints', '@class' => 'Grav\\Common\\Config\\CompiledBlueprints',
'timestamp' => 1531325457, 'timestamp' => 1532585293,
'checksum' => '2996c20a593f6694b6eafe364c866235', 'checksum' => '3bef5b9e254a179c7574883246ba98c2',
'files' => [ 'files' => [
'user/plugins/admin/blueprints/config' => [
'media' => [
'file' => 'user/plugins/admin/blueprints/config/media.yaml',
'modified' => 1529597236
]
],
'system/blueprints/config' => [ 'system/blueprints/config' => [
'media' => [ 'media' => [
'file' => 'system/blueprints/config/media.yaml', 'file' => 'system/blueprints/config/media.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'site' => [ 'site' => [
'file' => 'system/blueprints/config/site.yaml', 'file' => 'system/blueprints/config/site.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'streams' => [ 'streams' => [
'file' => 'system/blueprints/config/streams.yaml', 'file' => 'system/blueprints/config/streams.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'system' => [ 'system' => [
'file' => 'system/blueprints/config/system.yaml', 'file' => 'system/blueprints/config/system.yaml',
'modified' => 1529597236 'modified' => 1532585289
] ]
], ],
'user/plugins' => [ 'user/plugins' => [
@@ -47,7 +41,7 @@ return [
], ],
'plugins/admin' => [ 'plugins/admin' => [
'file' => 'user/plugins/admin/blueprints.yaml', 'file' => 'user/plugins/admin/blueprints.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'plugins/email' => [ 'plugins/email' => [
'file' => 'user/plugins/email/blueprints.yaml', 'file' => 'user/plugins/email/blueprints.yaml',
@@ -68,53 +62,6 @@ return [
'validation' => 'loose' 'validation' => 'loose'
] ]
], ],
'media.types' => [
'name' => 'media.types',
'type' => 'list',
'label' => 'PLUGIN_ADMIN.MEDIA_TYPES',
'style' => 'vertical',
'key' => 'extension',
'controls' => 'both',
'collapsed' => true,
'validation' => 'loose',
'array' => true
],
'media.types.*' => [
'type' => '_parent',
'name' => 'media.types.*',
'form_field' => false
],
'media.types.*.type' => [
'type' => 'text',
'label' => 'PLUGIN_ADMIN.TYPE',
'name' => 'media.types.*.type',
'validation' => 'loose'
],
'media.types.*.thumb' => [
'type' => 'text',
'label' => 'PLUGIN_ADMIN.THUMB',
'name' => 'media.types.*.thumb',
'validation' => 'loose'
],
'media.types.*.mime' => [
'type' => 'text',
'label' => 'PLUGIN_ADMIN.MIME_TYPE',
'validate' => [
'type' => 'lower'
],
'name' => 'media.types.*.mime',
'validation' => 'loose'
],
'media.types.*.image' => [
'type' => 'textarea',
'yaml' => true,
'label' => 'PLUGIN_ADMIN.IMAGE_OPTIONS',
'validate' => [
'type' => 'yaml'
],
'name' => 'media.types.*.image',
'validation' => 'loose'
],
'site' => [ 'site' => [
'type' => '_root', 'type' => '_root',
'form_field' => false, 'form_field' => false,
@@ -169,10 +116,17 @@ return [
'name' => 'site.taxonomies', 'name' => 'site.taxonomies',
'validation' => 'loose' 'validation' => 'loose'
], ],
'site.content' => [
'type' => 'section',
'underline' => true,
'name' => 'site.content',
'validation' => 'loose'
],
'site.summary' => [ 'site.summary' => [
'type' => '_parent', 'type' => 'section',
'underline' => true,
'name' => 'site.summary', 'name' => 'site.summary',
'form_field' => false 'validation' => 'loose'
], ],
'site.summary.enabled' => [ 'site.summary.enabled' => [
'type' => 'toggle', 'type' => 'toggle',
@@ -221,8 +175,8 @@ return [
'validation' => 'loose' 'validation' => 'loose'
], ],
'site.metadata' => [ 'site.metadata' => [
'type' => 'array', 'type' => 'section',
'label' => 'PLUGIN_ADMIN.METADATA', 'underline' => true,
'name' => 'site.metadata', 'name' => 'site.metadata',
'validation' => 'loose' 'validation' => 'loose'
], ],
@@ -233,8 +187,8 @@ return [
'validation' => 'loose' 'validation' => 'loose'
], ],
'site.routes' => [ 'site.routes' => [
'type' => 'array', 'type' => 'section',
'label' => 'PLUGIN_ADMIN.CUSTOM_ROUTES', 'underline' => true,
'name' => 'site.routes', 'name' => 'site.routes',
'validation' => 'loose' 'validation' => 'loose'
], ],
@@ -628,10 +582,17 @@ return [
'name' => 'system.pages.frontmatter.ignore_fields', 'name' => 'system.pages.frontmatter.ignore_fields',
'validation' => 'loose' 'validation' => 'loose'
], ],
'system.content' => [
'type' => 'section',
'underline' => true,
'name' => 'system.content',
'validation' => 'loose'
],
'system.languages' => [ 'system.languages' => [
'type' => '_parent', 'type' => 'section',
'underline' => true,
'name' => 'system.languages', 'name' => 'system.languages',
'form_field' => false 'validation' => 'loose'
], ],
'system.languages.supported' => [ 'system.languages.supported' => [
'type' => 'selectize', 'type' => 'selectize',
@@ -789,6 +750,12 @@ return [
'name' => 'system.pages.vary_accept_encoding', 'name' => 'system.pages.vary_accept_encoding',
'validation' => 'loose' 'validation' => 'loose'
], ],
'system.http_headers' => [
'type' => 'section',
'underline' => true,
'name' => 'system.http_headers',
'validation' => 'loose'
],
'system.pages.markdown' => [ 'system.pages.markdown' => [
'type' => '_parent', 'type' => '_parent',
'name' => 'system.pages.markdown', 'name' => 'system.pages.markdown',
@@ -850,6 +817,12 @@ return [
'name' => 'system.pages.markdown.escape_markup', 'name' => 'system.pages.markdown.escape_markup',
'validation' => 'loose' 'validation' => 'loose'
], ],
'system.markdown' => [
'type' => 'section',
'underline' => true,
'name' => 'system.markdown',
'validation' => 'loose'
],
'system.cache' => [ 'system.cache' => [
'type' => '_parent', 'type' => '_parent',
'name' => 'system.cache', 'name' => 'system.cache',
@@ -1052,10 +1025,17 @@ return [
'name' => 'system.cache.redis.password', 'name' => 'system.cache.redis.password',
'validation' => 'loose' 'validation' => 'loose'
], ],
'system.caching' => [
'type' => 'section',
'underline' => true,
'name' => 'system.caching',
'validation' => 'loose'
],
'system.twig' => [ 'system.twig' => [
'type' => '_parent', 'type' => 'section',
'underline' => true,
'name' => 'system.twig', 'name' => 'system.twig',
'form_field' => false 'validation' => 'loose'
], ],
'system.twig.cache' => [ 'system.twig.cache' => [
'type' => 'toggle', 'type' => 'toggle',
@@ -1128,9 +1108,10 @@ return [
'validation' => 'loose' 'validation' => 'loose'
], ],
'system.assets' => [ 'system.assets' => [
'type' => '_parent', 'type' => 'section',
'underline' => true,
'name' => 'system.assets', 'name' => 'system.assets',
'form_field' => false 'validation' => 'loose'
], ],
'system.assets.css_pipeline' => [ 'system.assets.css_pipeline' => [
'type' => 'toggle', 'type' => 'toggle',
@@ -1296,9 +1277,10 @@ return [
'validation' => 'loose' 'validation' => 'loose'
], ],
'system.errors' => [ 'system.errors' => [
'type' => '_parent', 'type' => 'section',
'underline' => true,
'name' => 'system.errors', 'name' => 'system.errors',
'form_field' => false 'validation' => 'loose'
], ],
'system.errors.display' => [ 'system.errors.display' => [
'type' => 'select', 'type' => 'select',
@@ -1331,9 +1313,10 @@ return [
'validation' => 'loose' 'validation' => 'loose'
], ],
'system.debugger' => [ 'system.debugger' => [
'type' => '_parent', 'type' => 'section',
'underline' => true,
'name' => 'system.debugger', 'name' => 'system.debugger',
'form_field' => false 'validation' => 'loose'
], ],
'system.debugger.enabled' => [ 'system.debugger.enabled' => [
'type' => 'toggle', 'type' => 'toggle',
@@ -1439,9 +1422,10 @@ return [
'validation' => 'loose' 'validation' => 'loose'
], ],
'system.media' => [ 'system.media' => [
'type' => '_parent', 'type' => 'section',
'underline' => true,
'name' => 'system.media', 'name' => 'system.media',
'form_field' => false 'validation' => 'loose'
], ],
'system.media.enable_media_timestamp' => [ 'system.media.enable_media_timestamp' => [
'type' => 'toggle', 'type' => 'toggle',
@@ -1494,9 +1478,10 @@ return [
'validation' => 'loose' 'validation' => 'loose'
], ],
'system.session' => [ 'system.session' => [
'type' => '_parent', 'type' => 'section',
'underline' => true,
'name' => 'system.session', 'name' => 'system.session',
'form_field' => false 'validation' => 'loose'
], ],
'system.session.enabled' => [ 'system.session.enabled' => [
'type' => 'hidden', 'type' => 'hidden',
@@ -1767,6 +1752,12 @@ return [
'name' => 'system.custom_base_url', 'name' => 'system.custom_base_url',
'validation' => 'loose' 'validation' => 'loose'
], ],
'system.advanced' => [
'type' => 'section',
'underline' => true,
'name' => 'system.advanced',
'validation' => 'loose'
],
'plugins.problems' => [ 'plugins.problems' => [
'type' => '_root', 'type' => '_root',
'form_field' => false, 'form_field' => false,
@@ -2045,10 +2036,15 @@ return [
'name' => 'plugins.login.user_registration.redirect_after_activation', 'name' => 'plugins.login.user_registration.redirect_after_activation',
'validation' => 'loose' 'validation' => 'loose'
], ],
'plugins.login.routes' => [
'type' => 'section',
'name' => 'plugins.login.routes',
'validation' => 'loose'
],
'plugins.login.rememberme' => [ 'plugins.login.rememberme' => [
'type' => '_parent', 'type' => 'section',
'name' => 'plugins.login.rememberme', 'name' => 'plugins.login.rememberme',
'form_field' => false 'validation' => 'loose'
], ],
'plugins.login.rememberme.enabled' => [ 'plugins.login.rememberme.enabled' => [
'type' => 'toggle', 'type' => 'toggle',
@@ -2083,6 +2079,11 @@ return [
'name' => 'plugins.login.rememberme.name', 'name' => 'plugins.login.rememberme.name',
'validation' => 'loose' 'validation' => 'loose'
], ],
'plugins.login.login' => [
'type' => 'tab',
'name' => 'plugins.login.login',
'validation' => 'loose'
],
'plugins.login.user_registration.enabled' => [ 'plugins.login.user_registration.enabled' => [
'type' => 'toggle', 'type' => 'toggle',
'label' => 'PLUGIN_ADMIN.ENABLED', 'label' => 'PLUGIN_ADMIN.ENABLED',
@@ -2110,6 +2111,11 @@ return [
'name' => 'plugins.login.user_registration.default_values', 'name' => 'plugins.login.user_registration.default_values',
'validation' => 'loose' 'validation' => 'loose'
], ],
'plugins.login.registration_fields' => [
'type' => 'section',
'name' => 'plugins.login.registration_fields',
'validation' => 'loose'
],
'plugins.login.user_registration.groups' => [ 'plugins.login.user_registration.groups' => [
'type' => 'selectize', 'type' => 'selectize',
'size' => 'large', 'size' => 'large',
@@ -2137,6 +2143,12 @@ return [
'name' => 'plugins.login.user_registration.access.site', 'name' => 'plugins.login.user_registration.access.site',
'validation' => 'loose' 'validation' => 'loose'
], ],
'plugins.login.access_levels' => [
'type' => 'section',
'security' => 'admin.super',
'name' => 'plugins.login.access_levels',
'validation' => 'loose'
],
'plugins.login.user_registration.options' => [ 'plugins.login.user_registration.options' => [
'type' => '_parent', 'type' => '_parent',
'name' => 'plugins.login.user_registration.options', 'name' => 'plugins.login.user_registration.options',
@@ -2223,6 +2235,16 @@ return [
'name' => 'plugins.login.user_registration.options.send_welcome_email', 'name' => 'plugins.login.user_registration.options.send_welcome_email',
'validation' => 'loose' 'validation' => 'loose'
], ],
'plugins.login.options' => [
'type' => 'section',
'name' => 'plugins.login.options',
'validation' => 'loose'
],
'plugins.login.registration' => [
'type' => 'tab',
'name' => 'plugins.login.registration',
'validation' => 'loose'
],
'plugins.login.max_pw_resets_count' => [ 'plugins.login.max_pw_resets_count' => [
'type' => 'number', 'type' => 'number',
'size' => 'x-small', 'size' => 'x-small',
@@ -2271,6 +2293,18 @@ return [
'name' => 'plugins.login.max_login_interval', 'name' => 'plugins.login.max_login_interval',
'validation' => 'loose' 'validation' => 'loose'
], ],
'plugins.login.Security' => [
'type' => 'tab',
'name' => 'plugins.login.Security',
'validation' => 'loose'
],
'plugins.login.tabs' => [
'type' => 'tabs',
'active' => 1,
'class' => 'subtle',
'name' => 'plugins.login.tabs',
'validation' => 'loose'
],
'plugins.admin' => [ 'plugins.admin' => [
'type' => '_root', 'type' => '_root',
'form_field' => false, 'form_field' => false,
@@ -2278,6 +2312,12 @@ return [
'validation' => 'loose' 'validation' => 'loose'
] ]
], ],
'plugins.admin.Basics' => [
'type' => 'section',
'underline' => false,
'name' => 'plugins.admin.Basics',
'validation' => 'loose'
],
'plugins.admin.enabled' => [ 'plugins.admin.enabled' => [
'type' => 'hidden', 'type' => 'hidden',
'label' => 'PLUGIN_ADMIN.PLUGIN_STATUS', 'label' => 'PLUGIN_ADMIN.PLUGIN_STATUS',
@@ -2576,6 +2616,19 @@ return [
'name' => 'plugins.admin.hide_modular_page_types', 'name' => 'plugins.admin.hide_modular_page_types',
'validation' => 'loose' 'validation' => 'loose'
], ],
'plugins.admin.MediaResize' => [
'type' => 'section',
'underline' => true,
'name' => 'plugins.admin.MediaResize',
'validation' => 'loose'
],
'plugins.admin.MediaResizeNote' => [
'type' => 'spacer',
'text' => 'PLUGIN_ADMIN.PAGEMEDIA_RESIZER',
'markdown' => true,
'name' => 'plugins.admin.MediaResizeNote',
'validation' => 'loose'
],
'plugins.admin.pagemedia' => [ 'plugins.admin.pagemedia' => [
'type' => '_parent', 'type' => '_parent',
'name' => 'plugins.admin.pagemedia', 'name' => 'plugins.admin.pagemedia',
@@ -2666,6 +2719,12 @@ return [
'name' => 'plugins.admin.pagemedia.resize_quality', 'name' => 'plugins.admin.pagemedia.resize_quality',
'validation' => 'loose' 'validation' => 'loose'
], ],
'plugins.admin.Dashboard' => [
'type' => 'section',
'underline' => true,
'name' => 'plugins.admin.Dashboard',
'validation' => 'loose'
],
'plugins.admin.widgets' => [ 'plugins.admin.widgets' => [
'type' => '_parent', 'type' => '_parent',
'name' => 'plugins.admin.widgets', 'name' => 'plugins.admin.widgets',
@@ -2746,6 +2805,12 @@ return [
'name' => 'plugins.admin.widgets.dashboard-pages', 'name' => 'plugins.admin.widgets.dashboard-pages',
'validation' => 'loose' 'validation' => 'loose'
], ],
'plugins.admin.Notifications' => [
'type' => 'section',
'underline' => true,
'name' => 'plugins.admin.Notifications',
'validation' => 'loose'
],
'plugins.admin.notifications' => [ 'plugins.admin.notifications' => [
'type' => '_parent', 'type' => '_parent',
'name' => 'plugins.admin.notifications', 'name' => 'plugins.admin.notifications',
@@ -2811,6 +2876,12 @@ return [
'name' => 'plugins.admin.notifications.themes', 'name' => 'plugins.admin.notifications.themes',
'validation' => 'loose' 'validation' => 'loose'
], ],
'plugins.admin.Popularity' => [
'type' => 'section',
'underline' => true,
'name' => 'plugins.admin.Popularity',
'validation' => 'loose'
],
'plugins.admin.popularity' => [ 'plugins.admin.popularity' => [
'type' => '_parent', 'type' => '_parent',
'name' => 'plugins.admin.popularity', 'name' => 'plugins.admin.popularity',
@@ -3209,10 +3280,15 @@ return [
'name' => 'plugins.form.inline_errors', 'name' => 'plugins.form.inline_errors',
'validation' => 'strict' 'validation' => 'strict'
], ],
'plugins.form.general' => [
'type' => 'section',
'name' => 'plugins.form.general',
'validation' => 'strict'
],
'plugins.form.files' => [ 'plugins.form.files' => [
'type' => '_parent', 'type' => 'section',
'name' => 'plugins.form.files', 'name' => 'plugins.form.files',
'form_field' => false 'validation' => 'strict'
], ],
'plugins.form.files.multiple' => [ 'plugins.form.files.multiple' => [
'type' => 'toggle', 'type' => 'toggle',
@@ -3306,9 +3382,9 @@ return [
'validation' => 'strict' 'validation' => 'strict'
], ],
'plugins.form.recaptcha' => [ 'plugins.form.recaptcha' => [
'type' => '_parent', 'type' => 'section',
'name' => 'plugins.form.recaptcha', 'name' => 'plugins.form.recaptcha',
'form_field' => false 'validation' => 'strict'
], ],
'plugins.form.recaptcha.site_key' => [ 'plugins.form.recaptcha.site_key' => [
'type' => 'text', 'type' => 'text',
@@ -3329,17 +3405,9 @@ return [
], ],
'nested' => [ 'nested' => [
'media' => [ 'media' => 'media',
'types' => [
'*' => [
'type' => 'media.types.*.type',
'thumb' => 'media.types.*.thumb',
'mime' => 'media.types.*.mime',
'image' => 'media.types.*.image'
]
]
],
'site' => [ 'site' => [
'content' => 'site.content',
'title' => 'site.title', 'title' => 'site.title',
'default_lang' => 'site.default_lang', 'default_lang' => 'site.default_lang',
'author' => [ 'author' => [
@@ -3354,8 +3422,8 @@ return [
'delimiter' => 'site.summary.delimiter' 'delimiter' => 'site.summary.delimiter'
], ],
'metadata' => 'site.metadata', 'metadata' => 'site.metadata',
'redirects' => 'site.redirects', 'routes' => 'site.routes',
'routes' => 'site.routes' 'redirects' => 'site.redirects'
], ],
'streams' => [ 'streams' => [
'schemes' => [ 'schemes' => [
@@ -3363,6 +3431,7 @@ return [
] ]
], ],
'system' => [ 'system' => [
'content' => 'system.content',
'home' => [ 'home' => [
'alias' => 'system.home.alias', 'alias' => 'system.home.alias',
'hide_in_urls' => 'system.home.hide_in_urls' 'hide_in_urls' => 'system.home.hide_in_urls'
@@ -3420,6 +3489,9 @@ return [
'http_accept_language' => 'system.languages.http_accept_language', 'http_accept_language' => 'system.languages.http_accept_language',
'override_locale' => 'system.languages.override_locale' 'override_locale' => 'system.languages.override_locale'
], ],
'http_headers' => 'system.http_headers',
'markdown' => 'system.markdown',
'caching' => 'system.caching',
'cache' => [ 'cache' => [
'enabled' => 'system.cache.enabled', 'enabled' => 'system.cache.enabled',
'check' => [ 'check' => [
@@ -3478,6 +3550,12 @@ return [
'close_connection' => 'system.debugger.shutdown.close_connection' 'close_connection' => 'system.debugger.shutdown.close_connection'
] ]
], ],
'media' => [
'enable_media_timestamp' => 'system.media.enable_media_timestamp',
'auto_metadata_exif' => 'system.media.auto_metadata_exif',
'allowed_fallback_types' => 'system.media.allowed_fallback_types',
'unsupported_inline_types' => 'system.media.unsupported_inline_types'
],
'images' => [ 'images' => [
'default_image_quality' => 'system.images.default_image_quality', 'default_image_quality' => 'system.images.default_image_quality',
'cache_all' => 'system.images.cache_all', 'cache_all' => 'system.images.cache_all',
@@ -3485,12 +3563,6 @@ return [
'debug' => 'system.images.debug', 'debug' => 'system.images.debug',
'auto_fix_orientation' => 'system.images.auto_fix_orientation' 'auto_fix_orientation' => 'system.images.auto_fix_orientation'
], ],
'media' => [
'enable_media_timestamp' => 'system.media.enable_media_timestamp',
'auto_metadata_exif' => 'system.media.auto_metadata_exif',
'allowed_fallback_types' => 'system.media.allowed_fallback_types',
'unsupported_inline_types' => 'system.media.unsupported_inline_types'
],
'session' => [ 'session' => [
'enabled' => 'system.session.enabled', 'enabled' => 'system.session.enabled',
'timeout' => 'system.session.timeout', 'timeout' => 'system.session.timeout',
@@ -3500,6 +3572,7 @@ return [
'path' => 'system.session.path', 'path' => 'system.session.path',
'split' => 'system.session.split' 'split' => 'system.session.split'
], ],
'advanced' => 'system.advanced',
'gpm' => [ 'gpm' => [
'releases' => 'system.gpm.releases', 'releases' => 'system.gpm.releases',
'proxy_url' => 'system.gpm.proxy_url', 'proxy_url' => 'system.gpm.proxy_url',
@@ -3535,6 +3608,8 @@ return [
] ]
], ],
'login' => [ 'login' => [
'tabs' => 'plugins.login.tabs',
'login' => 'plugins.login.login',
'enabled' => 'plugins.login.enabled', 'enabled' => 'plugins.login.enabled',
'built_in_css' => 'plugins.login.built_in_css', 'built_in_css' => 'plugins.login.built_in_css',
'route' => 'plugins.login.route', 'route' => 'plugins.login.route',
@@ -3546,6 +3621,7 @@ return [
'parent_acl' => 'plugins.login.parent_acl', 'parent_acl' => 'plugins.login.parent_acl',
'dynamic_page_visibility' => 'plugins.login.dynamic_page_visibility', 'dynamic_page_visibility' => 'plugins.login.dynamic_page_visibility',
'protect_protected_page_media' => 'plugins.login.protect_protected_page_media', 'protect_protected_page_media' => 'plugins.login.protect_protected_page_media',
'routes' => 'plugins.login.routes',
'route_activate' => 'plugins.login.route_activate', 'route_activate' => 'plugins.login.route_activate',
'route_register' => 'plugins.login.route_register', 'route_register' => 'plugins.login.route_register',
'user_registration' => [ 'user_registration' => [
@@ -3572,12 +3648,18 @@ return [
'timeout' => 'plugins.login.rememberme.timeout', 'timeout' => 'plugins.login.rememberme.timeout',
'name' => 'plugins.login.rememberme.name' 'name' => 'plugins.login.rememberme.name'
], ],
'registration' => 'plugins.login.registration',
'registration_fields' => 'plugins.login.registration_fields',
'access_levels' => 'plugins.login.access_levels',
'options' => 'plugins.login.options',
'Security' => 'plugins.login.Security',
'max_pw_resets_count' => 'plugins.login.max_pw_resets_count', 'max_pw_resets_count' => 'plugins.login.max_pw_resets_count',
'max_pw_resets_interval' => 'plugins.login.max_pw_resets_interval', 'max_pw_resets_interval' => 'plugins.login.max_pw_resets_interval',
'max_login_count' => 'plugins.login.max_login_count', 'max_login_count' => 'plugins.login.max_login_count',
'max_login_interval' => 'plugins.login.max_login_interval' 'max_login_interval' => 'plugins.login.max_login_interval'
], ],
'admin' => [ 'admin' => [
'Basics' => 'plugins.admin.Basics',
'enabled' => 'plugins.admin.enabled', 'enabled' => 'plugins.admin.enabled',
'cache_enabled' => 'plugins.admin.cache_enabled', 'cache_enabled' => 'plugins.admin.cache_enabled',
'twofa_enabled' => 'plugins.admin.twofa_enabled', 'twofa_enabled' => 'plugins.admin.twofa_enabled',
@@ -3611,6 +3693,8 @@ return [
], ],
'hide_page_types' => 'plugins.admin.hide_page_types', 'hide_page_types' => 'plugins.admin.hide_page_types',
'hide_modular_page_types' => 'plugins.admin.hide_modular_page_types', 'hide_modular_page_types' => 'plugins.admin.hide_modular_page_types',
'MediaResize' => 'plugins.admin.MediaResize',
'MediaResizeNote' => 'plugins.admin.MediaResizeNote',
'pagemedia' => [ 'pagemedia' => [
'resize_width' => 'plugins.admin.pagemedia.resize_width', 'resize_width' => 'plugins.admin.pagemedia.resize_width',
'resize_height' => 'plugins.admin.pagemedia.resize_height', 'resize_height' => 'plugins.admin.pagemedia.resize_height',
@@ -3620,6 +3704,7 @@ return [
'res_max_height' => 'plugins.admin.pagemedia.res_max_height', 'res_max_height' => 'plugins.admin.pagemedia.res_max_height',
'resize_quality' => 'plugins.admin.pagemedia.resize_quality' 'resize_quality' => 'plugins.admin.pagemedia.resize_quality'
], ],
'Dashboard' => 'plugins.admin.Dashboard',
'widgets' => [ 'widgets' => [
'dashboard-maintenance' => 'plugins.admin.widgets.dashboard-maintenance', 'dashboard-maintenance' => 'plugins.admin.widgets.dashboard-maintenance',
'dashboard-statistics' => 'plugins.admin.widgets.dashboard-statistics', 'dashboard-statistics' => 'plugins.admin.widgets.dashboard-statistics',
@@ -3627,12 +3712,14 @@ return [
'dashboard-feed' => 'plugins.admin.widgets.dashboard-feed', 'dashboard-feed' => 'plugins.admin.widgets.dashboard-feed',
'dashboard-pages' => 'plugins.admin.widgets.dashboard-pages' 'dashboard-pages' => 'plugins.admin.widgets.dashboard-pages'
], ],
'Notifications' => 'plugins.admin.Notifications',
'notifications' => [ 'notifications' => [
'feed' => 'plugins.admin.notifications.feed', 'feed' => 'plugins.admin.notifications.feed',
'dashboard' => 'plugins.admin.notifications.dashboard', 'dashboard' => 'plugins.admin.notifications.dashboard',
'plugins' => 'plugins.admin.notifications.plugins', 'plugins' => 'plugins.admin.notifications.plugins',
'themes' => 'plugins.admin.notifications.themes' 'themes' => 'plugins.admin.notifications.themes'
], ],
'Popularity' => 'plugins.admin.Popularity',
'popularity' => [ 'popularity' => [
'enabled' => 'plugins.admin.popularity.enabled', 'enabled' => 'plugins.admin.popularity.enabled',
'ignore' => 'plugins.admin.popularity.ignore', 'ignore' => 'plugins.admin.popularity.ignore',
@@ -3677,6 +3764,7 @@ return [
], ],
'form' => [ 'form' => [
'enabled' => 'plugins.form.enabled', 'enabled' => 'plugins.form.enabled',
'general' => 'plugins.form.general',
'built_in_css' => 'plugins.form.built_in_css', 'built_in_css' => 'plugins.form.built_in_css',
'inline_css' => 'plugins.form.inline_css', 'inline_css' => 'plugins.form.inline_css',
'refresh_prevention' => 'plugins.form.refresh_prevention', 'refresh_prevention' => 'plugins.form.refresh_prevention',
+7 -7
View File
@@ -1,8 +1,8 @@
<?php <?php
return [ return [
'@class' => 'Grav\\Common\\Config\\CompiledConfig', '@class' => 'Grav\\Common\\Config\\CompiledConfig',
'timestamp' => 1531325457, 'timestamp' => 1532585293,
'checksum' => 'aeab2427940d5f22b9a8646d26430039', 'checksum' => '7372fcdff4ed9c3dc4cb9ec498b0ee77',
'files' => [ 'files' => [
'user/config' => [ 'user/config' => [
'media' => [ 'media' => [
@@ -29,19 +29,19 @@ return [
'system/config' => [ 'system/config' => [
'media' => [ 'media' => [
'file' => 'system/config/media.yaml', 'file' => 'system/config/media.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'site' => [ 'site' => [
'file' => 'system/config/site.yaml', 'file' => 'system/config/site.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'streams' => [ 'streams' => [
'file' => 'system/config/streams.yaml', 'file' => 'system/config/streams.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'system' => [ 'system' => [
'file' => 'system/config/system.yaml', 'file' => 'system/config/system.yaml',
'modified' => 1529597236 'modified' => 1532585289
] ]
], ],
'user/plugins' => [ 'user/plugins' => [
@@ -63,7 +63,7 @@ return [
], ],
'plugins/admin' => [ 'plugins/admin' => [
'file' => 'user/plugins/admin/admin.yaml', 'file' => 'user/plugins/admin/admin.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'plugins/email' => [ 'plugins/email' => [
'file' => 'user/plugins/email/email.yaml', 'file' => 'user/plugins/email/email.yaml',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/ro.yaml', 'filename' => '/var/www/html/system/languages/ro.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'FRONTMATTER_ERROR_PAGE' => '--- 'FRONTMATTER_ERROR_PAGE' => '---
Titlu: %1$s Titlu: %1$s
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/es.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/es.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => '¡Ésta es una versión Beta! Utilízala en producción bajo tu propio riesgo...', 'ADMIN_BETA_MSG' => '¡Ésta es una versión Beta! Utilízala en producción bajo tu propio riesgo...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/cs.yaml', 'filename' => '/var/www/html/system/languages/cs.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'INFLECTOR_UNCOUNTABLE' => [ 'INFLECTOR_UNCOUNTABLE' => [
0 => 'vybavení', 0 => 'vybavení',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/sv.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/sv.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Detta är en betaversion! Använd i produktion på egen risk...', 'ADMIN_BETA_MSG' => 'Detta är en betaversion! Använd i produktion på egen risk...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/lt.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/lt.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Tai Grav administravimo įskiepio beta versija! Naudokite atsargiai...', 'ADMIN_BETA_MSG' => 'Tai Grav administravimo įskiepio beta versija! Naudokite atsargiai...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => 'plugins://admin/admin.yaml', 'filename' => 'plugins://admin/admin.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'enabled' => true, 'enabled' => true,
'route' => '/admin', 'route' => '/admin',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/config/site.yaml', 'filename' => '/var/www/html/system/config/site.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'title' => 'Grav', 'title' => 'Grav',
'default_lang' => 'en', 'default_lang' => 'en',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/zh.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/zh.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => '這是 Beta 版!如果要用在營運中請自行承擔風險…', 'ADMIN_BETA_MSG' => '這是 Beta 版!如果要用在營運中請自行承擔風險…',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/id.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/id.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Ini merupakan rilisan Beta! Gunakan ini di produksi dengan resiko anda sendiri...', 'ADMIN_BETA_MSG' => 'Ini merupakan rilisan Beta! Gunakan ini di produksi dengan resiko anda sendiri...',
@@ -0,0 +1,48 @@
<?php
return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/themes/r2c/blueprints/modular/interviews.yaml',
'modified' => 1531324718,
'data' => [
'title' => 'PLUGIN_ADMIN.MODULAR',
'extends@' => 'default',
'form' => [
'fields' => [
'tabs' => [
'type' => 'tabs',
'active' => 1,
'fields' => [
'content' => [
'fields' => [
'modular_title' => [
'type' => 'spacer',
'title' => 'PLUGIN_ADMIN.MODULAR_SETUP'
],
'header.content.items' => [
'type' => 'text',
'label' => 'PLUGIN_ADMIN.ITEMS',
'default' => '@self.modular',
'size' => 'medium'
],
'header.content.order.by' => [
'type' => 'text',
'label' => 'PLUGIN_ADMIN.ORDER_BY',
'placeholder' => 'date',
'help' => NULL,
'size' => 'small'
],
'header.content.order.dir' => [
'type' => 'text',
'label' => 'PLUGIN_ADMIN.ORDER',
'help' => '"desc" or "asc" are valid values',
'placeholder' => 'desc',
'size' => 'small'
]
]
]
]
]
]
]
]
];
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/ru.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/ru.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Это бета-релиз! Вы используете это расширение на свой страх и риск...', 'ADMIN_BETA_MSG' => 'Это бета-релиз! Вы используете это расширение на свой страх и риск...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/uk.yaml', 'filename' => '/var/www/html/system/languages/uk.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'FRONTMATTER_ERROR_PAGE' => '--- 'FRONTMATTER_ERROR_PAGE' => '---
title: %1$s title: %1$s
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/th.yaml', 'filename' => '/var/www/html/system/languages/th.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'FRONTMATTER_ERROR_PAGE' => '--- 'FRONTMATTER_ERROR_PAGE' => '---
ชื่อเรื่อง: %1$s ชื่อเรื่อง: %1$s
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/blueprints/admin/pages/modular_new.yaml', 'filename' => '/var/www/html/user/plugins/admin/blueprints/admin/pages/modular_new.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'rules' => [ 'rules' => [
'slug' => [ 'slug' => [
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/tr.yaml', 'filename' => '/var/www/html/system/languages/tr.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'NICETIME' => [ 'NICETIME' => [
'NO_DATE_PROVIDED' => 'Tarih yok', 'NO_DATE_PROVIDED' => 'Tarih yok',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/it.yaml', 'filename' => '/var/www/html/system/languages/it.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'FRONTMATTER_ERROR_PAGE' => '---Titolo: %1$s---# Errore: Frontmatter non valido: \'%2$s\' * *%3$s * * \' \'%4$s \' \'', 'FRONTMATTER_ERROR_PAGE' => '---Titolo: %1$s---# Errore: Frontmatter non valido: \'%2$s\' * *%3$s * * \' \'%4$s \' \'',
'NICETIME' => [ 'NICETIME' => [
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/hr.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/hr.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Ovo je Beta izdanje! Koristite u produkciji na vlastiti rizik...', 'ADMIN_BETA_MSG' => 'Ovo je Beta izdanje! Koristite u produkciji na vlastiti rizik...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/en.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/en.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'This is a Beta release! Use this in production at your own risk...', 'ADMIN_BETA_MSG' => 'This is a Beta release! Use this in production at your own risk...',
@@ -398,6 +398,10 @@ return [
'DISPLAY_ERRORS_HELP' => 'Display full backtrace-style error page', 'DISPLAY_ERRORS_HELP' => 'Display full backtrace-style error page',
'LOG_ERRORS' => 'Log errors', 'LOG_ERRORS' => 'Log errors',
'LOG_ERRORS_HELP' => 'Log errors to /logs folder', 'LOG_ERRORS_HELP' => 'Log errors to /logs folder',
'LOG_HANDLER' => 'Log handler',
'LOG_HANDLER_HELP' => 'Where to output the logs',
'SYSLOG_FACILITY' => 'Syslog facility',
'SYSLOG_FACILITY_HELP' => 'Syslog facility for output',
'DEBUGGER' => 'Debugger', 'DEBUGGER' => 'Debugger',
'DEBUGGER_HELP' => 'Enable Grav debugger and following settings', 'DEBUGGER_HELP' => 'Enable Grav debugger and following settings',
'DEBUG_TWIG' => 'Debug Twig', 'DEBUG_TWIG' => 'Debug Twig',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/br.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/br.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Un ermaeziadenn beta an hini eo! Arverit en endro produadur gant evezh...', 'ADMIN_BETA_MSG' => 'Un ermaeziadenn beta an hini eo! Arverit en endro produadur gant evezh...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/vi.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/vi.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Đây là phiên bản thử nghiệm! Bạn phải tự chịu rủi ro khi sử dụng trong production...', 'ADMIN_BETA_MSG' => 'Đây là phiên bản thử nghiệm! Bạn phải tự chịu rủi ro khi sử dụng trong production...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/fa.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/fa.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'این یک نسخه تکمیل نشده است! استفاده از آن در محصولتان شمارا با خطر مواجه میکند...', 'ADMIN_BETA_MSG' => 'این یک نسخه تکمیل نشده است! استفاده از آن در محصولتان شمارا با خطر مواجه میکند...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/ko.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/ko.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => '이것은 베타입니다! 개인적으로 사용할시 위험할수있습니다...', 'ADMIN_BETA_MSG' => '이것은 베타입니다! 개인적으로 사용할시 위험할수있습니다...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/config/streams.yaml', 'filename' => '/var/www/html/system/config/streams.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'schemes' => [ 'schemes' => [
'image' => [ 'image' => [
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/admin.yaml', 'filename' => '/var/www/html/user/plugins/admin/admin.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'enabled' => true, 'enabled' => true,
'route' => '/admin', 'route' => '/admin',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/pl.yaml', 'filename' => '/var/www/html/system/languages/pl.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'FRONTMATTER_ERROR_PAGE' => '--- 'FRONTMATTER_ERROR_PAGE' => '---
title: %1$s title: %1$s
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/pt.yaml', 'filename' => '/var/www/html/system/languages/pt.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'FRONTMATTER_ERROR_PAGE' => '--- 'FRONTMATTER_ERROR_PAGE' => '---
título: %1$s título: %1$s
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/blueprints/config/streams.yaml', 'filename' => '/var/www/html/system/blueprints/config/streams.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'title' => 'PLUGIN_ADMIN.FILE_STREAMS', 'title' => 'PLUGIN_ADMIN.FILE_STREAMS',
'form' => [ 'form' => [
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/nl.yaml', 'filename' => '/var/www/html/system/languages/nl.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'INFLECTOR_IRREGULAR' => [ 'INFLECTOR_IRREGULAR' => [
'person' => 'personen', 'person' => 'personen',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/config/media.yaml', 'filename' => '/var/www/html/system/config/media.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'types' => [ 'types' => [
'defaults' => [ 'defaults' => [
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/pt.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/pt.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Esta é uma versão Beta! Use por sua conta em risco...', 'ADMIN_BETA_MSG' => 'Esta é uma versão Beta! Use por sua conta em risco...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/hu.yaml', 'filename' => '/var/www/html/system/languages/hu.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'FRONTMATTER_ERROR_PAGE' => '--- 'FRONTMATTER_ERROR_PAGE' => '---
cím: %1$s cím: %1$s
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/blueprints/admin/pages/move.yaml', 'filename' => '/var/www/html/user/plugins/admin/blueprints/admin/pages/move.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'form' => [ 'form' => [
'validation' => 'loose', 'validation' => 'loose',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/no.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/no.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Dette er en betaversjon! Bruk denne i produksjon på egen risiko...', 'ADMIN_BETA_MSG' => 'Dette er en betaversjon! Bruk denne i produksjon på egen risiko...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/ja.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/ja.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'これはベータリリースです。稼働中サイトでは、自己責任においてご利用ください。', 'ADMIN_BETA_MSG' => 'これはベータリリースです。稼働中サイトでは、自己責任においてご利用ください。',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/de.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/de.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Dies ist eine Beta-Version! Benutzung auf eigene Gefahr...', 'ADMIN_BETA_MSG' => 'Dies ist eine Beta-Version! Benutzung auf eigene Gefahr...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/da.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/da.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Dette er en beta-udgivelse! Brug i produktionsmiljøer er på egen risiko...', 'ADMIN_BETA_MSG' => 'Dette er en beta-udgivelse! Brug i produktionsmiljøer er på egen risiko...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/it.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/it.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Questa è una versione beta! Usare in produzione a proprio rischio e pericolo…', 'ADMIN_BETA_MSG' => 'Questa è una versione beta! Usare in produzione a proprio rischio e pericolo…',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/pl.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/pl.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'To jest wersja Beta! Używasz jej w produkcji na własne ryzyko...', 'ADMIN_BETA_MSG' => 'To jest wersja Beta! Używasz jej w produkcji na własne ryzyko...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/blueprints/config/site.yaml', 'filename' => '/var/www/html/system/blueprints/config/site.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'title' => 'PLUGIN_ADMIN.SITE', 'title' => 'PLUGIN_ADMIN.SITE',
'form' => [ 'form' => [
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/nb.yaml', 'filename' => '/var/www/html/system/languages/nb.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'MONTHS_OF_THE_YEAR' => [ 'MONTHS_OF_THE_YEAR' => [
0 => 'januar', 0 => 'januar',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/ca.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/ca.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Aquesta és una versió beta! Utilitza-la en producció sota el teu propi risc...', 'ADMIN_BETA_MSG' => 'Aquesta és una versió beta! Utilitza-la en producció sota el teu propi risc...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/ar.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/ar.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'هذا إصدار بيتا! استخدم هذا في الإنتاج على مسؤوليتك الخاصة...', 'ADMIN_BETA_MSG' => 'هذا إصدار بيتا! استخدم هذا في الإنتاج على مسؤوليتك الخاصة...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/blueprints/pages/default.yaml', 'filename' => '/var/www/html/system/blueprints/pages/default.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'title' => 'PLUGIN_ADMIN.DEFAULT', 'title' => 'PLUGIN_ADMIN.DEFAULT',
'rules' => [ 'rules' => [
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/sk.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/sk.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Toto je Beta verzia! Používajte v ostrej prevádzke na vlastné riziko...', 'ADMIN_BETA_MSG' => 'Toto je Beta verzia! Používajte v ostrej prevádzke na vlastné riziko...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/et.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/et.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Tegemist on beeta-versiooniga! Kasutamine töötaval veebilehel oma vastutusel...', 'ADMIN_BETA_MSG' => 'Tegemist on beeta-versiooniga! Kasutamine töötaval veebilehel oma vastutusel...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/ar.yaml', 'filename' => '/var/www/html/system/languages/ar.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'FRONTMATTER_ERROR_PAGE' => '--- 'FRONTMATTER_ERROR_PAGE' => '---
العنوان: %1$s العنوان: %1$s
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/tr.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/tr.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Bu bir beta sürümüdür! Sunucunuzda kullanmak sizin sorumluluğunuzdadır...', 'ADMIN_BETA_MSG' => 'Bu bir beta sürümüdür! Sunucunuzda kullanmak sizin sorumluluğunuzdadır...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/vi.yaml', 'filename' => '/var/www/html/system/languages/vi.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'FRONTMATTER_ERROR_PAGE' => '--- 'FRONTMATTER_ERROR_PAGE' => '---
title: %1$s title: %1$s
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/fi.yaml', 'filename' => '/var/www/html/system/languages/fi.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'NICETIME' => [ 'NICETIME' => [
'NO_DATE_PROVIDED' => 'Päivämäärää ei annettu', 'NO_DATE_PROVIDED' => 'Päivämäärää ei annettu',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/sv.yaml', 'filename' => '/var/www/html/system/languages/sv.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'FRONTMATTER_ERROR_PAGE' => '--- titel: %1$s --- # Fel: Ogiltig Frontmatter-sökväg: `%2$s` **%3$s** ``` %4$s ```', 'FRONTMATTER_ERROR_PAGE' => '--- titel: %1$s --- # Fel: Ogiltig Frontmatter-sökväg: `%2$s` **%3$s** ``` %4$s ```',
'NICETIME' => [ 'NICETIME' => [
@@ -0,0 +1,9 @@
<?php
return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/data/licenses.yaml',
'modified' => 1531318905,
'data' => [
]
];
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/hr.yaml', 'filename' => '/var/www/html/system/languages/hr.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'INFLECTOR_UNCOUNTABLE' => [ 'INFLECTOR_UNCOUNTABLE' => [
0 => 'oprema', 0 => 'oprema',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/ja.yaml', 'filename' => '/var/www/html/system/languages/ja.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'FRONTMATTER_ERROR_PAGE' => '--- 'FRONTMATTER_ERROR_PAGE' => '---
title: %1$s title: %1$s
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/el.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/el.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Αυτή είναι μία έκδοση Beta! Χρησιμοποιήστε την στην Παραγωγή με δικό σας ρίσκο...', 'ADMIN_BETA_MSG' => 'Αυτή είναι μία έκδοση Beta! Χρησιμοποιήστε την στην Παραγωγή με δικό σας ρίσκο...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/themes/grav/templates/forms/fields/iconpicker/icons.yaml', 'filename' => '/var/www/html/user/plugins/admin/themes/grav/templates/forms/fields/iconpicker/icons.yaml',
'modified' => 1529597236, 'modified' => 1532585277,
'data' => [ 'data' => [
'icons' => [ 'icons' => [
0 => [ 0 => [
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/lt.yaml', 'filename' => '/var/www/html/system/languages/lt.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'INFLECTOR_UNCOUNTABLE' => [ 'INFLECTOR_UNCOUNTABLE' => [
2 => 'ryžiai', 2 => 'ryžiai',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/en.yaml', 'filename' => '/var/www/html/system/languages/en.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'FRONTMATTER_ERROR_PAGE' => '--- 'FRONTMATTER_ERROR_PAGE' => '---
title: %1$s title: %1$s
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/blueprints/config/system.yaml', 'filename' => '/var/www/html/system/blueprints/config/system.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'title' => 'PLUGIN_ADMIN.SYSTEM', 'title' => 'PLUGIN_ADMIN.SYSTEM',
'form' => [ 'form' => [
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/el.yaml', 'filename' => '/var/www/html/system/languages/el.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'MONTHS_OF_THE_YEAR' => [ 'MONTHS_OF_THE_YEAR' => [
0 => 'Ιανουάριος', 0 => 'Ιανουάριος',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/sk.yaml', 'filename' => '/var/www/html/system/languages/sk.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'NICETIME' => [ 'NICETIME' => [
'NO_DATE_PROVIDED' => 'Neposkytnutý žiaden dátum', 'NO_DATE_PROVIDED' => 'Neposkytnutý žiaden dátum',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/uk.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/uk.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Це бета-реліз! Використовуйте його на продуктовому сервері на свій страх і ризик...', 'ADMIN_BETA_MSG' => 'Це бета-реліз! Використовуйте його на продуктовому сервері на свій страх і ризик...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/bg.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/bg.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Това е Бета версия! Използвате на ваша отговорност...', 'ADMIN_BETA_MSG' => 'Това е Бета версия! Използвате на ваша отговорност...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/blueprints/admin/pages/new_folder.yaml', 'filename' => '/var/www/html/user/plugins/admin/blueprints/admin/pages/new_folder.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'rules' => [ 'rules' => [
'slug' => [ 'slug' => [
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/config/system.yaml', 'filename' => '/var/www/html/system/config/system.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'absolute_urls' => false, 'absolute_urls' => false,
'timezone' => '', 'timezone' => '',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/cy.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/cy.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Mae hwn yn fersiwn beta! Defnyddio hwn yn cynhyrchu ar risg eich hun...', 'ADMIN_BETA_MSG' => 'Mae hwn yn fersiwn beta! Defnyddio hwn yn cynhyrchu ar risg eich hun...',
@@ -2,10 +2,10 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/blueprints.yaml', 'filename' => '/var/www/html/user/plugins/admin/blueprints.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'name' => 'Admin Panel', 'name' => 'Admin Panel',
'version' => '1.8.5', 'version' => '1.8.6',
'description' => 'Adds an advanced administration panel to manage your site', 'description' => 'Adds an advanced administration panel to manage your site',
'icon' => 'empire', 'icon' => 'empire',
'author' => [ 'author' => [
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/he.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/he.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'זוהי מהדורת ביתא! השימוש על אחריותכם בלבד...', 'ADMIN_BETA_MSG' => 'זוהי מהדורת ביתא! השימוש על אחריותכם בלבד...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/blueprints/config/media.yaml', 'filename' => '/var/www/html/system/blueprints/config/media.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'title' => 'PLUGIN_ADMIN.MEDIA', 'title' => 'PLUGIN_ADMIN.MEDIA',
'form' => [ 'form' => [
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/th.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/th.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'นี่เป็นรุ่นทดลอง หากคุณใช้บนเว็บจริงคุณต้องยอมรับในความเสี่ยงนั้นเอง', 'ADMIN_BETA_MSG' => 'นี่เป็นรุ่นทดลอง หากคุณใช้บนเว็บจริงคุณต้องยอมรับในความเสี่ยงนั้นเอง',
@@ -0,0 +1,48 @@
<?php
return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/themes/r2c/blueprints/modular/images.yaml',
'modified' => 1532585841,
'data' => [
'title' => 'PLUGIN_ADMIN.MODULAR',
'extends@' => 'default',
'form' => [
'fields' => [
'tabs' => [
'type' => 'tabs',
'active' => 1,
'fields' => [
'content' => [
'fields' => [
'modular_title' => [
'type' => 'spacer',
'title' => 'PLUGIN_ADMIN.MODULAR_SETUP'
],
'header.content.items' => [
'type' => 'text',
'label' => 'PLUGIN_ADMIN.ITEMS',
'default' => '@self.modular',
'size' => 'medium'
],
'header.content.order.by' => [
'type' => 'text',
'label' => 'PLUGIN_ADMIN.ORDER_BY',
'placeholder' => 'date',
'help' => NULL,
'size' => 'small'
],
'header.content.order.dir' => [
'type' => 'text',
'label' => 'PLUGIN_ADMIN.ORDER',
'help' => '"desc" or "asc" are valid values',
'placeholder' => 'desc',
'size' => 'small'
]
]
]
]
]
]
]
]
];
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/da.yaml', 'filename' => '/var/www/html/system/languages/da.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'FRONTMATTER_ERROR_PAGE' => '--- 'FRONTMATTER_ERROR_PAGE' => '---
Titel: %1$s Titel: %1$s
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/de.yaml', 'filename' => '/var/www/html/system/languages/de.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'FRONTMATTER_ERROR_PAGE' => '--- 'FRONTMATTER_ERROR_PAGE' => '---
title: %1$s title: %1$s
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/sl.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/sl.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'LOGIN_BTN' => 'Prijava', 'LOGIN_BTN' => 'Prijava',
@@ -2,9 +2,9 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/config/site.yaml', 'filename' => '/var/www/html/user/config/site.yaml',
'modified' => 1530713574, 'modified' => 1531325457,
'data' => [ 'data' => [
'title' => 'r2c', 'title' => 'Réseau de convivialité',
'default_lang' => 'en', 'default_lang' => 'en',
'author' => [ 'author' => [
'name' => 'Kevin Tessier', 'name' => 'Kevin Tessier',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/es.yaml', 'filename' => '/var/www/html/system/languages/es.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'FRONTMATTER_ERROR_PAGE' => '--- 'FRONTMATTER_ERROR_PAGE' => '---
title: %1$s title: %1$s
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/no.yaml', 'filename' => '/var/www/html/system/languages/no.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'FRONTMATTER_ERROR_PAGE' => '--- 'FRONTMATTER_ERROR_PAGE' => '---
Tittel: %1$s Tittel: %1$s
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/ca.yaml', 'filename' => '/var/www/html/system/languages/ca.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'FRONTMATTER_ERROR_PAGE' => '--- 'FRONTMATTER_ERROR_PAGE' => '---
title: %1$s title: %1$s
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/fr.yaml', 'filename' => '/var/www/html/system/languages/fr.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'FRONTMATTER_ERROR_PAGE' => '--- 'FRONTMATTER_ERROR_PAGE' => '---
title: %1$s title: %1$s
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/cs.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/cs.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Jedná se o beta verzi! V ostrém provozu používejte pouze na vlastní nebezpečí...', 'ADMIN_BETA_MSG' => 'Jedná se o beta verzi! V ostrém provozu používejte pouze na vlastní nebezpečí...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/ro.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/ro.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Aceasta este o versiune Beta! Folosiți-o pe propiul risc...', 'ADMIN_BETA_MSG' => 'Aceasta este o versiune Beta! Folosiți-o pe propiul risc...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/eu.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/eu.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Beta bertsio bat da hau! Produkzioan erabili ezazu zure ardurapean...', 'ADMIN_BETA_MSG' => 'Beta bertsio bat da hau! Produkzioan erabili ezazu zure ardurapean...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/system/languages/ru.yaml', 'filename' => '/var/www/html/system/languages/ru.yaml',
'modified' => 1529597236, 'modified' => 1532585289,
'data' => [ 'data' => [
'FRONTMATTER_ERROR_PAGE' => '--- 'FRONTMATTER_ERROR_PAGE' => '---
title: %1$s title: %1$s
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/fi.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/fi.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Tämä on beta-versio! Käyttö tuotannossa omalla vastuulla...', 'ADMIN_BETA_MSG' => 'Tämä on beta-versio! Käyttö tuotannossa omalla vastuulla...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/fr.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/fr.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Ceci est une version bêta ! Utilisez-là en production à vos risques et périls...', 'ADMIN_BETA_MSG' => 'Ceci est une version bêta ! Utilisez-là en production à vos risques et périls...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/blueprints/admin/pages/new.yaml', 'filename' => '/var/www/html/user/plugins/admin/blueprints/admin/pages/new.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'rules' => [ 'rules' => [
'slug' => [ 'slug' => [
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/tlh.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/tlh.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'LOGIN_BTN_FORGOT' => 'lIj', 'LOGIN_BTN_FORGOT' => 'lIj',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/nl.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/nl.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Dit is een betaversie! Gebruik op een live site is voor eigen risico...', 'ADMIN_BETA_MSG' => 'Dit is een betaversie! Gebruik op een live site is voor eigen risico...',
@@ -2,7 +2,7 @@
return [ return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile', '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => '/var/www/html/user/plugins/admin/languages/hu.yaml', 'filename' => '/var/www/html/user/plugins/admin/languages/hu.yaml',
'modified' => 1529597236, 'modified' => 1532585276,
'data' => [ 'data' => [
'PLUGIN_ADMIN' => [ 'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'Ez egy béta kiadás! Éles környezetben csak saját felelősségre használd...', 'ADMIN_BETA_MSG' => 'Ez egy béta kiadás! Éles környezetben csak saját felelősségre használd...',
+75 -71
View File
@@ -1,121 +1,121 @@
<?php <?php
return [ return [
'@class' => 'Grav\\Common\\Config\\CompiledLanguages', '@class' => 'Grav\\Common\\Config\\CompiledLanguages',
'timestamp' => 1531324258, 'timestamp' => 1532585293,
'checksum' => '09c224178739f64346019fcb4930233a', 'checksum' => 'cedd8b4d1d82ee5d40ce24a18d8b6a75',
'files' => [ 'files' => [
'system/languages' => [ 'system/languages' => [
'ar' => [ 'ar' => [
'file' => 'system/languages/ar.yaml', 'file' => 'system/languages/ar.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'ca' => [ 'ca' => [
'file' => 'system/languages/ca.yaml', 'file' => 'system/languages/ca.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'cs' => [ 'cs' => [
'file' => 'system/languages/cs.yaml', 'file' => 'system/languages/cs.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'da' => [ 'da' => [
'file' => 'system/languages/da.yaml', 'file' => 'system/languages/da.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'de' => [ 'de' => [
'file' => 'system/languages/de.yaml', 'file' => 'system/languages/de.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'el' => [ 'el' => [
'file' => 'system/languages/el.yaml', 'file' => 'system/languages/el.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'en' => [ 'en' => [
'file' => 'system/languages/en.yaml', 'file' => 'system/languages/en.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'es' => [ 'es' => [
'file' => 'system/languages/es.yaml', 'file' => 'system/languages/es.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'fi' => [ 'fi' => [
'file' => 'system/languages/fi.yaml', 'file' => 'system/languages/fi.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'fr' => [ 'fr' => [
'file' => 'system/languages/fr.yaml', 'file' => 'system/languages/fr.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'hr' => [ 'hr' => [
'file' => 'system/languages/hr.yaml', 'file' => 'system/languages/hr.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'hu' => [ 'hu' => [
'file' => 'system/languages/hu.yaml', 'file' => 'system/languages/hu.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'it' => [ 'it' => [
'file' => 'system/languages/it.yaml', 'file' => 'system/languages/it.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'ja' => [ 'ja' => [
'file' => 'system/languages/ja.yaml', 'file' => 'system/languages/ja.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'lt' => [ 'lt' => [
'file' => 'system/languages/lt.yaml', 'file' => 'system/languages/lt.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'nb' => [ 'nb' => [
'file' => 'system/languages/nb.yaml', 'file' => 'system/languages/nb.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'nl' => [ 'nl' => [
'file' => 'system/languages/nl.yaml', 'file' => 'system/languages/nl.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'no' => [ 'no' => [
'file' => 'system/languages/no.yaml', 'file' => 'system/languages/no.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'pl' => [ 'pl' => [
'file' => 'system/languages/pl.yaml', 'file' => 'system/languages/pl.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'pt' => [ 'pt' => [
'file' => 'system/languages/pt.yaml', 'file' => 'system/languages/pt.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'ro' => [ 'ro' => [
'file' => 'system/languages/ro.yaml', 'file' => 'system/languages/ro.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'ru' => [ 'ru' => [
'file' => 'system/languages/ru.yaml', 'file' => 'system/languages/ru.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'sk' => [ 'sk' => [
'file' => 'system/languages/sk.yaml', 'file' => 'system/languages/sk.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'sv' => [ 'sv' => [
'file' => 'system/languages/sv.yaml', 'file' => 'system/languages/sv.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'th' => [ 'th' => [
'file' => 'system/languages/th.yaml', 'file' => 'system/languages/th.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'tr' => [ 'tr' => [
'file' => 'system/languages/tr.yaml', 'file' => 'system/languages/tr.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'uk' => [ 'uk' => [
'file' => 'system/languages/uk.yaml', 'file' => 'system/languages/uk.yaml',
'modified' => 1529597236 'modified' => 1532585289
], ],
'vi' => [ 'vi' => [
'file' => 'system/languages/vi.yaml', 'file' => 'system/languages/vi.yaml',
'modified' => 1529597236 'modified' => 1532585289
] ]
], ],
'user/plugins' => [ 'user/plugins' => [
@@ -173,159 +173,159 @@ return [
'user/plugins/admin/languages' => [ 'user/plugins/admin/languages' => [
'ar' => [ 'ar' => [
'file' => 'user/plugins/admin/languages/ar.yaml', 'file' => 'user/plugins/admin/languages/ar.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'bg' => [ 'bg' => [
'file' => 'user/plugins/admin/languages/bg.yaml', 'file' => 'user/plugins/admin/languages/bg.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'br' => [ 'br' => [
'file' => 'user/plugins/admin/languages/br.yaml', 'file' => 'user/plugins/admin/languages/br.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'ca' => [ 'ca' => [
'file' => 'user/plugins/admin/languages/ca.yaml', 'file' => 'user/plugins/admin/languages/ca.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'cs' => [ 'cs' => [
'file' => 'user/plugins/admin/languages/cs.yaml', 'file' => 'user/plugins/admin/languages/cs.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'cy' => [ 'cy' => [
'file' => 'user/plugins/admin/languages/cy.yaml', 'file' => 'user/plugins/admin/languages/cy.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'da' => [ 'da' => [
'file' => 'user/plugins/admin/languages/da.yaml', 'file' => 'user/plugins/admin/languages/da.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'de' => [ 'de' => [
'file' => 'user/plugins/admin/languages/de.yaml', 'file' => 'user/plugins/admin/languages/de.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'el' => [ 'el' => [
'file' => 'user/plugins/admin/languages/el.yaml', 'file' => 'user/plugins/admin/languages/el.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'en' => [ 'en' => [
'file' => 'user/plugins/admin/languages/en.yaml', 'file' => 'user/plugins/admin/languages/en.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'es' => [ 'es' => [
'file' => 'user/plugins/admin/languages/es.yaml', 'file' => 'user/plugins/admin/languages/es.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'et' => [ 'et' => [
'file' => 'user/plugins/admin/languages/et.yaml', 'file' => 'user/plugins/admin/languages/et.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'eu' => [ 'eu' => [
'file' => 'user/plugins/admin/languages/eu.yaml', 'file' => 'user/plugins/admin/languages/eu.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'fa' => [ 'fa' => [
'file' => 'user/plugins/admin/languages/fa.yaml', 'file' => 'user/plugins/admin/languages/fa.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'fi' => [ 'fi' => [
'file' => 'user/plugins/admin/languages/fi.yaml', 'file' => 'user/plugins/admin/languages/fi.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'fr' => [ 'fr' => [
'file' => 'user/plugins/admin/languages/fr.yaml', 'file' => 'user/plugins/admin/languages/fr.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'he' => [ 'he' => [
'file' => 'user/plugins/admin/languages/he.yaml', 'file' => 'user/plugins/admin/languages/he.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'hr' => [ 'hr' => [
'file' => 'user/plugins/admin/languages/hr.yaml', 'file' => 'user/plugins/admin/languages/hr.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'hu' => [ 'hu' => [
'file' => 'user/plugins/admin/languages/hu.yaml', 'file' => 'user/plugins/admin/languages/hu.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'id' => [ 'id' => [
'file' => 'user/plugins/admin/languages/id.yaml', 'file' => 'user/plugins/admin/languages/id.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'it' => [ 'it' => [
'file' => 'user/plugins/admin/languages/it.yaml', 'file' => 'user/plugins/admin/languages/it.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'ja' => [ 'ja' => [
'file' => 'user/plugins/admin/languages/ja.yaml', 'file' => 'user/plugins/admin/languages/ja.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'ko' => [ 'ko' => [
'file' => 'user/plugins/admin/languages/ko.yaml', 'file' => 'user/plugins/admin/languages/ko.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'lt' => [ 'lt' => [
'file' => 'user/plugins/admin/languages/lt.yaml', 'file' => 'user/plugins/admin/languages/lt.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'nl' => [ 'nl' => [
'file' => 'user/plugins/admin/languages/nl.yaml', 'file' => 'user/plugins/admin/languages/nl.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'no' => [ 'no' => [
'file' => 'user/plugins/admin/languages/no.yaml', 'file' => 'user/plugins/admin/languages/no.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'pl' => [ 'pl' => [
'file' => 'user/plugins/admin/languages/pl.yaml', 'file' => 'user/plugins/admin/languages/pl.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'pt' => [ 'pt' => [
'file' => 'user/plugins/admin/languages/pt.yaml', 'file' => 'user/plugins/admin/languages/pt.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'ro' => [ 'ro' => [
'file' => 'user/plugins/admin/languages/ro.yaml', 'file' => 'user/plugins/admin/languages/ro.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'ru' => [ 'ru' => [
'file' => 'user/plugins/admin/languages/ru.yaml', 'file' => 'user/plugins/admin/languages/ru.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'sk' => [ 'sk' => [
'file' => 'user/plugins/admin/languages/sk.yaml', 'file' => 'user/plugins/admin/languages/sk.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'sl' => [ 'sl' => [
'file' => 'user/plugins/admin/languages/sl.yaml', 'file' => 'user/plugins/admin/languages/sl.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'sv' => [ 'sv' => [
'file' => 'user/plugins/admin/languages/sv.yaml', 'file' => 'user/plugins/admin/languages/sv.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'th' => [ 'th' => [
'file' => 'user/plugins/admin/languages/th.yaml', 'file' => 'user/plugins/admin/languages/th.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'tlh' => [ 'tlh' => [
'file' => 'user/plugins/admin/languages/tlh.yaml', 'file' => 'user/plugins/admin/languages/tlh.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'tr' => [ 'tr' => [
'file' => 'user/plugins/admin/languages/tr.yaml', 'file' => 'user/plugins/admin/languages/tr.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'uk' => [ 'uk' => [
'file' => 'user/plugins/admin/languages/uk.yaml', 'file' => 'user/plugins/admin/languages/uk.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'vi' => [ 'vi' => [
'file' => 'user/plugins/admin/languages/vi.yaml', 'file' => 'user/plugins/admin/languages/vi.yaml',
'modified' => 1529597236 'modified' => 1532585276
], ],
'zh' => [ 'zh' => [
'file' => 'user/plugins/admin/languages/zh.yaml', 'file' => 'user/plugins/admin/languages/zh.yaml',
'modified' => 1529597236 'modified' => 1532585276
] ]
] ]
], ],
@@ -5716,6 +5716,10 @@ Pfad: `%2$s`
'DISPLAY_ERRORS_HELP' => 'Display full backtrace-style error page', 'DISPLAY_ERRORS_HELP' => 'Display full backtrace-style error page',
'LOG_ERRORS' => 'Log errors', 'LOG_ERRORS' => 'Log errors',
'LOG_ERRORS_HELP' => 'Log errors to /logs folder', 'LOG_ERRORS_HELP' => 'Log errors to /logs folder',
'LOG_HANDLER' => 'Log handler',
'LOG_HANDLER_HELP' => 'Where to output the logs',
'SYSLOG_FACILITY' => 'Syslog facility',
'SYSLOG_FACILITY_HELP' => 'Syslog facility for output',
'DEBUGGER' => 'Debugger', 'DEBUGGER' => 'Debugger',
'DEBUGGER_HELP' => 'Enable Grav debugger and following settings', 'DEBUGGER_HELP' => 'Enable Grav debugger and following settings',
'DEBUG_TWIG' => 'Debug Twig', 'DEBUG_TWIG' => 'Debug Twig',
@@ -22870,7 +22874,7 @@ Path: `%2$s`
6 => 'søndag' 6 => 'søndag'
] ]
], ],
'checksum' => '09c224178739f64346019fcb4930233a', 'checksum' => 'cedd8b4d1d82ee5d40ce24a18d8b6a75',
'timestamp' => 1531324258 'timestamp' => 1532585293
] ]
]; ];
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 164 KiB

Some files were not shown because too many files have changed in this diff Show More