orgnote-api 0.42.7 → 0.42.9
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,17 @@ 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",
|
|
32
|
+
CLI_INSTALL_DESCRIPTION = "Install orgnote-cli before using local synchronization from terminal.",
|
|
33
|
+
CLI_INSTALL_COMMAND_COPIED = "CLI install command copied",
|
|
34
|
+
CLI_INSTALL_COMMAND_COPIED_DESCRIPTION = "the orgnote-cli install command was copied to clipboard",
|
|
28
35
|
SUBSCRIPTION_KEY = "subscription key",
|
|
29
36
|
ACTIVATE = "activate",
|
|
30
37
|
WANT_SUBSCRIPTION = "want to get a key for synchronization?",
|
|
@@ -219,6 +226,8 @@ export declare enum i18n {
|
|
|
219
226
|
ONBOARDING_AUTH_TITLE = "Sign in",
|
|
220
227
|
ONBOARDING_AUTH_DESCRIPTION = "Sign in to sync your notes across devices and unlock cloud features.",
|
|
221
228
|
ONBOARDING_AUTH_GITHUB = "Sign in with GitHub",
|
|
229
|
+
ONBOARDING_SYNC_TITLE = "Synchronization setup",
|
|
230
|
+
ONBOARDING_SYNC_DESCRIPTION = "Install the CLI, choose remote synchronization, create an API token, then copy your local sync configuration.",
|
|
222
231
|
ONBOARDING_EMACS_TITLE = "Emacs Integration",
|
|
223
232
|
ONBOARDING_EMACS_DESCRIPTION = "OrgNote is fully compatible with Emacs Org-mode and Org-roam.",
|
|
224
233
|
ONBOARDING_EMACS_COPY_CONFIG = "Copy config",
|
|
@@ -299,6 +308,8 @@ export declare const I18N: {
|
|
|
299
308
|
SYNC_FILES: DefaultCommands.SYNC_FILES;
|
|
300
309
|
EXPORT_LOCAL_SYNC_CONFIG: DefaultCommands.EXPORT_LOCAL_SYNC_CONFIG;
|
|
301
310
|
DOWNLOAD_LOCAL_SYNC_CONFIG: DefaultCommands.DOWNLOAD_LOCAL_SYNC_CONFIG;
|
|
311
|
+
COPY_EMACS_USE_PACKAGE_CONFIG: DefaultCommands.COPY_EMACS_USE_PACKAGE_CONFIG;
|
|
312
|
+
COPY_CLI_INSTALL_COMMAND: DefaultCommands.COPY_CLI_INSTALL_COMMAND;
|
|
302
313
|
RELOAD_FILES: DefaultCommands.RELOAD_FILES;
|
|
303
314
|
ENCRYPT_NOTE: DefaultCommands.ENCRYPT_NOTE;
|
|
304
315
|
DECRYPT_NOTE: DefaultCommands.DECRYPT_NOTE;
|
|
@@ -399,10 +410,17 @@ export declare const I18N: {
|
|
|
399
410
|
FORCE_SYNC: i18n.FORCE_SYNC;
|
|
400
411
|
FORCE_SYNC_DESCRIPTION: i18n.FORCE_SYNC_DESCRIPTION;
|
|
401
412
|
SYNC_PROFILE_CONFIG_DESCRIPTION: i18n.SYNC_PROFILE_CONFIG_DESCRIPTION;
|
|
413
|
+
SYNC_PROFILE_CONFIG_UNAVAILABLE: i18n.SYNC_PROFILE_CONFIG_UNAVAILABLE;
|
|
402
414
|
SYNC_PROFILE_CONFIG_EXPORTED: i18n.SYNC_PROFILE_CONFIG_EXPORTED;
|
|
403
415
|
SYNC_PROFILE_CONFIG_EXPORTED_DESCRIPTION: i18n.SYNC_PROFILE_CONFIG_EXPORTED_DESCRIPTION;
|
|
404
416
|
SYNC_PROFILE_CONFIG_DOWNLOADED: i18n.SYNC_PROFILE_CONFIG_DOWNLOADED;
|
|
405
417
|
SYNC_PROFILE_CONFIG_DOWNLOADED_DESCRIPTION: i18n.SYNC_PROFILE_CONFIG_DOWNLOADED_DESCRIPTION;
|
|
418
|
+
EMACS_USE_PACKAGE_CONFIG_COPIED: i18n.EMACS_USE_PACKAGE_CONFIG_COPIED;
|
|
419
|
+
EMACS_USE_PACKAGE_CONFIG_COPIED_DESCRIPTION: i18n.EMACS_USE_PACKAGE_CONFIG_COPIED_DESCRIPTION;
|
|
420
|
+
EMACS_USE_PACKAGE_COPY_CONFIG: i18n.EMACS_USE_PACKAGE_COPY_CONFIG;
|
|
421
|
+
CLI_INSTALL_DESCRIPTION: i18n.CLI_INSTALL_DESCRIPTION;
|
|
422
|
+
CLI_INSTALL_COMMAND_COPIED: i18n.CLI_INSTALL_COMMAND_COPIED;
|
|
423
|
+
CLI_INSTALL_COMMAND_COPIED_DESCRIPTION: i18n.CLI_INSTALL_COMMAND_COPIED_DESCRIPTION;
|
|
406
424
|
SUBSCRIPTION_KEY: i18n.SUBSCRIPTION_KEY;
|
|
407
425
|
ACTIVATE: i18n.ACTIVATE;
|
|
408
426
|
WANT_SUBSCRIPTION: i18n.WANT_SUBSCRIPTION;
|
|
@@ -589,6 +607,8 @@ export declare const I18N: {
|
|
|
589
607
|
ONBOARDING_AUTH_TITLE: i18n.ONBOARDING_AUTH_TITLE;
|
|
590
608
|
ONBOARDING_AUTH_DESCRIPTION: i18n.ONBOARDING_AUTH_DESCRIPTION;
|
|
591
609
|
ONBOARDING_AUTH_GITHUB: i18n.ONBOARDING_AUTH_GITHUB;
|
|
610
|
+
ONBOARDING_SYNC_TITLE: i18n.ONBOARDING_SYNC_TITLE;
|
|
611
|
+
ONBOARDING_SYNC_DESCRIPTION: i18n.ONBOARDING_SYNC_DESCRIPTION;
|
|
592
612
|
ONBOARDING_EMACS_TITLE: i18n.ONBOARDING_EMACS_TITLE;
|
|
593
613
|
ONBOARDING_EMACS_DESCRIPTION: i18n.ONBOARDING_EMACS_DESCRIPTION;
|
|
594
614
|
ONBOARDING_EMACS_COPY_CONFIG: i18n.ONBOARDING_EMACS_COPY_CONFIG;
|
package/constants/i18n-keys.js
CHANGED
|
@@ -22,10 +22,17 @@ 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";
|
|
33
|
+
i18n["CLI_INSTALL_DESCRIPTION"] = "Install orgnote-cli before using local synchronization from terminal.";
|
|
34
|
+
i18n["CLI_INSTALL_COMMAND_COPIED"] = "CLI install command copied";
|
|
35
|
+
i18n["CLI_INSTALL_COMMAND_COPIED_DESCRIPTION"] = "the orgnote-cli install command was copied to clipboard";
|
|
29
36
|
i18n["SUBSCRIPTION_KEY"] = "subscription key";
|
|
30
37
|
i18n["ACTIVATE"] = "activate";
|
|
31
38
|
i18n["WANT_SUBSCRIPTION"] = "want to get a key for synchronization?";
|
|
@@ -232,6 +239,8 @@ export var i18n;
|
|
|
232
239
|
i18n["ONBOARDING_AUTH_TITLE"] = "Sign in";
|
|
233
240
|
i18n["ONBOARDING_AUTH_DESCRIPTION"] = "Sign in to sync your notes across devices and unlock cloud features.";
|
|
234
241
|
i18n["ONBOARDING_AUTH_GITHUB"] = "Sign in with GitHub";
|
|
242
|
+
i18n["ONBOARDING_SYNC_TITLE"] = "Synchronization setup";
|
|
243
|
+
i18n["ONBOARDING_SYNC_DESCRIPTION"] = "Install the CLI, choose remote synchronization, create an API token, then copy your local sync configuration.";
|
|
235
244
|
i18n["ONBOARDING_EMACS_TITLE"] = "Emacs Integration";
|
|
236
245
|
i18n["ONBOARDING_EMACS_DESCRIPTION"] = "OrgNote is fully compatible with Emacs Org-mode and Org-roam.";
|
|
237
246
|
i18n["ONBOARDING_EMACS_COPY_CONFIG"] = "Copy config";
|
|
@@ -61,8 +61,10 @@ 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",
|
|
67
|
+
COPY_CLI_INSTALL_COMMAND = "copy CLI install command",
|
|
66
68
|
RELOAD_FILES = "reload files",
|
|
67
69
|
ENCRYPT_NOTE = "encrypt note",
|
|
68
70
|
DECRYPT_NOTE = "decrypt note",
|
|
@@ -74,8 +74,10 @@ 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";
|
|
80
|
+
DefaultCommands["COPY_CLI_INSTALL_COMMAND"] = "copy CLI install command";
|
|
79
81
|
DefaultCommands["RELOAD_FILES"] = "reload files";
|
|
80
82
|
DefaultCommands["ENCRYPT_NOTE"] = "encrypt note";
|
|
81
83
|
DefaultCommands["DECRYPT_NOTE"] = "decrypt note";
|