orgnote-api 0.42.7 → 0.42.8
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
|
@@ -21,10 +21,14 @@ export declare enum i18n {
|
|
|
21
21
|
FORCE_SYNC = "force sync",
|
|
22
22
|
FORCE_SYNC_DESCRIPTION = "this functionality will completely clear the local cache and reload all notes from an external source. Important: Unsaved notes will be deleted.",
|
|
23
23
|
SYNC_PROFILE_CONFIG_DESCRIPTION = "copy this config and save it to ~/.config/orgnote/config.toml in your local CLI environment",
|
|
24
|
+
SYNC_PROFILE_CONFIG_UNAVAILABLE = "choose synchronization mode and create an API token to copy local sync config",
|
|
24
25
|
SYNC_PROFILE_CONFIG_EXPORTED = "local sync config copied",
|
|
25
26
|
SYNC_PROFILE_CONFIG_EXPORTED_DESCRIPTION = "the generated TOML config was copied to clipboard",
|
|
26
27
|
SYNC_PROFILE_CONFIG_DOWNLOADED = "local sync config downloaded",
|
|
27
28
|
SYNC_PROFILE_CONFIG_DOWNLOADED_DESCRIPTION = "the generated TOML config was downloaded as a file",
|
|
29
|
+
EMACS_USE_PACKAGE_CONFIG_COPIED = "Emacs use-package config copied",
|
|
30
|
+
EMACS_USE_PACKAGE_CONFIG_COPIED_DESCRIPTION = "the generated Emacs use-package config was copied to clipboard",
|
|
31
|
+
EMACS_USE_PACKAGE_COPY_CONFIG = "copy Emacs use-package config",
|
|
28
32
|
SUBSCRIPTION_KEY = "subscription key",
|
|
29
33
|
ACTIVATE = "activate",
|
|
30
34
|
WANT_SUBSCRIPTION = "want to get a key for synchronization?",
|
|
@@ -219,6 +223,8 @@ export declare enum i18n {
|
|
|
219
223
|
ONBOARDING_AUTH_TITLE = "Sign in",
|
|
220
224
|
ONBOARDING_AUTH_DESCRIPTION = "Sign in to sync your notes across devices and unlock cloud features.",
|
|
221
225
|
ONBOARDING_AUTH_GITHUB = "Sign in with GitHub",
|
|
226
|
+
ONBOARDING_SYNC_TITLE = "Synchronization setup",
|
|
227
|
+
ONBOARDING_SYNC_DESCRIPTION = "Choose remote synchronization, create an API token, then copy your local sync configuration.",
|
|
222
228
|
ONBOARDING_EMACS_TITLE = "Emacs Integration",
|
|
223
229
|
ONBOARDING_EMACS_DESCRIPTION = "OrgNote is fully compatible with Emacs Org-mode and Org-roam.",
|
|
224
230
|
ONBOARDING_EMACS_COPY_CONFIG = "Copy config",
|
|
@@ -299,6 +305,7 @@ export declare const I18N: {
|
|
|
299
305
|
SYNC_FILES: DefaultCommands.SYNC_FILES;
|
|
300
306
|
EXPORT_LOCAL_SYNC_CONFIG: DefaultCommands.EXPORT_LOCAL_SYNC_CONFIG;
|
|
301
307
|
DOWNLOAD_LOCAL_SYNC_CONFIG: DefaultCommands.DOWNLOAD_LOCAL_SYNC_CONFIG;
|
|
308
|
+
COPY_EMACS_USE_PACKAGE_CONFIG: DefaultCommands.COPY_EMACS_USE_PACKAGE_CONFIG;
|
|
302
309
|
RELOAD_FILES: DefaultCommands.RELOAD_FILES;
|
|
303
310
|
ENCRYPT_NOTE: DefaultCommands.ENCRYPT_NOTE;
|
|
304
311
|
DECRYPT_NOTE: DefaultCommands.DECRYPT_NOTE;
|
|
@@ -399,10 +406,14 @@ export declare const I18N: {
|
|
|
399
406
|
FORCE_SYNC: i18n.FORCE_SYNC;
|
|
400
407
|
FORCE_SYNC_DESCRIPTION: i18n.FORCE_SYNC_DESCRIPTION;
|
|
401
408
|
SYNC_PROFILE_CONFIG_DESCRIPTION: i18n.SYNC_PROFILE_CONFIG_DESCRIPTION;
|
|
409
|
+
SYNC_PROFILE_CONFIG_UNAVAILABLE: i18n.SYNC_PROFILE_CONFIG_UNAVAILABLE;
|
|
402
410
|
SYNC_PROFILE_CONFIG_EXPORTED: i18n.SYNC_PROFILE_CONFIG_EXPORTED;
|
|
403
411
|
SYNC_PROFILE_CONFIG_EXPORTED_DESCRIPTION: i18n.SYNC_PROFILE_CONFIG_EXPORTED_DESCRIPTION;
|
|
404
412
|
SYNC_PROFILE_CONFIG_DOWNLOADED: i18n.SYNC_PROFILE_CONFIG_DOWNLOADED;
|
|
405
413
|
SYNC_PROFILE_CONFIG_DOWNLOADED_DESCRIPTION: i18n.SYNC_PROFILE_CONFIG_DOWNLOADED_DESCRIPTION;
|
|
414
|
+
EMACS_USE_PACKAGE_CONFIG_COPIED: i18n.EMACS_USE_PACKAGE_CONFIG_COPIED;
|
|
415
|
+
EMACS_USE_PACKAGE_CONFIG_COPIED_DESCRIPTION: i18n.EMACS_USE_PACKAGE_CONFIG_COPIED_DESCRIPTION;
|
|
416
|
+
EMACS_USE_PACKAGE_COPY_CONFIG: i18n.EMACS_USE_PACKAGE_COPY_CONFIG;
|
|
406
417
|
SUBSCRIPTION_KEY: i18n.SUBSCRIPTION_KEY;
|
|
407
418
|
ACTIVATE: i18n.ACTIVATE;
|
|
408
419
|
WANT_SUBSCRIPTION: i18n.WANT_SUBSCRIPTION;
|
|
@@ -589,6 +600,8 @@ export declare const I18N: {
|
|
|
589
600
|
ONBOARDING_AUTH_TITLE: i18n.ONBOARDING_AUTH_TITLE;
|
|
590
601
|
ONBOARDING_AUTH_DESCRIPTION: i18n.ONBOARDING_AUTH_DESCRIPTION;
|
|
591
602
|
ONBOARDING_AUTH_GITHUB: i18n.ONBOARDING_AUTH_GITHUB;
|
|
603
|
+
ONBOARDING_SYNC_TITLE: i18n.ONBOARDING_SYNC_TITLE;
|
|
604
|
+
ONBOARDING_SYNC_DESCRIPTION: i18n.ONBOARDING_SYNC_DESCRIPTION;
|
|
592
605
|
ONBOARDING_EMACS_TITLE: i18n.ONBOARDING_EMACS_TITLE;
|
|
593
606
|
ONBOARDING_EMACS_DESCRIPTION: i18n.ONBOARDING_EMACS_DESCRIPTION;
|
|
594
607
|
ONBOARDING_EMACS_COPY_CONFIG: i18n.ONBOARDING_EMACS_COPY_CONFIG;
|
package/constants/i18n-keys.js
CHANGED
|
@@ -22,10 +22,14 @@ export var i18n;
|
|
|
22
22
|
i18n["FORCE_SYNC"] = "force sync";
|
|
23
23
|
i18n["FORCE_SYNC_DESCRIPTION"] = "this functionality will completely clear the local cache and reload all notes from an external source. Important: Unsaved notes will be deleted.";
|
|
24
24
|
i18n["SYNC_PROFILE_CONFIG_DESCRIPTION"] = "copy this config and save it to ~/.config/orgnote/config.toml in your local CLI environment";
|
|
25
|
+
i18n["SYNC_PROFILE_CONFIG_UNAVAILABLE"] = "choose synchronization mode and create an API token to copy local sync config";
|
|
25
26
|
i18n["SYNC_PROFILE_CONFIG_EXPORTED"] = "local sync config copied";
|
|
26
27
|
i18n["SYNC_PROFILE_CONFIG_EXPORTED_DESCRIPTION"] = "the generated TOML config was copied to clipboard";
|
|
27
28
|
i18n["SYNC_PROFILE_CONFIG_DOWNLOADED"] = "local sync config downloaded";
|
|
28
29
|
i18n["SYNC_PROFILE_CONFIG_DOWNLOADED_DESCRIPTION"] = "the generated TOML config was downloaded as a file";
|
|
30
|
+
i18n["EMACS_USE_PACKAGE_CONFIG_COPIED"] = "Emacs use-package config copied";
|
|
31
|
+
i18n["EMACS_USE_PACKAGE_CONFIG_COPIED_DESCRIPTION"] = "the generated Emacs use-package config was copied to clipboard";
|
|
32
|
+
i18n["EMACS_USE_PACKAGE_COPY_CONFIG"] = "copy Emacs use-package config";
|
|
29
33
|
i18n["SUBSCRIPTION_KEY"] = "subscription key";
|
|
30
34
|
i18n["ACTIVATE"] = "activate";
|
|
31
35
|
i18n["WANT_SUBSCRIPTION"] = "want to get a key for synchronization?";
|
|
@@ -232,6 +236,8 @@ export var i18n;
|
|
|
232
236
|
i18n["ONBOARDING_AUTH_TITLE"] = "Sign in";
|
|
233
237
|
i18n["ONBOARDING_AUTH_DESCRIPTION"] = "Sign in to sync your notes across devices and unlock cloud features.";
|
|
234
238
|
i18n["ONBOARDING_AUTH_GITHUB"] = "Sign in with GitHub";
|
|
239
|
+
i18n["ONBOARDING_SYNC_TITLE"] = "Synchronization setup";
|
|
240
|
+
i18n["ONBOARDING_SYNC_DESCRIPTION"] = "Choose remote synchronization, create an API token, then copy your local sync configuration.";
|
|
235
241
|
i18n["ONBOARDING_EMACS_TITLE"] = "Emacs Integration";
|
|
236
242
|
i18n["ONBOARDING_EMACS_DESCRIPTION"] = "OrgNote is fully compatible with Emacs Org-mode and Org-roam.";
|
|
237
243
|
i18n["ONBOARDING_EMACS_COPY_CONFIG"] = "Copy config";
|
|
@@ -61,8 +61,9 @@ export declare enum DefaultCommands {
|
|
|
61
61
|
SELECT_FILE_PATH = "select file path",
|
|
62
62
|
PICK_SYNC_DIR = "pick sync dir",
|
|
63
63
|
SYNC_FILES = "sync files",
|
|
64
|
-
EXPORT_LOCAL_SYNC_CONFIG = "
|
|
65
|
-
DOWNLOAD_LOCAL_SYNC_CONFIG = "download
|
|
64
|
+
EXPORT_LOCAL_SYNC_CONFIG = "copy CLI sync config",
|
|
65
|
+
DOWNLOAD_LOCAL_SYNC_CONFIG = "download CLI sync config",
|
|
66
|
+
COPY_EMACS_USE_PACKAGE_CONFIG = "copy Emacs use-package config",
|
|
66
67
|
RELOAD_FILES = "reload files",
|
|
67
68
|
ENCRYPT_NOTE = "encrypt note",
|
|
68
69
|
DECRYPT_NOTE = "decrypt note",
|
|
@@ -74,8 +74,9 @@ export var DefaultCommands;
|
|
|
74
74
|
DefaultCommands["PICK_SYNC_DIR"] = "pick sync dir";
|
|
75
75
|
// File management
|
|
76
76
|
DefaultCommands["SYNC_FILES"] = "sync files";
|
|
77
|
-
DefaultCommands["EXPORT_LOCAL_SYNC_CONFIG"] = "
|
|
78
|
-
DefaultCommands["DOWNLOAD_LOCAL_SYNC_CONFIG"] = "download
|
|
77
|
+
DefaultCommands["EXPORT_LOCAL_SYNC_CONFIG"] = "copy CLI sync config";
|
|
78
|
+
DefaultCommands["DOWNLOAD_LOCAL_SYNC_CONFIG"] = "download CLI sync config";
|
|
79
|
+
DefaultCommands["COPY_EMACS_USE_PACKAGE_CONFIG"] = "copy Emacs use-package config";
|
|
79
80
|
DefaultCommands["RELOAD_FILES"] = "reload files";
|
|
80
81
|
DefaultCommands["ENCRYPT_NOTE"] = "encrypt note";
|
|
81
82
|
DefaultCommands["DECRYPT_NOTE"] = "decrypt note";
|