TF-4142 Implement hyperlink insertion

This commit is contained in:
dab246
2025-11-10 12:09:19 +07:00
committed by Dat H. Pham
parent db22415a3e
commit 249520b711
14 changed files with 257 additions and 4 deletions
@@ -5366,4 +5366,53 @@ class AppLocalizations {
name: 'favoriteMailboxDisplayName',
);
}
String get insertLink {
return Intl.message(
'Insert link',
name: 'insertLink',
);
}
String get goTo {
return Intl.message(
'Go to',
name: 'goTo',
);
}
String get change {
return Intl.message(
'Change',
name: 'change',
);
}
String get removeLink {
return Intl.message(
'Remove link',
name: 'removeLink',
);
}
String get text {
return Intl.message(
'Text',
name: 'text',
);
}
String get typeOrPasteLink {
return Intl.message(
'Type or paste a link',
name: 'typeOrPasteLink',
);
}
String get apply {
return Intl.message(
'Apply',
name: 'apply',
);
}
}