l10n property
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.background => 'label_background'.l10n,
ProfileTab.chats => 'label_chats'.l10n,
ProfileTab.calls => 'label_calls'.l10n,
ProfileTab.media => 'label_media'.l10n,
ProfileTab.welcome => 'label_welcome_message'.l10n,
ProfileTab.notifications => 'label_notifications'.l10n,
ProfileTab.storage => 'label_storage'.l10n,
ProfileTab.language => 'label_language'.l10n,
ProfileTab.blocklist => 'label_blocked_users'.l10n,
ProfileTab.devices => 'label_linked_devices'.l10n,
ProfileTab.download => 'label_download'.l10n,
ProfileTab.danger => 'label_danger_zone'.l10n,
ProfileTab.legal => 'label_legal_information'.l10n,
ProfileTab.support => 'btn_help'.l10n,
ProfileTab.logout => 'btn_logout'.l10n,
};
}