orgnote-api 0.40.21 → 0.40.22
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
|
@@ -130,6 +130,7 @@ export declare enum i18n {
|
|
|
130
130
|
SELECT_COMMAND_TO_COPY_URL = "select command to copy URL",
|
|
131
131
|
SELECT_COMMAND = "select command",
|
|
132
132
|
CONFIRM_CLEAR_LOGS = "confirm clear logs",
|
|
133
|
+
SYSTEM_INFO = "system info",
|
|
133
134
|
FILE_DELETED_EXTERNALLY = "file was deleted externally",
|
|
134
135
|
USED_SPACE = "used space",
|
|
135
136
|
STORAGE = "storage",
|
|
@@ -150,7 +151,7 @@ export declare enum i18n {
|
|
|
150
151
|
}
|
|
151
152
|
export declare const I18N: {
|
|
152
153
|
REPORT_BUG: DefaultCommands.REPORT_BUG;
|
|
153
|
-
|
|
154
|
+
OPEN_SYSTEM_INFO: DefaultCommands.OPEN_SYSTEM_INFO;
|
|
154
155
|
SHOW_LOGS: DefaultCommands.SHOW_LOGS;
|
|
155
156
|
CLEAR_LOGS: DefaultCommands.CLEAR_LOGS;
|
|
156
157
|
TOGGLE_SIDEBAR: DefaultCommands.TOGGLE_SIDEBAR;
|
|
@@ -352,6 +353,7 @@ export declare const I18N: {
|
|
|
352
353
|
SELECT_COMMAND_TO_COPY_URL: i18n.SELECT_COMMAND_TO_COPY_URL;
|
|
353
354
|
SELECT_COMMAND: i18n.SELECT_COMMAND;
|
|
354
355
|
CONFIRM_CLEAR_LOGS: i18n.CONFIRM_CLEAR_LOGS;
|
|
356
|
+
SYSTEM_INFO: i18n.SYSTEM_INFO;
|
|
355
357
|
FILE_DELETED_EXTERNALLY: i18n.FILE_DELETED_EXTERNALLY;
|
|
356
358
|
USED_SPACE: i18n.USED_SPACE;
|
|
357
359
|
STORAGE: i18n.STORAGE;
|
package/constants/i18n-keys.js
CHANGED
|
@@ -133,6 +133,7 @@ export var i18n;
|
|
|
133
133
|
i18n["SELECT_COMMAND_TO_COPY_URL"] = "select command to copy URL";
|
|
134
134
|
i18n["SELECT_COMMAND"] = "select command";
|
|
135
135
|
i18n["CONFIRM_CLEAR_LOGS"] = "confirm clear logs";
|
|
136
|
+
i18n["SYSTEM_INFO"] = "system info";
|
|
136
137
|
// Buffer
|
|
137
138
|
i18n["FILE_DELETED_EXTERNALLY"] = "file was deleted externally";
|
|
138
139
|
// Subscription limits
|
|
@@ -7,7 +7,7 @@ export var DefaultCommands;
|
|
|
7
7
|
(function (DefaultCommands) {
|
|
8
8
|
// Global commands
|
|
9
9
|
DefaultCommands["REPORT_BUG"] = "report bug";
|
|
10
|
-
DefaultCommands["
|
|
10
|
+
DefaultCommands["OPEN_SYSTEM_INFO"] = "open system info";
|
|
11
11
|
DefaultCommands["SHOW_LOGS"] = "show logs";
|
|
12
12
|
DefaultCommands["CLEAR_LOGS"] = "clear logs";
|
|
13
13
|
DefaultCommands["TOGGLE_SIDEBAR"] = "toggle sidebar";
|