Drafts.english.php 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. // Version: 2.1 Alpha 1; Profile
  3. global $scripturl, $context;
  4. // profile
  5. $txt['drafts_show'] = 'Show Drafts';
  6. $txt['drafts_show_desc'] = 'This area shows you all the drafts you currently have saved. From here you can edit them before posting, or you can remove them';
  7. $txt['drafts_autosave_enabled'] = 'Enable the automatic saving of drafts.';
  8. $txt['drafts_show_saved_enabled'] = 'Enable selection of drafts from posting screens.';
  9. // misc
  10. $txt['drafts'] = 'Drafts';
  11. $txt['draft_save'] = 'Save Draft';
  12. $txt['draft_save_note'] = 'This will save the text of your post, but it will not save attachments, poll or event information.';
  13. $txt['draft_none'] = 'You have no drafts.';
  14. $txt['draft_edit'] = 'Edit draft';
  15. $txt['draft_load'] = 'Load drafts';
  16. $txt['draft_hide'] = 'Hide drafts';
  17. $txt['draft_delete'] = 'Delete draft';
  18. $txt['draft_saved_on'] = 'Draft last saved';
  19. $txt['draft_days_ago'] = '%s days ago';
  20. $txt['draft_retain'] = 'this will be retained for %s more days';
  21. $txt['draft_remove'] = 'Remove this draft';
  22. $txt['draft_saved'] = 'The contents have been saved as a draft, and will be accessible from the <a href="%1$s">Show Drafts area</a> of your profile.';
  23. $txt['draft_pm_saved'] = 'The contents have been saved as a draft, and will be accessible from the <a href="%1$s">Show Drafts area</a> of your message center.';
  24. $txt['draft_save_warning'] = 'Please note that all drafts will be automatically deleted after %1$d days.';
  25. // Admin options
  26. $txt['drafts_autosave_enabled'] = 'Enable automatic saving of drafts';
  27. $txt['drafts_autosave_enabled_subnote'] = 'This will automatically save user drafts in the background on a given frequency. The user must also have the proper permissions';
  28. $txt['drafts_show_saved_enabled'] = 'Enable the selection of drafts from the posting screen';
  29. $txt['drafts_show_saved_enabled_subnote'] = 'This will allow the user to select and load appropriate drafts from the posting screen. The user must also have the proper permissions';
  30. $txt['drafts_keep_days'] = 'Maximum number of days to keep a draft';
  31. $txt['drafts_keep_days_subnote'] = 'Enter 0 to keep drafts indefinitely';
  32. $txt['drafts_autosave_frequency'] = 'How often should drafts be autosaved?';
  33. $txt['drafts_autosave_frequency_subnote'] = 'The minimum allowable value is 30 seconds';
  34. $txt['drafts_pm_enabled'] = 'Enable the saving of PM drafts';
  35. $txt['drafts_post_enabled'] = 'Enable the saving of Post drafts';
  36. $txt['drafts_none'] = 'No Subject';
  37. $txt['drafts_saved'] = 'Draft was sucessfuly saved';
  38. ?>