Add option to export

This commit is contained in:
Elian Doran 2025-02-01 16:55:50 +02:00
parent dd12d7f314
commit 4b3772f540
No known key found for this signature in database
3 changed files with 9 additions and 1 deletions

View File

@ -106,6 +106,13 @@ const TPL = `
${t("export.format_markdown")} ${t("export.format_markdown")}
</label> </label>
</div> </div>
<div class="form-check">
<label class="form-check-label tn-radio">
<input class="form-check-input" type="radio" name="export-single-format" value="pdf">
${t("export.format_pdf")}
</label>
</div>
</div> </div>
</div> </div>
<div class="modal-footer"> <div class="modal-footer">

View File

@ -109,7 +109,8 @@
"choose_export_type": "Choose export type first please", "choose_export_type": "Choose export type first please",
"export_status": "Export status", "export_status": "Export status",
"export_in_progress": "Export in progress: {{progressCount}}", "export_in_progress": "Export in progress: {{progressCount}}",
"export_finished_successfully": "Export finished successfully." "export_finished_successfully": "Export finished successfully.",
"format_pdf": "PDF - for printing or sharing purposes."
}, },
"help": { "help": {
"fullDocumentation": "Help (full documentation is available <a class=\"external\" href=\"https://triliumnext.github.io/Docs/\">online</a>)", "fullDocumentation": "Help (full documentation is available <a class=\"external\" href=\"https://triliumnext.github.io/Docs/\">online</a>)",

View File