I18nVarious constructor

const I18nVarious({
  1. String loadingDialogMsg = 'Please wait...',
  2. String closeEditorWarningTitle = 'Close Image Editor?',
  3. String closeEditorWarningMessage = 'Are you sure you want to close the Image Editor? Your changes will not be saved.',
  4. String closeEditorWarningConfirmBtn = 'OK',
  5. String closeEditorWarningCancelBtn = 'Cancel',
})

Creates an instance of I18nVarious with customizable internationalization settings.

You can provide translations and messages for various components of your application to ensure a consistent and user-friendly experience for your users. Customize the text for loading dialogs, messages, and other miscellaneous components to match your application's language and style.

Example:

I18nVarious(
  loadingDialogMsg: 'Please wait while loading...',
)

Implementation

const I18nVarious({
  this.loadingDialogMsg = 'Please wait...',
  this.closeEditorWarningTitle = 'Close Image Editor?',
  this.closeEditorWarningMessage =
      'Are you sure you want to close the Image Editor? Your changes will not be saved.',
  this.closeEditorWarningConfirmBtn = 'OK',
  this.closeEditorWarningCancelBtn = 'Cancel',
});