orgnote-api 0.40.19 → 0.40.21
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
|
@@ -131,6 +131,8 @@ export declare enum i18n {
|
|
|
131
131
|
SELECT_COMMAND = "select command",
|
|
132
132
|
CONFIRM_CLEAR_LOGS = "confirm clear logs",
|
|
133
133
|
FILE_DELETED_EXTERNALLY = "file was deleted externally",
|
|
134
|
+
USED_SPACE = "used space",
|
|
135
|
+
STORAGE = "storage",
|
|
134
136
|
AUTHENTICATION_STATUS = "authentication status",
|
|
135
137
|
COMING_SOON = "coming soon",
|
|
136
138
|
AUTH_IDENTIFYING = "identifying",
|
|
@@ -351,6 +353,8 @@ export declare const I18N: {
|
|
|
351
353
|
SELECT_COMMAND: i18n.SELECT_COMMAND;
|
|
352
354
|
CONFIRM_CLEAR_LOGS: i18n.CONFIRM_CLEAR_LOGS;
|
|
353
355
|
FILE_DELETED_EXTERNALLY: i18n.FILE_DELETED_EXTERNALLY;
|
|
356
|
+
USED_SPACE: i18n.USED_SPACE;
|
|
357
|
+
STORAGE: i18n.STORAGE;
|
|
354
358
|
AUTHENTICATION_STATUS: i18n.AUTHENTICATION_STATUS;
|
|
355
359
|
COMING_SOON: i18n.COMING_SOON;
|
|
356
360
|
AUTH_IDENTIFYING: i18n.AUTH_IDENTIFYING;
|
package/constants/i18n-keys.js
CHANGED
|
@@ -135,6 +135,9 @@ export var i18n;
|
|
|
135
135
|
i18n["CONFIRM_CLEAR_LOGS"] = "confirm clear logs";
|
|
136
136
|
// Buffer
|
|
137
137
|
i18n["FILE_DELETED_EXTERNALLY"] = "file was deleted externally";
|
|
138
|
+
// Subscription limits
|
|
139
|
+
i18n["USED_SPACE"] = "used space";
|
|
140
|
+
i18n["STORAGE"] = "storage";
|
|
138
141
|
// Auth
|
|
139
142
|
i18n["AUTHENTICATION_STATUS"] = "authentication status";
|
|
140
143
|
i18n["COMING_SOON"] = "coming soon";
|