TF-738 Show button align in composer web

This commit is contained in:
dab246
2022-07-26 16:34:10 +07:00
committed by Dat H. Pham
parent f89b842692
commit 566832379c
13 changed files with 288 additions and 106 deletions
@@ -1725,4 +1725,52 @@ class AppLocalizations {
'Style',
name: 'headerStyle');
}
String get fontFamily {
return Intl.message(
'Font Family',
name: 'fontFamily');
}
String get paragraph {
return Intl.message(
'Paragraph',
name: 'paragraph');
}
String get alignLeft {
return Intl.message(
'Align left',
name: 'alignLeft');
}
String get alignRight {
return Intl.message(
'Align right',
name: 'alignRight');
}
String get alignCenter {
return Intl.message(
'Align center',
name: 'alignCenter');
}
String get justifyFull {
return Intl.message(
'Justify full',
name: 'justifyFull');
}
String get outdent {
return Intl.message(
'Outdent',
name: 'outdent');
}
String get indent {
return Intl.message(
'Indent',
name: 'indent');
}
}