CupThreadStrings constructor

const CupThreadStrings({
  1. String retry = 'Retry',
  2. String cancel = 'Cancel',
  3. String close = 'Close',
  4. String anonymous = 'Anonymous',
  5. String justNow = 'Just now',
  6. String minutesAgoSuffix = 'm ago',
  7. String hoursAgoSuffix = 'h ago',
  8. String daysAgoSuffix = 'd ago',
  9. String featureRequests = 'Feature Requests',
  10. String proposeFeature = 'Propose Feature',
  11. String proposeAnIdea = 'Propose an idea',
  12. String searchFeatureRequests = 'Search feature requests...',
  13. String all = 'All',
  14. String underReview = 'Under Review',
  15. String planned = 'Planned',
  16. String inProgress = 'In Progress',
  17. String completed = 'Completed',
  18. String noFeatureRequestsFound = 'No feature requests found',
  19. String beTheFirstToSuggest = 'Be the first to suggest an idea!',
  20. String failedToLoadRequests = 'Failed to load requests',
  21. String roadmap = 'Roadmap',
  22. String noItemsInColumn = 'No items in this column',
  23. String newFeatureRequest = 'Propose a Feature',
  24. String titleLabel = 'Title *',
  25. String titleHint = 'What should we add or improve?',
  26. String detailsLabel = 'Details *',
  27. String detailsHint = 'Explain your idea and why it would be helpful...',
  28. String yourNameOptional = 'Your Name (optional)',
  29. String yourNameHint = 'e.g. Alex',
  30. String submitRequest = 'Submit Request',
  31. String submitting = 'Submitting...',
  32. String featureRequestSubmitted = 'Feature request submitted!',
  33. String titleValidationMin3 = 'Please provide a title with at least 3 characters.',
  34. String detailsValidationMin5 = 'Please provide details with at least 5 characters.',
  35. String comments = 'Comments',
  36. String writeAComment = 'Write a comment...',
  37. String send = 'Send',
  38. String posting = 'Posting...',
  39. String noCommentsYet = 'No comments yet. Start the conversation!',
  40. String vote = 'Vote',
  41. String voted = 'Voted',
  42. String sendFeedback = 'Send Feedback',
  43. String submitFeedback = 'Submit Feedback',
  44. String feedbackSummaryHint = 'Brief summary...',
  45. String feedbackDetailsHint = 'What happened and what did you expect?',
  46. String emailForRepliesOptional = 'Email for replies (optional)',
  47. String emailHint = 'alex@example.com',
  48. String feedbackSent = 'Feedback sent! Thank you.',
  49. String attachments = 'Attachments',
  50. String addAttachment = 'Add Attachment',
  51. String remove = 'Remove',
  52. String attachmentDefaultName = 'Attachment',
  53. String whatsNew = "What's New",
  54. String subscribeToUpdates = 'Stay updated on new releases',
  55. String enterYourEmail = 'Enter your email',
  56. String subscribe = 'Subscribe',
  57. String subscribed = 'Subscribed!',
  58. String gotIt = 'Got it',
  59. String version = 'Version',
  60. String userProfile = 'User Profile',
  61. String payingCustomer = 'Paying Customer',
  62. String freeTier = 'Free Tier',
})

Implementation

const CupThreadStrings({
  this.retry = 'Retry',
  this.cancel = 'Cancel',
  this.close = 'Close',
  this.anonymous = 'Anonymous',
  this.justNow = 'Just now',
  this.minutesAgoSuffix = 'm ago',
  this.hoursAgoSuffix = 'h ago',
  this.daysAgoSuffix = 'd ago',

  this.featureRequests = 'Feature Requests',
  this.proposeFeature = 'Propose Feature',
  this.proposeAnIdea = 'Propose an idea',
  this.searchFeatureRequests = 'Search feature requests...',
  this.all = 'All',
  this.underReview = 'Under Review',
  this.planned = 'Planned',
  this.inProgress = 'In Progress',
  this.completed = 'Completed',
  this.noFeatureRequestsFound = 'No feature requests found',
  this.beTheFirstToSuggest = 'Be the first to suggest an idea!',
  this.failedToLoadRequests = 'Failed to load requests',
  this.roadmap = 'Roadmap',
  this.noItemsInColumn = 'No items in this column',

  this.newFeatureRequest = 'Propose a Feature',
  this.titleLabel = 'Title *',
  this.titleHint = 'What should we add or improve?',
  this.detailsLabel = 'Details *',
  this.detailsHint = 'Explain your idea and why it would be helpful...',
  this.yourNameOptional = 'Your Name (optional)',
  this.yourNameHint = 'e.g. Alex',
  this.submitRequest = 'Submit Request',
  this.submitting = 'Submitting...',
  this.featureRequestSubmitted = 'Feature request submitted!',
  this.titleValidationMin3 = 'Please provide a title with at least 3 characters.',
  this.detailsValidationMin5 = 'Please provide details with at least 5 characters.',

  this.comments = 'Comments',
  this.writeAComment = 'Write a comment...',
  this.send = 'Send',
  this.posting = 'Posting...',
  this.noCommentsYet = 'No comments yet. Start the conversation!',
  this.vote = 'Vote',
  this.voted = 'Voted',

  this.sendFeedback = 'Send Feedback',
  this.submitFeedback = 'Submit Feedback',
  this.feedbackSummaryHint = 'Brief summary...',
  this.feedbackDetailsHint = 'What happened and what did you expect?',
  this.emailForRepliesOptional = 'Email for replies (optional)',
  this.emailHint = 'alex@example.com',
  this.feedbackSent = 'Feedback sent! Thank you.',
  this.attachments = 'Attachments',
  this.addAttachment = 'Add Attachment',
  this.remove = 'Remove',
  this.attachmentDefaultName = 'Attachment',

  this.whatsNew = "What's New",
  this.subscribeToUpdates = 'Stay updated on new releases',
  this.enterYourEmail = 'Enter your email',
  this.subscribe = 'Subscribe',
  this.subscribed = 'Subscribed!',
  this.gotIt = 'Got it',
  this.version = 'Version',

  this.userProfile = 'User Profile',
  this.payingCustomer = 'Paying Customer',
  this.freeTier = 'Free Tier',
});