orgnote-api 0.41.4 → 0.41.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/constants/i18n-keys.d.ts
CHANGED
|
@@ -99,6 +99,7 @@ export declare enum i18n {
|
|
|
99
99
|
CONFIRM_DELETE_FILE = "Confirm delete file",
|
|
100
100
|
RETRIES = "retries",
|
|
101
101
|
ERROR = "error",
|
|
102
|
+
TASK_DETAILS = "task details",
|
|
102
103
|
DEFAULT_GIT_PROVIDER_DESCRIPTION = "in-memory Git provider using es-git (default)",
|
|
103
104
|
INSTALLED = "installed",
|
|
104
105
|
ALL_AVAILABLE = "all available",
|
|
@@ -370,6 +371,7 @@ export declare const I18N: {
|
|
|
370
371
|
CONFIRM_DELETE_FILE: i18n.CONFIRM_DELETE_FILE;
|
|
371
372
|
RETRIES: i18n.RETRIES;
|
|
372
373
|
ERROR: i18n.ERROR;
|
|
374
|
+
TASK_DETAILS: i18n.TASK_DETAILS;
|
|
373
375
|
DEFAULT_GIT_PROVIDER_DESCRIPTION: i18n.DEFAULT_GIT_PROVIDER_DESCRIPTION;
|
|
374
376
|
INSTALLED: i18n.INSTALLED;
|
|
375
377
|
ALL_AVAILABLE: i18n.ALL_AVAILABLE;
|
package/constants/i18n-keys.js
CHANGED
|
@@ -100,6 +100,7 @@ export var i18n;
|
|
|
100
100
|
i18n["CONFIRM_DELETE_FILE"] = "Confirm delete file";
|
|
101
101
|
i18n["RETRIES"] = "retries";
|
|
102
102
|
i18n["ERROR"] = "error";
|
|
103
|
+
i18n["TASK_DETAILS"] = "task details";
|
|
103
104
|
i18n["DEFAULT_GIT_PROVIDER_DESCRIPTION"] = "in-memory Git provider using es-git (default)";
|
|
104
105
|
// Extensions
|
|
105
106
|
i18n["INSTALLED"] = "installed";
|