defaultTextDictionary constant
Default text dictionary with English text
Implementation
static const Map<String, String> defaultTextDictionary = {
// Dialog titles
'configuration_error_title': 'Configuration Error',
'error_title': 'Error',
'confirmation_title': 'Confirmation',
'report_sent_title': 'Report Sent',
// Dialog messages
'configuration_error_message':
'The plugin has not been properly configured. Use BugReportPlugin.configure() before calling bugReport().',
'report_sent_message': 'The report was sent successfully.',
'cancel_confirmation_message':
'Are you sure you want to cancel the report? All entered data will be lost.',
'submit_confirmation_message':
'Do you want to send the report? The entered data will be used to improve the app.',
// Button labels
'ok_button': 'OK',
'cancel_button': 'Cancel',
'submit_button': 'Submit report',
'add_image_button': 'Add image',
// Form labels
'app_bar_title': 'Report a Bug',
'form_intro':
'You are reporting an error to help improve the quality of the app.',
'comment_label': 'Comment *',
'comment_validation': 'Comment is required.',
'contact_toggle': 'Would you like to be contacted?',
'email_label': 'Email',
'phone_label': 'Phone',
'name_label': 'Name',
'attach_images_label': 'Attach images:',
'no_images_label': 'No images have been added.',
// Loading state
'sending_report': 'Sending report...',
'please_wait': 'Please wait a moment',
};