Drafts.english.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. // Version: 2.1 Alpha 1; Profile
  3. global $scripturl, $context;
  4. // profile
  5. $txt['drafts_show'] = 'Show Drafts';
  6. $txt['drafts_autosave_enabled'] = 'Enable the automatic saving of drafts.';
  7. $txt['drafts_show_saved_enabled'] = 'Enable selection of drafts from posting screens.';
  8. // misc
  9. $txt['drafts'] = 'Drafts';
  10. $txt['draft_save'] = 'Save Draft';
  11. $txt['draft_save_note'] = 'This will save the text of your post, but it will not save attachments, poll or event information.';
  12. $txt['draft_none'] = 'You have no drafts.';
  13. $txt['draft_edit'] = 'Edit draft';
  14. $txt['draft_load'] = 'Load drafts';
  15. $txt['draft_hide'] = 'Hide drafts';
  16. $txt['draft_delete'] = 'Delete draft';
  17. $txt['draft_saved_on'] = 'Draft last saved';
  18. $txt['draft_days_ago'] = '%s days ago';
  19. $txt['draft_retain'] = 'this will be retained for %s more days';
  20. $txt['draft_remove'] = 'Remove this draft';
  21. $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.';
  22. $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.';
  23. $txt['draft_save_warning'] = 'Please note that all drafts will be automatically deleted after %1$d days.';
  24. // Admin options
  25. $txt['drafts_autosave_enabled'] = 'Enable automatic saving of drafts';
  26. $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';
  27. $txt['drafts_show_saved_enabled'] = 'Enable the selection of drafts from the posting screen';
  28. $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';
  29. $txt['drafts_keep_days'] = 'Maximum number of days to keep a draft';
  30. $txt['drafts_keep_days_subnote'] = 'Enter 0 to keep drafts indefinitely';
  31. $txt['drafts_autosave_frequency'] = 'How often should drafts be autosaved?';
  32. $txt['drafts_autosave_frequency_subnote'] = 'The minimum allowable value is 30 seconds';
  33. $txt['drafts_pm_enabled'] = 'Enable the saving of PM drafts';
  34. $txt['drafts_post_enabled'] = 'Enable the saving of Post drafts';
  35. $txt['drafts_none'] = 'No Subject';
  36. $txt['drafts_saved'] = 'Draft was sucessfuly saved';
  37. ?>