snippet.inc.php 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * Snippet English lexicon topic
  4. *
  5. * @language en
  6. * @package modx
  7. * @subpackage lexicon
  8. */
  9. $_lang['snippet'] = 'Snippet';
  10. $_lang['snippets_available'] = 'Snippets available for you to include in your page';
  11. $_lang['snippet_code'] = 'Snippet code (php)';
  12. $_lang['snippet_delete_confirm'] = 'Are you sure you want to delete this snippet?';
  13. $_lang['snippet_desc'] = 'תאור';
  14. $_lang['snippet_desc_category'] = 'The Category this Snippet belongs in.';
  15. $_lang['snippet_desc_description'] = 'A short description of this Snippet.';
  16. $_lang['snippet_desc_name'] = 'The name of this Snippet. It will be available using the [[NameOfSnippet]] tags.';
  17. $_lang['snippet_duplicate_confirm'] = 'Are you sure you want to duplicate this snippet?';
  18. $_lang['snippet_duplicate_error'] = 'An error occurred while duplicating the snippet.';
  19. $_lang['snippet_err_create'] = 'An error occurred while creating the snippet.';
  20. $_lang['snippet_err_delete'] = 'An error occured while trying to delete the snippet.';
  21. $_lang['snippet_err_duplicate'] = 'An error occured while trying to duplicate the snippet.';
  22. $_lang['snippet_err_ae'] = 'A snippet already exists with the name "[[+name]]".';
  23. $_lang['snippet_err_invalid_name'] = 'Snippet name is invalid.';
  24. $_lang['snippet_err_locked'] = 'This snippet is locked for editing.';
  25. $_lang['snippet_err_nf'] = 'Snippet not found!';
  26. $_lang['snippet_err_ns'] = 'Snippet not specified.';
  27. $_lang['snippet_err_ns_name'] = 'Please specify a name for the snippet.';
  28. $_lang['snippet_err_remove'] = 'An error occurred while removing the snippet.';
  29. $_lang['snippet_err_save'] = 'An error occurred while saving the snippet.';
  30. $_lang['snippet_execonsave'] = 'Execute snippet after saving.';
  31. $_lang['snippet_lock'] = 'Lock snippet for editing';
  32. $_lang['snippet_lock_msg'] = 'Users must have the edit_locked attribute in order to be able to edit this snippet.';
  33. $_lang['snippet_management_msg'] = 'Here you can choose which snippet you wish to edit.';
  34. $_lang['snippet_msg'] = 'Here you can add/edit snippets. Remember, snippets are \'raw\' PHP code, and if you expect the output of the snippet to be shown at a certain point within the template, you need to return a value from within the snippet.';
  35. $_lang['snippet_name'] = 'Snippet name';
  36. $_lang['snippet_new'] = 'מקטע חדש';
  37. $_lang['snippet_properties'] = 'Default Properties';
  38. $_lang['snippet_title'] = 'Create/edit snippet';
  39. $_lang['snippet_untitled'] = 'Untitled snippet';
  40. $_lang['snippets'] = 'מקטעים';