You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-03 23:50:33 +02:00
9 lines
422 B
TypeScript
9 lines
422 B
TypeScript
![]() |
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;
|