l10n property

String get l10n

Returns localized title of this ProfileTab.

Implementation

String get l10n {
  return switch (this) {
    ProfileTab.public => 'label_profile'.l10n,
    ProfileTab.signing => 'label_login_options'.l10n,
    ProfileTab.link => 'label_link_to_chat'.l10n,
    ProfileTab.interface => 'label_interface'.l10n,
    ProfileTab.media => 'label_media_devices'.l10n,
    ProfileTab.welcome => 'label_welcome_message'.l10n,
    ProfileTab.notifications => 'label_notifications'.l10n,
    ProfileTab.storage => 'label_storage'.l10n,
    ProfileTab.confidential => 'label_confidentiality'.l10n,
    ProfileTab.devices => 'label_linked_devices'.l10n,
    ProfileTab.download => 'label_download_and_update'.l10n,
    ProfileTab.danger => 'label_danger_zone'.l10n,
    ProfileTab.legal => 'label_legal_information'.l10n,
    ProfileTab.support => 'btn_help'.l10n,
    ProfileTab.logout => 'btn_logout'.l10n,
  };
}