openclassify/vendor/anomaly/posts-module/resources/lang/en/field.php
Mostafa Moradi cd80f0352b initial
2022-03-09 12:57:37 +03:00

100 lines
3.8 KiB
PHP

<?php
return [
'name' => [
'name' => 'Name',
'instructions' => [
'types' => 'Specify a short descriptive name for this post type.',
'categories' => 'Specify a short descriptive name for this category.',
],
],
'title' => [
'name' => 'Title',
'instructions' => 'Specify a short descriptive title for this post.',
],
'slug' => [
'name' => 'Slug',
'instructions' => [
'types' => 'The slug is used in making the database table for posts of this type.',
'categories' => 'The slug is used in building the category\'s URL.',
'posts' => 'The slug is used in building the post\'s URL.',
],
],
'description' => [
'name' => 'Description',
'instructions' => [
'types' => 'Briefly describe the post type.',
'categories' => 'Briefly describe the category.',
],
'warning' => 'This may or may not be displayed publicly depending on how your website was built.',
],
'summary' => [
'name' => 'Summary',
'instructions' => 'Write a brief summary to introduce this post.',
],
'category' => [
'name' => 'Category',
'instructions' => 'Choose which category this post belongs to.',
],
'meta_title' => [
'name' => 'Meta Title',
'instructions' => 'Specify the SEO title.',
'warning' => [
'posts' => 'The post title will be used by default.',
'types' => 'The type name will be used by default.',
'categories' => 'The category name will be used by default.',
],
],
'meta_description' => [
'name' => 'Meta Description',
'instructions' => 'Specify the SEO description.',
],
'theme_layout' => [
'name' => 'Theme Layout',
'instructions' => 'Specify the theme layout to wrap the <strong>post layout</strong> with.',
],
'layout' => [
'name' => 'Post Layout',
'instructions' => 'The layout is used for displaying the post\'s content.',
],
'tags' => [
'name' => 'Tags',
'instructions' => 'Specify any organizational tags to help group your post with others.',
],
'enabled' => [
'name' => 'Enabled',
'label' => 'Is this post enabled?',
'instructions' => 'If disabled, you can still access a secure preview link in the control panel.',
'warning' => 'This post must be enabled before it can be viewed <strong>publicly</strong>.',
],
'featured' => [
'name' => 'Featured',
'label' => 'Is this a featured post?',
'instructions' => 'Featured posts can be used to bring attention to specific posts.',
'warning' => 'This may or may not have an effect depending on how your website was built.',
],
'publish_at' => [
'name' => 'Publish Date/Time',
'instructions' => 'Specify the publish date/time for this post.',
'warning' => 'If set to the future, this post will not be visible until then.',
],
'author' => [
'name' => 'Author',
'instructions' => 'Specify the publicly displayed author of this post.',
],
'status' => [
'name' => 'Status',
'option' => [
'live' => 'Live',
'draft' => 'Draft',
'scheduled' => 'Scheduled',
],
],
'content' => [
'name' => 'Content',
],
'type' => [
'name' => 'Type',
],
];