diff --git a/lib/features/composer/presentation/model/rich_text_style_type.dart b/lib/features/composer/presentation/model/rich_text_style_type.dart index 297b820a9..676b12127 100644 --- a/lib/features/composer/presentation/model/rich_text_style_type.dart +++ b/lib/features/composer/presentation/model/rich_text_style_type.dart @@ -12,6 +12,7 @@ enum RichTextStyleType { strikeThrough, textColor, textBackgroundColor, + paragraph, codeView; String get commandAction { @@ -88,6 +89,10 @@ enum RichTextStyleType { return AppLocalizations.of(context).codeView; case headerStyle: return AppLocalizations.of(context).headerStyle; + case fontName: + return AppLocalizations.of(context).fontFamily; + case paragraph: + return AppLocalizations.of(context).paragraph; default: return ''; }