diff --git a/apps/web/src/components/editor/tiptap.tsx b/apps/web/src/components/editor/tiptap.tsx
index 35b67788e..f7e7e085a 100644
--- a/apps/web/src/components/editor/tiptap.tsx
+++ b/apps/web/src/components/editor/tiptap.tsx
@@ -39,6 +39,7 @@ import {
getChangedNodes,
LinkAttributes,
profiler,
+ type VirtualizationMode,
type Selection
} from "@notesnook/editor";
import { installProfilerGlobals, setProfiledEditor } from "./profiling";
@@ -117,7 +118,7 @@ type TipTapProps = {
dayFormat: DayFormat;
markdownShortcuts: boolean;
fontLigatures: boolean;
- virtualization: boolean;
+ virtualization: VirtualizationMode;
};
function countCharacters(text: string) {
@@ -292,7 +293,7 @@ function TipTap(props: TipTapProps) {
onFocus,
onCreate: async ({ editor }) => {
setProfiledEditor(editor as Editor);
- profiler.setContext("virtualization", !!virtualization);
+ profiler.setContext("virtualization", virtualization);
profiler.setContext("noteId", id);
profiler.setContext("topLevelBlocks", editor.state.doc.childCount);
profiler.setContext("characters", editor.state.doc.textContent.length);
diff --git a/apps/web/src/dialogs/settings/editor-settings.ts b/apps/web/src/dialogs/settings/editor-settings.ts
index 22b2e56d1..9e8628858 100644
--- a/apps/web/src/dialogs/settings/editor-settings.ts
+++ b/apps/web/src/dialogs/settings/editor-settings.ts
@@ -18,6 +18,7 @@ along with this program. If not, see .
*/
import { SettingsGroup } from "./types";
+import { VirtualizationMode } from "@notesnook/editor";
import {
editorConfig,
onEditorConfigChange,
@@ -165,10 +166,18 @@ export const EditorSettings: SettingsGroup[] = [
useSettingStore.subscribe((c) => c.editorVirtualization, listener),
components: [
{
- type: "toggle",
- isToggled: () => useSettingStore.getState().editorVirtualization,
- toggle: () =>
- useSettingStore.getState().toggleEditorVirtualization()
+ type: "dropdown",
+ options: [
+ { value: "off", title: strings.editorVirtualizationOff() },
+ { value: "blocks", title: strings.editorVirtualizationBlocks() },
+ { value: "pages", title: strings.editorVirtualizationPages() }
+ ],
+ selectedOption: () =>
+ useSettingStore.getState().editorVirtualization,
+ onSelectionChanged: (value) =>
+ useSettingStore
+ .getState()
+ .setEditorVirtualization(value as VirtualizationMode)
}
]
}
diff --git a/apps/web/src/stores/setting-store.ts b/apps/web/src/stores/setting-store.ts
index 75b266c45..d2287d114 100644
--- a/apps/web/src/stores/setting-store.ts
+++ b/apps/web/src/stores/setting-store.ts
@@ -25,6 +25,7 @@ import Config from "../utils/config";
import BaseStore from "./index";
import { TimeFormat, DayFormat, WeekFormat, EVENTS } from "@notesnook/core";
import { Profile, TrashCleanupInterval } from "@notesnook/core";
+import { VirtualizationMode, toVirtualizationMode } from "@notesnook/editor";
import { showToast } from "../utils/toast";
import { ConfirmDialog } from "../dialogs/confirm";
import * as openpgp from "openpgp";
@@ -57,7 +58,9 @@ class SettingStore extends BaseStore {
doubleSpacedParagraphs = Config.get("doubleSpacedLines", true);
markdownShortcuts = Config.get("markdownShortcuts", false);
fontLigatures = Config.get("fontLigatures", false);
- editorVirtualization = Config.get("editorVirtualization", false);
+ editorVirtualization: VirtualizationMode = toVirtualizationMode(
+ Config.get("editorVirtualization", "off")
+ );
notificationsSettings = Config.get("notifications", { reminder: true });
isFullOfflineMode = Config.get("fullOfflineMode", false);
serverUrls: Partial> = Config.get("serverUrls", {});
@@ -251,11 +254,9 @@ class SettingStore extends BaseStore {
Config.set("fontLigatures", !fontLigatures);
};
- toggleEditorVirtualization = (toggleState?: boolean) => {
- const editorVirtualization = this.get().editorVirtualization;
- const next = toggleState ?? !editorVirtualization;
- this.set((state) => (state.editorVirtualization = next));
- Config.set("editorVirtualization", next);
+ setEditorVirtualization = (mode: VirtualizationMode) => {
+ this.set((state) => (state.editorVirtualization = mode));
+ Config.set("editorVirtualization", mode);
};
togglePrivacyMode = async () => {
diff --git a/packages/editor/src/index.ts b/packages/editor/src/index.ts
index c33af8606..8d60f6895 100644
--- a/packages/editor/src/index.ts
+++ b/packages/editor/src/index.ts
@@ -19,6 +19,7 @@ along with this program. If not, see .
import {
EditorOptions,
+ Node as TiptapNode,
extensions as TiptapCoreExtensions,
getHTMLFromFragment
} from "@tiptap/core";
@@ -84,6 +85,7 @@ import { Callout } from "./extensions/callout/index.js";
import BlockId from "./extensions/block-id/index.js";
import { Virtualization } from "./extensions/virtualization/index.js";
import { EditorProfiler } from "./extensions/profiler/index.js";
+import { Page, Paging } from "./extensions/paging/index.js";
import { useEditorSearchStore } from "./toolbar/stores/search-store.js";
import { DiffHighlighter } from "./extensions/diff-highlighter/index.js";
import { getChangedNodes } from "./utils/prosemirror.js";
@@ -139,7 +141,7 @@ export type TiptapOptions = EditorOptions &
isMobile?: boolean;
doubleSpacedLines?: boolean;
enableFontLigatures?: boolean;
- virtualization?: boolean;
+ virtualization?: VirtualizationMode | boolean;
} & {
placeholder: string;
};
@@ -192,8 +194,9 @@ const useTiptap = (
};
}, [closeAllPopups]);
- const defaultOptions = useMemo>(
- () => ({
+ const defaultOptions = useMemo>(() => {
+ const mode = toVirtualizationMode(virtualization);
+ return {
enableCoreExtensions: false,
editorProps: {
...editorProps,
@@ -237,6 +240,7 @@ const useTiptap = (
doubleSpaced: doubleSpacedLines
}),
StarterKit.configure({
+ document: false,
code: false,
codeBlock: false,
listItem: false,
@@ -276,7 +280,10 @@ const useTiptap = (
}
}),
BlockId,
- Virtualization.configure({ enabled: !!virtualization }),
+ PagedDocument,
+ Page,
+ Virtualization.configure({ enabled: mode === "blocks" }),
+ Paging.configure({ enabled: mode === "pages" }),
EditorProfiler,
Blockquote,
CharacterCount,
@@ -417,23 +424,22 @@ const useTiptap = (
},
injectCSS: false,
parseOptions: { preserveWhitespace: true }
- }),
- [
- isMobile,
- previewAttachment,
- downloadAttachment,
- openAttachmentPicker,
- getAttachmentData,
- onBeforeCreate,
- openLink,
- dateFormat,
- timeFormat,
- editorProps,
- copyToClipboard,
- createInternalLink,
- virtualization
- ]
- );
+ };
+ }, [
+ isMobile,
+ previewAttachment,
+ downloadAttachment,
+ openAttachmentPicker,
+ getAttachmentData,
+ onBeforeCreate,
+ openLink,
+ dateFormat,
+ timeFormat,
+ editorProps,
+ copyToClipboard,
+ createInternalLink,
+ virtualization
+ ]);
const editor = useEditor(
{
@@ -446,6 +452,26 @@ const useTiptap = (
return editor;
};
+/**
+ * Pages are optional in the schema so an unpaged document stays valid: nothing
+ * has to be migrated, and turning paging off simply stops producing them.
+ */
+const PagedDocument = TiptapNode.create({
+ name: "doc",
+ topNode: true,
+ content: "(page | block)+"
+});
+
+export type VirtualizationMode = "off" | "blocks" | "pages";
+
+export function toVirtualizationMode(
+ value: VirtualizationMode | boolean | undefined
+): VirtualizationMode {
+ if (value === true) return "blocks";
+ if (!value) return "off";
+ return value;
+}
+
function hasStyle(element: HTMLElement | string) {
const style = (element as HTMLElement).getAttribute("style");
if (!style || style === "font-family: inherit;") return false;
diff --git a/packages/intl/locale/en.po b/packages/intl/locale/en.po
index 19346963e..828a096ec 100644
--- a/packages/intl/locale/en.po
+++ b/packages/intl/locale/en.po
@@ -69,7 +69,7 @@ msgid "{0} Highlights 🎉"
msgstr "{0} Highlights 🎉"
#. placeholder {0}: platform === "ios" ? "Apple" : "Google"
-#: src/strings.ts:2582
+#: src/strings.ts:2585
msgid "{0} will remind you before your trial ends"
msgstr "{0} will remind you before your trial ends"
@@ -508,7 +508,7 @@ msgstr "{count, plural, one {Unpublish note} other {Unpublish # notes}}"
msgid "{count, plural, one {Version deleted} other {# versions deleted}}"
msgstr "{count, plural, one {Version deleted} other {# versions deleted}}"
-#: src/strings.ts:2513
+#: src/strings.ts:2516
msgid "{count} characters"
msgstr "{count} characters"
@@ -516,7 +516,7 @@ msgstr "{count} characters"
msgid "{days, plural, one {1 day} other {# days}}"
msgstr "{days, plural, one {1 day} other {# days}}"
-#: src/strings.ts:2573
+#: src/strings.ts:2576
msgid "{days} days free"
msgstr "{days} days free"
@@ -580,7 +580,7 @@ msgstr "{notes, plural, one {Export note} other {Export # notes}}"
msgid "{percentage}% updating..."
msgstr "{percentage}% updating..."
-#: src/strings.ts:2557
+#: src/strings.ts:2560
msgid "{plan} plan"
msgstr "{plan} plan"
@@ -624,19 +624,19 @@ msgstr "{words, plural, other {# selected}}"
msgid "#notesnook"
msgstr "#notesnook"
-#: src/strings.ts:2682
+#: src/strings.ts:2685
msgid "1 day"
msgstr "1 day"
-#: src/strings.ts:2684
+#: src/strings.ts:2687
msgid "1 month"
msgstr "1 month"
-#: src/strings.ts:2683
+#: src/strings.ts:2686
msgid "1 week"
msgstr "1 week"
-#: src/strings.ts:2685
+#: src/strings.ts:2688
msgid "1 year"
msgstr "1 year"
@@ -656,7 +656,7 @@ msgstr "2FA code is required()"
msgid "2FA code sent via {method}"
msgstr "2FA code sent via {method}"
-#: src/strings.ts:2600
+#: src/strings.ts:2603
msgid "5 year plan (One time purchase)"
msgstr "5 year plan (One time purchase)"
@@ -732,7 +732,7 @@ msgstr "Add a tag"
msgid "Add color"
msgstr "Add color"
-#: src/strings.ts:2670
+#: src/strings.ts:2673
msgid "Add key"
msgstr "Add key"
@@ -740,7 +740,7 @@ msgstr "Add key"
msgid "Add notebook"
msgstr "Add notebook"
-#: src/strings.ts:2495
+#: src/strings.ts:2498
msgid "Add notes"
msgstr "Add notes"
@@ -772,11 +772,11 @@ msgstr "Add tags to multiple notes at once"
msgid "Add to dictionary"
msgstr "Add to dictionary"
-#: src/strings.ts:2633
+#: src/strings.ts:2636
msgid "Add to home"
msgstr "Add to home"
-#: src/strings.ts:2493
+#: src/strings.ts:2496
msgid "Add to notebook"
msgstr "Add to notebook"
@@ -788,7 +788,7 @@ msgstr "Add your first note"
msgid "Add your first notebook"
msgstr "Add your first notebook"
-#: src/strings.ts:2636
+#: src/strings.ts:2639
msgid "Adjust the line height of the editor"
msgstr "Adjust the line height of the editor"
@@ -812,7 +812,7 @@ msgstr "Align left"
msgid "Align right"
msgstr "Align right"
-#: src/strings.ts:2816
+#: src/strings.ts:2819
msgid "Alignment"
msgstr "Alignment"
@@ -836,7 +836,7 @@ msgstr "All fields are required"
msgid "All files"
msgstr "All files"
-#: src/strings.ts:2765
+#: src/strings.ts:2768
msgid "All items deleted"
msgstr "All items deleted"
@@ -888,7 +888,7 @@ msgstr "Amount"
msgid "An error occurred while migrating your data. You can logout of your account and try to relogin. However this is not recommended as it may result in some data loss if your data was not synced."
msgstr "An error occurred while migrating your data. You can logout of your account and try to relogin. However this is not recommended as it may result in some data loss if your data was not synced."
-#: src/strings.ts:2594
+#: src/strings.ts:2597
msgid "and"
msgstr "and"
@@ -900,7 +900,7 @@ msgstr "and "
msgid "and get a chance to win free promo codes."
msgstr "and get a chance to win free promo codes."
-#: src/strings.ts:2550
+#: src/strings.ts:2553
msgid "and much more."
msgstr "and much more."
@@ -908,27 +908,27 @@ msgstr "and much more."
msgid "and we will manually confirm your account."
msgstr "and we will manually confirm your account."
-#: src/strings.ts:2611
+#: src/strings.ts:2614
msgid "ANNOUNCEMENT"
msgstr "ANNOUNCEMENT"
-#: src/strings.ts:2700
+#: src/strings.ts:2703
msgid "API key copied to clipboard"
msgstr "API key copied to clipboard"
-#: src/strings.ts:2678
+#: src/strings.ts:2681
msgid "API key created successfully"
msgstr "API key created successfully"
-#: src/strings.ts:2705
+#: src/strings.ts:2708
msgid "API key revoked"
msgstr "API key revoked"
-#: src/strings.ts:2671
+#: src/strings.ts:2674
msgid "API Keys"
msgstr "API Keys"
-#: src/strings.ts:2692
+#: src/strings.ts:2695
msgid "API Keys Limit Reached"
msgstr "API Keys Limit Reached"
@@ -979,7 +979,7 @@ msgid "Applying changes"
msgstr "Applying changes"
#: src/strings.ts:1532
-#: src/strings.ts:2500
+#: src/strings.ts:2503
msgid "Archive"
msgstr "Archive"
@@ -995,11 +995,11 @@ msgstr "Are you sure you want to clear all logs from {key}?"
msgid "Are you sure you want to clear trash?"
msgstr "Are you sure you want to clear trash?"
-#: src/strings.ts:2764
+#: src/strings.ts:2767
msgid "Are you sure you want to delete all failed inbox items?"
msgstr "Are you sure you want to delete all failed inbox items?"
-#: src/strings.ts:2737
+#: src/strings.ts:2740
msgid "Are you sure you want to delete this attachment?"
msgstr "Are you sure you want to delete this attachment?"
@@ -1011,7 +1011,7 @@ msgstr "Are you sure you want to logout and clear all data stored on THIS DEVICE
msgid "Are you sure you want to logout from this device? Any unsynced changes will be lost."
msgstr "Are you sure you want to logout from this device? Any unsynced changes will be lost."
-#: src/strings.ts:2775
+#: src/strings.ts:2778
msgid "Are you sure you want to open this file: {filePath}?"
msgstr "Are you sure you want to open this file: {filePath}?"
@@ -1023,7 +1023,7 @@ msgstr "Are you sure you want to remove your name?"
msgid "Are you sure you want to remove your profile picture?"
msgstr "Are you sure you want to remove your profile picture?"
-#: src/strings.ts:2704
+#: src/strings.ts:2707
msgid "Are you sure you want to revoke the key \"{name}\"? All inbox actions using this key will stop working immediately."
msgstr "Are you sure you want to revoke the key \"{name}\"? All inbox actions using this key will stop working immediately."
@@ -1055,7 +1055,7 @@ msgstr "Attach image from URL"
msgid "Attached files"
msgstr "Attached files"
-#: src/strings.ts:2766
+#: src/strings.ts:2769
msgid "Attaching files"
msgstr "Attaching files"
@@ -1068,7 +1068,7 @@ msgstr "attachment"
msgid "Attachment"
msgstr "Attachment"
-#: src/strings.ts:2738
+#: src/strings.ts:2741
msgid "Attachment deleted"
msgstr "Attachment deleted"
@@ -1113,11 +1113,11 @@ msgstr "Audios"
msgid "Auth server"
msgstr "Auth server"
-#: src/strings.ts:2698
+#: src/strings.ts:2701
msgid "Authenticate"
msgstr "Authenticate"
-#: src/strings.ts:2695
+#: src/strings.ts:2698
msgid "Authenticate to view API key"
msgstr "Authenticate to view API key"
@@ -1157,7 +1157,7 @@ msgstr "Auto save: off"
msgid "Auto start on system startup"
msgstr "Auto start on system startup"
-#: src/strings.ts:2753
+#: src/strings.ts:2756
msgid "Auto-generate keys"
msgstr "Auto-generate keys"
@@ -1206,7 +1206,7 @@ msgstr "Available on iOS"
msgid "Available on iOS & Android"
msgstr "Available on iOS & Android"
-#: src/strings.ts:2723
+#: src/strings.ts:2726
msgid "Back"
msgstr "Back"
@@ -1298,11 +1298,11 @@ msgstr "Behavior"
msgid "Behaviour"
msgstr "Behaviour"
-#: src/strings.ts:2487
+#: src/strings.ts:2490
msgid "Believer plan"
msgstr "Believer plan"
-#: src/strings.ts:2597
+#: src/strings.ts:2600
msgid "Best value"
msgstr "Best value"
@@ -1314,11 +1314,11 @@ msgstr "Beta"
msgid "Bi-directional note link"
msgstr "Bi-directional note link"
-#: src/strings.ts:2570
+#: src/strings.ts:2573
msgid "billed annually at {price}"
msgstr "billed annually at {price}"
-#: src/strings.ts:2571
+#: src/strings.ts:2574
msgid "billed monthly at {price}"
msgstr "billed monthly at {price}"
@@ -1346,6 +1346,10 @@ msgstr "Biometrics authentication failed. Please try again."
msgid "Biometrics not enrolled"
msgstr "Biometrics not enrolled"
+#: src/strings.ts:2483
+msgid "Blocks"
+msgstr "Blocks"
+
#: src/strings.ts:2269
msgid "Bold"
msgstr "Bold"
@@ -1366,7 +1370,7 @@ msgstr "Bullet list"
msgid "By"
msgstr "By"
-#: src/strings.ts:2592
+#: src/strings.ts:2595
msgid "By joining you agree to our"
msgstr "By joining you agree to our"
@@ -1378,7 +1382,7 @@ msgstr "By signing up, you agree to our "
msgid "Callout"
msgstr "Callout"
-#: src/strings.ts:2530
+#: src/strings.ts:2533
msgid "Can I cancel my free trial anytime?"
msgstr "Can I cancel my free trial anytime?"
@@ -1386,11 +1390,11 @@ msgstr "Can I cancel my free trial anytime?"
msgid "Cancel"
msgstr "Cancel"
-#: src/strings.ts:2590
+#: src/strings.ts:2593
msgid "Cancel anytime, subscription auto-renews."
msgstr "Cancel anytime, subscription auto-renews."
-#: src/strings.ts:2552
+#: src/strings.ts:2555
msgid "Cancel anytime."
msgstr "Cancel anytime."
@@ -1410,7 +1414,7 @@ msgstr "Cancel subscription"
msgid "Cancel upload"
msgstr "Cancel upload"
-#: src/strings.ts:2694
+#: src/strings.ts:2697
msgid "Cannot create more than 10 api keys at a time. Please revoke some existing keys before creating new ones."
msgstr "Cannot create more than 10 api keys at a time. Please revoke some existing keys before creating new ones."
@@ -1478,7 +1482,7 @@ msgstr "Change notification sound"
msgid "Change password"
msgstr "Change password"
-#: src/strings.ts:2604
+#: src/strings.ts:2607
msgid "Change plan"
msgstr "Change plan"
@@ -1514,7 +1518,7 @@ msgstr "Change your primary two-factor authentication method"
msgid "Changes from other devices won't be updated in the editor in real-time."
msgstr "Changes from other devices won't be updated in the editor in real-time."
-#: src/strings.ts:2714
+#: src/strings.ts:2717
msgid "Changing Inbox PGP keys will delete all your unsynced inbox items."
msgstr "Changing Inbox PGP keys will delete all your unsynced inbox items."
@@ -1522,7 +1526,7 @@ msgstr "Changing Inbox PGP keys will delete all your unsynced inbox items."
msgid "Changing password is an irreversible process. You will be logged out from all your devices. Please make sure you do not close the app while your password is changing and have good internet connection."
msgstr "Changing password is an irreversible process. You will be logged out from all your devices. Please make sure you do not close the app while your password is changing and have good internet connection."
-#: src/strings.ts:2506
+#: src/strings.ts:2509
msgid "Characters"
msgstr "Characters"
@@ -1594,7 +1598,7 @@ msgstr "Choose from pre-built themes or create your own"
msgid "Choose how dates are displayed in the app"
msgstr "Choose how dates are displayed in the app"
-#: src/strings.ts:2639
+#: src/strings.ts:2642
msgid "Choose how day is displayed in the app"
msgstr "Choose how day is displayed in the app"
@@ -1610,11 +1614,11 @@ msgstr "Choose how time is displayed in the app"
msgid "Choose how you want to secure your notes locally."
msgstr "Choose how you want to secure your notes locally."
-#: src/strings.ts:2752
+#: src/strings.ts:2755
msgid "Choose how you want to set up your Inbox PGP keys:"
msgstr "Choose how you want to set up your Inbox PGP keys:"
-#: src/strings.ts:2644
+#: src/strings.ts:2647
msgid "Choose what day to display as the first day of the week"
msgstr "Choose what day to display as the first day of the week"
@@ -1662,7 +1666,7 @@ msgstr "Clear data & reset account"
msgid "Clear default notebook"
msgstr "Clear default notebook"
-#: src/strings.ts:2806
+#: src/strings.ts:2809
msgid "Clear history"
msgstr "Clear history"
@@ -1716,7 +1720,7 @@ msgstr ""
msgid "Clearing trash will permanently delete all the items in your trash. This action is IRREVERSIBLE."
msgstr "Clearing trash will permanently delete all the items in your trash. This action is IRREVERSIBLE."
-#: src/strings.ts:2626
+#: src/strings.ts:2629
msgid "Click here to directly claim the promotion."
msgstr "Click here to directly claim the promotion."
@@ -1736,11 +1740,11 @@ msgstr "Click to remove"
msgid "Click to reset {title}"
msgstr "Click to reset {title}"
-#: src/strings.ts:2634
+#: src/strings.ts:2637
msgid "Click to save"
msgstr "Click to save"
-#: src/strings.ts:2630
+#: src/strings.ts:2633
msgid "Click to update"
msgstr "Click to update"
@@ -1748,7 +1752,7 @@ msgstr "Click to update"
msgid "Close"
msgstr "Close"
-#: src/strings.ts:2767
+#: src/strings.ts:2770
msgid "Close ({seconds})"
msgstr "Close ({seconds})"
@@ -1780,7 +1784,7 @@ msgstr "Close to the left"
msgid "Close to the right"
msgstr "Close to the right"
-#: src/strings.ts:2544
+#: src/strings.ts:2547
msgid "cloud storage space for storing images and files."
msgstr "cloud storage space for storing images and files."
@@ -1821,7 +1825,7 @@ msgstr "Color scheme"
msgid "Color title"
msgstr "Color title"
-#: src/strings.ts:2799
+#: src/strings.ts:2802
msgid "Colornote password for {filename}"
msgstr "Colornote password for {filename}"
@@ -1845,7 +1849,7 @@ msgstr "Command palette"
msgid "Community"
msgstr "Community"
-#: src/strings.ts:2564
+#: src/strings.ts:2567
msgid "Compare plans"
msgstr "Compare plans"
@@ -1865,11 +1869,11 @@ msgstr "Compress images before uploading"
msgid "Compressed images are uploaded in Full HD resolution and usually are good enough for most use cases."
msgstr "Compressed images are uploaded in Full HD resolution and usually are good enough for most use cases."
-#: src/strings.ts:2768
+#: src/strings.ts:2771
msgid "Compressing"
msgstr "Compressing"
-#: src/strings.ts:2772
+#: src/strings.ts:2775
msgid "Compression failed"
msgstr "Compression failed"
@@ -1897,7 +1901,7 @@ msgstr "Confirm new password"
msgid "Confirm password"
msgstr "Confirm password"
-#: src/strings.ts:2732
+#: src/strings.ts:2735
msgid "Confirm password required"
msgstr "Confirm password required"
@@ -1905,7 +1909,7 @@ msgstr "Confirm password required"
msgid "Confirm pin"
msgstr "Confirm pin"
-#: src/strings.ts:2658
+#: src/strings.ts:2661
msgid "Confirmation email sent"
msgstr "Confirmation email sent"
@@ -1970,7 +1974,7 @@ msgstr "Copy link"
msgid "Copy link text"
msgstr "Copy link text"
-#: src/strings.ts:2791
+#: src/strings.ts:2794
msgid "Copy logs"
msgstr "Copy logs"
@@ -2042,11 +2046,11 @@ msgstr "Create a tag to group related notes together."
msgid "Create account"
msgstr "Create account"
-#: src/strings.ts:2673
+#: src/strings.ts:2676
msgid "Create API Key"
msgstr "Create API Key"
-#: src/strings.ts:2690
+#: src/strings.ts:2693
msgid "Create Key"
msgstr "Create Key"
@@ -2078,7 +2082,7 @@ msgstr "Create vault"
msgid "Create your account"
msgstr "Create your account"
-#: src/strings.ts:2689
+#: src/strings.ts:2692
msgid "Create your first api key to get started."
msgstr "Create your first api key to get started."
@@ -2086,7 +2090,7 @@ msgstr "Create your first api key to get started."
msgid "Created at"
msgstr "Created at"
-#: src/strings.ts:2709
+#: src/strings.ts:2712
msgid "Created on"
msgstr "Created on"
@@ -2095,11 +2099,11 @@ msgstr "Created on"
msgid "Creating a{0} backup"
msgstr "Creating a{0} backup"
-#: src/strings.ts:2681
+#: src/strings.ts:2684
msgid "Creating..."
msgstr "Creating..."
-#: src/strings.ts:2783
+#: src/strings.ts:2786
msgid "Creation date cannot be after last edited date"
msgstr "Creation date cannot be after last edited date"
@@ -2124,7 +2128,7 @@ msgstr "Current note"
msgid "Current password"
msgstr "Current password"
-#: src/strings.ts:2741
+#: src/strings.ts:2744
msgid "Current password required"
msgstr "Current password required"
@@ -2221,7 +2225,7 @@ msgstr "Date format"
msgid "Date modified"
msgstr "Date modified"
-#: src/strings.ts:2756
+#: src/strings.ts:2759
msgid "Date synced"
msgstr "Date synced"
@@ -2233,7 +2237,7 @@ msgstr "Date uploaded"
msgid "Day"
msgstr "Day"
-#: src/strings.ts:2638
+#: src/strings.ts:2641
msgid "Day format"
msgstr "Day format"
@@ -2290,7 +2294,7 @@ msgstr "Default notebook cleared"
msgid "Default screen to open on app launch"
msgstr "Default screen to open on app launch"
-#: src/strings.ts:2497
+#: src/strings.ts:2500
msgid "Default sidebar tab"
msgstr "Default sidebar tab"
@@ -2310,15 +2314,15 @@ msgstr "Delete"
msgid "Delete account"
msgstr "Delete account"
-#: src/strings.ts:2762
+#: src/strings.ts:2765
msgid "Delete all"
msgstr "Delete all"
-#: src/strings.ts:2808
+#: src/strings.ts:2811
msgid "Delete all version history for this note?"
msgstr "Delete all version history for this note?"
-#: src/strings.ts:2735
+#: src/strings.ts:2738
msgid "Delete attachment"
msgstr "Delete attachment"
@@ -2330,7 +2334,7 @@ msgstr "Delete collapsed section"
msgid "Delete column"
msgstr "Delete column"
-#: src/strings.ts:2655
+#: src/strings.ts:2658
msgid "Delete data"
msgstr "Delete data"
@@ -2338,7 +2342,7 @@ msgstr "Delete data"
msgid "Delete group"
msgstr "Delete group"
-#: src/strings.ts:2802
+#: src/strings.ts:2805
msgid "Delete item"
msgstr "Delete item"
@@ -2390,7 +2394,7 @@ msgstr "Desktop app"
msgid "Desktop integration"
msgstr "Desktop integration"
-#: src/strings.ts:2755
+#: src/strings.ts:2758
msgid "Details"
msgstr "Details"
@@ -2410,7 +2414,7 @@ msgstr "Disable auto sync"
msgid "Disable editor margins"
msgstr "Disable editor margins"
-#: src/strings.ts:2667
+#: src/strings.ts:2670
msgid "Disable Inbox API"
msgstr "Disable Inbox API"
@@ -2426,7 +2430,7 @@ msgstr "Disable sync"
msgid "Disabled"
msgstr "Disabled"
-#: src/strings.ts:2669
+#: src/strings.ts:2672
msgid "Disabling will delete all your unsynced inbox items. Additionally, disabling will revoke all existing API keys, they will no longer work. Are you sure?"
msgstr "Disabling will delete all your unsynced inbox items. Additionally, disabling will revoke all existing API keys, they will no longer work. Are you sure?"
@@ -2575,7 +2579,7 @@ msgstr "Drop the files here"
msgid "Drop your files here to attach"
msgstr "Drop your files here to attach"
-#: src/strings.ts:2574
+#: src/strings.ts:2577
msgid "Due {date}"
msgstr "Due {date}"
@@ -2583,7 +2587,7 @@ msgstr "Due {date}"
msgid "Due date"
msgstr "Due date"
-#: src/strings.ts:2572
+#: src/strings.ts:2575
msgid "Due today"
msgstr "Due today"
@@ -2591,7 +2595,7 @@ msgstr "Due today"
msgid "Duplicate"
msgstr "Duplicate"
-#: src/strings.ts:2675
+#: src/strings.ts:2678
msgid "e.g., Todo integration"
msgstr "e.g., Todo integration"
@@ -2607,7 +2611,7 @@ msgstr "Easy access"
msgid "Edit"
msgstr "Edit"
-#: src/strings.ts:2645
+#: src/strings.ts:2648
msgid "Edit creation date"
msgstr "Edit creation date"
@@ -2620,7 +2624,7 @@ msgstr "Edit internal link"
msgid "Edit link"
msgstr "Edit link"
-#: src/strings.ts:2490
+#: src/strings.ts:2493
msgid "Edit profile"
msgstr "Edit profile"
@@ -2641,7 +2645,7 @@ msgstr "Editor"
msgid "Editor paging (experimental)"
msgstr "Editor paging (experimental)"
-#: src/strings.ts:2601
+#: src/strings.ts:2604
msgid "Education plan"
msgstr "Education plan"
@@ -2701,7 +2705,7 @@ msgstr "Enable app lock"
msgid "Enable editor margins"
msgstr "Enable editor margins"
-#: src/strings.ts:2662
+#: src/strings.ts:2665
msgid "Enable Inbox API"
msgstr "Enable Inbox API"
@@ -2721,7 +2725,7 @@ msgstr "Enable spell checker"
msgid "Enable two-factor authentication to add an extra layer of security to your account."
msgstr "Enable two-factor authentication to add an extra layer of security to your account."
-#: src/strings.ts:2663
+#: src/strings.ts:2666
msgid "Enable/Disable Inbox API"
msgstr "Enable/Disable Inbox API"
@@ -2741,7 +2745,7 @@ msgstr "Encrypted backup"
msgid "Encrypted, private, secure."
msgstr "Encrypted, private, secure."
-#: src/strings.ts:2769
+#: src/strings.ts:2772
msgid "Encrypting"
msgstr "Encrypting"
@@ -2841,7 +2845,7 @@ msgstr "Enter the gift code to redeem your subscription."
msgid "Enter the recovery code to continue logging in"
msgstr "Enter the recovery code to continue logging in"
-#: src/strings.ts:2637
+#: src/strings.ts:2640
msgid "Enter title"
msgstr "Enter title"
@@ -2853,11 +2857,11 @@ msgstr "Enter verification code sent to your new email"
msgid "Enter your new email"
msgstr "Enter your new email"
-#: src/strings.ts:2796
+#: src/strings.ts:2799
msgid "Enter your PGP private key"
msgstr "Enter your PGP private key"
-#: src/strings.ts:2795
+#: src/strings.ts:2798
msgid "Enter your PGP public key"
msgstr "Enter your PGP public key"
@@ -2901,7 +2905,7 @@ msgstr "Errors"
msgid "Errors in {count} attachments"
msgstr "Errors in {count} attachments"
-#: src/strings.ts:2486
+#: src/strings.ts:2489
msgid "Essential plan"
msgstr "Essential plan"
@@ -2937,7 +2941,7 @@ msgstr "Exit fullscreen"
msgid "Expand"
msgstr "Expand"
-#: src/strings.ts:2482
+#: src/strings.ts:2485
msgid "Expand sidebar"
msgstr "Expand sidebar"
@@ -2945,39 +2949,39 @@ msgstr "Expand sidebar"
msgid "Experience the next level of private note taking\""
msgstr "Experience the next level of private note taking\""
-#: src/strings.ts:2711
+#: src/strings.ts:2714
msgid "Expired"
msgstr "Expired"
-#: src/strings.ts:2676
+#: src/strings.ts:2679
msgid "Expires in"
msgstr "Expires in"
-#: src/strings.ts:2712
+#: src/strings.ts:2715
msgid "Expires on"
msgstr "Expires on"
-#: src/strings.ts:2651
+#: src/strings.ts:2654
msgid "Expiry date"
msgstr "Expiry date"
-#: src/strings.ts:2780
+#: src/strings.ts:2783
msgid "Expiry date cannot be more than 1 year in the future"
msgstr "Expiry date cannot be more than 1 year in the future"
-#: src/strings.ts:2778
+#: src/strings.ts:2781
msgid "Expiry date must be in the future"
msgstr "Expiry date must be in the future"
-#: src/strings.ts:2797
+#: src/strings.ts:2800
msgid "Expiry date removed"
msgstr "Expiry date removed"
-#: src/strings.ts:2781
+#: src/strings.ts:2784
msgid "Expiry date set"
msgstr "Expiry date set"
-#: src/strings.ts:2555
+#: src/strings.ts:2558
msgid "Explore all plans"
msgstr "Explore all plans"
@@ -3002,7 +3006,7 @@ msgstr "Export all notes as pdf, markdown, html or text in a single zip file"
msgid "Export as{0}"
msgstr "Export as{0}"
-#: src/strings.ts:2652
+#: src/strings.ts:2655
msgid "Export CSV"
msgstr "Export CSV"
@@ -3030,11 +3034,11 @@ msgstr "Faced an issue or have a suggestion? Click here to create a bug report"
msgid "Failed"
msgstr "Failed"
-#: src/strings.ts:2757
+#: src/strings.ts:2760
msgid "Failed inbox items"
msgstr "Failed inbox items"
-#: src/strings.ts:2656
+#: src/strings.ts:2659
msgid "Failed to attach file"
msgstr "Failed to attach file"
@@ -3042,12 +3046,12 @@ msgstr "Failed to attach file"
msgid "Failed to copy note"
msgstr "Failed to copy note"
-#: src/strings.ts:2701
+#: src/strings.ts:2704
msgid "Failed to copy to clipboard"
msgstr "Failed to copy to clipboard"
#. placeholder {0}: message ? `: ${message}` : ""
-#: src/strings.ts:2680
+#: src/strings.ts:2683
msgid "Failed to create API key{0}"
msgstr "Failed to create API key{0}"
@@ -3071,7 +3075,7 @@ msgstr "Failed to download file"
msgid "Failed to install theme."
msgstr "Failed to install theme."
-#: src/strings.ts:2687
+#: src/strings.ts:2690
msgid "Failed to load API keys. Please try again."
msgstr "Failed to load API keys. Please try again."
@@ -3091,7 +3095,7 @@ msgstr "Failed to register task"
msgid "Failed to resolve download url"
msgstr "Failed to resolve download url"
-#: src/strings.ts:2706
+#: src/strings.ts:2709
msgid "Failed to revoke API key"
msgstr "Failed to revoke API key"
@@ -3127,7 +3131,7 @@ msgstr "Failed to zip files"
msgid "Fallback method for 2FA enabled"
msgstr "Fallback method for 2FA enabled"
-#: src/strings.ts:2565
+#: src/strings.ts:2568
msgid "FAQs"
msgstr "FAQs"
@@ -3140,7 +3144,7 @@ msgstr "Favorite"
msgid "Favorites"
msgstr "Favorites"
-#: src/strings.ts:2563
+#: src/strings.ts:2566
msgid "Featured on"
msgstr "Featured on"
@@ -3168,7 +3172,7 @@ msgstr "File length is 0. Please upload this file again from the attachment mana
msgid "File length mismatch. Expected {expectedSize} but got {currentSize} bytes. Please upload this file again from the attachment manager."
msgstr "File length mismatch. Expected {expectedSize} but got {currentSize} bytes. Please upload this file again from the attachment manager."
-#: src/strings.ts:2777
+#: src/strings.ts:2780
msgid "File links cannot be opened in browsers. Please use the Notesnook desktop app."
msgstr "File links cannot be opened in browsers. Please use the Notesnook desktop app."
@@ -3176,7 +3180,7 @@ msgstr "File links cannot be opened in browsers. Please use the Notesnook deskto
msgid "File mismatch"
msgstr "File mismatch"
-#: src/strings.ts:2771
+#: src/strings.ts:2774
msgid "File size limit exceeded. Please upgrade your plan."
msgstr "File size limit exceeded. Please upgrade your plan."
@@ -3196,7 +3200,7 @@ msgstr "Filter attachments by filename, type or hash"
msgid "Filter languages"
msgstr "Filter languages"
-#: src/strings.ts:2623
+#: src/strings.ts:2626
msgid "Finish your purchase in the browser."
msgstr "Finish your purchase in the browser."
@@ -3240,7 +3244,7 @@ msgstr "Font ligatures"
msgid "Font size"
msgstr "Font size"
-#: src/strings.ts:2537
+#: src/strings.ts:2540
msgid "For a monthly subscription, you can get a refund within 7 days of purchase. For a yearly subscription, we offer a full refund within 14 days of purchase. For a 5 year subscription, you can request a refund within 30 days of purchase."
msgstr "For a monthly subscription, you can get a refund within 7 days of purchase. For a yearly subscription, we offer a full refund within 14 days of purchase. For a 5 year subscription, you can request a refund within 30 days of purchase."
@@ -3252,7 +3256,7 @@ msgstr "For a more integrated user experience, try out Notesnook for {platform}"
msgid "for help regarding how to use the Notesnook Importer."
msgstr "for help regarding how to use the Notesnook Importer."
-#: src/strings.ts:2546
+#: src/strings.ts:2549
msgid "for locking your notes as soon as app enters background"
msgstr "for locking your notes as soon as app enters background"
@@ -3290,11 +3294,11 @@ msgstr ""
msgid "Forgot password?"
msgstr "Forgot password?"
-#: src/strings.ts:2580
+#: src/strings.ts:2583
msgid "Free {duration} day trial, cancel any time"
msgstr "Free {duration} day trial, cancel any time"
-#: src/strings.ts:2484
+#: src/strings.ts:2487
msgid "Free plan"
msgstr "Free plan"
@@ -3366,7 +3370,7 @@ msgstr "Get Pro"
msgid "Get started"
msgstr "Get started"
-#: src/strings.ts:2543
+#: src/strings.ts:2546
msgid "Get this and so much more:"
msgstr "Get this and so much more:"
@@ -3382,7 +3386,7 @@ msgstr "Getting information"
msgid "Getting recovery codes"
msgstr "Getting recovery codes"
-#: src/strings.ts:2734
+#: src/strings.ts:2737
msgid "Gift code required"
msgstr "Gift code required"
@@ -3390,7 +3394,7 @@ msgstr "Gift code required"
msgid "GNU GENERAL PUBLIC LICENSE Version 3"
msgstr "GNU GENERAL PUBLIC LICENSE Version 3"
-#: src/strings.ts:2624
+#: src/strings.ts:2627
msgid "Go back"
msgstr "Go back"
@@ -3430,7 +3434,7 @@ msgstr "Go to previous page"
msgid "Go to web app"
msgstr "Go to web app"
-#: src/strings.ts:2554
+#: src/strings.ts:2557
msgid "Google will remind you 2 days before your trial ends."
msgstr "Google will remind you 2 days before your trial ends."
@@ -3458,7 +3462,7 @@ msgstr "Hash copied"
msgid "Having problems with sync?"
msgstr "Having problems with sync?"
-#: src/strings.ts:2569
+#: src/strings.ts:2572
msgid "hdImages"
msgstr "hdImages"
@@ -3530,7 +3534,7 @@ msgstr "How to fix it?"
msgid "hr"
msgstr "hr"
-#: src/strings.ts:2514
+#: src/strings.ts:2517
msgid "I already have an account"
msgstr "I already have an account"
@@ -3654,7 +3658,7 @@ msgstr "Import & export"
msgid "Import completed"
msgstr "Import completed"
-#: src/strings.ts:2653
+#: src/strings.ts:2656
msgid "Import CSV"
msgstr "Import CSV"
@@ -3662,15 +3666,15 @@ msgstr "Import CSV"
msgid "import guide"
msgstr "import guide"
-#: src/strings.ts:2659
+#: src/strings.ts:2662
msgid "Inbox API"
msgstr "Inbox API"
-#: src/strings.ts:2719
+#: src/strings.ts:2722
msgid "Inbox keys saved"
msgstr "Inbox keys saved"
-#: src/strings.ts:2664
+#: src/strings.ts:2667
msgid "Inbox PGP Keys"
msgstr "Inbox PGP Keys"
@@ -3754,15 +3758,15 @@ msgstr "Invalid CORS proxy url"
msgid "Invalid email"
msgstr "Invalid email"
-#: src/strings.ts:2699
+#: src/strings.ts:2702
msgid "Invalid password"
msgstr "Invalid password"
-#: src/strings.ts:2718
+#: src/strings.ts:2721
msgid "Invalid PGP key pair. Please check your keys and try again."
msgstr "Invalid PGP key pair. Please check your keys and try again."
-#: src/strings.ts:2725
+#: src/strings.ts:2728
msgid "Invalid recovery key. Make sure to input your account recovery key, not a 2FA recovery code."
msgstr "Invalid recovery key. Make sure to input your account recovery key, not a 2FA recovery code."
@@ -3795,7 +3799,7 @@ msgstr "item"
msgid "Item"
msgstr "Item"
-#: src/strings.ts:2761
+#: src/strings.ts:2764
msgid "Item deleted"
msgstr "Item deleted"
@@ -3848,7 +3852,7 @@ msgstr "Keep"
msgid "Keep open"
msgstr "Keep open"
-#: src/strings.ts:2803
+#: src/strings.ts:2806
msgid "Keep screen on"
msgstr "Keep screen on"
@@ -3856,7 +3860,7 @@ msgstr "Keep screen on"
msgid "Keep your data safe"
msgstr "Keep your data safe"
-#: src/strings.ts:2674
+#: src/strings.ts:2677
msgid "Key name"
msgstr "Key name"
@@ -3868,7 +3872,7 @@ msgstr "Languages"
msgid "Last edited at"
msgstr "Last edited at"
-#: src/strings.ts:2707
+#: src/strings.ts:2710
msgid "Last used on"
msgstr "Last used on"
@@ -3928,7 +3932,7 @@ msgstr "Light"
msgid "Line {line}, Column {column}"
msgstr "Line {line}, Column {column}"
-#: src/strings.ts:2635
+#: src/strings.ts:2638
msgid "Line height"
msgstr "Line height"
@@ -3948,7 +3952,7 @@ msgstr "Link copied"
msgid "Link notebooks"
msgstr "Link notebooks"
-#: src/strings.ts:2491
+#: src/strings.ts:2494
msgid "Link notes"
msgstr "Link notes"
@@ -3997,7 +4001,7 @@ msgstr "Loading"
msgid "Loading {0}, please wait..."
msgstr "Loading {0}, please wait..."
-#: src/strings.ts:2686
+#: src/strings.ts:2689
msgid "Loading API keys..."
msgstr "Loading API keys..."
@@ -4057,7 +4061,7 @@ msgstr "Lock note"
msgid "Lock the app with a password or pin"
msgstr "Lock the app with a password or pin"
-#: src/strings.ts:2720
+#: src/strings.ts:2723
msgid "Lock vault after"
msgstr "Lock vault after"
@@ -4101,7 +4105,7 @@ msgstr "Login failed"
msgid "Login required"
msgstr "Login required"
-#: src/strings.ts:2742
+#: src/strings.ts:2745
msgid "Login required to restore attachments"
msgstr "Login required to restore attachments"
@@ -4113,7 +4117,7 @@ msgstr "Login successful"
msgid "Login to encrypt and sync notes"
msgstr "Login to encrypt and sync notes"
-#: src/strings.ts:2628
+#: src/strings.ts:2631
msgid "Login to upload attachments. [Read more](https://notesnook.com/help/faqs/login-to-upload-attachments)"
msgstr "Login to upload attachments. [Read more](https://notesnook.com/help/faqs/login-to-upload-attachments)"
@@ -4209,7 +4213,7 @@ msgstr "Math & formulas"
msgid "Maximize"
msgstr "Maximize"
-#: src/strings.ts:2786
+#: src/strings.ts:2789
msgid "Maximum reminder date is {maxDate}"
msgstr "Maximum reminder date is {maxDate}"
@@ -4359,7 +4363,7 @@ msgstr "Multi-layer encryption to most important notes"
msgid "Name"
msgstr "Name"
-#: src/strings.ts:2740
+#: src/strings.ts:2743
msgid "Name is required."
msgstr "Name is required."
@@ -4379,7 +4383,7 @@ msgstr "Never"
msgid "Never ask again"
msgstr "Never ask again"
-#: src/strings.ts:2710
+#: src/strings.ts:2713
msgid "Never expires"
msgstr "Never expires"
@@ -4391,7 +4395,7 @@ msgstr "Never hesitate to choose privacy"
msgid "Never show again"
msgstr "Never show again"
-#: src/strings.ts:2708
+#: src/strings.ts:2711
msgid "Never used"
msgstr "Never used"
@@ -4503,7 +4507,7 @@ msgstr "No downloads in progress."
msgid "No encryption key found"
msgstr "No encryption key found"
-#: src/strings.ts:2759
+#: src/strings.ts:2762
msgid "No failed inbox items"
msgstr "No failed inbox items"
@@ -4523,7 +4527,7 @@ msgstr "No links found"
msgid "No note history available for this device."
msgstr "No note history available for this device."
-#: src/strings.ts:2508
+#: src/strings.ts:2511
msgid "No notebooks selected to move"
msgstr "No notebooks selected to move"
@@ -4531,7 +4535,7 @@ msgstr "No notebooks selected to move"
msgid "No one can view this {type} except you."
msgstr "No one can view this {type} except you."
-#: src/strings.ts:2631
+#: src/strings.ts:2634
msgid "No password"
msgstr "No password"
@@ -4589,7 +4593,7 @@ msgstr "Note copied to clipboard"
msgid "Note does not exist"
msgstr "Note does not exist"
-#: src/strings.ts:2784
+#: src/strings.ts:2787
msgid "Note duplicated"
msgstr "Note duplicated"
@@ -4630,7 +4634,7 @@ msgstr "notebook"
msgid "Notebook"
msgstr "Notebook"
-#: src/strings.ts:2494
+#: src/strings.ts:2497
msgid "Notebook added"
msgstr "Notebook added"
@@ -4669,15 +4673,15 @@ msgstr "Notes exported as {path} successfully"
msgid "notes imported"
msgstr "notes imported"
-#: src/strings.ts:2558
+#: src/strings.ts:2561
msgid "Notesnook"
msgstr "Notesnook"
-#: src/strings.ts:2616
+#: src/strings.ts:2619
msgid "Notesnook Circle"
msgstr "Notesnook Circle"
-#: src/strings.ts:2618
+#: src/strings.ts:2621
msgid "Notesnook Circle brings together trusted partners who share our commitment to privacy, transparency, and user freedom."
msgstr "Notesnook Circle brings together trusted partners who share our commitment to privacy, transparency, and user freedom."
@@ -4734,6 +4738,7 @@ msgid "of"
msgstr "of"
#: src/strings.ts:1604
+#: src/strings.ts:2482
msgid "Off"
msgstr "Off"
@@ -4741,11 +4746,11 @@ msgstr "Off"
msgid "Offline"
msgstr "Offline"
-#: src/strings.ts:2813
+#: src/strings.ts:2816
msgid "Offline mode"
msgstr "Offline mode"
-#: src/strings.ts:2691
+#: src/strings.ts:2694
msgid "OK"
msgstr "OK"
@@ -4769,7 +4774,7 @@ msgstr "Oldest - newest"
msgid "Once your password is changed, please make sure to save the new account recovery key"
msgstr "Once your password is changed, please make sure to save the new account recovery key"
-#: src/strings.ts:2576
+#: src/strings.ts:2579
msgid "One time purchase, no auto-renewal"
msgstr "One time purchase, no auto-renewal"
@@ -4837,7 +4842,7 @@ msgstr "Open source."
msgid "Open the two-factor authentication (TOTP) app to view your authentication code."
msgstr "Open the two-factor authentication (TOTP) app to view your authentication code."
-#: src/strings.ts:2773
+#: src/strings.ts:2776
msgid "Opening local file"
msgstr "Opening local file"
@@ -4870,11 +4875,15 @@ msgstr "Other"
msgid "Outline list"
msgstr "Outline list"
+#: src/strings.ts:2484
+msgid "Pages"
+msgstr "Pages"
+
#: src/strings.ts:2361
msgid "Paragraph"
msgstr "Paragraph"
-#: src/strings.ts:2507
+#: src/strings.ts:2510
msgid "Paragraphs"
msgstr "Paragraphs"
@@ -4918,7 +4927,7 @@ msgstr "Password not entered"
msgid "Password protection"
msgstr "Password protection"
-#: src/strings.ts:2731
+#: src/strings.ts:2734
msgid "Password required"
msgstr "Password required"
@@ -4950,7 +4959,7 @@ msgstr "Paste image URL here"
msgid "Paste without formatting"
msgstr "Paste without formatting"
-#: src/strings.ts:2577
+#: src/strings.ts:2580
msgid "Pay once and use for 5 years"
msgstr "Pay once and use for 5 years"
@@ -4962,7 +4971,7 @@ msgstr "Payment method"
msgid "PDF is password protected"
msgstr "PDF is password protected"
-#: src/strings.ts:2793
+#: src/strings.ts:2796
msgid "Permission required to save QR-Code to Gallery"
msgstr "Permission required to save QR-Code to Gallery"
@@ -4994,11 +5003,11 @@ msgstr "Pin notification"
msgid "Pinned"
msgstr "Pinned"
-#: src/strings.ts:2598
+#: src/strings.ts:2601
msgid "Plan limits"
msgstr "Plan limits"
-#: src/strings.ts:2558
+#: src/strings.ts:2561
msgid "Plans"
msgstr "Plans"
@@ -5032,12 +5041,12 @@ msgstr "Please download a backup of your data as your account will be cleared be
msgid "Please enable automatic backups to avoid losing important data."
msgstr "Please enable automatic backups to avoid losing important data."
-#: src/strings.ts:2677
+#: src/strings.ts:2680
msgid "Please enter a key name"
msgstr "Please enter a key name"
#: src/strings.ts:1514
-#: src/strings.ts:2733
+#: src/strings.ts:2736
msgid "Please enter a valid email address"
msgstr "Please enter a valid email address"
@@ -5073,7 +5082,7 @@ msgstr "Please enter the password to unlock this note"
msgid "Please enter the password to view this version"
msgstr "Please enter the password to view this version"
-#: src/strings.ts:2697
+#: src/strings.ts:2700
msgid "Please enter your account password to view this API key."
msgstr "Please enter your account password to view this API key."
@@ -5101,7 +5110,7 @@ msgstr "Please fill all the fields to continue."
msgid "Please grant notifications permission to add new reminders."
msgstr "Please grant notifications permission to add new reminders."
-#: src/strings.ts:2748
+#: src/strings.ts:2751
msgid "Please login to download attachments."
msgstr "Please login to download attachments."
@@ -5231,7 +5240,7 @@ msgstr "Pressing \"X\" will hide the app in your system tray."
msgid "Prevent note title from appearing in tab/window title."
msgstr "Prevent note title from appearing in tab/window title."
-#: src/strings.ts:2805
+#: src/strings.ts:2808
msgid "Prevent the screen from turning off while the editor is focused."
msgstr "Prevent the screen from turning off while the editor is focused."
@@ -5275,7 +5284,7 @@ msgstr "Privacy for everyone"
msgid "Privacy mode"
msgstr "Privacy mode"
-#: src/strings.ts:2593
+#: src/strings.ts:2596
msgid "privacy policy"
msgstr "privacy policy"
@@ -5291,15 +5300,15 @@ msgstr "Privacy Policy. "
msgid "private analytics and bug reports."
msgstr "private analytics and bug reports."
-#: src/strings.ts:2730
+#: src/strings.ts:2733
msgid "Private key is passphrase-protected. Please provide the decrypted key or a key without a passphrase."
msgstr "Private key is passphrase-protected. Please provide the decrypted key or a key without a passphrase."
-#: src/strings.ts:2750
+#: src/strings.ts:2753
msgid "Private key required"
msgstr "Private key required"
-#: src/strings.ts:2716
+#: src/strings.ts:2719
msgid "Private Key:"
msgstr "Private Key:"
@@ -5315,7 +5324,7 @@ msgstr "privileged few"
msgid "Pro"
msgstr "Pro"
-#: src/strings.ts:2485
+#: src/strings.ts:2488
msgid "Pro plan"
msgstr "Pro plan"
@@ -5347,7 +5356,7 @@ msgstr "Properties"
msgid "Protect your notes"
msgstr "Protect your notes"
-#: src/strings.ts:2754
+#: src/strings.ts:2757
msgid "Provide your own keys"
msgstr "Provide your own keys"
@@ -5355,11 +5364,11 @@ msgstr "Provide your own keys"
msgid "Proxy"
msgstr "Proxy"
-#: src/strings.ts:2749
+#: src/strings.ts:2752
msgid "Public key required"
msgstr "Public key required"
-#: src/strings.ts:2715
+#: src/strings.ts:2718
msgid "Public Key:"
msgstr "Public Key:"
@@ -5371,7 +5380,7 @@ msgstr "Publish"
msgid "Publish note"
msgstr "Publish note"
-#: src/strings.ts:2632
+#: src/strings.ts:2635
msgid "Publish to the web"
msgstr "Publish to the web"
@@ -5395,7 +5404,7 @@ msgstr "Published note can only be viewed by someone with the password."
msgid "Published note link will be automatically deleted once it is viewed by someone."
msgstr "Published note link will be automatically deleted once it is viewed by someone."
-#: src/strings.ts:2586
+#: src/strings.ts:2589
msgid "Purchase"
msgstr "Purchase"
@@ -5459,7 +5468,7 @@ msgstr "Read the terms of service"
msgid "Reading backup file..."
msgstr "Reading backup file..."
-#: src/strings.ts:2560
+#: src/strings.ts:2563
msgid "Ready to take the next step on your private note taking journey?"
msgstr "Ready to take the next step on your private note taking journey?"
@@ -5491,7 +5500,7 @@ msgstr "Recipes"
msgid "Recommended"
msgstr "Recommended"
-#: src/strings.ts:2562
+#: src/strings.ts:2565
msgid "Recommended by Privacy Guides"
msgstr "Recommended by Privacy Guides"
@@ -5535,7 +5544,7 @@ msgstr "Recovery successful!"
msgid "Redeem"
msgstr "Redeem"
-#: src/strings.ts:2615
+#: src/strings.ts:2618
msgid "Redeem code"
msgstr "Redeem code"
@@ -5758,7 +5767,7 @@ msgstr "Reset"
msgid "Reset account password"
msgstr "Reset account password"
-#: src/strings.ts:2499
+#: src/strings.ts:2502
msgid "Reset homepage"
msgstr "Reset homepage"
@@ -5854,7 +5863,7 @@ msgstr "Resubscribe from Playstore"
msgid "Resubscribe to Pro"
msgstr "Resubscribe to Pro"
-#: src/strings.ts:2688
+#: src/strings.ts:2691
msgid "Retry"
msgstr "Retry"
@@ -5874,7 +5883,7 @@ msgstr "Revoke"
msgid "Revoke biometric unlocking"
msgstr "Revoke biometric unlocking"
-#: src/strings.ts:2702
+#: src/strings.ts:2705
msgid "Revoke Inbox API Key - {name}"
msgstr "Revoke Inbox API Key - {name}"
@@ -6006,11 +6015,11 @@ msgstr "Scan the QR code with your authenticator app"
msgid "School work"
msgstr "School work"
-#: src/strings.ts:2510
+#: src/strings.ts:2513
msgid "Scroll to bottom"
msgstr "Scroll to bottom"
-#: src/strings.ts:2509
+#: src/strings.ts:2512
msgid "Scroll to top"
msgstr "Scroll to top"
@@ -6131,7 +6140,7 @@ msgstr "Select"
msgid "Select a backup file from your device to restore backup"
msgstr "Select a backup file from your device to restore backup"
-#: src/strings.ts:2504
+#: src/strings.ts:2507
msgid "Select a notebook to move this notebook into, or unselect to move it to the root level."
msgstr "Select a notebook to move this notebook into, or unselect to move it to the root level."
@@ -6191,7 +6200,7 @@ msgstr "Select notebooks"
msgid "Select notebooks you want to add note(s) to."
msgstr "Select notebooks you want to add note(s) to."
-#: src/strings.ts:2492
+#: src/strings.ts:2495
msgid "Select notes to link to \"{title}\""
msgstr "Select notes to link to \"{title}\""
@@ -6203,7 +6212,7 @@ msgstr "Select nth day of the month to repeat the reminder."
msgid "Select profile picture"
msgstr "Select profile picture"
-#: src/strings.ts:2498
+#: src/strings.ts:2501
msgid "Select the default sidebar tab"
msgstr "Select the default sidebar tab"
@@ -6307,7 +6316,7 @@ msgstr "Set as dark theme"
msgid "Set as default"
msgstr "Set as default"
-#: src/strings.ts:2496
+#: src/strings.ts:2499
msgid "Set as homepage"
msgstr "Set as homepage"
@@ -6319,7 +6328,7 @@ msgstr "Set as light theme"
msgid "Set automatic trash cleanup interval from Settings > Behaviour > Clean trash interval."
msgstr "Set automatic trash cleanup interval from Settings > Behaviour > Clean trash interval."
-#: src/strings.ts:2649
+#: src/strings.ts:2652
msgid "Set expiry"
msgstr "Set expiry"
@@ -6393,7 +6402,7 @@ msgstr "Setup app lock password"
msgid "Setup app lock pin"
msgstr "Setup app lock pin"
-#: src/strings.ts:2794
+#: src/strings.ts:2797
msgid "Setup inbox keys"
msgstr "Setup inbox keys"
@@ -6433,7 +6442,7 @@ msgstr "Share note"
msgid "Share Notesnook with friends!"
msgstr "Share Notesnook with friends!"
-#: src/strings.ts:2661
+#: src/strings.ts:2664
msgid "Share things to Notesnook from anywhere using the Inbox API"
msgstr "Share things to Notesnook from anywhere using the Inbox API"
@@ -6461,7 +6470,7 @@ msgstr "shortcuts"
msgid "Shortcuts"
msgstr "Shortcuts"
-#: src/strings.ts:2760
+#: src/strings.ts:2763
msgid "Show"
msgstr "Show"
@@ -6525,7 +6534,7 @@ msgstr "Source code"
msgid "Spaces"
msgstr "Spaces"
-#: src/strings.ts:2608
+#: src/strings.ts:2611
msgid "Special Offer"
msgstr "Special Offer"
@@ -6581,7 +6590,7 @@ msgstr "Start writing your note..."
msgid "Status"
msgstr "Status"
-#: src/strings.ts:2488
+#: src/strings.ts:2491
msgid "Storage"
msgstr "Storage"
@@ -6605,11 +6614,11 @@ msgstr "Subgroup added"
msgid "Submit"
msgstr "Submit"
-#: src/strings.ts:2587
+#: src/strings.ts:2590
msgid "Subscribe"
msgstr "Subscribe"
-#: src/strings.ts:2588
+#: src/strings.ts:2591
msgid "Subscribe and start free trial"
msgstr "Subscribe and start free trial"
@@ -6729,7 +6738,7 @@ msgstr "Table of contents"
msgid "Table settings"
msgstr "Table settings"
-#: src/strings.ts:2549
+#: src/strings.ts:2552
msgid "tables, outlines, block level note linking"
msgstr "tables, outlines, block level note linking"
@@ -6868,7 +6877,7 @@ msgstr "Terms of service"
msgid "Terms of Service "
msgstr "Terms of Service "
-#: src/strings.ts:2595
+#: src/strings.ts:2598
msgid "terms of use."
msgstr "terms of use."
@@ -6896,11 +6905,11 @@ msgstr "Thank you for choosing end-to-end encrypted note taking. Now you can syn
msgid "Thank you for reporting!"
msgstr "Thank you for reporting!"
-#: src/strings.ts:2566
+#: src/strings.ts:2569
msgid "Thank you for subscribing"
msgstr "Thank you for subscribing"
-#: src/strings.ts:2603
+#: src/strings.ts:2606
msgid "Thank you for the purchase"
msgstr "Thank you for the purchase"
@@ -6920,7 +6929,7 @@ msgstr "Thank you. You are the proof that privacy always comes first."
msgid "The {title} at {url} is not compatible with this client."
msgstr "The {title} at {url} is not compatible with this client."
-#: src/strings.ts:2648
+#: src/strings.ts:2651
msgid "The incoming note could not be unlocked with the provided password. Enter the correct password for the incoming note"
msgstr "The incoming note could not be unlocked with the provided password. Enter the correct password for the incoming note"
@@ -6928,11 +6937,11 @@ msgstr "The incoming note could not be unlocked with the provided password. Ente
msgid "The information above will be publically available at"
msgstr "The information above will be publically available at"
-#: src/strings.ts:2622
+#: src/strings.ts:2625
msgid "The Notesnook Circle is exclusive to subscribers. Please consider subscribing to gain access to Notesnook Circle and enjoy additional benefits."
msgstr "The Notesnook Circle is exclusive to subscribers. Please consider subscribing to gain access to Notesnook Circle and enjoy additional benefits."
-#: src/strings.ts:2801
+#: src/strings.ts:2804
msgid "The password for decrypting the Colornote backup file."
msgstr "The password for decrypting the Colornote backup file."
@@ -7004,7 +7013,7 @@ msgstr "This error usually means the database file is either corrupt or it could
msgid "This error usually means the search index is corrupted."
msgstr "This error usually means the search index is corrupted."
-#: src/strings.ts:2726
+#: src/strings.ts:2729
msgid "This feature is not available on this plan."
msgstr "This feature is not available on this plan."
@@ -7012,7 +7021,7 @@ msgstr "This feature is not available on this plan."
msgid "This image cannot be previewed"
msgstr "This image cannot be previewed"
-#: src/strings.ts:2589
+#: src/strings.ts:2592
msgid "This is a one time purchase, no subscription."
msgstr "This is a one time purchase, no subscription."
@@ -7025,7 +7034,7 @@ msgstr "This may take a while"
msgid "This must only be used for troubleshooting. Using it regularly for sync is not recommended and will lead to unexpected data loss and other issues. If you are having persistent issues with sync, please report them to us at support@streetwriters.co."
msgstr "This must only be used for troubleshooting. Using it regularly for sync is not recommended and will lead to unexpected data loss and other issues. If you are having persistent issues with sync, please report them to us at support@streetwriters.co."
-#: src/strings.ts:2654
+#: src/strings.ts:2657
msgid "This note is empty"
msgstr "This note is empty"
@@ -7086,7 +7095,7 @@ msgstr "Title"
msgid "Title format"
msgstr "Title format"
-#: src/strings.ts:2739
+#: src/strings.ts:2742
msgid "Title is required"
msgstr "Title is required"
@@ -7139,7 +7148,7 @@ msgstr "Trash gets automatically cleaned up after {days} days"
msgid "Trash gets automatically cleaned up daily"
msgstr "Trash gets automatically cleaned up daily"
-#: src/strings.ts:2556
+#: src/strings.ts:2559
msgid "Try {plan} for free"
msgstr "Try {plan} for free"
@@ -7151,7 +7160,7 @@ msgstr "Try compact mode to fit more items on screen"
msgid "Try free for 14 days"
msgstr "Try free for 14 days"
-#: src/strings.ts:2542
+#: src/strings.ts:2545
msgid "Try it for free"
msgstr "Try it for free"
@@ -7207,7 +7216,7 @@ msgstr "Unable to resolve download url"
msgid "Unable to send 2FA code"
msgstr "Unable to send 2FA code"
-#: src/strings.ts:2502
+#: src/strings.ts:2505
msgid "Unarchive"
msgstr "Unarchive"
@@ -7223,7 +7232,7 @@ msgstr "Undo"
msgid "Unfavorite"
msgstr "Unfavorite"
-#: src/strings.ts:2599
+#: src/strings.ts:2602
msgid "Unlimited"
msgstr "Unlimited"
@@ -7239,7 +7248,7 @@ msgstr "Unlink notebook"
msgid "Unlock"
msgstr "Unlock"
-#: src/strings.ts:2646
+#: src/strings.ts:2649
msgid "Unlock incoming note"
msgstr "Unlock incoming note"
@@ -7256,7 +7265,7 @@ msgstr "Unlock note"
msgid "Unlock note to delete it"
msgstr "Unlock note to delete it"
-#: src/strings.ts:2657
+#: src/strings.ts:2660
msgid "Unlock note to merge conflicts"
msgstr "Unlock note to merge conflicts"
@@ -7308,7 +7317,7 @@ msgstr "Unpublish notes to delete them"
msgid "Unregister"
msgstr "Unregister"
-#: src/strings.ts:2650
+#: src/strings.ts:2653
msgid "Unset expiry"
msgstr "Unset expiry"
@@ -7329,7 +7338,7 @@ msgstr "Update available"
msgid "Update now"
msgstr "Update now"
-#: src/strings.ts:2516
+#: src/strings.ts:2519
msgid "Upgrade"
msgstr "Upgrade"
@@ -7337,11 +7346,11 @@ msgstr "Upgrade"
msgid "Upgrade now"
msgstr "Upgrade now"
-#: src/strings.ts:2515
+#: src/strings.ts:2518
msgid "Upgrade plan"
msgstr "Upgrade plan"
-#: src/strings.ts:2541
+#: src/strings.ts:2544
msgid "Upgrade plan to {plan} to use this feature."
msgstr "Upgrade plan to {plan} to use this feature."
@@ -7357,7 +7366,7 @@ msgstr "Upgrade to Notesnook Pro to create more tags."
msgid "Upgrade to Pro"
msgstr "Upgrade to Pro"
-#: src/strings.ts:2614
+#: src/strings.ts:2617
msgid "Upgrade to redeem"
msgstr "Upgrade to redeem"
@@ -7415,7 +7424,7 @@ msgstr "Use a data recovery key to reset your account password."
msgid "Use account password"
msgstr "Use account password"
-#: src/strings.ts:2548
+#: src/strings.ts:2551
msgid "Use advanced note taking features like"
msgstr "Use advanced note taking features like"
@@ -7489,7 +7498,7 @@ msgstr "Use this if changes from other devices are not appearing on this device.
msgid "Use this if changes made on this device are not appearing on other devices. This will overwrite the data on the server with the data from this device."
msgstr "Use this if changes made on this device are not appearing on other devices. This will overwrite the data on the server with the data from this device."
-#: src/strings.ts:2489
+#: src/strings.ts:2492
msgid "used"
msgstr "used"
@@ -7501,7 +7510,7 @@ msgstr "User verification failed"
msgid "Using {instance} (v{version})"
msgstr "Using {instance} (v{version})"
-#: src/strings.ts:2815
+#: src/strings.ts:2818
msgid "Using Notesnook without an account will **NOT** sync your notes across devices and could result in data loss if you lose access to your device or uninstall the app. Make sure to backup your notes regularly."
msgstr "Using Notesnook without an account will **NOT** sync your notes across devices and could result in data loss if you lose access to your device or uninstall the app. Make sure to backup your notes regularly."
@@ -7513,7 +7522,7 @@ msgstr "Using official Notesnook instance"
msgid "v{version} available"
msgstr "v{version} available"
-#: src/strings.ts:2728
+#: src/strings.ts:2731
msgid "Value must be between {min} and {max}"
msgstr "Value must be between {min} and {max}"
@@ -7573,7 +7582,7 @@ msgstr "Verifying your email"
msgid "Version"
msgstr "Version"
-#: src/strings.ts:2807
+#: src/strings.ts:2810
msgid "Version history cleared"
msgstr "Version history cleared"
@@ -7589,11 +7598,11 @@ msgstr "Videos"
msgid "View all linked notebooks"
msgstr "View all linked notebooks"
-#: src/strings.ts:2666
+#: src/strings.ts:2669
msgid "View and edit your inbox public/private key pair"
msgstr "View and edit your inbox public/private key pair"
-#: src/strings.ts:2672
+#: src/strings.ts:2675
msgid "View and manage inbox API keys"
msgstr "View and manage inbox API keys"
@@ -7601,7 +7610,7 @@ msgstr "View and manage inbox API keys"
msgid "View and share debug logs"
msgstr "View and share debug logs"
-#: src/strings.ts:2758
+#: src/strings.ts:2761
msgid "View failed inbox items and error contexts"
msgstr "View failed inbox items and error contexts"
@@ -7621,7 +7630,7 @@ msgstr "View source code"
msgid "View your recovery codes to recover your account in case you lose access to your two-factor authentication methods."
msgstr "View your recovery codes to recover your account in case you lose access to your two-factor authentication methods."
-#: src/strings.ts:2629
+#: src/strings.ts:2632
msgid "Views"
msgstr "Views"
@@ -7645,11 +7654,11 @@ msgstr "We are creating a backup of your data. Please wait..."
msgid "We are sorry, it seems that the app crashed due to an error. You can submit a bug report below so we can fix this asap."
msgstr "We are sorry, it seems that the app crashed due to an error. You can submit a bug report below so we can fix this asap."
-#: src/strings.ts:2788
+#: src/strings.ts:2791
msgid "We couldn't load this theme. Please make sure the file is a valid JSON theme file."
msgstr "We couldn't load this theme. Please make sure the file is a valid JSON theme file."
-#: src/strings.ts:2790
+#: src/strings.ts:2793
msgid "We couldn't load this theme. The file appears to be incomplete or missing required theme properties."
msgstr "We couldn't load this theme. The file appears to be incomplete or missing required theme properties."
@@ -7657,7 +7666,7 @@ msgstr "We couldn't load this theme. The file appears to be incomplete or missin
msgid "We have sent you an email confirmation link. Please check your email inbox. If you cannot find the email, check your spam folder."
msgstr "We have sent you an email confirmation link. Please check your email inbox. If you cannot find the email, check your spam folder."
-#: src/strings.ts:2527
+#: src/strings.ts:2530
msgid "We require credit card details to fight abuse and to make it seamless for you to upgrade. Your credit card is NOT charged until your free trial ends and your subscription starts. You will be notified via email of the upcoming charge before your trial ends."
msgstr "We require credit card details to fight abuse and to make it seamless for you to upgrade. Your credit card is NOT charged until your free trial ends and your subscription starts. You will be notified via email of the upcoming charge before your trial ends."
@@ -7673,7 +7682,7 @@ msgstr "We will send you occasional promotional offers & product updates on your
msgid "We would love to know what you think!"
msgstr "We would love to know what you think!"
-#: src/strings.ts:2568
+#: src/strings.ts:2571
msgid "We’re setting up your plan right now. We’ll notify you as soon as everything is ready."
msgstr "We’re setting up your plan right now. We’ll notify you as soon as everything is ready."
@@ -7697,7 +7706,7 @@ msgstr "Wednesday"
msgid "Week"
msgstr "Week"
-#: src/strings.ts:2642
+#: src/strings.ts:2645
msgid "Week format"
msgstr "Week format"
@@ -7714,7 +7723,7 @@ msgstr "Welcome back, {email}"
msgid "Welcome back!"
msgstr "Welcome back!"
-#: src/strings.ts:2602
+#: src/strings.ts:2605
msgid "Welcome to Notesnook {plan}"
msgstr "Welcome to Notesnook {plan}"
@@ -7726,11 +7735,11 @@ msgstr "Welcome to Notesnook Pro"
msgid "What do I do if I am not getting the email?"
msgstr "What do I do if I am not getting the email?"
-#: src/strings.ts:2519
+#: src/strings.ts:2522
msgid "What happens to my data if I switch plans?"
msgstr "What happens to my data if I switch plans?"
-#: src/strings.ts:2535
+#: src/strings.ts:2538
msgid "What is your refund policy?"
msgstr "What is your refund policy?"
@@ -7738,7 +7747,7 @@ msgstr "What is your refund policy?"
msgid "What went wrong?"
msgstr "What went wrong?"
-#: src/strings.ts:2525
+#: src/strings.ts:2528
msgid "Why do you need my credit card details for a free trial?"
msgstr "Why do you need my credit card details for a free trial?"
@@ -7746,7 +7755,7 @@ msgstr "Why do you need my credit card details for a free trial?"
msgid "Width"
msgstr "Width"
-#: src/strings.ts:2505
+#: src/strings.ts:2508
msgid "Words"
msgstr "Words"
@@ -7783,7 +7792,7 @@ msgstr "Yearly"
msgid "Yes"
msgstr "Yes"
-#: src/strings.ts:2532
+#: src/strings.ts:2535
msgid "Yes, you can cancel your trial anytime. No questions asked."
msgstr "Yes, you can cancel your trial anytime. No questions asked."
@@ -7791,7 +7800,7 @@ msgstr "Yes, you can cancel your trial anytime. No questions asked."
msgid "You also agree to receive marketing emails from us which you can opt-out of from app settings."
msgstr "You also agree to receive marketing emails from us which you can opt-out of from app settings."
-#: src/strings.ts:2607
+#: src/strings.ts:2610
msgid "You are already subscribed to this plan."
msgstr "You are already subscribed to this plan."
@@ -7823,7 +7832,7 @@ msgstr "You can also link a note to multiple Notebooks. Tap and hold any noteboo
msgid "You can change the theme at any time from Settings or the side menu."
msgstr "You can change the theme at any time from Settings or the side menu."
-#: src/strings.ts:2610
+#: src/strings.ts:2613
msgid "You can change your subscription plan from the web app"
msgstr "You can change your subscription plan from the web app"
@@ -7903,7 +7912,7 @@ msgstr "You have been logged out from all other devices."
msgid "You have been logged out."
msgstr "You have been logged out."
-#: src/strings.ts:2606
+#: src/strings.ts:2609
msgid "You have made a one time purchase. To change your plan please contact support."
msgstr "You have made a one time purchase. To change your plan please contact support."
@@ -7939,7 +7948,7 @@ msgstr "You have unsynced notes. Take a backup or sync your notes to avoid losin
msgid "You must log out in order to change/reset server URLs."
msgstr "You must log out in order to change/reset server URLs."
-#: src/strings.ts:2744
+#: src/strings.ts:2747
msgid ""
"You need to login to restore attachments from a backup file. [Read more](https://notesnook.com/help/faqs/login-to-restore-attachments-in-backup).\n"
" \n"
@@ -8014,7 +8023,7 @@ msgstr "Your account will be permanently deleted along with all your data, login
msgid "Your archive"
msgstr "Your archive"
-#: src/strings.ts:2501
+#: src/strings.ts:2504
msgid "Your archive is empty"
msgstr "Your archive is empty"
@@ -8034,7 +8043,7 @@ msgstr "Your changes have been saved and will be reflected after the app has ref
msgid "Your current 2FA method is {method}"
msgstr "Your current 2FA method is {method}"
-#: src/strings.ts:2613
+#: src/strings.ts:2616
msgid "Your current subscription does not allow changing plans"
msgstr "Your current subscription does not allow changing plans"
@@ -8046,7 +8055,7 @@ msgstr "Your data recovery key is basically a hashed version of your password (p
msgid "Your data recovery key will be used to decrypt your data"
msgstr "Your data recovery key will be used to decrypt your data"
-#: src/strings.ts:2521
+#: src/strings.ts:2524
msgid "Your data remains 100% accessible regardless of what plan you are on. That includes your notes, notebooks, attachments, and anything else you might have created."
msgstr "Your data remains 100% accessible regardless of what plan you are on. That includes your notes, notebooks, attachments, and anything else you might have created."
@@ -8054,7 +8063,7 @@ msgstr "Your data remains 100% accessible regardless of what plan you are on. Th
msgid "Your email has been confirmed."
msgstr "Your email has been confirmed."
-#: src/strings.ts:2512
+#: src/strings.ts:2515
msgid "Your email has been confirmed. You can now securely sync your encrypted notes across all devices."
msgstr "Your email has been confirmed. You can now securely sync your encrypted notes across all devices."
@@ -8082,7 +8091,7 @@ msgstr "Your free trial has started"
msgid "Your free trial is ending soon"
msgstr "Your free trial is ending soon"
-#: src/strings.ts:2641
+#: src/strings.ts:2644
msgid "Your free trial is on-going. Your subscription will start on {trialExpiryDate}"
msgstr "Your free trial is on-going. Your subscription will start on {trialExpiryDate}"
diff --git a/packages/intl/locale/pseudo-LOCALE.po b/packages/intl/locale/pseudo-LOCALE.po
index 5395f03f0..b228330d6 100644
--- a/packages/intl/locale/pseudo-LOCALE.po
+++ b/packages/intl/locale/pseudo-LOCALE.po
@@ -69,7 +69,7 @@ msgid "{0} Highlights 🎉"
msgstr ""
#. placeholder {0}: platform === "ios" ? "Apple" : "Google"
-#: src/strings.ts:2582
+#: src/strings.ts:2585
msgid "{0} will remind you before your trial ends"
msgstr ""
@@ -508,7 +508,7 @@ msgstr ""
msgid "{count, plural, one {Version deleted} other {# versions deleted}}"
msgstr ""
-#: src/strings.ts:2513
+#: src/strings.ts:2516
msgid "{count} characters"
msgstr ""
@@ -516,7 +516,7 @@ msgstr ""
msgid "{days, plural, one {1 day} other {# days}}"
msgstr ""
-#: src/strings.ts:2573
+#: src/strings.ts:2576
msgid "{days} days free"
msgstr ""
@@ -580,7 +580,7 @@ msgstr ""
msgid "{percentage}% updating..."
msgstr ""
-#: src/strings.ts:2557
+#: src/strings.ts:2560
msgid "{plan} plan"
msgstr ""
@@ -624,19 +624,19 @@ msgstr ""
msgid "#notesnook"
msgstr ""
-#: src/strings.ts:2682
+#: src/strings.ts:2685
msgid "1 day"
msgstr ""
-#: src/strings.ts:2684
+#: src/strings.ts:2687
msgid "1 month"
msgstr ""
-#: src/strings.ts:2683
+#: src/strings.ts:2686
msgid "1 week"
msgstr ""
-#: src/strings.ts:2685
+#: src/strings.ts:2688
msgid "1 year"
msgstr ""
@@ -656,7 +656,7 @@ msgstr ""
msgid "2FA code sent via {method}"
msgstr ""
-#: src/strings.ts:2600
+#: src/strings.ts:2603
msgid "5 year plan (One time purchase)"
msgstr ""
@@ -732,7 +732,7 @@ msgstr ""
msgid "Add color"
msgstr ""
-#: src/strings.ts:2670
+#: src/strings.ts:2673
msgid "Add key"
msgstr ""
@@ -740,7 +740,7 @@ msgstr ""
msgid "Add notebook"
msgstr ""
-#: src/strings.ts:2495
+#: src/strings.ts:2498
msgid "Add notes"
msgstr ""
@@ -772,11 +772,11 @@ msgstr ""
msgid "Add to dictionary"
msgstr ""
-#: src/strings.ts:2633
+#: src/strings.ts:2636
msgid "Add to home"
msgstr ""
-#: src/strings.ts:2493
+#: src/strings.ts:2496
msgid "Add to notebook"
msgstr ""
@@ -788,7 +788,7 @@ msgstr ""
msgid "Add your first notebook"
msgstr ""
-#: src/strings.ts:2636
+#: src/strings.ts:2639
msgid "Adjust the line height of the editor"
msgstr ""
@@ -812,7 +812,7 @@ msgstr ""
msgid "Align right"
msgstr ""
-#: src/strings.ts:2816
+#: src/strings.ts:2819
msgid "Alignment"
msgstr ""
@@ -836,7 +836,7 @@ msgstr ""
msgid "All files"
msgstr ""
-#: src/strings.ts:2765
+#: src/strings.ts:2768
msgid "All items deleted"
msgstr ""
@@ -888,7 +888,7 @@ msgstr ""
msgid "An error occurred while migrating your data. You can logout of your account and try to relogin. However this is not recommended as it may result in some data loss if your data was not synced."
msgstr ""
-#: src/strings.ts:2594
+#: src/strings.ts:2597
msgid "and"
msgstr ""
@@ -900,7 +900,7 @@ msgstr ""
msgid "and get a chance to win free promo codes."
msgstr ""
-#: src/strings.ts:2550
+#: src/strings.ts:2553
msgid "and much more."
msgstr ""
@@ -908,27 +908,27 @@ msgstr ""
msgid "and we will manually confirm your account."
msgstr ""
-#: src/strings.ts:2611
+#: src/strings.ts:2614
msgid "ANNOUNCEMENT"
msgstr ""
-#: src/strings.ts:2700
+#: src/strings.ts:2703
msgid "API key copied to clipboard"
msgstr ""
-#: src/strings.ts:2678
+#: src/strings.ts:2681
msgid "API key created successfully"
msgstr ""
-#: src/strings.ts:2705
+#: src/strings.ts:2708
msgid "API key revoked"
msgstr ""
-#: src/strings.ts:2671
+#: src/strings.ts:2674
msgid "API Keys"
msgstr ""
-#: src/strings.ts:2692
+#: src/strings.ts:2695
msgid "API Keys Limit Reached"
msgstr ""
@@ -979,7 +979,7 @@ msgid "Applying changes"
msgstr ""
#: src/strings.ts:1532
-#: src/strings.ts:2500
+#: src/strings.ts:2503
msgid "Archive"
msgstr ""
@@ -995,11 +995,11 @@ msgstr ""
msgid "Are you sure you want to clear trash?"
msgstr ""
-#: src/strings.ts:2764
+#: src/strings.ts:2767
msgid "Are you sure you want to delete all failed inbox items?"
msgstr ""
-#: src/strings.ts:2737
+#: src/strings.ts:2740
msgid "Are you sure you want to delete this attachment?"
msgstr ""
@@ -1011,7 +1011,7 @@ msgstr ""
msgid "Are you sure you want to logout from this device? Any unsynced changes will be lost."
msgstr ""
-#: src/strings.ts:2775
+#: src/strings.ts:2778
msgid "Are you sure you want to open this file: {filePath}?"
msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Are you sure you want to remove your profile picture?"
msgstr ""
-#: src/strings.ts:2704
+#: src/strings.ts:2707
msgid "Are you sure you want to revoke the key \"{name}\"? All inbox actions using this key will stop working immediately."
msgstr ""
@@ -1055,7 +1055,7 @@ msgstr ""
msgid "Attached files"
msgstr ""
-#: src/strings.ts:2766
+#: src/strings.ts:2769
msgid "Attaching files"
msgstr ""
@@ -1068,7 +1068,7 @@ msgstr ""
msgid "Attachment"
msgstr ""
-#: src/strings.ts:2738
+#: src/strings.ts:2741
msgid "Attachment deleted"
msgstr ""
@@ -1113,11 +1113,11 @@ msgstr ""
msgid "Auth server"
msgstr ""
-#: src/strings.ts:2698
+#: src/strings.ts:2701
msgid "Authenticate"
msgstr ""
-#: src/strings.ts:2695
+#: src/strings.ts:2698
msgid "Authenticate to view API key"
msgstr ""
@@ -1157,7 +1157,7 @@ msgstr ""
msgid "Auto start on system startup"
msgstr ""
-#: src/strings.ts:2753
+#: src/strings.ts:2756
msgid "Auto-generate keys"
msgstr ""
@@ -1206,7 +1206,7 @@ msgstr ""
msgid "Available on iOS & Android"
msgstr ""
-#: src/strings.ts:2723
+#: src/strings.ts:2726
msgid "Back"
msgstr ""
@@ -1298,11 +1298,11 @@ msgstr ""
msgid "Behaviour"
msgstr ""
-#: src/strings.ts:2487
+#: src/strings.ts:2490
msgid "Believer plan"
msgstr ""
-#: src/strings.ts:2597
+#: src/strings.ts:2600
msgid "Best value"
msgstr ""
@@ -1314,11 +1314,11 @@ msgstr ""
msgid "Bi-directional note link"
msgstr ""
-#: src/strings.ts:2570
+#: src/strings.ts:2573
msgid "billed annually at {price}"
msgstr ""
-#: src/strings.ts:2571
+#: src/strings.ts:2574
msgid "billed monthly at {price}"
msgstr ""
@@ -1346,6 +1346,10 @@ msgstr ""
msgid "Biometrics not enrolled"
msgstr ""
+#: src/strings.ts:2483
+msgid "Blocks"
+msgstr ""
+
#: src/strings.ts:2269
msgid "Bold"
msgstr ""
@@ -1366,7 +1370,7 @@ msgstr ""
msgid "By"
msgstr ""
-#: src/strings.ts:2592
+#: src/strings.ts:2595
msgid "By joining you agree to our"
msgstr ""
@@ -1378,7 +1382,7 @@ msgstr ""
msgid "Callout"
msgstr ""
-#: src/strings.ts:2530
+#: src/strings.ts:2533
msgid "Can I cancel my free trial anytime?"
msgstr ""
@@ -1386,11 +1390,11 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: src/strings.ts:2590
+#: src/strings.ts:2593
msgid "Cancel anytime, subscription auto-renews."
msgstr ""
-#: src/strings.ts:2552
+#: src/strings.ts:2555
msgid "Cancel anytime."
msgstr ""
@@ -1410,7 +1414,7 @@ msgstr ""
msgid "Cancel upload"
msgstr ""
-#: src/strings.ts:2694
+#: src/strings.ts:2697
msgid "Cannot create more than 10 api keys at a time. Please revoke some existing keys before creating new ones."
msgstr ""
@@ -1478,7 +1482,7 @@ msgstr ""
msgid "Change password"
msgstr ""
-#: src/strings.ts:2604
+#: src/strings.ts:2607
msgid "Change plan"
msgstr ""
@@ -1514,7 +1518,7 @@ msgstr ""
msgid "Changes from other devices won't be updated in the editor in real-time."
msgstr ""
-#: src/strings.ts:2714
+#: src/strings.ts:2717
msgid "Changing Inbox PGP keys will delete all your unsynced inbox items."
msgstr ""
@@ -1522,7 +1526,7 @@ msgstr ""
msgid "Changing password is an irreversible process. You will be logged out from all your devices. Please make sure you do not close the app while your password is changing and have good internet connection."
msgstr ""
-#: src/strings.ts:2506
+#: src/strings.ts:2509
msgid "Characters"
msgstr ""
@@ -1594,7 +1598,7 @@ msgstr ""
msgid "Choose how dates are displayed in the app"
msgstr ""
-#: src/strings.ts:2639
+#: src/strings.ts:2642
msgid "Choose how day is displayed in the app"
msgstr ""
@@ -1610,11 +1614,11 @@ msgstr ""
msgid "Choose how you want to secure your notes locally."
msgstr ""
-#: src/strings.ts:2752
+#: src/strings.ts:2755
msgid "Choose how you want to set up your Inbox PGP keys:"
msgstr ""
-#: src/strings.ts:2644
+#: src/strings.ts:2647
msgid "Choose what day to display as the first day of the week"
msgstr ""
@@ -1662,7 +1666,7 @@ msgstr ""
msgid "Clear default notebook"
msgstr ""
-#: src/strings.ts:2806
+#: src/strings.ts:2809
msgid "Clear history"
msgstr ""
@@ -1705,7 +1709,7 @@ msgstr ""
msgid "Clearing trash will permanently delete all the items in your trash. This action is IRREVERSIBLE."
msgstr ""
-#: src/strings.ts:2626
+#: src/strings.ts:2629
msgid "Click here to directly claim the promotion."
msgstr ""
@@ -1725,11 +1729,11 @@ msgstr ""
msgid "Click to reset {title}"
msgstr ""
-#: src/strings.ts:2634
+#: src/strings.ts:2637
msgid "Click to save"
msgstr ""
-#: src/strings.ts:2630
+#: src/strings.ts:2633
msgid "Click to update"
msgstr ""
@@ -1737,7 +1741,7 @@ msgstr ""
msgid "Close"
msgstr ""
-#: src/strings.ts:2767
+#: src/strings.ts:2770
msgid "Close ({seconds})"
msgstr ""
@@ -1769,7 +1773,7 @@ msgstr ""
msgid "Close to the right"
msgstr ""
-#: src/strings.ts:2544
+#: src/strings.ts:2547
msgid "cloud storage space for storing images and files."
msgstr ""
@@ -1810,7 +1814,7 @@ msgstr ""
msgid "Color title"
msgstr ""
-#: src/strings.ts:2799
+#: src/strings.ts:2802
msgid "Colornote password for {filename}"
msgstr ""
@@ -1834,7 +1838,7 @@ msgstr ""
msgid "Community"
msgstr ""
-#: src/strings.ts:2564
+#: src/strings.ts:2567
msgid "Compare plans"
msgstr ""
@@ -1854,11 +1858,11 @@ msgstr ""
msgid "Compressed images are uploaded in Full HD resolution and usually are good enough for most use cases."
msgstr ""
-#: src/strings.ts:2768
+#: src/strings.ts:2771
msgid "Compressing"
msgstr ""
-#: src/strings.ts:2772
+#: src/strings.ts:2775
msgid "Compression failed"
msgstr ""
@@ -1886,7 +1890,7 @@ msgstr ""
msgid "Confirm password"
msgstr ""
-#: src/strings.ts:2732
+#: src/strings.ts:2735
msgid "Confirm password required"
msgstr ""
@@ -1894,7 +1898,7 @@ msgstr ""
msgid "Confirm pin"
msgstr ""
-#: src/strings.ts:2658
+#: src/strings.ts:2661
msgid "Confirmation email sent"
msgstr ""
@@ -1959,7 +1963,7 @@ msgstr ""
msgid "Copy link text"
msgstr ""
-#: src/strings.ts:2791
+#: src/strings.ts:2794
msgid "Copy logs"
msgstr ""
@@ -2031,11 +2035,11 @@ msgstr ""
msgid "Create account"
msgstr ""
-#: src/strings.ts:2673
+#: src/strings.ts:2676
msgid "Create API Key"
msgstr ""
-#: src/strings.ts:2690
+#: src/strings.ts:2693
msgid "Create Key"
msgstr ""
@@ -2067,7 +2071,7 @@ msgstr ""
msgid "Create your account"
msgstr ""
-#: src/strings.ts:2689
+#: src/strings.ts:2692
msgid "Create your first api key to get started."
msgstr ""
@@ -2075,7 +2079,7 @@ msgstr ""
msgid "Created at"
msgstr ""
-#: src/strings.ts:2709
+#: src/strings.ts:2712
msgid "Created on"
msgstr ""
@@ -2084,11 +2088,11 @@ msgstr ""
msgid "Creating a{0} backup"
msgstr ""
-#: src/strings.ts:2681
+#: src/strings.ts:2684
msgid "Creating..."
msgstr ""
-#: src/strings.ts:2783
+#: src/strings.ts:2786
msgid "Creation date cannot be after last edited date"
msgstr ""
@@ -2113,7 +2117,7 @@ msgstr ""
msgid "Current password"
msgstr ""
-#: src/strings.ts:2741
+#: src/strings.ts:2744
msgid "Current password required"
msgstr ""
@@ -2210,7 +2214,7 @@ msgstr ""
msgid "Date modified"
msgstr ""
-#: src/strings.ts:2756
+#: src/strings.ts:2759
msgid "Date synced"
msgstr ""
@@ -2222,7 +2226,7 @@ msgstr ""
msgid "Day"
msgstr ""
-#: src/strings.ts:2638
+#: src/strings.ts:2641
msgid "Day format"
msgstr ""
@@ -2279,7 +2283,7 @@ msgstr ""
msgid "Default screen to open on app launch"
msgstr ""
-#: src/strings.ts:2497
+#: src/strings.ts:2500
msgid "Default sidebar tab"
msgstr ""
@@ -2299,15 +2303,15 @@ msgstr ""
msgid "Delete account"
msgstr ""
-#: src/strings.ts:2762
+#: src/strings.ts:2765
msgid "Delete all"
msgstr ""
-#: src/strings.ts:2808
+#: src/strings.ts:2811
msgid "Delete all version history for this note?"
msgstr ""
-#: src/strings.ts:2735
+#: src/strings.ts:2738
msgid "Delete attachment"
msgstr ""
@@ -2319,7 +2323,7 @@ msgstr ""
msgid "Delete column"
msgstr ""
-#: src/strings.ts:2655
+#: src/strings.ts:2658
msgid "Delete data"
msgstr ""
@@ -2327,7 +2331,7 @@ msgstr ""
msgid "Delete group"
msgstr ""
-#: src/strings.ts:2802
+#: src/strings.ts:2805
msgid "Delete item"
msgstr ""
@@ -2379,7 +2383,7 @@ msgstr ""
msgid "Desktop integration"
msgstr ""
-#: src/strings.ts:2755
+#: src/strings.ts:2758
msgid "Details"
msgstr ""
@@ -2399,7 +2403,7 @@ msgstr ""
msgid "Disable editor margins"
msgstr ""
-#: src/strings.ts:2667
+#: src/strings.ts:2670
msgid "Disable Inbox API"
msgstr ""
@@ -2415,7 +2419,7 @@ msgstr ""
msgid "Disabled"
msgstr ""
-#: src/strings.ts:2669
+#: src/strings.ts:2672
msgid "Disabling will delete all your unsynced inbox items. Additionally, disabling will revoke all existing API keys, they will no longer work. Are you sure?"
msgstr ""
@@ -2564,7 +2568,7 @@ msgstr ""
msgid "Drop your files here to attach"
msgstr ""
-#: src/strings.ts:2574
+#: src/strings.ts:2577
msgid "Due {date}"
msgstr ""
@@ -2572,7 +2576,7 @@ msgstr ""
msgid "Due date"
msgstr ""
-#: src/strings.ts:2572
+#: src/strings.ts:2575
msgid "Due today"
msgstr ""
@@ -2580,7 +2584,7 @@ msgstr ""
msgid "Duplicate"
msgstr ""
-#: src/strings.ts:2675
+#: src/strings.ts:2678
msgid "e.g., Todo integration"
msgstr ""
@@ -2596,7 +2600,7 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: src/strings.ts:2645
+#: src/strings.ts:2648
msgid "Edit creation date"
msgstr ""
@@ -2609,7 +2613,7 @@ msgstr ""
msgid "Edit link"
msgstr ""
-#: src/strings.ts:2490
+#: src/strings.ts:2493
msgid "Edit profile"
msgstr ""
@@ -2630,7 +2634,7 @@ msgstr ""
msgid "Editor paging (experimental)"
msgstr ""
-#: src/strings.ts:2601
+#: src/strings.ts:2604
msgid "Education plan"
msgstr ""
@@ -2690,7 +2694,7 @@ msgstr ""
msgid "Enable editor margins"
msgstr ""
-#: src/strings.ts:2662
+#: src/strings.ts:2665
msgid "Enable Inbox API"
msgstr ""
@@ -2710,7 +2714,7 @@ msgstr ""
msgid "Enable two-factor authentication to add an extra layer of security to your account."
msgstr ""
-#: src/strings.ts:2663
+#: src/strings.ts:2666
msgid "Enable/Disable Inbox API"
msgstr ""
@@ -2730,7 +2734,7 @@ msgstr ""
msgid "Encrypted, private, secure."
msgstr ""
-#: src/strings.ts:2769
+#: src/strings.ts:2772
msgid "Encrypting"
msgstr ""
@@ -2830,7 +2834,7 @@ msgstr ""
msgid "Enter the recovery code to continue logging in"
msgstr ""
-#: src/strings.ts:2637
+#: src/strings.ts:2640
msgid "Enter title"
msgstr ""
@@ -2842,11 +2846,11 @@ msgstr ""
msgid "Enter your new email"
msgstr ""
-#: src/strings.ts:2796
+#: src/strings.ts:2799
msgid "Enter your PGP private key"
msgstr ""
-#: src/strings.ts:2795
+#: src/strings.ts:2798
msgid "Enter your PGP public key"
msgstr ""
@@ -2890,7 +2894,7 @@ msgstr ""
msgid "Errors in {count} attachments"
msgstr ""
-#: src/strings.ts:2486
+#: src/strings.ts:2489
msgid "Essential plan"
msgstr ""
@@ -2926,7 +2930,7 @@ msgstr ""
msgid "Expand"
msgstr ""
-#: src/strings.ts:2482
+#: src/strings.ts:2485
msgid "Expand sidebar"
msgstr ""
@@ -2934,39 +2938,39 @@ msgstr ""
msgid "Experience the next level of private note taking\""
msgstr ""
-#: src/strings.ts:2711
+#: src/strings.ts:2714
msgid "Expired"
msgstr ""
-#: src/strings.ts:2676
+#: src/strings.ts:2679
msgid "Expires in"
msgstr ""
-#: src/strings.ts:2712
+#: src/strings.ts:2715
msgid "Expires on"
msgstr ""
-#: src/strings.ts:2651
+#: src/strings.ts:2654
msgid "Expiry date"
msgstr ""
-#: src/strings.ts:2780
+#: src/strings.ts:2783
msgid "Expiry date cannot be more than 1 year in the future"
msgstr ""
-#: src/strings.ts:2778
+#: src/strings.ts:2781
msgid "Expiry date must be in the future"
msgstr ""
-#: src/strings.ts:2797
+#: src/strings.ts:2800
msgid "Expiry date removed"
msgstr ""
-#: src/strings.ts:2781
+#: src/strings.ts:2784
msgid "Expiry date set"
msgstr ""
-#: src/strings.ts:2555
+#: src/strings.ts:2558
msgid "Explore all plans"
msgstr ""
@@ -2991,7 +2995,7 @@ msgstr ""
msgid "Export as{0}"
msgstr ""
-#: src/strings.ts:2652
+#: src/strings.ts:2655
msgid "Export CSV"
msgstr ""
@@ -3019,11 +3023,11 @@ msgstr ""
msgid "Failed"
msgstr ""
-#: src/strings.ts:2757
+#: src/strings.ts:2760
msgid "Failed inbox items"
msgstr ""
-#: src/strings.ts:2656
+#: src/strings.ts:2659
msgid "Failed to attach file"
msgstr ""
@@ -3031,12 +3035,12 @@ msgstr ""
msgid "Failed to copy note"
msgstr ""
-#: src/strings.ts:2701
+#: src/strings.ts:2704
msgid "Failed to copy to clipboard"
msgstr ""
#. placeholder {0}: message ? `: ${message}` : ""
-#: src/strings.ts:2680
+#: src/strings.ts:2683
msgid "Failed to create API key{0}"
msgstr ""
@@ -3060,7 +3064,7 @@ msgstr ""
msgid "Failed to install theme."
msgstr ""
-#: src/strings.ts:2687
+#: src/strings.ts:2690
msgid "Failed to load API keys. Please try again."
msgstr ""
@@ -3080,7 +3084,7 @@ msgstr ""
msgid "Failed to resolve download url"
msgstr ""
-#: src/strings.ts:2706
+#: src/strings.ts:2709
msgid "Failed to revoke API key"
msgstr ""
@@ -3116,7 +3120,7 @@ msgstr ""
msgid "Fallback method for 2FA enabled"
msgstr ""
-#: src/strings.ts:2565
+#: src/strings.ts:2568
msgid "FAQs"
msgstr ""
@@ -3129,7 +3133,7 @@ msgstr ""
msgid "Favorites"
msgstr ""
-#: src/strings.ts:2563
+#: src/strings.ts:2566
msgid "Featured on"
msgstr ""
@@ -3157,7 +3161,7 @@ msgstr ""
msgid "File length mismatch. Expected {expectedSize} but got {currentSize} bytes. Please upload this file again from the attachment manager."
msgstr ""
-#: src/strings.ts:2777
+#: src/strings.ts:2780
msgid "File links cannot be opened in browsers. Please use the Notesnook desktop app."
msgstr ""
@@ -3165,7 +3169,7 @@ msgstr ""
msgid "File mismatch"
msgstr ""
-#: src/strings.ts:2771
+#: src/strings.ts:2774
msgid "File size limit exceeded. Please upgrade your plan."
msgstr ""
@@ -3185,7 +3189,7 @@ msgstr ""
msgid "Filter languages"
msgstr ""
-#: src/strings.ts:2623
+#: src/strings.ts:2626
msgid "Finish your purchase in the browser."
msgstr ""
@@ -3229,7 +3233,7 @@ msgstr ""
msgid "Font size"
msgstr ""
-#: src/strings.ts:2537
+#: src/strings.ts:2540
msgid "For a monthly subscription, you can get a refund within 7 days of purchase. For a yearly subscription, we offer a full refund within 14 days of purchase. For a 5 year subscription, you can request a refund within 30 days of purchase."
msgstr ""
@@ -3241,7 +3245,7 @@ msgstr ""
msgid "for help regarding how to use the Notesnook Importer."
msgstr ""
-#: src/strings.ts:2546
+#: src/strings.ts:2549
msgid "for locking your notes as soon as app enters background"
msgstr ""
@@ -3272,11 +3276,11 @@ msgstr ""
msgid "Forgot password?"
msgstr ""
-#: src/strings.ts:2580
+#: src/strings.ts:2583
msgid "Free {duration} day trial, cancel any time"
msgstr ""
-#: src/strings.ts:2484
+#: src/strings.ts:2487
msgid "Free plan"
msgstr ""
@@ -3348,7 +3352,7 @@ msgstr ""
msgid "Get started"
msgstr ""
-#: src/strings.ts:2543
+#: src/strings.ts:2546
msgid "Get this and so much more:"
msgstr ""
@@ -3364,7 +3368,7 @@ msgstr ""
msgid "Getting recovery codes"
msgstr ""
-#: src/strings.ts:2734
+#: src/strings.ts:2737
msgid "Gift code required"
msgstr ""
@@ -3372,7 +3376,7 @@ msgstr ""
msgid "GNU GENERAL PUBLIC LICENSE Version 3"
msgstr ""
-#: src/strings.ts:2624
+#: src/strings.ts:2627
msgid "Go back"
msgstr ""
@@ -3412,7 +3416,7 @@ msgstr ""
msgid "Go to web app"
msgstr ""
-#: src/strings.ts:2554
+#: src/strings.ts:2557
msgid "Google will remind you 2 days before your trial ends."
msgstr ""
@@ -3440,7 +3444,7 @@ msgstr ""
msgid "Having problems with sync?"
msgstr ""
-#: src/strings.ts:2569
+#: src/strings.ts:2572
msgid "hdImages"
msgstr ""
@@ -3512,7 +3516,7 @@ msgstr ""
msgid "hr"
msgstr ""
-#: src/strings.ts:2514
+#: src/strings.ts:2517
msgid "I already have an account"
msgstr ""
@@ -3634,7 +3638,7 @@ msgstr ""
msgid "Import completed"
msgstr ""
-#: src/strings.ts:2653
+#: src/strings.ts:2656
msgid "Import CSV"
msgstr ""
@@ -3642,15 +3646,15 @@ msgstr ""
msgid "import guide"
msgstr ""
-#: src/strings.ts:2659
+#: src/strings.ts:2662
msgid "Inbox API"
msgstr ""
-#: src/strings.ts:2719
+#: src/strings.ts:2722
msgid "Inbox keys saved"
msgstr ""
-#: src/strings.ts:2664
+#: src/strings.ts:2667
msgid "Inbox PGP Keys"
msgstr ""
@@ -3734,15 +3738,15 @@ msgstr ""
msgid "Invalid email"
msgstr ""
-#: src/strings.ts:2699
+#: src/strings.ts:2702
msgid "Invalid password"
msgstr ""
-#: src/strings.ts:2718
+#: src/strings.ts:2721
msgid "Invalid PGP key pair. Please check your keys and try again."
msgstr ""
-#: src/strings.ts:2725
+#: src/strings.ts:2728
msgid "Invalid recovery key. Make sure to input your account recovery key, not a 2FA recovery code."
msgstr ""
@@ -3775,7 +3779,7 @@ msgstr ""
msgid "Item"
msgstr ""
-#: src/strings.ts:2761
+#: src/strings.ts:2764
msgid "Item deleted"
msgstr ""
@@ -3828,7 +3832,7 @@ msgstr ""
msgid "Keep open"
msgstr ""
-#: src/strings.ts:2803
+#: src/strings.ts:2806
msgid "Keep screen on"
msgstr ""
@@ -3836,7 +3840,7 @@ msgstr ""
msgid "Keep your data safe"
msgstr ""
-#: src/strings.ts:2674
+#: src/strings.ts:2677
msgid "Key name"
msgstr ""
@@ -3848,7 +3852,7 @@ msgstr ""
msgid "Last edited at"
msgstr ""
-#: src/strings.ts:2707
+#: src/strings.ts:2710
msgid "Last used on"
msgstr ""
@@ -3908,7 +3912,7 @@ msgstr ""
msgid "Line {line}, Column {column}"
msgstr ""
-#: src/strings.ts:2635
+#: src/strings.ts:2638
msgid "Line height"
msgstr ""
@@ -3928,7 +3932,7 @@ msgstr ""
msgid "Link notebooks"
msgstr ""
-#: src/strings.ts:2491
+#: src/strings.ts:2494
msgid "Link notes"
msgstr ""
@@ -3977,7 +3981,7 @@ msgstr ""
msgid "Loading {0}, please wait..."
msgstr ""
-#: src/strings.ts:2686
+#: src/strings.ts:2689
msgid "Loading API keys..."
msgstr ""
@@ -4037,7 +4041,7 @@ msgstr ""
msgid "Lock the app with a password or pin"
msgstr ""
-#: src/strings.ts:2720
+#: src/strings.ts:2723
msgid "Lock vault after"
msgstr ""
@@ -4081,7 +4085,7 @@ msgstr ""
msgid "Login required"
msgstr ""
-#: src/strings.ts:2742
+#: src/strings.ts:2745
msgid "Login required to restore attachments"
msgstr ""
@@ -4093,7 +4097,7 @@ msgstr ""
msgid "Login to encrypt and sync notes"
msgstr ""
-#: src/strings.ts:2628
+#: src/strings.ts:2631
msgid "Login to upload attachments. [Read more](https://notesnook.com/help/faqs/login-to-upload-attachments)"
msgstr ""
@@ -4189,7 +4193,7 @@ msgstr ""
msgid "Maximize"
msgstr ""
-#: src/strings.ts:2786
+#: src/strings.ts:2789
msgid "Maximum reminder date is {maxDate}"
msgstr ""
@@ -4339,7 +4343,7 @@ msgstr ""
msgid "Name"
msgstr ""
-#: src/strings.ts:2740
+#: src/strings.ts:2743
msgid "Name is required."
msgstr ""
@@ -4359,7 +4363,7 @@ msgstr ""
msgid "Never ask again"
msgstr ""
-#: src/strings.ts:2710
+#: src/strings.ts:2713
msgid "Never expires"
msgstr ""
@@ -4371,7 +4375,7 @@ msgstr ""
msgid "Never show again"
msgstr ""
-#: src/strings.ts:2708
+#: src/strings.ts:2711
msgid "Never used"
msgstr ""
@@ -4483,7 +4487,7 @@ msgstr ""
msgid "No encryption key found"
msgstr ""
-#: src/strings.ts:2759
+#: src/strings.ts:2762
msgid "No failed inbox items"
msgstr ""
@@ -4503,7 +4507,7 @@ msgstr ""
msgid "No note history available for this device."
msgstr ""
-#: src/strings.ts:2508
+#: src/strings.ts:2511
msgid "No notebooks selected to move"
msgstr ""
@@ -4511,7 +4515,7 @@ msgstr ""
msgid "No one can view this {type} except you."
msgstr ""
-#: src/strings.ts:2631
+#: src/strings.ts:2634
msgid "No password"
msgstr ""
@@ -4569,7 +4573,7 @@ msgstr ""
msgid "Note does not exist"
msgstr ""
-#: src/strings.ts:2784
+#: src/strings.ts:2787
msgid "Note duplicated"
msgstr ""
@@ -4610,7 +4614,7 @@ msgstr ""
msgid "Notebook"
msgstr ""
-#: src/strings.ts:2494
+#: src/strings.ts:2497
msgid "Notebook added"
msgstr ""
@@ -4649,15 +4653,15 @@ msgstr ""
msgid "notes imported"
msgstr ""
-#: src/strings.ts:2558
+#: src/strings.ts:2561
msgid "Notesnook"
msgstr ""
-#: src/strings.ts:2616
+#: src/strings.ts:2619
msgid "Notesnook Circle"
msgstr ""
-#: src/strings.ts:2618
+#: src/strings.ts:2621
msgid "Notesnook Circle brings together trusted partners who share our commitment to privacy, transparency, and user freedom."
msgstr ""
@@ -4708,6 +4712,7 @@ msgid "of"
msgstr ""
#: src/strings.ts:1604
+#: src/strings.ts:2482
msgid "Off"
msgstr ""
@@ -4715,11 +4720,11 @@ msgstr ""
msgid "Offline"
msgstr ""
-#: src/strings.ts:2813
+#: src/strings.ts:2816
msgid "Offline mode"
msgstr ""
-#: src/strings.ts:2691
+#: src/strings.ts:2694
msgid "OK"
msgstr ""
@@ -4743,7 +4748,7 @@ msgstr ""
msgid "Once your password is changed, please make sure to save the new account recovery key"
msgstr ""
-#: src/strings.ts:2576
+#: src/strings.ts:2579
msgid "One time purchase, no auto-renewal"
msgstr ""
@@ -4811,7 +4816,7 @@ msgstr ""
msgid "Open the two-factor authentication (TOTP) app to view your authentication code."
msgstr ""
-#: src/strings.ts:2773
+#: src/strings.ts:2776
msgid "Opening local file"
msgstr ""
@@ -4844,11 +4849,15 @@ msgstr ""
msgid "Outline list"
msgstr ""
+#: src/strings.ts:2484
+msgid "Pages"
+msgstr ""
+
#: src/strings.ts:2361
msgid "Paragraph"
msgstr ""
-#: src/strings.ts:2507
+#: src/strings.ts:2510
msgid "Paragraphs"
msgstr ""
@@ -4892,7 +4901,7 @@ msgstr ""
msgid "Password protection"
msgstr ""
-#: src/strings.ts:2731
+#: src/strings.ts:2734
msgid "Password required"
msgstr ""
@@ -4924,7 +4933,7 @@ msgstr ""
msgid "Paste without formatting"
msgstr ""
-#: src/strings.ts:2577
+#: src/strings.ts:2580
msgid "Pay once and use for 5 years"
msgstr ""
@@ -4936,7 +4945,7 @@ msgstr ""
msgid "PDF is password protected"
msgstr ""
-#: src/strings.ts:2793
+#: src/strings.ts:2796
msgid "Permission required to save QR-Code to Gallery"
msgstr ""
@@ -4968,11 +4977,11 @@ msgstr ""
msgid "Pinned"
msgstr ""
-#: src/strings.ts:2598
+#: src/strings.ts:2601
msgid "Plan limits"
msgstr ""
-#: src/strings.ts:2558
+#: src/strings.ts:2561
msgid "Plans"
msgstr ""
@@ -5006,12 +5015,12 @@ msgstr ""
msgid "Please enable automatic backups to avoid losing important data."
msgstr ""
-#: src/strings.ts:2677
+#: src/strings.ts:2680
msgid "Please enter a key name"
msgstr ""
#: src/strings.ts:1514
-#: src/strings.ts:2733
+#: src/strings.ts:2736
msgid "Please enter a valid email address"
msgstr ""
@@ -5047,7 +5056,7 @@ msgstr ""
msgid "Please enter the password to view this version"
msgstr ""
-#: src/strings.ts:2697
+#: src/strings.ts:2700
msgid "Please enter your account password to view this API key."
msgstr ""
@@ -5075,7 +5084,7 @@ msgstr ""
msgid "Please grant notifications permission to add new reminders."
msgstr ""
-#: src/strings.ts:2748
+#: src/strings.ts:2751
msgid "Please login to download attachments."
msgstr ""
@@ -5205,7 +5214,7 @@ msgstr ""
msgid "Prevent note title from appearing in tab/window title."
msgstr ""
-#: src/strings.ts:2805
+#: src/strings.ts:2808
msgid "Prevent the screen from turning off while the editor is focused."
msgstr ""
@@ -5249,7 +5258,7 @@ msgstr ""
msgid "Privacy mode"
msgstr ""
-#: src/strings.ts:2593
+#: src/strings.ts:2596
msgid "privacy policy"
msgstr ""
@@ -5265,15 +5274,15 @@ msgstr ""
msgid "private analytics and bug reports."
msgstr ""
-#: src/strings.ts:2730
+#: src/strings.ts:2733
msgid "Private key is passphrase-protected. Please provide the decrypted key or a key without a passphrase."
msgstr ""
-#: src/strings.ts:2750
+#: src/strings.ts:2753
msgid "Private key required"
msgstr ""
-#: src/strings.ts:2716
+#: src/strings.ts:2719
msgid "Private Key:"
msgstr ""
@@ -5289,7 +5298,7 @@ msgstr ""
msgid "Pro"
msgstr ""
-#: src/strings.ts:2485
+#: src/strings.ts:2488
msgid "Pro plan"
msgstr ""
@@ -5321,7 +5330,7 @@ msgstr ""
msgid "Protect your notes"
msgstr ""
-#: src/strings.ts:2754
+#: src/strings.ts:2757
msgid "Provide your own keys"
msgstr ""
@@ -5329,11 +5338,11 @@ msgstr ""
msgid "Proxy"
msgstr ""
-#: src/strings.ts:2749
+#: src/strings.ts:2752
msgid "Public key required"
msgstr ""
-#: src/strings.ts:2715
+#: src/strings.ts:2718
msgid "Public Key:"
msgstr ""
@@ -5345,7 +5354,7 @@ msgstr ""
msgid "Publish note"
msgstr ""
-#: src/strings.ts:2632
+#: src/strings.ts:2635
msgid "Publish to the web"
msgstr ""
@@ -5369,7 +5378,7 @@ msgstr ""
msgid "Published note link will be automatically deleted once it is viewed by someone."
msgstr ""
-#: src/strings.ts:2586
+#: src/strings.ts:2589
msgid "Purchase"
msgstr ""
@@ -5433,7 +5442,7 @@ msgstr ""
msgid "Reading backup file..."
msgstr ""
-#: src/strings.ts:2560
+#: src/strings.ts:2563
msgid "Ready to take the next step on your private note taking journey?"
msgstr ""
@@ -5465,7 +5474,7 @@ msgstr ""
msgid "Recommended"
msgstr ""
-#: src/strings.ts:2562
+#: src/strings.ts:2565
msgid "Recommended by Privacy Guides"
msgstr ""
@@ -5509,7 +5518,7 @@ msgstr ""
msgid "Redeem"
msgstr ""
-#: src/strings.ts:2615
+#: src/strings.ts:2618
msgid "Redeem code"
msgstr ""
@@ -5732,7 +5741,7 @@ msgstr ""
msgid "Reset account password"
msgstr ""
-#: src/strings.ts:2499
+#: src/strings.ts:2502
msgid "Reset homepage"
msgstr ""
@@ -5828,7 +5837,7 @@ msgstr ""
msgid "Resubscribe to Pro"
msgstr ""
-#: src/strings.ts:2688
+#: src/strings.ts:2691
msgid "Retry"
msgstr ""
@@ -5848,7 +5857,7 @@ msgstr ""
msgid "Revoke biometric unlocking"
msgstr ""
-#: src/strings.ts:2702
+#: src/strings.ts:2705
msgid "Revoke Inbox API Key - {name}"
msgstr ""
@@ -5980,11 +5989,11 @@ msgstr ""
msgid "School work"
msgstr ""
-#: src/strings.ts:2510
+#: src/strings.ts:2513
msgid "Scroll to bottom"
msgstr ""
-#: src/strings.ts:2509
+#: src/strings.ts:2512
msgid "Scroll to top"
msgstr ""
@@ -6105,7 +6114,7 @@ msgstr ""
msgid "Select a backup file from your device to restore backup"
msgstr ""
-#: src/strings.ts:2504
+#: src/strings.ts:2507
msgid "Select a notebook to move this notebook into, or unselect to move it to the root level."
msgstr ""
@@ -6165,7 +6174,7 @@ msgstr ""
msgid "Select notebooks you want to add note(s) to."
msgstr ""
-#: src/strings.ts:2492
+#: src/strings.ts:2495
msgid "Select notes to link to \"{title}\""
msgstr ""
@@ -6177,7 +6186,7 @@ msgstr ""
msgid "Select profile picture"
msgstr ""
-#: src/strings.ts:2498
+#: src/strings.ts:2501
msgid "Select the default sidebar tab"
msgstr ""
@@ -6281,7 +6290,7 @@ msgstr ""
msgid "Set as default"
msgstr ""
-#: src/strings.ts:2496
+#: src/strings.ts:2499
msgid "Set as homepage"
msgstr ""
@@ -6293,7 +6302,7 @@ msgstr ""
msgid "Set automatic trash cleanup interval from Settings > Behaviour > Clean trash interval."
msgstr ""
-#: src/strings.ts:2649
+#: src/strings.ts:2652
msgid "Set expiry"
msgstr ""
@@ -6359,7 +6368,7 @@ msgstr ""
msgid "Setup app lock pin"
msgstr ""
-#: src/strings.ts:2794
+#: src/strings.ts:2797
msgid "Setup inbox keys"
msgstr ""
@@ -6399,7 +6408,7 @@ msgstr ""
msgid "Share Notesnook with friends!"
msgstr ""
-#: src/strings.ts:2661
+#: src/strings.ts:2664
msgid "Share things to Notesnook from anywhere using the Inbox API"
msgstr ""
@@ -6427,7 +6436,7 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
-#: src/strings.ts:2760
+#: src/strings.ts:2763
msgid "Show"
msgstr ""
@@ -6491,7 +6500,7 @@ msgstr ""
msgid "Spaces"
msgstr ""
-#: src/strings.ts:2608
+#: src/strings.ts:2611
msgid "Special Offer"
msgstr ""
@@ -6547,7 +6556,7 @@ msgstr ""
msgid "Status"
msgstr ""
-#: src/strings.ts:2488
+#: src/strings.ts:2491
msgid "Storage"
msgstr ""
@@ -6571,11 +6580,11 @@ msgstr ""
msgid "Submit"
msgstr ""
-#: src/strings.ts:2587
+#: src/strings.ts:2590
msgid "Subscribe"
msgstr ""
-#: src/strings.ts:2588
+#: src/strings.ts:2591
msgid "Subscribe and start free trial"
msgstr ""
@@ -6695,7 +6704,7 @@ msgstr ""
msgid "Table settings"
msgstr ""
-#: src/strings.ts:2549
+#: src/strings.ts:2552
msgid "tables, outlines, block level note linking"
msgstr ""
@@ -6827,7 +6836,7 @@ msgstr ""
msgid "Terms of Service "
msgstr ""
-#: src/strings.ts:2595
+#: src/strings.ts:2598
msgid "terms of use."
msgstr ""
@@ -6855,11 +6864,11 @@ msgstr ""
msgid "Thank you for reporting!"
msgstr ""
-#: src/strings.ts:2566
+#: src/strings.ts:2569
msgid "Thank you for subscribing"
msgstr ""
-#: src/strings.ts:2603
+#: src/strings.ts:2606
msgid "Thank you for the purchase"
msgstr ""
@@ -6879,7 +6888,7 @@ msgstr ""
msgid "The {title} at {url} is not compatible with this client."
msgstr ""
-#: src/strings.ts:2648
+#: src/strings.ts:2651
msgid "The incoming note could not be unlocked with the provided password. Enter the correct password for the incoming note"
msgstr ""
@@ -6887,11 +6896,11 @@ msgstr ""
msgid "The information above will be publically available at"
msgstr ""
-#: src/strings.ts:2622
+#: src/strings.ts:2625
msgid "The Notesnook Circle is exclusive to subscribers. Please consider subscribing to gain access to Notesnook Circle and enjoy additional benefits."
msgstr "<<<<<<< HEAD"
-#: src/strings.ts:2801
+#: src/strings.ts:2804
msgid "The password for decrypting the Colornote backup file."
msgstr ""
@@ -6963,7 +6972,7 @@ msgstr ""
msgid "This error usually means the search index is corrupted."
msgstr ""
-#: src/strings.ts:2726
+#: src/strings.ts:2729
msgid "This feature is not available on this plan."
msgstr ""
@@ -6971,7 +6980,7 @@ msgstr ""
msgid "This image cannot be previewed"
msgstr ""
-#: src/strings.ts:2589
+#: src/strings.ts:2592
msgid "This is a one time purchase, no subscription."
msgstr ""
@@ -6984,7 +6993,7 @@ msgstr ""
msgid "This must only be used for troubleshooting. Using it regularly for sync is not recommended and will lead to unexpected data loss and other issues. If you are having persistent issues with sync, please report them to us at support@streetwriters.co."
msgstr ""
-#: src/strings.ts:2654
+#: src/strings.ts:2657
msgid "This note is empty"
msgstr ""
@@ -7045,7 +7054,7 @@ msgstr ""
msgid "Title format"
msgstr ""
-#: src/strings.ts:2739
+#: src/strings.ts:2742
msgid "Title is required"
msgstr ""
@@ -7098,7 +7107,7 @@ msgstr ""
msgid "Trash gets automatically cleaned up daily"
msgstr ""
-#: src/strings.ts:2556
+#: src/strings.ts:2559
msgid "Try {plan} for free"
msgstr ""
@@ -7110,7 +7119,7 @@ msgstr ""
msgid "Try free for 14 days"
msgstr ""
-#: src/strings.ts:2542
+#: src/strings.ts:2545
msgid "Try it for free"
msgstr ""
@@ -7166,7 +7175,7 @@ msgstr ""
msgid "Unable to send 2FA code"
msgstr ""
-#: src/strings.ts:2502
+#: src/strings.ts:2505
msgid "Unarchive"
msgstr ""
@@ -7182,7 +7191,7 @@ msgstr ""
msgid "Unfavorite"
msgstr ""
-#: src/strings.ts:2599
+#: src/strings.ts:2602
msgid "Unlimited"
msgstr ""
@@ -7198,7 +7207,7 @@ msgstr ""
msgid "Unlock"
msgstr ""
-#: src/strings.ts:2646
+#: src/strings.ts:2649
msgid "Unlock incoming note"
msgstr ""
@@ -7215,7 +7224,7 @@ msgstr ""
msgid "Unlock note to delete it"
msgstr ""
-#: src/strings.ts:2657
+#: src/strings.ts:2660
msgid "Unlock note to merge conflicts"
msgstr ""
@@ -7267,7 +7276,7 @@ msgstr ""
msgid "Unregister"
msgstr ""
-#: src/strings.ts:2650
+#: src/strings.ts:2653
msgid "Unset expiry"
msgstr ""
@@ -7288,7 +7297,7 @@ msgstr ""
msgid "Update now"
msgstr ""
-#: src/strings.ts:2516
+#: src/strings.ts:2519
msgid "Upgrade"
msgstr ""
@@ -7296,11 +7305,11 @@ msgstr ""
msgid "Upgrade now"
msgstr ""
-#: src/strings.ts:2515
+#: src/strings.ts:2518
msgid "Upgrade plan"
msgstr ""
-#: src/strings.ts:2541
+#: src/strings.ts:2544
msgid "Upgrade plan to {plan} to use this feature."
msgstr ""
@@ -7316,7 +7325,7 @@ msgstr ""
msgid "Upgrade to Pro"
msgstr ""
-#: src/strings.ts:2614
+#: src/strings.ts:2617
msgid "Upgrade to redeem"
msgstr ""
@@ -7374,7 +7383,7 @@ msgstr ""
msgid "Use account password"
msgstr ""
-#: src/strings.ts:2548
+#: src/strings.ts:2551
msgid "Use advanced note taking features like"
msgstr ""
@@ -7439,7 +7448,7 @@ msgstr ""
msgid "Use this if changes made on this device are not appearing on other devices. This will overwrite the data on the server with the data from this device."
msgstr ""
-#: src/strings.ts:2489
+#: src/strings.ts:2492
msgid "used"
msgstr ""
@@ -7451,7 +7460,7 @@ msgstr ""
msgid "Using {instance} (v{version})"
msgstr ""
-#: src/strings.ts:2815
+#: src/strings.ts:2818
msgid "Using Notesnook without an account will **NOT** sync your notes across devices and could result in data loss if you lose access to your device or uninstall the app. Make sure to backup your notes regularly."
msgstr ""
@@ -7463,7 +7472,7 @@ msgstr ""
msgid "v{version} available"
msgstr ""
-#: src/strings.ts:2728
+#: src/strings.ts:2731
msgid "Value must be between {min} and {max}"
msgstr ""
@@ -7523,7 +7532,7 @@ msgstr ""
msgid "Version"
msgstr ""
-#: src/strings.ts:2807
+#: src/strings.ts:2810
msgid "Version history cleared"
msgstr ""
@@ -7539,11 +7548,11 @@ msgstr ""
msgid "View all linked notebooks"
msgstr ""
-#: src/strings.ts:2666
+#: src/strings.ts:2669
msgid "View and edit your inbox public/private key pair"
msgstr ""
-#: src/strings.ts:2672
+#: src/strings.ts:2675
msgid "View and manage inbox API keys"
msgstr ""
@@ -7551,7 +7560,7 @@ msgstr ""
msgid "View and share debug logs"
msgstr ""
-#: src/strings.ts:2758
+#: src/strings.ts:2761
msgid "View failed inbox items and error contexts"
msgstr ""
@@ -7571,7 +7580,7 @@ msgstr ""
msgid "View your recovery codes to recover your account in case you lose access to your two-factor authentication methods."
msgstr ""
-#: src/strings.ts:2629
+#: src/strings.ts:2632
msgid "Views"
msgstr ""
@@ -7595,11 +7604,11 @@ msgstr ""
msgid "We are sorry, it seems that the app crashed due to an error. You can submit a bug report below so we can fix this asap."
msgstr ""
-#: src/strings.ts:2788
+#: src/strings.ts:2791
msgid "We couldn't load this theme. Please make sure the file is a valid JSON theme file."
msgstr ""
-#: src/strings.ts:2790
+#: src/strings.ts:2793
msgid "We couldn't load this theme. The file appears to be incomplete or missing required theme properties."
msgstr ""
@@ -7607,7 +7616,7 @@ msgstr ""
msgid "We have sent you an email confirmation link. Please check your email inbox. If you cannot find the email, check your spam folder."
msgstr ""
-#: src/strings.ts:2527
+#: src/strings.ts:2530
msgid "We require credit card details to fight abuse and to make it seamless for you to upgrade. Your credit card is NOT charged until your free trial ends and your subscription starts. You will be notified via email of the upcoming charge before your trial ends."
msgstr ""
@@ -7623,7 +7632,7 @@ msgstr ""
msgid "We would love to know what you think!"
msgstr ""
-#: src/strings.ts:2568
+#: src/strings.ts:2571
msgid "We’re setting up your plan right now. We’ll notify you as soon as everything is ready."
msgstr ""
@@ -7647,7 +7656,7 @@ msgstr ""
msgid "Week"
msgstr ""
-#: src/strings.ts:2642
+#: src/strings.ts:2645
msgid "Week format"
msgstr ""
@@ -7664,7 +7673,7 @@ msgstr ""
msgid "Welcome back!"
msgstr ""
-#: src/strings.ts:2602
+#: src/strings.ts:2605
msgid "Welcome to Notesnook {plan}"
msgstr ""
@@ -7676,11 +7685,11 @@ msgstr ""
msgid "What do I do if I am not getting the email?"
msgstr ""
-#: src/strings.ts:2519
+#: src/strings.ts:2522
msgid "What happens to my data if I switch plans?"
msgstr ""
-#: src/strings.ts:2535
+#: src/strings.ts:2538
msgid "What is your refund policy?"
msgstr ""
@@ -7688,7 +7697,7 @@ msgstr ""
msgid "What went wrong?"
msgstr ""
-#: src/strings.ts:2525
+#: src/strings.ts:2528
msgid "Why do you need my credit card details for a free trial?"
msgstr ""
@@ -7696,7 +7705,7 @@ msgstr ""
msgid "Width"
msgstr ""
-#: src/strings.ts:2505
+#: src/strings.ts:2508
msgid "Words"
msgstr ""
@@ -7733,7 +7742,7 @@ msgstr ""
msgid "Yes"
msgstr ""
-#: src/strings.ts:2532
+#: src/strings.ts:2535
msgid "Yes, you can cancel your trial anytime. No questions asked."
msgstr ""
@@ -7741,7 +7750,7 @@ msgstr ""
msgid "You also agree to receive marketing emails from us which you can opt-out of from app settings."
msgstr ""
-#: src/strings.ts:2607
+#: src/strings.ts:2610
msgid "You are already subscribed to this plan."
msgstr ""
@@ -7773,7 +7782,7 @@ msgstr ""
msgid "You can change the theme at any time from Settings or the side menu."
msgstr ""
-#: src/strings.ts:2610
+#: src/strings.ts:2613
msgid "You can change your subscription plan from the web app"
msgstr ""
@@ -7845,7 +7854,7 @@ msgstr ""
msgid "You have been logged out."
msgstr ""
-#: src/strings.ts:2606
+#: src/strings.ts:2609
msgid "You have made a one time purchase. To change your plan please contact support."
msgstr ""
@@ -7881,7 +7890,7 @@ msgstr ""
msgid "You must log out in order to change/reset server URLs."
msgstr ""
-#: src/strings.ts:2744
+#: src/strings.ts:2747
msgid ""
"You need to login to restore attachments from a backup file. [Read more](https://notesnook.com/help/faqs/login-to-restore-attachments-in-backup).\n"
" \n"
@@ -7953,7 +7962,7 @@ msgstr ""
msgid "Your archive"
msgstr ""
-#: src/strings.ts:2501
+#: src/strings.ts:2504
msgid "Your archive is empty"
msgstr ""
@@ -7973,7 +7982,7 @@ msgstr ""
msgid "Your current 2FA method is {method}"
msgstr ""
-#: src/strings.ts:2613
+#: src/strings.ts:2616
msgid "Your current subscription does not allow changing plans"
msgstr ""
@@ -7985,7 +7994,7 @@ msgstr ""
msgid "Your data recovery key will be used to decrypt your data"
msgstr ""
-#: src/strings.ts:2521
+#: src/strings.ts:2524
msgid "Your data remains 100% accessible regardless of what plan you are on. That includes your notes, notebooks, attachments, and anything else you might have created."
msgstr ""
@@ -7993,7 +8002,7 @@ msgstr ""
msgid "Your email has been confirmed."
msgstr ""
-#: src/strings.ts:2512
+#: src/strings.ts:2515
msgid "Your email has been confirmed. You can now securely sync your encrypted notes across all devices."
msgstr ""
@@ -8021,7 +8030,7 @@ msgstr ""
msgid "Your free trial is ending soon"
msgstr ""
-#: src/strings.ts:2641
+#: src/strings.ts:2644
msgid "Your free trial is on-going. Your subscription will start on {trialExpiryDate}"
msgstr ""
diff --git a/packages/intl/src/strings.ts b/packages/intl/src/strings.ts
index f58fb537b..779efb2c0 100644
--- a/packages/intl/src/strings.ts
+++ b/packages/intl/src/strings.ts
@@ -2479,6 +2479,9 @@ Use this if changes from other devices are not appearing on this device. This wi
editorVirtualization: () => t`Editor paging (experimental)`,
editorVirtualizationDesc: () =>
t`Only render the part of a note that is currently on screen. Makes very large notes much faster to open, scroll and type in. While this is on, your browser's find (Ctrl+F) and printing will only cover the visible part of a note — use the editor's own search instead. If you face any issues, please turn it off.`,
+ editorVirtualizationOff: () => t`Off`,
+ editorVirtualizationBlocks: () => t`Blocks`,
+ editorVirtualizationPages: () => t`Pages`,
expandSidebar: () => t`Expand sidebar`,
viewAllLimits: () => `View all limits`,
freePlan: () => t`Free plan`,