CodePinch.php
9 years ago
Helper.php
9 years ago
Localization.php
9 years ago
PostOptionList.php
9 years ago
SecurityOptionList.php
9 years ago
UtilityOptionList.php
9 years ago
PostOptionList.php
76 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * ====================================================================== |
| 5 | * LICENSE: This file is subject to the terms and conditions defined in * |
| 6 | * file 'license.txt', which is part of this source code package. * |
| 7 | * ====================================================================== |
| 8 | */ |
| 9 | |
| 10 | return array( |
| 11 | 'frontend' => array( |
| 12 | 'list' => array( |
| 13 | 'title' => __('List', AAM_KEY), |
| 14 | 'descr' => __('Hide %s.', AAM_KEY) |
| 15 | ), |
| 16 | 'list_others' => array( |
| 17 | 'title' => __('List To Others', AAM_KEY), |
| 18 | 'descr' => __('Hide %s for all except author.', AAM_KEY) |
| 19 | ), |
| 20 | 'read' => array( |
| 21 | 'title' => __('Read', AAM_KEY), |
| 22 | 'descr' => __('Restrict access to read %s.', AAM_KEY) |
| 23 | ), |
| 24 | 'read_others' => array( |
| 25 | 'title' => __('Read By Others', AAM_KEY), |
| 26 | 'descr' => __('Restrict access to read for all except author.', AAM_KEY) |
| 27 | ), |
| 28 | 'limit' => array( |
| 29 | 'title' => __('Limit', AAM_KEY), |
| 30 | 'descr' => __('If checked, show defined in the Content Teaser tab teaser message instead of %s content.', AAM_KEY) |
| 31 | ), |
| 32 | 'comment' => array( |
| 33 | 'title' => __('Comment', AAM_KEY), |
| 34 | 'descr' => __('Restrict access to comment on %s if commenting feature is enabled.', AAM_KEY) |
| 35 | ), |
| 36 | 'protected' => array( |
| 37 | 'title' => __('Password Protected', AAM_KEY), |
| 38 | 'sub' => '<small>' . sprintf(__('Password: %s', AAM_KEY), '<b data-preview="frontend.password" id="post-password"></b>' ) . ' <a href="#" class="change-password" data-ref="frontend.password" data-preview-id="post-password">' . __('change', AAM_KEY) . '</a></small>', |
| 39 | 'descr' => __('Add a password protection for the %s.', AAM_KEY) |
| 40 | ) |
| 41 | ), |
| 42 | 'backend' => array( |
| 43 | 'list' => array( |
| 44 | 'title' => __('List', AAM_KEY), |
| 45 | 'descr' => __('Hide %s.', AAM_KEY) |
| 46 | ), |
| 47 | 'list_others' => array( |
| 48 | 'title' => __('List To Others', AAM_KEY), |
| 49 | 'descr' => __('Hide %s for all except author.', AAM_KEY) |
| 50 | ), |
| 51 | 'edit' => array( |
| 52 | 'title' => __('Edit', AAM_KEY), |
| 53 | 'descr' => __('Restrict access to edit %s.', AAM_KEY) |
| 54 | ), |
| 55 | 'edit_others' => array( |
| 56 | 'title' => __('Edit By Others', AAM_KEY), |
| 57 | 'descr' => __('Restrict access to edit %s for all except author.', AAM_KEY) |
| 58 | ), |
| 59 | 'delete' => array( |
| 60 | 'title' => __('Delete', AAM_KEY), |
| 61 | 'descr' => __('Restrict access to trash or permanently delete %s.', AAM_KEY) |
| 62 | ), |
| 63 | 'delete_others' => array( |
| 64 | 'title' => __('Delete By Others', AAM_KEY), |
| 65 | 'descr' => __('Restrict access to trash or permanently delete %s for all except author.', AAM_KEY) |
| 66 | ), |
| 67 | 'publish' => array( |
| 68 | 'title' => __('Publish', AAM_KEY), |
| 69 | 'descr' => __('Restrict access to publish %s. Quick Edit inline action is also removed.', AAM_KEY) |
| 70 | ), |
| 71 | 'publish_others' => array( |
| 72 | 'title' => __('Publish By Others', AAM_KEY), |
| 73 | 'descr' => __('Restrict access to publish %s for all except author. Quick Edit inline action is also removed.', AAM_KEY) |
| 74 | ) |
| 75 | ) |
| 76 | ); |