orgnote-api 0.41.43 → 0.41.44
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
|
@@ -200,7 +200,15 @@ export declare enum i18n {
|
|
|
200
200
|
GRAPH_EDGES_LABEL = "graph.edges.label",
|
|
201
201
|
GRAPH_SETTINGS_TITLE = "graph.settings.title",
|
|
202
202
|
GRAPH_SETTINGS_GROUP = "graph.settings.group",
|
|
203
|
-
LOCAL_GRAPH_TITLE = "local.graph.title"
|
|
203
|
+
LOCAL_GRAPH_TITLE = "local.graph.title",
|
|
204
|
+
SHOW_PERFORMANCE_REPORT_DESCRIPTION = "Show boot and extension timing report",
|
|
205
|
+
SHOW_PERFORMANCE_REPORT = "Show performance report",
|
|
206
|
+
CLEAR_PERFORMANCE_REPORT = "Clear performance measurements",
|
|
207
|
+
CLEAR_PERFORMANCE_REPORT_DESCRIPTION = "Clear all recorded performance measurements",
|
|
208
|
+
MEASUREMENTS = "measurements",
|
|
209
|
+
CLEAR_MEASUREMENTS = "Clear measurements",
|
|
210
|
+
TOTAL_BOOT_TIME = "Total boot time",
|
|
211
|
+
MS = "ms"
|
|
204
212
|
}
|
|
205
213
|
export declare const I18N: {
|
|
206
214
|
REPORT_BUG: DefaultCommands.REPORT_BUG;
|
|
@@ -308,6 +316,8 @@ export declare const I18N: {
|
|
|
308
316
|
OPEN_CRON: DefaultCommands.OPEN_CRON;
|
|
309
317
|
CLEAR_OLD_QUEUE_TASKS: DefaultCommands.CLEAR_OLD_QUEUE_TASKS;
|
|
310
318
|
COPY_COMMAND_URL: DefaultCommands.COPY_COMMAND_URL;
|
|
319
|
+
SHOW_PERFORMANCE_REPORT: DefaultCommands.SHOW_PERFORMANCE_REPORT;
|
|
320
|
+
CLEAR_PERFORMANCE_REPORT: DefaultCommands.CLEAR_PERFORMANCE_REPORT;
|
|
311
321
|
IMPORT_EXTENSION: DefaultCommands.IMPORT_EXTENSION;
|
|
312
322
|
OPEN_EXTENSIONS_MANAGER: DefaultCommands.OPEN_EXTENSIONS_MANAGER;
|
|
313
323
|
OPEN_NOTIFICATIONS: DefaultCommands.OPEN_NOTIFICATIONS;
|
|
@@ -532,5 +542,11 @@ export declare const I18N: {
|
|
|
532
542
|
GRAPH_SETTINGS_TITLE: i18n.GRAPH_SETTINGS_TITLE;
|
|
533
543
|
GRAPH_SETTINGS_GROUP: i18n.GRAPH_SETTINGS_GROUP;
|
|
534
544
|
LOCAL_GRAPH_TITLE: i18n.LOCAL_GRAPH_TITLE;
|
|
545
|
+
SHOW_PERFORMANCE_REPORT_DESCRIPTION: i18n.SHOW_PERFORMANCE_REPORT_DESCRIPTION;
|
|
546
|
+
CLEAR_PERFORMANCE_REPORT_DESCRIPTION: i18n.CLEAR_PERFORMANCE_REPORT_DESCRIPTION;
|
|
547
|
+
MEASUREMENTS: i18n.MEASUREMENTS;
|
|
548
|
+
CLEAR_MEASUREMENTS: i18n.CLEAR_MEASUREMENTS;
|
|
549
|
+
TOTAL_BOOT_TIME: i18n.TOTAL_BOOT_TIME;
|
|
550
|
+
MS: i18n.MS;
|
|
535
551
|
};
|
|
536
552
|
export type I18N = i18n | DefaultCommands;
|
package/constants/i18n-keys.js
CHANGED
|
@@ -213,6 +213,15 @@ export var i18n;
|
|
|
213
213
|
i18n["GRAPH_SETTINGS_TITLE"] = "graph.settings.title";
|
|
214
214
|
i18n["GRAPH_SETTINGS_GROUP"] = "graph.settings.group";
|
|
215
215
|
i18n["LOCAL_GRAPH_TITLE"] = "local.graph.title";
|
|
216
|
+
// Development
|
|
217
|
+
i18n["SHOW_PERFORMANCE_REPORT_DESCRIPTION"] = "Show boot and extension timing report";
|
|
218
|
+
i18n["SHOW_PERFORMANCE_REPORT"] = "Show performance report";
|
|
219
|
+
i18n["CLEAR_PERFORMANCE_REPORT"] = "Clear performance measurements";
|
|
220
|
+
i18n["CLEAR_PERFORMANCE_REPORT_DESCRIPTION"] = "Clear all recorded performance measurements";
|
|
221
|
+
i18n["MEASUREMENTS"] = "measurements";
|
|
222
|
+
i18n["CLEAR_MEASUREMENTS"] = "Clear measurements";
|
|
223
|
+
i18n["TOTAL_BOOT_TIME"] = "Total boot time";
|
|
224
|
+
i18n["MS"] = "ms";
|
|
216
225
|
})(i18n || (i18n = {}));
|
|
217
226
|
export const I18N = {
|
|
218
227
|
...i18n,
|
|
@@ -104,6 +104,8 @@ export declare enum DefaultCommands {
|
|
|
104
104
|
OPEN_CRON = "open cron manager",
|
|
105
105
|
CLEAR_OLD_QUEUE_TASKS = "clear old queue tasks",
|
|
106
106
|
COPY_COMMAND_URL = "copy command url",
|
|
107
|
+
SHOW_PERFORMANCE_REPORT = "show performance report",
|
|
108
|
+
CLEAR_PERFORMANCE_REPORT = "clear performance report",
|
|
107
109
|
IMPORT_EXTENSION = "import extension",
|
|
108
110
|
OPEN_EXTENSIONS_MANAGER = "open extensions manager",
|
|
109
111
|
OPEN_NOTIFICATIONS = "open notifications",
|
|
@@ -124,6 +124,8 @@ export var DefaultCommands;
|
|
|
124
124
|
DefaultCommands["OPEN_CRON"] = "open cron manager";
|
|
125
125
|
DefaultCommands["CLEAR_OLD_QUEUE_TASKS"] = "clear old queue tasks";
|
|
126
126
|
DefaultCommands["COPY_COMMAND_URL"] = "copy command url";
|
|
127
|
+
DefaultCommands["SHOW_PERFORMANCE_REPORT"] = "show performance report";
|
|
128
|
+
DefaultCommands["CLEAR_PERFORMANCE_REPORT"] = "clear performance report";
|
|
127
129
|
// Extensions
|
|
128
130
|
DefaultCommands["IMPORT_EXTENSION"] = "import extension";
|
|
129
131
|
DefaultCommands["OPEN_EXTENSIONS_MANAGER"] = "open extensions manager";
|