From f719bcc01627d747a722be6d682a9d9bd9fcae17 Mon Sep 17 00:00:00 2001
From: 01zulfi <85733202+01zulfi@users.noreply.github.com>
Date: Mon, 30 Dec 2024 15:41:53 +0500
Subject: [PATCH] web: save image compression upload setting Signed-off-by:
01zulfi <85733202+01zulfi@users.noreply.github.com>
---
apps/web/__e2e__/models/editor.model.ts | 19 +
.../web/__e2e__/models/settings-view.model.ts | 11 +
apps/web/__e2e__/settings.test.ts | 79 +
apps/web/src/components/editor/picker.ts | 46 +-
apps/web/src/dialogs/image-picker-dialog.tsx | 13 +-
.../dialogs/settings/behaviour-settings.ts | 36 +-
apps/web/src/stores/setting-store.ts | 16 +
apps/web/src/utils/image-compressor.ts | 12 +
packages/intl/locale/en.po | 1854 +++++++++--------
packages/intl/locale/pseudo-LOCALE.po | 1854 +++++++++--------
packages/intl/src/strings.ts | 4 +
11 files changed, 2087 insertions(+), 1857 deletions(-)
create mode 100644 apps/web/__e2e__/settings.test.ts
diff --git a/apps/web/__e2e__/models/editor.model.ts b/apps/web/__e2e__/models/editor.model.ts
index 3b3ce1d6a0..7da8f0d67a 100644
--- a/apps/web/__e2e__/models/editor.model.ts
+++ b/apps/web/__e2e__/models/editor.model.ts
@@ -242,4 +242,23 @@ export class EditorModel {
if ((await tabModel.getId()) === id) return tabModel;
}
}
+
+ async attachImage() {
+ await this.page
+ .context()
+ .grantPermissions(["clipboard-read", "clipboard-write"]);
+ await this.page.evaluate(async () => {
+ const resp = await fetch("https://dummyjson.com/image/150");
+ const blob = await resp.blob();
+ window.navigator.clipboard.write([
+ new ClipboardItem({
+ "image/png": new Blob([blob], { type: "image/png" })
+ })
+ ]);
+ });
+
+ await this.page.keyboard.down("Control");
+ await this.page.keyboard.press("KeyV");
+ await this.page.keyboard.up("Control");
+ }
}
diff --git a/apps/web/__e2e__/models/settings-view.model.ts b/apps/web/__e2e__/models/settings-view.model.ts
index a3bd503d83..486858f0ee 100644
--- a/apps/web/__e2e__/models/settings-view.model.ts
+++ b/apps/web/__e2e__/models/settings-view.model.ts
@@ -139,4 +139,15 @@ export class SettingsViewModel {
await waitForDialog(this.page, "Restoring backup");
}
+
+ async selectImageCompression(option: { value: string; label: string }) {
+ const item = await this.navigation.findItem("Behaviour");
+ await item?.click();
+
+ const imageCompressionDropdown = this.page
+ .locator(getTestId("setting-image-compression"))
+ .locator("select");
+
+ await imageCompressionDropdown.selectOption(option);
+ }
}
diff --git a/apps/web/__e2e__/settings.test.ts b/apps/web/__e2e__/settings.test.ts
new file mode 100644
index 0000000000..cfbf17ca28
--- /dev/null
+++ b/apps/web/__e2e__/settings.test.ts
@@ -0,0 +1,79 @@
+/*
+This file is part of the Notesnook project (https://notesnook.com/)
+
+Copyright (C) 2023 Streetwriters (Private) Limited
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see .
+*/
+
+import { test, expect } from "@playwright/test";
+import { AppModel } from "./models/app.model";
+import { NOTE } from "./utils";
+
+test("ask for image compression during image upload when 'Image Compression' setting is 'Ask every time'", async ({
+ page
+}) => {
+ const app = new AppModel(page);
+ await app.goto();
+ const settings = await app.goToSettings();
+ await settings.selectImageCompression({
+ value: "0",
+ label: "Ask every time"
+ });
+ await settings.close();
+
+ const notes = await app.goToNotes();
+ await notes.createNote(NOTE);
+ await notes.editor.attachImage();
+
+ await expect(page.getByText("Enable compression")).toBeVisible();
+});
+
+test("do not ask for image compression during image upload when 'Image Compression' setting is 'Enable (Recommended)'", async ({
+ page
+}) => {
+ const app = new AppModel(page);
+ await app.goto();
+ const settings = await app.goToSettings();
+ await settings.selectImageCompression({
+ value: "1",
+ label: "Enable (Recommended)"
+ });
+ await settings.close();
+
+ const notes = await app.goToNotes();
+ await notes.createNote(NOTE);
+ await notes.editor.attachImage();
+
+ await expect(page.getByText("Enable compression")).toBeHidden();
+});
+
+test("do not ask for image compression during image upload when 'Image Compression' setting is 'Disable'", async ({
+ page
+}) => {
+ const app = new AppModel(page);
+ await app.goto();
+ const settings = await app.goToSettings();
+ await settings.selectImageCompression({
+ value: "2",
+ label: "Disable"
+ });
+ await settings.close();
+
+ const notes = await app.goToNotes();
+ await notes.createNote(NOTE);
+ await notes.editor.attachImage();
+
+ await expect(page.getByText("Enable compression")).toBeHidden();
+});
diff --git a/apps/web/src/components/editor/picker.ts b/apps/web/src/components/editor/picker.ts
index 8f89e355a1..c68a6df1f1 100644
--- a/apps/web/src/components/editor/picker.ts
+++ b/apps/web/src/components/editor/picker.ts
@@ -33,6 +33,9 @@ import {
hashStream,
writeEncryptedFile
} from "../../interfaces/fs";
+import Config from "../../utils/config";
+import { compressImage, FileWithURI } from "../../utils/image-compressor";
+import { ImageCompressionOptions } from "../../stores/setting-store";
const FILE_SIZE_LIMIT = 500 * 1024 * 1024;
const IMAGE_SIZE_LIMIT = 50 * 1024 * 1024;
@@ -58,12 +61,43 @@ export async function attachFiles(files: File[]) {
}
let images = files.filter((f) => f.type.startsWith("image/"));
- images =
- images.length > 0
- ? (await ImagePickerDialog.show({
- images
- })) || []
- : [];
+ const imageCompressionConfig = Config.get(
+ "imageCompression",
+ ImageCompressionOptions.ASK_EVERY_TIME
+ );
+
+ switch (imageCompressionConfig) {
+ case ImageCompressionOptions.ENABLE: {
+ let compressedImages: FileWithURI[] = [];
+ for (const image of images) {
+ const compressed = await compressImage(image, {
+ maxWidth: (naturalWidth) => Math.min(1920, naturalWidth * 0.7),
+ width: (naturalWidth) => naturalWidth,
+ height: (_, naturalHeight) => naturalHeight,
+ resize: "contain",
+ quality: 0.7
+ });
+ compressedImages.push(
+ new FileWithURI([compressed], image.name, {
+ lastModified: image.lastModified,
+ type: image.type
+ })
+ );
+ }
+ images = compressedImages;
+ break;
+ }
+ case ImageCompressionOptions.DISABLE:
+ break;
+ default:
+ images =
+ images.length > 0
+ ? (await ImagePickerDialog.show({
+ images
+ })) || []
+ : [];
+ }
+
const documents = files.filter((f) => !f.type.startsWith("image/"));
const attachments: Attachment[] = [];
for (const file of [...images, ...documents]) {
diff --git a/apps/web/src/dialogs/image-picker-dialog.tsx b/apps/web/src/dialogs/image-picker-dialog.tsx
index 37fa1b949e..25b2e8a793 100644
--- a/apps/web/src/dialogs/image-picker-dialog.tsx
+++ b/apps/web/src/dialogs/image-picker-dialog.tsx
@@ -22,24 +22,13 @@ import Dialog from "../components/dialog";
import { ScrollContainer } from "@notesnook/ui";
import { Flex, Image, Label, Text } from "@theme-ui/components";
import { formatBytes } from "@notesnook/common";
-import { compressImage } from "../utils/image-compressor";
+import { compressImage, FileWithURI } from "../utils/image-compressor";
import { BaseDialogProps, DialogManager } from "../common/dialog-manager";
import { strings } from "@notesnook/intl";
export type ImagePickerDialogProps = BaseDialogProps & {
images: File[];
};
-class FileWithURI extends File {
- uri: string;
- constructor(
- fileBits: BlobPart[],
- fileName: string,
- options?: FilePropertyBag
- ) {
- super(fileBits, fileName, options);
- this.uri = URL.createObjectURL(this);
- }
-}
export const ImagePickerDialog = DialogManager.register(
function ImagePickerDialog(props: ImagePickerDialogProps) {
diff --git a/apps/web/src/dialogs/settings/behaviour-settings.ts b/apps/web/src/dialogs/settings/behaviour-settings.ts
index 8f3203208a..8c0dc5cb93 100644
--- a/apps/web/src/dialogs/settings/behaviour-settings.ts
+++ b/apps/web/src/dialogs/settings/behaviour-settings.ts
@@ -19,7 +19,10 @@ along with this program. If not, see .
import { DATE_FORMATS } from "@notesnook/core";
import { SettingsGroup } from "./types";
-import { useStore as useSettingStore } from "../../stores/setting-store";
+import {
+ ImageCompressionOptions,
+ useStore as useSettingStore
+} from "../../stores/setting-store";
import dayjs from "dayjs";
import { isUserPremium } from "../../hooks/use-is-user-premium";
import { TimeFormat } from "@notesnook/core";
@@ -55,6 +58,37 @@ export const BehaviourSettings: SettingsGroup[] = [
]
}
]
+ },
+ {
+ key: "image-compression",
+ title: strings.imageCompression(),
+ description: strings.imageCompressionDesc(),
+ keywords: ["compress images", "image quality"],
+ onStateChange: (listener) =>
+ useSettingStore.subscribe((s) => s.imageCompression, listener),
+ components: [
+ {
+ type: "dropdown",
+ onSelectionChanged: (value) =>
+ useSettingStore.getState().setImageCompression(parseInt(value)),
+ selectedOption: () =>
+ useSettingStore.getState().imageCompression.toString(),
+ options: [
+ {
+ value: ImageCompressionOptions.ASK_EVERY_TIME.toString(),
+ title: strings.askEveryTime()
+ },
+ {
+ value: ImageCompressionOptions.ENABLE.toString(),
+ title: strings.enableRecommended()
+ },
+ {
+ value: ImageCompressionOptions.DISABLE.toString(),
+ title: strings.disable()
+ }
+ ]
+ }
+ ]
}
]
},
diff --git a/apps/web/src/stores/setting-store.ts b/apps/web/src/stores/setting-store.ts
index f5c2750be4..fb52f4a7e3 100644
--- a/apps/web/src/stores/setting-store.ts
+++ b/apps/web/src/stores/setting-store.ts
@@ -35,6 +35,13 @@ export const HostIds = [
"MONOGRAPH_HOST"
] as const;
export type HostId = (typeof HostIds)[number];
+
+export enum ImageCompressionOptions {
+ ASK_EVERY_TIME,
+ ENABLE,
+ DISABLE
+}
+
class SettingStore extends BaseStore {
encryptBackups = Config.get("encryptBackups", false);
backupReminderOffset = Config.get("backupReminderOffset", 0);
@@ -60,6 +67,10 @@ class SettingStore extends BaseStore {
trashCleanupInterval: TrashCleanupInterval = 7;
homepage = Config.get("homepage", 0);
+ imageCompression = Config.get(
+ "imageCompression",
+ ImageCompressionOptions.ASK_EVERY_TIME
+ );
desktopIntegrationSettings?: DesktopIntegration;
autoUpdates = true;
isFlatpak = false;
@@ -125,6 +136,11 @@ class SettingStore extends BaseStore {
Config.set("homepage", homepage);
};
+ setImageCompression = (imageCompression: ImageCompressionOptions) => {
+ this.set({ imageCompression });
+ Config.set("imageCompression", imageCompression);
+ };
+
setDesktopIntegration = async (settings: DesktopIntegration) => {
const { desktopIntegrationSettings } = this.get();
diff --git a/apps/web/src/utils/image-compressor.ts b/apps/web/src/utils/image-compressor.ts
index 2a6b26b474..c01164799b 100644
--- a/apps/web/src/utils/image-compressor.ts
+++ b/apps/web/src/utils/image-compressor.ts
@@ -17,6 +17,18 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see .
*/
+export class FileWithURI extends File {
+ uri: string;
+ constructor(
+ fileBits: BlobPart[],
+ fileName: string,
+ options?: FilePropertyBag
+ ) {
+ super(fileBits, fileName, options);
+ this.uri = URL.createObjectURL(this);
+ }
+}
+
type DeriveDimension = (naturalWidth: number, naturalHeight: number) => number;
interface CompressorOptions {
diff --git a/packages/intl/locale/en.po b/packages/intl/locale/en.po
index 6923e0191d..6b71620e5b 100644
--- a/packages/intl/locale/en.po
+++ b/packages/intl/locale/en.po
@@ -17,7 +17,7 @@ msgstr ""
msgid "— not just the"
msgstr "— not just the"
-#: src/strings.ts:2383
+#: src/strings.ts:2387
msgid "\"Notebook > Notes\""
msgstr "\"Notebook > Notes\""
@@ -41,23 +41,23 @@ msgstr "{0} downloaded"
msgid "{0} Highlights 🎉"
msgstr "{0} Highlights 🎉"
-#: src/strings.ts:1728
+#: src/strings.ts:1732
msgid "{count, plural, one {# error occured} other {# errors occured}}"
msgstr "{count, plural, one {# error occured} other {# errors occured}}"
-#: src/strings.ts:1734
+#: src/strings.ts:1738
msgid "{count, plural, one {# file ready for import} other {# files ready for import}}"
msgstr "{count, plural, one {# file ready for import} other {# files ready for import}}"
-#: src/strings.ts:1689
+#: src/strings.ts:1693
msgid "{count, plural, one {# file} other {# files}}"
msgstr "{count, plural, one {# file} other {# files}}"
-#: src/strings.ts:1553
+#: src/strings.ts:1557
msgid "{count, plural, one {1 hour} other {# hours}}"
msgstr "{count, plural, one {1 hour} other {# hours}}"
-#: src/strings.ts:1548
+#: src/strings.ts:1552
msgid "{count, plural, one {1 minute} other {# minutes}}"
msgstr "{count, plural, one {1 minute} other {# minutes}}"
@@ -252,7 +252,7 @@ msgstr "{count, plural, one {Item restored} other {# items restored}}"
msgid "{count, plural, one {Item unpublished} other {# items unpublished}}"
msgstr "{count, plural, one {Item unpublished} other {# items unpublished}}"
-#: src/strings.ts:2400
+#: src/strings.ts:2404
msgid "{count, plural, one {Move all notes in this notebook to trash} other {Move all notes in these notebooks to trash}}"
msgstr "{count, plural, one {Move all notes in this notebook to trash} other {Move all notes in these notebooks to trash}}"
@@ -449,7 +449,7 @@ msgstr "{count, plural, one {Unpublish item} other {Unpublish # items}}"
msgid "{count, plural, one {Unpublish note} other {Unpublish # notes}}"
msgstr "{count, plural, one {Unpublish note} other {Unpublish # notes}}"
-#: src/strings.ts:1539
+#: src/strings.ts:1543
msgid "{days, plural, one {1 day} other {# days}}"
msgstr "{days, plural, one {1 day} other {# days}}"
@@ -489,19 +489,19 @@ msgstr "{mode, select, day {Daily} week {Weekly} month {Monthly} year {Yearly} o
msgid "{mode, select, repeat {Repeat} once {Once} permanent {Permanent} other {Unknown mode}}"
msgstr "{mode, select, repeat {Repeat} once {Once} permanent {Permanent} other {Unknown mode}}"
-#: src/strings.ts:1951
+#: src/strings.ts:1955
msgid "{n} {added, plural, one {added to 1 notebook} other {added to # notebooks}} and {removed, plural, one {removed from 1 notebook} other {removed from # notebooks}}."
msgstr "{n} {added, plural, one {added to 1 notebook} other {added to # notebooks}} and {removed, plural, one {removed from 1 notebook} other {removed from # notebooks}}."
-#: src/strings.ts:1946
+#: src/strings.ts:1950
msgid "{n} {added, plural, one {added to 1 notebook} other {added to # notebooks}}."
msgstr "{n} {added, plural, one {added to 1 notebook} other {added to # notebooks}}."
-#: src/strings.ts:1941
+#: src/strings.ts:1945
msgid "{n} {removed, plural, one {removed from 1 notebook} other {removed from # notebooks}}."
msgstr "{n} {removed, plural, one {removed from 1 notebook} other {removed from # notebooks}}."
-#: src/strings.ts:1936
+#: src/strings.ts:1940
msgid "{notes, plural, one {1 note} other {# notes}}"
msgstr "{notes, plural, one {1 note} other {# notes}}"
@@ -509,7 +509,7 @@ msgstr "{notes, plural, one {1 note} other {# notes}}"
msgid "{notes, plural, one {Export note} other {Export # notes}}"
msgstr "{notes, plural, one {Export note} other {Export # notes}}"
-#: src/strings.ts:1681
+#: src/strings.ts:1685
msgid "{percentage}% updating..."
msgstr "{percentage}% updating..."
@@ -517,11 +517,11 @@ msgstr "{percentage}% updating..."
msgid "{platform, select, android {{name} saved to selected path} other {{name} saved to File Manager/Notesnook/downloads}}"
msgstr "{platform, select, android {{name} saved to selected path} other {{name} saved to File Manager/Notesnook/downloads}}"
-#: src/strings.ts:1314
+#: src/strings.ts:1318
msgid "{platform, select, android {Backup file saved in \"Notesnook backups\" folder on your phone.} other {Backup file is saved in File Manager/Notesnook folder}}"
msgstr "{platform, select, android {Backup file saved in \"Notesnook backups\" folder on your phone.} other {Backup file is saved in File Manager/Notesnook folder}}"
-#: src/strings.ts:2331
+#: src/strings.ts:2335
msgid "{selected} selected"
msgstr "{selected} selected"
@@ -541,27 +541,27 @@ msgstr "{type, select, upload {Uploading} download {Downloading} sync {Syncing}
msgid "{type} does not match"
msgstr "{type} does not match"
-#: src/strings.ts:1574
+#: src/strings.ts:1578
msgid "{words, plural, one {# word} other {# words}}"
msgstr "{words, plural, one {# word} other {# words}}"
-#: src/strings.ts:1637
+#: src/strings.ts:1641
msgid "{words, plural, other {# selected}}"
msgstr "{words, plural, other {# selected}}"
-#: src/strings.ts:1765
+#: src/strings.ts:1769
msgid "#notesnook"
msgstr "#notesnook"
-#: src/strings.ts:1558
+#: src/strings.ts:1562
msgid "12-hour"
msgstr "12-hour"
-#: src/strings.ts:1559
+#: src/strings.ts:1563
msgid "24-hour"
msgstr "24-hour"
-#: src/strings.ts:1879
+#: src/strings.ts:1883
msgid "2FA code is required()"
msgstr "2FA code is required()"
@@ -569,11 +569,11 @@ msgstr "2FA code is required()"
msgid "2FA code sent via {method}"
msgstr "2FA code sent via {method}"
-#: src/strings.ts:1820
+#: src/strings.ts:1824
msgid "6 digit code"
msgstr "6 digit code"
-#: src/strings.ts:1408
+#: src/strings.ts:1412
msgid "A notebook can have unlimited topics with unlimited notes."
msgstr "A notebook can have unlimited topics with unlimited notes."
@@ -589,7 +589,7 @@ msgstr "A vault stores your notes in a encrypted storage."
msgid "Abc"
msgstr "Abc"
-#: src/strings.ts:1269
+#: src/strings.ts:1273
msgid "About"
msgstr "About"
@@ -597,15 +597,15 @@ msgstr "About"
msgid "account"
msgstr "account"
-#: src/strings.ts:1822
+#: src/strings.ts:1826
msgid "Account password"
msgstr "Account password"
-#: src/strings.ts:2012
+#: src/strings.ts:2016
msgid "Activate"
msgstr "Activate"
-#: src/strings.ts:1798
+#: src/strings.ts:1802
msgid "Activating trial"
msgstr "Activating trial"
@@ -617,11 +617,11 @@ msgstr "Add"
msgid "Add 2FA fallback method"
msgstr "Add 2FA fallback method"
-#: src/strings.ts:1484
+#: src/strings.ts:1488
msgid "Add a short note"
msgstr "Add a short note"
-#: src/strings.ts:1575
+#: src/strings.ts:1579
msgid "Add a tag"
msgstr "Add a tag"
@@ -657,7 +657,7 @@ msgstr "Add tags"
msgid "Add tags to multiple notes at once"
msgstr "Add tags to multiple notes at once"
-#: src/strings.ts:2219
+#: src/strings.ts:2223
msgid "Add to dictionary"
msgstr "Add to dictionary"
@@ -669,23 +669,23 @@ msgstr "Add your first note"
msgid "Add your first notebook"
msgstr "Add your first notebook"
-#: src/strings.ts:2146
+#: src/strings.ts:2150
msgid "Advanced"
msgstr "Advanced"
-#: src/strings.ts:1701
+#: src/strings.ts:1705
msgid "After scanning the QR code image, the app will display a code that you can enter below."
msgstr "After scanning the QR code image, the app will display a code that you can enter below."
-#: src/strings.ts:2282
+#: src/strings.ts:2286
msgid "Align left"
msgstr "Align left"
-#: src/strings.ts:2283
+#: src/strings.ts:2287
msgid "Align right"
msgstr "Align right"
-#: src/strings.ts:2252
+#: src/strings.ts:2256
msgid "Alignment"
msgstr "Alignment"
@@ -697,7 +697,7 @@ msgstr "All"
msgid "All attachments are end-to-end encrypted."
msgstr "All attachments are end-to-end encrypted."
-#: src/strings.ts:2377
+#: src/strings.ts:2381
msgid "All cached attachments have been cleared."
msgstr "All cached attachments have been cleared."
@@ -709,7 +709,7 @@ msgstr "All fields are required"
msgid "All files"
msgstr "All files"
-#: src/strings.ts:1154
+#: src/strings.ts:1158
msgid "All locked notes will be re-encrypted with the new password."
msgstr "All locked notes will be re-encrypted with the new password."
@@ -717,15 +717,15 @@ msgstr "All locked notes will be re-encrypted with the new password."
msgid "All logs are local only and are not sent to any server. You can share the logs from here with us if you face an issue to help us find the root cause."
msgstr "All logs are local only and are not sent to any server. You can share the logs from here with us if you face an issue to help us find the root cause."
-#: src/strings.ts:1612
+#: src/strings.ts:1616
msgid "All server urls are required."
msgstr "All server urls are required."
-#: src/strings.ts:1881
+#: src/strings.ts:1885
msgid "All the data in your account will be overwritten with the data in the backup file. There is no way to reverse this action."
msgstr "All the data in your account will be overwritten with the data in the backup file. There is no way to reverse this action."
-#: src/strings.ts:2126
+#: src/strings.ts:2130
msgid "All the source code for Notesnook is available & open for everyone on GitHub."
msgstr "All the source code for Notesnook is available & open for everyone on GitHub."
@@ -733,15 +733,15 @@ msgstr "All the source code for Notesnook is available & open for everyone on Gi
msgid "All tools are grouped"
msgstr "All tools are grouped"
-#: src/strings.ts:1298
+#: src/strings.ts:1302
msgid "All tools in the collapsed section will be removed"
msgstr "All tools in the collapsed section will be removed"
-#: src/strings.ts:1293
+#: src/strings.ts:1297
msgid "All tools in this group will be removed from the toolbar."
msgstr "All tools in this group will be removed from the toolbar."
-#: src/strings.ts:1323
+#: src/strings.ts:1327
msgid "All your backups are stored in 'Phone Storage/Notesnook/backups/' folder"
msgstr "All your backups are stored in 'Phone Storage/Notesnook/backups/' folder"
@@ -753,7 +753,7 @@ msgstr "All your data will be removed permanently. Make sure you have saved back
msgid "Already have an account?"
msgstr "Already have an account?"
-#: src/strings.ts:2196
+#: src/strings.ts:2200
msgid "Amount"
msgstr "Amount"
@@ -765,11 +765,11 @@ msgstr "An error occurred while migrating your data. You can logout of your acco
msgid "and"
msgstr "and"
-#: src/strings.ts:1766
+#: src/strings.ts:1770
msgid "and get a chance to win free promo codes."
msgstr "and get a chance to win free promo codes."
-#: src/strings.ts:1374
+#: src/strings.ts:1378
msgid "and we will manually confirm your account."
msgstr "and we will manually confirm your account."
@@ -777,25 +777,25 @@ msgstr "and we will manually confirm your account."
msgid "App data has been cleared. Kindly relaunch the app to login again."
msgstr "App data has been cleared. Kindly relaunch the app to login again."
-#: src/strings.ts:1163
-#: src/strings.ts:1668
+#: src/strings.ts:1167
+#: src/strings.ts:1672
msgid "App lock"
msgstr "App lock"
#: src/strings.ts:770
-#: src/strings.ts:1189
+#: src/strings.ts:1193
msgid "App lock disabled"
msgstr "App lock disabled"
-#: src/strings.ts:1169
+#: src/strings.ts:1173
msgid "App lock timeout"
msgstr "App lock timeout"
-#: src/strings.ts:1277
+#: src/strings.ts:1281
msgid "App version"
msgstr "App version"
-#: src/strings.ts:1749
+#: src/strings.ts:1753
msgid "App will reload in {sec} seconds"
msgstr "App will reload in {sec} seconds"
@@ -815,11 +815,11 @@ msgstr "Applied as light theme"
msgid "Apply changes"
msgstr "Apply changes"
-#: src/strings.ts:2019
+#: src/strings.ts:2023
msgid "Applying changes"
msgstr "Applying changes"
-#: src/strings.ts:1422
+#: src/strings.ts:1426
msgid "Are you scrolling a lot to find a specific note? Pin it to the top from Note properties."
msgstr "Are you scrolling a lot to find a specific note? Pin it to the top from Note properties."
@@ -827,11 +827,11 @@ msgstr "Are you scrolling a lot to find a specific note? Pin it to the top from
msgid "Are you sure you want to clear all logs from {key}?"
msgstr "Are you sure you want to clear all logs from {key}?"
-#: src/strings.ts:1301
+#: src/strings.ts:1305
msgid "Are you sure you want to clear trash?"
msgstr "Are you sure you want to clear trash?"
-#: src/strings.ts:1517
+#: src/strings.ts:1521
msgid "Are you sure you want to logout and clear all data stored on THIS DEVICE?"
msgstr "Are you sure you want to logout and clear all data stored on THIS DEVICE?"
@@ -847,11 +847,15 @@ 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:1300
+#: src/strings.ts:1304
msgid "Are you sure?"
msgstr "Are you sure?"
-#: src/strings.ts:2008
+#: src/strings.ts:1116
+msgid "Ask every time"
+msgstr "Ask every time"
+
+#: src/strings.ts:2012
msgid "Assign color"
msgstr "Assign color"
@@ -863,7 +867,7 @@ msgstr "Assign to..."
msgid "Atleast 8 characters required"
msgstr "Atleast 8 characters required"
-#: src/strings.ts:2320
+#: src/strings.ts:2324
msgid "Attach image from URL"
msgstr "Attach image from URL"
@@ -872,19 +876,19 @@ msgid "attachment"
msgstr "attachment"
#: src/strings.ts:300
-#: src/strings.ts:2317
+#: src/strings.ts:2321
msgid "Attachment"
msgstr "Attachment"
-#: src/strings.ts:1910
+#: src/strings.ts:1914
msgid "Attachment preview failed"
msgstr "Attachment preview failed"
-#: src/strings.ts:2370
+#: src/strings.ts:2374
msgid "Attachment recheck cancelled"
msgstr "Attachment recheck cancelled"
-#: src/strings.ts:2288
+#: src/strings.ts:2292
msgid "Attachment settings"
msgstr "Attachment settings"
@@ -897,11 +901,11 @@ msgstr "attachments"
msgid "Attachments"
msgstr "Attachments"
-#: src/strings.ts:1859
+#: src/strings.ts:1863
msgid "Attachments cache cleared!"
msgstr "Attachments cache cleared!"
-#: src/strings.ts:2372
+#: src/strings.ts:2376
msgid "Attachments recheck complete"
msgstr "Attachments recheck complete"
@@ -909,76 +913,76 @@ msgstr "Attachments recheck complete"
msgid "Audios"
msgstr "Audios"
-#: src/strings.ts:1601
+#: src/strings.ts:1605
msgid "Auth server"
msgstr "Auth server"
-#: src/strings.ts:1770
+#: src/strings.ts:1774
msgid "Authenticated as {email}"
msgstr "Authenticated as {email}"
-#: src/strings.ts:1873
+#: src/strings.ts:1877
msgid "Authenticating user"
msgstr "Authenticating user"
-#: src/strings.ts:2109
+#: src/strings.ts:2113
msgid "Authentication"
msgstr "Authentication"
-#: src/strings.ts:1705
+#: src/strings.ts:1709
msgid "authentication app"
msgstr "authentication app"
-#: src/strings.ts:1328
+#: src/strings.ts:1332
msgid "Authentication cancelled by user"
msgstr "Authentication cancelled by user"
-#: src/strings.ts:1329
+#: src/strings.ts:1333
msgid "Authentication failed"
msgstr "Authentication failed"
-#: src/strings.ts:2072
+#: src/strings.ts:2076
msgid "Auto"
msgstr "Auto"
-#: src/strings.ts:1636
+#: src/strings.ts:1640
msgid "Auto save: off"
msgstr "Auto save: off"
-#: src/strings.ts:2086
+#: src/strings.ts:2090
msgid "Auto start on system startup"
msgstr "Auto start on system startup"
-#: src/strings.ts:1198
-#: src/strings.ts:1664
+#: src/strings.ts:1202
+#: src/strings.ts:1668
msgid "Automatic backups"
msgstr "Automatic backups"
-#: src/strings.ts:1342
+#: src/strings.ts:1346
msgid "Automatic backups are off"
msgstr "Automatic backups are off"
-#: src/strings.ts:1980
+#: src/strings.ts:1984
msgid "Automatic backups disabled"
msgstr "Automatic backups disabled"
-#: src/strings.ts:1201
+#: src/strings.ts:1205
msgid "Automatic backups with attachments"
msgstr "Automatic backups with attachments"
-#: src/strings.ts:2082
+#: src/strings.ts:2086
msgid "Automatic updates"
msgstr "Automatic updates"
-#: src/strings.ts:1120
+#: src/strings.ts:1124
msgid "Automatically clear trash after a certain period of time"
msgstr "Automatically clear trash after a certain period of time"
-#: src/strings.ts:2084
+#: src/strings.ts:2088
msgid "Automatically download & install updates in the background without prompting first."
msgstr "Automatically download & install updates in the background without prompting first."
-#: src/strings.ts:1171
+#: src/strings.ts:1175
msgid "Automatically lock the app after a certain period"
msgstr "Automatically lock the app after a certain period"
@@ -986,15 +990,15 @@ msgstr "Automatically lock the app after a certain period"
msgid "Automatically switch between light and dark themes based on your system settings"
msgstr "Automatically switch between light and dark themes based on your system settings"
-#: src/strings.ts:2129
+#: src/strings.ts:2133
msgid "Available on iOS"
msgstr "Available on iOS"
-#: src/strings.ts:2130
+#: src/strings.ts:2134
msgid "Available on iOS & Android"
msgstr "Available on iOS & Android"
-#: src/strings.ts:2275
+#: src/strings.ts:2279
msgid "Background color"
msgstr "Background color"
@@ -1002,31 +1006,31 @@ msgstr "Background color"
msgid "Background sync (experimental)"
msgstr "Background sync (experimental)"
-#: src/strings.ts:2078
+#: src/strings.ts:2082
msgid "Backup"
msgstr "Backup"
-#: src/strings.ts:2116
+#: src/strings.ts:2120
msgid "Backup & export"
msgstr "Backup & export"
-#: src/strings.ts:1190
+#: src/strings.ts:1194
msgid "Backup & restore"
msgstr "Backup & restore"
-#: src/strings.ts:1312
+#: src/strings.ts:1316
msgid "Backup complete"
msgstr "Backup complete"
-#: src/strings.ts:1536
+#: src/strings.ts:1540
msgid "Backup directory not selected"
msgstr "Backup directory not selected"
-#: src/strings.ts:1213
+#: src/strings.ts:1217
msgid "Backup encryption"
msgstr "Backup encryption"
-#: src/strings.ts:1833
+#: src/strings.ts:1837
msgid "Backup files have .nnbackup extension"
msgstr "Backup files have .nnbackup extension"
@@ -1034,15 +1038,15 @@ msgstr "Backup files have .nnbackup extension"
msgid "Backup is encrypted"
msgstr "Backup is encrypted"
-#: src/strings.ts:1589
+#: src/strings.ts:1593
msgid "Backup is encrypted, decrypting..."
msgstr "Backup is encrypted, decrypting..."
-#: src/strings.ts:1192
+#: src/strings.ts:1196
msgid "Backup now"
msgstr "Backup now"
-#: src/strings.ts:1193
+#: src/strings.ts:1197
msgid "Backup now with attachments"
msgstr "Backup now with attachments"
@@ -1050,15 +1054,15 @@ msgstr "Backup now with attachments"
msgid "Backup restored"
msgstr "Backup restored"
-#: src/strings.ts:1894
+#: src/strings.ts:1898
msgid "Backup saved at {path}"
msgstr "Backup saved at {path}"
-#: src/strings.ts:1324
+#: src/strings.ts:1328
msgid "Backup successful"
msgstr "Backup successful"
-#: src/strings.ts:2079
+#: src/strings.ts:2083
msgid "Backup with attachments"
msgstr "Backup with attachments"
@@ -1070,7 +1074,7 @@ msgstr "Backups"
msgid "Basic"
msgstr "Basic"
-#: src/strings.ts:1768
+#: src/strings.ts:1772
msgid "Because where's the fun in nookin' alone?"
msgstr "Because where's the fun in nookin' alone?"
@@ -1078,7 +1082,7 @@ msgstr "Because where's the fun in nookin' alone?"
msgid "Behavior"
msgstr "Behavior"
-#: src/strings.ts:2111
+#: src/strings.ts:2115
msgid "Behaviour"
msgstr "Behaviour"
@@ -1086,15 +1090,15 @@ msgstr "Behaviour"
msgid "BETA"
msgstr "BETA"
-#: src/strings.ts:2233
+#: src/strings.ts:2237
msgid "Bi-directional note link"
msgstr "Bi-directional note link"
-#: src/strings.ts:2177
+#: src/strings.ts:2181
msgid "Billing history"
msgstr "Billing history"
-#: src/strings.ts:1157
+#: src/strings.ts:1161
msgid "Biometric unlocking"
msgstr "Biometric unlocking"
@@ -1106,27 +1110,27 @@ msgstr "Biometric unlocking disabled"
msgid "Biometric unlocking enabled"
msgstr "Biometric unlocking enabled"
-#: src/strings.ts:1326
+#: src/strings.ts:1330
msgid "Biometrics authentication failed. Please try again."
msgstr "Biometrics authentication failed. Please try again."
-#: src/strings.ts:1166
+#: src/strings.ts:1170
msgid "Biometrics not enrolled"
msgstr "Biometrics not enrolled"
-#: src/strings.ts:2229
+#: src/strings.ts:2233
msgid "Bold"
msgstr "Bold"
-#: src/strings.ts:2382
+#: src/strings.ts:2386
msgid "Boost your productivity with Notebooks and organize your notes."
msgstr "Boost your productivity with Notebooks and organize your notes."
-#: src/strings.ts:1784
+#: src/strings.ts:1788
msgid "Browse"
msgstr "Browse"
-#: src/strings.ts:2246
+#: src/strings.ts:2250
msgid "Bullet list"
msgstr "Bullet list"
@@ -1138,7 +1142,7 @@ msgstr "By"
msgid "By signing up, you agree to our"
msgstr "By signing up, you agree to our"
-#: src/strings.ts:2308
+#: src/strings.ts:2312
msgid "Callout"
msgstr "Callout"
@@ -1154,7 +1158,7 @@ msgstr "Cancel download"
msgid "Cancel login"
msgstr "Cancel login"
-#: src/strings.ts:1801
+#: src/strings.ts:1805
msgid "Cancel subscription"
msgstr "Cancel subscription"
@@ -1162,24 +1166,24 @@ msgstr "Cancel subscription"
msgid "Cancel upload"
msgstr "Cancel upload"
-#: src/strings.ts:2274
+#: src/strings.ts:2278
msgid "Cell background color"
msgstr "Cell background color"
-#: src/strings.ts:2276
+#: src/strings.ts:2280
msgid "Cell border color"
msgstr "Cell border color"
-#: src/strings.ts:2278
-#: src/strings.ts:2279
+#: src/strings.ts:2282
+#: src/strings.ts:2283
msgid "Cell border width"
msgstr "Cell border width"
-#: src/strings.ts:2260
+#: src/strings.ts:2264
msgid "Cell properties"
msgstr "Cell properties"
-#: src/strings.ts:2277
+#: src/strings.ts:2281
msgid "Cell text color"
msgstr "Cell text color"
@@ -1195,15 +1199,15 @@ msgstr "Change 2FA fallback method"
msgid "Change 2FA method"
msgstr "Change 2FA method"
-#: src/strings.ts:1178
+#: src/strings.ts:1182
msgid "Change app lock password"
msgstr "Change app lock password"
-#: src/strings.ts:1177
+#: src/strings.ts:1181
msgid "Change app lock pin"
msgstr "Change app lock pin"
-#: src/strings.ts:1212
+#: src/strings.ts:1216
msgid "Change backup directory"
msgstr "Change backup directory"
@@ -1215,11 +1219,11 @@ msgstr "Change email address"
msgid "Change how the app behaves in different situations"
msgstr "Change how the app behaves in different situations"
-#: src/strings.ts:2326
+#: src/strings.ts:2330
msgid "Change language"
msgstr "Change language"
-#: src/strings.ts:1233
+#: src/strings.ts:1237
msgid "Change notification sound"
msgstr "Change notification sound"
@@ -1227,19 +1231,19 @@ msgstr "Change notification sound"
msgid "Change password"
msgstr "Change password"
-#: src/strings.ts:1793
+#: src/strings.ts:1797
msgid "Change profile picture"
msgstr "Change profile picture"
-#: src/strings.ts:2155
+#: src/strings.ts:2159
msgid "Change proxy"
msgstr "Change proxy"
-#: src/strings.ts:2176
+#: src/strings.ts:2180
msgid "Change the payment method you used to purchase this subscription."
msgstr "Change the payment method you used to purchase this subscription."
-#: src/strings.ts:1235
+#: src/strings.ts:1239
msgid "Change the sound that plays when you receive a notification"
msgstr "Change the sound that plays when you receive a notification"
@@ -1263,15 +1267,15 @@ msgstr "Changes from other devices won't be updated in the editor in real-time."
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:1276
+#: src/strings.ts:1280
msgid "Check for new version of Notesnook"
msgstr "Check for new version of Notesnook"
-#: src/strings.ts:1275
+#: src/strings.ts:1279
msgid "Check for updates"
msgstr "Check for updates"
-#: src/strings.ts:2128
+#: src/strings.ts:2132
msgid "Check roadmap"
msgstr "Check roadmap"
@@ -1279,7 +1283,7 @@ msgstr "Check roadmap"
msgid "Check your spam folder if you haven't received an email yet."
msgstr "Check your spam folder if you haven't received an email yet."
-#: src/strings.ts:2374
+#: src/strings.ts:2378
msgid "Checking all attachments"
msgstr "Checking all attachments"
@@ -1287,31 +1291,31 @@ msgstr "Checking all attachments"
msgid "Checking for new version"
msgstr "Checking for new version"
-#: src/strings.ts:1680
+#: src/strings.ts:1684
msgid "Checking for updates"
msgstr "Checking for updates"
-#: src/strings.ts:2373
+#: src/strings.ts:2377
msgid "Checking note attachments"
msgstr "Checking note attachments"
-#: src/strings.ts:2248
+#: src/strings.ts:2252
msgid "Checklist"
msgstr "Checklist"
-#: src/strings.ts:2303
+#: src/strings.ts:2307
msgid "Choose a block to insert"
msgstr "Choose a block to insert"
-#: src/strings.ts:1772
+#: src/strings.ts:1776
msgid "Choose a recovery method"
msgstr "Choose a recovery method"
-#: src/strings.ts:2077
+#: src/strings.ts:2081
msgid "Choose backup format"
msgstr "Choose backup format"
-#: src/strings.ts:2339
+#: src/strings.ts:2343
msgid "Choose custom color"
msgstr "Choose custom color"
@@ -1319,15 +1323,15 @@ msgstr "Choose custom color"
msgid "Choose from pre-built themes or create your own"
msgstr "Choose from pre-built themes or create your own"
-#: src/strings.ts:1115
+#: src/strings.ts:1119
msgid "Choose how dates are displayed in the app"
msgstr "Choose how dates are displayed in the app"
-#: src/strings.ts:1138
+#: src/strings.ts:1142
msgid "Choose how the new note titles are formatted"
msgstr "Choose how the new note titles are formatted"
-#: src/strings.ts:1117
+#: src/strings.ts:1121
msgid "Choose how time is displayed in the app"
msgstr "Choose how time is displayed in the app"
@@ -1335,15 +1339,15 @@ 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:1208
+#: src/strings.ts:1212
msgid "Choose where to save your backups"
msgstr "Choose where to save your backups"
-#: src/strings.ts:2037
+#: src/strings.ts:2041
msgid "Choose your style"
msgstr "Choose your style"
-#: src/strings.ts:1592
+#: src/strings.ts:1596
msgid "cleaningUp"
msgstr "cleaningUp"
@@ -1351,31 +1355,31 @@ msgstr "cleaningUp"
msgid "Clear"
msgstr "Clear"
-#: src/strings.ts:1845
+#: src/strings.ts:1849
msgid "Clear all cached attachments. Current cache size: {cacheSize}"
msgstr "Clear all cached attachments. Current cache size: {cacheSize}"
-#: src/strings.ts:2242
+#: src/strings.ts:2246
msgid "Clear all formatting"
msgstr "Clear all formatting"
-#: src/strings.ts:1846
+#: src/strings.ts:1850
msgid "Clear attachments cache?"
msgstr "Clear attachments cache?"
-#: src/strings.ts:1843
+#: src/strings.ts:1847
msgid "Clear cache"
msgstr "Clear cache"
-#: src/strings.ts:2337
+#: src/strings.ts:2341
msgid "Clear completed tasks"
msgstr "Clear completed tasks"
-#: src/strings.ts:1780
+#: src/strings.ts:1784
msgid "Clear data & reset account"
msgstr "Clear data & reset account"
-#: src/strings.ts:1121
+#: src/strings.ts:1125
msgid "Clear default notebook"
msgstr "Clear default notebook"
@@ -1383,15 +1387,15 @@ msgstr "Clear default notebook"
msgid "Clear logs"
msgstr "Clear logs"
-#: src/strings.ts:2171
+#: src/strings.ts:2175
msgid "clear sessions"
msgstr "clear sessions"
-#: src/strings.ts:1299
+#: src/strings.ts:1303
msgid "Clear trash"
msgstr "Clear trash"
-#: src/strings.ts:1118
+#: src/strings.ts:1122
msgid "Clear trash interval"
msgstr "Clear trash interval"
@@ -1399,7 +1403,7 @@ msgstr "Clear trash interval"
msgid "Clear vault"
msgstr "Clear vault"
-#: src/strings.ts:1848
+#: src/strings.ts:1852
msgid ""
"Clearing attachments cache will perform the following actions:\n"
"- Downloaded images & files: **cleared**\n"
@@ -1421,51 +1425,51 @@ msgstr ""
msgid "Click to deselect"
msgstr "Click to deselect"
-#: src/strings.ts:1842
+#: src/strings.ts:1846
msgid "Click to preview"
msgstr "Click to preview"
-#: src/strings.ts:1747
+#: src/strings.ts:1751
msgid "Click to remove"
msgstr "Click to remove"
-#: src/strings.ts:2365
+#: src/strings.ts:2369
msgid "Click to reset {title}"
msgstr "Click to reset {title}"
-#: src/strings.ts:1358
+#: src/strings.ts:1362
msgid "Close"
msgstr "Close"
-#: src/strings.ts:1994
+#: src/strings.ts:1998
msgid "Close all"
msgstr "Close all"
-#: src/strings.ts:1991
+#: src/strings.ts:1995
msgid "Close others"
msgstr "Close others"
-#: src/strings.ts:2095
+#: src/strings.ts:2099
msgid "Close to system tray"
msgstr "Close to system tray"
-#: src/strings.ts:1993
+#: src/strings.ts:1997
msgid "Close to the left"
msgstr "Close to the left"
-#: src/strings.ts:1992
+#: src/strings.ts:1996
msgid "Close to the right"
msgstr "Close to the right"
-#: src/strings.ts:2240
+#: src/strings.ts:2244
msgid "Code"
msgstr "Code"
-#: src/strings.ts:2305
+#: src/strings.ts:2309
msgid "Code block"
msgstr "Code block"
-#: src/strings.ts:2241
+#: src/strings.ts:2245
msgid "Code remove"
msgstr "Code remove"
@@ -1478,7 +1482,7 @@ msgid "color"
msgstr "color"
#: src/strings.ts:299
-#: src/strings.ts:1819
+#: src/strings.ts:1823
msgid "Color"
msgstr "Color"
@@ -1486,11 +1490,11 @@ msgstr "Color"
msgid "Color #{color} already exists"
msgstr "Color #{color} already exists"
-#: src/strings.ts:2070
+#: src/strings.ts:2074
msgid "Color scheme"
msgstr "Color scheme"
-#: src/strings.ts:1466
+#: src/strings.ts:1470
msgid "Color title"
msgstr "Color title"
@@ -1502,11 +1506,11 @@ msgstr "colors"
msgid "Colors"
msgstr "Colors"
-#: src/strings.ts:2258
+#: src/strings.ts:2262
msgid "Column properties"
msgstr "Column properties"
-#: src/strings.ts:1251
+#: src/strings.ts:1255
msgid "Community"
msgstr "Community"
@@ -1518,15 +1522,19 @@ msgstr "Completed"
msgid "Compress"
msgstr "Compress"
+#: src/strings.ts:1115
+msgid "Compress images before uploading"
+msgstr "Compress images before uploading"
+
#: src/strings.ts:144
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:2224
+#: src/strings.ts:2228
msgid "Configure"
msgstr "Configure"
-#: src/strings.ts:2379
+#: src/strings.ts:2383
msgid "Configure server URLs for Notesnook"
msgstr "Configure server URLs for Notesnook"
@@ -1538,31 +1546,31 @@ msgstr "Confirm email"
msgid "Confirm email to publish note"
msgstr "Confirm email to publish note"
-#: src/strings.ts:1465
+#: src/strings.ts:1469
msgid "Confirm new password"
msgstr "Confirm new password"
-#: src/strings.ts:1460
+#: src/strings.ts:1464
msgid "Confirm password"
msgstr "Confirm password"
-#: src/strings.ts:1464
+#: src/strings.ts:1468
msgid "Confirm pin"
msgstr "Confirm pin"
-#: src/strings.ts:2055
+#: src/strings.ts:2059
msgid "Congratulations!"
msgstr "Congratulations!"
-#: src/strings.ts:1611
+#: src/strings.ts:1615
msgid "Connected to all servers sucessfully."
msgstr "Connected to all servers sucessfully."
-#: src/strings.ts:1646
+#: src/strings.ts:1650
msgid "Contact support"
msgstr "Contact support"
-#: src/strings.ts:1242
+#: src/strings.ts:1246
msgid "Contact us directly via support@streetwriters.co for any help or support"
msgstr "Contact us directly via support@streetwriters.co for any help or support"
@@ -1570,15 +1578,15 @@ msgstr "Contact us directly via support@streetwriters.co for any help or support
msgid "Continue"
msgstr "Continue"
-#: src/strings.ts:1144
+#: src/strings.ts:1148
msgid "Contribute towards a better Notesnook. All tracking information is anonymous."
msgstr "Contribute towards a better Notesnook. All tracking information is anonymous."
-#: src/strings.ts:1228
+#: src/strings.ts:1232
msgid "Controls whether this device should receive reminder notifications."
msgstr "Controls whether this device should receive reminder notifications."
-#: src/strings.ts:1965
+#: src/strings.ts:1969
msgid "Copied"
msgstr "Copied"
@@ -1586,7 +1594,7 @@ msgstr "Copied"
msgid "Copy"
msgstr "Copy"
-#: src/strings.ts:2011
+#: src/strings.ts:2015
msgid "Copy as{0}"
msgstr "Copy as{0}"
@@ -1594,7 +1602,7 @@ msgstr "Copy as{0}"
msgid "Copy codes"
msgstr "Copy codes"
-#: src/strings.ts:2222
+#: src/strings.ts:2226
msgid "Copy image"
msgstr "Copy image"
@@ -1602,7 +1610,7 @@ msgstr "Copy image"
msgid "Copy link"
msgstr "Copy link"
-#: src/strings.ts:2221
+#: src/strings.ts:2225
msgid "Copy link text"
msgstr "Copy link text"
@@ -1614,27 +1622,27 @@ msgstr "Copy note"
msgid "Copy to clipboard"
msgstr "Copy to clipboard"
-#: src/strings.ts:1594
+#: src/strings.ts:1598
msgid "Copying backup files to cache"
msgstr "Copying backup files to cache"
-#: src/strings.ts:1148
+#: src/strings.ts:1152
msgid "CORS bypass"
msgstr "CORS bypass"
-#: src/strings.ts:1961
+#: src/strings.ts:1965
msgid "Could not activate trial. Please try again later."
msgstr "Could not activate trial. Please try again later."
-#: src/strings.ts:1979
+#: src/strings.ts:1983
msgid "Could not clear trash."
msgstr "Could not clear trash."
-#: src/strings.ts:1614
+#: src/strings.ts:1618
msgid "Could not connect to {server}."
msgstr "Could not connect to {server}."
-#: src/strings.ts:1926
+#: src/strings.ts:1930
msgid "Could not convert note to {format}."
msgstr "Could not convert note to {format}."
@@ -1666,7 +1674,7 @@ msgstr "Create a note first"
msgid "Create a shortcut"
msgstr "Create a shortcut"
-#: src/strings.ts:1824
+#: src/strings.ts:1828
msgid "Create account"
msgstr "Create account"
@@ -1674,19 +1682,19 @@ msgstr "Create account"
msgid "Create link"
msgstr "Create link"
-#: src/strings.ts:1450
+#: src/strings.ts:1454
msgid "Create shortcut of this notebook in side menu"
msgstr "Create shortcut of this notebook in side menu"
-#: src/strings.ts:1364
+#: src/strings.ts:1368
msgid "Create unlimited notebooks with Notesnook Pro"
msgstr "Create unlimited notebooks with Notesnook Pro"
-#: src/strings.ts:1363
+#: src/strings.ts:1367
msgid "Create unlimited tags with Notesnook Pro"
msgstr "Create unlimited tags with Notesnook Pro"
-#: src/strings.ts:1365
+#: src/strings.ts:1369
msgid "Create unlimited vaults with Notesnook Pro"
msgstr "Create unlimited vaults with Notesnook Pro"
@@ -1698,19 +1706,19 @@ msgstr "Create vault"
msgid "Create your account"
msgstr "Create your account"
-#: src/strings.ts:2204
+#: src/strings.ts:2208
msgid "Created at"
msgstr "Created at"
-#: src/strings.ts:1321
+#: src/strings.ts:1325
msgid "Creating a{0} backup"
msgstr "Creating a{0} backup"
-#: src/strings.ts:2024
+#: src/strings.ts:2028
msgid "Credentials"
msgstr "Credentials"
-#: src/strings.ts:2040
+#: src/strings.ts:2044
msgid "Cross platform & 100% encrypted"
msgstr "Cross platform & 100% encrypted"
@@ -1718,31 +1726,31 @@ msgstr "Cross platform & 100% encrypted"
msgid "Curate the toolbar that fits your needs and matches your personality."
msgstr "Curate the toolbar that fits your needs and matches your personality."
-#: src/strings.ts:1811
+#: src/strings.ts:1815
msgid "Current note"
msgstr "Current note"
-#: src/strings.ts:1462
+#: src/strings.ts:1466
msgid "Current password"
msgstr "Current password"
-#: src/strings.ts:1209
+#: src/strings.ts:1213
msgid "Current path: {path}"
msgstr "Current path: {path}"
-#: src/strings.ts:1461
+#: src/strings.ts:1465
msgid "Current pin"
msgstr "Current pin"
-#: src/strings.ts:1748
+#: src/strings.ts:1752
msgid "CURRENT PLAN"
msgstr "CURRENT PLAN"
-#: src/strings.ts:1985
+#: src/strings.ts:1989
msgid "Custom"
msgstr "Custom"
-#: src/strings.ts:2106
+#: src/strings.ts:2110
msgid "Custom dictionary words"
msgstr "Custom dictionary words"
@@ -1754,24 +1762,24 @@ msgstr "Customization"
msgid "Customize the appearance of the app with custom themes"
msgstr "Customize the appearance of the app with custom themes"
-#: src/strings.ts:1124
+#: src/strings.ts:1128
msgid "Customize the note editor"
msgstr "Customize the note editor"
-#: src/strings.ts:1126
+#: src/strings.ts:1130
msgid "Customize the toolbar in the note editor"
msgstr "Customize the toolbar in the note editor"
-#: src/strings.ts:1125
+#: src/strings.ts:1129
msgid "Customize toolbar"
msgstr "Customize toolbar"
-#: src/strings.ts:2220
+#: src/strings.ts:2224
msgid "Cut"
msgstr "Cut"
#: src/strings.ts:167
-#: src/strings.ts:1543
+#: src/strings.ts:1547
msgid "Daily"
msgstr "Daily"
@@ -1783,19 +1791,19 @@ msgstr "Dark"
msgid "Dark mode"
msgstr "Dark mode"
-#: src/strings.ts:2071
+#: src/strings.ts:2075
msgid "Dark or light, we won't judge."
msgstr "Dark or light, we won't judge."
-#: src/strings.ts:1522
+#: src/strings.ts:1526
msgid "Database setup failed, could not get database key"
msgstr "Database setup failed, could not get database key"
-#: src/strings.ts:1814
+#: src/strings.ts:1818
msgid "Date"
msgstr "Date"
-#: src/strings.ts:2080
+#: src/strings.ts:2084
msgid "Date & time"
msgstr "Date & time"
@@ -1811,7 +1819,7 @@ msgstr "Date deleted"
msgid "Date edited"
msgstr "Date edited"
-#: src/strings.ts:1114
+#: src/strings.ts:1118
msgid "Date format"
msgstr "Date format"
@@ -1819,15 +1827,15 @@ msgstr "Date format"
msgid "Date modified"
msgstr "Date modified"
-#: src/strings.ts:2017
+#: src/strings.ts:2021
msgid "Date uploaded"
msgstr "Date uploaded"
-#: src/strings.ts:1816
+#: src/strings.ts:1820
msgid "Day"
msgstr "Day"
-#: src/strings.ts:2013
+#: src/strings.ts:2017
msgid "Deactivate"
msgstr "Deactivate"
@@ -1835,7 +1843,7 @@ msgstr "Deactivate"
msgid "Debug log copied!"
msgstr "Debug log copied!"
-#: src/strings.ts:1249
+#: src/strings.ts:1253
msgid "Debug logs"
msgstr "Debug logs"
@@ -1843,32 +1851,32 @@ msgstr "Debug logs"
msgid "Debug logs downloaded"
msgstr "Debug logs downloaded"
-#: src/strings.ts:1246
+#: src/strings.ts:1250
msgid "Debugging"
msgstr "Debugging"
-#: src/strings.ts:2367
+#: src/strings.ts:2371
msgid "Decrease {title}"
msgstr "Decrease {title}"
#: src/strings.ts:649
-#: src/strings.ts:1983
+#: src/strings.ts:1987
msgid "Default"
msgstr "Default"
-#: src/strings.ts:1135
+#: src/strings.ts:1139
msgid "Default font family"
msgstr "Default font family"
-#: src/strings.ts:1136
+#: src/strings.ts:1140
msgid "Default font family in editor"
msgstr "Default font family in editor"
-#: src/strings.ts:1133
+#: src/strings.ts:1137
msgid "Default font size"
msgstr "Default font size"
-#: src/strings.ts:1134
+#: src/strings.ts:1138
msgid "Default font size in editor"
msgstr "Default font size in editor"
@@ -1876,11 +1884,11 @@ msgstr "Default font size in editor"
msgid "Default screen to open on app launch"
msgstr "Default screen to open on app launch"
-#: src/strings.ts:1229
+#: src/strings.ts:1233
msgid "Default snooze time"
msgstr "Default snooze time"
-#: src/strings.ts:1278
+#: src/strings.ts:1282
msgid "Default sound"
msgstr "Default sound"
@@ -1892,19 +1900,19 @@ msgstr "Delete"
msgid "Delete account"
msgstr "Delete account"
-#: src/strings.ts:1296
+#: src/strings.ts:1300
msgid "Delete collapsed section"
msgstr "Delete collapsed section"
-#: src/strings.ts:2265
+#: src/strings.ts:2269
msgid "Delete column"
msgstr "Delete column"
-#: src/strings.ts:1291
+#: src/strings.ts:1295
msgid "Delete group"
msgstr "Delete group"
-#: src/strings.ts:2340
+#: src/strings.ts:2344
msgid "Delete mode"
msgstr "Delete mode"
@@ -1916,11 +1924,11 @@ msgstr "Delete notes in this vault"
msgid "Delete permanently"
msgstr "Delete permanently"
-#: src/strings.ts:2272
+#: src/strings.ts:2276
msgid "Delete row"
msgstr "Delete row"
-#: src/strings.ts:2273
+#: src/strings.ts:2277
msgid "Delete table"
msgstr "Delete table"
@@ -1928,7 +1936,7 @@ msgstr "Delete table"
msgid "Delete vault"
msgstr "Delete vault"
-#: src/strings.ts:1156
+#: src/strings.ts:1160
msgid "Delete vault (and optionally remove all notes)."
msgstr "Delete vault (and optionally remove all notes)."
@@ -1936,19 +1944,19 @@ msgstr "Delete vault (and optionally remove all notes)."
msgid "Deleted on {date}"
msgstr "Deleted on {date}"
-#: src/strings.ts:1903
+#: src/strings.ts:1907
msgid "Deleting"
msgstr "Deleting"
-#: src/strings.ts:1813
+#: src/strings.ts:1817
msgid "Description"
msgstr "Description"
-#: src/strings.ts:2081
+#: src/strings.ts:2085
msgid "Desktop app"
msgstr "Desktop app"
-#: src/strings.ts:2085
+#: src/strings.ts:2089
msgid "Desktop integration"
msgstr "Desktop integration"
@@ -1956,7 +1964,7 @@ msgstr "Desktop integration"
msgid "Did you save recovery key?"
msgstr "Did you save recovery key?"
-#: src/strings.ts:1353
+#: src/strings.ts:1357
msgid "Disable"
msgstr "Disable"
@@ -1964,7 +1972,7 @@ msgstr "Disable"
msgid "Disable auto sync"
msgstr "Disable auto sync"
-#: src/strings.ts:1986
+#: src/strings.ts:1990
msgid "Disable editor margins"
msgstr "Disable editor margins"
@@ -1984,11 +1992,11 @@ msgstr "Disabled"
msgid "Discard"
msgstr "Discard"
-#: src/strings.ts:1572
+#: src/strings.ts:1576
msgid "Dismiss"
msgstr "Dismiss"
-#: src/strings.ts:1625
+#: src/strings.ts:1629
msgid "Dismiss announcement"
msgstr "Dismiss announcement"
@@ -2000,11 +2008,11 @@ msgstr "Disputed"
msgid "Do you enjoy using Notesnook?"
msgstr "Do you enjoy using Notesnook?"
-#: src/strings.ts:2203
+#: src/strings.ts:2207
msgid "Do you want to clear the trash?"
msgstr "Do you want to clear the trash?"
-#: src/strings.ts:1243
+#: src/strings.ts:1247
msgid "Documentation"
msgstr "Documentation"
@@ -2028,11 +2036,11 @@ msgstr "Don't have access to your phone number?"
msgid "Don't have an account?"
msgstr "Don't have an account?"
-#: src/strings.ts:1807
+#: src/strings.ts:1811
msgid "Don't have backup file?"
msgstr "Don't have backup file?"
-#: src/strings.ts:1806
+#: src/strings.ts:1810
msgid "Don't have your account recovery key?"
msgstr "Don't have your account recovery key?"
@@ -2040,11 +2048,11 @@ msgstr "Don't have your account recovery key?"
msgid "Don't have your recovery codes?"
msgstr "Don't have your recovery codes?"
-#: src/strings.ts:1785
+#: src/strings.ts:1789
msgid "Don't show again"
msgstr "Don't show again"
-#: src/strings.ts:1786
+#: src/strings.ts:1790
msgid "Don't show again on this device?"
msgstr "Don't show again on this device?"
@@ -2052,7 +2060,7 @@ msgstr "Don't show again on this device?"
msgid "Done"
msgstr "Done"
-#: src/strings.ts:1129
+#: src/strings.ts:1133
msgid "Double spaced lines"
msgstr "Double spaced lines"
@@ -2060,15 +2068,15 @@ msgstr "Double spaced lines"
msgid "Download"
msgstr "Download"
-#: src/strings.ts:1791
+#: src/strings.ts:1795
msgid "Download all attachments"
msgstr "Download all attachments"
-#: src/strings.ts:2289
+#: src/strings.ts:2293
msgid "Download attachment"
msgstr "Download attachment"
-#: src/strings.ts:1835
+#: src/strings.ts:1839
msgid "Download backup file"
msgstr "Download backup file"
@@ -2076,11 +2084,11 @@ msgstr "Download backup file"
msgid "Download cancelled"
msgstr "Download cancelled"
-#: src/strings.ts:2183
+#: src/strings.ts:2187
msgid "Download everything including attachments on sync"
msgstr "Download everything including attachments on sync"
-#: src/strings.ts:1270
+#: src/strings.ts:1274
msgid "Download on desktop"
msgstr "Download on desktop"
@@ -2113,19 +2121,19 @@ msgstr "Downloading ({progress})"
msgid "Downloading attachments"
msgstr "Downloading attachments"
-#: src/strings.ts:1679
+#: src/strings.ts:1683
msgid "Downloading images"
msgstr "Downloading images"
-#: src/strings.ts:1745
+#: src/strings.ts:1749
msgid "Drag & drop files here, or click to select files"
msgstr "Drag & drop files here, or click to select files"
-#: src/strings.ts:1744
+#: src/strings.ts:1748
msgid "Drop the files here"
msgstr "Drop the files here"
-#: src/strings.ts:1638
+#: src/strings.ts:1642
msgid "Drop your files here to attach"
msgstr "Drop your files here to attach"
@@ -2141,11 +2149,11 @@ msgstr "Duplicate"
msgid "Earliest first"
msgstr "Earliest first"
-#: src/strings.ts:2391
+#: src/strings.ts:2395
msgid "Easy access"
msgstr "Easy access"
-#: src/strings.ts:1752
+#: src/strings.ts:1756
msgid "Edit"
msgstr "Edit"
@@ -2153,29 +2161,29 @@ msgstr "Edit"
msgid "Edit internal link"
msgstr "Edit internal link"
-#: src/strings.ts:2209
-#: src/strings.ts:2235
+#: src/strings.ts:2213
+#: src/strings.ts:2239
msgid "Edit link"
msgstr "Edit link"
-#: src/strings.ts:1284
+#: src/strings.ts:1288
msgid "Edit profile picture"
msgstr "Edit profile picture"
-#: src/strings.ts:1794
+#: src/strings.ts:1798
msgid "Edit your full name"
msgstr "Edit your full name"
-#: src/strings.ts:1123
-#: src/strings.ts:1502
+#: src/strings.ts:1127
+#: src/strings.ts:1506
msgid "Editor"
msgstr "Editor"
-#: src/strings.ts:1458
+#: src/strings.ts:1462
msgid "Email"
msgstr "Email"
-#: src/strings.ts:2404
+#: src/strings.ts:2408
msgid "Email copied"
msgstr "Email copied"
@@ -2187,11 +2195,11 @@ msgstr "Email is required"
msgid "Email not confirmed"
msgstr "Email not confirmed"
-#: src/strings.ts:1528
+#: src/strings.ts:1532
msgid "Email or password incorrect"
msgstr "Email or password incorrect"
-#: src/strings.ts:1240
+#: src/strings.ts:1244
msgid "Email support"
msgstr "Email support"
@@ -2199,15 +2207,15 @@ msgstr "Email support"
msgid "Email updated to {email}"
msgstr "Email updated to {email}"
-#: src/strings.ts:2315
+#: src/strings.ts:2319
msgid "Embed"
msgstr "Embed"
-#: src/strings.ts:2295
+#: src/strings.ts:2299
msgid "Embed properties"
msgstr "Embed properties"
-#: src/strings.ts:2291
+#: src/strings.ts:2295
msgid "Embed settings"
msgstr "Embed settings"
@@ -2215,19 +2223,23 @@ msgstr "Embed settings"
msgid "Enable"
msgstr "Enable"
-#: src/strings.ts:1165
+#: src/strings.ts:1117
+msgid "Enable (Recommended)"
+msgstr "Enable (Recommended)"
+
+#: src/strings.ts:1169
msgid "Enable app lock"
msgstr "Enable app lock"
-#: src/strings.ts:1987
+#: src/strings.ts:1991
msgid "Enable editor margins"
msgstr "Enable editor margins"
-#: src/strings.ts:2355
+#: src/strings.ts:2359
msgid "Enable regex"
msgstr "Enable regex"
-#: src/strings.ts:2102
+#: src/strings.ts:2106
msgid "Enable spell checker"
msgstr "Enable spell checker"
@@ -2235,7 +2247,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:1214
+#: src/strings.ts:1218
msgid "Encrypt your backups for added security"
msgstr "Encrypt your backups for added security"
@@ -2243,11 +2255,11 @@ msgstr "Encrypt your backups for added security"
msgid "Encrypted and synced"
msgstr "Encrypted and synced"
-#: src/strings.ts:2216
+#: src/strings.ts:2220
msgid "Encrypted backup"
msgstr "Encrypted backup"
-#: src/strings.ts:1632
+#: src/strings.ts:1636
msgid "Encrypted, private, secure."
msgstr "Encrypted, private, secure."
@@ -2255,7 +2267,7 @@ msgstr "Encrypted, private, secure."
msgid "Encrypting attachment"
msgstr "Encrypting attachment"
-#: src/strings.ts:1818
+#: src/strings.ts:1822
msgid "Encryption key"
msgstr "Encryption key"
@@ -2275,7 +2287,7 @@ msgstr "Enter account password"
msgid "Enter account password to proceed."
msgstr "Enter account password to proceed."
-#: src/strings.ts:1827
+#: src/strings.ts:1831
msgid "Enter account recovery key"
msgstr "Enter account recovery key"
@@ -2291,23 +2303,23 @@ msgstr "Enter app lock pin"
msgid "Enter code from authenticator app"
msgstr "Enter code from authenticator app"
-#: src/strings.ts:1488
+#: src/strings.ts:1492
msgid "Enter email address"
msgstr "Enter email address"
-#: src/strings.ts:2343
+#: src/strings.ts:2347
msgid "Enter embed source URL"
msgstr "Enter embed source URL"
-#: src/strings.ts:1290
+#: src/strings.ts:1294
msgid "Enter full name"
msgstr "Enter full name"
-#: src/strings.ts:1676
+#: src/strings.ts:1680
msgid "Enter fullscreen"
msgstr "Enter fullscreen"
-#: src/strings.ts:1467
+#: src/strings.ts:1471
msgid "Enter notebook description"
msgstr "Enter notebook description"
@@ -2319,7 +2331,7 @@ msgstr "Enter notebook title"
msgid "Enter password"
msgstr "Enter password"
-#: src/strings.ts:2063
+#: src/strings.ts:2067
msgid "Enter pin or password to enable app lock."
msgstr "Enter pin or password to enable app lock."
@@ -2339,7 +2351,7 @@ msgstr "Enter the 6 digit code sent to your email to continue logging in"
msgid "Enter the 6 digit code sent to your phone number to continue logging in"
msgstr "Enter the 6 digit code sent to your phone number to continue logging in"
-#: src/strings.ts:2406
+#: src/strings.ts:2410
msgid "Enter the gift code to redeem your subscription."
msgstr "Enter the gift code to redeem your subscription."
@@ -2347,23 +2359,23 @@ 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:1470
+#: src/strings.ts:1474
msgid "Enter verification code sent to your new email"
msgstr "Enter verification code sent to your new email"
-#: src/strings.ts:1469
+#: src/strings.ts:1473
msgid "Enter your new email"
msgstr "Enter your new email"
-#: src/strings.ts:2064
+#: src/strings.ts:2068
msgid "Enter your username"
msgstr "Enter your username"
-#: src/strings.ts:2398
+#: src/strings.ts:2402
msgid "Error"
msgstr "Error"
-#: src/strings.ts:1529
+#: src/strings.ts:1533
msgid "Error applying promo code"
msgstr "Error applying promo code"
@@ -2371,7 +2383,7 @@ msgstr "Error applying promo code"
msgid "Error downloading file: {message}"
msgstr "Error downloading file: {message}"
-#: src/strings.ts:1491
+#: src/strings.ts:1495
msgid "Error getting codes"
msgstr "Error getting codes"
@@ -2391,35 +2403,35 @@ msgstr "Error sending 2FA code"
msgid "Errors"
msgstr "Errors"
-#: src/strings.ts:1671
+#: src/strings.ts:1675
msgid "Errors in {count} attachments"
msgstr "Errors in {count} attachments"
-#: src/strings.ts:1603
+#: src/strings.ts:1607
msgid "Events server"
msgstr "Events server"
-#: src/strings.ts:2384
+#: src/strings.ts:2388
msgid "Every Notebook can have notes and sub notebooks."
msgstr "Every Notebook can have notes and sub notebooks."
-#: src/strings.ts:2386
+#: src/strings.ts:2390
msgid "Everything related to my job in one place."
msgstr "Everything related to my job in one place."
-#: src/strings.ts:2395
+#: src/strings.ts:2399
msgid "Everything related to my school in one place."
msgstr "Everything related to my school in one place."
-#: src/strings.ts:1988
+#: src/strings.ts:1992
msgid "Exit fullscreen"
msgstr "Exit fullscreen"
-#: src/strings.ts:2347
+#: src/strings.ts:2351
msgid "Expand"
msgstr "Expand"
-#: src/strings.ts:2047
+#: src/strings.ts:2051
msgid "Experience the next level of private note taking\""
msgstr "Experience the next level of private note taking\""
@@ -2431,19 +2443,19 @@ msgstr "Export"
msgid "Export again"
msgstr "Export again"
-#: src/strings.ts:1217
+#: src/strings.ts:1221
msgid "Export all notes"
msgstr "Export all notes"
-#: src/strings.ts:1219
+#: src/strings.ts:1223
msgid "Export all notes as pdf, markdown, html or text in a single zip file"
msgstr "Export all notes as pdf, markdown, html or text in a single zip file"
-#: src/strings.ts:2010
+#: src/strings.ts:2014
msgid "Export as{0}"
msgstr "Export as{0}"
-#: src/strings.ts:1362
+#: src/strings.ts:1366
msgid "Export notes as PDF, Markdown and HTML with Notesnook Pro"
msgstr "Export notes as PDF, Markdown and HTML with Notesnook Pro"
@@ -2451,31 +2463,31 @@ msgstr "Export notes as PDF, Markdown and HTML with Notesnook Pro"
msgid "Exporting \"{title}\""
msgstr "Exporting \"{title}\""
-#: src/strings.ts:1593
+#: src/strings.ts:1597
msgid "Extracting files..."
msgstr "Extracting files..."
-#: src/strings.ts:1782
+#: src/strings.ts:1786
msgid "EXTREMELY DANGEROUS! This action is irreversible. All your data including notes, notebooks, attachments & settings will be deleted. This is a full account reset. Proceed with caution."
msgstr "EXTREMELY DANGEROUS! This action is irreversible. All your data including notes, notebooks, attachments & settings will be deleted. This is a full account reset. Proceed with caution."
-#: src/strings.ts:1239
+#: src/strings.ts:1243
msgid "Faced an issue or have a suggestion? Click here to create a bug report"
msgstr "Faced an issue or have a suggestion? Click here to create a bug report"
-#: src/strings.ts:2376
+#: src/strings.ts:2380
msgid "Failed"
msgstr "Failed"
-#: src/strings.ts:1911
+#: src/strings.ts:1915
msgid "Failed to copy note"
msgstr "Failed to copy note"
-#: src/strings.ts:1535
+#: src/strings.ts:1539
msgid "Failed to decrypt backup"
msgstr "Failed to decrypt backup"
-#: src/strings.ts:1977
+#: src/strings.ts:1981
msgid "Failed to delete"
msgstr "Failed to delete"
@@ -2487,7 +2499,7 @@ msgstr "Failed to delete account"
msgid "Failed to download file"
msgstr "Failed to download file"
-#: src/strings.ts:1973
+#: src/strings.ts:1977
msgid "Failed to install theme."
msgstr "Failed to install theme."
@@ -2499,7 +2511,7 @@ msgstr "Failed to open"
msgid "Failed to publish note"
msgstr "Failed to publish note"
-#: src/strings.ts:1978
+#: src/strings.ts:1982
msgid "Failed to register task"
msgstr "Failed to register task"
@@ -2511,7 +2523,7 @@ msgstr "Failed to resolve download url"
msgid "Failed to send recovery email"
msgstr "Failed to send recovery email"
-#: src/strings.ts:1378
+#: src/strings.ts:1382
msgid "Failed to send verification email"
msgstr "Failed to send verification email"
@@ -2519,11 +2531,11 @@ msgstr "Failed to send verification email"
msgid "Failed to subscribe"
msgstr "Failed to subscribe"
-#: src/strings.ts:2178
+#: src/strings.ts:2182
msgid "Failed to take backup"
msgstr "Failed to take backup"
-#: src/strings.ts:2180
+#: src/strings.ts:2184
msgid "Failed to take backup of your data. Do you want to continue logging out?"
msgstr "Failed to take backup of your data. Do you want to continue logging out?"
@@ -2539,20 +2551,20 @@ msgstr "Failed to zip files"
msgid "Fallback method for 2FA enabled"
msgstr "Fallback method for 2FA enabled"
-#: src/strings.ts:2007
+#: src/strings.ts:2011
msgid "Favorite"
msgstr "Favorite"
#: src/strings.ts:321
-#: src/strings.ts:1497
+#: src/strings.ts:1501
msgid "Favorites"
msgstr "Favorites"
-#: src/strings.ts:2388
+#: src/strings.ts:2392
msgid "February 2022 Week 2"
msgstr "February 2022 Week 2"
-#: src/strings.ts:2389
+#: src/strings.ts:2393
msgid "February 2022 Week 3"
msgstr "February 2022 Week 3"
@@ -2584,63 +2596,63 @@ msgstr "File size should be less than {sizeInMB}MB"
msgid "File too big"
msgstr "File too big"
-#: src/strings.ts:1455
+#: src/strings.ts:1459
msgid "Filter attachments by filename, type or hash"
msgstr "Filter attachments by filename, type or hash"
-#: src/strings.ts:1808
+#: src/strings.ts:1812
msgid "Filter languages"
msgstr "Filter languages"
-#: src/strings.ts:1644
+#: src/strings.ts:1648
msgid "Fix it"
msgstr "Fix it"
-#: src/strings.ts:2284
+#: src/strings.ts:2288
msgid "Float image"
msgstr "Float image"
-#: src/strings.ts:1990
+#: src/strings.ts:1994
msgid "Focus mode"
msgstr "Focus mode"
-#: src/strings.ts:2138
+#: src/strings.ts:2142
msgid "follow"
msgstr "follow"
-#: src/strings.ts:1255
+#: src/strings.ts:1259
msgid "Follow us on Mastodon"
msgstr "Follow us on Mastodon"
-#: src/strings.ts:1257
+#: src/strings.ts:1261
msgid "Follow us on Mastodon for updates and news about Notesnook"
msgstr "Follow us on Mastodon for updates and news about Notesnook"
-#: src/strings.ts:1258
+#: src/strings.ts:1262
msgid "Follow us on X"
msgstr "Follow us on X"
-#: src/strings.ts:1259
+#: src/strings.ts:1263
msgid "Follow us on X for updates and news about Notesnook"
msgstr "Follow us on X for updates and news about Notesnook"
-#: src/strings.ts:2249
+#: src/strings.ts:2253
msgid "Font family"
msgstr "Font family"
-#: src/strings.ts:2250
+#: src/strings.ts:2254
msgid "Font size"
msgstr "Font size"
-#: src/strings.ts:1661
+#: src/strings.ts:1665
msgid "For a more integrated user experience, try out Notesnook for {platform}"
msgstr "For a more integrated user experience, try out Notesnook for {platform}"
-#: src/strings.ts:1742
+#: src/strings.ts:1746
msgid "for help regarding how to use the Notesnook Importer."
msgstr "for help regarding how to use the Notesnook Importer."
-#: src/strings.ts:2170
+#: src/strings.ts:2174
msgid "Force logout from all your other logged in devices."
msgstr "Force logout from all your other logged in devices."
@@ -2652,7 +2664,7 @@ msgstr "Force pull changes"
msgid "Force push changes"
msgstr "Force push changes"
-#: src/strings.ts:2187
+#: src/strings.ts:2191
msgid ""
"Force push:\n"
"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.\n"
@@ -2678,55 +2690,55 @@ msgstr "Fri"
msgid "Friday"
msgstr "Friday"
-#: src/strings.ts:2345
+#: src/strings.ts:2349
msgid "From code"
msgstr "From code"
-#: src/strings.ts:2342
+#: src/strings.ts:2346
msgid "From URL"
msgstr "From URL"
-#: src/strings.ts:1974
+#: src/strings.ts:1978
msgid "Full name updated"
msgstr "Full name updated"
-#: src/strings.ts:2181
+#: src/strings.ts:2185
msgid "Full offline mode"
msgstr "Full offline mode"
-#: src/strings.ts:2297
+#: src/strings.ts:2301
msgid "Full screen"
msgstr "Full screen"
-#: src/strings.ts:2067
+#: src/strings.ts:2071
msgid "General"
msgstr "General"
-#: src/strings.ts:1248
+#: src/strings.ts:1252
msgid "Get helpful debug info about the app to help us find bugs."
msgstr "Get helpful debug info about the app to help us find bugs."
-#: src/strings.ts:1272
+#: src/strings.ts:1276
msgid "Get Notesnook app on your desktop and access all notes"
msgstr "Get Notesnook app on your desktop and access all notes"
-#: src/strings.ts:2132
+#: src/strings.ts:2136
msgid "Get Notesnook app on your iPhone and access all your notes on the go."
msgstr "Get Notesnook app on your iPhone and access all your notes on the go."
-#: src/strings.ts:2134
+#: src/strings.ts:2138
msgid "Get Notesnook app on your iPhone or Android device and access all your notes on the go."
msgstr "Get Notesnook app on your iPhone or Android device and access all your notes on the go."
-#: src/strings.ts:1359
+#: src/strings.ts:1363
msgid "Get Notesnook Pro"
msgstr "Get Notesnook Pro"
-#: src/strings.ts:1344
+#: src/strings.ts:1348
msgid "Get Notesnook Pro to enable automatic backups"
msgstr "Get Notesnook Pro to enable automatic backups"
-#: src/strings.ts:2380
+#: src/strings.ts:2384
msgid "Get Priority support"
msgstr "Get Priority support"
@@ -2738,7 +2750,7 @@ msgstr "Get Pro"
msgid "Get started"
msgstr "Get started"
-#: src/strings.ts:1860
+#: src/strings.ts:1864
msgid "Getting encryption key..."
msgstr "Getting encryption key..."
@@ -2750,35 +2762,35 @@ msgstr "Getting information"
msgid "Getting recovery codes"
msgstr "Getting recovery codes"
-#: src/strings.ts:2137
+#: src/strings.ts:2141
msgid "GNU GENERAL PUBLIC LICENSE Version 3"
msgstr "GNU GENERAL PUBLIC LICENSE Version 3"
-#: src/strings.ts:2200
+#: src/strings.ts:2204
msgid "Go back to notebooks"
msgstr "Go back to notebooks"
-#: src/strings.ts:2201
+#: src/strings.ts:2205
msgid "Go back to tags"
msgstr "Go back to tags"
-#: src/strings.ts:1788
+#: src/strings.ts:1792
msgid "Go to"
msgstr "Go to"
-#: src/strings.ts:1789
+#: src/strings.ts:1793
msgid "Go to #{tag}"
msgstr "Go to #{tag}"
-#: src/strings.ts:1672
+#: src/strings.ts:1676
msgid "Go to next page"
msgstr "Go to next page"
-#: src/strings.ts:1673
+#: src/strings.ts:1677
msgid "Go to previous page"
msgstr "Go to previous page"
-#: src/strings.ts:1281
+#: src/strings.ts:1285
msgid "Go to web app"
msgstr "Go to web app"
@@ -2790,7 +2802,7 @@ msgstr "Got it"
msgid "GROUP"
msgstr "GROUP"
-#: src/strings.ts:1862
+#: src/strings.ts:1866
msgid "Group added successfully"
msgstr "Group added successfully"
@@ -2802,23 +2814,23 @@ msgstr "Group by"
msgid "Hash copied"
msgstr "Hash copied"
-#: src/strings.ts:2184
+#: src/strings.ts:2188
msgid "Having problems with sync?"
msgstr "Having problems with sync?"
-#: src/strings.ts:2323
+#: src/strings.ts:2327
msgid "Heading {level}"
msgstr "Heading {level}"
-#: src/strings.ts:2251
+#: src/strings.ts:2255
msgid "Headings"
msgstr "Headings"
-#: src/strings.ts:2358
+#: src/strings.ts:2362
msgid "Height"
msgstr "Height"
-#: src/strings.ts:1236
+#: src/strings.ts:1240
msgid "Help and support"
msgstr "Help and support"
@@ -2826,19 +2838,19 @@ msgstr "Help and support"
msgid "Help improve Notesnook by sending completely anonymized"
msgstr "Help improve Notesnook by sending completely anonymized"
-#: src/strings.ts:1352
+#: src/strings.ts:1356
msgid "Hide"
msgstr "Hide"
-#: src/strings.ts:1162
+#: src/strings.ts:1166
msgid "Hide app contents when you switch to other apps. This will also disable screenshot taking in the app."
msgstr "Hide app contents when you switch to other apps. This will also disable screenshot taking in the app."
-#: src/strings.ts:2143
+#: src/strings.ts:2147
msgid "Hide note title"
msgstr "Hide note title"
-#: src/strings.ts:2254
+#: src/strings.ts:2258
msgid "Highlight"
msgstr "Highlight"
@@ -2846,7 +2858,7 @@ msgstr "Highlight"
msgid "History"
msgstr "History"
-#: src/strings.ts:1503
+#: src/strings.ts:1507
msgid "Home"
msgstr "Home"
@@ -2854,19 +2866,19 @@ msgstr "Home"
msgid "Homepage"
msgstr "Homepage"
-#: src/strings.ts:1294
+#: src/strings.ts:1298
msgid "Homepage changed to {name}"
msgstr "Homepage changed to {name}"
-#: src/strings.ts:2304
+#: src/strings.ts:2308
msgid "Horizontal rule"
msgstr "Horizontal rule"
-#: src/strings.ts:1773
+#: src/strings.ts:1777
msgid "How do you want to recover your account?"
msgstr "How do you want to recover your account?"
-#: src/strings.ts:1643
+#: src/strings.ts:1647
msgid "How to fix it?"
msgstr "How to fix it?"
@@ -2894,15 +2906,15 @@ msgstr "I don't have recovery codes"
msgid "I have a recovery code"
msgstr "I have a recovery code"
-#: src/strings.ts:1861
+#: src/strings.ts:1865
msgid "I have saved my key"
msgstr "I have saved my key"
-#: src/strings.ts:2397
+#: src/strings.ts:2401
msgid "I love cooking and collecting recipes."
msgstr "I love cooking and collecting recipes."
-#: src/strings.ts:2185
+#: src/strings.ts:2189
msgid "I understand"
msgstr "I understand"
@@ -2918,19 +2930,19 @@ msgstr "If the editor fails to load even after reloading. Try restarting the app
msgid "If this continues to happen, please reach out to us via"
msgstr "If this continues to happen, please reach out to us via"
-#: src/strings.ts:2088
+#: src/strings.ts:2092
msgid "If true, Notesnook will automatically start up when you turn on & login to your system."
msgstr "If true, Notesnook will automatically start up when you turn on & login to your system."
-#: src/strings.ts:2091
+#: src/strings.ts:2095
msgid "If true, Notesnook will start minimized to either the system tray or your system taskbar/dock. This setting only works with Auto start on system startup is enabled."
msgstr "If true, Notesnook will start minimized to either the system tray or your system taskbar/dock. This setting only works with Auto start on system startup is enabled."
-#: src/strings.ts:1699
+#: src/strings.ts:1703
msgid "If you can't scan the QR code above, enter this text instead (spaces don't matter)"
msgstr "If you can't scan the QR code above, enter this text instead (spaces don't matter)"
-#: src/strings.ts:1371
+#: src/strings.ts:1375
msgid ""
"If you didn't get an email from us or the confirmation link isn't\n"
"working,"
@@ -2938,11 +2950,11 @@ msgstr ""
"If you didn't get an email from us or the confirmation link isn't\n"
"working,"
-#: src/strings.ts:1779
+#: src/strings.ts:1783
msgid "If you don't have a recovery key, you can recover your data by restoring a Notesnook data backup file (.nnbackup)."
msgstr "If you don't have a recovery key, you can recover your data by restoring a Notesnook data backup file (.nnbackup)."
-#: src/strings.ts:2052
+#: src/strings.ts:2056
msgid "If you face any issue, you can reach out to us anytime."
msgstr "If you face any issue, you can reach out to us anytime."
@@ -2950,15 +2962,19 @@ msgstr "If you face any issue, you can reach out to us anytime."
msgid "If you want to ask something in general or need some assistance, we would suggest that you"
msgstr "If you want to ask something in general or need some assistance, we would suggest that you"
-#: src/strings.ts:2309
+#: src/strings.ts:2313
msgid "Image"
msgstr "Image"
-#: src/strings.ts:2285
+#: src/strings.ts:1114
+msgid "Image Compression"
+msgstr "Image Compression"
+
+#: src/strings.ts:2289
msgid "Image properties"
msgstr "Image properties"
-#: src/strings.ts:2280
+#: src/strings.ts:2284
msgid "Image settings"
msgstr "Image settings"
@@ -2974,19 +2990,19 @@ msgstr "Images"
msgid "Images uploaded without compression are slow to load and take more bandwidth. We recommend compressing images unless you need image in original quality."
msgstr "Images uploaded without compression are slow to load and take more bandwidth. We recommend compressing images unless you need image in original quality."
-#: src/strings.ts:1557
+#: src/strings.ts:1561
msgid "Immediately"
msgstr "Immediately"
-#: src/strings.ts:2115
+#: src/strings.ts:2119
msgid "Import & export"
msgstr "Import & export"
-#: src/strings.ts:1726
+#: src/strings.ts:1730
msgid "Import completed"
msgstr "Import completed"
-#: src/strings.ts:1741
+#: src/strings.ts:1745
msgid "import guide"
msgstr "import guide"
@@ -2994,7 +3010,7 @@ msgstr "import guide"
msgid "Incoming"
msgstr "Incoming"
-#: src/strings.ts:1812
+#: src/strings.ts:1816
msgid "Incoming note"
msgstr "Incoming note"
@@ -3002,59 +3018,59 @@ msgstr "Incoming note"
msgid "Incorrect {type}"
msgstr "Incorrect {type}"
-#: src/strings.ts:2366
+#: src/strings.ts:2370
msgid "Increase {title}"
msgstr "Increase {title}"
-#: src/strings.ts:2210
+#: src/strings.ts:2214
msgid "Insert"
msgstr "Insert"
-#: src/strings.ts:2363
+#: src/strings.ts:2367
msgid "Insert a {rows}x{columns} table"
msgstr "Insert a {rows}x{columns} table"
-#: src/strings.ts:2314
+#: src/strings.ts:2318
msgid "Insert a table"
msgstr "Insert a table"
-#: src/strings.ts:2316
+#: src/strings.ts:2320
msgid "Insert an embed"
msgstr "Insert an embed"
-#: src/strings.ts:2310
+#: src/strings.ts:2314
msgid "Insert an image"
msgstr "Insert an image"
-#: src/strings.ts:2261
+#: src/strings.ts:2265
msgid "Insert column left"
msgstr "Insert column left"
-#: src/strings.ts:2262
+#: src/strings.ts:2266
msgid "Insert column right"
msgstr "Insert column right"
-#: src/strings.ts:2208
+#: src/strings.ts:2212
msgid "Insert link"
msgstr "Insert link"
-#: src/strings.ts:2268
+#: src/strings.ts:2272
msgid "Insert row above"
msgstr "Insert row above"
-#: src/strings.ts:2269
+#: src/strings.ts:2273
msgid "Insert row below"
msgstr "Insert row below"
-#: src/strings.ts:1659
+#: src/strings.ts:1663
msgid "Install Notesnook"
msgstr "Install Notesnook"
-#: src/strings.ts:2123
+#: src/strings.ts:2127
msgid "Install update"
msgstr "Install update"
-#: src/strings.ts:1694
+#: src/strings.ts:1698
msgid "installs"
msgstr "installs"
@@ -3062,11 +3078,11 @@ msgstr "installs"
msgid "Invalid {type}"
msgstr "Invalid {type}"
-#: src/strings.ts:1966
+#: src/strings.ts:1970
msgid "Invalid CORS proxy url"
msgstr "Invalid CORS proxy url"
-#: src/strings.ts:1459
+#: src/strings.ts:1463
msgid "Invalid email"
msgstr "Invalid email"
@@ -3079,7 +3095,7 @@ msgstr "Issue created"
msgid "It may take a minute to receive your code."
msgstr "It may take a minute to receive your code."
-#: src/strings.ts:1565
+#: src/strings.ts:1569
msgid "It seems that your changes could not be saved. What to do next:"
msgstr "It seems that your changes could not be saved. What to do next:"
@@ -3087,7 +3103,7 @@ msgstr "It seems that your changes could not be saved. What to do next:"
msgid "It took us a year to bring Notesnook to life. Share your experience and suggestions to help us improve it."
msgstr "It took us a year to bring Notesnook to life. Share your experience and suggestions to help us improve it."
-#: src/strings.ts:2230
+#: src/strings.ts:2234
msgid "Italic"
msgstr "Italic"
@@ -3100,7 +3116,7 @@ msgid "Item"
msgstr "Item"
#: src/strings.ts:311
-#: src/strings.ts:1678
+#: src/strings.ts:1682
msgid "items"
msgstr "items"
@@ -3108,7 +3124,7 @@ msgstr "items"
msgid "Items"
msgstr "Items"
-#: src/strings.ts:2135
+#: src/strings.ts:2139
msgid "Join community"
msgstr "Join community"
@@ -3116,27 +3132,27 @@ msgstr "Join community"
msgid "join our community on Discord."
msgstr "join our community on Discord."
-#: src/strings.ts:1260
+#: src/strings.ts:1264
msgid "Join our Discord server"
msgstr "Join our Discord server"
-#: src/strings.ts:1262
+#: src/strings.ts:1266
msgid "Join our Discord server to chat with other users and the team"
msgstr "Join our Discord server to chat with other users and the team"
-#: src/strings.ts:1252
+#: src/strings.ts:1256
msgid "Join our Telegram group"
msgstr "Join our Telegram group"
-#: src/strings.ts:1254
+#: src/strings.ts:1258
msgid "Join our Telegram group to chat with other users and the team"
msgstr "Join our Telegram group to chat with other users and the team"
-#: src/strings.ts:2043
+#: src/strings.ts:2047
msgid "Join the cause"
msgstr "Join the cause"
-#: src/strings.ts:2001
+#: src/strings.ts:2005
msgid "Jump to group"
msgstr "Jump to group"
@@ -3144,19 +3160,19 @@ msgstr "Jump to group"
msgid "Keep"
msgstr "Keep"
-#: src/strings.ts:1996
+#: src/strings.ts:2000
msgid "Keep open"
msgstr "Keep open"
-#: src/strings.ts:1336
+#: src/strings.ts:1340
msgid "Keep your data safe"
msgstr "Keep your data safe"
-#: src/strings.ts:2103
+#: src/strings.ts:2107
msgid "Languages"
msgstr "Languages"
-#: src/strings.ts:2205
+#: src/strings.ts:2209
msgid "Last edited at"
msgstr "Last edited at"
@@ -3184,7 +3200,7 @@ msgstr "Learn more about Monographs"
msgid "Learn more about Notesnook Monograph"
msgstr "Learn more about Notesnook Monograph"
-#: src/strings.ts:1537
+#: src/strings.ts:1541
msgid "Legal"
msgstr "Legal"
@@ -3192,15 +3208,15 @@ msgstr "Legal"
msgid "Let us know if you have faced any issue/bug while using Notesnook. We will try to fix it as soon as possible."
msgstr "Let us know if you have faced any issue/bug while using Notesnook. We will try to fix it as soon as possible."
-#: src/strings.ts:2136
+#: src/strings.ts:2140
msgid "License"
msgstr "License"
-#: src/strings.ts:1695
+#: src/strings.ts:1699
msgid "Licensed under {license}"
msgstr "Licensed under {license}"
-#: src/strings.ts:2300
+#: src/strings.ts:2304
msgid "Lift list item"
msgstr "Lift list item"
@@ -3208,15 +3224,15 @@ msgstr "Lift list item"
msgid "Light"
msgstr "Light"
-#: src/strings.ts:2330
+#: src/strings.ts:2334
msgid "Line {line}, Column {column}"
msgstr "Line {line}, Column {column}"
-#: src/strings.ts:1132
+#: src/strings.ts:1136
msgid "Line spacing changed"
msgstr "Line spacing changed"
-#: src/strings.ts:2234
+#: src/strings.ts:2238
msgid "Link"
msgstr "Link"
@@ -3228,11 +3244,11 @@ msgstr "Link copied"
msgid "Link notebooks"
msgstr "Link notebooks"
-#: src/strings.ts:2239
+#: src/strings.ts:2243
msgid "Link settings"
msgstr "Link settings"
-#: src/strings.ts:2360
+#: src/strings.ts:2364
msgid "Link text"
msgstr "Link text"
@@ -3252,7 +3268,7 @@ msgstr "Link to notebook"
msgid "Linked notes"
msgstr "Linked notes"
-#: src/strings.ts:1571
+#: src/strings.ts:1575
msgid "Linking to a specific block is not available for locked notes."
msgstr "Linking to a specific block is not available for locked notes."
@@ -3264,7 +3280,7 @@ msgstr "List of"
msgid "Load from file"
msgstr "Load from file"
-#: src/strings.ts:1670
+#: src/strings.ts:1674
msgid "Loading"
msgstr "Loading"
@@ -3272,7 +3288,7 @@ msgstr "Loading"
msgid "Loading {0}, please wait..."
msgstr "Loading {0}, please wait..."
-#: src/strings.ts:1639
+#: src/strings.ts:1643
msgid "Loading editor. Please wait..."
msgstr "Loading editor. Please wait..."
@@ -3284,7 +3300,7 @@ msgstr "Loading subscription details"
msgid "Loading themes..."
msgstr "Loading themes..."
-#: src/strings.ts:1304
+#: src/strings.ts:1308
msgid "Loading trash"
msgstr "Loading trash"
@@ -3320,7 +3336,7 @@ msgstr "Lock"
msgid "Lock note"
msgstr "Lock note"
-#: src/strings.ts:1164
+#: src/strings.ts:1168
msgid "Lock the app with a password or pin"
msgstr "Lock the app with a password or pin"
@@ -3332,7 +3348,7 @@ msgstr "Locked notes cannot be pinned"
msgid "Locked notes cannot be published"
msgstr "Locked notes cannot be published"
-#: src/strings.ts:2168
+#: src/strings.ts:2172
msgid "Log out from all other devices"
msgstr "Log out from all other devices"
@@ -3344,7 +3360,7 @@ msgstr "Logging out will clear all data stored on THIS DEVICE. Make sure you hav
msgid "Logging out. Please wait..."
msgstr "Logging out. Please wait..."
-#: src/strings.ts:1757
+#: src/strings.ts:1761
msgid "Logging you in"
msgstr "Logging you in"
@@ -3364,7 +3380,7 @@ msgstr "Login required"
msgid "Login successful"
msgstr "Login successful"
-#: src/strings.ts:1339
+#: src/strings.ts:1343
msgid "Login to encrypt and sync notes"
msgstr "Login to encrypt and sync notes"
@@ -3384,11 +3400,11 @@ msgstr "Logout and clear data"
msgid "Logout from this device"
msgstr "Logout from this device"
-#: src/strings.ts:1389
+#: src/strings.ts:1393
msgid "Long press on any item in list to enter multi-select mode."
msgstr "Long press on any item in list to enter multi-select mode."
-#: src/strings.ts:2335
+#: src/strings.ts:2339
msgid "Make task list readonly"
msgstr "Make task list readonly"
@@ -3416,11 +3432,11 @@ msgstr "Manage your account related settings here"
msgid "Manage your attachments in one place"
msgstr "Manage your attachments in one place"
-#: src/strings.ts:1191
+#: src/strings.ts:1195
msgid "Manage your backups and restore data"
msgstr "Manage your backups and restore data"
-#: src/strings.ts:1225
+#: src/strings.ts:1229
msgid "Manage your reminders"
msgstr "Manage your reminders"
@@ -3428,51 +3444,51 @@ msgstr "Manage your reminders"
msgid "Manage your sync settings here"
msgstr "Manage your sync settings here"
-#: src/strings.ts:1417
+#: src/strings.ts:1421
msgid "Mark important notes by adding them to favorites."
msgstr "Mark important notes by adding them to favorites."
-#: src/strings.ts:1139
+#: src/strings.ts:1143
msgid "Markdown shortcuts"
msgstr "Markdown shortcuts"
-#: src/strings.ts:1145
+#: src/strings.ts:1149
msgid "Marketing emails"
msgstr "Marketing emails"
-#: src/strings.ts:2348
+#: src/strings.ts:2352
msgid "Match case"
msgstr "Match case"
-#: src/strings.ts:2349
+#: src/strings.ts:2353
msgid "Match whole word"
msgstr "Match whole word"
-#: src/strings.ts:2256
+#: src/strings.ts:2260
msgid "Math (inline)"
msgstr "Math (inline)"
-#: src/strings.ts:2307
+#: src/strings.ts:2311
msgid "Math & formulas"
msgstr "Math & formulas"
-#: src/strings.ts:2015
+#: src/strings.ts:2019
msgid "Maximize"
msgstr "Maximize"
-#: src/strings.ts:2045
+#: src/strings.ts:2049
msgid "Meet other privacy-minded people & talk to us directly about your concerns, issues and suggestions."
msgstr "Meet other privacy-minded people & talk to us directly about your concerns, issues and suggestions."
-#: src/strings.ts:2390
+#: src/strings.ts:2394
msgid "Meetings"
msgstr "Meetings"
-#: src/strings.ts:1754
+#: src/strings.ts:1758
msgid "Member since {date}"
msgstr "Member since {date}"
-#: src/strings.ts:2267
+#: src/strings.ts:2271
msgid "Merge cells"
msgstr "Merge cells"
@@ -3488,15 +3504,15 @@ msgstr "Migration failed"
msgid "min"
msgstr "min"
-#: src/strings.ts:1984
+#: src/strings.ts:1988
msgid "Minimal"
msgstr "Minimal"
-#: src/strings.ts:2014
+#: src/strings.ts:2018
msgid "Minimize"
msgstr "Minimize"
-#: src/strings.ts:2092
+#: src/strings.ts:2096
msgid "Minimize to system tray"
msgstr "Minimize to system tray"
@@ -3512,7 +3528,7 @@ msgstr "Mon"
msgid "Monday"
msgstr "Monday"
-#: src/strings.ts:1606
+#: src/strings.ts:1610
msgid "Monograph server"
msgstr "Monograph server"
@@ -3522,19 +3538,19 @@ msgstr "Monograph URL copied"
#: src/strings.ts:322
#: src/strings.ts:927
-#: src/strings.ts:1505
+#: src/strings.ts:1509
msgid "Monographs"
msgstr "Monographs"
-#: src/strings.ts:1399
+#: src/strings.ts:1403
msgid "Monographs can be encrypted with a secret key and shared with anyone."
msgstr "Monographs can be encrypted with a secret key and shared with anyone."
-#: src/strings.ts:1394
+#: src/strings.ts:1398
msgid "Monographs enable you to share your notes in a secure and private way."
msgstr "Monographs enable you to share your notes in a secure and private way."
-#: src/strings.ts:1815
+#: src/strings.ts:1819
msgid "month"
msgstr "month"
@@ -3543,11 +3559,11 @@ msgid "Month"
msgstr "Month"
#: src/strings.ts:169
-#: src/strings.ts:1545
+#: src/strings.ts:1549
msgid "Monthly"
msgstr "Monthly"
-#: src/strings.ts:2287
+#: src/strings.ts:2291
msgid "More"
msgstr "More"
@@ -3555,15 +3571,15 @@ msgstr "More"
msgid "Move"
msgstr "Move"
-#: src/strings.ts:2336
+#: src/strings.ts:2340
msgid "Move all checked tasks to bottom"
msgstr "Move all checked tasks to bottom"
-#: src/strings.ts:2263
+#: src/strings.ts:2267
msgid "Move column left"
msgstr "Move column left"
-#: src/strings.ts:2264
+#: src/strings.ts:2268
msgid "Move column right"
msgstr "Move column right"
@@ -3575,11 +3591,11 @@ msgstr "Move notebook"
msgid "Move notes"
msgstr "Move notes"
-#: src/strings.ts:2271
+#: src/strings.ts:2275
msgid "Move row down"
msgstr "Move row down"
-#: src/strings.ts:2270
+#: src/strings.ts:2274
msgid "Move row up"
msgstr "Move row up"
@@ -3595,7 +3611,7 @@ msgstr "Move to top"
msgid "Move to trash"
msgstr "Move to trash"
-#: src/strings.ts:1152
+#: src/strings.ts:1156
msgid "Multi-layer encryption to most important notes"
msgstr "Multi-layer encryption to most important notes"
@@ -3603,7 +3619,7 @@ msgstr "Multi-layer encryption to most important notes"
msgid "Name"
msgstr "Name"
-#: src/strings.ts:1663
+#: src/strings.ts:1667
msgid "Native high-performance encryption"
msgstr "Native high-performance encryption"
@@ -3611,7 +3627,7 @@ msgstr "Native high-performance encryption"
msgid "Never"
msgstr "Never"
-#: src/strings.ts:1319
+#: src/strings.ts:1323
msgid "Never ask again"
msgstr "Never ask again"
@@ -3631,11 +3647,11 @@ msgstr "New - old"
msgid "New color"
msgstr "New color"
-#: src/strings.ts:1821
+#: src/strings.ts:1825
msgid "New Email"
msgstr "New Email"
-#: src/strings.ts:1131
+#: src/strings.ts:1135
msgid "New lines will be double spaced (old ones won't be affected)."
msgstr "New lines will be double spaced (old ones won't be affected)."
@@ -3647,11 +3663,11 @@ msgstr "New note"
msgid "New notebook"
msgstr "New notebook"
-#: src/strings.ts:1457
+#: src/strings.ts:1461
msgid "New password"
msgstr "New password"
-#: src/strings.ts:1463
+#: src/strings.ts:1467
msgid "New pin"
msgstr "New pin"
@@ -3663,7 +3679,7 @@ msgstr "New reminder"
msgid "New tab"
msgstr "New tab"
-#: src/strings.ts:1345
+#: src/strings.ts:1349
msgid "New update available"
msgstr "New update available"
@@ -3671,11 +3687,11 @@ msgstr "New update available"
msgid "New version"
msgstr "New version"
-#: src/strings.ts:1999
+#: src/strings.ts:2003
msgid "Newest - oldest"
msgstr "Newest - oldest"
-#: src/strings.ts:1122
+#: src/strings.ts:1126
msgid "Newly created notes will be uncategorized"
msgstr "Newly created notes will be uncategorized"
@@ -3683,7 +3699,7 @@ msgstr "Newly created notes will be uncategorized"
msgid "Next"
msgstr "Next"
-#: src/strings.ts:2352
+#: src/strings.ts:2356
msgid "Next match"
msgstr "Next match"
@@ -3711,7 +3727,7 @@ msgstr "No blocks linked"
msgid "No color selected"
msgstr "No color selected"
-#: src/strings.ts:1211
+#: src/strings.ts:1215
msgid "No directory selected"
msgstr "No directory selected"
@@ -3719,11 +3735,11 @@ msgstr "No directory selected"
msgid "No downloads in progress."
msgstr "No downloads in progress."
-#: src/strings.ts:1959
+#: src/strings.ts:1963
msgid "No encryption key found"
msgstr "No encryption key found"
-#: src/strings.ts:1640
+#: src/strings.ts:1644
msgid "No headings found"
msgstr "No headings found"
@@ -3751,7 +3767,7 @@ msgstr "No references found of this note"
msgid "No results found for \"{query}\""
msgstr "No results found for \"{query}\""
-#: src/strings.ts:1492
+#: src/strings.ts:1496
msgid "No results found for {query}"
msgstr "No results found for {query}"
@@ -3767,7 +3783,7 @@ msgstr "No updates available"
msgid "None"
msgstr "None"
-#: src/strings.ts:1989
+#: src/strings.ts:1993
msgid "Normal mode"
msgstr "Normal mode"
@@ -3788,7 +3804,7 @@ msgstr "Note"
msgid "Note copied to clipboard"
msgstr "Note copied to clipboard"
-#: src/strings.ts:1924
+#: src/strings.ts:1928
msgid "Note does not exist"
msgstr "Note does not exist"
@@ -3804,7 +3820,7 @@ msgstr "Note locked"
msgid "Note restored from history"
msgstr "Note restored from history"
-#: src/strings.ts:1560
+#: src/strings.ts:1564
msgid "Note title"
msgstr "Note title"
@@ -3816,7 +3832,7 @@ msgstr "Note unlocked"
msgid "Note version history is local only."
msgstr "Note version history is local only."
-#: src/strings.ts:1204
+#: src/strings.ts:1208
msgid "NOTE: Creating a backup with attachments can take a while, and also fail completely. The app will try to resume/restart the backup in case of interruptions."
msgstr "NOTE: Creating a backup with attachments can take a while, and also fail completely. The app will try to resume/restart the backup in case of interruptions."
@@ -3825,7 +3841,7 @@ msgid "notebook"
msgstr "notebook"
#: src/strings.ts:296
-#: src/strings.ts:1496
+#: src/strings.ts:1500
msgid "Notebook"
msgstr "Notebook"
@@ -3835,15 +3851,15 @@ msgstr "notebooks"
#: src/strings.ts:258
#: src/strings.ts:316
-#: src/strings.ts:1495
+#: src/strings.ts:1499
msgid "Notebooks"
msgstr "Notebooks"
-#: src/strings.ts:1769
+#: src/strings.ts:1773
msgid "NOTEBOOKS"
msgstr "NOTEBOOKS"
-#: src/strings.ts:2215
+#: src/strings.ts:2219
msgid "Notebooks are the best way to organize your notes."
msgstr "Notebooks are the best way to organize your notes."
@@ -3852,7 +3868,7 @@ msgid "notes"
msgstr "notes"
#: src/strings.ts:315
-#: src/strings.ts:1494
+#: src/strings.ts:1498
msgid "Notes"
msgstr "Notes"
@@ -3860,15 +3876,15 @@ msgstr "Notes"
msgid "Notes exported as {path} successfully"
msgstr "Notes exported as {path} successfully"
-#: src/strings.ts:1725
+#: src/strings.ts:1729
msgid "notes imported"
msgstr "notes imported"
-#: src/strings.ts:2042
+#: src/strings.ts:2046
msgid "Notesnook encrypts everything offline before syncing to your other devices. This means that no one can read your notes except you. Not even us."
msgstr "Notesnook encrypts everything offline before syncing to your other devices. This means that no one can read your notes except you. Not even us."
-#: src/strings.ts:2117
+#: src/strings.ts:2121
msgid "Notesnook Importer"
msgstr "Notesnook Importer"
@@ -3876,7 +3892,7 @@ msgstr "Notesnook Importer"
msgid "Notesnook Pro"
msgstr "Notesnook Pro"
-#: src/strings.ts:2149
+#: src/strings.ts:2153
msgid ""
"Notesnook uses the following DNS providers:\n"
"1. Cloudflare DNS\n"
@@ -3896,23 +3912,23 @@ msgstr "Notesnook will send you a 2FA code on your email when prompted"
msgid "Notesnook will send you an SMS with a 2FA code when prompted"
msgstr "Notesnook will send you an SMS with a 2FA code when prompted"
-#: src/strings.ts:2112
+#: src/strings.ts:2116
msgid "Notifications"
msgstr "Notifications"
-#: src/strings.ts:1354
+#: src/strings.ts:1358
msgid "Notifications disabled"
msgstr "Notifications disabled"
-#: src/strings.ts:2247
+#: src/strings.ts:2251
msgid "Numbered list"
msgstr "Numbered list"
-#: src/strings.ts:1693
+#: src/strings.ts:1697
msgid "of"
msgstr "of"
-#: src/strings.ts:1577
+#: src/strings.ts:1581
msgid "Off"
msgstr "Off"
@@ -3920,7 +3936,7 @@ msgstr "Off"
msgid "Offline"
msgstr "Offline"
-#: src/strings.ts:2202
+#: src/strings.ts:2206
msgid "Okay"
msgstr "Okay"
@@ -3928,15 +3944,15 @@ msgstr "Okay"
msgid "Old - new"
msgstr "Old - new"
-#: src/strings.ts:1456
+#: src/strings.ts:1460
msgid "Old password"
msgstr "Old password"
-#: src/strings.ts:1810
+#: src/strings.ts:1814
msgid "Older version"
msgstr "Older version"
-#: src/strings.ts:1998
+#: src/strings.ts:2002
msgid "Oldest - newest"
msgstr "Oldest - newest"
@@ -3944,7 +3960,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:1746
+#: src/strings.ts:1750
msgid "Only .zip files are supported."
msgstr "Only .zip files are supported."
@@ -3960,11 +3976,11 @@ msgstr "Open file location"
msgid "Open in browser"
msgstr "Open in browser"
-#: src/strings.ts:1283
+#: src/strings.ts:1287
msgid "Open in browser to manage subscription"
msgstr "Open in browser to manage subscription"
-#: src/strings.ts:2298
+#: src/strings.ts:2302
msgid "Open in new tab"
msgstr "Open in new tab"
@@ -3972,27 +3988,27 @@ msgstr "Open in new tab"
msgid "Open issue"
msgstr "Open issue"
-#: src/strings.ts:2237
+#: src/strings.ts:2241
msgid "Open link"
msgstr "Open link"
-#: src/strings.ts:1838
+#: src/strings.ts:1842
msgid "Open note"
msgstr "Open note"
-#: src/strings.ts:1357
+#: src/strings.ts:1361
msgid "Open settings"
msgstr "Open settings"
-#: src/strings.ts:2299
+#: src/strings.ts:2303
msgid "Open source"
msgstr "Open source"
-#: src/strings.ts:1268
+#: src/strings.ts:1272
msgid "Open source libraries used in Notesnook"
msgstr "Open source libraries used in Notesnook"
-#: src/strings.ts:1267
+#: src/strings.ts:1271
msgid "Open source licenses"
msgstr "Open source licenses"
@@ -4004,7 +4020,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:1832
+#: src/strings.ts:1836
msgid "Optional"
msgstr "Optional"
@@ -4012,11 +4028,11 @@ msgstr "Optional"
msgid "or email us at"
msgstr "or email us at"
-#: src/strings.ts:1997
+#: src/strings.ts:2001
msgid "Order by"
msgstr "Order by"
-#: src/strings.ts:2195
+#: src/strings.ts:2199
msgid "Order ID"
msgstr "Order ID"
@@ -4025,19 +4041,19 @@ msgstr "Order ID"
msgid "Orphaned"
msgstr "Orphaned"
-#: src/strings.ts:2120
+#: src/strings.ts:2124
msgid "Other"
msgstr "Other"
-#: src/strings.ts:2319
+#: src/strings.ts:2323
msgid "Outline list"
msgstr "Outline list"
-#: src/strings.ts:2322
+#: src/strings.ts:2326
msgid "Paragraph"
msgstr "Paragraph"
-#: src/strings.ts:2076
+#: src/strings.ts:2080
msgid "Partial backups contain all your data except attachments. They are created from data already available on your device and do not require an Internet connection."
msgstr "Partial backups contain all your data except attachments. They are created from data already available on your device and do not require an Internet connection."
@@ -4045,7 +4061,7 @@ msgstr "Partial backups contain all your data except attachments. They are creat
msgid "Partially refunded"
msgstr "Partially refunded"
-#: src/strings.ts:2375
+#: src/strings.ts:2379
msgid "Passed"
msgstr "Passed"
@@ -4081,23 +4097,23 @@ msgstr "Password protection"
msgid "Password updated"
msgstr "Password updated"
-#: src/strings.ts:2056
+#: src/strings.ts:2060
msgid "Password/pin"
msgstr "Password/pin"
-#: src/strings.ts:2223
+#: src/strings.ts:2227
msgid "Paste"
msgstr "Paste"
-#: src/strings.ts:2344
+#: src/strings.ts:2348
msgid "Paste embed code here. Only iframes are supported."
msgstr "Paste embed code here. Only iframes are supported."
-#: src/strings.ts:2359
+#: src/strings.ts:2363
msgid "Paste image URL here"
msgstr "Paste image URL here"
-#: src/strings.ts:2174
+#: src/strings.ts:2178
msgid "Payment method"
msgstr "Payment method"
@@ -4105,11 +4121,11 @@ msgstr "Payment method"
msgid "PDF is password protected"
msgstr "PDF is password protected"
-#: src/strings.ts:1704
+#: src/strings.ts:1708
msgid "phone number"
msgstr "phone number"
-#: src/strings.ts:1823
+#: src/strings.ts:1827
msgid "Phone number"
msgstr "Phone number"
@@ -4121,7 +4137,7 @@ msgstr "Phone number not entered"
msgid "Pin"
msgstr "Pin"
-#: src/strings.ts:1665
+#: src/strings.ts:1669
msgid "Pin notes in notifications drawer"
msgstr "Pin notes in notifications drawer"
@@ -4133,7 +4149,7 @@ msgstr "Pin to notifications"
msgid "Pinned"
msgstr "Pinned"
-#: src/strings.ts:1341
+#: src/strings.ts:1345
msgid "Please confirm your email to sync notes"
msgstr "Please confirm your email to sync notes"
@@ -4142,7 +4158,7 @@ msgid "Please confirm your identity by entering a recovery code."
msgstr "Please confirm your identity by entering a recovery code."
#: src/strings.ts:967
-#: src/strings.ts:2207
+#: src/strings.ts:2211
msgid "Please confirm your identity by entering the authentication code from your authenticator app."
msgstr "Please confirm your identity by entering the authentication code from your authenticator app."
@@ -4154,31 +4170,31 @@ msgstr "Please confirm your identity by entering the authentication code sent to
msgid "Please confirm your identity by entering the authentication code sent to your email address."
msgstr "Please confirm your identity by entering the authentication code sent to your email address."
-#: src/strings.ts:1884
+#: src/strings.ts:1888
msgid "Please download a backup of your data as your account will be cleared before recovery."
msgstr "Please download a backup of your data as your account will be cleared before recovery."
-#: src/strings.ts:1489
+#: src/strings.ts:1493
msgid "Please enter a valid email address"
msgstr "Please enter a valid email address"
-#: src/strings.ts:1929
+#: src/strings.ts:1933
msgid "Please enter a valid hex color (e.g. #ffffff)"
msgstr "Please enter a valid hex color (e.g. #ffffff)"
-#: src/strings.ts:1490
+#: src/strings.ts:1494
msgid "Please enter a valid phone number with country code"
msgstr "Please enter a valid phone number with country code"
-#: src/strings.ts:1610
+#: src/strings.ts:1614
msgid "Please enter a valid URL"
msgstr "Please enter a valid URL"
-#: src/strings.ts:1595
+#: src/strings.ts:1599
msgid "Please enter password of this backup file"
msgstr "Please enter password of this backup file"
-#: src/strings.ts:2218
+#: src/strings.ts:2222
msgid "Please enter the password to decrypt and restore this backup."
msgstr "Please enter the password to decrypt and restore this backup."
@@ -4186,11 +4202,11 @@ msgstr "Please enter the password to decrypt and restore this backup."
msgid "Please enter the password to unlock the PDF and view the content."
msgstr "Please enter the password to unlock the PDF and view the content."
-#: src/strings.ts:1840
+#: src/strings.ts:1844
msgid "Please enter the password to unlock this note"
msgstr "Please enter the password to unlock this note"
-#: src/strings.ts:1837
+#: src/strings.ts:1841
msgid "Please enter the password to view this version"
msgstr "Please enter the password to view this version"
@@ -4206,7 +4222,7 @@ msgstr "Please enter your app lock pin to continue"
msgid "Please enter your password to continue"
msgstr "Please enter your password to continue"
-#: src/strings.ts:1908
+#: src/strings.ts:1912
msgid "Please enter your vault password to continue"
msgstr "Please enter your vault password to continue"
@@ -4214,7 +4230,7 @@ msgstr "Please enter your vault password to continue"
msgid "Please fill all the fields to continue."
msgstr "Please fill all the fields to continue."
-#: src/strings.ts:1531
+#: src/strings.ts:1535
msgid "Please grant notifications permission to add new reminders."
msgstr "Please grant notifications permission to add new reminders."
@@ -4226,31 +4242,31 @@ msgstr "Please make sure you have saved the recovery key. Tap one more time to c
msgid "Please note that we will respond to your issue on the given link. We recommend that you save it."
msgstr "Please note that we will respond to your issue on the given link. We recommend that you save it."
-#: src/strings.ts:1740
+#: src/strings.ts:1744
msgid "Please refer to the"
msgstr "Please refer to the"
-#: src/strings.ts:1532
+#: src/strings.ts:1536
msgid "Please select the day to repeat the reminder on"
msgstr "Please select the day to repeat the reminder on"
-#: src/strings.ts:1373
+#: src/strings.ts:1377
msgid "please send us an email from your registered email address"
msgstr "please send us an email from your registered email address"
-#: src/strings.ts:2364
+#: src/strings.ts:2368
msgid "Please set a table size"
msgstr "Please set a table size"
-#: src/strings.ts:1533
+#: src/strings.ts:1537
msgid "Please set title of the reminder"
msgstr "Please set title of the reminder"
-#: src/strings.ts:1962
+#: src/strings.ts:1966
msgid "Please try again"
msgstr "Please try again"
-#: src/strings.ts:1982
+#: src/strings.ts:1986
msgid "Please upgrade to Pro to enable automatic backups."
msgstr "Please upgrade to Pro to enable automatic backups."
@@ -4266,8 +4282,8 @@ msgstr "Please wait"
msgid "Please wait before requesting a new code"
msgstr "Please wait before requesting a new code"
-#: src/strings.ts:1376
-#: src/strings.ts:1526
+#: src/strings.ts:1380
+#: src/strings.ts:1530
msgid "Please wait before requesting another email"
msgstr "Please wait before requesting another email"
@@ -4283,7 +4299,7 @@ msgstr "Please wait while we export your not."
msgid "Please wait while we export your notes."
msgstr "Please wait while we export your notes."
-#: src/strings.ts:1869
+#: src/strings.ts:1873
msgid "Please wait while we finalize your account."
msgstr "Please wait while we finalize your account."
@@ -4295,15 +4311,15 @@ msgstr "Please wait while we load your subscription"
msgid "Please wait while we log you out."
msgstr "Please wait while we log you out."
-#: src/strings.ts:1890
+#: src/strings.ts:1894
msgid "Please wait while we reset your account password."
msgstr "Please wait while we reset your account password."
-#: src/strings.ts:1588
+#: src/strings.ts:1592
msgid "Please wait while we restore your backup..."
msgstr "Please wait while we restore your backup..."
-#: src/strings.ts:1872
+#: src/strings.ts:1876
msgid "Please wait while we send you recovery instructions"
msgstr "Please wait while we send you recovery instructions"
@@ -4315,12 +4331,12 @@ msgstr "Please wait while we sync all your data."
msgid "Please wait while we verify your subscription"
msgstr "Please wait while we verify your subscription"
-#: src/strings.ts:1758
-#: src/strings.ts:1865
+#: src/strings.ts:1762
+#: src/strings.ts:1869
msgid "Please wait while you are authenticated."
msgstr "Please wait while you are authenticated."
-#: src/strings.ts:1877
+#: src/strings.ts:1881
msgid "Please wait while your data is downloaded & decrypted."
msgstr "Please wait while your data is downloaded & decrypted."
@@ -4328,7 +4344,7 @@ msgstr "Please wait while your data is downloaded & decrypted."
msgid "Preparing note for share"
msgstr "Preparing note for share"
-#: src/strings.ts:1590
+#: src/strings.ts:1594
msgid "Preparing to restore backup file..."
msgstr "Preparing to restore backup file..."
@@ -4336,19 +4352,19 @@ msgstr "Preparing to restore backup file..."
msgid "PRESETS"
msgstr "PRESETS"
-#: src/strings.ts:2094
+#: src/strings.ts:2098
msgid "Pressing \"—\" will hide the app in your system tray."
msgstr "Pressing \"—\" will hide the app in your system tray."
-#: src/strings.ts:2097
+#: src/strings.ts:2101
msgid "Pressing \"X\" will hide the app in your system tray."
msgstr "Pressing \"X\" will hide the app in your system tray."
-#: src/strings.ts:2145
+#: src/strings.ts:2149
msgid "Prevent note title from appearing in tab/window title."
msgstr "Prevent note title from appearing in tab/window title."
-#: src/strings.ts:2286
+#: src/strings.ts:2290
msgid "Preview attachment"
msgstr "Preview attachment"
@@ -4356,23 +4372,23 @@ msgstr "Preview attachment"
msgid "Preview not available, content is encrypted."
msgstr "Preview not available, content is encrypted."
-#: src/strings.ts:2353
+#: src/strings.ts:2357
msgid "Previous match"
msgstr "Previous match"
-#: src/strings.ts:2009
+#: src/strings.ts:2013
msgid "Print"
msgstr "Print"
-#: src/strings.ts:2119
+#: src/strings.ts:2123
msgid "Privacy"
msgstr "Privacy"
-#: src/strings.ts:1141
+#: src/strings.ts:1145
msgid "Privacy & security"
msgstr "Privacy & security"
-#: src/strings.ts:1630
+#: src/strings.ts:1634
msgid "Privacy comes first."
msgstr "Privacy comes first."
@@ -4380,11 +4396,11 @@ msgstr "Privacy comes first."
msgid "Privacy for everyone"
msgstr "Privacy for everyone"
-#: src/strings.ts:1160
+#: src/strings.ts:1164
msgid "Privacy mode"
msgstr "Privacy mode"
-#: src/strings.ts:1265
+#: src/strings.ts:1269
msgid "Privacy policy"
msgstr "Privacy policy"
@@ -4404,31 +4420,31 @@ msgstr "Private."
msgid "privileged few"
msgstr "privileged few"
-#: src/strings.ts:1696
+#: src/strings.ts:1700
msgid "Pro"
msgstr "Pro"
-#: src/strings.ts:2022
+#: src/strings.ts:2026
msgid "Processing {collection}..."
msgstr "Processing {collection}..."
-#: src/strings.ts:2021
+#: src/strings.ts:2025
msgid "Processing..."
msgstr "Processing..."
-#: src/strings.ts:1220
+#: src/strings.ts:1224
msgid "Productivity"
msgstr "Productivity"
-#: src/strings.ts:2108
+#: src/strings.ts:2112
msgid "Profile"
msgstr "Profile"
-#: src/strings.ts:1930
+#: src/strings.ts:1934
msgid "Profile updated"
msgstr "Profile updated"
-#: src/strings.ts:1841
+#: src/strings.ts:1845
msgid "Properties"
msgstr "Properties"
@@ -4436,7 +4452,7 @@ msgstr "Properties"
msgid "Protect your notes"
msgstr "Protect your notes"
-#: src/strings.ts:2156
+#: src/strings.ts:2160
msgid "Proxy"
msgstr "Proxy"
@@ -4468,31 +4484,31 @@ 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:1348
+#: src/strings.ts:1352
msgid "Quick note"
msgstr "Quick note"
-#: src/strings.ts:1221
+#: src/strings.ts:1225
msgid "Quick note notification"
msgstr "Quick note notification"
-#: src/strings.ts:1667
+#: src/strings.ts:1671
msgid "Quick note widgets"
msgstr "Quick note widgets"
-#: src/strings.ts:1223
+#: src/strings.ts:1227
msgid "Quickly create a note from the notification"
msgstr "Quickly create a note from the notification"
-#: src/strings.ts:2306
+#: src/strings.ts:2310
msgid "Quote"
msgstr "Quote"
-#: src/strings.ts:1334
+#: src/strings.ts:1338
msgid "Rate Notesnook on App Store"
msgstr "Rate Notesnook on App Store"
-#: src/strings.ts:1335
+#: src/strings.ts:1339
msgid "Rate Notesnook on Play Store"
msgstr "Rate Notesnook on Play Store"
@@ -4508,39 +4524,39 @@ msgstr "Read full release notes on Github"
msgid "Read only"
msgstr "Read only"
-#: src/strings.ts:1245
+#: src/strings.ts:1249
msgid "Read the documentation to learn more about Notesnook"
msgstr "Read the documentation to learn more about Notesnook"
-#: src/strings.ts:1266
+#: src/strings.ts:1270
msgid "Read the privacy policy"
msgstr "Read the privacy policy"
-#: src/strings.ts:1264
+#: src/strings.ts:1268
msgid "Read the terms of service"
msgstr "Read the terms of service"
-#: src/strings.ts:1591
+#: src/strings.ts:1595
msgid "Reading backup file..."
msgstr "Reading backup file..."
-#: src/strings.ts:2198
+#: src/strings.ts:2202
msgid "Receipt"
msgstr "Receipt"
-#: src/strings.ts:1586
+#: src/strings.ts:1590
msgid "RECENT BACKUPS"
msgstr "RECENT BACKUPS"
-#: src/strings.ts:2371
+#: src/strings.ts:2375
msgid "Recheck all"
msgstr "Recheck all"
-#: src/strings.ts:1976
+#: src/strings.ts:1980
msgid "Rechecking failed"
msgstr "Rechecking failed"
-#: src/strings.ts:2396
+#: src/strings.ts:2400
msgid "Recipes"
msgstr "Recipes"
@@ -4580,19 +4596,19 @@ msgstr "Recovery key QR code saved"
msgid "Recovery key text file saved"
msgstr "Recovery key text file saved"
-#: src/strings.ts:1891
+#: src/strings.ts:1895
msgid "Recovery successful!"
msgstr "Recovery successful!"
-#: src/strings.ts:2408
+#: src/strings.ts:2412
msgid "Redeem"
msgstr "Redeem"
-#: src/strings.ts:2405
+#: src/strings.ts:2409
msgid "Redeem gift code"
msgstr "Redeem gift code"
-#: src/strings.ts:2407
+#: src/strings.ts:2411
msgid "Redeeming gift code"
msgstr "Redeeming gift code"
@@ -4612,7 +4628,7 @@ msgstr "References"
msgid "Regenerate"
msgstr "Regenerate"
-#: src/strings.ts:2062
+#: src/strings.ts:2066
msgid "Register"
msgstr "Register"
@@ -4620,15 +4636,15 @@ msgstr "Register"
msgid "Release notes"
msgstr "Release notes"
-#: src/strings.ts:1645
+#: src/strings.ts:1649
msgid "Reload app"
msgstr "Reload app"
-#: src/strings.ts:1803
+#: src/strings.ts:1807
msgid "Relogin to your account"
msgstr "Relogin to your account"
-#: src/strings.ts:1771
+#: src/strings.ts:1775
msgid "Remembered your password?"
msgstr "Remembered your password?"
@@ -4640,7 +4656,7 @@ msgstr "Remind me"
msgid "Remind me in"
msgstr "Remind me in"
-#: src/strings.ts:1483
+#: src/strings.ts:1487
msgid "Remind me of..."
msgstr "Remind me of..."
@@ -4652,11 +4668,11 @@ msgstr "reminder"
msgid "Reminder"
msgstr "Reminder"
-#: src/strings.ts:1226
+#: src/strings.ts:1230
msgid "Reminder notifications"
msgstr "Reminder notifications"
-#: src/strings.ts:1534
+#: src/strings.ts:1538
msgid "Reminder time cannot be earlier than the current time."
msgstr "Reminder time cannot be earlier than the current time."
@@ -4665,16 +4681,16 @@ msgid "reminders"
msgstr "reminders"
#: src/strings.ts:318
-#: src/strings.ts:1224
-#: src/strings.ts:1498
+#: src/strings.ts:1228
+#: src/strings.ts:1502
msgid "Reminders"
msgstr "Reminders"
-#: src/strings.ts:1356
+#: src/strings.ts:1360
msgid "Reminders cannot be set because notifications have been disabled from app settings. If you want to keep receiving reminder notifications, enable notifications for Notesnook from app settings."
msgstr "Reminders cannot be set because notifications have been disabled from app settings. If you want to keep receiving reminder notifications, enable notifications for Notesnook from app settings."
-#: src/strings.ts:1928
+#: src/strings.ts:1932
msgid "Reminders will not be active on this device as it does not support notifications."
msgstr "Reminders will not be active on this device as it does not support notifications."
@@ -4682,23 +4698,23 @@ msgstr "Reminders will not be active on this device as it does not support notif
msgid "Remove"
msgstr "Remove"
-#: src/strings.ts:1155
+#: src/strings.ts:1159
msgid "Remove all notes from the vault."
msgstr "Remove all notes from the vault."
-#: src/strings.ts:1182
+#: src/strings.ts:1186
msgid "Remove app lock password"
msgstr "Remove app lock password"
-#: src/strings.ts:1186
+#: src/strings.ts:1190
msgid "Remove app lock password, app lock will be disabled if no other security method is enabled."
msgstr "Remove app lock password, app lock will be disabled if no other security method is enabled."
-#: src/strings.ts:1181
+#: src/strings.ts:1185
msgid "Remove app lock pin"
msgstr "Remove app lock pin"
-#: src/strings.ts:1184
+#: src/strings.ts:1188
msgid "Remove app lock pin, app lock will be disabled if no other security method is enabled."
msgstr "Remove app lock pin, app lock will be disabled if no other security method is enabled."
@@ -4706,7 +4722,7 @@ msgstr "Remove app lock pin, app lock will be disabled if no other security meth
msgid "Remove as default"
msgstr "Remove as default"
-#: src/strings.ts:2290
+#: src/strings.ts:2294
msgid "Remove attachment"
msgstr "Remove attachment"
@@ -4722,7 +4738,7 @@ msgstr "Remove from notebook"
msgid "Remove full name"
msgstr "Remove full name"
-#: src/strings.ts:2236
+#: src/strings.ts:2240
msgid "Remove link"
msgstr "Remove link"
@@ -4754,19 +4770,19 @@ msgstr "Reorder"
msgid "Repeats daily at {date}"
msgstr "Repeats daily at {date}"
-#: src/strings.ts:2350
+#: src/strings.ts:2354
msgid "Replace"
msgstr "Replace"
-#: src/strings.ts:2351
+#: src/strings.ts:2355
msgid "Replace all"
msgstr "Replace all"
-#: src/strings.ts:2139
+#: src/strings.ts:2143
msgid "Report"
msgstr "Report"
-#: src/strings.ts:1237
+#: src/strings.ts:1241
msgid "Report an issue"
msgstr "Report an issue"
@@ -4782,55 +4798,55 @@ msgstr "Resend code in ({seconds})"
msgid "Resend code{0}"
msgstr "Resend code{0}"
-#: src/strings.ts:1379
+#: src/strings.ts:1383
msgid "Resend email"
msgstr "Resend email"
-#: src/strings.ts:1795
+#: src/strings.ts:1799
msgid "Reset"
msgstr "Reset"
-#: src/strings.ts:1887
+#: src/strings.ts:1891
msgid "Reset account password"
msgstr "Reset account password"
-#: src/strings.ts:1796
+#: src/strings.ts:1800
msgid "Reset selection"
msgstr "Reset selection"
-#: src/strings.ts:1623
+#: src/strings.ts:1627
msgid "Reset server urls"
msgstr "Reset server urls"
-#: src/strings.ts:2005
+#: src/strings.ts:2009
msgid "Reset sidebar"
msgstr "Reset sidebar"
-#: src/strings.ts:1128
+#: src/strings.ts:1132
msgid "Reset the toolbar to default settings"
msgstr "Reset the toolbar to default settings"
-#: src/strings.ts:1127
+#: src/strings.ts:1131
msgid "Reset toolbar"
msgstr "Reset toolbar"
-#: src/strings.ts:1889
+#: src/strings.ts:1893
msgid "Resetting account password ({progress})"
msgstr "Resetting account password ({progress})"
-#: src/strings.ts:1964
+#: src/strings.ts:1968
msgid "Restart now"
msgstr "Restart now"
-#: src/strings.ts:1622
+#: src/strings.ts:1626
msgid "Restart the app for changes to take effect."
msgstr "Restart the app for changes to take effect."
-#: src/strings.ts:1295
+#: src/strings.ts:1299
msgid "Restart the app to apply the changes"
msgstr "Restart the app to apply the changes"
-#: src/strings.ts:1568
+#: src/strings.ts:1572
msgid "Restart the app."
msgstr "Restart the app."
@@ -4838,11 +4854,11 @@ msgstr "Restart the app."
msgid "Restore"
msgstr "Restore"
-#: src/strings.ts:1215
+#: src/strings.ts:1219
msgid "Restore backup"
msgstr "Restore backup"
-#: src/strings.ts:2378
+#: src/strings.ts:2382
msgid "Restore backup?"
msgstr "Restore backup?"
@@ -4850,15 +4866,15 @@ msgstr "Restore backup?"
msgid "Restore failed"
msgstr "Restore failed"
-#: src/strings.ts:1585
+#: src/strings.ts:1589
msgid "Restore from files"
msgstr "Restore from files"
-#: src/strings.ts:1635
+#: src/strings.ts:1639
msgid "Restore this version"
msgstr "Restore this version"
-#: src/strings.ts:1216
+#: src/strings.ts:1220
msgid "Restore your data from a backup"
msgstr "Restore your data from a backup"
@@ -4874,7 +4890,7 @@ msgstr "Restoring"
msgid "Restoring {collection}..."
msgstr "Restoring {collection}..."
-#: src/strings.ts:1587
+#: src/strings.ts:1591
msgid "Restoring backup..."
msgstr "Restoring backup..."
@@ -4890,7 +4906,7 @@ msgstr "Resubscribe to Pro"
msgid "Reupload"
msgstr "Reupload"
-#: src/strings.ts:1995
+#: src/strings.ts:1999
msgid "Reveal in list"
msgstr "Reveal in list"
@@ -4898,7 +4914,7 @@ msgstr "Reveal in list"
msgid "Revoke"
msgstr "Revoke"
-#: src/strings.ts:1159
+#: src/strings.ts:1163
msgid "Revoke biometric unlocking"
msgstr "Revoke biometric unlocking"
@@ -4906,23 +4922,23 @@ msgstr "Revoke biometric unlocking"
msgid "Revoke vault fingerprint unlock"
msgstr "Revoke vault fingerprint unlock"
-#: src/strings.ts:1273
+#: src/strings.ts:1277
msgid "Roadmap"
msgstr "Roadmap"
-#: src/strings.ts:2023
+#: src/strings.ts:2027
msgid "Root"
msgstr "Root"
-#: src/strings.ts:2002
+#: src/strings.ts:2006
msgid "Rotate left"
msgstr "Rotate left"
-#: src/strings.ts:2003
+#: src/strings.ts:2007
msgid "Rotate right"
msgstr "Rotate right"
-#: src/strings.ts:2259
+#: src/strings.ts:2263
msgid "Row properties"
msgstr "Row properties"
@@ -4930,7 +4946,7 @@ msgstr "Row properties"
msgid "Run file check"
msgstr "Run file check"
-#: src/strings.ts:2034
+#: src/strings.ts:2038
msgid "Safe & encrypted notes"
msgstr "Safe & encrypted notes"
@@ -4986,7 +5002,7 @@ msgstr "Save to file"
msgid "Save to text file"
msgstr "Save to text file"
-#: src/strings.ts:1337
+#: src/strings.ts:1341
msgid "Save your account recovery key"
msgstr "Save your account recovery key"
@@ -5002,15 +5018,15 @@ msgstr "Save your data recovery key in a safe place. You will need it to recover
msgid "Save your recovery codes in a safe place. You will need them to recover your account in case you lose access to your two-factor authentication methods."
msgstr "Save your recovery codes in a safe place. You will need them to recover your account in case you lose access to your two-factor authentication methods."
-#: src/strings.ts:2368
+#: src/strings.ts:2372
msgid "Saved"
msgstr "Saved"
-#: src/strings.ts:2369
+#: src/strings.ts:2373
msgid "Saving"
msgstr "Saving"
-#: src/strings.ts:1563
+#: src/strings.ts:1567
msgid "Saving this note is taking too long. Copy your changes and restart the app to prevent data loss. If the problem persists, please report it to us at support@streetwriters.co."
msgstr "Saving this note is taking too long. Copy your changes and restart the app to prevent data loss. If the problem persists, please report it to us at support@streetwriters.co."
@@ -5022,28 +5038,28 @@ msgstr "Saving zip file ({progress}%). Please wait..."
msgid "Saving zip file. Please wait..."
msgstr "Saving zip file. Please wait..."
-#: src/strings.ts:1697
+#: src/strings.ts:1701
msgid "Scan the QR code with your authenticator app"
msgstr "Scan the QR code with your authenticator app"
-#: src/strings.ts:2394
+#: src/strings.ts:2398
msgid "School work"
msgstr "School work"
-#: src/strings.ts:1487
-#: src/strings.ts:1504
+#: src/strings.ts:1491
+#: src/strings.ts:1508
msgid "Search"
msgstr "Search"
-#: src/strings.ts:1482
+#: src/strings.ts:1486
msgid "Search a note"
msgstr "Search a note"
-#: src/strings.ts:1480
+#: src/strings.ts:1484
msgid "Search a note to link to"
msgstr "Search a note to link to"
-#: src/strings.ts:1513
+#: src/strings.ts:1517
msgid "Search in {routeName}"
msgstr "Search in {routeName}"
@@ -5095,23 +5111,23 @@ msgstr "Search in in Tags"
msgid "Search in in Trash"
msgstr "Search in in Trash"
-#: src/strings.ts:2332
+#: src/strings.ts:2336
msgid "Search languages"
msgstr "Search languages"
-#: src/strings.ts:1468
+#: src/strings.ts:1472
msgid "Search notebooks"
msgstr "Search notebooks"
-#: src/strings.ts:1481
+#: src/strings.ts:1485
msgid "Search or add a tag"
msgstr "Search or add a tag"
-#: src/strings.ts:1809
+#: src/strings.ts:1813
msgid "Search themes"
msgstr "Search themes"
-#: src/strings.ts:1485
+#: src/strings.ts:1489
msgid "Searching for {query}..."
msgstr "Searching for {query}..."
@@ -5119,39 +5135,39 @@ msgstr "Searching for {query}..."
msgid "sec"
msgstr "sec"
-#: src/strings.ts:2118
+#: src/strings.ts:2122
msgid "Security & privacy"
msgstr "Security & privacy"
-#: src/strings.ts:2058
+#: src/strings.ts:2062
msgid "Security key"
msgstr "Security key"
-#: src/strings.ts:1963
+#: src/strings.ts:1967
msgid "Security key successfully registered."
msgstr "Security key successfully registered."
-#: src/strings.ts:1274
+#: src/strings.ts:1278
msgid "See what the future of Notesnook is going to be like."
msgstr "See what the future of Notesnook is going to be like."
-#: src/strings.ts:1311
+#: src/strings.ts:1315
msgid "Select"
msgstr "Select"
-#: src/strings.ts:1584
+#: src/strings.ts:1588
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:2073
+#: src/strings.ts:2077
msgid "Select a theme"
msgstr "Select a theme"
-#: src/strings.ts:1206
+#: src/strings.ts:1210
msgid "Select backup directory"
msgstr "Select backup directory"
-#: src/strings.ts:1830
+#: src/strings.ts:1834
msgid "Select backup file"
msgstr "Select backup file"
@@ -5167,15 +5183,15 @@ msgstr "Select date"
msgid "Select day of the week to repeat the reminder."
msgstr "Select day of the week to repeat the reminder."
-#: src/strings.ts:1738
+#: src/strings.ts:1742
msgid "Select files to import"
msgstr "Select files to import"
-#: src/strings.ts:1581
+#: src/strings.ts:1585
msgid "Select folder where Notesnook backup files are stored to view and restore them from the app"
msgstr "Select folder where Notesnook backup files are stored to view and restore them from the app"
-#: src/strings.ts:1582
+#: src/strings.ts:1586
msgid "Select folder with backup files"
msgstr "Select folder with backup files"
@@ -5183,7 +5199,7 @@ msgstr "Select folder with backup files"
msgid "Select how you would like to recieve the code"
msgstr "Select how you would like to recieve the code"
-#: src/strings.ts:2327
+#: src/strings.ts:2331
msgid "Select language"
msgstr "Select language"
@@ -5203,7 +5219,7 @@ msgstr "Select notebooks you want to add note(s) to."
msgid "Select nth day of the month to repeat the reminder."
msgstr "Select nth day of the month to repeat the reminder."
-#: src/strings.ts:1792
+#: src/strings.ts:1796
msgid "Select profile picture"
msgstr "Select profile picture"
@@ -5211,7 +5227,7 @@ msgstr "Select profile picture"
msgid "Select the folder that includes your backup files to list them here."
msgstr "Select the folder that includes your backup files to list them here."
-#: src/strings.ts:2105
+#: src/strings.ts:2109
msgid "Select the languages the spell checker should check in."
msgstr "Select the languages the spell checker should check in."
@@ -5223,7 +5239,7 @@ msgstr "SELECTED NOTE"
msgid "Self destruct"
msgstr "Self destruct"
-#: src/strings.ts:2140
+#: src/strings.ts:2144
msgid "Send"
msgstr "Send"
@@ -5239,47 +5255,47 @@ msgstr "Send code via email"
msgid "Send code via SMS"
msgstr "Send code via SMS"
-#: src/strings.ts:1834
+#: src/strings.ts:1838
msgid "Send recovery email"
msgstr "Send recovery email"
-#: src/strings.ts:1870
+#: src/strings.ts:1874
msgid "Sending recovery email"
msgstr "Sending recovery email"
-#: src/strings.ts:1621
+#: src/strings.ts:1625
msgid "Server url changed"
msgstr "Server url changed"
-#: src/strings.ts:1624
+#: src/strings.ts:1628
msgid "Server urls reset"
msgstr "Server urls reset"
-#: src/strings.ts:1602
+#: src/strings.ts:1606
msgid "Server used for login/sign up and authentication."
msgstr "Server used for login/sign up and authentication."
-#: src/strings.ts:1607
+#: src/strings.ts:1611
msgid "Server used to host your published notes."
msgstr "Server used to host your published notes."
-#: src/strings.ts:1605
+#: src/strings.ts:1609
msgid "Server used to receive important notifications & events."
msgstr "Server used to receive important notifications & events."
-#: src/strings.ts:1600
+#: src/strings.ts:1604
msgid "Server used to sync your notes & other data between devices."
msgstr "Server used to sync your notes & other data between devices."
-#: src/strings.ts:1613
+#: src/strings.ts:1617
msgid "Server with host {host} not found."
msgstr "Server with host {host} not found."
-#: src/strings.ts:2113
+#: src/strings.ts:2117
msgid "Servers"
msgstr "Servers"
-#: src/strings.ts:2114
+#: src/strings.ts:2118
msgid "Servers configuration"
msgstr "Servers configuration"
@@ -5287,7 +5303,7 @@ msgstr "Servers configuration"
msgid "Session expired"
msgstr "Session expired"
-#: src/strings.ts:2166
+#: src/strings.ts:2170
msgid "Sessions"
msgstr "Sessions"
@@ -5307,27 +5323,27 @@ msgstr "Set as default"
msgid "Set as light theme"
msgstr "Set as light theme"
-#: src/strings.ts:1310
+#: src/strings.ts:1314
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:1287
+#: src/strings.ts:1291
msgid "Set full name"
msgstr "Set full name"
-#: src/strings.ts:1232
+#: src/strings.ts:1236
msgid "Set snooze time in minutes"
msgstr "Set snooze time in minutes"
-#: src/strings.ts:1231
+#: src/strings.ts:1235
msgid "Set the default time to snooze a reminder to when you press the snooze button on a notification."
msgstr "Set the default time to snooze a reminder to when you press the snooze button on a notification."
-#: src/strings.ts:1203
+#: src/strings.ts:1207
msgid "Set the interval to create a backup (with attachments) automatically."
msgstr "Set the interval to create a backup (with attachments) automatically."
-#: src/strings.ts:1200
+#: src/strings.ts:1204
msgid "Set the interval to create a partial backup (without attachments) automatically."
msgstr "Set the interval to create a partial backup (without attachments) automatically."
@@ -5336,24 +5352,24 @@ msgid "Set your name"
msgstr "Set your name"
#: src/strings.ts:388
-#: src/strings.ts:1500
+#: src/strings.ts:1504
msgid "Settings"
msgstr "Settings"
-#: src/strings.ts:1179
-#: src/strings.ts:1180
+#: src/strings.ts:1183
+#: src/strings.ts:1184
msgid "Setup a new password for app lock"
msgstr "Setup a new password for app lock"
-#: src/strings.ts:1176
+#: src/strings.ts:1180
msgid "Setup a password to lock the app"
msgstr "Setup a password to lock the app"
-#: src/strings.ts:1174
+#: src/strings.ts:1178
msgid "Setup a pin to lock the app"
msgstr "Setup a pin to lock the app"
-#: src/strings.ts:2158
+#: src/strings.ts:2162
msgid ""
"Setup an HTTP/HTTPS/SOCKS proxy.\n"
"For example:\n"
@@ -5369,11 +5385,11 @@ msgstr ""
"http://username:password@foobar:80\n"
"To remove the proxy, simply erase everything in the input."
-#: src/strings.ts:1175
+#: src/strings.ts:1179
msgid "Setup app lock password"
msgstr "Setup app lock password"
-#: src/strings.ts:1173
+#: src/strings.ts:1177
msgid "Setup app lock pin"
msgstr "Setup app lock pin"
@@ -5397,11 +5413,11 @@ msgstr "Setup using SMS"
msgid "Share"
msgstr "Share"
-#: src/strings.ts:1666
+#: src/strings.ts:1670
msgid "Share & append to notes from anywhere"
msgstr "Share & append to notes from anywhere"
-#: src/strings.ts:1318
+#: src/strings.ts:1322
msgid "Share backup"
msgstr "Share backup"
@@ -5409,7 +5425,7 @@ msgstr "Share backup"
msgid "Share note"
msgstr "Share note"
-#: src/strings.ts:1762
+#: src/strings.ts:1766
msgid "Share Notesnook with friends!"
msgstr "Share Notesnook with friends!"
@@ -5425,7 +5441,7 @@ msgstr "shortcut"
msgid "Shortcut"
msgstr "Shortcut"
-#: src/strings.ts:1975
+#: src/strings.ts:1979
msgid "Shortcut removed"
msgstr "Shortcut removed"
@@ -5453,11 +5469,11 @@ msgstr "Signup failed"
msgid "Silent"
msgstr "Silent"
-#: src/strings.ts:2301
+#: src/strings.ts:2305
msgid "Sink list item"
msgstr "Sink list item"
-#: src/strings.ts:2016
+#: src/strings.ts:2020
msgid "Size"
msgstr "Size"
@@ -5465,7 +5481,7 @@ msgstr "Size"
msgid "Skip"
msgstr "Skip"
-#: src/strings.ts:1804
+#: src/strings.ts:1808
msgid "Skip & go directly to the app"
msgstr "Skip & go directly to the app"
@@ -5473,19 +5489,19 @@ msgstr "Skip & go directly to the app"
msgid "Skip introduction"
msgstr "Skip introduction"
-#: src/strings.ts:1579
+#: src/strings.ts:1583
msgid "Some exported notes are locked, Unlock to export them"
msgstr "Some exported notes are locked, Unlock to export them"
-#: src/strings.ts:1453
+#: src/strings.ts:1457
msgid "Some notes are published"
msgstr "Some notes are published"
-#: src/strings.ts:1641
+#: src/strings.ts:1645
msgid "Something went wrong"
msgstr "Something went wrong"
-#: src/strings.ts:2000
+#: src/strings.ts:2004
msgid "Sort"
msgstr "Sort"
@@ -5493,19 +5509,19 @@ msgstr "Sort"
msgid "Sort by"
msgstr "Sort by"
-#: src/strings.ts:2124
+#: src/strings.ts:2128
msgid "Source code"
msgstr "Source code"
-#: src/strings.ts:2328
+#: src/strings.ts:2332
msgid "Spaces"
msgstr "Spaces"
-#: src/strings.ts:2101
+#: src/strings.ts:2105
msgid "Spell check"
msgstr "Spell check"
-#: src/strings.ts:2266
+#: src/strings.ts:2270
msgid "Split cells"
msgstr "Split cells"
@@ -5513,23 +5529,23 @@ msgstr "Split cells"
msgid "Start"
msgstr "Start"
-#: src/strings.ts:1805
+#: src/strings.ts:1809
msgid "Start account recovery"
msgstr "Start account recovery"
-#: src/strings.ts:1800
+#: src/strings.ts:1804
msgid "Start import"
msgstr "Start import"
-#: src/strings.ts:1797
+#: src/strings.ts:1801
msgid "Start importing now"
msgstr "Start importing now"
-#: src/strings.ts:2089
+#: src/strings.ts:2093
msgid "Start minimized"
msgstr "Start minimized"
-#: src/strings.ts:1732
+#: src/strings.ts:1736
msgid "Start over"
msgstr "Start over"
@@ -5541,27 +5557,27 @@ msgstr "Start writing to create a new note"
msgid "Start writing to save your note."
msgstr "Start writing to save your note."
-#: src/strings.ts:1576
+#: src/strings.ts:1580
msgid "Start writing your note..."
msgstr "Start writing your note..."
-#: src/strings.ts:2197
+#: src/strings.ts:2201
msgid "Status"
msgstr "Status"
-#: src/strings.ts:1523
+#: src/strings.ts:1527
msgid "Streaming not supported"
msgstr "Streaming not supported"
-#: src/strings.ts:2232
+#: src/strings.ts:2236
msgid "Strikethrough"
msgstr "Strikethrough"
-#: src/strings.ts:2199
+#: src/strings.ts:2203
msgid "Subgroup 1"
msgstr "Subgroup 1"
-#: src/strings.ts:1969
+#: src/strings.ts:1973
msgid "Subgroup added"
msgstr "Subgroup added"
@@ -5581,7 +5597,7 @@ msgstr "Subscribed on Android"
msgid "Subscribed on iOS"
msgstr "Subscribed on iOS"
-#: src/strings.ts:1282
+#: src/strings.ts:1286
msgid "Subscribed on web"
msgstr "Subscribed on web"
@@ -5593,7 +5609,7 @@ msgstr "Subscribed on Web"
msgid "Subscribed using gift card"
msgstr "Subscribed using gift card"
-#: src/strings.ts:2243
+#: src/strings.ts:2247
msgid "Subscript"
msgstr "Subscript"
@@ -5617,15 +5633,15 @@ msgstr "Sun"
msgid "Sunday"
msgstr "Sunday"
-#: src/strings.ts:2244
+#: src/strings.ts:2248
msgid "Superscript"
msgstr "Superscript"
-#: src/strings.ts:1446
+#: src/strings.ts:1450
msgid "Switch to search/replace mode"
msgstr "Switch to search/replace mode"
-#: src/strings.ts:2110
+#: src/strings.ts:2114
msgid "Sync"
msgstr "Sync"
@@ -5633,7 +5649,7 @@ msgstr "Sync"
msgid "Sync failed"
msgstr "Sync failed"
-#: src/strings.ts:1340
+#: src/strings.ts:1344
msgid "Sync is disabled"
msgstr "Sync is disabled"
@@ -5641,7 +5657,7 @@ msgstr "Sync is disabled"
msgid "Sync off"
msgstr "Sync off"
-#: src/strings.ts:1598
+#: src/strings.ts:1602
msgid "Sync server"
msgstr "Sync server"
@@ -5665,11 +5681,11 @@ msgstr "Syncing"
msgid "Syncing your data"
msgstr "Syncing your data"
-#: src/strings.ts:1677
+#: src/strings.ts:1681
msgid "Syncing your notes"
msgstr "Syncing your notes"
-#: src/strings.ts:2313
+#: src/strings.ts:2317
msgid "Table"
msgstr "Table"
@@ -5677,7 +5693,7 @@ msgstr "Table"
msgid "Table of contents"
msgstr "Table of contents"
-#: src/strings.ts:2257
+#: src/strings.ts:2261
msgid "Table settings"
msgstr "Table settings"
@@ -5698,31 +5714,31 @@ msgid "tags"
msgstr "tags"
#: src/strings.ts:317
-#: src/strings.ts:1501
+#: src/strings.ts:1505
msgid "Tags"
msgstr "Tags"
-#: src/strings.ts:1518
+#: src/strings.ts:1522
msgid "Take a backup before logging out"
msgstr "Take a backup before logging out"
-#: src/strings.ts:1195
+#: src/strings.ts:1199
msgid "Take a full backup of your data with all attachments"
msgstr "Take a full backup of your data with all attachments"
-#: src/strings.ts:1197
+#: src/strings.ts:1201
msgid "Take a partial backup of your data that does not include attachments"
msgstr "Take a partial backup of your data that does not include attachments"
-#: src/strings.ts:2312
+#: src/strings.ts:2316
msgid "Take a photo using camera"
msgstr "Take a photo using camera"
-#: src/strings.ts:1350
+#: src/strings.ts:1354
msgid "Take note"
msgstr "Take note"
-#: src/strings.ts:1631
+#: src/strings.ts:1635
msgid "Take notes privately."
msgstr "Take notes privately."
@@ -5734,23 +5750,23 @@ msgstr "Taking too long? Reload editor"
msgid "Tap and hold to enable multi-select."
msgstr "Tap and hold to enable multi-select."
-#: src/strings.ts:1434
+#: src/strings.ts:1438
msgid "Tap here to change sorting"
msgstr "Tap here to change sorting"
-#: src/strings.ts:1438
+#: src/strings.ts:1442
msgid "Tap here to jump to a section"
msgstr "Tap here to jump to a section"
-#: src/strings.ts:1346
+#: src/strings.ts:1350
msgid "Tap here to update to the latest version"
msgstr "Tap here to update to the latest version"
-#: src/strings.ts:1567
+#: src/strings.ts:1571
msgid "Tap on \"Dismiss\" and copy the contents of your note so they are not lost."
msgstr "Tap on \"Dismiss\" and copy the contents of your note so they are not lost."
-#: src/strings.ts:1349
+#: src/strings.ts:1353
msgid "Tap on \"Take note\" to add a note."
msgstr "Tap on \"Take note\" to add a note."
@@ -5770,7 +5786,7 @@ msgstr "Tap to deselect"
msgid "Tap to stop reordering"
msgstr "Tap to stop reordering"
-#: src/strings.ts:1330
+#: src/strings.ts:1334
msgid "Tap to try again"
msgstr "Tap to try again"
@@ -5778,19 +5794,19 @@ msgstr "Tap to try again"
msgid "Tap twice to confirm you have saved the recovery key."
msgstr "Tap twice to confirm you have saved the recovery key."
-#: src/strings.ts:2318
+#: src/strings.ts:2322
msgid "Task list"
msgstr "Task list"
-#: src/strings.ts:2387
+#: src/strings.ts:2391
msgid "Tasks"
msgstr "Tasks"
-#: src/strings.ts:1142
+#: src/strings.ts:1146
msgid "Telemetry"
msgstr "Telemetry"
-#: src/strings.ts:1472
+#: src/strings.ts:1476
msgid ""
"Tell us more about the issue you are facing. \n"
"For example:\n"
@@ -5806,11 +5822,11 @@ msgstr ""
"- Steps to reproduce the issue \n"
"- Things you have tried etc."
-#: src/strings.ts:1471
+#: src/strings.ts:1475
msgid "Tell us what happened"
msgstr "Tell us what happened"
-#: src/strings.ts:1263
+#: src/strings.ts:1267
msgid "Terms of service"
msgstr "Terms of service"
@@ -5818,27 +5834,27 @@ msgstr "Terms of service"
msgid "Terms of Service"
msgstr "Terms of Service"
-#: src/strings.ts:1597
+#: src/strings.ts:1601
msgid "Test connection"
msgstr "Test connection"
-#: src/strings.ts:1620
+#: src/strings.ts:1624
msgid "Test connection before changing server urls"
msgstr "Test connection before changing server urls"
-#: src/strings.ts:2255
+#: src/strings.ts:2259
msgid "Text color"
msgstr "Text color"
-#: src/strings.ts:2253
+#: src/strings.ts:2257
msgid "Text direction"
msgstr "Text direction"
-#: src/strings.ts:1761
+#: src/strings.ts:1765
msgid "Thank you for choosing end-to-end encrypted note taking. Now you can sync your notes to unlimited devices."
msgstr "Thank you for choosing end-to-end encrypted note taking. Now you can sync your notes to unlimited devices."
-#: src/strings.ts:2025
+#: src/strings.ts:2029
msgid "Thank you for reporting!"
msgstr "Thank you for reporting!"
@@ -5846,11 +5862,11 @@ msgstr "Thank you for reporting!"
msgid "Thank you for updating Notesnook! We will be applying some minor changes for a better note taking experience."
msgstr "Thank you for updating Notesnook! We will be applying some minor changes for a better note taking experience."
-#: src/strings.ts:2050
+#: src/strings.ts:2054
msgid "Thank you. You are the proof that privacy always comes first."
msgstr "Thank you. You are the proof that privacy always comes first."
-#: src/strings.ts:1618
+#: src/strings.ts:1622
msgid "The {title} at {url} is not compatible with this client."
msgstr "The {title} at {url} is not compatible with this client."
@@ -5858,7 +5874,7 @@ msgstr "The {title} at {url} is not compatible with this client."
msgid "The information above will be publically available at"
msgstr "The information above will be publically available at"
-#: src/strings.ts:2057
+#: src/strings.ts:2061
msgid "The password/pin for unlocking the app."
msgstr "The password/pin for unlocking the app."
@@ -5870,15 +5886,15 @@ msgstr "The reminder will repeat daily at {date}."
msgid "The reminder will repeat every year on {date}."
msgstr "The reminder will repeat every year on {date}."
-#: src/strings.ts:1687
+#: src/strings.ts:1691
msgid "The reminder will start on {date} at {time}."
msgstr "The reminder will start on {date} at {time}."
-#: src/strings.ts:2060
+#: src/strings.ts:2064
msgid "The security key for unlocking the app. This is the most secure method."
msgstr "The security key for unlocking the app. This is the most secure method."
-#: src/strings.ts:1616
+#: src/strings.ts:1620
msgid "The URL you have given ({url}) does not point to the {server}."
msgstr "The URL you have given ({url}) does not point to the {server}."
@@ -5890,11 +5906,11 @@ msgstr "Themes"
msgid "There are no blocks in this note."
msgstr "There are no blocks in this note."
-#: src/strings.ts:2212
+#: src/strings.ts:2216
msgid "These items will be **kept in your Trash for {interval} days** after which they will be permanently deleted."
msgstr "These items will be **kept in your Trash for {interval} days** after which they will be permanently deleted."
-#: src/strings.ts:1895
+#: src/strings.ts:1899
msgid "This action is IRREVERSIBLE."
msgstr "This action is IRREVERSIBLE."
@@ -5902,35 +5918,35 @@ msgstr "This action is IRREVERSIBLE."
msgid "This device"
msgstr "This device"
-#: src/strings.ts:1658
+#: src/strings.ts:1662
msgid "This error can be fixed by rebuilding the search index. This action won't result in any kind of data loss."
msgstr "This error can be fixed by rebuilding the search index. This action won't result in any kind of data loss."
-#: src/strings.ts:1650
+#: src/strings.ts:1654
msgid "This error can only be fixed by wiping & reseting the database. Beware that this will wipe all your data inside the database with no way to recover it later on. This WILL NOT change/affect/delete/wipe your data on the server but ONLY on this device."
msgstr "This error can only be fixed by wiping & reseting the database. Beware that this will wipe all your data inside the database with no way to recover it later on. This WILL NOT change/affect/delete/wipe your data on the server but ONLY on this device."
-#: src/strings.ts:1654
+#: src/strings.ts:1658
msgid "This error can only be fixed by wiping & reseting the Key Store and the database. This WILL NOT change/affect/delete/wipe your data on the server but ONLY on this device."
msgstr "This error can only be fixed by wiping & reseting the Key Store and the database. This WILL NOT change/affect/delete/wipe your data on the server but ONLY on this device."
-#: src/strings.ts:1652
+#: src/strings.ts:1656
msgid "This error means the at rest encryption key could not be decrypted. This can be due to data corruption or implementation change."
msgstr "This error means the at rest encryption key could not be decrypted. This can be due to data corruption or implementation change."
-#: src/strings.ts:1648
+#: src/strings.ts:1652
msgid "This error usually means the database file is either corrupt or it could not be decrypted."
msgstr "This error usually means the database file is either corrupt or it could not be decrypted."
-#: src/strings.ts:1656
+#: src/strings.ts:1660
msgid "This error usually means the search index is corrupted."
msgstr "This error usually means the search index is corrupted."
-#: src/strings.ts:1909
+#: src/strings.ts:1913
msgid "This image cannot be previewed"
msgstr "This image cannot be previewed"
-#: src/strings.ts:2020
+#: src/strings.ts:2024
msgid "This may take a while"
msgstr "This may take a while"
@@ -5939,7 +5955,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:1569
+#: src/strings.ts:1573
msgid "This note is locked"
msgstr "This note is locked"
@@ -5959,11 +5975,11 @@ msgstr "This note is not referenced in other notes."
msgid "This note will be published to a public URL."
msgstr "This note will be published to a public URL."
-#: src/strings.ts:2066
+#: src/strings.ts:2070
msgid "This username will be used to distinguish between different credentials in your security key. Make sure it is unique."
msgstr "This username will be used to distinguish between different credentials in your security key. Make sure it is unique."
-#: src/strings.ts:1280
+#: src/strings.ts:1284
msgid "This version of Notesnook app does not support in-app purchases. Kindly login on the Notesnook web app to make the purchase."
msgstr "This version of Notesnook app does not support in-app purchases. Kindly login on the Notesnook web app to make the purchase."
@@ -5975,11 +5991,11 @@ msgstr "Thu"
msgid "Thursday"
msgstr "Thursday"
-#: src/strings.ts:1817
+#: src/strings.ts:1821
msgid "Time"
msgstr "Time"
-#: src/strings.ts:1116
+#: src/strings.ts:1120
msgid "Time format"
msgstr "Time format"
@@ -5992,52 +6008,52 @@ msgstr "TIP"
msgid "Title"
msgstr "Title"
-#: src/strings.ts:1137
+#: src/strings.ts:1141
msgid "Title format"
msgstr "Title format"
-#: src/strings.ts:1168
+#: src/strings.ts:1172
msgid "To use app lock, you must enable biometrics such as Fingerprint lock or Face ID on your phone."
msgstr "To use app lock, you must enable biometrics such as Fingerprint lock or Face ID on your phone."
-#: src/strings.ts:1787
+#: src/strings.ts:1791
msgid "Toggle dark/light mode"
msgstr "Toggle dark/light mode"
-#: src/strings.ts:2325
+#: src/strings.ts:2329
msgid "Toggle indentation mode"
msgstr "Toggle indentation mode"
-#: src/strings.ts:2354
+#: src/strings.ts:2358
msgid "Toggle replace"
msgstr "Toggle replace"
-#: src/strings.ts:2107
+#: src/strings.ts:2111
msgid "Toolbar"
msgstr "Toolbar"
-#: src/strings.ts:1303
-#: src/strings.ts:1499
+#: src/strings.ts:1307
+#: src/strings.ts:1503
msgid "Trash"
msgstr "Trash"
-#: src/strings.ts:1302
+#: src/strings.ts:1306
msgid "Trash cleared successfully!"
msgstr "Trash cleared successfully!"
-#: src/strings.ts:1308
+#: src/strings.ts:1312
msgid "Trash gets automatically cleaned up after {days} days"
msgstr "Trash gets automatically cleaned up after {days} days"
-#: src/strings.ts:1306
+#: src/strings.ts:1310
msgid "Trash gets automatically cleaned up daily"
msgstr "Trash gets automatically cleaned up daily"
-#: src/strings.ts:1442
+#: src/strings.ts:1446
msgid "Try compact mode to fit more items on screen"
msgstr "Try compact mode to fit more items on screen"
-#: src/strings.ts:1799
+#: src/strings.ts:1803
msgid "Try free for 14 days"
msgstr "Try free for 14 days"
@@ -6077,23 +6093,23 @@ msgstr "Two-factor authentication"
msgid "Two-factor authentication enabled"
msgstr "Two-factor authentication enabled"
-#: src/strings.ts:1479
+#: src/strings.ts:1483
msgid "Type # to search for headings"
msgstr "Type # to search for headings"
-#: src/strings.ts:1486
+#: src/strings.ts:1490
msgid "Type a keyword"
msgstr "Type a keyword"
-#: src/strings.ts:1524
+#: src/strings.ts:1528
msgid "Unable to resolve download url"
msgstr "Unable to resolve download url"
-#: src/strings.ts:1527
+#: src/strings.ts:1531
msgid "Unable to send 2FA code"
msgstr "Unable to send 2FA code"
-#: src/strings.ts:2231
+#: src/strings.ts:2235
msgid "Underline"
msgstr "Underline"
@@ -6117,7 +6133,7 @@ msgstr "Unlink notebook"
msgid "Unlock"
msgstr "Unlock"
-#: src/strings.ts:1360
+#: src/strings.ts:1364
msgid "Unlock more colors with Notesnook Pro"
msgstr "Unlock more colors with Notesnook Pro"
@@ -6130,11 +6146,11 @@ msgstr "Unlock note"
msgid "Unlock note to delete it"
msgstr "Unlock note to delete it"
-#: src/strings.ts:1188
+#: src/strings.ts:1192
msgid "Unlock the app with biometric authentication. This requires biometrics to be enabled on your device."
msgstr "Unlock the app with biometric authentication. This requires biometrics to be enabled on your device."
-#: src/strings.ts:1907
+#: src/strings.ts:1911
msgid "Unlock vault"
msgstr "Unlock vault"
@@ -6146,7 +6162,7 @@ msgstr "Unlock with biometrics"
msgid "Unlock with password once to enable biometric access."
msgstr "Unlock with password once to enable biometric access."
-#: src/strings.ts:1802
+#: src/strings.ts:1806
msgid "Unlock with security key"
msgstr "Unlock with security key"
@@ -6154,11 +6170,11 @@ msgstr "Unlock with security key"
msgid "Unlock your notes"
msgstr "Unlock your notes"
-#: src/strings.ts:1158
+#: src/strings.ts:1162
msgid "Unlock your vault with biometric authentication"
msgstr "Unlock your vault with biometric authentication"
-#: src/strings.ts:1685
+#: src/strings.ts:1689
msgid "Unlocking"
msgstr "Unlocking"
@@ -6174,16 +6190,16 @@ msgstr "Unpin from notifications"
msgid "Unpublish"
msgstr "Unpublish"
-#: src/strings.ts:1454
+#: src/strings.ts:1458
msgid "Unpublish notes to delete them"
msgstr "Unpublish notes to delete them"
-#: src/strings.ts:2061
+#: src/strings.ts:2065
msgid "Unregister"
msgstr "Unregister"
#: src/strings.ts:210
-#: src/strings.ts:2334
+#: src/strings.ts:2338
msgid "Untitled"
msgstr "Untitled"
@@ -6195,39 +6211,39 @@ msgstr "Update"
msgid "Update available"
msgstr "Update available"
-#: src/strings.ts:1347
+#: src/strings.ts:1351
msgid "Update now"
msgstr "Update now"
-#: src/strings.ts:1893
+#: src/strings.ts:1897
msgid "Upgrade now"
msgstr "Upgrade now"
-#: src/strings.ts:1914
+#: src/strings.ts:1918
msgid "Upgrade to Notesnook Pro to add colors."
msgstr "Upgrade to Notesnook Pro to add colors."
-#: src/strings.ts:1916
+#: src/strings.ts:1920
msgid "Upgrade to Notesnook Pro to add more notebooks."
msgstr "Upgrade to Notesnook Pro to add more notebooks."
-#: src/strings.ts:1915
+#: src/strings.ts:1919
msgid "Upgrade to Notesnook Pro to create more tags."
msgstr "Upgrade to Notesnook Pro to create more tags."
-#: src/strings.ts:1919
+#: src/strings.ts:1923
msgid "Upgrade to Notesnook Pro to customize the toolbar."
msgstr "Upgrade to Notesnook Pro to customize the toolbar."
-#: src/strings.ts:1918
+#: src/strings.ts:1922
msgid "Upgrade to Notesnook Pro to use custom toolbar presets."
msgstr "Upgrade to Notesnook Pro to use custom toolbar presets."
-#: src/strings.ts:1917
+#: src/strings.ts:1921
msgid "Upgrade to Notesnook Pro to use the notes vault."
msgstr "Upgrade to Notesnook Pro to use the notes vault."
-#: src/strings.ts:1920
+#: src/strings.ts:1924
msgid "Upgrade to Notesnook Pro to use this feature."
msgstr "Upgrade to Notesnook Pro to use this feature."
@@ -6239,12 +6255,12 @@ msgstr "Upgrade to Pro"
msgid "Upload"
msgstr "Upload"
-#: src/strings.ts:2311
+#: src/strings.ts:2315
msgid "Upload from disk"
msgstr "Upload from disk"
#: src/strings.ts:503
-#: src/strings.ts:1626
+#: src/strings.ts:1630
msgid "Uploaded"
msgstr "Uploaded"
@@ -6265,7 +6281,7 @@ msgstr "Uploads"
msgid "Urgent"
msgstr "Urgent"
-#: src/strings.ts:1764
+#: src/strings.ts:1768
msgid "Use"
msgstr "Use"
@@ -6273,11 +6289,11 @@ msgstr "Use"
msgid "Use {keyboardShortcut}+click to select multiple notebooks"
msgstr "Use {keyboardShortcut}+click to select multiple notebooks"
-#: src/strings.ts:1777
+#: src/strings.ts:1781
msgid "Use a backup file"
msgstr "Use a backup file"
-#: src/strings.ts:1875
+#: src/strings.ts:1879
msgid "Use a data recovery key to reset your account password."
msgstr "Use a data recovery key to reset your account password."
@@ -6289,7 +6305,7 @@ msgstr "Use account password"
msgid "Use an authenticator app to generate 2FA codes."
msgstr "Use an authenticator app to generate 2FA codes."
-#: src/strings.ts:2147
+#: src/strings.ts:2151
msgid "Use custom DNS"
msgstr "Use custom DNS"
@@ -6297,23 +6313,23 @@ msgstr "Use custom DNS"
msgid "Use dark mode for the app"
msgstr "Use dark mode for the app"
-#: src/strings.ts:1596
+#: src/strings.ts:1600
msgid "Use encryption key"
msgstr "Use encryption key"
-#: src/strings.ts:1140
+#: src/strings.ts:1144
msgid "Use markdown shortcuts in the editor"
msgstr "Use markdown shortcuts in the editor"
-#: src/strings.ts:2100
+#: src/strings.ts:2104
msgid "Use native OS titlebar instead of replacing it with a custom one. Requires app restart for changes to take effect."
msgstr "Use native OS titlebar instead of replacing it with a custom one. Requires app restart for changes to take effect."
-#: src/strings.ts:2098
+#: src/strings.ts:2102
msgid "Use native titlebar"
msgstr "Use native titlebar"
-#: src/strings.ts:1774
+#: src/strings.ts:1778
msgid "Use recovery key"
msgstr "Use recovery key"
@@ -6351,23 +6367,23 @@ msgstr "Use this if changes made on this device are not appearing on other devic
msgid "User verification failed"
msgstr "User verification failed"
-#: src/strings.ts:2227
+#: src/strings.ts:2231
msgid "Using {instance} (v{version})"
msgstr "Using {instance} (v{version})"
-#: src/strings.ts:2225
+#: src/strings.ts:2229
msgid "Using official Notesnook instance"
msgstr "Using official Notesnook instance"
-#: src/strings.ts:1684
+#: src/strings.ts:1688
msgid "v{version} available"
msgstr "v{version} available"
-#: src/strings.ts:1151
+#: src/strings.ts:1155
msgid "Vault"
msgstr "Vault"
-#: src/strings.ts:1967
+#: src/strings.ts:1971
msgid "Vault cleared"
msgstr "Vault cleared"
@@ -6375,7 +6391,7 @@ msgstr "Vault cleared"
msgid "Vault created"
msgstr "Vault created"
-#: src/strings.ts:1968
+#: src/strings.ts:1972
msgid "Vault deleted"
msgstr "Vault deleted"
@@ -6383,15 +6399,15 @@ msgstr "Vault deleted"
msgid "Vault fingerprint unlock"
msgstr "Vault fingerprint unlock"
-#: src/strings.ts:1906
+#: src/strings.ts:1910
msgid "Vault locked"
msgstr "Vault locked"
-#: src/strings.ts:1905
+#: src/strings.ts:1909
msgid "Vault unlocked"
msgstr "Vault unlocked"
-#: src/strings.ts:1377
+#: src/strings.ts:1381
msgid "Verification email sent"
msgstr "Verification email sent"
@@ -6407,11 +6423,11 @@ msgstr "Verify subscription"
msgid "Verify your subscription to Notesnook Pro"
msgstr "Verify your subscription to Notesnook Pro"
-#: src/strings.ts:1878
+#: src/strings.ts:1882
msgid "Verifying 2FA code"
msgstr "Verifying 2FA code"
-#: src/strings.ts:1864
+#: src/strings.ts:1868
msgid "Verifying your email"
msgstr "Verifying your email"
@@ -6431,11 +6447,11 @@ msgstr "Videos"
msgid "View all linked notebooks"
msgstr "View all linked notebooks"
-#: src/strings.ts:1250
+#: src/strings.ts:1254
msgid "View and share debug logs"
msgstr "View and share debug logs"
-#: src/strings.ts:1722
+#: src/strings.ts:1726
msgid "View receipt"
msgstr "View receipt"
@@ -6443,7 +6459,7 @@ msgstr "View receipt"
msgid "View recovery codes"
msgstr "View recovery codes"
-#: src/strings.ts:2127
+#: src/strings.ts:2131
msgid "View source code"
msgstr "View source code"
@@ -6455,15 +6471,15 @@ msgstr "View your recovery codes to recover your account in case you lose access
msgid "Visit homepage"
msgstr "Visit homepage"
-#: src/strings.ts:1327
+#: src/strings.ts:1331
msgid "Wait 30 seconds to try again"
msgstr "Wait 30 seconds to try again"
-#: src/strings.ts:1627
+#: src/strings.ts:1631
msgid "Waiting for upload"
msgstr "Waiting for upload"
-#: src/strings.ts:1886
+#: src/strings.ts:1890
msgid "We are creating a backup of your data. Please wait..."
msgstr "We are creating a backup of your data. Please wait..."
@@ -6471,27 +6487,27 @@ 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:1367
+#: src/strings.ts:1371
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:2142
+#: src/strings.ts:2146
msgid "We send you occasional promotional offers & product updates on your email (once every month)."
msgstr "We send you occasional promotional offers & product updates on your email (once every month)."
-#: src/strings.ts:1147
+#: src/strings.ts:1151
msgid "We will send you occasional promotional offers & product updates on your email (sent once every month)."
msgstr "We will send you occasional promotional offers & product updates on your email (sent once every month)."
-#: src/strings.ts:1331
+#: src/strings.ts:1335
msgid "We would love to know what you think!"
msgstr "We would love to know what you think!"
-#: src/strings.ts:2296
+#: src/strings.ts:2300
msgid "Web clip settings"
msgstr "Web clip settings"
-#: src/strings.ts:2004
+#: src/strings.ts:2008
msgid "Website"
msgstr "Website"
@@ -6508,7 +6524,7 @@ msgid "Week"
msgstr "Week"
#: src/strings.ts:168
-#: src/strings.ts:1544
+#: src/strings.ts:1548
msgid "Weekly"
msgstr "Weekly"
@@ -6516,27 +6532,27 @@ msgstr "Weekly"
msgid "Welcome back, {email}"
msgstr "Welcome back, {email}"
-#: src/strings.ts:1863
+#: src/strings.ts:1867
msgid "Welcome back!"
msgstr "Welcome back!"
-#: src/strings.ts:2048
+#: src/strings.ts:2052
msgid "Welcome to Notesnook Pro"
msgstr "Welcome to Notesnook Pro"
-#: src/strings.ts:1369
+#: src/strings.ts:1373
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:1642
+#: src/strings.ts:1646
msgid "What went wrong?"
msgstr "What went wrong?"
-#: src/strings.ts:2357
+#: src/strings.ts:2361
msgid "Width"
msgstr "Width"
-#: src/strings.ts:2385
+#: src/strings.ts:2389
msgid "Work & Office"
msgstr "Work & Office"
@@ -6544,15 +6560,15 @@ msgstr "Work & Office"
msgid "Write notes with freedom, no spying, no tracking."
msgstr "Write notes with freedom, no spying, no tracking."
-#: src/strings.ts:1351
+#: src/strings.ts:1355
msgid "Write something..."
msgstr "Write something..."
-#: src/strings.ts:1629
+#: src/strings.ts:1633
msgid "Write with freedom."
msgstr "Write with freedom."
-#: src/strings.ts:2036
+#: src/strings.ts:2040
msgid "Write with freedom. Never compromise on privacy again."
msgstr "Write with freedom. Never compromise on privacy again."
@@ -6561,7 +6577,7 @@ msgid "Year"
msgstr "Year"
#: src/strings.ts:170
-#: src/strings.ts:1546
+#: src/strings.ts:1550
msgid "Yearly"
msgstr "Yearly"
@@ -6573,19 +6589,19 @@ msgstr "Yes"
msgid "You also agree to recieve marketing emails from us which you can opt-out of from app settings."
msgstr "You also agree to recieve marketing emails from us which you can opt-out of from app settings."
-#: src/strings.ts:2214
+#: src/strings.ts:2218
msgid "You are editing \"{notebookTitle}\"."
msgstr "You are editing \"{notebookTitle}\"."
-#: src/strings.ts:2018
+#: src/strings.ts:2022
msgid "You are editing #{tag}"
msgstr "You are editing #{tag}"
-#: src/strings.ts:1756
+#: src/strings.ts:1760
msgid "You are logging into the beta version of Notesnook. Switching between beta & stable versions can cause weird issues including data loss. It is recommended that you do not use both simultaneously."
msgstr "You are logging into the beta version of Notesnook. Switching between beta & stable versions can cause weird issues including data loss. It is recommended that you do not use both simultaneously."
-#: src/strings.ts:1338
+#: src/strings.ts:1342
msgid "You are not logged in"
msgstr "You are not logged in"
@@ -6597,35 +6613,35 @@ msgstr "You are renaming color {color}"
msgid "You can add as many tags as you want."
msgstr "You can add as many tags as you want."
-#: src/strings.ts:2039
+#: src/strings.ts:2043
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:2393
+#: src/strings.ts:2397
msgid "You can create shortcuts of frequently accessed notebooks in the side menu"
msgstr "You can create shortcuts of frequently accessed notebooks in the side menu"
-#: src/strings.ts:2054
+#: src/strings.ts:2058
msgid "You can import your notes from most other note taking apps."
msgstr "You can import your notes from most other note taking apps."
-#: src/strings.ts:1413
+#: src/strings.ts:1417
msgid "You can multi-select notes and move them to a notebook at once"
msgstr "You can multi-select notes and move them to a notebook at once"
-#: src/strings.ts:1404
+#: src/strings.ts:1408
msgid "You can pin frequently used Notebooks to the Side Menu to quickly access them."
msgstr "You can pin frequently used Notebooks to the Side Menu to quickly access them."
-#: src/strings.ts:1150
+#: src/strings.ts:1154
msgid "You can set a custom proxy URL to increase your privacy."
msgstr "You can set a custom proxy URL to increase your privacy."
-#: src/strings.ts:1385
+#: src/strings.ts:1389
msgid "You can swipe left anywhere in the app to start a new note."
msgstr "You can swipe left anywhere in the app to start a new note."
-#: src/strings.ts:2028
+#: src/strings.ts:2032
msgid ""
"You can track your bug report at [{url}]({url}).\n"
"Please note that we will respond to your bug report on the link above. **We recommended that you save the above link for later reference.**\n"
@@ -6647,19 +6663,19 @@ msgstr "You can use all premium features for free for the next 14 days"
msgid "You can use fallback 2FA method incase you are unable to login via primary method"
msgstr "You can use fallback 2FA method incase you are unable to login via primary method"
-#: src/strings.ts:1427
+#: src/strings.ts:1431
msgid "You can view & restore older versions of any note by going to its properties -> History."
msgstr "You can view & restore older versions of any note by going to its properties -> History."
-#: src/strings.ts:1724
+#: src/strings.ts:1728
msgid "You have {count} custom dictionary words."
msgstr "You have {count} custom dictionary words."
-#: src/strings.ts:2173
+#: src/strings.ts:2177
msgid "You have been logged out from all other devices."
msgstr "You have been logged out from all other devices."
-#: src/strings.ts:2167
+#: src/strings.ts:2171
msgid "You have been logged out."
msgstr "You have been logged out."
@@ -6687,11 +6703,11 @@ msgstr "You have not published any monographs yet"
msgid "You have not set any reminders yet"
msgstr "You have not set any reminders yet"
-#: src/strings.ts:1520
+#: src/strings.ts:1524
msgid "You have unsynced notes. Take a backup or sync your notes to avoid losing your critical data."
msgstr "You have unsynced notes. Take a backup or sync your notes to avoid losing your critical data."
-#: src/strings.ts:1609
+#: src/strings.ts:1613
msgid "You must log out in order to change/reset server URLs."
msgstr "You must log out in order to change/reset server URLs."
@@ -6727,7 +6743,7 @@ msgstr "You were awarded a subscription to Notesnook Pro by Streetwriters."
msgid "You will be logged out from all your devices"
msgstr "You will be logged out from all your devices"
-#: src/strings.ts:1826
+#: src/strings.ts:1830
msgid "You will receive instructions on how to recover your account on this email"
msgstr "You will receive instructions on how to recover your account on this email"
@@ -6735,16 +6751,16 @@ msgstr "You will receive instructions on how to recover your account on this ema
msgid "Your account email will be changed without affecting your subscription or any other settings."
msgstr "Your account email will be changed without affecting your subscription or any other settings."
-#: src/strings.ts:1892
+#: src/strings.ts:1896
msgid "Your account has been recovered."
msgstr "Your account has been recovered."
#: src/strings.ts:494
-#: src/strings.ts:1703
+#: src/strings.ts:1707
msgid "Your account is now 100% secure against unauthorized logins."
msgstr "Your account is now 100% secure against unauthorized logins."
-#: src/strings.ts:1831
+#: src/strings.ts:1835
msgid "Your account password must be strong & unique."
msgstr "Your account password must be strong & unique."
@@ -6752,31 +6768,31 @@ msgstr "Your account password must be strong & unique."
msgid "Your account will be downgraded in {days} days"
msgstr "Your account will be downgraded in {days} days"
-#: src/strings.ts:1904
+#: src/strings.ts:1908
msgid "Your backup is ready to download"
msgstr "Your backup is ready to download"
-#: src/strings.ts:1561
+#: src/strings.ts:1565
msgid "Your changes could not be saved"
msgstr "Your changes could not be saved"
-#: src/strings.ts:1751
+#: src/strings.ts:1755
msgid "Your changes have been saved and will be reflected after the app has refreshed."
msgstr "Your changes have been saved and will be reflected after the app has refreshed."
-#: src/strings.ts:2074
+#: src/strings.ts:2078
msgid "Your current 2FA method is {method}"
msgstr "Your current 2FA method is {method}"
-#: src/strings.ts:1776
+#: src/strings.ts:1780
msgid "Your data recovery key is basically a hashed version of your password (plus some random salt). It can be used to decrypt your data for re-encryption."
msgstr "Your data recovery key is basically a hashed version of your password (plus some random salt). It can be used to decrypt your data for re-encryption."
-#: src/strings.ts:1829
+#: src/strings.ts:1833
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:1759
+#: src/strings.ts:1763
msgid "Your email has been confirmed."
msgstr "Your email has been confirmed."
@@ -6792,7 +6808,7 @@ msgstr "Your favorites"
msgid "Your free trial ends on {date}"
msgstr "Your free trial ends on {date}"
-#: src/strings.ts:1381
+#: src/strings.ts:1385
msgid "Your free trial has expired"
msgstr "Your free trial has expired"
@@ -6800,11 +6816,11 @@ msgstr "Your free trial has expired"
msgid "Your free trial has started"
msgstr "Your free trial has started"
-#: src/strings.ts:1380
+#: src/strings.ts:1384
msgid "Your free trial is ending soon"
msgstr "Your free trial is ending soon"
-#: src/strings.ts:1753
+#: src/strings.ts:1757
msgid "Your full name"
msgstr "Your full name"
@@ -6812,7 +6828,7 @@ msgstr "Your full name"
msgid "Your monographs"
msgstr "Your monographs"
-#: src/strings.ts:1289
+#: src/strings.ts:1293
msgid "Your name is stored 100% end-to-end encrypted and only visible to you."
msgstr "Your name is stored 100% end-to-end encrypted and only visible to you."
@@ -6828,7 +6844,7 @@ msgstr "Your notebooks"
msgid "Your notes"
msgstr "Your notes"
-#: src/strings.ts:1867
+#: src/strings.ts:1871
msgid "Your password is always hashed before leaving this device."
msgstr "Your password is always hashed before leaving this device."
@@ -6836,11 +6852,11 @@ msgstr "Your password is always hashed before leaving this device."
msgid "Your privacy matters to us, no matter who you are. In a world where everyone is trying to spy on you, Notesnook encrypts all your data before it leaves your device. With Notesnook no one can ever sell your data again."
msgstr "Your privacy matters to us, no matter who you are. In a world where everyone is trying to spy on you, Notesnook encrypts all your data before it leaves your device. With Notesnook no one can ever sell your data again."
-#: src/strings.ts:1286
+#: src/strings.ts:1290
msgid "Your profile pictrure is stored 100% end-to-end encrypted and only visible to you."
msgstr "Your profile pictrure is stored 100% end-to-end encrypted and only visible to you."
-#: src/strings.ts:1972
+#: src/strings.ts:1976
msgid "Your refund has been issued. Please wait 24 hours before reaching out to us in case you do not receive your funds."
msgstr "Your refund has been issued. Please wait 24 hours before reaching out to us in case you do not receive your funds."
@@ -6856,7 +6872,7 @@ msgstr "Your session has expired. Please enter password for {obfuscatedEmail} to
msgid "Your subscription ends on {date}"
msgstr "Your subscription ends on {date}"
-#: src/strings.ts:1970
+#: src/strings.ts:1974
msgid "Your subscription has been canceled."
msgstr "Your subscription has been canceled."
@@ -6884,18 +6900,18 @@ msgstr "Z to A"
msgid "Zipping"
msgstr "Zipping"
-#: src/strings.ts:2068
+#: src/strings.ts:2072
msgid "Zoom factor"
msgstr "Zoom factor"
-#: src/strings.ts:1675
+#: src/strings.ts:1679
msgid "Zoom in"
msgstr "Zoom in"
-#: src/strings.ts:2069
+#: src/strings.ts:2073
msgid "Zoom in or out the app content."
msgstr "Zoom in or out the app content."
-#: src/strings.ts:1674
+#: src/strings.ts:1678
msgid "Zoom out"
msgstr "Zoom out"
diff --git a/packages/intl/locale/pseudo-LOCALE.po b/packages/intl/locale/pseudo-LOCALE.po
index df2f5503ee..a2f74af37e 100644
--- a/packages/intl/locale/pseudo-LOCALE.po
+++ b/packages/intl/locale/pseudo-LOCALE.po
@@ -17,7 +17,7 @@ msgstr ""
msgid "— not just the"
msgstr ""
-#: src/strings.ts:2383
+#: src/strings.ts:2387
msgid "\"Notebook > Notes\""
msgstr ""
@@ -41,23 +41,23 @@ msgstr ""
msgid "{0} Highlights 🎉"
msgstr ""
-#: src/strings.ts:1728
+#: src/strings.ts:1732
msgid "{count, plural, one {# error occured} other {# errors occured}}"
msgstr ""
-#: src/strings.ts:1734
+#: src/strings.ts:1738
msgid "{count, plural, one {# file ready for import} other {# files ready for import}}"
msgstr ""
-#: src/strings.ts:1689
+#: src/strings.ts:1693
msgid "{count, plural, one {# file} other {# files}}"
msgstr ""
-#: src/strings.ts:1553
+#: src/strings.ts:1557
msgid "{count, plural, one {1 hour} other {# hours}}"
msgstr ""
-#: src/strings.ts:1548
+#: src/strings.ts:1552
msgid "{count, plural, one {1 minute} other {# minutes}}"
msgstr ""
@@ -252,7 +252,7 @@ msgstr ""
msgid "{count, plural, one {Item unpublished} other {# items unpublished}}"
msgstr ""
-#: src/strings.ts:2400
+#: src/strings.ts:2404
msgid "{count, plural, one {Move all notes in this notebook to trash} other {Move all notes in these notebooks to trash}}"
msgstr ""
@@ -449,7 +449,7 @@ msgstr ""
msgid "{count, plural, one {Unpublish note} other {Unpublish # notes}}"
msgstr ""
-#: src/strings.ts:1539
+#: src/strings.ts:1543
msgid "{days, plural, one {1 day} other {# days}}"
msgstr ""
@@ -489,19 +489,19 @@ msgstr ""
msgid "{mode, select, repeat {Repeat} once {Once} permanent {Permanent} other {Unknown mode}}"
msgstr ""
-#: src/strings.ts:1951
+#: src/strings.ts:1955
msgid "{n} {added, plural, one {added to 1 notebook} other {added to # notebooks}} and {removed, plural, one {removed from 1 notebook} other {removed from # notebooks}}."
msgstr ""
-#: src/strings.ts:1946
+#: src/strings.ts:1950
msgid "{n} {added, plural, one {added to 1 notebook} other {added to # notebooks}}."
msgstr ""
-#: src/strings.ts:1941
+#: src/strings.ts:1945
msgid "{n} {removed, plural, one {removed from 1 notebook} other {removed from # notebooks}}."
msgstr ""
-#: src/strings.ts:1936
+#: src/strings.ts:1940
msgid "{notes, plural, one {1 note} other {# notes}}"
msgstr ""
@@ -509,7 +509,7 @@ msgstr ""
msgid "{notes, plural, one {Export note} other {Export # notes}}"
msgstr ""
-#: src/strings.ts:1681
+#: src/strings.ts:1685
msgid "{percentage}% updating..."
msgstr ""
@@ -517,11 +517,11 @@ msgstr ""
msgid "{platform, select, android {{name} saved to selected path} other {{name} saved to File Manager/Notesnook/downloads}}"
msgstr ""
-#: src/strings.ts:1314
+#: src/strings.ts:1318
msgid "{platform, select, android {Backup file saved in \"Notesnook backups\" folder on your phone.} other {Backup file is saved in File Manager/Notesnook folder}}"
msgstr ""
-#: src/strings.ts:2331
+#: src/strings.ts:2335
msgid "{selected} selected"
msgstr ""
@@ -541,27 +541,27 @@ msgstr ""
msgid "{type} does not match"
msgstr ""
-#: src/strings.ts:1574
+#: src/strings.ts:1578
msgid "{words, plural, one {# word} other {# words}}"
msgstr ""
-#: src/strings.ts:1637
+#: src/strings.ts:1641
msgid "{words, plural, other {# selected}}"
msgstr ""
-#: src/strings.ts:1765
+#: src/strings.ts:1769
msgid "#notesnook"
msgstr ""
-#: src/strings.ts:1558
+#: src/strings.ts:1562
msgid "12-hour"
msgstr ""
-#: src/strings.ts:1559
+#: src/strings.ts:1563
msgid "24-hour"
msgstr ""
-#: src/strings.ts:1879
+#: src/strings.ts:1883
msgid "2FA code is required()"
msgstr ""
@@ -569,11 +569,11 @@ msgstr ""
msgid "2FA code sent via {method}"
msgstr ""
-#: src/strings.ts:1820
+#: src/strings.ts:1824
msgid "6 digit code"
msgstr ""
-#: src/strings.ts:1408
+#: src/strings.ts:1412
msgid "A notebook can have unlimited topics with unlimited notes."
msgstr ""
@@ -589,7 +589,7 @@ msgstr ""
msgid "Abc"
msgstr ""
-#: src/strings.ts:1269
+#: src/strings.ts:1273
msgid "About"
msgstr ""
@@ -597,15 +597,15 @@ msgstr ""
msgid "account"
msgstr ""
-#: src/strings.ts:1822
+#: src/strings.ts:1826
msgid "Account password"
msgstr ""
-#: src/strings.ts:2012
+#: src/strings.ts:2016
msgid "Activate"
msgstr ""
-#: src/strings.ts:1798
+#: src/strings.ts:1802
msgid "Activating trial"
msgstr ""
@@ -617,11 +617,11 @@ msgstr ""
msgid "Add 2FA fallback method"
msgstr ""
-#: src/strings.ts:1484
+#: src/strings.ts:1488
msgid "Add a short note"
msgstr ""
-#: src/strings.ts:1575
+#: src/strings.ts:1579
msgid "Add a tag"
msgstr ""
@@ -657,7 +657,7 @@ msgstr ""
msgid "Add tags to multiple notes at once"
msgstr ""
-#: src/strings.ts:2219
+#: src/strings.ts:2223
msgid "Add to dictionary"
msgstr ""
@@ -669,23 +669,23 @@ msgstr ""
msgid "Add your first notebook"
msgstr ""
-#: src/strings.ts:2146
+#: src/strings.ts:2150
msgid "Advanced"
msgstr ""
-#: src/strings.ts:1701
+#: src/strings.ts:1705
msgid "After scanning the QR code image, the app will display a code that you can enter below."
msgstr ""
-#: src/strings.ts:2282
+#: src/strings.ts:2286
msgid "Align left"
msgstr ""
-#: src/strings.ts:2283
+#: src/strings.ts:2287
msgid "Align right"
msgstr ""
-#: src/strings.ts:2252
+#: src/strings.ts:2256
msgid "Alignment"
msgstr ""
@@ -697,7 +697,7 @@ msgstr ""
msgid "All attachments are end-to-end encrypted."
msgstr ""
-#: src/strings.ts:2377
+#: src/strings.ts:2381
msgid "All cached attachments have been cleared."
msgstr ""
@@ -709,7 +709,7 @@ msgstr ""
msgid "All files"
msgstr ""
-#: src/strings.ts:1154
+#: src/strings.ts:1158
msgid "All locked notes will be re-encrypted with the new password."
msgstr ""
@@ -717,15 +717,15 @@ msgstr ""
msgid "All logs are local only and are not sent to any server. You can share the logs from here with us if you face an issue to help us find the root cause."
msgstr ""
-#: src/strings.ts:1612
+#: src/strings.ts:1616
msgid "All server urls are required."
msgstr ""
-#: src/strings.ts:1881
+#: src/strings.ts:1885
msgid "All the data in your account will be overwritten with the data in the backup file. There is no way to reverse this action."
msgstr ""
-#: src/strings.ts:2126
+#: src/strings.ts:2130
msgid "All the source code for Notesnook is available & open for everyone on GitHub."
msgstr ""
@@ -733,15 +733,15 @@ msgstr ""
msgid "All tools are grouped"
msgstr ""
-#: src/strings.ts:1298
+#: src/strings.ts:1302
msgid "All tools in the collapsed section will be removed"
msgstr ""
-#: src/strings.ts:1293
+#: src/strings.ts:1297
msgid "All tools in this group will be removed from the toolbar."
msgstr ""
-#: src/strings.ts:1323
+#: src/strings.ts:1327
msgid "All your backups are stored in 'Phone Storage/Notesnook/backups/' folder"
msgstr ""
@@ -753,7 +753,7 @@ msgstr ""
msgid "Already have an account?"
msgstr ""
-#: src/strings.ts:2196
+#: src/strings.ts:2200
msgid "Amount"
msgstr ""
@@ -765,11 +765,11 @@ msgstr ""
msgid "and"
msgstr ""
-#: src/strings.ts:1766
+#: src/strings.ts:1770
msgid "and get a chance to win free promo codes."
msgstr ""
-#: src/strings.ts:1374
+#: src/strings.ts:1378
msgid "and we will manually confirm your account."
msgstr ""
@@ -777,25 +777,25 @@ msgstr ""
msgid "App data has been cleared. Kindly relaunch the app to login again."
msgstr ""
-#: src/strings.ts:1163
-#: src/strings.ts:1668
+#: src/strings.ts:1167
+#: src/strings.ts:1672
msgid "App lock"
msgstr ""
#: src/strings.ts:770
-#: src/strings.ts:1189
+#: src/strings.ts:1193
msgid "App lock disabled"
msgstr ""
-#: src/strings.ts:1169
+#: src/strings.ts:1173
msgid "App lock timeout"
msgstr ""
-#: src/strings.ts:1277
+#: src/strings.ts:1281
msgid "App version"
msgstr ""
-#: src/strings.ts:1749
+#: src/strings.ts:1753
msgid "App will reload in {sec} seconds"
msgstr ""
@@ -815,11 +815,11 @@ msgstr ""
msgid "Apply changes"
msgstr ""
-#: src/strings.ts:2019
+#: src/strings.ts:2023
msgid "Applying changes"
msgstr ""
-#: src/strings.ts:1422
+#: src/strings.ts:1426
msgid "Are you scrolling a lot to find a specific note? Pin it to the top from Note properties."
msgstr ""
@@ -827,11 +827,11 @@ msgstr ""
msgid "Are you sure you want to clear all logs from {key}?"
msgstr ""
-#: src/strings.ts:1301
+#: src/strings.ts:1305
msgid "Are you sure you want to clear trash?"
msgstr ""
-#: src/strings.ts:1517
+#: src/strings.ts:1521
msgid "Are you sure you want to logout and clear all data stored on THIS DEVICE?"
msgstr ""
@@ -847,11 +847,15 @@ msgstr ""
msgid "Are you sure you want to remove your profile picture?"
msgstr ""
-#: src/strings.ts:1300
+#: src/strings.ts:1304
msgid "Are you sure?"
msgstr ""
-#: src/strings.ts:2008
+#: src/strings.ts:1116
+msgid "Ask every time"
+msgstr ""
+
+#: src/strings.ts:2012
msgid "Assign color"
msgstr ""
@@ -863,7 +867,7 @@ msgstr ""
msgid "Atleast 8 characters required"
msgstr ""
-#: src/strings.ts:2320
+#: src/strings.ts:2324
msgid "Attach image from URL"
msgstr ""
@@ -872,19 +876,19 @@ msgid "attachment"
msgstr ""
#: src/strings.ts:300
-#: src/strings.ts:2317
+#: src/strings.ts:2321
msgid "Attachment"
msgstr ""
-#: src/strings.ts:1910
+#: src/strings.ts:1914
msgid "Attachment preview failed"
msgstr ""
-#: src/strings.ts:2370
+#: src/strings.ts:2374
msgid "Attachment recheck cancelled"
msgstr ""
-#: src/strings.ts:2288
+#: src/strings.ts:2292
msgid "Attachment settings"
msgstr ""
@@ -897,11 +901,11 @@ msgstr ""
msgid "Attachments"
msgstr ""
-#: src/strings.ts:1859
+#: src/strings.ts:1863
msgid "Attachments cache cleared!"
msgstr ""
-#: src/strings.ts:2372
+#: src/strings.ts:2376
msgid "Attachments recheck complete"
msgstr ""
@@ -909,76 +913,76 @@ msgstr ""
msgid "Audios"
msgstr ""
-#: src/strings.ts:1601
+#: src/strings.ts:1605
msgid "Auth server"
msgstr ""
-#: src/strings.ts:1770
+#: src/strings.ts:1774
msgid "Authenticated as {email}"
msgstr ""
-#: src/strings.ts:1873
+#: src/strings.ts:1877
msgid "Authenticating user"
msgstr ""
-#: src/strings.ts:2109
+#: src/strings.ts:2113
msgid "Authentication"
msgstr ""
-#: src/strings.ts:1705
+#: src/strings.ts:1709
msgid "authentication app"
msgstr ""
-#: src/strings.ts:1328
+#: src/strings.ts:1332
msgid "Authentication cancelled by user"
msgstr ""
-#: src/strings.ts:1329
+#: src/strings.ts:1333
msgid "Authentication failed"
msgstr ""
-#: src/strings.ts:2072
+#: src/strings.ts:2076
msgid "Auto"
msgstr ""
-#: src/strings.ts:1636
+#: src/strings.ts:1640
msgid "Auto save: off"
msgstr ""
-#: src/strings.ts:2086
+#: src/strings.ts:2090
msgid "Auto start on system startup"
msgstr ""
-#: src/strings.ts:1198
-#: src/strings.ts:1664
+#: src/strings.ts:1202
+#: src/strings.ts:1668
msgid "Automatic backups"
msgstr ""
-#: src/strings.ts:1342
+#: src/strings.ts:1346
msgid "Automatic backups are off"
msgstr ""
-#: src/strings.ts:1980
+#: src/strings.ts:1984
msgid "Automatic backups disabled"
msgstr ""
-#: src/strings.ts:1201
+#: src/strings.ts:1205
msgid "Automatic backups with attachments"
msgstr ""
-#: src/strings.ts:2082
+#: src/strings.ts:2086
msgid "Automatic updates"
msgstr ""
-#: src/strings.ts:1120
+#: src/strings.ts:1124
msgid "Automatically clear trash after a certain period of time"
msgstr ""
-#: src/strings.ts:2084
+#: src/strings.ts:2088
msgid "Automatically download & install updates in the background without prompting first."
msgstr ""
-#: src/strings.ts:1171
+#: src/strings.ts:1175
msgid "Automatically lock the app after a certain period"
msgstr ""
@@ -986,15 +990,15 @@ msgstr ""
msgid "Automatically switch between light and dark themes based on your system settings"
msgstr ""
-#: src/strings.ts:2129
+#: src/strings.ts:2133
msgid "Available on iOS"
msgstr ""
-#: src/strings.ts:2130
+#: src/strings.ts:2134
msgid "Available on iOS & Android"
msgstr ""
-#: src/strings.ts:2275
+#: src/strings.ts:2279
msgid "Background color"
msgstr ""
@@ -1002,31 +1006,31 @@ msgstr ""
msgid "Background sync (experimental)"
msgstr ""
-#: src/strings.ts:2078
+#: src/strings.ts:2082
msgid "Backup"
msgstr ""
-#: src/strings.ts:2116
+#: src/strings.ts:2120
msgid "Backup & export"
msgstr ""
-#: src/strings.ts:1190
+#: src/strings.ts:1194
msgid "Backup & restore"
msgstr ""
-#: src/strings.ts:1312
+#: src/strings.ts:1316
msgid "Backup complete"
msgstr ""
-#: src/strings.ts:1536
+#: src/strings.ts:1540
msgid "Backup directory not selected"
msgstr ""
-#: src/strings.ts:1213
+#: src/strings.ts:1217
msgid "Backup encryption"
msgstr ""
-#: src/strings.ts:1833
+#: src/strings.ts:1837
msgid "Backup files have .nnbackup extension"
msgstr ""
@@ -1034,15 +1038,15 @@ msgstr ""
msgid "Backup is encrypted"
msgstr ""
-#: src/strings.ts:1589
+#: src/strings.ts:1593
msgid "Backup is encrypted, decrypting..."
msgstr ""
-#: src/strings.ts:1192
+#: src/strings.ts:1196
msgid "Backup now"
msgstr ""
-#: src/strings.ts:1193
+#: src/strings.ts:1197
msgid "Backup now with attachments"
msgstr ""
@@ -1050,15 +1054,15 @@ msgstr ""
msgid "Backup restored"
msgstr ""
-#: src/strings.ts:1894
+#: src/strings.ts:1898
msgid "Backup saved at {path}"
msgstr ""
-#: src/strings.ts:1324
+#: src/strings.ts:1328
msgid "Backup successful"
msgstr ""
-#: src/strings.ts:2079
+#: src/strings.ts:2083
msgid "Backup with attachments"
msgstr ""
@@ -1070,7 +1074,7 @@ msgstr ""
msgid "Basic"
msgstr ""
-#: src/strings.ts:1768
+#: src/strings.ts:1772
msgid "Because where's the fun in nookin' alone?"
msgstr ""
@@ -1078,7 +1082,7 @@ msgstr ""
msgid "Behavior"
msgstr ""
-#: src/strings.ts:2111
+#: src/strings.ts:2115
msgid "Behaviour"
msgstr ""
@@ -1086,15 +1090,15 @@ msgstr ""
msgid "BETA"
msgstr ""
-#: src/strings.ts:2233
+#: src/strings.ts:2237
msgid "Bi-directional note link"
msgstr ""
-#: src/strings.ts:2177
+#: src/strings.ts:2181
msgid "Billing history"
msgstr ""
-#: src/strings.ts:1157
+#: src/strings.ts:1161
msgid "Biometric unlocking"
msgstr ""
@@ -1106,27 +1110,27 @@ msgstr ""
msgid "Biometric unlocking enabled"
msgstr ""
-#: src/strings.ts:1326
+#: src/strings.ts:1330
msgid "Biometrics authentication failed. Please try again."
msgstr ""
-#: src/strings.ts:1166
+#: src/strings.ts:1170
msgid "Biometrics not enrolled"
msgstr ""
-#: src/strings.ts:2229
+#: src/strings.ts:2233
msgid "Bold"
msgstr ""
-#: src/strings.ts:2382
+#: src/strings.ts:2386
msgid "Boost your productivity with Notebooks and organize your notes."
msgstr ""
-#: src/strings.ts:1784
+#: src/strings.ts:1788
msgid "Browse"
msgstr ""
-#: src/strings.ts:2246
+#: src/strings.ts:2250
msgid "Bullet list"
msgstr ""
@@ -1138,7 +1142,7 @@ msgstr ""
msgid "By signing up, you agree to our"
msgstr ""
-#: src/strings.ts:2308
+#: src/strings.ts:2312
msgid "Callout"
msgstr ""
@@ -1154,7 +1158,7 @@ msgstr ""
msgid "Cancel login"
msgstr ""
-#: src/strings.ts:1801
+#: src/strings.ts:1805
msgid "Cancel subscription"
msgstr ""
@@ -1162,24 +1166,24 @@ msgstr ""
msgid "Cancel upload"
msgstr ""
-#: src/strings.ts:2274
+#: src/strings.ts:2278
msgid "Cell background color"
msgstr ""
-#: src/strings.ts:2276
+#: src/strings.ts:2280
msgid "Cell border color"
msgstr ""
-#: src/strings.ts:2278
-#: src/strings.ts:2279
+#: src/strings.ts:2282
+#: src/strings.ts:2283
msgid "Cell border width"
msgstr ""
-#: src/strings.ts:2260
+#: src/strings.ts:2264
msgid "Cell properties"
msgstr ""
-#: src/strings.ts:2277
+#: src/strings.ts:2281
msgid "Cell text color"
msgstr ""
@@ -1195,15 +1199,15 @@ msgstr ""
msgid "Change 2FA method"
msgstr ""
-#: src/strings.ts:1178
+#: src/strings.ts:1182
msgid "Change app lock password"
msgstr ""
-#: src/strings.ts:1177
+#: src/strings.ts:1181
msgid "Change app lock pin"
msgstr ""
-#: src/strings.ts:1212
+#: src/strings.ts:1216
msgid "Change backup directory"
msgstr ""
@@ -1215,11 +1219,11 @@ msgstr ""
msgid "Change how the app behaves in different situations"
msgstr ""
-#: src/strings.ts:2326
+#: src/strings.ts:2330
msgid "Change language"
msgstr ""
-#: src/strings.ts:1233
+#: src/strings.ts:1237
msgid "Change notification sound"
msgstr ""
@@ -1227,19 +1231,19 @@ msgstr ""
msgid "Change password"
msgstr ""
-#: src/strings.ts:1793
+#: src/strings.ts:1797
msgid "Change profile picture"
msgstr ""
-#: src/strings.ts:2155
+#: src/strings.ts:2159
msgid "Change proxy"
msgstr ""
-#: src/strings.ts:2176
+#: src/strings.ts:2180
msgid "Change the payment method you used to purchase this subscription."
msgstr ""
-#: src/strings.ts:1235
+#: src/strings.ts:1239
msgid "Change the sound that plays when you receive a notification"
msgstr ""
@@ -1263,15 +1267,15 @@ 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:1276
+#: src/strings.ts:1280
msgid "Check for new version of Notesnook"
msgstr ""
-#: src/strings.ts:1275
+#: src/strings.ts:1279
msgid "Check for updates"
msgstr ""
-#: src/strings.ts:2128
+#: src/strings.ts:2132
msgid "Check roadmap"
msgstr ""
@@ -1279,7 +1283,7 @@ msgstr ""
msgid "Check your spam folder if you haven't received an email yet."
msgstr ""
-#: src/strings.ts:2374
+#: src/strings.ts:2378
msgid "Checking all attachments"
msgstr ""
@@ -1287,31 +1291,31 @@ msgstr ""
msgid "Checking for new version"
msgstr ""
-#: src/strings.ts:1680
+#: src/strings.ts:1684
msgid "Checking for updates"
msgstr ""
-#: src/strings.ts:2373
+#: src/strings.ts:2377
msgid "Checking note attachments"
msgstr ""
-#: src/strings.ts:2248
+#: src/strings.ts:2252
msgid "Checklist"
msgstr ""
-#: src/strings.ts:2303
+#: src/strings.ts:2307
msgid "Choose a block to insert"
msgstr ""
-#: src/strings.ts:1772
+#: src/strings.ts:1776
msgid "Choose a recovery method"
msgstr ""
-#: src/strings.ts:2077
+#: src/strings.ts:2081
msgid "Choose backup format"
msgstr ""
-#: src/strings.ts:2339
+#: src/strings.ts:2343
msgid "Choose custom color"
msgstr ""
@@ -1319,15 +1323,15 @@ msgstr ""
msgid "Choose from pre-built themes or create your own"
msgstr ""
-#: src/strings.ts:1115
+#: src/strings.ts:1119
msgid "Choose how dates are displayed in the app"
msgstr ""
-#: src/strings.ts:1138
+#: src/strings.ts:1142
msgid "Choose how the new note titles are formatted"
msgstr ""
-#: src/strings.ts:1117
+#: src/strings.ts:1121
msgid "Choose how time is displayed in the app"
msgstr ""
@@ -1335,15 +1339,15 @@ msgstr ""
msgid "Choose how you want to secure your notes locally."
msgstr ""
-#: src/strings.ts:1208
+#: src/strings.ts:1212
msgid "Choose where to save your backups"
msgstr ""
-#: src/strings.ts:2037
+#: src/strings.ts:2041
msgid "Choose your style"
msgstr ""
-#: src/strings.ts:1592
+#: src/strings.ts:1596
msgid "cleaningUp"
msgstr ""
@@ -1351,31 +1355,31 @@ msgstr ""
msgid "Clear"
msgstr ""
-#: src/strings.ts:1845
+#: src/strings.ts:1849
msgid "Clear all cached attachments. Current cache size: {cacheSize}"
msgstr ""
-#: src/strings.ts:2242
+#: src/strings.ts:2246
msgid "Clear all formatting"
msgstr ""
-#: src/strings.ts:1846
+#: src/strings.ts:1850
msgid "Clear attachments cache?"
msgstr ""
-#: src/strings.ts:1843
+#: src/strings.ts:1847
msgid "Clear cache"
msgstr ""
-#: src/strings.ts:2337
+#: src/strings.ts:2341
msgid "Clear completed tasks"
msgstr ""
-#: src/strings.ts:1780
+#: src/strings.ts:1784
msgid "Clear data & reset account"
msgstr ""
-#: src/strings.ts:1121
+#: src/strings.ts:1125
msgid "Clear default notebook"
msgstr ""
@@ -1383,15 +1387,15 @@ msgstr ""
msgid "Clear logs"
msgstr ""
-#: src/strings.ts:2171
+#: src/strings.ts:2175
msgid "clear sessions"
msgstr ""
-#: src/strings.ts:1299
+#: src/strings.ts:1303
msgid "Clear trash"
msgstr ""
-#: src/strings.ts:1118
+#: src/strings.ts:1122
msgid "Clear trash interval"
msgstr ""
@@ -1399,7 +1403,7 @@ msgstr ""
msgid "Clear vault"
msgstr ""
-#: src/strings.ts:1848
+#: src/strings.ts:1852
msgid ""
"Clearing attachments cache will perform the following actions:\n"
"- Downloaded images & files: **cleared**\n"
@@ -1414,51 +1418,51 @@ msgstr ""
msgid "Click to deselect"
msgstr ""
-#: src/strings.ts:1842
+#: src/strings.ts:1846
msgid "Click to preview"
msgstr ""
-#: src/strings.ts:1747
+#: src/strings.ts:1751
msgid "Click to remove"
msgstr ""
-#: src/strings.ts:2365
+#: src/strings.ts:2369
msgid "Click to reset {title}"
msgstr ""
-#: src/strings.ts:1358
+#: src/strings.ts:1362
msgid "Close"
msgstr ""
-#: src/strings.ts:1994
+#: src/strings.ts:1998
msgid "Close all"
msgstr ""
-#: src/strings.ts:1991
+#: src/strings.ts:1995
msgid "Close others"
msgstr ""
-#: src/strings.ts:2095
+#: src/strings.ts:2099
msgid "Close to system tray"
msgstr ""
-#: src/strings.ts:1993
+#: src/strings.ts:1997
msgid "Close to the left"
msgstr ""
-#: src/strings.ts:1992
+#: src/strings.ts:1996
msgid "Close to the right"
msgstr ""
-#: src/strings.ts:2240
+#: src/strings.ts:2244
msgid "Code"
msgstr ""
-#: src/strings.ts:2305
+#: src/strings.ts:2309
msgid "Code block"
msgstr ""
-#: src/strings.ts:2241
+#: src/strings.ts:2245
msgid "Code remove"
msgstr ""
@@ -1471,7 +1475,7 @@ msgid "color"
msgstr ""
#: src/strings.ts:299
-#: src/strings.ts:1819
+#: src/strings.ts:1823
msgid "Color"
msgstr ""
@@ -1479,11 +1483,11 @@ msgstr ""
msgid "Color #{color} already exists"
msgstr ""
-#: src/strings.ts:2070
+#: src/strings.ts:2074
msgid "Color scheme"
msgstr ""
-#: src/strings.ts:1466
+#: src/strings.ts:1470
msgid "Color title"
msgstr ""
@@ -1495,11 +1499,11 @@ msgstr ""
msgid "Colors"
msgstr ""
-#: src/strings.ts:2258
+#: src/strings.ts:2262
msgid "Column properties"
msgstr ""
-#: src/strings.ts:1251
+#: src/strings.ts:1255
msgid "Community"
msgstr ""
@@ -1511,15 +1515,19 @@ msgstr ""
msgid "Compress"
msgstr ""
+#: src/strings.ts:1115
+msgid "Compress images before uploading"
+msgstr ""
+
#: src/strings.ts:144
msgid "Compressed images are uploaded in Full HD resolution and usually are good enough for most use cases."
msgstr ""
-#: src/strings.ts:2224
+#: src/strings.ts:2228
msgid "Configure"
msgstr ""
-#: src/strings.ts:2379
+#: src/strings.ts:2383
msgid "Configure server URLs for Notesnook"
msgstr ""
@@ -1531,31 +1539,31 @@ msgstr ""
msgid "Confirm email to publish note"
msgstr ""
-#: src/strings.ts:1465
+#: src/strings.ts:1469
msgid "Confirm new password"
msgstr ""
-#: src/strings.ts:1460
+#: src/strings.ts:1464
msgid "Confirm password"
msgstr ""
-#: src/strings.ts:1464
+#: src/strings.ts:1468
msgid "Confirm pin"
msgstr ""
-#: src/strings.ts:2055
+#: src/strings.ts:2059
msgid "Congratulations!"
msgstr ""
-#: src/strings.ts:1611
+#: src/strings.ts:1615
msgid "Connected to all servers sucessfully."
msgstr ""
-#: src/strings.ts:1646
+#: src/strings.ts:1650
msgid "Contact support"
msgstr ""
-#: src/strings.ts:1242
+#: src/strings.ts:1246
msgid "Contact us directly via support@streetwriters.co for any help or support"
msgstr ""
@@ -1563,15 +1571,15 @@ msgstr ""
msgid "Continue"
msgstr ""
-#: src/strings.ts:1144
+#: src/strings.ts:1148
msgid "Contribute towards a better Notesnook. All tracking information is anonymous."
msgstr ""
-#: src/strings.ts:1228
+#: src/strings.ts:1232
msgid "Controls whether this device should receive reminder notifications."
msgstr ""
-#: src/strings.ts:1965
+#: src/strings.ts:1969
msgid "Copied"
msgstr ""
@@ -1579,7 +1587,7 @@ msgstr ""
msgid "Copy"
msgstr ""
-#: src/strings.ts:2011
+#: src/strings.ts:2015
msgid "Copy as{0}"
msgstr ""
@@ -1587,7 +1595,7 @@ msgstr ""
msgid "Copy codes"
msgstr ""
-#: src/strings.ts:2222
+#: src/strings.ts:2226
msgid "Copy image"
msgstr ""
@@ -1595,7 +1603,7 @@ msgstr ""
msgid "Copy link"
msgstr ""
-#: src/strings.ts:2221
+#: src/strings.ts:2225
msgid "Copy link text"
msgstr ""
@@ -1607,27 +1615,27 @@ msgstr ""
msgid "Copy to clipboard"
msgstr ""
-#: src/strings.ts:1594
+#: src/strings.ts:1598
msgid "Copying backup files to cache"
msgstr ""
-#: src/strings.ts:1148
+#: src/strings.ts:1152
msgid "CORS bypass"
msgstr ""
-#: src/strings.ts:1961
+#: src/strings.ts:1965
msgid "Could not activate trial. Please try again later."
msgstr ""
-#: src/strings.ts:1979
+#: src/strings.ts:1983
msgid "Could not clear trash."
msgstr ""
-#: src/strings.ts:1614
+#: src/strings.ts:1618
msgid "Could not connect to {server}."
msgstr ""
-#: src/strings.ts:1926
+#: src/strings.ts:1930
msgid "Could not convert note to {format}."
msgstr ""
@@ -1659,7 +1667,7 @@ msgstr ""
msgid "Create a shortcut"
msgstr ""
-#: src/strings.ts:1824
+#: src/strings.ts:1828
msgid "Create account"
msgstr ""
@@ -1667,19 +1675,19 @@ msgstr ""
msgid "Create link"
msgstr ""
-#: src/strings.ts:1450
+#: src/strings.ts:1454
msgid "Create shortcut of this notebook in side menu"
msgstr ""
-#: src/strings.ts:1364
+#: src/strings.ts:1368
msgid "Create unlimited notebooks with Notesnook Pro"
msgstr ""
-#: src/strings.ts:1363
+#: src/strings.ts:1367
msgid "Create unlimited tags with Notesnook Pro"
msgstr ""
-#: src/strings.ts:1365
+#: src/strings.ts:1369
msgid "Create unlimited vaults with Notesnook Pro"
msgstr ""
@@ -1691,19 +1699,19 @@ msgstr ""
msgid "Create your account"
msgstr ""
-#: src/strings.ts:2204
+#: src/strings.ts:2208
msgid "Created at"
msgstr ""
-#: src/strings.ts:1321
+#: src/strings.ts:1325
msgid "Creating a{0} backup"
msgstr ""
-#: src/strings.ts:2024
+#: src/strings.ts:2028
msgid "Credentials"
msgstr ""
-#: src/strings.ts:2040
+#: src/strings.ts:2044
msgid "Cross platform & 100% encrypted"
msgstr ""
@@ -1711,31 +1719,31 @@ msgstr ""
msgid "Curate the toolbar that fits your needs and matches your personality."
msgstr ""
-#: src/strings.ts:1811
+#: src/strings.ts:1815
msgid "Current note"
msgstr ""
-#: src/strings.ts:1462
+#: src/strings.ts:1466
msgid "Current password"
msgstr ""
-#: src/strings.ts:1209
+#: src/strings.ts:1213
msgid "Current path: {path}"
msgstr ""
-#: src/strings.ts:1461
+#: src/strings.ts:1465
msgid "Current pin"
msgstr ""
-#: src/strings.ts:1748
+#: src/strings.ts:1752
msgid "CURRENT PLAN"
msgstr ""
-#: src/strings.ts:1985
+#: src/strings.ts:1989
msgid "Custom"
msgstr ""
-#: src/strings.ts:2106
+#: src/strings.ts:2110
msgid "Custom dictionary words"
msgstr ""
@@ -1747,24 +1755,24 @@ msgstr ""
msgid "Customize the appearance of the app with custom themes"
msgstr ""
-#: src/strings.ts:1124
+#: src/strings.ts:1128
msgid "Customize the note editor"
msgstr ""
-#: src/strings.ts:1126
+#: src/strings.ts:1130
msgid "Customize the toolbar in the note editor"
msgstr ""
-#: src/strings.ts:1125
+#: src/strings.ts:1129
msgid "Customize toolbar"
msgstr ""
-#: src/strings.ts:2220
+#: src/strings.ts:2224
msgid "Cut"
msgstr ""
#: src/strings.ts:167
-#: src/strings.ts:1543
+#: src/strings.ts:1547
msgid "Daily"
msgstr ""
@@ -1776,19 +1784,19 @@ msgstr ""
msgid "Dark mode"
msgstr ""
-#: src/strings.ts:2071
+#: src/strings.ts:2075
msgid "Dark or light, we won't judge."
msgstr ""
-#: src/strings.ts:1522
+#: src/strings.ts:1526
msgid "Database setup failed, could not get database key"
msgstr ""
-#: src/strings.ts:1814
+#: src/strings.ts:1818
msgid "Date"
msgstr ""
-#: src/strings.ts:2080
+#: src/strings.ts:2084
msgid "Date & time"
msgstr ""
@@ -1804,7 +1812,7 @@ msgstr ""
msgid "Date edited"
msgstr ""
-#: src/strings.ts:1114
+#: src/strings.ts:1118
msgid "Date format"
msgstr ""
@@ -1812,15 +1820,15 @@ msgstr ""
msgid "Date modified"
msgstr ""
-#: src/strings.ts:2017
+#: src/strings.ts:2021
msgid "Date uploaded"
msgstr ""
-#: src/strings.ts:1816
+#: src/strings.ts:1820
msgid "Day"
msgstr ""
-#: src/strings.ts:2013
+#: src/strings.ts:2017
msgid "Deactivate"
msgstr ""
@@ -1828,7 +1836,7 @@ msgstr ""
msgid "Debug log copied!"
msgstr ""
-#: src/strings.ts:1249
+#: src/strings.ts:1253
msgid "Debug logs"
msgstr ""
@@ -1836,32 +1844,32 @@ msgstr ""
msgid "Debug logs downloaded"
msgstr ""
-#: src/strings.ts:1246
+#: src/strings.ts:1250
msgid "Debugging"
msgstr ""
-#: src/strings.ts:2367
+#: src/strings.ts:2371
msgid "Decrease {title}"
msgstr ""
#: src/strings.ts:649
-#: src/strings.ts:1983
+#: src/strings.ts:1987
msgid "Default"
msgstr ""
-#: src/strings.ts:1135
+#: src/strings.ts:1139
msgid "Default font family"
msgstr ""
-#: src/strings.ts:1136
+#: src/strings.ts:1140
msgid "Default font family in editor"
msgstr ""
-#: src/strings.ts:1133
+#: src/strings.ts:1137
msgid "Default font size"
msgstr ""
-#: src/strings.ts:1134
+#: src/strings.ts:1138
msgid "Default font size in editor"
msgstr ""
@@ -1869,11 +1877,11 @@ msgstr ""
msgid "Default screen to open on app launch"
msgstr ""
-#: src/strings.ts:1229
+#: src/strings.ts:1233
msgid "Default snooze time"
msgstr ""
-#: src/strings.ts:1278
+#: src/strings.ts:1282
msgid "Default sound"
msgstr ""
@@ -1885,19 +1893,19 @@ msgstr ""
msgid "Delete account"
msgstr ""
-#: src/strings.ts:1296
+#: src/strings.ts:1300
msgid "Delete collapsed section"
msgstr ""
-#: src/strings.ts:2265
+#: src/strings.ts:2269
msgid "Delete column"
msgstr ""
-#: src/strings.ts:1291
+#: src/strings.ts:1295
msgid "Delete group"
msgstr ""
-#: src/strings.ts:2340
+#: src/strings.ts:2344
msgid "Delete mode"
msgstr ""
@@ -1909,11 +1917,11 @@ msgstr ""
msgid "Delete permanently"
msgstr ""
-#: src/strings.ts:2272
+#: src/strings.ts:2276
msgid "Delete row"
msgstr ""
-#: src/strings.ts:2273
+#: src/strings.ts:2277
msgid "Delete table"
msgstr ""
@@ -1921,7 +1929,7 @@ msgstr ""
msgid "Delete vault"
msgstr ""
-#: src/strings.ts:1156
+#: src/strings.ts:1160
msgid "Delete vault (and optionally remove all notes)."
msgstr ""
@@ -1929,19 +1937,19 @@ msgstr ""
msgid "Deleted on {date}"
msgstr ""
-#: src/strings.ts:1903
+#: src/strings.ts:1907
msgid "Deleting"
msgstr ""
-#: src/strings.ts:1813
+#: src/strings.ts:1817
msgid "Description"
msgstr ""
-#: src/strings.ts:2081
+#: src/strings.ts:2085
msgid "Desktop app"
msgstr ""
-#: src/strings.ts:2085
+#: src/strings.ts:2089
msgid "Desktop integration"
msgstr ""
@@ -1949,7 +1957,7 @@ msgstr ""
msgid "Did you save recovery key?"
msgstr ""
-#: src/strings.ts:1353
+#: src/strings.ts:1357
msgid "Disable"
msgstr ""
@@ -1957,7 +1965,7 @@ msgstr ""
msgid "Disable auto sync"
msgstr ""
-#: src/strings.ts:1986
+#: src/strings.ts:1990
msgid "Disable editor margins"
msgstr ""
@@ -1977,11 +1985,11 @@ msgstr ""
msgid "Discard"
msgstr ""
-#: src/strings.ts:1572
+#: src/strings.ts:1576
msgid "Dismiss"
msgstr ""
-#: src/strings.ts:1625
+#: src/strings.ts:1629
msgid "Dismiss announcement"
msgstr ""
@@ -1993,11 +2001,11 @@ msgstr ""
msgid "Do you enjoy using Notesnook?"
msgstr ""
-#: src/strings.ts:2203
+#: src/strings.ts:2207
msgid "Do you want to clear the trash?"
msgstr ""
-#: src/strings.ts:1243
+#: src/strings.ts:1247
msgid "Documentation"
msgstr ""
@@ -2021,11 +2029,11 @@ msgstr ""
msgid "Don't have an account?"
msgstr ""
-#: src/strings.ts:1807
+#: src/strings.ts:1811
msgid "Don't have backup file?"
msgstr ""
-#: src/strings.ts:1806
+#: src/strings.ts:1810
msgid "Don't have your account recovery key?"
msgstr ""
@@ -2033,11 +2041,11 @@ msgstr ""
msgid "Don't have your recovery codes?"
msgstr ""
-#: src/strings.ts:1785
+#: src/strings.ts:1789
msgid "Don't show again"
msgstr ""
-#: src/strings.ts:1786
+#: src/strings.ts:1790
msgid "Don't show again on this device?"
msgstr ""
@@ -2045,7 +2053,7 @@ msgstr ""
msgid "Done"
msgstr ""
-#: src/strings.ts:1129
+#: src/strings.ts:1133
msgid "Double spaced lines"
msgstr ""
@@ -2053,15 +2061,15 @@ msgstr ""
msgid "Download"
msgstr ""
-#: src/strings.ts:1791
+#: src/strings.ts:1795
msgid "Download all attachments"
msgstr ""
-#: src/strings.ts:2289
+#: src/strings.ts:2293
msgid "Download attachment"
msgstr ""
-#: src/strings.ts:1835
+#: src/strings.ts:1839
msgid "Download backup file"
msgstr ""
@@ -2069,11 +2077,11 @@ msgstr ""
msgid "Download cancelled"
msgstr ""
-#: src/strings.ts:2183
+#: src/strings.ts:2187
msgid "Download everything including attachments on sync"
msgstr ""
-#: src/strings.ts:1270
+#: src/strings.ts:1274
msgid "Download on desktop"
msgstr ""
@@ -2106,19 +2114,19 @@ msgstr ""
msgid "Downloading attachments"
msgstr ""
-#: src/strings.ts:1679
+#: src/strings.ts:1683
msgid "Downloading images"
msgstr ""
-#: src/strings.ts:1745
+#: src/strings.ts:1749
msgid "Drag & drop files here, or click to select files"
msgstr ""
-#: src/strings.ts:1744
+#: src/strings.ts:1748
msgid "Drop the files here"
msgstr ""
-#: src/strings.ts:1638
+#: src/strings.ts:1642
msgid "Drop your files here to attach"
msgstr ""
@@ -2134,11 +2142,11 @@ msgstr ""
msgid "Earliest first"
msgstr ""
-#: src/strings.ts:2391
+#: src/strings.ts:2395
msgid "Easy access"
msgstr ""
-#: src/strings.ts:1752
+#: src/strings.ts:1756
msgid "Edit"
msgstr ""
@@ -2146,29 +2154,29 @@ msgstr ""
msgid "Edit internal link"
msgstr ""
-#: src/strings.ts:2209
-#: src/strings.ts:2235
+#: src/strings.ts:2213
+#: src/strings.ts:2239
msgid "Edit link"
msgstr ""
-#: src/strings.ts:1284
+#: src/strings.ts:1288
msgid "Edit profile picture"
msgstr ""
-#: src/strings.ts:1794
+#: src/strings.ts:1798
msgid "Edit your full name"
msgstr ""
-#: src/strings.ts:1123
-#: src/strings.ts:1502
+#: src/strings.ts:1127
+#: src/strings.ts:1506
msgid "Editor"
msgstr ""
-#: src/strings.ts:1458
+#: src/strings.ts:1462
msgid "Email"
msgstr ""
-#: src/strings.ts:2404
+#: src/strings.ts:2408
msgid "Email copied"
msgstr ""
@@ -2180,11 +2188,11 @@ msgstr ""
msgid "Email not confirmed"
msgstr ""
-#: src/strings.ts:1528
+#: src/strings.ts:1532
msgid "Email or password incorrect"
msgstr ""
-#: src/strings.ts:1240
+#: src/strings.ts:1244
msgid "Email support"
msgstr ""
@@ -2192,15 +2200,15 @@ msgstr ""
msgid "Email updated to {email}"
msgstr ""
-#: src/strings.ts:2315
+#: src/strings.ts:2319
msgid "Embed"
msgstr ""
-#: src/strings.ts:2295
+#: src/strings.ts:2299
msgid "Embed properties"
msgstr ""
-#: src/strings.ts:2291
+#: src/strings.ts:2295
msgid "Embed settings"
msgstr ""
@@ -2208,19 +2216,23 @@ msgstr ""
msgid "Enable"
msgstr ""
-#: src/strings.ts:1165
+#: src/strings.ts:1117
+msgid "Enable (Recommended)"
+msgstr ""
+
+#: src/strings.ts:1169
msgid "Enable app lock"
msgstr ""
-#: src/strings.ts:1987
+#: src/strings.ts:1991
msgid "Enable editor margins"
msgstr ""
-#: src/strings.ts:2355
+#: src/strings.ts:2359
msgid "Enable regex"
msgstr ""
-#: src/strings.ts:2102
+#: src/strings.ts:2106
msgid "Enable spell checker"
msgstr ""
@@ -2228,7 +2240,7 @@ msgstr ""
msgid "Enable two-factor authentication to add an extra layer of security to your account."
msgstr ""
-#: src/strings.ts:1214
+#: src/strings.ts:1218
msgid "Encrypt your backups for added security"
msgstr ""
@@ -2236,11 +2248,11 @@ msgstr ""
msgid "Encrypted and synced"
msgstr ""
-#: src/strings.ts:2216
+#: src/strings.ts:2220
msgid "Encrypted backup"
msgstr ""
-#: src/strings.ts:1632
+#: src/strings.ts:1636
msgid "Encrypted, private, secure."
msgstr ""
@@ -2248,7 +2260,7 @@ msgstr ""
msgid "Encrypting attachment"
msgstr ""
-#: src/strings.ts:1818
+#: src/strings.ts:1822
msgid "Encryption key"
msgstr ""
@@ -2268,7 +2280,7 @@ msgstr ""
msgid "Enter account password to proceed."
msgstr ""
-#: src/strings.ts:1827
+#: src/strings.ts:1831
msgid "Enter account recovery key"
msgstr ""
@@ -2284,23 +2296,23 @@ msgstr ""
msgid "Enter code from authenticator app"
msgstr ""
-#: src/strings.ts:1488
+#: src/strings.ts:1492
msgid "Enter email address"
msgstr ""
-#: src/strings.ts:2343
+#: src/strings.ts:2347
msgid "Enter embed source URL"
msgstr ""
-#: src/strings.ts:1290
+#: src/strings.ts:1294
msgid "Enter full name"
msgstr ""
-#: src/strings.ts:1676
+#: src/strings.ts:1680
msgid "Enter fullscreen"
msgstr ""
-#: src/strings.ts:1467
+#: src/strings.ts:1471
msgid "Enter notebook description"
msgstr ""
@@ -2312,7 +2324,7 @@ msgstr ""
msgid "Enter password"
msgstr ""
-#: src/strings.ts:2063
+#: src/strings.ts:2067
msgid "Enter pin or password to enable app lock."
msgstr ""
@@ -2332,7 +2344,7 @@ msgstr ""
msgid "Enter the 6 digit code sent to your phone number to continue logging in"
msgstr ""
-#: src/strings.ts:2406
+#: src/strings.ts:2410
msgid "Enter the gift code to redeem your subscription."
msgstr ""
@@ -2340,23 +2352,23 @@ msgstr ""
msgid "Enter the recovery code to continue logging in"
msgstr ""
-#: src/strings.ts:1470
+#: src/strings.ts:1474
msgid "Enter verification code sent to your new email"
msgstr ""
-#: src/strings.ts:1469
+#: src/strings.ts:1473
msgid "Enter your new email"
msgstr ""
-#: src/strings.ts:2064
+#: src/strings.ts:2068
msgid "Enter your username"
msgstr ""
-#: src/strings.ts:2398
+#: src/strings.ts:2402
msgid "Error"
msgstr ""
-#: src/strings.ts:1529
+#: src/strings.ts:1533
msgid "Error applying promo code"
msgstr ""
@@ -2364,7 +2376,7 @@ msgstr ""
msgid "Error downloading file: {message}"
msgstr ""
-#: src/strings.ts:1491
+#: src/strings.ts:1495
msgid "Error getting codes"
msgstr ""
@@ -2384,35 +2396,35 @@ msgstr ""
msgid "Errors"
msgstr ""
-#: src/strings.ts:1671
+#: src/strings.ts:1675
msgid "Errors in {count} attachments"
msgstr ""
-#: src/strings.ts:1603
+#: src/strings.ts:1607
msgid "Events server"
msgstr ""
-#: src/strings.ts:2384
+#: src/strings.ts:2388
msgid "Every Notebook can have notes and sub notebooks."
msgstr ""
-#: src/strings.ts:2386
+#: src/strings.ts:2390
msgid "Everything related to my job in one place."
msgstr ""
-#: src/strings.ts:2395
+#: src/strings.ts:2399
msgid "Everything related to my school in one place."
msgstr ""
-#: src/strings.ts:1988
+#: src/strings.ts:1992
msgid "Exit fullscreen"
msgstr ""
-#: src/strings.ts:2347
+#: src/strings.ts:2351
msgid "Expand"
msgstr ""
-#: src/strings.ts:2047
+#: src/strings.ts:2051
msgid "Experience the next level of private note taking\""
msgstr ""
@@ -2424,19 +2436,19 @@ msgstr ""
msgid "Export again"
msgstr ""
-#: src/strings.ts:1217
+#: src/strings.ts:1221
msgid "Export all notes"
msgstr ""
-#: src/strings.ts:1219
+#: src/strings.ts:1223
msgid "Export all notes as pdf, markdown, html or text in a single zip file"
msgstr ""
-#: src/strings.ts:2010
+#: src/strings.ts:2014
msgid "Export as{0}"
msgstr ""
-#: src/strings.ts:1362
+#: src/strings.ts:1366
msgid "Export notes as PDF, Markdown and HTML with Notesnook Pro"
msgstr ""
@@ -2444,31 +2456,31 @@ msgstr ""
msgid "Exporting \"{title}\""
msgstr ""
-#: src/strings.ts:1593
+#: src/strings.ts:1597
msgid "Extracting files..."
msgstr ""
-#: src/strings.ts:1782
+#: src/strings.ts:1786
msgid "EXTREMELY DANGEROUS! This action is irreversible. All your data including notes, notebooks, attachments & settings will be deleted. This is a full account reset. Proceed with caution."
msgstr ""
-#: src/strings.ts:1239
+#: src/strings.ts:1243
msgid "Faced an issue or have a suggestion? Click here to create a bug report"
msgstr ""
-#: src/strings.ts:2376
+#: src/strings.ts:2380
msgid "Failed"
msgstr ""
-#: src/strings.ts:1911
+#: src/strings.ts:1915
msgid "Failed to copy note"
msgstr ""
-#: src/strings.ts:1535
+#: src/strings.ts:1539
msgid "Failed to decrypt backup"
msgstr ""
-#: src/strings.ts:1977
+#: src/strings.ts:1981
msgid "Failed to delete"
msgstr ""
@@ -2480,7 +2492,7 @@ msgstr ""
msgid "Failed to download file"
msgstr ""
-#: src/strings.ts:1973
+#: src/strings.ts:1977
msgid "Failed to install theme."
msgstr ""
@@ -2492,7 +2504,7 @@ msgstr ""
msgid "Failed to publish note"
msgstr ""
-#: src/strings.ts:1978
+#: src/strings.ts:1982
msgid "Failed to register task"
msgstr ""
@@ -2504,7 +2516,7 @@ msgstr ""
msgid "Failed to send recovery email"
msgstr ""
-#: src/strings.ts:1378
+#: src/strings.ts:1382
msgid "Failed to send verification email"
msgstr ""
@@ -2512,11 +2524,11 @@ msgstr ""
msgid "Failed to subscribe"
msgstr ""
-#: src/strings.ts:2178
+#: src/strings.ts:2182
msgid "Failed to take backup"
msgstr ""
-#: src/strings.ts:2180
+#: src/strings.ts:2184
msgid "Failed to take backup of your data. Do you want to continue logging out?"
msgstr ""
@@ -2532,20 +2544,20 @@ msgstr ""
msgid "Fallback method for 2FA enabled"
msgstr ""
-#: src/strings.ts:2007
+#: src/strings.ts:2011
msgid "Favorite"
msgstr ""
#: src/strings.ts:321
-#: src/strings.ts:1497
+#: src/strings.ts:1501
msgid "Favorites"
msgstr ""
-#: src/strings.ts:2388
+#: src/strings.ts:2392
msgid "February 2022 Week 2"
msgstr ""
-#: src/strings.ts:2389
+#: src/strings.ts:2393
msgid "February 2022 Week 3"
msgstr ""
@@ -2577,63 +2589,63 @@ msgstr ""
msgid "File too big"
msgstr ""
-#: src/strings.ts:1455
+#: src/strings.ts:1459
msgid "Filter attachments by filename, type or hash"
msgstr ""
-#: src/strings.ts:1808
+#: src/strings.ts:1812
msgid "Filter languages"
msgstr ""
-#: src/strings.ts:1644
+#: src/strings.ts:1648
msgid "Fix it"
msgstr ""
-#: src/strings.ts:2284
+#: src/strings.ts:2288
msgid "Float image"
msgstr ""
-#: src/strings.ts:1990
+#: src/strings.ts:1994
msgid "Focus mode"
msgstr ""
-#: src/strings.ts:2138
+#: src/strings.ts:2142
msgid "follow"
msgstr ""
-#: src/strings.ts:1255
+#: src/strings.ts:1259
msgid "Follow us on Mastodon"
msgstr ""
-#: src/strings.ts:1257
+#: src/strings.ts:1261
msgid "Follow us on Mastodon for updates and news about Notesnook"
msgstr ""
-#: src/strings.ts:1258
+#: src/strings.ts:1262
msgid "Follow us on X"
msgstr ""
-#: src/strings.ts:1259
+#: src/strings.ts:1263
msgid "Follow us on X for updates and news about Notesnook"
msgstr ""
-#: src/strings.ts:2249
+#: src/strings.ts:2253
msgid "Font family"
msgstr ""
-#: src/strings.ts:2250
+#: src/strings.ts:2254
msgid "Font size"
msgstr ""
-#: src/strings.ts:1661
+#: src/strings.ts:1665
msgid "For a more integrated user experience, try out Notesnook for {platform}"
msgstr ""
-#: src/strings.ts:1742
+#: src/strings.ts:1746
msgid "for help regarding how to use the Notesnook Importer."
msgstr ""
-#: src/strings.ts:2170
+#: src/strings.ts:2174
msgid "Force logout from all your other logged in devices."
msgstr ""
@@ -2645,7 +2657,7 @@ msgstr ""
msgid "Force push changes"
msgstr ""
-#: src/strings.ts:2187
+#: src/strings.ts:2191
msgid ""
"Force push:\n"
"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.\n"
@@ -2666,55 +2678,55 @@ msgstr ""
msgid "Friday"
msgstr ""
-#: src/strings.ts:2345
+#: src/strings.ts:2349
msgid "From code"
msgstr ""
-#: src/strings.ts:2342
+#: src/strings.ts:2346
msgid "From URL"
msgstr ""
-#: src/strings.ts:1974
+#: src/strings.ts:1978
msgid "Full name updated"
msgstr ""
-#: src/strings.ts:2181
+#: src/strings.ts:2185
msgid "Full offline mode"
msgstr ""
-#: src/strings.ts:2297
+#: src/strings.ts:2301
msgid "Full screen"
msgstr ""
-#: src/strings.ts:2067
+#: src/strings.ts:2071
msgid "General"
msgstr ""
-#: src/strings.ts:1248
+#: src/strings.ts:1252
msgid "Get helpful debug info about the app to help us find bugs."
msgstr ""
-#: src/strings.ts:1272
+#: src/strings.ts:1276
msgid "Get Notesnook app on your desktop and access all notes"
msgstr ""
-#: src/strings.ts:2132
+#: src/strings.ts:2136
msgid "Get Notesnook app on your iPhone and access all your notes on the go."
msgstr ""
-#: src/strings.ts:2134
+#: src/strings.ts:2138
msgid "Get Notesnook app on your iPhone or Android device and access all your notes on the go."
msgstr ""
-#: src/strings.ts:1359
+#: src/strings.ts:1363
msgid "Get Notesnook Pro"
msgstr ""
-#: src/strings.ts:1344
+#: src/strings.ts:1348
msgid "Get Notesnook Pro to enable automatic backups"
msgstr ""
-#: src/strings.ts:2380
+#: src/strings.ts:2384
msgid "Get Priority support"
msgstr ""
@@ -2726,7 +2738,7 @@ msgstr ""
msgid "Get started"
msgstr ""
-#: src/strings.ts:1860
+#: src/strings.ts:1864
msgid "Getting encryption key..."
msgstr ""
@@ -2738,35 +2750,35 @@ msgstr ""
msgid "Getting recovery codes"
msgstr ""
-#: src/strings.ts:2137
+#: src/strings.ts:2141
msgid "GNU GENERAL PUBLIC LICENSE Version 3"
msgstr ""
-#: src/strings.ts:2200
+#: src/strings.ts:2204
msgid "Go back to notebooks"
msgstr ""
-#: src/strings.ts:2201
+#: src/strings.ts:2205
msgid "Go back to tags"
msgstr ""
-#: src/strings.ts:1788
+#: src/strings.ts:1792
msgid "Go to"
msgstr ""
-#: src/strings.ts:1789
+#: src/strings.ts:1793
msgid "Go to #{tag}"
msgstr ""
-#: src/strings.ts:1672
+#: src/strings.ts:1676
msgid "Go to next page"
msgstr ""
-#: src/strings.ts:1673
+#: src/strings.ts:1677
msgid "Go to previous page"
msgstr ""
-#: src/strings.ts:1281
+#: src/strings.ts:1285
msgid "Go to web app"
msgstr ""
@@ -2778,7 +2790,7 @@ msgstr ""
msgid "GROUP"
msgstr ""
-#: src/strings.ts:1862
+#: src/strings.ts:1866
msgid "Group added successfully"
msgstr ""
@@ -2790,23 +2802,23 @@ msgstr ""
msgid "Hash copied"
msgstr ""
-#: src/strings.ts:2184
+#: src/strings.ts:2188
msgid "Having problems with sync?"
msgstr ""
-#: src/strings.ts:2323
+#: src/strings.ts:2327
msgid "Heading {level}"
msgstr ""
-#: src/strings.ts:2251
+#: src/strings.ts:2255
msgid "Headings"
msgstr ""
-#: src/strings.ts:2358
+#: src/strings.ts:2362
msgid "Height"
msgstr ""
-#: src/strings.ts:1236
+#: src/strings.ts:1240
msgid "Help and support"
msgstr ""
@@ -2814,19 +2826,19 @@ msgstr ""
msgid "Help improve Notesnook by sending completely anonymized"
msgstr ""
-#: src/strings.ts:1352
+#: src/strings.ts:1356
msgid "Hide"
msgstr ""
-#: src/strings.ts:1162
+#: src/strings.ts:1166
msgid "Hide app contents when you switch to other apps. This will also disable screenshot taking in the app."
msgstr ""
-#: src/strings.ts:2143
+#: src/strings.ts:2147
msgid "Hide note title"
msgstr ""
-#: src/strings.ts:2254
+#: src/strings.ts:2258
msgid "Highlight"
msgstr ""
@@ -2834,7 +2846,7 @@ msgstr ""
msgid "History"
msgstr ""
-#: src/strings.ts:1503
+#: src/strings.ts:1507
msgid "Home"
msgstr ""
@@ -2842,19 +2854,19 @@ msgstr ""
msgid "Homepage"
msgstr ""
-#: src/strings.ts:1294
+#: src/strings.ts:1298
msgid "Homepage changed to {name}"
msgstr ""
-#: src/strings.ts:2304
+#: src/strings.ts:2308
msgid "Horizontal rule"
msgstr ""
-#: src/strings.ts:1773
+#: src/strings.ts:1777
msgid "How do you want to recover your account?"
msgstr ""
-#: src/strings.ts:1643
+#: src/strings.ts:1647
msgid "How to fix it?"
msgstr ""
@@ -2882,15 +2894,15 @@ msgstr ""
msgid "I have a recovery code"
msgstr ""
-#: src/strings.ts:1861
+#: src/strings.ts:1865
msgid "I have saved my key"
msgstr ""
-#: src/strings.ts:2397
+#: src/strings.ts:2401
msgid "I love cooking and collecting recipes."
msgstr ""
-#: src/strings.ts:2185
+#: src/strings.ts:2189
msgid "I understand"
msgstr ""
@@ -2906,29 +2918,29 @@ msgstr ""
msgid "If this continues to happen, please reach out to us via"
msgstr ""
-#: src/strings.ts:2088
+#: src/strings.ts:2092
msgid "If true, Notesnook will automatically start up when you turn on & login to your system."
msgstr ""
-#: src/strings.ts:2091
+#: src/strings.ts:2095
msgid "If true, Notesnook will start minimized to either the system tray or your system taskbar/dock. This setting only works with Auto start on system startup is enabled."
msgstr ""
-#: src/strings.ts:1699
+#: src/strings.ts:1703
msgid "If you can't scan the QR code above, enter this text instead (spaces don't matter)"
msgstr ""
-#: src/strings.ts:1371
+#: src/strings.ts:1375
msgid ""
"If you didn't get an email from us or the confirmation link isn't\n"
"working,"
msgstr ""
-#: src/strings.ts:1779
+#: src/strings.ts:1783
msgid "If you don't have a recovery key, you can recover your data by restoring a Notesnook data backup file (.nnbackup)."
msgstr ""
-#: src/strings.ts:2052
+#: src/strings.ts:2056
msgid "If you face any issue, you can reach out to us anytime."
msgstr ""
@@ -2936,15 +2948,19 @@ msgstr ""
msgid "If you want to ask something in general or need some assistance, we would suggest that you"
msgstr ""
-#: src/strings.ts:2309
+#: src/strings.ts:2313
msgid "Image"
msgstr ""
-#: src/strings.ts:2285
+#: src/strings.ts:1114
+msgid "Image Compression"
+msgstr ""
+
+#: src/strings.ts:2289
msgid "Image properties"
msgstr ""
-#: src/strings.ts:2280
+#: src/strings.ts:2284
msgid "Image settings"
msgstr ""
@@ -2960,19 +2976,19 @@ msgstr ""
msgid "Images uploaded without compression are slow to load and take more bandwidth. We recommend compressing images unless you need image in original quality."
msgstr ""
-#: src/strings.ts:1557
+#: src/strings.ts:1561
msgid "Immediately"
msgstr ""
-#: src/strings.ts:2115
+#: src/strings.ts:2119
msgid "Import & export"
msgstr ""
-#: src/strings.ts:1726
+#: src/strings.ts:1730
msgid "Import completed"
msgstr ""
-#: src/strings.ts:1741
+#: src/strings.ts:1745
msgid "import guide"
msgstr ""
@@ -2980,7 +2996,7 @@ msgstr ""
msgid "Incoming"
msgstr ""
-#: src/strings.ts:1812
+#: src/strings.ts:1816
msgid "Incoming note"
msgstr ""
@@ -2988,59 +3004,59 @@ msgstr ""
msgid "Incorrect {type}"
msgstr ""
-#: src/strings.ts:2366
+#: src/strings.ts:2370
msgid "Increase {title}"
msgstr ""
-#: src/strings.ts:2210
+#: src/strings.ts:2214
msgid "Insert"
msgstr ""
-#: src/strings.ts:2363
+#: src/strings.ts:2367
msgid "Insert a {rows}x{columns} table"
msgstr ""
-#: src/strings.ts:2314
+#: src/strings.ts:2318
msgid "Insert a table"
msgstr ""
-#: src/strings.ts:2316
+#: src/strings.ts:2320
msgid "Insert an embed"
msgstr ""
-#: src/strings.ts:2310
+#: src/strings.ts:2314
msgid "Insert an image"
msgstr ""
-#: src/strings.ts:2261
+#: src/strings.ts:2265
msgid "Insert column left"
msgstr ""
-#: src/strings.ts:2262
+#: src/strings.ts:2266
msgid "Insert column right"
msgstr ""
-#: src/strings.ts:2208
+#: src/strings.ts:2212
msgid "Insert link"
msgstr ""
-#: src/strings.ts:2268
+#: src/strings.ts:2272
msgid "Insert row above"
msgstr ""
-#: src/strings.ts:2269
+#: src/strings.ts:2273
msgid "Insert row below"
msgstr ""
-#: src/strings.ts:1659
+#: src/strings.ts:1663
msgid "Install Notesnook"
msgstr ""
-#: src/strings.ts:2123
+#: src/strings.ts:2127
msgid "Install update"
msgstr ""
-#: src/strings.ts:1694
+#: src/strings.ts:1698
msgid "installs"
msgstr ""
@@ -3048,11 +3064,11 @@ msgstr ""
msgid "Invalid {type}"
msgstr ""
-#: src/strings.ts:1966
+#: src/strings.ts:1970
msgid "Invalid CORS proxy url"
msgstr ""
-#: src/strings.ts:1459
+#: src/strings.ts:1463
msgid "Invalid email"
msgstr ""
@@ -3065,7 +3081,7 @@ msgstr ""
msgid "It may take a minute to receive your code."
msgstr ""
-#: src/strings.ts:1565
+#: src/strings.ts:1569
msgid "It seems that your changes could not be saved. What to do next:"
msgstr ""
@@ -3073,7 +3089,7 @@ msgstr ""
msgid "It took us a year to bring Notesnook to life. Share your experience and suggestions to help us improve it."
msgstr ""
-#: src/strings.ts:2230
+#: src/strings.ts:2234
msgid "Italic"
msgstr ""
@@ -3086,7 +3102,7 @@ msgid "Item"
msgstr ""
#: src/strings.ts:311
-#: src/strings.ts:1678
+#: src/strings.ts:1682
msgid "items"
msgstr ""
@@ -3094,7 +3110,7 @@ msgstr ""
msgid "Items"
msgstr ""
-#: src/strings.ts:2135
+#: src/strings.ts:2139
msgid "Join community"
msgstr ""
@@ -3102,27 +3118,27 @@ msgstr ""
msgid "join our community on Discord."
msgstr ""
-#: src/strings.ts:1260
+#: src/strings.ts:1264
msgid "Join our Discord server"
msgstr ""
-#: src/strings.ts:1262
+#: src/strings.ts:1266
msgid "Join our Discord server to chat with other users and the team"
msgstr ""
-#: src/strings.ts:1252
+#: src/strings.ts:1256
msgid "Join our Telegram group"
msgstr ""
-#: src/strings.ts:1254
+#: src/strings.ts:1258
msgid "Join our Telegram group to chat with other users and the team"
msgstr ""
-#: src/strings.ts:2043
+#: src/strings.ts:2047
msgid "Join the cause"
msgstr ""
-#: src/strings.ts:2001
+#: src/strings.ts:2005
msgid "Jump to group"
msgstr ""
@@ -3130,19 +3146,19 @@ msgstr ""
msgid "Keep"
msgstr ""
-#: src/strings.ts:1996
+#: src/strings.ts:2000
msgid "Keep open"
msgstr ""
-#: src/strings.ts:1336
+#: src/strings.ts:1340
msgid "Keep your data safe"
msgstr ""
-#: src/strings.ts:2103
+#: src/strings.ts:2107
msgid "Languages"
msgstr ""
-#: src/strings.ts:2205
+#: src/strings.ts:2209
msgid "Last edited at"
msgstr ""
@@ -3170,7 +3186,7 @@ msgstr ""
msgid "Learn more about Notesnook Monograph"
msgstr ""
-#: src/strings.ts:1537
+#: src/strings.ts:1541
msgid "Legal"
msgstr ""
@@ -3178,15 +3194,15 @@ msgstr ""
msgid "Let us know if you have faced any issue/bug while using Notesnook. We will try to fix it as soon as possible."
msgstr ""
-#: src/strings.ts:2136
+#: src/strings.ts:2140
msgid "License"
msgstr ""
-#: src/strings.ts:1695
+#: src/strings.ts:1699
msgid "Licensed under {license}"
msgstr ""
-#: src/strings.ts:2300
+#: src/strings.ts:2304
msgid "Lift list item"
msgstr ""
@@ -3194,15 +3210,15 @@ msgstr ""
msgid "Light"
msgstr ""
-#: src/strings.ts:2330
+#: src/strings.ts:2334
msgid "Line {line}, Column {column}"
msgstr ""
-#: src/strings.ts:1132
+#: src/strings.ts:1136
msgid "Line spacing changed"
msgstr ""
-#: src/strings.ts:2234
+#: src/strings.ts:2238
msgid "Link"
msgstr ""
@@ -3214,11 +3230,11 @@ msgstr ""
msgid "Link notebooks"
msgstr ""
-#: src/strings.ts:2239
+#: src/strings.ts:2243
msgid "Link settings"
msgstr ""
-#: src/strings.ts:2360
+#: src/strings.ts:2364
msgid "Link text"
msgstr ""
@@ -3238,7 +3254,7 @@ msgstr ""
msgid "Linked notes"
msgstr ""
-#: src/strings.ts:1571
+#: src/strings.ts:1575
msgid "Linking to a specific block is not available for locked notes."
msgstr ""
@@ -3250,7 +3266,7 @@ msgstr ""
msgid "Load from file"
msgstr ""
-#: src/strings.ts:1670
+#: src/strings.ts:1674
msgid "Loading"
msgstr ""
@@ -3258,7 +3274,7 @@ msgstr ""
msgid "Loading {0}, please wait..."
msgstr ""
-#: src/strings.ts:1639
+#: src/strings.ts:1643
msgid "Loading editor. Please wait..."
msgstr ""
@@ -3270,7 +3286,7 @@ msgstr ""
msgid "Loading themes..."
msgstr ""
-#: src/strings.ts:1304
+#: src/strings.ts:1308
msgid "Loading trash"
msgstr ""
@@ -3306,7 +3322,7 @@ msgstr ""
msgid "Lock note"
msgstr ""
-#: src/strings.ts:1164
+#: src/strings.ts:1168
msgid "Lock the app with a password or pin"
msgstr ""
@@ -3318,7 +3334,7 @@ msgstr ""
msgid "Locked notes cannot be published"
msgstr ""
-#: src/strings.ts:2168
+#: src/strings.ts:2172
msgid "Log out from all other devices"
msgstr ""
@@ -3330,7 +3346,7 @@ msgstr ""
msgid "Logging out. Please wait..."
msgstr ""
-#: src/strings.ts:1757
+#: src/strings.ts:1761
msgid "Logging you in"
msgstr ""
@@ -3350,7 +3366,7 @@ msgstr ""
msgid "Login successful"
msgstr ""
-#: src/strings.ts:1339
+#: src/strings.ts:1343
msgid "Login to encrypt and sync notes"
msgstr ""
@@ -3370,11 +3386,11 @@ msgstr ""
msgid "Logout from this device"
msgstr ""
-#: src/strings.ts:1389
+#: src/strings.ts:1393
msgid "Long press on any item in list to enter multi-select mode."
msgstr ""
-#: src/strings.ts:2335
+#: src/strings.ts:2339
msgid "Make task list readonly"
msgstr ""
@@ -3402,11 +3418,11 @@ msgstr ""
msgid "Manage your attachments in one place"
msgstr ""
-#: src/strings.ts:1191
+#: src/strings.ts:1195
msgid "Manage your backups and restore data"
msgstr ""
-#: src/strings.ts:1225
+#: src/strings.ts:1229
msgid "Manage your reminders"
msgstr ""
@@ -3414,51 +3430,51 @@ msgstr ""
msgid "Manage your sync settings here"
msgstr ""
-#: src/strings.ts:1417
+#: src/strings.ts:1421
msgid "Mark important notes by adding them to favorites."
msgstr ""
-#: src/strings.ts:1139
+#: src/strings.ts:1143
msgid "Markdown shortcuts"
msgstr ""
-#: src/strings.ts:1145
+#: src/strings.ts:1149
msgid "Marketing emails"
msgstr ""
-#: src/strings.ts:2348
+#: src/strings.ts:2352
msgid "Match case"
msgstr ""
-#: src/strings.ts:2349
+#: src/strings.ts:2353
msgid "Match whole word"
msgstr ""
-#: src/strings.ts:2256
+#: src/strings.ts:2260
msgid "Math (inline)"
msgstr ""
-#: src/strings.ts:2307
+#: src/strings.ts:2311
msgid "Math & formulas"
msgstr ""
-#: src/strings.ts:2015
+#: src/strings.ts:2019
msgid "Maximize"
msgstr ""
-#: src/strings.ts:2045
+#: src/strings.ts:2049
msgid "Meet other privacy-minded people & talk to us directly about your concerns, issues and suggestions."
msgstr ""
-#: src/strings.ts:2390
+#: src/strings.ts:2394
msgid "Meetings"
msgstr ""
-#: src/strings.ts:1754
+#: src/strings.ts:1758
msgid "Member since {date}"
msgstr ""
-#: src/strings.ts:2267
+#: src/strings.ts:2271
msgid "Merge cells"
msgstr ""
@@ -3474,15 +3490,15 @@ msgstr ""
msgid "min"
msgstr ""
-#: src/strings.ts:1984
+#: src/strings.ts:1988
msgid "Minimal"
msgstr ""
-#: src/strings.ts:2014
+#: src/strings.ts:2018
msgid "Minimize"
msgstr ""
-#: src/strings.ts:2092
+#: src/strings.ts:2096
msgid "Minimize to system tray"
msgstr ""
@@ -3498,7 +3514,7 @@ msgstr ""
msgid "Monday"
msgstr ""
-#: src/strings.ts:1606
+#: src/strings.ts:1610
msgid "Monograph server"
msgstr ""
@@ -3508,19 +3524,19 @@ msgstr ""
#: src/strings.ts:322
#: src/strings.ts:927
-#: src/strings.ts:1505
+#: src/strings.ts:1509
msgid "Monographs"
msgstr ""
-#: src/strings.ts:1399
+#: src/strings.ts:1403
msgid "Monographs can be encrypted with a secret key and shared with anyone."
msgstr ""
-#: src/strings.ts:1394
+#: src/strings.ts:1398
msgid "Monographs enable you to share your notes in a secure and private way."
msgstr ""
-#: src/strings.ts:1815
+#: src/strings.ts:1819
msgid "month"
msgstr ""
@@ -3529,11 +3545,11 @@ msgid "Month"
msgstr ""
#: src/strings.ts:169
-#: src/strings.ts:1545
+#: src/strings.ts:1549
msgid "Monthly"
msgstr ""
-#: src/strings.ts:2287
+#: src/strings.ts:2291
msgid "More"
msgstr ""
@@ -3541,15 +3557,15 @@ msgstr ""
msgid "Move"
msgstr ""
-#: src/strings.ts:2336
+#: src/strings.ts:2340
msgid "Move all checked tasks to bottom"
msgstr ""
-#: src/strings.ts:2263
+#: src/strings.ts:2267
msgid "Move column left"
msgstr ""
-#: src/strings.ts:2264
+#: src/strings.ts:2268
msgid "Move column right"
msgstr ""
@@ -3561,11 +3577,11 @@ msgstr ""
msgid "Move notes"
msgstr ""
-#: src/strings.ts:2271
+#: src/strings.ts:2275
msgid "Move row down"
msgstr ""
-#: src/strings.ts:2270
+#: src/strings.ts:2274
msgid "Move row up"
msgstr ""
@@ -3581,7 +3597,7 @@ msgstr ""
msgid "Move to trash"
msgstr ""
-#: src/strings.ts:1152
+#: src/strings.ts:1156
msgid "Multi-layer encryption to most important notes"
msgstr ""
@@ -3589,7 +3605,7 @@ msgstr ""
msgid "Name"
msgstr ""
-#: src/strings.ts:1663
+#: src/strings.ts:1667
msgid "Native high-performance encryption"
msgstr ""
@@ -3597,7 +3613,7 @@ msgstr ""
msgid "Never"
msgstr ""
-#: src/strings.ts:1319
+#: src/strings.ts:1323
msgid "Never ask again"
msgstr ""
@@ -3617,11 +3633,11 @@ msgstr ""
msgid "New color"
msgstr ""
-#: src/strings.ts:1821
+#: src/strings.ts:1825
msgid "New Email"
msgstr ""
-#: src/strings.ts:1131
+#: src/strings.ts:1135
msgid "New lines will be double spaced (old ones won't be affected)."
msgstr ""
@@ -3633,11 +3649,11 @@ msgstr ""
msgid "New notebook"
msgstr ""
-#: src/strings.ts:1457
+#: src/strings.ts:1461
msgid "New password"
msgstr ""
-#: src/strings.ts:1463
+#: src/strings.ts:1467
msgid "New pin"
msgstr ""
@@ -3649,7 +3665,7 @@ msgstr ""
msgid "New tab"
msgstr ""
-#: src/strings.ts:1345
+#: src/strings.ts:1349
msgid "New update available"
msgstr ""
@@ -3657,11 +3673,11 @@ msgstr ""
msgid "New version"
msgstr ""
-#: src/strings.ts:1999
+#: src/strings.ts:2003
msgid "Newest - oldest"
msgstr ""
-#: src/strings.ts:1122
+#: src/strings.ts:1126
msgid "Newly created notes will be uncategorized"
msgstr ""
@@ -3669,7 +3685,7 @@ msgstr ""
msgid "Next"
msgstr ""
-#: src/strings.ts:2352
+#: src/strings.ts:2356
msgid "Next match"
msgstr ""
@@ -3697,7 +3713,7 @@ msgstr ""
msgid "No color selected"
msgstr ""
-#: src/strings.ts:1211
+#: src/strings.ts:1215
msgid "No directory selected"
msgstr ""
@@ -3705,11 +3721,11 @@ msgstr ""
msgid "No downloads in progress."
msgstr ""
-#: src/strings.ts:1959
+#: src/strings.ts:1963
msgid "No encryption key found"
msgstr ""
-#: src/strings.ts:1640
+#: src/strings.ts:1644
msgid "No headings found"
msgstr ""
@@ -3737,7 +3753,7 @@ msgstr ""
msgid "No results found for \"{query}\""
msgstr ""
-#: src/strings.ts:1492
+#: src/strings.ts:1496
msgid "No results found for {query}"
msgstr ""
@@ -3753,7 +3769,7 @@ msgstr ""
msgid "None"
msgstr ""
-#: src/strings.ts:1989
+#: src/strings.ts:1993
msgid "Normal mode"
msgstr ""
@@ -3774,7 +3790,7 @@ msgstr ""
msgid "Note copied to clipboard"
msgstr ""
-#: src/strings.ts:1924
+#: src/strings.ts:1928
msgid "Note does not exist"
msgstr ""
@@ -3790,7 +3806,7 @@ msgstr ""
msgid "Note restored from history"
msgstr ""
-#: src/strings.ts:1560
+#: src/strings.ts:1564
msgid "Note title"
msgstr ""
@@ -3802,7 +3818,7 @@ msgstr ""
msgid "Note version history is local only."
msgstr ""
-#: src/strings.ts:1204
+#: src/strings.ts:1208
msgid "NOTE: Creating a backup with attachments can take a while, and also fail completely. The app will try to resume/restart the backup in case of interruptions."
msgstr ""
@@ -3811,7 +3827,7 @@ msgid "notebook"
msgstr ""
#: src/strings.ts:296
-#: src/strings.ts:1496
+#: src/strings.ts:1500
msgid "Notebook"
msgstr ""
@@ -3821,15 +3837,15 @@ msgstr ""
#: src/strings.ts:258
#: src/strings.ts:316
-#: src/strings.ts:1495
+#: src/strings.ts:1499
msgid "Notebooks"
msgstr ""
-#: src/strings.ts:1769
+#: src/strings.ts:1773
msgid "NOTEBOOKS"
msgstr ""
-#: src/strings.ts:2215
+#: src/strings.ts:2219
msgid "Notebooks are the best way to organize your notes."
msgstr ""
@@ -3838,7 +3854,7 @@ msgid "notes"
msgstr ""
#: src/strings.ts:315
-#: src/strings.ts:1494
+#: src/strings.ts:1498
msgid "Notes"
msgstr ""
@@ -3846,15 +3862,15 @@ msgstr ""
msgid "Notes exported as {path} successfully"
msgstr ""
-#: src/strings.ts:1725
+#: src/strings.ts:1729
msgid "notes imported"
msgstr ""
-#: src/strings.ts:2042
+#: src/strings.ts:2046
msgid "Notesnook encrypts everything offline before syncing to your other devices. This means that no one can read your notes except you. Not even us."
msgstr ""
-#: src/strings.ts:2117
+#: src/strings.ts:2121
msgid "Notesnook Importer"
msgstr ""
@@ -3862,7 +3878,7 @@ msgstr ""
msgid "Notesnook Pro"
msgstr ""
-#: src/strings.ts:2149
+#: src/strings.ts:2153
msgid ""
"Notesnook uses the following DNS providers:\n"
"1. Cloudflare DNS\n"
@@ -3878,23 +3894,23 @@ msgstr ""
msgid "Notesnook will send you an SMS with a 2FA code when prompted"
msgstr ""
-#: src/strings.ts:2112
+#: src/strings.ts:2116
msgid "Notifications"
msgstr ""
-#: src/strings.ts:1354
+#: src/strings.ts:1358
msgid "Notifications disabled"
msgstr ""
-#: src/strings.ts:2247
+#: src/strings.ts:2251
msgid "Numbered list"
msgstr ""
-#: src/strings.ts:1693
+#: src/strings.ts:1697
msgid "of"
msgstr ""
-#: src/strings.ts:1577
+#: src/strings.ts:1581
msgid "Off"
msgstr ""
@@ -3902,7 +3918,7 @@ msgstr ""
msgid "Offline"
msgstr ""
-#: src/strings.ts:2202
+#: src/strings.ts:2206
msgid "Okay"
msgstr ""
@@ -3910,15 +3926,15 @@ msgstr ""
msgid "Old - new"
msgstr ""
-#: src/strings.ts:1456
+#: src/strings.ts:1460
msgid "Old password"
msgstr ""
-#: src/strings.ts:1810
+#: src/strings.ts:1814
msgid "Older version"
msgstr ""
-#: src/strings.ts:1998
+#: src/strings.ts:2002
msgid "Oldest - newest"
msgstr ""
@@ -3926,7 +3942,7 @@ msgstr ""
msgid "Once your password is changed, please make sure to save the new account recovery key"
msgstr ""
-#: src/strings.ts:1746
+#: src/strings.ts:1750
msgid "Only .zip files are supported."
msgstr ""
@@ -3942,11 +3958,11 @@ msgstr ""
msgid "Open in browser"
msgstr ""
-#: src/strings.ts:1283
+#: src/strings.ts:1287
msgid "Open in browser to manage subscription"
msgstr ""
-#: src/strings.ts:2298
+#: src/strings.ts:2302
msgid "Open in new tab"
msgstr ""
@@ -3954,27 +3970,27 @@ msgstr ""
msgid "Open issue"
msgstr ""
-#: src/strings.ts:2237
+#: src/strings.ts:2241
msgid "Open link"
msgstr ""
-#: src/strings.ts:1838
+#: src/strings.ts:1842
msgid "Open note"
msgstr ""
-#: src/strings.ts:1357
+#: src/strings.ts:1361
msgid "Open settings"
msgstr ""
-#: src/strings.ts:2299
+#: src/strings.ts:2303
msgid "Open source"
msgstr ""
-#: src/strings.ts:1268
+#: src/strings.ts:1272
msgid "Open source libraries used in Notesnook"
msgstr ""
-#: src/strings.ts:1267
+#: src/strings.ts:1271
msgid "Open source licenses"
msgstr ""
@@ -3986,7 +4002,7 @@ msgstr ""
msgid "Open the two-factor authentication (TOTP) app to view your authentication code."
msgstr ""
-#: src/strings.ts:1832
+#: src/strings.ts:1836
msgid "Optional"
msgstr ""
@@ -3994,11 +4010,11 @@ msgstr ""
msgid "or email us at"
msgstr ""
-#: src/strings.ts:1997
+#: src/strings.ts:2001
msgid "Order by"
msgstr ""
-#: src/strings.ts:2195
+#: src/strings.ts:2199
msgid "Order ID"
msgstr ""
@@ -4007,19 +4023,19 @@ msgstr ""
msgid "Orphaned"
msgstr ""
-#: src/strings.ts:2120
+#: src/strings.ts:2124
msgid "Other"
msgstr ""
-#: src/strings.ts:2319
+#: src/strings.ts:2323
msgid "Outline list"
msgstr ""
-#: src/strings.ts:2322
+#: src/strings.ts:2326
msgid "Paragraph"
msgstr ""
-#: src/strings.ts:2076
+#: src/strings.ts:2080
msgid "Partial backups contain all your data except attachments. They are created from data already available on your device and do not require an Internet connection."
msgstr ""
@@ -4027,7 +4043,7 @@ msgstr ""
msgid "Partially refunded"
msgstr ""
-#: src/strings.ts:2375
+#: src/strings.ts:2379
msgid "Passed"
msgstr ""
@@ -4063,23 +4079,23 @@ msgstr ""
msgid "Password updated"
msgstr ""
-#: src/strings.ts:2056
+#: src/strings.ts:2060
msgid "Password/pin"
msgstr ""
-#: src/strings.ts:2223
+#: src/strings.ts:2227
msgid "Paste"
msgstr ""
-#: src/strings.ts:2344
+#: src/strings.ts:2348
msgid "Paste embed code here. Only iframes are supported."
msgstr ""
-#: src/strings.ts:2359
+#: src/strings.ts:2363
msgid "Paste image URL here"
msgstr ""
-#: src/strings.ts:2174
+#: src/strings.ts:2178
msgid "Payment method"
msgstr ""
@@ -4087,11 +4103,11 @@ msgstr ""
msgid "PDF is password protected"
msgstr ""
-#: src/strings.ts:1704
+#: src/strings.ts:1708
msgid "phone number"
msgstr ""
-#: src/strings.ts:1823
+#: src/strings.ts:1827
msgid "Phone number"
msgstr ""
@@ -4103,7 +4119,7 @@ msgstr ""
msgid "Pin"
msgstr ""
-#: src/strings.ts:1665
+#: src/strings.ts:1669
msgid "Pin notes in notifications drawer"
msgstr ""
@@ -4115,7 +4131,7 @@ msgstr ""
msgid "Pinned"
msgstr ""
-#: src/strings.ts:1341
+#: src/strings.ts:1345
msgid "Please confirm your email to sync notes"
msgstr ""
@@ -4124,7 +4140,7 @@ msgid "Please confirm your identity by entering a recovery code."
msgstr ""
#: src/strings.ts:967
-#: src/strings.ts:2207
+#: src/strings.ts:2211
msgid "Please confirm your identity by entering the authentication code from your authenticator app."
msgstr ""
@@ -4136,31 +4152,31 @@ msgstr ""
msgid "Please confirm your identity by entering the authentication code sent to your email address."
msgstr ""
-#: src/strings.ts:1884
+#: src/strings.ts:1888
msgid "Please download a backup of your data as your account will be cleared before recovery."
msgstr ""
-#: src/strings.ts:1489
+#: src/strings.ts:1493
msgid "Please enter a valid email address"
msgstr ""
-#: src/strings.ts:1929
+#: src/strings.ts:1933
msgid "Please enter a valid hex color (e.g. #ffffff)"
msgstr ""
-#: src/strings.ts:1490
+#: src/strings.ts:1494
msgid "Please enter a valid phone number with country code"
msgstr ""
-#: src/strings.ts:1610
+#: src/strings.ts:1614
msgid "Please enter a valid URL"
msgstr ""
-#: src/strings.ts:1595
+#: src/strings.ts:1599
msgid "Please enter password of this backup file"
msgstr ""
-#: src/strings.ts:2218
+#: src/strings.ts:2222
msgid "Please enter the password to decrypt and restore this backup."
msgstr ""
@@ -4168,11 +4184,11 @@ msgstr ""
msgid "Please enter the password to unlock the PDF and view the content."
msgstr ""
-#: src/strings.ts:1840
+#: src/strings.ts:1844
msgid "Please enter the password to unlock this note"
msgstr ""
-#: src/strings.ts:1837
+#: src/strings.ts:1841
msgid "Please enter the password to view this version"
msgstr ""
@@ -4188,7 +4204,7 @@ msgstr ""
msgid "Please enter your password to continue"
msgstr ""
-#: src/strings.ts:1908
+#: src/strings.ts:1912
msgid "Please enter your vault password to continue"
msgstr ""
@@ -4196,7 +4212,7 @@ msgstr ""
msgid "Please fill all the fields to continue."
msgstr ""
-#: src/strings.ts:1531
+#: src/strings.ts:1535
msgid "Please grant notifications permission to add new reminders."
msgstr ""
@@ -4208,31 +4224,31 @@ msgstr ""
msgid "Please note that we will respond to your issue on the given link. We recommend that you save it."
msgstr ""
-#: src/strings.ts:1740
+#: src/strings.ts:1744
msgid "Please refer to the"
msgstr ""
-#: src/strings.ts:1532
+#: src/strings.ts:1536
msgid "Please select the day to repeat the reminder on"
msgstr ""
-#: src/strings.ts:1373
+#: src/strings.ts:1377
msgid "please send us an email from your registered email address"
msgstr ""
-#: src/strings.ts:2364
+#: src/strings.ts:2368
msgid "Please set a table size"
msgstr ""
-#: src/strings.ts:1533
+#: src/strings.ts:1537
msgid "Please set title of the reminder"
msgstr ""
-#: src/strings.ts:1962
+#: src/strings.ts:1966
msgid "Please try again"
msgstr ""
-#: src/strings.ts:1982
+#: src/strings.ts:1986
msgid "Please upgrade to Pro to enable automatic backups."
msgstr ""
@@ -4248,8 +4264,8 @@ msgstr ""
msgid "Please wait before requesting a new code"
msgstr ""
-#: src/strings.ts:1376
-#: src/strings.ts:1526
+#: src/strings.ts:1380
+#: src/strings.ts:1530
msgid "Please wait before requesting another email"
msgstr ""
@@ -4265,7 +4281,7 @@ msgstr ""
msgid "Please wait while we export your notes."
msgstr ""
-#: src/strings.ts:1869
+#: src/strings.ts:1873
msgid "Please wait while we finalize your account."
msgstr ""
@@ -4277,15 +4293,15 @@ msgstr ""
msgid "Please wait while we log you out."
msgstr ""
-#: src/strings.ts:1890
+#: src/strings.ts:1894
msgid "Please wait while we reset your account password."
msgstr ""
-#: src/strings.ts:1588
+#: src/strings.ts:1592
msgid "Please wait while we restore your backup..."
msgstr ""
-#: src/strings.ts:1872
+#: src/strings.ts:1876
msgid "Please wait while we send you recovery instructions"
msgstr ""
@@ -4297,12 +4313,12 @@ msgstr ""
msgid "Please wait while we verify your subscription"
msgstr ""
-#: src/strings.ts:1758
-#: src/strings.ts:1865
+#: src/strings.ts:1762
+#: src/strings.ts:1869
msgid "Please wait while you are authenticated."
msgstr ""
-#: src/strings.ts:1877
+#: src/strings.ts:1881
msgid "Please wait while your data is downloaded & decrypted."
msgstr ""
@@ -4310,7 +4326,7 @@ msgstr ""
msgid "Preparing note for share"
msgstr ""
-#: src/strings.ts:1590
+#: src/strings.ts:1594
msgid "Preparing to restore backup file..."
msgstr ""
@@ -4318,19 +4334,19 @@ msgstr ""
msgid "PRESETS"
msgstr ""
-#: src/strings.ts:2094
+#: src/strings.ts:2098
msgid "Pressing \"—\" will hide the app in your system tray."
msgstr ""
-#: src/strings.ts:2097
+#: src/strings.ts:2101
msgid "Pressing \"X\" will hide the app in your system tray."
msgstr ""
-#: src/strings.ts:2145
+#: src/strings.ts:2149
msgid "Prevent note title from appearing in tab/window title."
msgstr ""
-#: src/strings.ts:2286
+#: src/strings.ts:2290
msgid "Preview attachment"
msgstr ""
@@ -4338,23 +4354,23 @@ msgstr ""
msgid "Preview not available, content is encrypted."
msgstr ""
-#: src/strings.ts:2353
+#: src/strings.ts:2357
msgid "Previous match"
msgstr ""
-#: src/strings.ts:2009
+#: src/strings.ts:2013
msgid "Print"
msgstr ""
-#: src/strings.ts:2119
+#: src/strings.ts:2123
msgid "Privacy"
msgstr ""
-#: src/strings.ts:1141
+#: src/strings.ts:1145
msgid "Privacy & security"
msgstr ""
-#: src/strings.ts:1630
+#: src/strings.ts:1634
msgid "Privacy comes first."
msgstr ""
@@ -4362,11 +4378,11 @@ msgstr ""
msgid "Privacy for everyone"
msgstr ""
-#: src/strings.ts:1160
+#: src/strings.ts:1164
msgid "Privacy mode"
msgstr ""
-#: src/strings.ts:1265
+#: src/strings.ts:1269
msgid "Privacy policy"
msgstr ""
@@ -4386,31 +4402,31 @@ msgstr ""
msgid "privileged few"
msgstr ""
-#: src/strings.ts:1696
+#: src/strings.ts:1700
msgid "Pro"
msgstr ""
-#: src/strings.ts:2022
+#: src/strings.ts:2026
msgid "Processing {collection}..."
msgstr ""
-#: src/strings.ts:2021
+#: src/strings.ts:2025
msgid "Processing..."
msgstr ""
-#: src/strings.ts:1220
+#: src/strings.ts:1224
msgid "Productivity"
msgstr ""
-#: src/strings.ts:2108
+#: src/strings.ts:2112
msgid "Profile"
msgstr ""
-#: src/strings.ts:1930
+#: src/strings.ts:1934
msgid "Profile updated"
msgstr ""
-#: src/strings.ts:1841
+#: src/strings.ts:1845
msgid "Properties"
msgstr ""
@@ -4418,7 +4434,7 @@ msgstr ""
msgid "Protect your notes"
msgstr ""
-#: src/strings.ts:2156
+#: src/strings.ts:2160
msgid "Proxy"
msgstr ""
@@ -4450,31 +4466,31 @@ msgstr ""
msgid "Published note link will be automatically deleted once it is viewed by someone."
msgstr ""
-#: src/strings.ts:1348
+#: src/strings.ts:1352
msgid "Quick note"
msgstr ""
-#: src/strings.ts:1221
+#: src/strings.ts:1225
msgid "Quick note notification"
msgstr ""
-#: src/strings.ts:1667
+#: src/strings.ts:1671
msgid "Quick note widgets"
msgstr ""
-#: src/strings.ts:1223
+#: src/strings.ts:1227
msgid "Quickly create a note from the notification"
msgstr ""
-#: src/strings.ts:2306
+#: src/strings.ts:2310
msgid "Quote"
msgstr ""
-#: src/strings.ts:1334
+#: src/strings.ts:1338
msgid "Rate Notesnook on App Store"
msgstr ""
-#: src/strings.ts:1335
+#: src/strings.ts:1339
msgid "Rate Notesnook on Play Store"
msgstr ""
@@ -4490,39 +4506,39 @@ msgstr ""
msgid "Read only"
msgstr ""
-#: src/strings.ts:1245
+#: src/strings.ts:1249
msgid "Read the documentation to learn more about Notesnook"
msgstr ""
-#: src/strings.ts:1266
+#: src/strings.ts:1270
msgid "Read the privacy policy"
msgstr ""
-#: src/strings.ts:1264
+#: src/strings.ts:1268
msgid "Read the terms of service"
msgstr ""
-#: src/strings.ts:1591
+#: src/strings.ts:1595
msgid "Reading backup file..."
msgstr ""
-#: src/strings.ts:2198
+#: src/strings.ts:2202
msgid "Receipt"
msgstr ""
-#: src/strings.ts:1586
+#: src/strings.ts:1590
msgid "RECENT BACKUPS"
msgstr ""
-#: src/strings.ts:2371
+#: src/strings.ts:2375
msgid "Recheck all"
msgstr ""
-#: src/strings.ts:1976
+#: src/strings.ts:1980
msgid "Rechecking failed"
msgstr ""
-#: src/strings.ts:2396
+#: src/strings.ts:2400
msgid "Recipes"
msgstr ""
@@ -4562,19 +4578,19 @@ msgstr ""
msgid "Recovery key text file saved"
msgstr ""
-#: src/strings.ts:1891
+#: src/strings.ts:1895
msgid "Recovery successful!"
msgstr ""
-#: src/strings.ts:2408
+#: src/strings.ts:2412
msgid "Redeem"
msgstr ""
-#: src/strings.ts:2405
+#: src/strings.ts:2409
msgid "Redeem gift code"
msgstr ""
-#: src/strings.ts:2407
+#: src/strings.ts:2411
msgid "Redeeming gift code"
msgstr ""
@@ -4594,7 +4610,7 @@ msgstr ""
msgid "Regenerate"
msgstr ""
-#: src/strings.ts:2062
+#: src/strings.ts:2066
msgid "Register"
msgstr ""
@@ -4602,15 +4618,15 @@ msgstr ""
msgid "Release notes"
msgstr ""
-#: src/strings.ts:1645
+#: src/strings.ts:1649
msgid "Reload app"
msgstr ""
-#: src/strings.ts:1803
+#: src/strings.ts:1807
msgid "Relogin to your account"
msgstr ""
-#: src/strings.ts:1771
+#: src/strings.ts:1775
msgid "Remembered your password?"
msgstr ""
@@ -4622,7 +4638,7 @@ msgstr ""
msgid "Remind me in"
msgstr ""
-#: src/strings.ts:1483
+#: src/strings.ts:1487
msgid "Remind me of..."
msgstr ""
@@ -4634,11 +4650,11 @@ msgstr ""
msgid "Reminder"
msgstr ""
-#: src/strings.ts:1226
+#: src/strings.ts:1230
msgid "Reminder notifications"
msgstr ""
-#: src/strings.ts:1534
+#: src/strings.ts:1538
msgid "Reminder time cannot be earlier than the current time."
msgstr ""
@@ -4647,16 +4663,16 @@ msgid "reminders"
msgstr ""
#: src/strings.ts:318
-#: src/strings.ts:1224
-#: src/strings.ts:1498
+#: src/strings.ts:1228
+#: src/strings.ts:1502
msgid "Reminders"
msgstr ""
-#: src/strings.ts:1356
+#: src/strings.ts:1360
msgid "Reminders cannot be set because notifications have been disabled from app settings. If you want to keep receiving reminder notifications, enable notifications for Notesnook from app settings."
msgstr ""
-#: src/strings.ts:1928
+#: src/strings.ts:1932
msgid "Reminders will not be active on this device as it does not support notifications."
msgstr ""
@@ -4664,23 +4680,23 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: src/strings.ts:1155
+#: src/strings.ts:1159
msgid "Remove all notes from the vault."
msgstr ""
-#: src/strings.ts:1182
+#: src/strings.ts:1186
msgid "Remove app lock password"
msgstr ""
-#: src/strings.ts:1186
+#: src/strings.ts:1190
msgid "Remove app lock password, app lock will be disabled if no other security method is enabled."
msgstr ""
-#: src/strings.ts:1181
+#: src/strings.ts:1185
msgid "Remove app lock pin"
msgstr ""
-#: src/strings.ts:1184
+#: src/strings.ts:1188
msgid "Remove app lock pin, app lock will be disabled if no other security method is enabled."
msgstr ""
@@ -4688,7 +4704,7 @@ msgstr ""
msgid "Remove as default"
msgstr ""
-#: src/strings.ts:2290
+#: src/strings.ts:2294
msgid "Remove attachment"
msgstr ""
@@ -4704,7 +4720,7 @@ msgstr ""
msgid "Remove full name"
msgstr ""
-#: src/strings.ts:2236
+#: src/strings.ts:2240
msgid "Remove link"
msgstr ""
@@ -4736,19 +4752,19 @@ msgstr ""
msgid "Repeats daily at {date}"
msgstr ""
-#: src/strings.ts:2350
+#: src/strings.ts:2354
msgid "Replace"
msgstr ""
-#: src/strings.ts:2351
+#: src/strings.ts:2355
msgid "Replace all"
msgstr ""
-#: src/strings.ts:2139
+#: src/strings.ts:2143
msgid "Report"
msgstr ""
-#: src/strings.ts:1237
+#: src/strings.ts:1241
msgid "Report an issue"
msgstr ""
@@ -4764,55 +4780,55 @@ msgstr ""
msgid "Resend code{0}"
msgstr ""
-#: src/strings.ts:1379
+#: src/strings.ts:1383
msgid "Resend email"
msgstr ""
-#: src/strings.ts:1795
+#: src/strings.ts:1799
msgid "Reset"
msgstr ""
-#: src/strings.ts:1887
+#: src/strings.ts:1891
msgid "Reset account password"
msgstr ""
-#: src/strings.ts:1796
+#: src/strings.ts:1800
msgid "Reset selection"
msgstr ""
-#: src/strings.ts:1623
+#: src/strings.ts:1627
msgid "Reset server urls"
msgstr ""
-#: src/strings.ts:2005
+#: src/strings.ts:2009
msgid "Reset sidebar"
msgstr ""
-#: src/strings.ts:1128
+#: src/strings.ts:1132
msgid "Reset the toolbar to default settings"
msgstr ""
-#: src/strings.ts:1127
+#: src/strings.ts:1131
msgid "Reset toolbar"
msgstr ""
-#: src/strings.ts:1889
+#: src/strings.ts:1893
msgid "Resetting account password ({progress})"
msgstr ""
-#: src/strings.ts:1964
+#: src/strings.ts:1968
msgid "Restart now"
msgstr ""
-#: src/strings.ts:1622
+#: src/strings.ts:1626
msgid "Restart the app for changes to take effect."
msgstr ""
-#: src/strings.ts:1295
+#: src/strings.ts:1299
msgid "Restart the app to apply the changes"
msgstr ""
-#: src/strings.ts:1568
+#: src/strings.ts:1572
msgid "Restart the app."
msgstr ""
@@ -4820,11 +4836,11 @@ msgstr ""
msgid "Restore"
msgstr ""
-#: src/strings.ts:1215
+#: src/strings.ts:1219
msgid "Restore backup"
msgstr ""
-#: src/strings.ts:2378
+#: src/strings.ts:2382
msgid "Restore backup?"
msgstr ""
@@ -4832,15 +4848,15 @@ msgstr ""
msgid "Restore failed"
msgstr ""
-#: src/strings.ts:1585
+#: src/strings.ts:1589
msgid "Restore from files"
msgstr ""
-#: src/strings.ts:1635
+#: src/strings.ts:1639
msgid "Restore this version"
msgstr ""
-#: src/strings.ts:1216
+#: src/strings.ts:1220
msgid "Restore your data from a backup"
msgstr ""
@@ -4856,7 +4872,7 @@ msgstr ""
msgid "Restoring {collection}..."
msgstr ""
-#: src/strings.ts:1587
+#: src/strings.ts:1591
msgid "Restoring backup..."
msgstr ""
@@ -4872,7 +4888,7 @@ msgstr ""
msgid "Reupload"
msgstr ""
-#: src/strings.ts:1995
+#: src/strings.ts:1999
msgid "Reveal in list"
msgstr ""
@@ -4880,7 +4896,7 @@ msgstr ""
msgid "Revoke"
msgstr ""
-#: src/strings.ts:1159
+#: src/strings.ts:1163
msgid "Revoke biometric unlocking"
msgstr ""
@@ -4888,23 +4904,23 @@ msgstr ""
msgid "Revoke vault fingerprint unlock"
msgstr ""
-#: src/strings.ts:1273
+#: src/strings.ts:1277
msgid "Roadmap"
msgstr ""
-#: src/strings.ts:2023
+#: src/strings.ts:2027
msgid "Root"
msgstr ""
-#: src/strings.ts:2002
+#: src/strings.ts:2006
msgid "Rotate left"
msgstr ""
-#: src/strings.ts:2003
+#: src/strings.ts:2007
msgid "Rotate right"
msgstr ""
-#: src/strings.ts:2259
+#: src/strings.ts:2263
msgid "Row properties"
msgstr ""
@@ -4912,7 +4928,7 @@ msgstr ""
msgid "Run file check"
msgstr ""
-#: src/strings.ts:2034
+#: src/strings.ts:2038
msgid "Safe & encrypted notes"
msgstr ""
@@ -4968,7 +4984,7 @@ msgstr ""
msgid "Save to text file"
msgstr ""
-#: src/strings.ts:1337
+#: src/strings.ts:1341
msgid "Save your account recovery key"
msgstr ""
@@ -4984,15 +5000,15 @@ msgstr ""
msgid "Save your recovery codes in a safe place. You will need them to recover your account in case you lose access to your two-factor authentication methods."
msgstr ""
-#: src/strings.ts:2368
+#: src/strings.ts:2372
msgid "Saved"
msgstr ""
-#: src/strings.ts:2369
+#: src/strings.ts:2373
msgid "Saving"
msgstr ""
-#: src/strings.ts:1563
+#: src/strings.ts:1567
msgid "Saving this note is taking too long. Copy your changes and restart the app to prevent data loss. If the problem persists, please report it to us at support@streetwriters.co."
msgstr ""
@@ -5004,28 +5020,28 @@ msgstr ""
msgid "Saving zip file. Please wait..."
msgstr ""
-#: src/strings.ts:1697
+#: src/strings.ts:1701
msgid "Scan the QR code with your authenticator app"
msgstr ""
-#: src/strings.ts:2394
+#: src/strings.ts:2398
msgid "School work"
msgstr ""
-#: src/strings.ts:1487
-#: src/strings.ts:1504
+#: src/strings.ts:1491
+#: src/strings.ts:1508
msgid "Search"
msgstr ""
-#: src/strings.ts:1482
+#: src/strings.ts:1486
msgid "Search a note"
msgstr ""
-#: src/strings.ts:1480
+#: src/strings.ts:1484
msgid "Search a note to link to"
msgstr ""
-#: src/strings.ts:1513
+#: src/strings.ts:1517
msgid "Search in {routeName}"
msgstr ""
@@ -5077,23 +5093,23 @@ msgstr ""
msgid "Search in in Trash"
msgstr ""
-#: src/strings.ts:2332
+#: src/strings.ts:2336
msgid "Search languages"
msgstr ""
-#: src/strings.ts:1468
+#: src/strings.ts:1472
msgid "Search notebooks"
msgstr ""
-#: src/strings.ts:1481
+#: src/strings.ts:1485
msgid "Search or add a tag"
msgstr ""
-#: src/strings.ts:1809
+#: src/strings.ts:1813
msgid "Search themes"
msgstr ""
-#: src/strings.ts:1485
+#: src/strings.ts:1489
msgid "Searching for {query}..."
msgstr ""
@@ -5101,39 +5117,39 @@ msgstr ""
msgid "sec"
msgstr ""
-#: src/strings.ts:2118
+#: src/strings.ts:2122
msgid "Security & privacy"
msgstr ""
-#: src/strings.ts:2058
+#: src/strings.ts:2062
msgid "Security key"
msgstr ""
-#: src/strings.ts:1963
+#: src/strings.ts:1967
msgid "Security key successfully registered."
msgstr ""
-#: src/strings.ts:1274
+#: src/strings.ts:1278
msgid "See what the future of Notesnook is going to be like."
msgstr ""
-#: src/strings.ts:1311
+#: src/strings.ts:1315
msgid "Select"
msgstr ""
-#: src/strings.ts:1584
+#: src/strings.ts:1588
msgid "Select a backup file from your device to restore backup"
msgstr ""
-#: src/strings.ts:2073
+#: src/strings.ts:2077
msgid "Select a theme"
msgstr ""
-#: src/strings.ts:1206
+#: src/strings.ts:1210
msgid "Select backup directory"
msgstr ""
-#: src/strings.ts:1830
+#: src/strings.ts:1834
msgid "Select backup file"
msgstr ""
@@ -5149,15 +5165,15 @@ msgstr ""
msgid "Select day of the week to repeat the reminder."
msgstr ""
-#: src/strings.ts:1738
+#: src/strings.ts:1742
msgid "Select files to import"
msgstr ""
-#: src/strings.ts:1581
+#: src/strings.ts:1585
msgid "Select folder where Notesnook backup files are stored to view and restore them from the app"
msgstr ""
-#: src/strings.ts:1582
+#: src/strings.ts:1586
msgid "Select folder with backup files"
msgstr ""
@@ -5165,7 +5181,7 @@ msgstr ""
msgid "Select how you would like to recieve the code"
msgstr ""
-#: src/strings.ts:2327
+#: src/strings.ts:2331
msgid "Select language"
msgstr ""
@@ -5185,7 +5201,7 @@ msgstr ""
msgid "Select nth day of the month to repeat the reminder."
msgstr ""
-#: src/strings.ts:1792
+#: src/strings.ts:1796
msgid "Select profile picture"
msgstr ""
@@ -5193,7 +5209,7 @@ msgstr ""
msgid "Select the folder that includes your backup files to list them here."
msgstr ""
-#: src/strings.ts:2105
+#: src/strings.ts:2109
msgid "Select the languages the spell checker should check in."
msgstr ""
@@ -5205,7 +5221,7 @@ msgstr ""
msgid "Self destruct"
msgstr ""
-#: src/strings.ts:2140
+#: src/strings.ts:2144
msgid "Send"
msgstr ""
@@ -5221,47 +5237,47 @@ msgstr ""
msgid "Send code via SMS"
msgstr ""
-#: src/strings.ts:1834
+#: src/strings.ts:1838
msgid "Send recovery email"
msgstr ""
-#: src/strings.ts:1870
+#: src/strings.ts:1874
msgid "Sending recovery email"
msgstr ""
-#: src/strings.ts:1621
+#: src/strings.ts:1625
msgid "Server url changed"
msgstr ""
-#: src/strings.ts:1624
+#: src/strings.ts:1628
msgid "Server urls reset"
msgstr ""
-#: src/strings.ts:1602
+#: src/strings.ts:1606
msgid "Server used for login/sign up and authentication."
msgstr ""
-#: src/strings.ts:1607
+#: src/strings.ts:1611
msgid "Server used to host your published notes."
msgstr ""
-#: src/strings.ts:1605
+#: src/strings.ts:1609
msgid "Server used to receive important notifications & events."
msgstr ""
-#: src/strings.ts:1600
+#: src/strings.ts:1604
msgid "Server used to sync your notes & other data between devices."
msgstr ""
-#: src/strings.ts:1613
+#: src/strings.ts:1617
msgid "Server with host {host} not found."
msgstr ""
-#: src/strings.ts:2113
+#: src/strings.ts:2117
msgid "Servers"
msgstr ""
-#: src/strings.ts:2114
+#: src/strings.ts:2118
msgid "Servers configuration"
msgstr ""
@@ -5269,7 +5285,7 @@ msgstr ""
msgid "Session expired"
msgstr ""
-#: src/strings.ts:2166
+#: src/strings.ts:2170
msgid "Sessions"
msgstr ""
@@ -5289,27 +5305,27 @@ msgstr ""
msgid "Set as light theme"
msgstr ""
-#: src/strings.ts:1310
+#: src/strings.ts:1314
msgid "Set automatic trash cleanup interval from Settings > Behaviour > Clean trash interval."
msgstr ""
-#: src/strings.ts:1287
+#: src/strings.ts:1291
msgid "Set full name"
msgstr ""
-#: src/strings.ts:1232
+#: src/strings.ts:1236
msgid "Set snooze time in minutes"
msgstr ""
-#: src/strings.ts:1231
+#: src/strings.ts:1235
msgid "Set the default time to snooze a reminder to when you press the snooze button on a notification."
msgstr ""
-#: src/strings.ts:1203
+#: src/strings.ts:1207
msgid "Set the interval to create a backup (with attachments) automatically."
msgstr ""
-#: src/strings.ts:1200
+#: src/strings.ts:1204
msgid "Set the interval to create a partial backup (without attachments) automatically."
msgstr ""
@@ -5318,24 +5334,24 @@ msgid "Set your name"
msgstr ""
#: src/strings.ts:388
-#: src/strings.ts:1500
+#: src/strings.ts:1504
msgid "Settings"
msgstr ""
-#: src/strings.ts:1179
-#: src/strings.ts:1180
+#: src/strings.ts:1183
+#: src/strings.ts:1184
msgid "Setup a new password for app lock"
msgstr ""
-#: src/strings.ts:1176
+#: src/strings.ts:1180
msgid "Setup a password to lock the app"
msgstr ""
-#: src/strings.ts:1174
+#: src/strings.ts:1178
msgid "Setup a pin to lock the app"
msgstr ""
-#: src/strings.ts:2158
+#: src/strings.ts:2162
msgid ""
"Setup an HTTP/HTTPS/SOCKS proxy.\n"
"For example:\n"
@@ -5345,11 +5361,11 @@ msgid ""
"To remove the proxy, simply erase everything in the input."
msgstr ""
-#: src/strings.ts:1175
+#: src/strings.ts:1179
msgid "Setup app lock password"
msgstr ""
-#: src/strings.ts:1173
+#: src/strings.ts:1177
msgid "Setup app lock pin"
msgstr ""
@@ -5373,11 +5389,11 @@ msgstr ""
msgid "Share"
msgstr ""
-#: src/strings.ts:1666
+#: src/strings.ts:1670
msgid "Share & append to notes from anywhere"
msgstr ""
-#: src/strings.ts:1318
+#: src/strings.ts:1322
msgid "Share backup"
msgstr ""
@@ -5385,7 +5401,7 @@ msgstr ""
msgid "Share note"
msgstr ""
-#: src/strings.ts:1762
+#: src/strings.ts:1766
msgid "Share Notesnook with friends!"
msgstr ""
@@ -5401,7 +5417,7 @@ msgstr ""
msgid "Shortcut"
msgstr ""
-#: src/strings.ts:1975
+#: src/strings.ts:1979
msgid "Shortcut removed"
msgstr ""
@@ -5429,11 +5445,11 @@ msgstr ""
msgid "Silent"
msgstr ""
-#: src/strings.ts:2301
+#: src/strings.ts:2305
msgid "Sink list item"
msgstr ""
-#: src/strings.ts:2016
+#: src/strings.ts:2020
msgid "Size"
msgstr ""
@@ -5441,7 +5457,7 @@ msgstr ""
msgid "Skip"
msgstr ""
-#: src/strings.ts:1804
+#: src/strings.ts:1808
msgid "Skip & go directly to the app"
msgstr ""
@@ -5449,19 +5465,19 @@ msgstr ""
msgid "Skip introduction"
msgstr ""
-#: src/strings.ts:1579
+#: src/strings.ts:1583
msgid "Some exported notes are locked, Unlock to export them"
msgstr ""
-#: src/strings.ts:1453
+#: src/strings.ts:1457
msgid "Some notes are published"
msgstr ""
-#: src/strings.ts:1641
+#: src/strings.ts:1645
msgid "Something went wrong"
msgstr ""
-#: src/strings.ts:2000
+#: src/strings.ts:2004
msgid "Sort"
msgstr ""
@@ -5469,19 +5485,19 @@ msgstr ""
msgid "Sort by"
msgstr ""
-#: src/strings.ts:2124
+#: src/strings.ts:2128
msgid "Source code"
msgstr ""
-#: src/strings.ts:2328
+#: src/strings.ts:2332
msgid "Spaces"
msgstr ""
-#: src/strings.ts:2101
+#: src/strings.ts:2105
msgid "Spell check"
msgstr ""
-#: src/strings.ts:2266
+#: src/strings.ts:2270
msgid "Split cells"
msgstr ""
@@ -5489,23 +5505,23 @@ msgstr ""
msgid "Start"
msgstr ""
-#: src/strings.ts:1805
+#: src/strings.ts:1809
msgid "Start account recovery"
msgstr ""
-#: src/strings.ts:1800
+#: src/strings.ts:1804
msgid "Start import"
msgstr ""
-#: src/strings.ts:1797
+#: src/strings.ts:1801
msgid "Start importing now"
msgstr ""
-#: src/strings.ts:2089
+#: src/strings.ts:2093
msgid "Start minimized"
msgstr ""
-#: src/strings.ts:1732
+#: src/strings.ts:1736
msgid "Start over"
msgstr ""
@@ -5517,27 +5533,27 @@ msgstr ""
msgid "Start writing to save your note."
msgstr ""
-#: src/strings.ts:1576
+#: src/strings.ts:1580
msgid "Start writing your note..."
msgstr ""
-#: src/strings.ts:2197
+#: src/strings.ts:2201
msgid "Status"
msgstr ""
-#: src/strings.ts:1523
+#: src/strings.ts:1527
msgid "Streaming not supported"
msgstr ""
-#: src/strings.ts:2232
+#: src/strings.ts:2236
msgid "Strikethrough"
msgstr ""
-#: src/strings.ts:2199
+#: src/strings.ts:2203
msgid "Subgroup 1"
msgstr ""
-#: src/strings.ts:1969
+#: src/strings.ts:1973
msgid "Subgroup added"
msgstr ""
@@ -5557,7 +5573,7 @@ msgstr ""
msgid "Subscribed on iOS"
msgstr ""
-#: src/strings.ts:1282
+#: src/strings.ts:1286
msgid "Subscribed on web"
msgstr ""
@@ -5569,7 +5585,7 @@ msgstr ""
msgid "Subscribed using gift card"
msgstr ""
-#: src/strings.ts:2243
+#: src/strings.ts:2247
msgid "Subscript"
msgstr ""
@@ -5593,15 +5609,15 @@ msgstr ""
msgid "Sunday"
msgstr ""
-#: src/strings.ts:2244
+#: src/strings.ts:2248
msgid "Superscript"
msgstr ""
-#: src/strings.ts:1446
+#: src/strings.ts:1450
msgid "Switch to search/replace mode"
msgstr ""
-#: src/strings.ts:2110
+#: src/strings.ts:2114
msgid "Sync"
msgstr ""
@@ -5609,7 +5625,7 @@ msgstr ""
msgid "Sync failed"
msgstr ""
-#: src/strings.ts:1340
+#: src/strings.ts:1344
msgid "Sync is disabled"
msgstr ""
@@ -5617,7 +5633,7 @@ msgstr ""
msgid "Sync off"
msgstr ""
-#: src/strings.ts:1598
+#: src/strings.ts:1602
msgid "Sync server"
msgstr ""
@@ -5641,11 +5657,11 @@ msgstr ""
msgid "Syncing your data"
msgstr ""
-#: src/strings.ts:1677
+#: src/strings.ts:1681
msgid "Syncing your notes"
msgstr ""
-#: src/strings.ts:2313
+#: src/strings.ts:2317
msgid "Table"
msgstr ""
@@ -5653,7 +5669,7 @@ msgstr ""
msgid "Table of contents"
msgstr ""
-#: src/strings.ts:2257
+#: src/strings.ts:2261
msgid "Table settings"
msgstr ""
@@ -5674,31 +5690,31 @@ msgid "tags"
msgstr ""
#: src/strings.ts:317
-#: src/strings.ts:1501
+#: src/strings.ts:1505
msgid "Tags"
msgstr ""
-#: src/strings.ts:1518
+#: src/strings.ts:1522
msgid "Take a backup before logging out"
msgstr ""
-#: src/strings.ts:1195
+#: src/strings.ts:1199
msgid "Take a full backup of your data with all attachments"
msgstr ""
-#: src/strings.ts:1197
+#: src/strings.ts:1201
msgid "Take a partial backup of your data that does not include attachments"
msgstr ""
-#: src/strings.ts:2312
+#: src/strings.ts:2316
msgid "Take a photo using camera"
msgstr ""
-#: src/strings.ts:1350
+#: src/strings.ts:1354
msgid "Take note"
msgstr ""
-#: src/strings.ts:1631
+#: src/strings.ts:1635
msgid "Take notes privately."
msgstr ""
@@ -5710,23 +5726,23 @@ msgstr ""
msgid "Tap and hold to enable multi-select."
msgstr ""
-#: src/strings.ts:1434
+#: src/strings.ts:1438
msgid "Tap here to change sorting"
msgstr ""
-#: src/strings.ts:1438
+#: src/strings.ts:1442
msgid "Tap here to jump to a section"
msgstr ""
-#: src/strings.ts:1346
+#: src/strings.ts:1350
msgid "Tap here to update to the latest version"
msgstr ""
-#: src/strings.ts:1567
+#: src/strings.ts:1571
msgid "Tap on \"Dismiss\" and copy the contents of your note so they are not lost."
msgstr ""
-#: src/strings.ts:1349
+#: src/strings.ts:1353
msgid "Tap on \"Take note\" to add a note."
msgstr ""
@@ -5746,7 +5762,7 @@ msgstr ""
msgid "Tap to stop reordering"
msgstr ""
-#: src/strings.ts:1330
+#: src/strings.ts:1334
msgid "Tap to try again"
msgstr ""
@@ -5754,19 +5770,19 @@ msgstr ""
msgid "Tap twice to confirm you have saved the recovery key."
msgstr ""
-#: src/strings.ts:2318
+#: src/strings.ts:2322
msgid "Task list"
msgstr ""
-#: src/strings.ts:2387
+#: src/strings.ts:2391
msgid "Tasks"
msgstr ""
-#: src/strings.ts:1142
+#: src/strings.ts:1146
msgid "Telemetry"
msgstr ""
-#: src/strings.ts:1472
+#: src/strings.ts:1476
msgid ""
"Tell us more about the issue you are facing. \n"
"For example:\n"
@@ -5776,11 +5792,11 @@ msgid ""
"- Things you have tried etc."
msgstr ""
-#: src/strings.ts:1471
+#: src/strings.ts:1475
msgid "Tell us what happened"
msgstr ""
-#: src/strings.ts:1263
+#: src/strings.ts:1267
msgid "Terms of service"
msgstr ""
@@ -5788,27 +5804,27 @@ msgstr ""
msgid "Terms of Service"
msgstr ""
-#: src/strings.ts:1597
+#: src/strings.ts:1601
msgid "Test connection"
msgstr ""
-#: src/strings.ts:1620
+#: src/strings.ts:1624
msgid "Test connection before changing server urls"
msgstr ""
-#: src/strings.ts:2255
+#: src/strings.ts:2259
msgid "Text color"
msgstr ""
-#: src/strings.ts:2253
+#: src/strings.ts:2257
msgid "Text direction"
msgstr ""
-#: src/strings.ts:1761
+#: src/strings.ts:1765
msgid "Thank you for choosing end-to-end encrypted note taking. Now you can sync your notes to unlimited devices."
msgstr ""
-#: src/strings.ts:2025
+#: src/strings.ts:2029
msgid "Thank you for reporting!"
msgstr ""
@@ -5816,11 +5832,11 @@ msgstr ""
msgid "Thank you for updating Notesnook! We will be applying some minor changes for a better note taking experience."
msgstr ""
-#: src/strings.ts:2050
+#: src/strings.ts:2054
msgid "Thank you. You are the proof that privacy always comes first."
msgstr ""
-#: src/strings.ts:1618
+#: src/strings.ts:1622
msgid "The {title} at {url} is not compatible with this client."
msgstr ""
@@ -5828,7 +5844,7 @@ msgstr ""
msgid "The information above will be publically available at"
msgstr ""
-#: src/strings.ts:2057
+#: src/strings.ts:2061
msgid "The password/pin for unlocking the app."
msgstr ""
@@ -5840,15 +5856,15 @@ msgstr ""
msgid "The reminder will repeat every year on {date}."
msgstr ""
-#: src/strings.ts:1687
+#: src/strings.ts:1691
msgid "The reminder will start on {date} at {time}."
msgstr ""
-#: src/strings.ts:2060
+#: src/strings.ts:2064
msgid "The security key for unlocking the app. This is the most secure method."
msgstr ""
-#: src/strings.ts:1616
+#: src/strings.ts:1620
msgid "The URL you have given ({url}) does not point to the {server}."
msgstr ""
@@ -5860,11 +5876,11 @@ msgstr ""
msgid "There are no blocks in this note."
msgstr ""
-#: src/strings.ts:2212
+#: src/strings.ts:2216
msgid "These items will be **kept in your Trash for {interval} days** after which they will be permanently deleted."
msgstr ""
-#: src/strings.ts:1895
+#: src/strings.ts:1899
msgid "This action is IRREVERSIBLE."
msgstr ""
@@ -5872,35 +5888,35 @@ msgstr ""
msgid "This device"
msgstr ""
-#: src/strings.ts:1658
+#: src/strings.ts:1662
msgid "This error can be fixed by rebuilding the search index. This action won't result in any kind of data loss."
msgstr ""
-#: src/strings.ts:1650
+#: src/strings.ts:1654
msgid "This error can only be fixed by wiping & reseting the database. Beware that this will wipe all your data inside the database with no way to recover it later on. This WILL NOT change/affect/delete/wipe your data on the server but ONLY on this device."
msgstr ""
-#: src/strings.ts:1654
+#: src/strings.ts:1658
msgid "This error can only be fixed by wiping & reseting the Key Store and the database. This WILL NOT change/affect/delete/wipe your data on the server but ONLY on this device."
msgstr ""
-#: src/strings.ts:1652
+#: src/strings.ts:1656
msgid "This error means the at rest encryption key could not be decrypted. This can be due to data corruption or implementation change."
msgstr ""
-#: src/strings.ts:1648
+#: src/strings.ts:1652
msgid "This error usually means the database file is either corrupt or it could not be decrypted."
msgstr ""
-#: src/strings.ts:1656
+#: src/strings.ts:1660
msgid "This error usually means the search index is corrupted."
msgstr ""
-#: src/strings.ts:1909
+#: src/strings.ts:1913
msgid "This image cannot be previewed"
msgstr ""
-#: src/strings.ts:2020
+#: src/strings.ts:2024
msgid "This may take a while"
msgstr ""
@@ -5909,7 +5925,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:1569
+#: src/strings.ts:1573
msgid "This note is locked"
msgstr ""
@@ -5929,11 +5945,11 @@ msgstr ""
msgid "This note will be published to a public URL."
msgstr ""
-#: src/strings.ts:2066
+#: src/strings.ts:2070
msgid "This username will be used to distinguish between different credentials in your security key. Make sure it is unique."
msgstr ""
-#: src/strings.ts:1280
+#: src/strings.ts:1284
msgid "This version of Notesnook app does not support in-app purchases. Kindly login on the Notesnook web app to make the purchase."
msgstr ""
@@ -5945,11 +5961,11 @@ msgstr ""
msgid "Thursday"
msgstr ""
-#: src/strings.ts:1817
+#: src/strings.ts:1821
msgid "Time"
msgstr ""
-#: src/strings.ts:1116
+#: src/strings.ts:1120
msgid "Time format"
msgstr ""
@@ -5962,52 +5978,52 @@ msgstr ""
msgid "Title"
msgstr ""
-#: src/strings.ts:1137
+#: src/strings.ts:1141
msgid "Title format"
msgstr ""
-#: src/strings.ts:1168
+#: src/strings.ts:1172
msgid "To use app lock, you must enable biometrics such as Fingerprint lock or Face ID on your phone."
msgstr ""
-#: src/strings.ts:1787
+#: src/strings.ts:1791
msgid "Toggle dark/light mode"
msgstr ""
-#: src/strings.ts:2325
+#: src/strings.ts:2329
msgid "Toggle indentation mode"
msgstr ""
-#: src/strings.ts:2354
+#: src/strings.ts:2358
msgid "Toggle replace"
msgstr ""
-#: src/strings.ts:2107
+#: src/strings.ts:2111
msgid "Toolbar"
msgstr ""
-#: src/strings.ts:1303
-#: src/strings.ts:1499
+#: src/strings.ts:1307
+#: src/strings.ts:1503
msgid "Trash"
msgstr ""
-#: src/strings.ts:1302
+#: src/strings.ts:1306
msgid "Trash cleared successfully!"
msgstr ""
-#: src/strings.ts:1308
+#: src/strings.ts:1312
msgid "Trash gets automatically cleaned up after {days} days"
msgstr ""
-#: src/strings.ts:1306
+#: src/strings.ts:1310
msgid "Trash gets automatically cleaned up daily"
msgstr ""
-#: src/strings.ts:1442
+#: src/strings.ts:1446
msgid "Try compact mode to fit more items on screen"
msgstr ""
-#: src/strings.ts:1799
+#: src/strings.ts:1803
msgid "Try free for 14 days"
msgstr ""
@@ -6047,23 +6063,23 @@ msgstr ""
msgid "Two-factor authentication enabled"
msgstr ""
-#: src/strings.ts:1479
+#: src/strings.ts:1483
msgid "Type # to search for headings"
msgstr ""
-#: src/strings.ts:1486
+#: src/strings.ts:1490
msgid "Type a keyword"
msgstr ""
-#: src/strings.ts:1524
+#: src/strings.ts:1528
msgid "Unable to resolve download url"
msgstr ""
-#: src/strings.ts:1527
+#: src/strings.ts:1531
msgid "Unable to send 2FA code"
msgstr ""
-#: src/strings.ts:2231
+#: src/strings.ts:2235
msgid "Underline"
msgstr ""
@@ -6087,7 +6103,7 @@ msgstr ""
msgid "Unlock"
msgstr ""
-#: src/strings.ts:1360
+#: src/strings.ts:1364
msgid "Unlock more colors with Notesnook Pro"
msgstr ""
@@ -6100,11 +6116,11 @@ msgstr ""
msgid "Unlock note to delete it"
msgstr ""
-#: src/strings.ts:1188
+#: src/strings.ts:1192
msgid "Unlock the app with biometric authentication. This requires biometrics to be enabled on your device."
msgstr ""
-#: src/strings.ts:1907
+#: src/strings.ts:1911
msgid "Unlock vault"
msgstr ""
@@ -6116,7 +6132,7 @@ msgstr ""
msgid "Unlock with password once to enable biometric access."
msgstr ""
-#: src/strings.ts:1802
+#: src/strings.ts:1806
msgid "Unlock with security key"
msgstr ""
@@ -6124,11 +6140,11 @@ msgstr ""
msgid "Unlock your notes"
msgstr ""
-#: src/strings.ts:1158
+#: src/strings.ts:1162
msgid "Unlock your vault with biometric authentication"
msgstr ""
-#: src/strings.ts:1685
+#: src/strings.ts:1689
msgid "Unlocking"
msgstr ""
@@ -6144,16 +6160,16 @@ msgstr ""
msgid "Unpublish"
msgstr ""
-#: src/strings.ts:1454
+#: src/strings.ts:1458
msgid "Unpublish notes to delete them"
msgstr ""
-#: src/strings.ts:2061
+#: src/strings.ts:2065
msgid "Unregister"
msgstr ""
#: src/strings.ts:210
-#: src/strings.ts:2334
+#: src/strings.ts:2338
msgid "Untitled"
msgstr ""
@@ -6165,39 +6181,39 @@ msgstr ""
msgid "Update available"
msgstr ""
-#: src/strings.ts:1347
+#: src/strings.ts:1351
msgid "Update now"
msgstr ""
-#: src/strings.ts:1893
+#: src/strings.ts:1897
msgid "Upgrade now"
msgstr ""
-#: src/strings.ts:1914
+#: src/strings.ts:1918
msgid "Upgrade to Notesnook Pro to add colors."
msgstr ""
-#: src/strings.ts:1916
+#: src/strings.ts:1920
msgid "Upgrade to Notesnook Pro to add more notebooks."
msgstr ""
-#: src/strings.ts:1915
+#: src/strings.ts:1919
msgid "Upgrade to Notesnook Pro to create more tags."
msgstr ""
-#: src/strings.ts:1919
+#: src/strings.ts:1923
msgid "Upgrade to Notesnook Pro to customize the toolbar."
msgstr ""
-#: src/strings.ts:1918
+#: src/strings.ts:1922
msgid "Upgrade to Notesnook Pro to use custom toolbar presets."
msgstr ""
-#: src/strings.ts:1917
+#: src/strings.ts:1921
msgid "Upgrade to Notesnook Pro to use the notes vault."
msgstr ""
-#: src/strings.ts:1920
+#: src/strings.ts:1924
msgid "Upgrade to Notesnook Pro to use this feature."
msgstr ""
@@ -6209,12 +6225,12 @@ msgstr ""
msgid "Upload"
msgstr ""
-#: src/strings.ts:2311
+#: src/strings.ts:2315
msgid "Upload from disk"
msgstr ""
#: src/strings.ts:503
-#: src/strings.ts:1626
+#: src/strings.ts:1630
msgid "Uploaded"
msgstr ""
@@ -6235,7 +6251,7 @@ msgstr ""
msgid "Urgent"
msgstr ""
-#: src/strings.ts:1764
+#: src/strings.ts:1768
msgid "Use"
msgstr ""
@@ -6243,11 +6259,11 @@ msgstr ""
msgid "Use {keyboardShortcut}+click to select multiple notebooks"
msgstr ""
-#: src/strings.ts:1777
+#: src/strings.ts:1781
msgid "Use a backup file"
msgstr ""
-#: src/strings.ts:1875
+#: src/strings.ts:1879
msgid "Use a data recovery key to reset your account password."
msgstr ""
@@ -6259,7 +6275,7 @@ msgstr ""
msgid "Use an authenticator app to generate 2FA codes."
msgstr ""
-#: src/strings.ts:2147
+#: src/strings.ts:2151
msgid "Use custom DNS"
msgstr ""
@@ -6267,23 +6283,23 @@ msgstr ""
msgid "Use dark mode for the app"
msgstr ""
-#: src/strings.ts:1596
+#: src/strings.ts:1600
msgid "Use encryption key"
msgstr ""
-#: src/strings.ts:1140
+#: src/strings.ts:1144
msgid "Use markdown shortcuts in the editor"
msgstr ""
-#: src/strings.ts:2100
+#: src/strings.ts:2104
msgid "Use native OS titlebar instead of replacing it with a custom one. Requires app restart for changes to take effect."
msgstr ""
-#: src/strings.ts:2098
+#: src/strings.ts:2102
msgid "Use native titlebar"
msgstr ""
-#: src/strings.ts:1774
+#: src/strings.ts:1778
msgid "Use recovery key"
msgstr ""
@@ -6314,23 +6330,23 @@ msgstr ""
msgid "User verification failed"
msgstr ""
-#: src/strings.ts:2227
+#: src/strings.ts:2231
msgid "Using {instance} (v{version})"
msgstr ""
-#: src/strings.ts:2225
+#: src/strings.ts:2229
msgid "Using official Notesnook instance"
msgstr ""
-#: src/strings.ts:1684
+#: src/strings.ts:1688
msgid "v{version} available"
msgstr ""
-#: src/strings.ts:1151
+#: src/strings.ts:1155
msgid "Vault"
msgstr ""
-#: src/strings.ts:1967
+#: src/strings.ts:1971
msgid "Vault cleared"
msgstr ""
@@ -6338,7 +6354,7 @@ msgstr ""
msgid "Vault created"
msgstr ""
-#: src/strings.ts:1968
+#: src/strings.ts:1972
msgid "Vault deleted"
msgstr ""
@@ -6346,15 +6362,15 @@ msgstr ""
msgid "Vault fingerprint unlock"
msgstr ""
-#: src/strings.ts:1906
+#: src/strings.ts:1910
msgid "Vault locked"
msgstr ""
-#: src/strings.ts:1905
+#: src/strings.ts:1909
msgid "Vault unlocked"
msgstr ""
-#: src/strings.ts:1377
+#: src/strings.ts:1381
msgid "Verification email sent"
msgstr ""
@@ -6370,11 +6386,11 @@ msgstr ""
msgid "Verify your subscription to Notesnook Pro"
msgstr ""
-#: src/strings.ts:1878
+#: src/strings.ts:1882
msgid "Verifying 2FA code"
msgstr ""
-#: src/strings.ts:1864
+#: src/strings.ts:1868
msgid "Verifying your email"
msgstr ""
@@ -6394,11 +6410,11 @@ msgstr ""
msgid "View all linked notebooks"
msgstr ""
-#: src/strings.ts:1250
+#: src/strings.ts:1254
msgid "View and share debug logs"
msgstr ""
-#: src/strings.ts:1722
+#: src/strings.ts:1726
msgid "View receipt"
msgstr ""
@@ -6406,7 +6422,7 @@ msgstr ""
msgid "View recovery codes"
msgstr ""
-#: src/strings.ts:2127
+#: src/strings.ts:2131
msgid "View source code"
msgstr ""
@@ -6418,15 +6434,15 @@ msgstr ""
msgid "Visit homepage"
msgstr ""
-#: src/strings.ts:1327
+#: src/strings.ts:1331
msgid "Wait 30 seconds to try again"
msgstr ""
-#: src/strings.ts:1627
+#: src/strings.ts:1631
msgid "Waiting for upload"
msgstr ""
-#: src/strings.ts:1886
+#: src/strings.ts:1890
msgid "We are creating a backup of your data. Please wait..."
msgstr ""
@@ -6434,27 +6450,27 @@ 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:1367
+#: src/strings.ts:1371
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:2142
+#: src/strings.ts:2146
msgid "We send you occasional promotional offers & product updates on your email (once every month)."
msgstr ""
-#: src/strings.ts:1147
+#: src/strings.ts:1151
msgid "We will send you occasional promotional offers & product updates on your email (sent once every month)."
msgstr ""
-#: src/strings.ts:1331
+#: src/strings.ts:1335
msgid "We would love to know what you think!"
msgstr ""
-#: src/strings.ts:2296
+#: src/strings.ts:2300
msgid "Web clip settings"
msgstr ""
-#: src/strings.ts:2004
+#: src/strings.ts:2008
msgid "Website"
msgstr ""
@@ -6471,7 +6487,7 @@ msgid "Week"
msgstr ""
#: src/strings.ts:168
-#: src/strings.ts:1544
+#: src/strings.ts:1548
msgid "Weekly"
msgstr ""
@@ -6479,27 +6495,27 @@ msgstr ""
msgid "Welcome back, {email}"
msgstr ""
-#: src/strings.ts:1863
+#: src/strings.ts:1867
msgid "Welcome back!"
msgstr ""
-#: src/strings.ts:2048
+#: src/strings.ts:2052
msgid "Welcome to Notesnook Pro"
msgstr ""
-#: src/strings.ts:1369
+#: src/strings.ts:1373
msgid "What do I do if I am not getting the email?"
msgstr ""
-#: src/strings.ts:1642
+#: src/strings.ts:1646
msgid "What went wrong?"
msgstr ""
-#: src/strings.ts:2357
+#: src/strings.ts:2361
msgid "Width"
msgstr ""
-#: src/strings.ts:2385
+#: src/strings.ts:2389
msgid "Work & Office"
msgstr ""
@@ -6507,15 +6523,15 @@ msgstr ""
msgid "Write notes with freedom, no spying, no tracking."
msgstr ""
-#: src/strings.ts:1351
+#: src/strings.ts:1355
msgid "Write something..."
msgstr ""
-#: src/strings.ts:1629
+#: src/strings.ts:1633
msgid "Write with freedom."
msgstr ""
-#: src/strings.ts:2036
+#: src/strings.ts:2040
msgid "Write with freedom. Never compromise on privacy again."
msgstr ""
@@ -6524,7 +6540,7 @@ msgid "Year"
msgstr ""
#: src/strings.ts:170
-#: src/strings.ts:1546
+#: src/strings.ts:1550
msgid "Yearly"
msgstr ""
@@ -6536,19 +6552,19 @@ msgstr ""
msgid "You also agree to recieve marketing emails from us which you can opt-out of from app settings."
msgstr ""
-#: src/strings.ts:2214
+#: src/strings.ts:2218
msgid "You are editing \"{notebookTitle}\"."
msgstr ""
-#: src/strings.ts:2018
+#: src/strings.ts:2022
msgid "You are editing #{tag}"
msgstr ""
-#: src/strings.ts:1756
+#: src/strings.ts:1760
msgid "You are logging into the beta version of Notesnook. Switching between beta & stable versions can cause weird issues including data loss. It is recommended that you do not use both simultaneously."
msgstr ""
-#: src/strings.ts:1338
+#: src/strings.ts:1342
msgid "You are not logged in"
msgstr ""
@@ -6560,35 +6576,35 @@ msgstr ""
msgid "You can add as many tags as you want."
msgstr ""
-#: src/strings.ts:2039
+#: src/strings.ts:2043
msgid "You can change the theme at any time from Settings or the side menu."
msgstr ""
-#: src/strings.ts:2393
+#: src/strings.ts:2397
msgid "You can create shortcuts of frequently accessed notebooks in the side menu"
msgstr ""
-#: src/strings.ts:2054
+#: src/strings.ts:2058
msgid "You can import your notes from most other note taking apps."
msgstr ""
-#: src/strings.ts:1413
+#: src/strings.ts:1417
msgid "You can multi-select notes and move them to a notebook at once"
msgstr ""
-#: src/strings.ts:1404
+#: src/strings.ts:1408
msgid "You can pin frequently used Notebooks to the Side Menu to quickly access them."
msgstr ""
-#: src/strings.ts:1150
+#: src/strings.ts:1154
msgid "You can set a custom proxy URL to increase your privacy."
msgstr ""
-#: src/strings.ts:1385
+#: src/strings.ts:1389
msgid "You can swipe left anywhere in the app to start a new note."
msgstr ""
-#: src/strings.ts:2028
+#: src/strings.ts:2032
msgid ""
"You can track your bug report at [{url}]({url}).\n"
"Please note that we will respond to your bug report on the link above. **We recommended that you save the above link for later reference.**\n"
@@ -6607,19 +6623,19 @@ msgstr ""
msgid "You can use fallback 2FA method incase you are unable to login via primary method"
msgstr ""
-#: src/strings.ts:1427
+#: src/strings.ts:1431
msgid "You can view & restore older versions of any note by going to its properties -> History."
msgstr ""
-#: src/strings.ts:1724
+#: src/strings.ts:1728
msgid "You have {count} custom dictionary words."
msgstr ""
-#: src/strings.ts:2173
+#: src/strings.ts:2177
msgid "You have been logged out from all other devices."
msgstr ""
-#: src/strings.ts:2167
+#: src/strings.ts:2171
msgid "You have been logged out."
msgstr ""
@@ -6647,11 +6663,11 @@ msgstr ""
msgid "You have not set any reminders yet"
msgstr ""
-#: src/strings.ts:1520
+#: src/strings.ts:1524
msgid "You have unsynced notes. Take a backup or sync your notes to avoid losing your critical data."
msgstr ""
-#: src/strings.ts:1609
+#: src/strings.ts:1613
msgid "You must log out in order to change/reset server URLs."
msgstr ""
@@ -6687,7 +6703,7 @@ msgstr ""
msgid "You will be logged out from all your devices"
msgstr ""
-#: src/strings.ts:1826
+#: src/strings.ts:1830
msgid "You will receive instructions on how to recover your account on this email"
msgstr ""
@@ -6695,16 +6711,16 @@ msgstr ""
msgid "Your account email will be changed without affecting your subscription or any other settings."
msgstr ""
-#: src/strings.ts:1892
+#: src/strings.ts:1896
msgid "Your account has been recovered."
msgstr ""
#: src/strings.ts:494
-#: src/strings.ts:1703
+#: src/strings.ts:1707
msgid "Your account is now 100% secure against unauthorized logins."
msgstr ""
-#: src/strings.ts:1831
+#: src/strings.ts:1835
msgid "Your account password must be strong & unique."
msgstr ""
@@ -6712,31 +6728,31 @@ msgstr ""
msgid "Your account will be downgraded in {days} days"
msgstr ""
-#: src/strings.ts:1904
+#: src/strings.ts:1908
msgid "Your backup is ready to download"
msgstr ""
-#: src/strings.ts:1561
+#: src/strings.ts:1565
msgid "Your changes could not be saved"
msgstr ""
-#: src/strings.ts:1751
+#: src/strings.ts:1755
msgid "Your changes have been saved and will be reflected after the app has refreshed."
msgstr ""
-#: src/strings.ts:2074
+#: src/strings.ts:2078
msgid "Your current 2FA method is {method}"
msgstr ""
-#: src/strings.ts:1776
+#: src/strings.ts:1780
msgid "Your data recovery key is basically a hashed version of your password (plus some random salt). It can be used to decrypt your data for re-encryption."
msgstr ""
-#: src/strings.ts:1829
+#: src/strings.ts:1833
msgid "Your data recovery key will be used to decrypt your data"
msgstr ""
-#: src/strings.ts:1759
+#: src/strings.ts:1763
msgid "Your email has been confirmed."
msgstr ""
@@ -6752,7 +6768,7 @@ msgstr ""
msgid "Your free trial ends on {date}"
msgstr ""
-#: src/strings.ts:1381
+#: src/strings.ts:1385
msgid "Your free trial has expired"
msgstr ""
@@ -6760,11 +6776,11 @@ msgstr ""
msgid "Your free trial has started"
msgstr ""
-#: src/strings.ts:1380
+#: src/strings.ts:1384
msgid "Your free trial is ending soon"
msgstr ""
-#: src/strings.ts:1753
+#: src/strings.ts:1757
msgid "Your full name"
msgstr ""
@@ -6772,7 +6788,7 @@ msgstr ""
msgid "Your monographs"
msgstr ""
-#: src/strings.ts:1289
+#: src/strings.ts:1293
msgid "Your name is stored 100% end-to-end encrypted and only visible to you."
msgstr ""
@@ -6788,7 +6804,7 @@ msgstr ""
msgid "Your notes"
msgstr ""
-#: src/strings.ts:1867
+#: src/strings.ts:1871
msgid "Your password is always hashed before leaving this device."
msgstr ""
@@ -6796,11 +6812,11 @@ msgstr ""
msgid "Your privacy matters to us, no matter who you are. In a world where everyone is trying to spy on you, Notesnook encrypts all your data before it leaves your device. With Notesnook no one can ever sell your data again."
msgstr ""
-#: src/strings.ts:1286
+#: src/strings.ts:1290
msgid "Your profile pictrure is stored 100% end-to-end encrypted and only visible to you."
msgstr ""
-#: src/strings.ts:1972
+#: src/strings.ts:1976
msgid "Your refund has been issued. Please wait 24 hours before reaching out to us in case you do not receive your funds."
msgstr ""
@@ -6816,7 +6832,7 @@ msgstr ""
msgid "Your subscription ends on {date}"
msgstr ""
-#: src/strings.ts:1970
+#: src/strings.ts:1974
msgid "Your subscription has been canceled."
msgstr ""
@@ -6844,18 +6860,18 @@ msgstr ""
msgid "Zipping"
msgstr ""
-#: src/strings.ts:2068
+#: src/strings.ts:2072
msgid "Zoom factor"
msgstr ""
-#: src/strings.ts:1675
+#: src/strings.ts:1679
msgid "Zoom in"
msgstr ""
-#: src/strings.ts:2069
+#: src/strings.ts:2073
msgid "Zoom in or out the app content."
msgstr ""
-#: src/strings.ts:1674
+#: src/strings.ts:1678
msgid "Zoom out"
msgstr ""
diff --git a/packages/intl/src/strings.ts b/packages/intl/src/strings.ts
index acb3c82616..e9914411fa 100644
--- a/packages/intl/src/strings.ts
+++ b/packages/intl/src/strings.ts
@@ -1111,6 +1111,10 @@ $headline$: Use starting line of the note as title.`,
behaviorDesc: () => t`Change how the app behaves in different situations`,
homepage: () => t`Homepage`,
homepageDesc: () => t`Default screen to open on app launch`,
+ imageCompression: () => t`Image Compression`,
+ imageCompressionDesc: () => t`Compress images before uploading`,
+ askEveryTime: () => t`Ask every time`,
+ enableRecommended: () => t`Enable (Recommended)`,
dateFormat: () => t`Date format`,
dateFormatDesc: () => t`Choose how dates are displayed in the app`,
timeFormat: () => t`Time format`,