TF-733 Apply change text color to body composer on web

This commit is contained in:
dab246
2022-07-21 13:19:22 +07:00
committed by Dat H. Pham
parent 791656df9b
commit 50316bfa15
8 changed files with 260 additions and 13 deletions
@@ -1659,4 +1659,52 @@ class AppLocalizations {
'Please input either an image or an image URL, not both',
name: 'insertImageErrorDuplicate');
}
String get chooseAColor {
return Intl.message(
'Choose a color',
name: 'chooseAColor');
}
String get resetToDefault {
return Intl.message(
'Reset to default',
name: 'resetToDefault');
}
String get setColor {
return Intl.message(
'Set color',
name: 'setColor');
}
String get formatBold {
return Intl.message(
'Bold',
name: 'formatBold');
}
String get formatItalic {
return Intl.message(
'Italic',
name: 'formatItalic');
}
String get formatUnderline {
return Intl.message(
'Underline',
name: 'formatUnderline');
}
String get formatStrikethrough {
return Intl.message(
'Strikethrough',
name: 'formatStrikethrough');
}
String get formatTextColor {
return Intl.message(
'Text Color',
name: 'formatTextColor');
}
}