Zikula_Core
[ class tree: Zikula_Core ] [ index: Zikula_Core ] [ all elements ]

Source for file common.php

Documentation is available at common.php

  1. <?php
  2. /**
  3.  * Zikula Application Framework
  4.  *
  5.  * @copyright value4business GmbH
  6.  * @link http://www.zikula.org
  7.  * @version $Id: common.php 24342 2008-06-06 12:03:14Z markwest $
  8.  * @license GNU/GPL - http://www.gnu.org/copyleft/gpl.html
  9.  * @author Robert Gasch robert.gasch@value4business.com
  10.  * @package Zikula_Core
  11.  */
  12.  
  13. // general
  14. define('_CATEGORIES_IPATH',                 'I-path');
  15. define('_CATEGORIES_PATH',                  'Path');
  16. define('_CATEGORIES_ROOTCAT',               'Root category');
  17.  
  18. // navigation
  19. define('_CATEGORIES_REGISTRY',              'Category Registry');
  20. define('_CATEGORIES_VIEWCATEGORIES',        'View categories');
  21. define('_CATEGORIES_CREATECATEGORY',        'Create category');
  22. define('_CATEGORIES_MODIFYCATEGORY',        'Modify category');
  23. define('_CATEGORIES_DELETECATEGORY',        'Delete category');
  24. define('_CATEGORIES_CONFIRMDELETECATEGORY''Do you really want to delete this category?');
  25.  
  26. // view template
  27. define('_CATEGORIES_VIEW_TITLE',            'Categories List');
  28.  
  29. // user template
  30. define('_CATEGORIES_EDIT_SUBCATEGORIES',    'Edit subcategories under this node');
  31. define('_CATEGORIES_EDIT_USER',             'Edit your user categories');
  32. define('_CATEGORIES_EDIT_USER_DISABLED',    'Sorry, user-owned category editing has not been enabled. Your site admin can enable this feature.');
  33. define('_CATEGORIES_EDIT_USER_NOT_OWN',     'Sorry, it looks like you\'re trying to edit another user\'s categories. This is only allowed for site admins.');
  34.  
  35. // new/edit template
  36. define('_CATEGORIES_ADDITIONALDATA',        'Additional data fields');
  37. define('_CATEGORIES_ADVANCED',              'Toggle advanced mode');
  38. define('_CATEGORIES_ATTRIBUTES',            'Attributes');
  39. define('_CATEGORIES_ATTRIBUTE_ADD',         'Add an Attribute');
  40. define('_CATEGORIES_ATTRIBUTE_NAME',        'Attribute Name');
  41. define('_CATEGORIES_ATTRIBUTE_VALUE',       'Attribute Value');
  42. define('_CATEGORIES_BACK_TO_REFERER',       'Back to referring module');
  43. define('_CATEGORIES_BASEINFO',              'Basic category information');
  44. define('_CATEGORIES_CATEGORY_IS_LOCKED',    'This category has been locked by the administrator and can not be edited or deleted.');
  45. define('_CATEGORIES_CATEGORY_DELETE_CONFIRM''Are you sure you wish to delete the category [');
  46. define('_CATEGORIES_CATEGORY_DELETE_CONFIRM_QM''] ?');
  47. define('_CATEGORIES_COPY_SUCCESS',            'The category [%s] has been successfully copied');
  48. define('_CATEGORIES_DELETE_SUCCESS',        'The category [%s] has been successfully deleted');
  49. define('_CATEGORIES_INSERT_SUCCESS',        'The category [%s] has been successfully inserted');
  50. define('_CATEGORIES_IS_LEAF',               'Category is a leaf node');
  51. define('_CATEGORIES_IS_LOCKED',             'Category is locked');
  52. define('_CATEGORIES_LOCALISATION',          'Localised output');
  53. define('_CATEGORIES_LOCALNAME_UNDEFINED',     'Localized name undefined');
  54. define('_CATEGORIES_META',                  'Category meta data');
  55. define('_CATEGORIES_MOVE_SUCCESS',            'The category [%s] has been successfully moved');
  56. define('_CATEGORIES_PARENT',                'Parent');
  57. define('_CATEGORIES_REBUILD_SUCCESS',        'The category paths have been successfully rebuilt');
  58. define('_CATEGORIES_ROOT_PARENT_LOCKED',    'Parent category for root node can not be changed');
  59. define('_CATEGORIES_SECURITY_DOMAIN',       'Security domain');
  60. define('_CATEGORIES_SORT_VALUE',            'Sort value');
  61. define('_CATEGORIES_STATUS',                'Active');
  62. define('_CATEGORIES_SYSTEM_INFO',           'Category System Information');
  63. define('_CATEGORIES_UPDATE_SUCCESS',        'The category [%s] has been successfully updated');
  64. define('_CATEGORIES_VALUE',                 'Value');
  65.  
  66. // preferences template
  67. define('_CATEGORIES_PREFS',                 'Preferences');
  68. define('_CATEGORIES_PREFS_USERROOTCAT',     'Root Category for User Categories');
  69. define('_CATEGORIES_PREFS_ALLOWUSERCATEDIT''Allow each user to edit their own categories');
  70. define('_CATEGORIES_PREFS_AUTOCREATEUSERCAT''Autocreate user category root folder');
  71. define('_CATEGORIES_PREFS_AUTOCREATEUSERDEFAULTCAT''Autocreate user default category');
  72. define('_CATEGORIES_PREFS_USERDEFAULTCATNAME''Default user category');
  73. define('_CATEGORIES_PREFS_PERMISSIONSALL',   'Require access to all categories for one item (relevant when using multiple categories per content item)');
  74. define('_CATEGORIES_REBUILDPATHS',          'Rebuild paths');
  75. // list template
  76. define('_CATEGORIES_RESEQUENCE',            'Re-sequence');
  77.  
  78. // delete template
  79. define('_CATEGORIES_SUBCATS_DELETE',        'Delete all subcategories');
  80. define('_CATEGORIES_SUBCATS_MOVE',          'Move all subcategories to the next category');
  81. define('_CATEGORIES_SUBCATS_STATUS',        'This category contains %c% direct subcategories.');
  82. define('_CATEGORIES_SUBCATS_WARNING',       'Please also choose what to do with this category\'s subcategories:');
  83.  
  84. // module registry template
  85. define('_CATEGORIES_REGISTRY_PROPERTY',     'Property Name');
  86. define('_CATEGORIES_REGISTRY_DELETE_SUCCESS',    'Category registry entry has been successfully deleted');
  87. define('_CATEGORIES_REGISTRY_SAVE_SUCCESS',    'Category registry entry has been successfully saved');
  88. define('_CATEGORIES_REGISTRY_TABLE',        'Table');
  89.  
  90. // move template
  91. define('_CATEGORIES_MOVE_TITLE',            'Move a category');
  92.  
  93. // copy template
  94. define('_CATEGORIES_COPY_DESCRIPTION',      'Copy this catgegory and all subcategories of this category');
  95. define('_CATEGORIES_COPY_TITLE',            'Copy category');
  96.  
  97. // modify config template
  98. define('_CATEGORIES_CONFIG_REBUILD',        'This page allows you to rebuild all system internal paths');
  99. define('_CATEGORIES_CONFIG_REBUILD_INFO',   '<br /><br />You can trigger this action by clicking on the submit button below. Depending on the number of categories in your system, this action could either time out or exceed your configured PHP memory limit.');
  100. define('_CATEGORIES_CONFIG_REBUILD_PATHS',  'Rebuild paths');
  101.  
  102. // user editing
  103. define('_CATEGORIES_YOURCATEGORIES',        'Your categories');
  104.  
  105. // error/status messages
  106. define('_CATEGORIES_DOCROOT_CANT_RETRIEVE''Error! Sorry! Can\'t access root directory');
  107. define('_CATEGORIES_DOCROOT_INVALID',       'Error! Sorry! Invalid \'document root\' parameter in URL');
  108. define('_CATEGORIES_EDITCAT_INVALID',       'Error! Sorry! Can\'t edit: category is invalid');
  109. define('_CATEGORIES_EDITCAT_NOT_LEAF',      'Error! Sorry! The specified category is not a leaf-level category');
  110. define('_CATEGORIES_EDITCAT_NOT_SUBCAT',    'Error! Sorry! The specified category is not a child of the document root');
  111. define('_CATEGORIES_INVALID_CID',           'Error! Sorry! An invalid category ID was received');
  112. define('_CATEGORIES_INVALID_DIRECTION',     'Error! Sorry! An invalid direction was received');
  113. define('_CATEGORIES_INVALID_DOCROOT',       'Error! Sorry! An invalid docroot was received');
  114. define('_CATEGORIES_NAME_EMPTY',            'Error! Sorry! Name cannot be left blank');
  115. define('_CATEGORIES_NO_USERCATNAME',        'Error! Sorry! Unable to determine user category root node name');
  116. define('_CATEGORIES_ROOT_CANT_EDIT',        'Error! Sorry! The root directory cannot be modified in \'user\' mode');
  117. define('_CATEGORIES_UNABLE_TO_RETRIEVE',    'Error! Sorry! Unable to retrieve category with id [%d]');
  118. define('_CATEGORIES_USERCAT_NOAUTOCREATE',  'Error! Sorry! The user root category node for this user doesn\'t exist and the autocreate flag is not set');
  119. define('_CATEGORIES_USERCAT_LOGGED_IN',     'Error! Sorry! The user category edit mode is only available logged-in users');
  120. define('_CATEGORIES_USERDOCROOT_EMPTY',     'Error! Sorry! Could not determine the User root node');
  121. define('_CATEGORIES_USERDOCROOT_INVALID',   'Error! Sorry! The User root node seems to point towards an invalid category');
  122. define('_CATEGORIES_VALUE_EMPTY',           'Error! Sorry! Value cannot be left blank');
  123. define('_CATEGORIES_REGISTRY_MODULE_EMPTY''Error! Sorry! You must select module');
  124. define('_CATEGORIES_REGISTRY_TABLE_EMPTY',  'Error! Sorry! You must select a module table');
  125. define('_CATEGORIES_REGISTRY_PROPERTY_EMPTY','Error! Sorry! You must enter a property name');
  126. define('_CATEGORIES_REGISTRY_CATEGORY_EMPTY','Error! Sorry! You must select a category');
  127. define('_CATEGORIES_REGISTRY_PROPERTY_DUPLICATE','Error! Sorry! This property name already exists for the given module and table');

Documentation generated on Fri, 18 Jul 2008 21:43:59 +0200 by phpDocumentor 1.4.1