obsidian-dev-utils
Version:
This is the collection of useful functions that you can use for your Obsidian plugin development
51 lines (50 loc) • 2.08 kB
text/typescript
/**
* @packageDocumentation
*
* This file defines the English translations for the `i18n` module.
*/
/**
* The English translations.
*/
export declare const en: {
readonly obsidianDevUtils: {
readonly asyncWithNotice: {
readonly milliseconds: "milliseconds...";
readonly operation: "Operation";
readonly runningFor: "Running for";
readonly terminateOperation: "You can terminate the operation by clicking the button below, but be aware it might leave the vault in an inconsistent state.";
readonly timedOut: "The operation timed out after {{duration}} milliseconds.";
};
readonly buttons: {
readonly cancel: "Cancel";
readonly ok: "OK";
};
readonly callout: {
readonly loadContent: "Load content for callout";
};
readonly dataview: {
readonly itemsPerPage: "Items per page:";
readonly jumpToPage: "Jump to page:";
readonly pageHeader: "Page {{pageNumber}} of {{totalPages}}, Total items: {{totalItems}}";
};
readonly metadataCache: {
readonly getBacklinksForFilePath: "Get backlinks for {{filePath}}";
};
readonly notices: {
readonly attachmentIsStillUsed: "Attachment {{attachmentPath}} is still used by other notes. It will not be deleted.";
readonly unhandledError: "An unhandled error occurred. Please check the console for more information.";
};
readonly queue: {
readonly flushQueue: "Flush queue";
};
readonly renameDeleteHandler: {
readonly handleDelete: "Handle delete: {{filePath}}";
readonly handleOrphanedRenames: "Handle orphaned renames";
readonly handleRename: "Handle rename: {{oldPath}} -> {{newPath}}";
readonly updatedLinks: "Updated {{linksCount}} links in {{filesCount}} files.";
};
readonly vault: {
readonly processFile: "Process file {{filePath}}";
};
};
};