namespace.inc.php 1.8 KB

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Namespace English lexicon topic
  4. *
  5. * @language en
  6. * @package modx
  7. * @subpackage lexicon
  8. */
  9. $_lang['namespace'] = 'Namespace';
  10. $_lang['namespace_create'] = 'Create Namespace';
  11. $_lang['namespace_err_create'] = 'An error occurred while trying to create the namespace.';
  12. $_lang['namespace_err_nf'] = 'Namespace not found.';
  13. $_lang['namespace_err_nfs'] = 'Namespace not found with name: %s';
  14. $_lang['namespace_err_ns'] = 'Namespace not specified.';
  15. $_lang['namespace_err_remove'] = 'An error occurred while trying to remove the namespace.';
  16. $_lang['namespace_err_save'] = 'An error occurred while trying to save the namespace.';
  17. $_lang['namespace_assets_path'] = 'Assets Path';
  18. $_lang['namespace_assets_path_desc'] = 'Specify an absolute path to the assets for this Namespace here. You may use placeholders like {assets_path}. Example: {assets_path}components/democomponent/';
  19. $_lang['namespace_name_desc'] = 'Specify a name for the Namespace here.';
  20. $_lang['namespace_path'] = 'Core Path';
  21. $_lang['namespace_path_desc'] = 'Specify an absolute path to the core for this Namespace here. You may use placeholders like {core_path}. Example: {core_path}components/democomponent/';
  22. $_lang['namespace_remove'] = 'Delete Namespace';
  23. $_lang['namespace_remove_confirm'] = 'Are you sure you want to delete "[[+name]]" namespace and all related content?';
  24. $_lang['namespace_remove_multiple'] = 'Delete Namespaces';
  25. $_lang['namespace_remove_multiple_confirm'] = 'Are you sure you want to delete these namespaces and all their related content?';
  26. $_lang['namespace_update'] = 'Update Namespace';
  27. $_lang['namespaces'] = 'Namespaces';
  28. $_lang['namespaces_desc'] = 'Namespaces are global identifiers for packages and components, registering their vehicles, lexicon entries and resources all together.';