package_builder.inc.php 4.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?php
  2. /**
  3. * Package Builder English lexicon topic
  4. *
  5. * @language en
  6. * @package modx
  7. * @subpackage lexicon
  8. */
  9. $_lang['as_system_settings'] = 'System Settings';
  10. $_lang['as_context_settings'] = 'Context Settings';
  11. $_lang['as_lexicon_entries'] = 'Lexicon Entries';
  12. $_lang['as_lexicon_topics'] = 'Lexicon Topics';
  13. $_lang['build'] = 'Build';
  14. $_lang['class_key'] = 'Class Key';
  15. $_lang['class_key_desc'] = 'The type of object you would like to map to the vehicle.';
  16. $_lang['class_key_custom'] = 'Or Custom Class';
  17. $_lang['class_key_custom_desc'] = 'Here you can specify a custom xPDOObject class name that is not in the above list.';
  18. $_lang['file'] = 'File';
  19. $_lang['index'] = 'Index';
  20. $_lang['object'] = 'Object';
  21. $_lang['object_id'] = 'Object ID';
  22. $_lang['object_id_desc'] = 'The exact object that you want to map. Required.';
  23. $_lang['package_autoselects'] = 'Package Auto-Includes';
  24. $_lang['package_autoselects_desc'] = 'Please select the resources you would like the Package Builder to automatically include. Note: if building from the core, it is recommended not to check any of these.';
  25. $_lang['package_build'] = 'Build the Package';
  26. $_lang['package_build_desc'] = 'You are now ready to build the package. Once built, it will be placed in your core/packages directory.';
  27. $_lang['package_build_err'] = 'An error occurred while trying to build the package.';
  28. $_lang['package_build_xml'] = 'Build Package from XML';
  29. $_lang['package_build_xml_desc'] = 'Please select a valid build XML file for your component.';
  30. $_lang['package_builder'] = 'Package Builder';
  31. $_lang['package_built'] = 'The package has been built.';
  32. $_lang['package_info'] = 'Package Information';
  33. $_lang['package_info_desc'] = 'First specify the package information, such as name, version and release.';
  34. $_lang['package_method'] = 'Select a Packaging Method';
  35. $_lang['package_method_desc'] = 'Please select the method of package building that you would like to use.';
  36. $_lang['php_script'] = 'PHP Script';
  37. $_lang['preserve_keys'] = 'Preserve Keys';
  38. $_lang['preserve_keys_desc'] = 'This will preserve the primary keys to the values that they currently are in your DB.';
  39. $_lang['release'] = 'Release';
  40. $_lang['resolve_files'] = 'Resolve Files';
  41. $_lang['resolve_files_desc'] = 'When checked, this will resolve the files specified in the resolvers.';
  42. $_lang['resolve_php'] = 'Resolve PHP Scripts';
  43. $_lang['resolve_php_desc'] = 'When checked, this will resolve the PHP scripts specified in the resolvers.';
  44. $_lang['resolver_add'] = 'Add Resolver';
  45. $_lang['resolver_create'] = 'Create Resolver';
  46. $_lang['resolver_name_desc'] = 'The name of the resolver. Used for organizational purposes.';
  47. $_lang['resolver_remove'] = 'Delete Resolver';
  48. $_lang['resolver_remove_confirm'] = 'Are you sure you want to delete this resolver?';
  49. $_lang['resolver_source_desc'] = 'The absolute path of the source of the resolver. If it is a file resolver, select the directory of the files you\'d like to copy. If a PHP Script, specify the script. Example: <br /><br />/public_html/modx/_build/components/demo/';
  50. $_lang['resolver_target_desc'] = 'The absolute path target for where the resolver should put files or actions. Usually you won\'t have to change this. Example: <br /><br />return MODX_ASSETS_PATH . "snippets/";';
  51. $_lang['resolver_type_desc'] = 'File resolvers make sure to copy all the files in the source directory to the target. PHP Script resolvers execute the source file as PHP.';
  52. $_lang['resolvers'] = 'Resolvers';
  53. $_lang['source'] = 'Source';
  54. $_lang['target'] = 'Target';
  55. $_lang['type'] = 'Type';
  56. $_lang['unique_key'] = 'Unique Key';
  57. $_lang['unique_key_desc'] = 'A unique key identifying how to search for the object. Can be a string or comma-delimited list. Examples: <br />"name" for modPlugin<br />"templatename" for modTemplate<br />Or more complex, "pluginid,evtid" for modPluginEvent';
  58. $_lang['update_object'] = 'Update Object';
  59. $_lang['update_object_desc'] = 'If checked, this will update the object if it is found. If not checked, it will not save the object if it is already found.';
  60. $_lang['use_wizard'] = 'Use the Wizard';
  61. $_lang['use_xml'] = 'Build from an XML file';
  62. $_lang['vehicle'] = 'Vehicle';
  63. $_lang['vehicle_add'] = 'Add Vehicle';
  64. $_lang['vehicle_create'] = 'Create Vehicle';
  65. $_lang['vehicle_remove'] = 'Delete Vehicle';
  66. $_lang['vehicle_remove_confirm'] = 'Are you sure you want to delete this vehicle?';
  67. $_lang['vehicles'] = 'Vehicles';
  68. $_lang['vehicles_add'] = 'Add Vehicles';
  69. $_lang['vehicles_desc'] = 'Vehicles are the objects that are contained in the package. You may add them in here.';
  70. $_lang['version'] = 'Version';
  71. $_lang['xml_file_err_upload'] = 'There was an error while trying to upload the XML file.';