1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-13 00:10:37 +02:00

Mobile: Add note revision viewer (#12305)

This commit is contained in:
Henry Heino
2025-05-27 09:22:52 -07:00
committed by GitHub
parent 47e4f36f97
commit 293eac9c04
13 changed files with 366 additions and 30 deletions

View File

@ -0,0 +1,8 @@
import { _ } from '../../../locale';
import RevisionService from '../../../services/RevisionService';
const getHelpMessage = (restoreButtonTitle: string) => {
return _('Click "%s" to restore the note. It will be copied in the notebook named "%s". The current version of the note will not be replaced or modified.', restoreButtonTitle, RevisionService.instance().restoreFolderTitle());
};
export default getHelpMessage;