diff --git a/apps/web/__e2e__/models/settings-view.model.ts b/apps/web/__e2e__/models/settings-view.model.ts index f1fa8b6d5..7b92cb566 100644 --- a/apps/web/__e2e__/models/settings-view.model.ts +++ b/apps/web/__e2e__/models/settings-view.model.ts @@ -193,4 +193,16 @@ export class SettingsViewModel { .locator("input"); await titleFormatInput.fill(format); } + + async deleteVault(password: string) { + const item = await this.navigation.findItem("Vault"); + await item?.click(); + + const deleteVaultButton = this.page + .locator(getTestId("setting-delete-vault")) + .locator("button"); + + await deleteVaultButton.click(); + await fillPasswordDialog(this.page, password); + } } diff --git a/apps/web/__e2e__/utils/index.ts b/apps/web/__e2e__/utils/index.ts index 8b65af65b..267c0dbed 100644 --- a/apps/web/__e2e__/utils/index.ts +++ b/apps/web/__e2e__/utils/index.ts @@ -192,6 +192,21 @@ export async function createHistorySession(page: Page, locked = false) { }; } +function randomWord(length = 5) { + const chars = "abcdefghijklmnopqrstuvwxyz"; + return Array.from( + { length }, + () => chars[Math.floor(Math.random() * chars.length)] + ).join(""); +} + +function randomNote(): Note { + return { + title: `${randomWord()} ${randomWord()}`, + content: Array.from({ length: 5 }, () => randomWord()).join(" ") + }; +} + export { USER, NOTE, @@ -207,5 +222,6 @@ export { orderByOptions, sortByOptions, groupByOptions, - APP_LOCK_PASSWORD + APP_LOCK_PASSWORD, + randomNote }; diff --git a/apps/web/__e2e__/vault.test.ts b/apps/web/__e2e__/vault.test.ts index 779d040d1..8659242f2 100644 --- a/apps/web/__e2e__/vault.test.ts +++ b/apps/web/__e2e__/vault.test.ts @@ -19,7 +19,7 @@ along with this program. If not, see . import { test, expect } from "@playwright/test"; import { AppModel } from "./models/app.model"; -import { getTestId, NOTE, PASSWORD } from "./utils"; +import { getTestId, NOTE, PASSWORD, randomNote, USER } from "./utils"; test("locking a note should show vault unlocked status", async ({ page }) => { const app = new AppModel(page); @@ -125,3 +125,28 @@ test("clicking on vault unlocked status should lock the readonly note", async ({ expect(await note?.isLockedNotePasswordFieldVisible()).toBe(true); }); + +test("deleting the vault should permanently delete locked notes", async ({ + page +}) => { + const app = new AppModel(page); + await app.auth.goto(); + await app.auth.login(USER.CURRENT); + + const noteData = randomNote(); + let notes = await app.goToNotes(); + let note = await notes.createNote(noteData); + await note?.contextMenu.lock(PASSWORD); + + const settings = await app.goToSettings(); + await settings.deleteVault(USER.CURRENT.password!); + await settings.close(); + + notes = await app.goToNotes(); + note = await notes.findNote(noteData); + expect(note).toBeUndefined(); + + const trash = await app.goToTrash(); + const trashNote = await trash.findItem(noteData.title); + expect(trashNote).toBeUndefined(); +}); diff --git a/apps/web/src/common/vault.ts b/apps/web/src/common/vault.ts index 140f1cd5b..727e06168 100644 --- a/apps/web/src/common/vault.ts +++ b/apps/web/src/common/vault.ts @@ -22,6 +22,7 @@ import { showPasswordDialog } from "../dialogs/password-dialog"; import { showToast } from "../utils/toast"; import { VAULT_ERRORS } from "@notesnook/core"; import { strings } from "@notesnook/intl"; +import { useStore as useAppStore } from "../stores/app-store"; class Vault { static async createVault() { @@ -34,6 +35,7 @@ class Vault { }, validate: async ({ password }) => { await db.vault.create(password); + useAppStore.getState().setIsVaultCreated(true); showToast("success", strings.vaultCreated()); return true; } @@ -63,25 +65,19 @@ class Vault { if (!(await db.vault.exists())) return false; const result = await showPasswordDialog({ title: strings.deleteVault(), - subtitle: strings.deleteVaultDesc(), + message: strings.deleteVaultDesc(), inputs: { password: { label: strings.accountPassword(), autoComplete: "current-password" } }, - checks: { - deleteAllLockedNotes: { - text: strings.deleteAllNotes(), - default: false - } - }, validate: ({ password }) => { return db.user.verifyPassword(password); } }); if (result) { - await db.vault.delete(result.deleteAllLockedNotes); + await db.vault.delete(); return true; } return false; diff --git a/apps/web/src/dialogs/settings/vault-settings.tsx b/apps/web/src/dialogs/settings/vault-settings.tsx index becda4006..789a54d12 100644 --- a/apps/web/src/dialogs/settings/vault-settings.tsx +++ b/apps/web/src/dialogs/settings/vault-settings.tsx @@ -42,9 +42,7 @@ export const VaultSettings: SettingsGroup[] = [ type: "button", title: strings.create(), action: () => { - Vault.createVault().then((res) => { - useAppStore.getState().setIsVaultCreated(res); - }); + Vault.createVault(); }, variant: "secondary" } diff --git a/packages/core/__tests__/vault.test.js b/packages/core/__tests__/vault.test.js index eaac8e847..2cd4bacf8 100644 --- a/packages/core/__tests__/vault.test.js +++ b/packages/core/__tests__/vault.test.js @@ -206,7 +206,7 @@ test("clear vault", () => expect(await db.relations.from(vault, "note").has(id)).toBe(false); })); -test("delete vault without deleting all locked notes", () => +test("delete vault", () => noteTest().then(async ({ db, id }) => { await db.vault.create("password"); await db.vault.add(id); @@ -214,18 +214,6 @@ test("delete vault without deleting all locked notes", () => await db.vault.delete(); - expect(await db.relations.from(vault, "note").has(id)).toBe(false); - expect(await db.vaults.default()).toBeUndefined(); - })); - -test("delete vault and delete all locked notes", () => - noteTest().then(async ({ db, id }) => { - await db.vault.create("password"); - await db.vault.add(id); - const vault = await db.vaults.default(); - - await db.vault.delete(true); - expect(await db.relations.from(vault, "note").has(id)).toBe(false); expect(await db.notes.exists(id)).toBe(false); expect(await db.vaults.default()).toBeUndefined(); diff --git a/packages/core/src/api/vault.ts b/packages/core/src/api/vault.ts index da700e794..b627c0c06 100644 --- a/packages/core/src/api/vault.ts +++ b/packages/core/src/api/vault.ts @@ -154,15 +154,13 @@ export default class Vault { } } - async delete(deleteAllLockedNotes = false) { + async delete() { const vault = await this.db.vaults.default(); if (!vault) return; - if (deleteAllLockedNotes) { - const relations = await this.db.relations.from(vault, "note").get(); - const lockedIds = relations.map((r) => r.toId); - await this.db.notes.remove(...lockedIds); - } + const relations = await this.db.relations.from(vault, "note").get(); + const lockedIds = relations.map((r) => r.toId); + await this.db.notes.remove(...lockedIds); await this.db.vaults.remove(vault.id); this.password = undefined; diff --git a/packages/intl/locale/en.po b/packages/intl/locale/en.po index 6536d15cb..f4cb609e8 100644 --- a/packages/intl/locale/en.po +++ b/packages/intl/locale/en.po @@ -13,7 +13,7 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: src/strings.ts:2410 +#: src/strings.ts:2412 msgid " \"Notebook > Notes\"" msgstr " \"Notebook > Notes\"" @@ -21,23 +21,23 @@ msgstr " \"Notebook > Notes\"" msgid " Unlock with password once to enable biometric access." msgstr " Unlock with password once to enable biometric access." -#: src/strings.ts:1941 +#: src/strings.ts:1943 msgid " Upgrade to Notesnook Pro to add more notebooks." msgstr " Upgrade to Notesnook Pro to add more notebooks." -#: src/strings.ts:1944 +#: src/strings.ts:1946 msgid " Upgrade to Notesnook Pro to customize the toolbar." msgstr " Upgrade to Notesnook Pro to customize the toolbar." -#: src/strings.ts:1943 +#: src/strings.ts:1945 msgid " Upgrade to Notesnook Pro to use custom toolbar presets." msgstr " Upgrade to Notesnook Pro to use custom toolbar presets." -#: src/strings.ts:1942 +#: src/strings.ts:1944 msgid " Upgrade to Notesnook Pro to use the notes vault." msgstr " Upgrade to Notesnook Pro to use the notes vault." -#: src/strings.ts:1945 +#: src/strings.ts:1947 msgid " Upgrade to Notesnook Pro to use this feature." msgstr " Upgrade to Notesnook Pro to use this feature." @@ -68,15 +68,15 @@ msgstr "{0} downloaded" msgid "{0} Highlights πŸŽ‰" msgstr "{0} Highlights πŸŽ‰" -#: src/strings.ts:1753 +#: src/strings.ts:1755 msgid "{count, plural, one {# error occured} other {# errors occured}}" msgstr "{count, plural, one {# error occured} other {# errors occured}}" -#: src/strings.ts:1759 +#: src/strings.ts:1761 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:1714 +#: src/strings.ts:1716 msgid "{count, plural, one {# file} other {# files}}" msgstr "{count, plural, one {# file} other {# files}}" @@ -84,11 +84,11 @@ msgstr "{count, plural, one {# file} other {# files}}" msgid "{count, plural, one {# note} other {# notes}}" msgstr "{count, plural, one {# note} other {# notes}}" -#: src/strings.ts:1578 +#: src/strings.ts:1580 msgid "{count, plural, one {1 hour} other {# hours}}" msgstr "{count, plural, one {1 hour} other {# hours}}" -#: src/strings.ts:1573 +#: src/strings.ts:1575 msgid "{count, plural, one {1 minute} other {# minutes}}" msgstr "{count, plural, one {1 minute} other {# minutes}}" @@ -288,7 +288,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:2427 +#: src/strings.ts:2429 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}}" @@ -491,15 +491,15 @@ 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:2497 +#: src/strings.ts:2499 msgid "{count} characters" msgstr "{count} characters" -#: src/strings.ts:1564 +#: src/strings.ts:1566 msgid "{days, plural, one {1 day} other {# days}}" msgstr "{days, plural, one {1 day} other {# days}}" -#: src/strings.ts:2557 +#: src/strings.ts:2559 msgid "{days} days free" msgstr "{days} days free" @@ -539,19 +539,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:1976 +#: src/strings.ts:1978 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:1971 +#: src/strings.ts:1973 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:1966 +#: src/strings.ts:1968 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:1961 +#: src/strings.ts:1963 msgid "{notes, plural, one {1 note} other {# notes}}" msgstr "{notes, plural, one {1 note} other {# notes}}" @@ -559,11 +559,11 @@ 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:1706 +#: src/strings.ts:1708 msgid "{percentage}% updating..." msgstr "{percentage}% updating..." -#: src/strings.ts:2541 +#: src/strings.ts:2543 msgid "{plan} plan" msgstr "{plan} plan" @@ -571,11 +571,11 @@ msgstr "{plan} plan" 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:1337 +#: src/strings.ts:1339 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:2357 +#: src/strings.ts:2359 msgid "{selected} selected" msgstr "{selected} selected" @@ -595,27 +595,27 @@ msgstr "{type, select, upload {Uploading} download {Downloading} sync {Syncing} msgid "{type} does not match" msgstr "{type} does not match" -#: src/strings.ts:1599 +#: src/strings.ts:1601 msgid "{words, plural, one {# word} other {# words}}" msgstr "{words, plural, one {# word} other {# words}}" -#: src/strings.ts:1662 +#: src/strings.ts:1664 msgid "{words, plural, other {# selected}}" msgstr "{words, plural, other {# selected}}" -#: src/strings.ts:1790 +#: src/strings.ts:1792 msgid "#notesnook" msgstr "#notesnook" -#: src/strings.ts:1583 +#: src/strings.ts:1585 msgid "12-hour" msgstr "12-hour" -#: src/strings.ts:1584 +#: src/strings.ts:1586 msgid "24-hour" msgstr "24-hour" -#: src/strings.ts:1904 +#: src/strings.ts:1906 msgid "2FA code is required()" msgstr "2FA code is required()" @@ -623,15 +623,15 @@ msgstr "2FA code is required()" msgid "2FA code sent via {method}" msgstr "2FA code sent via {method}" -#: src/strings.ts:2581 +#: src/strings.ts:2583 msgid "5 year plan (One time purchase)" msgstr "5 year plan (One time purchase)" -#: src/strings.ts:1845 +#: src/strings.ts:1847 msgid "6 digit code" msgstr "6 digit code" -#: src/strings.ts:1431 +#: src/strings.ts:1433 msgid "A notebook can have unlimited topics with unlimited notes." msgstr "A notebook can have unlimited topics with unlimited notes." @@ -647,7 +647,7 @@ msgstr "A vault stores your notes in an encrypted storage." msgid "Abc" msgstr "Abc" -#: src/strings.ts:1289 +#: src/strings.ts:1291 msgid "About" msgstr "About" @@ -655,27 +655,27 @@ msgstr "About" msgid "Account" msgstr "Account" -#: src/strings.ts:1847 +#: src/strings.ts:1849 msgid "Account password" msgstr "Account password" -#: src/strings.ts:2452 +#: src/strings.ts:2454 msgid "Actions for note: {title}" msgstr "Actions for note: {title}" -#: src/strings.ts:2453 +#: src/strings.ts:2455 msgid "Actions for notebook: {title}" msgstr "Actions for notebook: {title}" -#: src/strings.ts:2454 +#: src/strings.ts:2456 msgid "Actions for tag: {title}" msgstr "Actions for tag: {title}" -#: src/strings.ts:2037 +#: src/strings.ts:2039 msgid "Activate" msgstr "Activate" -#: src/strings.ts:1823 +#: src/strings.ts:1825 msgid "Activating trial" msgstr "Activating trial" @@ -687,11 +687,11 @@ msgstr "Add" msgid "Add 2FA fallback method" msgstr "Add 2FA fallback method" -#: src/strings.ts:1507 +#: src/strings.ts:1509 msgid "Add a short note" msgstr "Add a short note" -#: src/strings.ts:1600 +#: src/strings.ts:1602 msgid "Add a tag" msgstr "Add a tag" @@ -703,7 +703,7 @@ msgstr "Add color" msgid "Add notebook" msgstr "Add notebook" -#: src/strings.ts:2479 +#: src/strings.ts:2481 msgid "Add notes" msgstr "Add notes" @@ -731,15 +731,15 @@ msgstr "Add tags" msgid "Add tags to multiple notes at once" msgstr "Add tags to multiple notes at once" -#: src/strings.ts:2244 +#: src/strings.ts:2246 msgid "Add to dictionary" msgstr "Add to dictionary" -#: src/strings.ts:2614 +#: src/strings.ts:2616 msgid "Add to home" msgstr "Add to home" -#: src/strings.ts:2477 +#: src/strings.ts:2479 msgid "Add to notebook" msgstr "Add to notebook" @@ -751,27 +751,27 @@ msgstr "Add your first note" msgid "Add your first notebook" msgstr "Add your first notebook" -#: src/strings.ts:2617 +#: src/strings.ts:2619 msgid "Adjust the line height of the editor" msgstr "Adjust the line height of the editor" -#: src/strings.ts:2171 +#: src/strings.ts:2173 msgid "Advanced" msgstr "Advanced" -#: src/strings.ts:1726 +#: src/strings.ts:1728 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:2309 +#: src/strings.ts:2311 msgid "Align left" msgstr "Align left" -#: src/strings.ts:2310 +#: src/strings.ts:2312 msgid "Align right" msgstr "Align right" -#: src/strings.ts:2279 +#: src/strings.ts:2281 msgid "Alignment" msgstr "Alignment" @@ -783,7 +783,7 @@ msgstr "All" msgid "All attachments are end-to-end encrypted." msgstr "All attachments are end-to-end encrypted." -#: src/strings.ts:2404 +#: src/strings.ts:2406 msgid "All cached attachments have been cleared." msgstr "All cached attachments have been cleared." @@ -795,6 +795,16 @@ msgstr "All fields are required" msgid "All files" msgstr "All files" +#: src/strings.ts:1176 +msgid "" +"All locked notes will be PERMANENTLY DELETED. \n" +"\n" +"If you want to keep them, remove locked notes from the vault." +msgstr "" +"All locked notes will be PERMANENTLY DELETED. \n" +"\n" +"If you want to keep them, remove locked notes from the vault." + #: src/strings.ts:1174 msgid "All locked notes will be re-encrypted with the new password." msgstr "All locked notes will be re-encrypted with the new password." @@ -803,15 +813,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:1637 +#: src/strings.ts:1639 msgid "All server urls are required." msgstr "All server urls are required." -#: src/strings.ts:1906 +#: src/strings.ts:1908 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:2151 +#: src/strings.ts:2153 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." @@ -819,15 +829,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:1321 +#: src/strings.ts:1323 msgid "All tools in the collapsed section will be removed" msgstr "All tools in the collapsed section will be removed" -#: src/strings.ts:1316 +#: src/strings.ts:1318 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:1346 +#: src/strings.ts:1348 msgid "All your backups are stored in 'Phone Storage/Notesnook/backups/' folder" msgstr "All your backups are stored in 'Phone Storage/Notesnook/backups/' folder" @@ -839,7 +849,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:2221 +#: src/strings.ts:2223 msgid "Amount" msgstr "Amount" @@ -847,7 +857,7 @@ msgstr "Amount" msgid "An error occurred while migrating your data. You can logout of your account and try to relogin. However this is not recommended as it may result in some data loss if your data was not synced." msgstr "An error occurred while migrating your data. You can logout of your account and try to relogin. However this is not recommended as it may result in some data loss if your data was not synced." -#: src/strings.ts:2575 +#: src/strings.ts:2577 msgid "and" msgstr "and" @@ -855,19 +865,19 @@ msgstr "and" msgid "and " msgstr "and " -#: src/strings.ts:1791 +#: src/strings.ts:1793 msgid "and get a chance to win free promo codes." msgstr "and get a chance to win free promo codes." -#: src/strings.ts:2534 +#: src/strings.ts:2536 msgid "and much more." msgstr "and much more." -#: src/strings.ts:1397 +#: src/strings.ts:1399 msgid "and we will manually confirm your account." msgstr "and we will manually confirm your account." -#: src/strings.ts:2592 +#: src/strings.ts:2594 msgid "ANNOUNCEMENT" msgstr "ANNOUNCEMENT" @@ -875,25 +885,25 @@ msgstr "ANNOUNCEMENT" 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:1183 -#: src/strings.ts:1693 +#: src/strings.ts:1185 +#: src/strings.ts:1695 msgid "App lock" msgstr "App lock" #: src/strings.ts:781 -#: src/strings.ts:1209 +#: src/strings.ts:1211 msgid "App lock disabled" msgstr "App lock disabled" -#: src/strings.ts:1189 +#: src/strings.ts:1191 msgid "App lock timeout" msgstr "App lock timeout" -#: src/strings.ts:1300 +#: src/strings.ts:1302 msgid "App version" msgstr "App version" -#: src/strings.ts:1774 +#: src/strings.ts:1776 msgid "App will reload in {sec} seconds" msgstr "App will reload in {sec} seconds" @@ -913,16 +923,16 @@ msgstr "Applied as light theme" msgid "Apply changes" msgstr "Apply changes" -#: src/strings.ts:2044 +#: src/strings.ts:2046 msgid "Applying changes" msgstr "Applying changes" -#: src/strings.ts:1530 -#: src/strings.ts:2484 +#: src/strings.ts:1532 +#: src/strings.ts:2486 msgid "Archive" msgstr "Archive" -#: src/strings.ts:1445 +#: src/strings.ts:1447 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." @@ -930,11 +940,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:1324 +#: src/strings.ts:1326 msgid "Are you sure you want to clear trash?" msgstr "Are you sure you want to clear trash?" -#: src/strings.ts:1542 +#: src/strings.ts:1544 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?" @@ -950,7 +960,7 @@ msgstr "Are you sure you want to remove your name?" msgid "Are you sure you want to remove your profile picture?" msgstr "Are you sure you want to remove your profile picture?" -#: src/strings.ts:1323 +#: src/strings.ts:1325 msgid "Are you sure?" msgstr "Are you sure?" @@ -958,7 +968,7 @@ msgstr "Are you sure?" msgid "Ask every time" msgstr "Ask every time" -#: src/strings.ts:2033 +#: src/strings.ts:2035 msgid "Assign color" msgstr "Assign color" @@ -970,7 +980,7 @@ msgstr "Assign to..." msgid "Atleast 8 characters required" msgstr "Atleast 8 characters required" -#: src/strings.ts:2346 +#: src/strings.ts:2348 msgid "Attach image from URL" msgstr "Attach image from URL" @@ -983,23 +993,23 @@ msgid "attachment" msgstr "attachment" #: src/strings.ts:300 -#: src/strings.ts:2343 +#: src/strings.ts:2345 msgid "Attachment" msgstr "Attachment" -#: src/strings.ts:2447 +#: src/strings.ts:2449 msgid "Attachment manager" msgstr "Attachment manager" -#: src/strings.ts:1935 +#: src/strings.ts:1937 msgid "Attachment preview failed" msgstr "Attachment preview failed" -#: src/strings.ts:2397 +#: src/strings.ts:2399 msgid "Attachment recheck cancelled" msgstr "Attachment recheck cancelled" -#: src/strings.ts:2314 +#: src/strings.ts:2316 msgid "Attachment settings" msgstr "Attachment settings" @@ -1012,11 +1022,11 @@ msgstr "attachments" msgid "Attachments" msgstr "Attachments" -#: src/strings.ts:1884 +#: src/strings.ts:1886 msgid "Attachments cache cleared!" msgstr "Attachments cache cleared!" -#: src/strings.ts:2399 +#: src/strings.ts:2401 msgid "Attachments recheck complete" msgstr "Attachments recheck complete" @@ -1024,64 +1034,64 @@ msgstr "Attachments recheck complete" msgid "Audios" msgstr "Audios" -#: src/strings.ts:1626 +#: src/strings.ts:1628 msgid "Auth server" msgstr "Auth server" -#: src/strings.ts:1795 +#: src/strings.ts:1797 msgid "Authenticated as {email}" msgstr "Authenticated as {email}" -#: src/strings.ts:1898 +#: src/strings.ts:1900 msgid "Authenticating user" msgstr "Authenticating user" -#: src/strings.ts:2134 +#: src/strings.ts:2136 msgid "Authentication" msgstr "Authentication" -#: src/strings.ts:1730 +#: src/strings.ts:1732 msgid "authentication app" msgstr "authentication app" -#: src/strings.ts:1351 +#: src/strings.ts:1353 msgid "Authentication cancelled by user" msgstr "Authentication cancelled by user" -#: src/strings.ts:1352 +#: src/strings.ts:1354 msgid "Authentication failed" msgstr "Authentication failed" -#: src/strings.ts:2097 +#: src/strings.ts:2099 msgid "Auto" msgstr "Auto" -#: src/strings.ts:1661 +#: src/strings.ts:1663 msgid "Auto save: off" msgstr "Auto save: off" -#: src/strings.ts:2111 +#: src/strings.ts:2113 msgid "Auto start on system startup" msgstr "Auto start on system startup" -#: src/strings.ts:1218 -#: src/strings.ts:1689 +#: src/strings.ts:1220 +#: src/strings.ts:1691 msgid "Automatic backups" msgstr "Automatic backups" -#: src/strings.ts:1365 +#: src/strings.ts:1367 msgid "Automatic backups are off" msgstr "Automatic backups are off" -#: src/strings.ts:2005 +#: src/strings.ts:2007 msgid "Automatic backups disabled" msgstr "Automatic backups disabled" -#: src/strings.ts:1221 +#: src/strings.ts:1223 msgid "Automatic backups with attachments" msgstr "Automatic backups with attachments" -#: src/strings.ts:2107 +#: src/strings.ts:2109 msgid "Automatic updates" msgstr "Automatic updates" @@ -1089,11 +1099,11 @@ msgstr "Automatic updates" msgid "Automatically clear trash after a certain period of time" msgstr "Automatically clear trash after a certain period of time" -#: src/strings.ts:2109 +#: src/strings.ts:2111 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:1191 +#: src/strings.ts:1193 msgid "Automatically lock the app after a certain period" msgstr "Automatically lock the app after a certain period" @@ -1101,15 +1111,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:2154 +#: src/strings.ts:2156 msgid "Available on iOS" msgstr "Available on iOS" -#: src/strings.ts:2155 +#: src/strings.ts:2157 msgid "Available on iOS & Android" msgstr "Available on iOS & Android" -#: src/strings.ts:2302 +#: src/strings.ts:2304 msgid "Background color" msgstr "Background color" @@ -1117,31 +1127,31 @@ msgstr "Background color" msgid "Background sync (experimental)" msgstr "Background sync (experimental)" -#: src/strings.ts:2103 +#: src/strings.ts:2105 msgid "Backup" msgstr "Backup" -#: src/strings.ts:2141 +#: src/strings.ts:2143 msgid "Backup & export" msgstr "Backup & export" -#: src/strings.ts:1210 +#: src/strings.ts:1212 msgid "Backup & restore" msgstr "Backup & restore" -#: src/strings.ts:1335 +#: src/strings.ts:1337 msgid "Backup complete" msgstr "Backup complete" -#: src/strings.ts:1561 +#: src/strings.ts:1563 msgid "Backup directory not selected" msgstr "Backup directory not selected" -#: src/strings.ts:1233 +#: src/strings.ts:1235 msgid "Backup encryption" msgstr "Backup encryption" -#: src/strings.ts:1858 +#: src/strings.ts:1860 msgid "Backup files have .nnbackup extension" msgstr "Backup files have .nnbackup extension" @@ -1149,15 +1159,15 @@ msgstr "Backup files have .nnbackup extension" msgid "Backup is encrypted" msgstr "Backup is encrypted" -#: src/strings.ts:1614 +#: src/strings.ts:1616 msgid "Backup is encrypted, decrypting..." msgstr "Backup is encrypted, decrypting..." -#: src/strings.ts:1212 +#: src/strings.ts:1214 msgid "Backup now" msgstr "Backup now" -#: src/strings.ts:1213 +#: src/strings.ts:1215 msgid "Backup now with attachments" msgstr "Backup now with attachments" @@ -1165,15 +1175,15 @@ msgstr "Backup now with attachments" msgid "Backup restored" msgstr "Backup restored" -#: src/strings.ts:1919 +#: src/strings.ts:1921 msgid "Backup saved at {path}" msgstr "Backup saved at {path}" -#: src/strings.ts:1347 +#: src/strings.ts:1349 msgid "Backup successful" msgstr "Backup successful" -#: src/strings.ts:2104 +#: src/strings.ts:2106 msgid "Backup with attachments" msgstr "Backup with attachments" @@ -1185,7 +1195,7 @@ msgstr "Backups" msgid "Basic" msgstr "Basic" -#: src/strings.ts:1793 +#: src/strings.ts:1795 msgid "Because where's the fun in nookin' alone?" msgstr "Because where's the fun in nookin' alone?" @@ -1193,39 +1203,39 @@ msgstr "Because where's the fun in nookin' alone?" msgid "Behavior" msgstr "Behavior" -#: src/strings.ts:2136 +#: src/strings.ts:2138 msgid "Behaviour" msgstr "Behaviour" -#: src/strings.ts:2471 +#: src/strings.ts:2473 msgid "Believer plan" msgstr "Believer plan" -#: src/strings.ts:2578 +#: src/strings.ts:2580 msgid "Best value" msgstr "Best value" -#: src/strings.ts:2460 +#: src/strings.ts:2462 msgid "Beta" msgstr "Beta" -#: src/strings.ts:2260 +#: src/strings.ts:2262 msgid "Bi-directional note link" msgstr "Bi-directional note link" -#: src/strings.ts:2554 +#: src/strings.ts:2556 msgid "billed annually at {price}" msgstr "billed annually at {price}" -#: src/strings.ts:2555 +#: src/strings.ts:2557 msgid "billed monthly at {price}" msgstr "billed monthly at {price}" -#: src/strings.ts:2202 +#: src/strings.ts:2204 msgid "Billing history" msgstr "Billing history" -#: src/strings.ts:1177 +#: src/strings.ts:1179 msgid "Biometric unlocking" msgstr "Biometric unlocking" @@ -1237,27 +1247,27 @@ msgstr "Biometric unlocking disabled" msgid "Biometric unlocking enabled" msgstr "Biometric unlocking enabled" -#: src/strings.ts:1349 +#: src/strings.ts:1351 msgid "Biometrics authentication failed. Please try again." msgstr "Biometrics authentication failed. Please try again." -#: src/strings.ts:1186 +#: src/strings.ts:1188 msgid "Biometrics not enrolled" msgstr "Biometrics not enrolled" -#: src/strings.ts:2256 +#: src/strings.ts:2258 msgid "Bold" msgstr "Bold" -#: src/strings.ts:2409 +#: src/strings.ts:2411 msgid "Boost your productivity with Notebooks and organize your notes." msgstr "Boost your productivity with Notebooks and organize your notes." -#: src/strings.ts:1809 +#: src/strings.ts:1811 msgid "Browse" msgstr "Browse" -#: src/strings.ts:2273 +#: src/strings.ts:2275 msgid "Bullet list" msgstr "Bullet list" @@ -1265,7 +1275,7 @@ msgstr "Bullet list" msgid "By" msgstr "By" -#: src/strings.ts:2573 +#: src/strings.ts:2575 msgid "By joining you agree to our" msgstr "By joining you agree to our" @@ -1273,11 +1283,11 @@ msgstr "By joining you agree to our" msgid "By signing up, you agree to our " msgstr "By signing up, you agree to our " -#: src/strings.ts:2334 +#: src/strings.ts:2336 msgid "Callout" msgstr "Callout" -#: src/strings.ts:2514 +#: src/strings.ts:2516 msgid "Can I cancel my free trial anytime?" msgstr "Can I cancel my free trial anytime?" @@ -1285,11 +1295,11 @@ msgstr "Can I cancel my free trial anytime?" msgid "Cancel" msgstr "Cancel" -#: src/strings.ts:2571 +#: src/strings.ts:2573 msgid "Cancel anytime, subscription auto-renews." msgstr "Cancel anytime, subscription auto-renews." -#: src/strings.ts:2536 +#: src/strings.ts:2538 msgid "Cancel anytime." msgstr "Cancel anytime." @@ -1301,7 +1311,7 @@ msgstr "Cancel download" msgid "Cancel login" msgstr "Cancel login" -#: src/strings.ts:1826 +#: src/strings.ts:1828 msgid "Cancel subscription" msgstr "Cancel subscription" @@ -1309,24 +1319,24 @@ msgstr "Cancel subscription" msgid "Cancel upload" msgstr "Cancel upload" -#: src/strings.ts:2301 +#: src/strings.ts:2303 msgid "Cell background color" msgstr "Cell background color" -#: src/strings.ts:2303 +#: src/strings.ts:2305 msgid "Cell border color" msgstr "Cell border color" -#: src/strings.ts:2305 -#: src/strings.ts:2306 +#: src/strings.ts:2307 +#: src/strings.ts:2308 msgid "Cell border width" msgstr "Cell border width" -#: src/strings.ts:2287 +#: src/strings.ts:2289 msgid "Cell properties" msgstr "Cell properties" -#: src/strings.ts:2304 +#: src/strings.ts:2306 msgid "Cell text color" msgstr "Cell text color" @@ -1342,15 +1352,15 @@ msgstr "Change 2FA fallback method" msgid "Change 2FA method" msgstr "Change 2FA method" -#: src/strings.ts:1198 +#: src/strings.ts:1200 msgid "Change app lock password" msgstr "Change app lock password" -#: src/strings.ts:1197 +#: src/strings.ts:1199 msgid "Change app lock pin" msgstr "Change app lock pin" -#: src/strings.ts:1232 +#: src/strings.ts:1234 msgid "Change backup directory" msgstr "Change backup directory" @@ -1362,11 +1372,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:2352 +#: src/strings.ts:2354 msgid "Change language" msgstr "Change language" -#: src/strings.ts:1253 +#: src/strings.ts:1255 msgid "Change notification sound" msgstr "Change notification sound" @@ -1374,23 +1384,23 @@ msgstr "Change notification sound" msgid "Change password" msgstr "Change password" -#: src/strings.ts:2585 +#: src/strings.ts:2587 msgid "Change plan" msgstr "Change plan" -#: src/strings.ts:1818 +#: src/strings.ts:1820 msgid "Change profile picture" msgstr "Change profile picture" -#: src/strings.ts:2180 +#: src/strings.ts:2182 msgid "Change proxy" msgstr "Change proxy" -#: src/strings.ts:2201 +#: src/strings.ts:2203 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:1255 +#: src/strings.ts:1257 msgid "Change the sound that plays when you receive a notification" msgstr "Change the sound that plays when you receive a notification" @@ -1414,27 +1424,27 @@ 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:2490 +#: src/strings.ts:2492 msgid "Characters" msgstr "Characters" -#: src/strings.ts:1296 +#: src/strings.ts:1298 msgid "Check for new version of Notesnook" msgstr "Check for new version of Notesnook" -#: src/strings.ts:1299 +#: src/strings.ts:1301 msgid "Check for new version of the app available on app launch" msgstr "Check for new version of the app available on app launch" -#: src/strings.ts:1295 +#: src/strings.ts:1297 msgid "Check for updates" msgstr "Check for updates" -#: src/strings.ts:1297 +#: src/strings.ts:1299 msgid "Check for updates automatically" msgstr "Check for updates automatically" -#: src/strings.ts:2153 +#: src/strings.ts:2155 msgid "Check roadmap" msgstr "Check roadmap" @@ -1442,7 +1452,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:2401 +#: src/strings.ts:2403 msgid "Checking all attachments" msgstr "Checking all attachments" @@ -1450,31 +1460,31 @@ msgstr "Checking all attachments" msgid "Checking for new version" msgstr "Checking for new version" -#: src/strings.ts:1705 +#: src/strings.ts:1707 msgid "Checking for updates" msgstr "Checking for updates" -#: src/strings.ts:2400 +#: src/strings.ts:2402 msgid "Checking note attachments" msgstr "Checking note attachments" -#: src/strings.ts:2275 +#: src/strings.ts:2277 msgid "Checklist" msgstr "Checklist" -#: src/strings.ts:2329 +#: src/strings.ts:2331 msgid "Choose a block to insert" msgstr "Choose a block to insert" -#: src/strings.ts:1797 +#: src/strings.ts:1799 msgid "Choose a recovery method" msgstr "Choose a recovery method" -#: src/strings.ts:2102 +#: src/strings.ts:2104 msgid "Choose backup format" msgstr "Choose backup format" -#: src/strings.ts:2365 +#: src/strings.ts:2367 msgid "Choose custom color" msgstr "Choose custom color" @@ -1486,7 +1496,7 @@ msgstr "Choose from pre-built themes or create your own" msgid "Choose how dates are displayed in the app" msgstr "Choose how dates are displayed in the app" -#: src/strings.ts:2620 +#: src/strings.ts:2622 msgid "Choose how day is displayed in the app" msgstr "Choose how day is displayed in the app" @@ -1502,19 +1512,19 @@ 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:2625 +#: src/strings.ts:2627 msgid "Choose what day to display as the first day of the week" msgstr "Choose what day to display as the first day of the week" -#: src/strings.ts:1228 +#: src/strings.ts:1230 msgid "Choose where to save your backups" msgstr "Choose where to save your backups" -#: src/strings.ts:2062 +#: src/strings.ts:2064 msgid "Choose your style" msgstr "Choose your style" -#: src/strings.ts:1617 +#: src/strings.ts:1619 msgid "cleaningUp" msgstr "cleaningUp" @@ -1522,27 +1532,27 @@ msgstr "cleaningUp" msgid "Clear" msgstr "Clear" -#: src/strings.ts:1870 +#: src/strings.ts:1872 msgid "Clear all cached attachments. Current cache size: {cacheSize}" msgstr "Clear all cached attachments. Current cache size: {cacheSize}" -#: src/strings.ts:2269 +#: src/strings.ts:2271 msgid "Clear all formatting" msgstr "Clear all formatting" -#: src/strings.ts:1871 +#: src/strings.ts:1873 msgid "Clear attachments cache?" msgstr "Clear attachments cache?" -#: src/strings.ts:1868 +#: src/strings.ts:1870 msgid "Clear cache" msgstr "Clear cache" -#: src/strings.ts:2363 +#: src/strings.ts:2365 msgid "Clear completed tasks" msgstr "Clear completed tasks" -#: src/strings.ts:1805 +#: src/strings.ts:1807 msgid "Clear data & reset account" msgstr "Clear data & reset account" @@ -1554,11 +1564,11 @@ msgstr "Clear default notebook" msgid "Clear logs" msgstr "Clear logs" -#: src/strings.ts:2196 +#: src/strings.ts:2198 msgid "clear sessions" msgstr "clear sessions" -#: src/strings.ts:1322 +#: src/strings.ts:1324 msgid "Clear trash" msgstr "Clear trash" @@ -1570,7 +1580,7 @@ msgstr "Clear trash interval" msgid "Clear vault" msgstr "Clear vault" -#: src/strings.ts:1873 +#: src/strings.ts:1875 msgid "" "Clearing attachments cache will perform the following actions:\n" "\n" @@ -1596,7 +1606,7 @@ msgstr "" "\n" "**Only use this for troubleshooting purposes. If you are having persistent issues, it is recommended that you reach out to us via support@streetwriters.co so we can help you resolve it permanently.**" -#: src/strings.ts:2607 +#: src/strings.ts:2609 msgid "Click here to directly claim the promotion." msgstr "Click here to directly claim the promotion." @@ -1604,71 +1614,71 @@ msgstr "Click here to directly claim the promotion." msgid "Click to deselect" msgstr "Click to deselect" -#: src/strings.ts:1867 +#: src/strings.ts:1869 msgid "Click to preview" msgstr "Click to preview" -#: src/strings.ts:1772 +#: src/strings.ts:1774 msgid "Click to remove" msgstr "Click to remove" -#: src/strings.ts:2392 +#: src/strings.ts:2394 msgid "Click to reset {title}" msgstr "Click to reset {title}" -#: src/strings.ts:2615 +#: src/strings.ts:2617 msgid "Click to save" msgstr "Click to save" -#: src/strings.ts:2611 +#: src/strings.ts:2613 msgid "Click to update" msgstr "Click to update" -#: src/strings.ts:1381 +#: src/strings.ts:1383 msgid "Close" msgstr "Close" -#: src/strings.ts:2019 +#: src/strings.ts:2021 msgid "Close all" msgstr "Close all" -#: src/strings.ts:2450 +#: src/strings.ts:2452 msgid "Close all tabs" msgstr "Close all tabs" -#: src/strings.ts:2449 +#: src/strings.ts:2451 msgid "Close current tab" msgstr "Close current tab" -#: src/strings.ts:2016 +#: src/strings.ts:2018 msgid "Close others" msgstr "Close others" -#: src/strings.ts:2120 +#: src/strings.ts:2122 msgid "Close to system tray" msgstr "Close to system tray" -#: src/strings.ts:2018 +#: src/strings.ts:2020 msgid "Close to the left" msgstr "Close to the left" -#: src/strings.ts:2017 +#: src/strings.ts:2019 msgid "Close to the right" msgstr "Close to the right" -#: src/strings.ts:2528 +#: src/strings.ts:2530 msgid "cloud storage space for storing images and files." msgstr "cloud storage space for storing images and files." -#: src/strings.ts:2267 +#: src/strings.ts:2269 msgid "Code" msgstr "Code" -#: src/strings.ts:2331 +#: src/strings.ts:2333 msgid "Code block" msgstr "Code block" -#: src/strings.ts:2268 +#: src/strings.ts:2270 msgid "Code remove" msgstr "Code remove" @@ -1681,7 +1691,7 @@ msgid "color" msgstr "color" #: src/strings.ts:299 -#: src/strings.ts:1844 +#: src/strings.ts:1846 msgid "Color" msgstr "Color" @@ -1689,11 +1699,11 @@ msgstr "Color" msgid "Color #{color} already exists" msgstr "Color #{color} already exists" -#: src/strings.ts:2095 +#: src/strings.ts:2097 msgid "Color scheme" msgstr "Color scheme" -#: src/strings.ts:1489 +#: src/strings.ts:1491 msgid "Color title" msgstr "Color title" @@ -1705,19 +1715,19 @@ msgstr "colors" msgid "Colors" msgstr "Colors" -#: src/strings.ts:2285 +#: src/strings.ts:2287 msgid "Column properties" msgstr "Column properties" -#: src/strings.ts:2441 +#: src/strings.ts:2443 msgid "Command palette" msgstr "Command palette" -#: src/strings.ts:1271 +#: src/strings.ts:1273 msgid "Community" msgstr "Community" -#: src/strings.ts:2548 +#: src/strings.ts:2550 msgid "Compare plans" msgstr "Compare plans" @@ -1737,11 +1747,11 @@ msgstr "Compress images before uploading" msgid "Compressed images are uploaded in Full HD resolution and usually are good enough for most use cases." msgstr "Compressed images are uploaded in Full HD resolution and usually are good enough for most use cases." -#: src/strings.ts:2251 +#: src/strings.ts:2253 msgid "Configure" msgstr "Configure" -#: src/strings.ts:2406 +#: src/strings.ts:2408 msgid "Configure server URLs for Notesnook" msgstr "Configure server URLs for Notesnook" @@ -1753,31 +1763,31 @@ msgstr "Confirm email" msgid "Confirm email to publish note" msgstr "Confirm email to publish note" -#: src/strings.ts:1488 +#: src/strings.ts:1490 msgid "Confirm new password" msgstr "Confirm new password" -#: src/strings.ts:1483 +#: src/strings.ts:1485 msgid "Confirm password" msgstr "Confirm password" -#: src/strings.ts:1487 +#: src/strings.ts:1489 msgid "Confirm pin" msgstr "Confirm pin" -#: src/strings.ts:2080 +#: src/strings.ts:2082 msgid "Congratulations!" msgstr "Congratulations!" -#: src/strings.ts:1636 +#: src/strings.ts:1638 msgid "Connected to all servers sucessfully." msgstr "Connected to all servers sucessfully." -#: src/strings.ts:1671 +#: src/strings.ts:1673 msgid "Contact support" msgstr "Contact support" -#: src/strings.ts:1262 +#: src/strings.ts:1264 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" @@ -1789,11 +1799,11 @@ msgstr "Continue" 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:1248 +#: src/strings.ts:1250 msgid "Controls whether this device should receive reminder notifications." msgstr "Controls whether this device should receive reminder notifications." -#: src/strings.ts:1990 +#: src/strings.ts:1992 msgid "Copied" msgstr "Copied" @@ -1802,7 +1812,7 @@ msgid "Copy" msgstr "Copy" #. placeholder {0}: format ? " " + format : "" -#: src/strings.ts:2036 +#: src/strings.ts:2038 msgid "Copy as{0}" msgstr "Copy as{0}" @@ -1810,7 +1820,7 @@ msgstr "Copy as{0}" msgid "Copy codes" msgstr "Copy codes" -#: src/strings.ts:2247 +#: src/strings.ts:2249 msgid "Copy image" msgstr "Copy image" @@ -1818,7 +1828,7 @@ msgstr "Copy image" msgid "Copy link" msgstr "Copy link" -#: src/strings.ts:2246 +#: src/strings.ts:2248 msgid "Copy link text" msgstr "Copy link text" @@ -1830,7 +1840,7 @@ msgstr "Copy note" msgid "Copy to clipboard" msgstr "Copy to clipboard" -#: src/strings.ts:1619 +#: src/strings.ts:1621 msgid "Copying backup files to cache" msgstr "Copying backup files to cache" @@ -1838,19 +1848,19 @@ msgstr "Copying backup files to cache" msgid "CORS bypass" msgstr "CORS bypass" -#: src/strings.ts:1986 +#: src/strings.ts:1988 msgid "Could not activate trial. Please try again later." msgstr "Could not activate trial. Please try again later." -#: src/strings.ts:2004 +#: src/strings.ts:2006 msgid "Could not clear trash." msgstr "Could not clear trash." -#: src/strings.ts:1639 +#: src/strings.ts:1641 msgid "Could not connect to {server}." msgstr "Could not connect to {server}." -#: src/strings.ts:1951 +#: src/strings.ts:1953 msgid "Could not convert note to {format}." msgstr "Could not convert note to {format}." @@ -1882,7 +1892,7 @@ msgstr "Create a note first" msgid "Create a shortcut" msgstr "Create a shortcut" -#: src/strings.ts:1849 +#: src/strings.ts:1851 msgid "Create account" msgstr "Create account" @@ -1890,19 +1900,19 @@ msgstr "Create account" msgid "Create link" msgstr "Create link" -#: src/strings.ts:1473 +#: src/strings.ts:1475 msgid "Create shortcut of this notebook in side menu" msgstr "Create shortcut of this notebook in side menu" -#: src/strings.ts:1387 +#: src/strings.ts:1389 msgid "Create unlimited notebooks with Notesnook Pro" msgstr "Create unlimited notebooks with Notesnook Pro" -#: src/strings.ts:1386 +#: src/strings.ts:1388 msgid "Create unlimited tags with Notesnook Pro" msgstr "Create unlimited tags with Notesnook Pro" -#: src/strings.ts:1388 +#: src/strings.ts:1390 msgid "Create unlimited vaults with Notesnook Pro" msgstr "Create unlimited vaults with Notesnook Pro" @@ -1914,20 +1924,20 @@ msgstr "Create vault" msgid "Create your account" msgstr "Create your account" -#: src/strings.ts:2229 +#: src/strings.ts:2231 msgid "Created at" msgstr "Created at" #. placeholder {0}: type === "full" ? " full" : "" -#: src/strings.ts:1344 +#: src/strings.ts:1346 msgid "Creating a{0} backup" msgstr "Creating a{0} backup" -#: src/strings.ts:2049 +#: src/strings.ts:2051 msgid "Credentials" msgstr "Credentials" -#: src/strings.ts:2065 +#: src/strings.ts:2067 msgid "Cross platform & 100% encrypted" msgstr "Cross platform & 100% encrypted" @@ -1935,31 +1945,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:1836 +#: src/strings.ts:1838 msgid "Current note" msgstr "Current note" -#: src/strings.ts:1485 +#: src/strings.ts:1487 msgid "Current password" msgstr "Current password" -#: src/strings.ts:1229 +#: src/strings.ts:1231 msgid "Current path: {path}" msgstr "Current path: {path}" -#: src/strings.ts:1484 +#: src/strings.ts:1486 msgid "Current pin" msgstr "Current pin" -#: src/strings.ts:1773 +#: src/strings.ts:1775 msgid "CURRENT PLAN" msgstr "CURRENT PLAN" -#: src/strings.ts:2010 +#: src/strings.ts:2012 msgid "Custom" msgstr "Custom" -#: src/strings.ts:2131 +#: src/strings.ts:2133 msgid "Custom dictionary words" msgstr "Custom dictionary words" @@ -1983,12 +1993,12 @@ msgstr "Customize the toolbar in the note editor" msgid "Customize toolbar" msgstr "Customize toolbar" -#: src/strings.ts:2245 +#: src/strings.ts:2247 msgid "Cut" msgstr "Cut" #: src/strings.ts:167 -#: src/strings.ts:1568 +#: src/strings.ts:1570 msgid "Daily" msgstr "Daily" @@ -2000,19 +2010,19 @@ msgstr "Dark" msgid "Dark mode" msgstr "Dark mode" -#: src/strings.ts:2096 +#: src/strings.ts:2098 msgid "Dark or light, we won't judge." msgstr "Dark or light, we won't judge." -#: src/strings.ts:1547 +#: src/strings.ts:1549 msgid "Database setup failed, could not get database key" msgstr "Database setup failed, could not get database key" -#: src/strings.ts:1839 +#: src/strings.ts:1841 msgid "Date" msgstr "Date" -#: src/strings.ts:2105 +#: src/strings.ts:2107 msgid "Date & time" msgstr "Date & time" @@ -2036,19 +2046,19 @@ msgstr "Date format" msgid "Date modified" msgstr "Date modified" -#: src/strings.ts:2042 +#: src/strings.ts:2044 msgid "Date uploaded" msgstr "Date uploaded" -#: src/strings.ts:1841 +#: src/strings.ts:1843 msgid "Day" msgstr "Day" -#: src/strings.ts:2619 +#: src/strings.ts:2621 msgid "Day format" msgstr "Day format" -#: src/strings.ts:2038 +#: src/strings.ts:2040 msgid "Deactivate" msgstr "Deactivate" @@ -2056,7 +2066,7 @@ msgstr "Deactivate" msgid "Debug log copied!" msgstr "Debug log copied!" -#: src/strings.ts:1269 +#: src/strings.ts:1271 msgid "Debug logs" msgstr "Debug logs" @@ -2064,16 +2074,16 @@ msgstr "Debug logs" msgid "Debug logs downloaded" msgstr "Debug logs downloaded" -#: src/strings.ts:1266 +#: src/strings.ts:1268 msgid "Debugging" msgstr "Debugging" -#: src/strings.ts:2394 +#: src/strings.ts:2396 msgid "Decrease {title}" msgstr "Decrease {title}" #: src/strings.ts:660 -#: src/strings.ts:2008 +#: src/strings.ts:2010 msgid "Default" msgstr "Default" @@ -2101,15 +2111,15 @@ msgstr "Default notebook cleared" msgid "Default screen to open on app launch" msgstr "Default screen to open on app launch" -#: src/strings.ts:2481 +#: src/strings.ts:2483 msgid "Default sidebar tab" msgstr "Default sidebar tab" -#: src/strings.ts:1249 +#: src/strings.ts:1251 msgid "Default snooze time" msgstr "Default snooze time" -#: src/strings.ts:1301 +#: src/strings.ts:1303 msgid "Default sound" msgstr "Default sound" @@ -2121,23 +2131,23 @@ msgstr "Delete" msgid "Delete account" msgstr "Delete account" -#: src/strings.ts:1319 +#: src/strings.ts:1321 msgid "Delete collapsed section" msgstr "Delete collapsed section" -#: src/strings.ts:2292 +#: src/strings.ts:2294 msgid "Delete column" msgstr "Delete column" -#: src/strings.ts:2636 +#: src/strings.ts:2638 msgid "Delete data" msgstr "Delete data" -#: src/strings.ts:1314 +#: src/strings.ts:1316 msgid "Delete group" msgstr "Delete group" -#: src/strings.ts:2366 +#: src/strings.ts:2368 msgid "Delete mode" msgstr "Delete mode" @@ -2149,11 +2159,11 @@ msgstr "Delete notes in this vault" msgid "Delete permanently" msgstr "Delete permanently" -#: src/strings.ts:2299 +#: src/strings.ts:2301 msgid "Delete row" msgstr "Delete row" -#: src/strings.ts:2300 +#: src/strings.ts:2302 msgid "Delete table" msgstr "Delete table" @@ -2161,27 +2171,23 @@ msgstr "Delete table" msgid "Delete vault" msgstr "Delete vault" -#: src/strings.ts:1176 -msgid "Delete vault (and optionally remove all notes)." -msgstr "Delete vault (and optionally remove all notes)." - #: src/strings.ts:164 msgid "Deleted on {date}" msgstr "Deleted on {date}" -#: src/strings.ts:1928 +#: src/strings.ts:1930 msgid "Deleting" msgstr "Deleting" -#: src/strings.ts:1838 +#: src/strings.ts:1840 msgid "Description" msgstr "Description" -#: src/strings.ts:2106 +#: src/strings.ts:2108 msgid "Desktop app" msgstr "Desktop app" -#: src/strings.ts:2110 +#: src/strings.ts:2112 msgid "Desktop integration" msgstr "Desktop integration" @@ -2189,7 +2195,7 @@ msgstr "Desktop integration" msgid "Did you save recovery key?" msgstr "Did you save recovery key?" -#: src/strings.ts:1376 +#: src/strings.ts:1378 msgid "Disable" msgstr "Disable" @@ -2197,7 +2203,7 @@ msgstr "Disable" msgid "Disable auto sync" msgstr "Disable auto sync" -#: src/strings.ts:2011 +#: src/strings.ts:2013 msgid "Disable editor margins" msgstr "Disable editor margins" @@ -2217,11 +2223,11 @@ msgstr "Disabled" msgid "Discard" msgstr "Discard" -#: src/strings.ts:1597 +#: src/strings.ts:1599 msgid "Dismiss" msgstr "Dismiss" -#: src/strings.ts:1650 +#: src/strings.ts:1652 msgid "Dismiss announcement" msgstr "Dismiss announcement" @@ -2233,11 +2239,11 @@ msgstr "Disputed" msgid "Do you enjoy using Notesnook?" msgstr "Do you enjoy using Notesnook?" -#: src/strings.ts:2228 +#: src/strings.ts:2230 msgid "Do you want to clear the trash?" msgstr "Do you want to clear the trash?" -#: src/strings.ts:1263 +#: src/strings.ts:1265 msgid "Documentation" msgstr "Documentation" @@ -2261,11 +2267,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:1832 +#: src/strings.ts:1834 msgid "Don't have backup file?" msgstr "Don't have backup file?" -#: src/strings.ts:1831 +#: src/strings.ts:1833 msgid "Don't have your account recovery key?" msgstr "Don't have your account recovery key?" @@ -2273,11 +2279,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:1810 +#: src/strings.ts:1812 msgid "Don't show again" msgstr "Don't show again" -#: src/strings.ts:1811 +#: src/strings.ts:1813 msgid "Don't show again on this device?" msgstr "Don't show again on this device?" @@ -2293,15 +2299,15 @@ msgstr "Double spaced lines" msgid "Download" msgstr "Download" -#: src/strings.ts:1816 +#: src/strings.ts:1818 msgid "Download all attachments" msgstr "Download all attachments" -#: src/strings.ts:2315 +#: src/strings.ts:2317 msgid "Download attachment" msgstr "Download attachment" -#: src/strings.ts:1860 +#: src/strings.ts:1862 msgid "Download backup file" msgstr "Download backup file" @@ -2309,11 +2315,11 @@ msgstr "Download backup file" msgid "Download cancelled" msgstr "Download cancelled" -#: src/strings.ts:2208 +#: src/strings.ts:2210 msgid "Download everything including attachments on sync" msgstr "Download everything including attachments on sync" -#: src/strings.ts:1290 +#: src/strings.ts:1292 msgid "Download on desktop" msgstr "Download on desktop" @@ -2346,23 +2352,23 @@ msgstr "Downloading ({progress})" msgid "Downloading attachments" msgstr "Downloading attachments" -#: src/strings.ts:1704 +#: src/strings.ts:1706 msgid "Downloading images" msgstr "Downloading images" -#: src/strings.ts:1770 +#: src/strings.ts:1772 msgid "Drag & drop files here, or click to select files" msgstr "Drag & drop files here, or click to select files" -#: src/strings.ts:1769 +#: src/strings.ts:1771 msgid "Drop the files here" msgstr "Drop the files here" -#: src/strings.ts:1663 +#: src/strings.ts:1665 msgid "Drop your files here to attach" msgstr "Drop your files here to attach" -#: src/strings.ts:2558 +#: src/strings.ts:2560 msgid "Due {date}" msgstr "Due {date}" @@ -2370,7 +2376,7 @@ msgstr "Due {date}" msgid "Due date" msgstr "Due date" -#: src/strings.ts:2556 +#: src/strings.ts:2558 msgid "Due today" msgstr "Due today" @@ -2382,15 +2388,15 @@ msgstr "Duplicate" msgid "Earliest first" msgstr "Earliest first" -#: src/strings.ts:2418 +#: src/strings.ts:2420 msgid "Easy access" msgstr "Easy access" -#: src/strings.ts:1777 +#: src/strings.ts:1779 msgid "Edit" msgstr "Edit" -#: src/strings.ts:2626 +#: src/strings.ts:2628 msgid "Edit creation date" msgstr "Edit creation date" @@ -2398,37 +2404,37 @@ msgstr "Edit creation date" msgid "Edit internal link" msgstr "Edit internal link" -#: src/strings.ts:2234 -#: src/strings.ts:2262 +#: src/strings.ts:2236 +#: src/strings.ts:2264 msgid "Edit link" msgstr "Edit link" -#: src/strings.ts:2474 +#: src/strings.ts:2476 msgid "Edit profile" msgstr "Edit profile" -#: src/strings.ts:1307 +#: src/strings.ts:1309 msgid "Edit profile picture" msgstr "Edit profile picture" -#: src/strings.ts:1819 +#: src/strings.ts:1821 msgid "Edit your full name" msgstr "Edit your full name" #: src/strings.ts:1142 -#: src/strings.ts:1526 +#: src/strings.ts:1528 msgid "Editor" msgstr "Editor" -#: src/strings.ts:2582 +#: src/strings.ts:2584 msgid "Education plan" msgstr "Education plan" -#: src/strings.ts:1481 +#: src/strings.ts:1483 msgid "Email" msgstr "Email" -#: src/strings.ts:2431 +#: src/strings.ts:2433 msgid "Email copied" msgstr "Email copied" @@ -2440,11 +2446,11 @@ msgstr "Email is required" msgid "Email not confirmed" msgstr "Email not confirmed" -#: src/strings.ts:1553 +#: src/strings.ts:1555 msgid "Email or password incorrect" msgstr "Email or password incorrect" -#: src/strings.ts:1260 +#: src/strings.ts:1262 msgid "Email support" msgstr "Email support" @@ -2452,15 +2458,15 @@ msgstr "Email support" msgid "Email updated to {email}" msgstr "Email updated to {email}" -#: src/strings.ts:2341 +#: src/strings.ts:2343 msgid "Embed" msgstr "Embed" -#: src/strings.ts:2321 +#: src/strings.ts:2323 msgid "Embed properties" msgstr "Embed properties" -#: src/strings.ts:2317 +#: src/strings.ts:2319 msgid "Embed settings" msgstr "Embed settings" @@ -2472,23 +2478,23 @@ msgstr "Enable" msgid "Enable (Recommended)" msgstr "Enable (Recommended)" -#: src/strings.ts:1185 +#: src/strings.ts:1187 msgid "Enable app lock" msgstr "Enable app lock" -#: src/strings.ts:2012 +#: src/strings.ts:2014 msgid "Enable editor margins" msgstr "Enable editor margins" -#: src/strings.ts:2465 +#: src/strings.ts:2467 msgid "Enable ligatures for common symbols like β†’, ←, etc" msgstr "Enable ligatures for common symbols like β†’, ←, etc" -#: src/strings.ts:2381 +#: src/strings.ts:2383 msgid "Enable regex" msgstr "Enable regex" -#: src/strings.ts:2127 +#: src/strings.ts:2129 msgid "Enable spell checker" msgstr "Enable spell checker" @@ -2496,7 +2502,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:1234 +#: src/strings.ts:1236 msgid "Encrypt your backups for added security" msgstr "Encrypt your backups for added security" @@ -2504,11 +2510,11 @@ msgstr "Encrypt your backups for added security" msgid "Encrypted and synced" msgstr "Encrypted and synced" -#: src/strings.ts:2241 +#: src/strings.ts:2243 msgid "Encrypted backup" msgstr "Encrypted backup" -#: src/strings.ts:1657 +#: src/strings.ts:1659 msgid "Encrypted, private, secure." msgstr "Encrypted, private, secure." @@ -2516,7 +2522,7 @@ msgstr "Encrypted, private, secure." msgid "Encrypting attachment" msgstr "Encrypting attachment" -#: src/strings.ts:1843 +#: src/strings.ts:1845 msgid "Encryption key" msgstr "Encryption key" @@ -2536,7 +2542,7 @@ msgstr "Enter account password" msgid "Enter account password to proceed." msgstr "Enter account password to proceed." -#: src/strings.ts:1852 +#: src/strings.ts:1854 msgid "Enter account recovery key" msgstr "Enter account recovery key" @@ -2552,23 +2558,23 @@ msgstr "Enter app lock pin" msgid "Enter code from authenticator app" msgstr "Enter code from authenticator app" -#: src/strings.ts:1511 +#: src/strings.ts:1513 msgid "Enter email address" msgstr "Enter email address" -#: src/strings.ts:2369 +#: src/strings.ts:2371 msgid "Enter embed source URL" msgstr "Enter embed source URL" -#: src/strings.ts:1313 +#: src/strings.ts:1315 msgid "Enter full name" msgstr "Enter full name" -#: src/strings.ts:1701 +#: src/strings.ts:1703 msgid "Enter fullscreen" msgstr "Enter fullscreen" -#: src/strings.ts:1490 +#: src/strings.ts:1492 msgid "Enter notebook description" msgstr "Enter notebook description" @@ -2580,7 +2586,7 @@ msgstr "Enter notebook title" msgid "Enter password" msgstr "Enter password" -#: src/strings.ts:2088 +#: src/strings.ts:2090 msgid "Enter pin or password to enable app lock." msgstr "Enter pin or password to enable app lock." @@ -2600,7 +2606,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:2433 +#: src/strings.ts:2435 msgid "Enter the gift code to redeem your subscription." msgstr "Enter the gift code to redeem your subscription." @@ -2608,27 +2614,27 @@ 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:2618 +#: src/strings.ts:2620 msgid "Enter title" msgstr "Enter title" -#: src/strings.ts:1493 +#: src/strings.ts:1495 msgid "Enter verification code sent to your new email" msgstr "Enter verification code sent to your new email" -#: src/strings.ts:1492 +#: src/strings.ts:1494 msgid "Enter your new email" msgstr "Enter your new email" -#: src/strings.ts:2089 +#: src/strings.ts:2091 msgid "Enter your username" msgstr "Enter your username" -#: src/strings.ts:2425 +#: src/strings.ts:2427 msgid "Error" msgstr "Error" -#: src/strings.ts:1554 +#: src/strings.ts:1556 msgid "Error applying promo code" msgstr "Error applying promo code" @@ -2636,7 +2642,7 @@ msgstr "Error applying promo code" msgid "Error downloading file: {message}" msgstr "Error downloading file: {message}" -#: src/strings.ts:1514 +#: src/strings.ts:1516 msgid "Error getting codes" msgstr "Error getting codes" @@ -2656,59 +2662,59 @@ msgstr "Error sending 2FA code" msgid "Errors" msgstr "Errors" -#: src/strings.ts:1696 +#: src/strings.ts:1698 msgid "Errors in {count} attachments" msgstr "Errors in {count} attachments" -#: src/strings.ts:2470 +#: src/strings.ts:2472 msgid "Essential plan" msgstr "Essential plan" -#: src/strings.ts:1628 +#: src/strings.ts:1630 msgid "Events server" msgstr "Events server" -#: src/strings.ts:2411 +#: src/strings.ts:2413 msgid "Every Notebook can have notes and sub notebooks." msgstr "Every Notebook can have notes and sub notebooks." -#: src/strings.ts:2413 +#: src/strings.ts:2415 msgid "Everything related to my job in one place." msgstr "Everything related to my job in one place." -#: src/strings.ts:2422 +#: src/strings.ts:2424 msgid "Everything related to my school in one place." msgstr "Everything related to my school in one place." -#: src/strings.ts:2439 +#: src/strings.ts:2441 msgid "Execute" msgstr "Execute" -#: src/strings.ts:2438 +#: src/strings.ts:2440 msgid "Execute a command..." msgstr "Execute a command..." -#: src/strings.ts:2013 +#: src/strings.ts:2015 msgid "Exit fullscreen" msgstr "Exit fullscreen" -#: src/strings.ts:2373 +#: src/strings.ts:2375 msgid "Expand" msgstr "Expand" -#: src/strings.ts:2466 +#: src/strings.ts:2468 msgid "Expand sidebar" msgstr "Expand sidebar" -#: src/strings.ts:2072 +#: src/strings.ts:2074 msgid "Experience the next level of private note taking\"" msgstr "Experience the next level of private note taking\"" -#: src/strings.ts:2632 +#: src/strings.ts:2634 msgid "Expiry date" msgstr "Expiry date" -#: src/strings.ts:2539 +#: src/strings.ts:2541 msgid "Explore all plans" msgstr "Explore all plans" @@ -2720,24 +2726,24 @@ msgstr "Export" msgid "Export again" msgstr "Export again" -#: src/strings.ts:1237 +#: src/strings.ts:1239 msgid "Export all notes" msgstr "Export all notes" -#: src/strings.ts:1239 +#: src/strings.ts:1241 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" #. placeholder {0}: format ? " " + format : "" -#: src/strings.ts:2035 +#: src/strings.ts:2037 msgid "Export as{0}" msgstr "Export as{0}" -#: src/strings.ts:2633 +#: src/strings.ts:2635 msgid "Export CSV" msgstr "Export CSV" -#: src/strings.ts:1385 +#: src/strings.ts:1387 msgid "Export notes as PDF, Markdown and HTML with Notesnook Pro" msgstr "Export notes as PDF, Markdown and HTML with Notesnook Pro" @@ -2745,31 +2751,31 @@ msgstr "Export notes as PDF, Markdown and HTML with Notesnook Pro" msgid "Exporting \"{title}\"" msgstr "Exporting \"{title}\"" -#: src/strings.ts:1618 +#: src/strings.ts:1620 msgid "Extracting files..." msgstr "Extracting files..." -#: src/strings.ts:1807 +#: src/strings.ts:1809 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:1259 +#: src/strings.ts:1261 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:2403 +#: src/strings.ts:2405 msgid "Failed" msgstr "Failed" -#: src/strings.ts:1936 +#: src/strings.ts:1938 msgid "Failed to copy note" msgstr "Failed to copy note" -#: src/strings.ts:1560 +#: src/strings.ts:1562 msgid "Failed to decrypt backup" msgstr "Failed to decrypt backup" -#: src/strings.ts:2002 +#: src/strings.ts:2004 msgid "Failed to delete" msgstr "Failed to delete" @@ -2781,7 +2787,7 @@ msgstr "Failed to delete account" msgid "Failed to download file" msgstr "Failed to download file" -#: src/strings.ts:1998 +#: src/strings.ts:2000 msgid "Failed to install theme." msgstr "Failed to install theme." @@ -2793,7 +2799,7 @@ msgstr "Failed to open" msgid "Failed to publish note" msgstr "Failed to publish note" -#: src/strings.ts:2003 +#: src/strings.ts:2005 msgid "Failed to register task" msgstr "Failed to register task" @@ -2805,7 +2811,7 @@ msgstr "Failed to resolve download url" msgid "Failed to send recovery email" msgstr "Failed to send recovery email" -#: src/strings.ts:1401 +#: src/strings.ts:1403 msgid "Failed to send verification email" msgstr "Failed to send verification email" @@ -2813,11 +2819,11 @@ msgstr "Failed to send verification email" msgid "Failed to subscribe" msgstr "Failed to subscribe" -#: src/strings.ts:2203 +#: src/strings.ts:2205 msgid "Failed to take backup" msgstr "Failed to take backup" -#: src/strings.ts:2205 +#: src/strings.ts:2207 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?" @@ -2833,28 +2839,28 @@ msgstr "Failed to zip files" msgid "Fallback method for 2FA enabled" msgstr "Fallback method for 2FA enabled" -#: src/strings.ts:2549 +#: src/strings.ts:2551 msgid "FAQs" msgstr "FAQs" -#: src/strings.ts:2032 +#: src/strings.ts:2034 msgid "Favorite" msgstr "Favorite" #: src/strings.ts:321 -#: src/strings.ts:1521 +#: src/strings.ts:1523 msgid "Favorites" msgstr "Favorites" -#: src/strings.ts:2547 +#: src/strings.ts:2549 msgid "Featured on" msgstr "Featured on" -#: src/strings.ts:2415 +#: src/strings.ts:2417 msgid "February 2022 Week 2" msgstr "February 2022 Week 2" -#: src/strings.ts:2416 +#: src/strings.ts:2418 msgid "February 2022 Week 3" msgstr "February 2022 Week 3" @@ -2886,75 +2892,75 @@ msgstr "File size should be less than {sizeInMB}" msgid "File too big" msgstr "File too big" -#: src/strings.ts:1478 +#: src/strings.ts:1480 msgid "Filter attachments by filename, type or hash" msgstr "Filter attachments by filename, type or hash" -#: src/strings.ts:1833 +#: src/strings.ts:1835 msgid "Filter languages" msgstr "Filter languages" -#: src/strings.ts:2604 +#: src/strings.ts:2606 msgid "Finish your purchase in the browser." msgstr "Finish your purchase in the browser." -#: src/strings.ts:1669 +#: src/strings.ts:1671 msgid "Fix it" msgstr "Fix it" -#: src/strings.ts:2015 +#: src/strings.ts:2017 msgid "Focus mode" msgstr "Focus mode" -#: src/strings.ts:2163 +#: src/strings.ts:2165 msgid "Follow" msgstr "Follow" -#: src/strings.ts:1275 +#: src/strings.ts:1277 msgid "Follow us on Mastodon" msgstr "Follow us on Mastodon" -#: src/strings.ts:1277 +#: src/strings.ts:1279 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:1278 +#: src/strings.ts:1280 msgid "Follow us on X" msgstr "Follow us on X" -#: src/strings.ts:1279 +#: src/strings.ts:1281 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:2276 +#: src/strings.ts:2278 msgid "Font family" msgstr "Font family" -#: src/strings.ts:2463 +#: src/strings.ts:2465 msgid "Font ligatures" msgstr "Font ligatures" -#: src/strings.ts:2277 +#: src/strings.ts:2279 msgid "Font size" msgstr "Font size" -#: src/strings.ts:2521 +#: src/strings.ts:2523 msgid "For a monthly subscription, you can get a refund within 7 days of purchase. For a yearly subscription, we offer a full refund within 14 days of purchase. For a 5 year subscription, you can request a refund within 30 days of purchase." msgstr "For a monthly subscription, you can get a refund within 7 days of purchase. For a yearly subscription, we offer a full refund within 14 days of purchase. For a 5 year subscription, you can request a refund within 30 days of purchase." -#: src/strings.ts:1686 +#: src/strings.ts:1688 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:1767 +#: src/strings.ts:1769 msgid "for help regarding how to use the Notesnook Importer." msgstr "for help regarding how to use the Notesnook Importer." -#: src/strings.ts:2530 +#: src/strings.ts:2532 msgid "for locking your notes as soon as app enters background" msgstr "for locking your notes as soon as app enters background" -#: src/strings.ts:2195 +#: src/strings.ts:2197 msgid "Force logout from all your other logged in devices." msgstr "Force logout from all your other logged in devices." @@ -2966,7 +2972,7 @@ msgstr "Force pull changes" msgid "Force push changes" msgstr "Force push changes" -#: src/strings.ts:2212 +#: src/strings.ts:2214 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" @@ -2988,11 +2994,11 @@ msgstr "" msgid "Forgot password?" msgstr "Forgot password?" -#: src/strings.ts:2564 +#: src/strings.ts:2566 msgid "Free {duration} day trial, cancel any time" msgstr "Free {duration} day trial, cancel any time" -#: src/strings.ts:2468 +#: src/strings.ts:2470 msgid "Free plan" msgstr "Free plan" @@ -3004,55 +3010,55 @@ msgstr "Fri" msgid "Friday" msgstr "Friday" -#: src/strings.ts:2371 +#: src/strings.ts:2373 msgid "From code" msgstr "From code" -#: src/strings.ts:2368 +#: src/strings.ts:2370 msgid "From URL" msgstr "From URL" -#: src/strings.ts:1999 +#: src/strings.ts:2001 msgid "Full name updated" msgstr "Full name updated" -#: src/strings.ts:2206 +#: src/strings.ts:2208 msgid "Full offline mode" msgstr "Full offline mode" -#: src/strings.ts:2323 +#: src/strings.ts:2325 msgid "Full screen" msgstr "Full screen" -#: src/strings.ts:2092 +#: src/strings.ts:2094 msgid "General" msgstr "General" -#: src/strings.ts:1268 +#: src/strings.ts:1270 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:1292 +#: src/strings.ts:1294 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:2157 +#: src/strings.ts:2159 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:2159 +#: src/strings.ts:2161 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:1382 +#: src/strings.ts:1384 msgid "Get Notesnook Pro" msgstr "Get Notesnook Pro" -#: src/strings.ts:1367 +#: src/strings.ts:1369 msgid "Get Notesnook Pro to enable automatic backups" msgstr "Get Notesnook Pro to enable automatic backups" -#: src/strings.ts:2407 +#: src/strings.ts:2409 msgid "Get Priority support" msgstr "Get Priority support" @@ -3064,11 +3070,11 @@ msgstr "Get Pro" msgid "Get started" msgstr "Get started" -#: src/strings.ts:2527 +#: src/strings.ts:2529 msgid "Get this and so much more:" msgstr "Get this and so much more:" -#: src/strings.ts:1885 +#: src/strings.ts:1887 msgid "Getting encryption key..." msgstr "Getting encryption key..." @@ -3080,55 +3086,55 @@ msgstr "Getting information" msgid "Getting recovery codes" msgstr "Getting recovery codes" -#: src/strings.ts:2162 +#: src/strings.ts:2164 msgid "GNU GENERAL PUBLIC LICENSE Version 3" msgstr "GNU GENERAL PUBLIC LICENSE Version 3" -#: src/strings.ts:2605 +#: src/strings.ts:2607 msgid "Go back" msgstr "Go back" -#: src/strings.ts:2446 +#: src/strings.ts:2448 msgid "Go back in tab" msgstr "Go back in tab" -#: src/strings.ts:2225 +#: src/strings.ts:2227 msgid "Go back to notebooks" msgstr "Go back to notebooks" -#: src/strings.ts:2226 +#: src/strings.ts:2228 msgid "Go back to tags" msgstr "Go back to tags" -#: src/strings.ts:2445 +#: src/strings.ts:2447 msgid "Go forward in tab" msgstr "Go forward in tab" -#: src/strings.ts:1813 +#: src/strings.ts:1815 msgid "Go to" msgstr "Go to" -#: src/strings.ts:1814 +#: src/strings.ts:1816 msgid "Go to #{tag}" msgstr "Go to #{tag}" -#: src/strings.ts:1697 +#: src/strings.ts:1699 msgid "Go to next page" msgstr "Go to next page" -#: src/strings.ts:1698 +#: src/strings.ts:1700 msgid "Go to previous page" msgstr "Go to previous page" -#: src/strings.ts:1304 +#: src/strings.ts:1306 msgid "Go to web app" msgstr "Go to web app" -#: src/strings.ts:2538 +#: src/strings.ts:2540 msgid "Google will remind you 2 days before your trial ends." msgstr "Google will remind you 2 days before your trial ends." -#: src/strings.ts:2565 +#: src/strings.ts:2567 msgid "Google will remind you before your trial ends" msgstr "Google will remind you before your trial ends" @@ -3140,7 +3146,7 @@ msgstr "Got it" msgid "GROUP" msgstr "GROUP" -#: src/strings.ts:1887 +#: src/strings.ts:1889 msgid "Group added successfully" msgstr "Group added successfully" @@ -3152,27 +3158,27 @@ msgstr "Group by" msgid "Hash copied" msgstr "Hash copied" -#: src/strings.ts:2209 +#: src/strings.ts:2211 msgid "Having problems with sync?" msgstr "Having problems with sync?" -#: src/strings.ts:2553 +#: src/strings.ts:2555 msgid "hdImages" msgstr "hdImages" -#: src/strings.ts:2349 +#: src/strings.ts:2351 msgid "Heading {level}" msgstr "Heading {level}" -#: src/strings.ts:2278 +#: src/strings.ts:2280 msgid "Headings" msgstr "Headings" -#: src/strings.ts:2384 +#: src/strings.ts:2386 msgid "Height" msgstr "Height" -#: src/strings.ts:1256 +#: src/strings.ts:1258 msgid "Help and support" msgstr "Help and support" @@ -3180,19 +3186,19 @@ msgstr "Help and support" msgid "Help improve Notesnook by sending completely anonymized" msgstr "Help improve Notesnook by sending completely anonymized" -#: src/strings.ts:1375 +#: src/strings.ts:1377 msgid "Hide" msgstr "Hide" -#: src/strings.ts:1182 +#: src/strings.ts:1184 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:2168 +#: src/strings.ts:2170 msgid "Hide note title" msgstr "Hide note title" -#: src/strings.ts:2281 +#: src/strings.ts:2283 msgid "Highlight" msgstr "Highlight" @@ -3200,7 +3206,7 @@ msgstr "Highlight" msgid "History" msgstr "History" -#: src/strings.ts:1527 +#: src/strings.ts:1529 msgid "Home" msgstr "Home" @@ -3208,19 +3214,19 @@ msgstr "Home" msgid "Homepage" msgstr "Homepage" -#: src/strings.ts:1317 +#: src/strings.ts:1319 msgid "Homepage changed to {name}" msgstr "Homepage changed to {name}" -#: src/strings.ts:2330 +#: src/strings.ts:2332 msgid "Horizontal rule" msgstr "Horizontal rule" -#: src/strings.ts:1798 +#: src/strings.ts:1800 msgid "How do you want to recover your account?" msgstr "How do you want to recover your account?" -#: src/strings.ts:1668 +#: src/strings.ts:1670 msgid "How to fix it?" msgstr "How to fix it?" @@ -3228,7 +3234,7 @@ msgstr "How to fix it?" msgid "hr" msgstr "hr" -#: src/strings.ts:2498 +#: src/strings.ts:2500 msgid "I already have an account" msgstr "I already have an account" @@ -3252,15 +3258,15 @@ msgstr "I don't have recovery codes" msgid "I have a recovery code" msgstr "I have a recovery code" -#: src/strings.ts:1886 +#: src/strings.ts:1888 msgid "I have saved my key" msgstr "I have saved my key" -#: src/strings.ts:2424 +#: src/strings.ts:2426 msgid "I love cooking and collecting recipes." msgstr "I love cooking and collecting recipes." -#: src/strings.ts:2210 +#: src/strings.ts:2212 msgid "I understand" msgstr "I understand" @@ -3276,19 +3282,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:2113 +#: src/strings.ts:2115 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:2116 +#: src/strings.ts:2118 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:1724 +#: src/strings.ts:1726 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:1394 +#: src/strings.ts:1396 msgid "" "If you didn't get an email from us or the confirmation link isn't\n" " working," @@ -3296,11 +3302,11 @@ msgstr "" "If you didn't get an email from us or the confirmation link isn't\n" " working," -#: src/strings.ts:1804 +#: src/strings.ts:1806 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:2077 +#: src/strings.ts:2079 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." @@ -3308,7 +3314,7 @@ 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:2335 +#: src/strings.ts:2337 msgid "Image" msgstr "Image" @@ -3316,11 +3322,11 @@ msgstr "Image" msgid "Image Compression" msgstr "Image Compression" -#: src/strings.ts:2311 +#: src/strings.ts:2313 msgid "Image properties" msgstr "Image properties" -#: src/strings.ts:2307 +#: src/strings.ts:2309 msgid "Image settings" msgstr "Image settings" @@ -3336,23 +3342,23 @@ 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:1582 +#: src/strings.ts:1584 msgid "Immediately" msgstr "Immediately" -#: src/strings.ts:2140 +#: src/strings.ts:2142 msgid "Import & export" msgstr "Import & export" -#: src/strings.ts:1751 +#: src/strings.ts:1753 msgid "Import completed" msgstr "Import completed" -#: src/strings.ts:2634 +#: src/strings.ts:2636 msgid "Import CSV" msgstr "Import CSV" -#: src/strings.ts:1766 +#: src/strings.ts:1768 msgid "import guide" msgstr "import guide" @@ -3360,7 +3366,7 @@ msgstr "import guide" msgid "Incoming" msgstr "Incoming" -#: src/strings.ts:1837 +#: src/strings.ts:1839 msgid "Incoming note" msgstr "Incoming note" @@ -3368,59 +3374,59 @@ msgstr "Incoming note" msgid "Incorrect {type}" msgstr "Incorrect {type}" -#: src/strings.ts:2393 +#: src/strings.ts:2395 msgid "Increase {title}" msgstr "Increase {title}" -#: src/strings.ts:2235 +#: src/strings.ts:2237 msgid "Insert" msgstr "Insert" -#: src/strings.ts:2390 +#: src/strings.ts:2392 msgid "Insert a {rows}x{columns} table" msgstr "Insert a {rows}x{columns} table" -#: src/strings.ts:2340 +#: src/strings.ts:2342 msgid "Insert a table" msgstr "Insert a table" -#: src/strings.ts:2342 +#: src/strings.ts:2344 msgid "Insert an embed" msgstr "Insert an embed" -#: src/strings.ts:2336 +#: src/strings.ts:2338 msgid "Insert an image" msgstr "Insert an image" -#: src/strings.ts:2288 +#: src/strings.ts:2290 msgid "Insert column left" msgstr "Insert column left" -#: src/strings.ts:2289 +#: src/strings.ts:2291 msgid "Insert column right" msgstr "Insert column right" -#: src/strings.ts:2233 +#: src/strings.ts:2235 msgid "Insert link" msgstr "Insert link" -#: src/strings.ts:2295 +#: src/strings.ts:2297 msgid "Insert row above" msgstr "Insert row above" -#: src/strings.ts:2296 +#: src/strings.ts:2298 msgid "Insert row below" msgstr "Insert row below" -#: src/strings.ts:1684 +#: src/strings.ts:1686 msgid "Install Notesnook" msgstr "Install Notesnook" -#: src/strings.ts:2148 +#: src/strings.ts:2150 msgid "Install update" msgstr "Install update" -#: src/strings.ts:1719 +#: src/strings.ts:1721 msgid "installs" msgstr "installs" @@ -3428,11 +3434,11 @@ msgstr "installs" msgid "Invalid {type}" msgstr "Invalid {type}" -#: src/strings.ts:1991 +#: src/strings.ts:1993 msgid "Invalid CORS proxy url" msgstr "Invalid CORS proxy url" -#: src/strings.ts:1482 +#: src/strings.ts:1484 msgid "Invalid email" msgstr "Invalid email" @@ -3445,7 +3451,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:1590 +#: src/strings.ts:1592 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:" @@ -3453,7 +3459,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:2257 +#: src/strings.ts:2259 msgid "Italic" msgstr "Italic" @@ -3466,7 +3472,7 @@ msgid "Item" msgstr "Item" #: src/strings.ts:311 -#: src/strings.ts:1703 +#: src/strings.ts:1705 msgid "items" msgstr "items" @@ -3474,7 +3480,7 @@ msgstr "items" msgid "Items" msgstr "Items" -#: src/strings.ts:2160 +#: src/strings.ts:2162 msgid "Join community" msgstr "Join community" @@ -3482,27 +3488,27 @@ msgstr "Join community" msgid "join our community on Discord." msgstr "join our community on Discord." -#: src/strings.ts:1280 +#: src/strings.ts:1282 msgid "Join our Discord server" msgstr "Join our Discord server" -#: src/strings.ts:1282 +#: src/strings.ts:1284 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:1272 +#: src/strings.ts:1274 msgid "Join our Telegram group" msgstr "Join our Telegram group" -#: src/strings.ts:1274 +#: src/strings.ts:1276 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:2068 +#: src/strings.ts:2070 msgid "Join the cause" msgstr "Join the cause" -#: src/strings.ts:2026 +#: src/strings.ts:2028 msgid "Jump to group" msgstr "Jump to group" @@ -3510,19 +3516,19 @@ msgstr "Jump to group" msgid "Keep" msgstr "Keep" -#: src/strings.ts:2021 +#: src/strings.ts:2023 msgid "Keep open" msgstr "Keep open" -#: src/strings.ts:1359 +#: src/strings.ts:1361 msgid "Keep your data safe" msgstr "Keep your data safe" -#: src/strings.ts:2128 +#: src/strings.ts:2130 msgid "Languages" msgstr "Languages" -#: src/strings.ts:2230 +#: src/strings.ts:2232 msgid "Last edited at" msgstr "Last edited at" @@ -3554,7 +3560,7 @@ msgstr "Learn more about Notesnook Monograph" msgid "Least relevant first" msgstr "Least relevant first" -#: src/strings.ts:1562 +#: src/strings.ts:1564 msgid "Legal" msgstr "Legal" @@ -3562,15 +3568,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:2161 +#: src/strings.ts:2163 msgid "License" msgstr "License" -#: src/strings.ts:1720 +#: src/strings.ts:1722 msgid "Licensed under {license}" msgstr "Licensed under {license}" -#: src/strings.ts:2326 +#: src/strings.ts:2328 msgid "Lift list item" msgstr "Lift list item" @@ -3578,11 +3584,11 @@ msgstr "Lift list item" msgid "Light" msgstr "Light" -#: src/strings.ts:2356 +#: src/strings.ts:2358 msgid "Line {line}, Column {column}" msgstr "Line {line}, Column {column}" -#: src/strings.ts:2616 +#: src/strings.ts:2618 msgid "Line height" msgstr "Line height" @@ -3590,7 +3596,7 @@ msgstr "Line height" msgid "Line spacing changed" msgstr "Line spacing changed" -#: src/strings.ts:2261 +#: src/strings.ts:2263 msgid "Link" msgstr "Link" @@ -3602,15 +3608,15 @@ msgstr "Link copied" msgid "Link notebooks" msgstr "Link notebooks" -#: src/strings.ts:2475 +#: src/strings.ts:2477 msgid "Link notes" msgstr "Link notes" -#: src/strings.ts:2266 +#: src/strings.ts:2268 msgid "Link settings" msgstr "Link settings" -#: src/strings.ts:2386 +#: src/strings.ts:2388 msgid "Link text" msgstr "Link text" @@ -3630,7 +3636,7 @@ msgstr "Link to notebook" msgid "Linked notes" msgstr "Linked notes" -#: src/strings.ts:1596 +#: src/strings.ts:1598 msgid "Linking to a specific block is not available for locked notes." msgstr "Linking to a specific block is not available for locked notes." @@ -3642,7 +3648,7 @@ msgstr "List of" msgid "Load from file" msgstr "Load from file" -#: src/strings.ts:1695 +#: src/strings.ts:1697 msgid "Loading" msgstr "Loading" @@ -3651,7 +3657,7 @@ msgstr "Loading" msgid "Loading {0}, please wait..." msgstr "Loading {0}, please wait..." -#: src/strings.ts:1664 +#: src/strings.ts:1666 msgid "Loading editor. Please wait..." msgstr "Loading editor. Please wait..." @@ -3663,7 +3669,7 @@ msgstr "Loading subscription details" msgid "Loading themes..." msgstr "Loading themes..." -#: src/strings.ts:1327 +#: src/strings.ts:1329 msgid "Loading trash" msgstr "Loading trash" @@ -3703,7 +3709,7 @@ msgstr "Lock" msgid "Lock note" msgstr "Lock note" -#: src/strings.ts:1184 +#: src/strings.ts:1186 msgid "Lock the app with a password or pin" msgstr "Lock the app with a password or pin" @@ -3715,7 +3721,7 @@ msgstr "Locked notes cannot be pinned" msgid "Locked notes cannot be published" msgstr "Locked notes cannot be published" -#: src/strings.ts:2193 +#: src/strings.ts:2195 msgid "Log out from all other devices" msgstr "Log out from all other devices" @@ -3731,7 +3737,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:1782 +#: src/strings.ts:1784 msgid "Logging you in" msgstr "Logging you in" @@ -3751,11 +3757,11 @@ msgstr "Login required" msgid "Login successful" msgstr "Login successful" -#: src/strings.ts:1362 +#: src/strings.ts:1364 msgid "Login to encrypt and sync notes" msgstr "Login to encrypt and sync notes" -#: src/strings.ts:2609 +#: src/strings.ts:2611 msgid "Login to upload attachments. [Read more](https://help.notesnook.com/faqs/login-to-upload-attachments)" msgstr "Login to upload attachments. [Read more](https://help.notesnook.com/faqs/login-to-upload-attachments)" @@ -3775,11 +3781,11 @@ msgstr "Logout and clear data" msgid "Logout from this device" msgstr "Logout from this device" -#: src/strings.ts:1412 +#: src/strings.ts:1414 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:2361 +#: src/strings.ts:2363 msgid "Make task list readonly" msgstr "Make task list readonly" @@ -3807,11 +3813,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:1211 +#: src/strings.ts:1213 msgid "Manage your backups and restore data" msgstr "Manage your backups and restore data" -#: src/strings.ts:1245 +#: src/strings.ts:1247 msgid "Manage your reminders" msgstr "Manage your reminders" @@ -3819,7 +3825,7 @@ msgstr "Manage your reminders" msgid "Manage your sync settings here" msgstr "Manage your sync settings here" -#: src/strings.ts:1440 +#: src/strings.ts:1442 msgid "Mark important notes by adding them to favorites." msgstr "Mark important notes by adding them to favorites." @@ -3831,39 +3837,39 @@ msgstr "Markdown shortcuts" msgid "Marketing emails" msgstr "Marketing emails" -#: src/strings.ts:2374 +#: src/strings.ts:2376 msgid "Match case" msgstr "Match case" -#: src/strings.ts:2375 +#: src/strings.ts:2377 msgid "Match whole word" msgstr "Match whole word" -#: src/strings.ts:2283 +#: src/strings.ts:2285 msgid "Math (inline)" msgstr "Math (inline)" -#: src/strings.ts:2333 +#: src/strings.ts:2335 msgid "Math & formulas" msgstr "Math & formulas" -#: src/strings.ts:2040 +#: src/strings.ts:2042 msgid "Maximize" msgstr "Maximize" -#: src/strings.ts:2070 +#: src/strings.ts:2072 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:2417 +#: src/strings.ts:2419 msgid "Meetings" msgstr "Meetings" -#: src/strings.ts:1779 +#: src/strings.ts:1781 msgid "Member since {date}" msgstr "Member since {date}" -#: src/strings.ts:2294 +#: src/strings.ts:2296 msgid "Merge cells" msgstr "Merge cells" @@ -3881,15 +3887,15 @@ msgstr "Migration failed" msgid "min" msgstr "min" -#: src/strings.ts:2009 +#: src/strings.ts:2011 msgid "Minimal" msgstr "Minimal" -#: src/strings.ts:2039 +#: src/strings.ts:2041 msgid "Minimize" msgstr "Minimize" -#: src/strings.ts:2117 +#: src/strings.ts:2119 msgid "Minimize to system tray" msgstr "Minimize to system tray" @@ -3905,7 +3911,7 @@ msgstr "Mon" msgid "Monday" msgstr "Monday" -#: src/strings.ts:1631 +#: src/strings.ts:1633 msgid "Monograph server" msgstr "Monograph server" @@ -3915,19 +3921,19 @@ msgstr "Monograph URL copied" #: src/strings.ts:322 #: src/strings.ts:939 -#: src/strings.ts:1529 +#: src/strings.ts:1531 msgid "Monographs" msgstr "Monographs" -#: src/strings.ts:1422 +#: src/strings.ts:1424 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:1417 +#: src/strings.ts:1419 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:1840 +#: src/strings.ts:1842 msgid "month" msgstr "month" @@ -3936,11 +3942,11 @@ msgid "Month" msgstr "Month" #: src/strings.ts:169 -#: src/strings.ts:1570 +#: src/strings.ts:1572 msgid "Monthly" msgstr "Monthly" -#: src/strings.ts:2313 +#: src/strings.ts:2315 msgid "More" msgstr "More" @@ -3952,15 +3958,15 @@ msgstr "Most relevant first" msgid "Move" msgstr "Move" -#: src/strings.ts:2362 +#: src/strings.ts:2364 msgid "Move all checked tasks to bottom" msgstr "Move all checked tasks to bottom" -#: src/strings.ts:2290 +#: src/strings.ts:2292 msgid "Move column left" msgstr "Move column left" -#: src/strings.ts:2291 +#: src/strings.ts:2293 msgid "Move column right" msgstr "Move column right" @@ -3972,11 +3978,11 @@ msgstr "Move notebook" msgid "Move notes" msgstr "Move notes" -#: src/strings.ts:2298 +#: src/strings.ts:2300 msgid "Move row down" msgstr "Move row down" -#: src/strings.ts:2297 +#: src/strings.ts:2299 msgid "Move row up" msgstr "Move row up" @@ -4000,11 +4006,11 @@ msgstr "Multi-layer encryption to most important notes" msgid "Name" msgstr "Name" -#: src/strings.ts:1688 +#: src/strings.ts:1690 msgid "Native high-performance encryption" msgstr "Native high-performance encryption" -#: src/strings.ts:2442 +#: src/strings.ts:2444 msgid "Navigate" msgstr "Navigate" @@ -4012,7 +4018,7 @@ msgstr "Navigate" msgid "Never" msgstr "Never" -#: src/strings.ts:1342 +#: src/strings.ts:1344 msgid "Never ask again" msgstr "Never ask again" @@ -4032,7 +4038,7 @@ msgstr "New - old" msgid "New color" msgstr "New color" -#: src/strings.ts:1846 +#: src/strings.ts:1848 msgid "New Email" msgstr "New Email" @@ -4048,11 +4054,11 @@ msgstr "New note" msgid "New notebook" msgstr "New notebook" -#: src/strings.ts:1480 +#: src/strings.ts:1482 msgid "New password" msgstr "New password" -#: src/strings.ts:1486 +#: src/strings.ts:1488 msgid "New pin" msgstr "New pin" @@ -4064,11 +4070,11 @@ msgstr "New reminder" msgid "New tab" msgstr "New tab" -#: src/strings.ts:2448 +#: src/strings.ts:2450 msgid "New tag" msgstr "New tag" -#: src/strings.ts:1368 +#: src/strings.ts:1370 msgid "New update available" msgstr "New update available" @@ -4076,7 +4082,7 @@ msgstr "New update available" msgid "New version" msgstr "New version" -#: src/strings.ts:2024 +#: src/strings.ts:2026 msgid "Newest - oldest" msgstr "Newest - oldest" @@ -4088,11 +4094,11 @@ msgstr "Newly created notes will be uncategorized" msgid "Next" msgstr "Next" -#: src/strings.ts:2378 +#: src/strings.ts:2380 msgid "Next match" msgstr "Next match" -#: src/strings.ts:2443 +#: src/strings.ts:2445 msgid "Next tab" msgstr "Next tab" @@ -4120,7 +4126,7 @@ msgstr "No blocks linked" msgid "No color selected" msgstr "No color selected" -#: src/strings.ts:1231 +#: src/strings.ts:1233 msgid "No directory selected" msgstr "No directory selected" @@ -4128,11 +4134,11 @@ msgstr "No directory selected" msgid "No downloads in progress." msgstr "No downloads in progress." -#: src/strings.ts:1984 +#: src/strings.ts:1986 msgid "No encryption key found" msgstr "No encryption key found" -#: src/strings.ts:1665 +#: src/strings.ts:1667 msgid "No headings found" msgstr "No headings found" @@ -4148,7 +4154,7 @@ msgstr "No links found" msgid "No note history available for this device." msgstr "No note history available for this device." -#: src/strings.ts:2492 +#: src/strings.ts:2494 msgid "No notebooks selected to move" msgstr "No notebooks selected to move" @@ -4156,7 +4162,7 @@ msgstr "No notebooks selected to move" msgid "No one can view this {type} except you." msgstr "No one can view this {type} except you." -#: src/strings.ts:2612 +#: src/strings.ts:2614 msgid "No password" msgstr "No password" @@ -4164,7 +4170,7 @@ msgstr "No password" msgid "No references found of this note" msgstr "No references found of this note" -#: src/strings.ts:1516 +#: src/strings.ts:1518 msgid "No results found" msgstr "No results found" @@ -4172,7 +4178,7 @@ msgstr "No results found" msgid "No results found for \"{query}\"" msgstr "No results found for \"{query}\"" -#: src/strings.ts:1516 +#: src/strings.ts:1518 msgid "No results found for {query}" msgstr "No results found for {query}" @@ -4188,7 +4194,7 @@ msgstr "No updates available" msgid "None" msgstr "None" -#: src/strings.ts:2014 +#: src/strings.ts:2016 msgid "Normal mode" msgstr "Normal mode" @@ -4209,7 +4215,7 @@ msgstr "Note" msgid "Note copied to clipboard" msgstr "Note copied to clipboard" -#: src/strings.ts:1949 +#: src/strings.ts:1951 msgid "Note does not exist" msgstr "Note does not exist" @@ -4225,7 +4231,7 @@ msgstr "Note locked" msgid "Note restored from history" msgstr "Note restored from history" -#: src/strings.ts:1585 +#: src/strings.ts:1587 msgid "Note title" msgstr "Note title" @@ -4237,7 +4243,7 @@ msgstr "Note unlocked" msgid "Note version history is local only." msgstr "Note version history is local only." -#: src/strings.ts:1224 +#: src/strings.ts:1226 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." @@ -4246,11 +4252,11 @@ msgid "notebook" msgstr "notebook" #: src/strings.ts:296 -#: src/strings.ts:1520 +#: src/strings.ts:1522 msgid "Notebook" msgstr "Notebook" -#: src/strings.ts:2478 +#: src/strings.ts:2480 msgid "Notebook added" msgstr "Notebook added" @@ -4260,15 +4266,15 @@ msgstr "notebooks" #: src/strings.ts:258 #: src/strings.ts:316 -#: src/strings.ts:1519 +#: src/strings.ts:1521 msgid "Notebooks" msgstr "Notebooks" -#: src/strings.ts:1794 +#: src/strings.ts:1796 msgid "NOTEBOOKS" msgstr "NOTEBOOKS" -#: src/strings.ts:2240 +#: src/strings.ts:2242 msgid "Notebooks are the best way to organize your notes." msgstr "Notebooks are the best way to organize your notes." @@ -4277,7 +4283,7 @@ msgid "notes" msgstr "notes" #: src/strings.ts:315 -#: src/strings.ts:1518 +#: src/strings.ts:1520 msgid "Notes" msgstr "Notes" @@ -4285,27 +4291,27 @@ msgstr "Notes" msgid "Notes exported as {path} successfully" msgstr "Notes exported as {path} successfully" -#: src/strings.ts:1750 +#: src/strings.ts:1752 msgid "notes imported" msgstr "notes imported" -#: src/strings.ts:2542 +#: src/strings.ts:2544 msgid "Notesnook" msgstr "Notesnook" -#: src/strings.ts:2597 +#: src/strings.ts:2599 msgid "Notesnook Circle" msgstr "Notesnook Circle" -#: src/strings.ts:2599 +#: src/strings.ts:2601 msgid "Notesnook Circle brings together trusted partners who share our commitment to privacy, transparency, and user freedom." msgstr "Notesnook Circle brings together trusted partners who share our commitment to privacy, transparency, and user freedom." -#: src/strings.ts:2067 +#: src/strings.ts:2069 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:2142 +#: src/strings.ts:2144 msgid "Notesnook Importer" msgstr "Notesnook Importer" @@ -4313,7 +4319,7 @@ msgstr "Notesnook Importer" msgid "Notesnook Pro" msgstr "Notesnook Pro" -#: src/strings.ts:2174 +#: src/strings.ts:2176 msgid "" "Notesnook uses the following DNS providers:\n" "\n" @@ -4337,23 +4343,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:2137 +#: src/strings.ts:2139 msgid "Notifications" msgstr "Notifications" -#: src/strings.ts:1377 +#: src/strings.ts:1379 msgid "Notifications disabled" msgstr "Notifications disabled" -#: src/strings.ts:2274 +#: src/strings.ts:2276 msgid "Numbered list" msgstr "Numbered list" -#: src/strings.ts:1718 +#: src/strings.ts:1720 msgid "of" msgstr "of" -#: src/strings.ts:1602 +#: src/strings.ts:1604 msgid "Off" msgstr "Off" @@ -4361,7 +4367,7 @@ msgstr "Off" msgid "Offline" msgstr "Offline" -#: src/strings.ts:2227 +#: src/strings.ts:2229 msgid "Okay" msgstr "Okay" @@ -4369,15 +4375,15 @@ msgstr "Okay" msgid "Old - new" msgstr "Old - new" -#: src/strings.ts:1479 +#: src/strings.ts:1481 msgid "Old password" msgstr "Old password" -#: src/strings.ts:1835 +#: src/strings.ts:1837 msgid "Older version" msgstr "Older version" -#: src/strings.ts:2023 +#: src/strings.ts:2025 msgid "Oldest - newest" msgstr "Oldest - newest" @@ -4385,11 +4391,11 @@ 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:2560 +#: src/strings.ts:2562 msgid "One time purchase, no auto-renewal" msgstr "One time purchase, no auto-renewal" -#: src/strings.ts:1771 +#: src/strings.ts:1773 msgid "Only .zip files are supported." msgstr "Only .zip files are supported." @@ -4405,11 +4411,11 @@ msgstr "Open file location" msgid "Open in browser" msgstr "Open in browser" -#: src/strings.ts:1306 +#: src/strings.ts:1308 msgid "Open in browser to manage subscription" msgstr "Open in browser to manage subscription" -#: src/strings.ts:2324 +#: src/strings.ts:2326 msgid "Open in new tab" msgstr "Open in new tab" @@ -4417,27 +4423,27 @@ msgstr "Open in new tab" msgid "Open issue" msgstr "Open issue" -#: src/strings.ts:2264 +#: src/strings.ts:2266 msgid "Open link" msgstr "Open link" -#: src/strings.ts:1863 +#: src/strings.ts:1865 msgid "Open note" msgstr "Open note" -#: src/strings.ts:1380 +#: src/strings.ts:1382 msgid "Open settings" msgstr "Open settings" -#: src/strings.ts:2325 +#: src/strings.ts:2327 msgid "Open source" msgstr "Open source" -#: src/strings.ts:1288 +#: src/strings.ts:1290 msgid "Open source libraries used in Notesnook" msgstr "Open source libraries used in Notesnook" -#: src/strings.ts:1287 +#: src/strings.ts:1289 msgid "Open source licenses" msgstr "Open source licenses" @@ -4449,7 +4455,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:1857 +#: src/strings.ts:1859 msgid "Optional" msgstr "Optional" @@ -4457,11 +4463,11 @@ msgstr "Optional" msgid "or email us at" msgstr "or email us at" -#: src/strings.ts:2022 +#: src/strings.ts:2024 msgid "Order by" msgstr "Order by" -#: src/strings.ts:2220 +#: src/strings.ts:2222 msgid "Order ID" msgstr "Order ID" @@ -4470,23 +4476,23 @@ msgstr "Order ID" msgid "Orphaned" msgstr "Orphaned" -#: src/strings.ts:2145 +#: src/strings.ts:2147 msgid "Other" msgstr "Other" -#: src/strings.ts:2345 +#: src/strings.ts:2347 msgid "Outline list" msgstr "Outline list" -#: src/strings.ts:2348 +#: src/strings.ts:2350 msgid "Paragraph" msgstr "Paragraph" -#: src/strings.ts:2491 +#: src/strings.ts:2493 msgid "Paragraphs" msgstr "Paragraphs" -#: src/strings.ts:2101 +#: src/strings.ts:2103 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." @@ -4494,7 +4500,7 @@ msgstr "Partial backups contain all your data except attachments. They are creat msgid "Partially refunded" msgstr "Partially refunded" -#: src/strings.ts:2402 +#: src/strings.ts:2404 msgid "Passed" msgstr "Passed" @@ -4530,35 +4536,35 @@ msgstr "Password protection" msgid "Password updated" msgstr "Password updated" -#: src/strings.ts:2081 +#: src/strings.ts:2083 msgid "Password/pin" msgstr "Password/pin" -#: src/strings.ts:2248 +#: src/strings.ts:2250 msgid "Paste" msgstr "Paste" -#: src/strings.ts:2249 +#: src/strings.ts:2251 msgid "Paste and match style" msgstr "Paste and match style" -#: src/strings.ts:2370 +#: src/strings.ts:2372 msgid "Paste embed code here. Only iframes are supported." msgstr "Paste embed code here. Only iframes are supported." -#: src/strings.ts:2385 +#: src/strings.ts:2387 msgid "Paste image URL here" msgstr "Paste image URL here" -#: src/strings.ts:2250 +#: src/strings.ts:2252 msgid "Paste without formatting" msgstr "Paste without formatting" -#: src/strings.ts:2561 +#: src/strings.ts:2563 msgid "Pay once and use for 5 years" msgstr "Pay once and use for 5 years" -#: src/strings.ts:2199 +#: src/strings.ts:2201 msgid "Payment method" msgstr "Payment method" @@ -4566,11 +4572,11 @@ msgstr "Payment method" msgid "PDF is password protected" msgstr "PDF is password protected" -#: src/strings.ts:1729 +#: src/strings.ts:1731 msgid "phone number" msgstr "phone number" -#: src/strings.ts:1848 +#: src/strings.ts:1850 msgid "Phone number" msgstr "Phone number" @@ -4582,7 +4588,7 @@ msgstr "Phone number not entered" msgid "Pin" msgstr "Pin" -#: src/strings.ts:1690 +#: src/strings.ts:1692 msgid "Pin notes in notifications drawer" msgstr "Pin notes in notifications drawer" @@ -4594,15 +4600,15 @@ msgstr "Pin notification" msgid "Pinned" msgstr "Pinned" -#: src/strings.ts:2579 +#: src/strings.ts:2581 msgid "Plan limits" msgstr "Plan limits" -#: src/strings.ts:2542 +#: src/strings.ts:2544 msgid "Plans" msgstr "Plans" -#: src/strings.ts:1364 +#: src/strings.ts:1366 msgid "Please confirm your email to sync notes" msgstr "Please confirm your email to sync notes" @@ -4611,7 +4617,7 @@ msgid "Please confirm your identity by entering a recovery code." msgstr "Please confirm your identity by entering a recovery code." #: src/strings.ts:981 -#: src/strings.ts:2232 +#: src/strings.ts:2234 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." @@ -4624,35 +4630,35 @@ 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:1909 +#: src/strings.ts:1911 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:2007 +#: src/strings.ts:2009 msgid "Please enable automatic backups to avoid losing important data." msgstr "Please enable automatic backups to avoid losing important data." -#: src/strings.ts:1512 +#: src/strings.ts:1514 msgid "Please enter a valid email address" msgstr "Please enter a valid email address" -#: src/strings.ts:1954 +#: src/strings.ts:1956 msgid "Please enter a valid hex color (e.g. #ffffff)" msgstr "Please enter a valid hex color (e.g. #ffffff)" -#: src/strings.ts:1513 +#: src/strings.ts:1515 msgid "Please enter a valid phone number with country code" msgstr "Please enter a valid phone number with country code" -#: src/strings.ts:1635 +#: src/strings.ts:1637 msgid "Please enter a valid URL" msgstr "Please enter a valid URL" -#: src/strings.ts:1620 +#: src/strings.ts:1622 msgid "Please enter password of this backup file" msgstr "Please enter password of this backup file" -#: src/strings.ts:2243 +#: src/strings.ts:2245 msgid "Please enter the password to decrypt and restore this backup." msgstr "Please enter the password to decrypt and restore this backup." @@ -4660,11 +4666,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:1865 +#: src/strings.ts:1867 msgid "Please enter the password to unlock this note" msgstr "Please enter the password to unlock this note" -#: src/strings.ts:1862 +#: src/strings.ts:1864 msgid "Please enter the password to view this version" msgstr "Please enter the password to view this version" @@ -4680,7 +4686,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:1933 +#: src/strings.ts:1935 msgid "Please enter your vault password to continue" msgstr "Please enter your vault password to continue" @@ -4688,7 +4694,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:1556 +#: src/strings.ts:1558 msgid "Please grant notifications permission to add new reminders." msgstr "Please grant notifications permission to add new reminders." @@ -4700,27 +4706,27 @@ 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:1765 +#: src/strings.ts:1767 msgid "Please refer to the" msgstr "Please refer to the" -#: src/strings.ts:1557 +#: src/strings.ts:1559 msgid "Please select the day to repeat the reminder on" msgstr "Please select the day to repeat the reminder on" -#: src/strings.ts:1396 +#: src/strings.ts:1398 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:2391 +#: src/strings.ts:2393 msgid "Please set a table size" msgstr "Please set a table size" -#: src/strings.ts:1558 +#: src/strings.ts:1560 msgid "Please set title of the reminder" msgstr "Please set title of the reminder" -#: src/strings.ts:1987 +#: src/strings.ts:1989 msgid "Please try again" msgstr "Please try again" @@ -4736,8 +4742,8 @@ msgstr "Please wait" msgid "Please wait before requesting a new code" msgstr "Please wait before requesting a new code" -#: src/strings.ts:1399 -#: src/strings.ts:1551 +#: src/strings.ts:1401 +#: src/strings.ts:1553 msgid "Please wait before requesting another email" msgstr "Please wait before requesting another email" @@ -4753,7 +4759,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:1894 +#: src/strings.ts:1896 msgid "Please wait while we finalize your account." msgstr "Please wait while we finalize your account." @@ -4765,15 +4771,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:1915 +#: src/strings.ts:1917 msgid "Please wait while we reset your account password." msgstr "Please wait while we reset your account password." -#: src/strings.ts:1613 +#: src/strings.ts:1615 msgid "Please wait while we restore your backup..." msgstr "Please wait while we restore your backup..." -#: src/strings.ts:1897 +#: src/strings.ts:1899 msgid "Please wait while we send you recovery instructions" msgstr "Please wait while we send you recovery instructions" @@ -4785,12 +4791,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:1783 -#: src/strings.ts:1890 +#: src/strings.ts:1785 +#: src/strings.ts:1892 msgid "Please wait while you are authenticated." msgstr "Please wait while you are authenticated." -#: src/strings.ts:1902 +#: src/strings.ts:1904 msgid "Please wait while your data is downloaded & decrypted." msgstr "Please wait while your data is downloaded & decrypted." @@ -4798,7 +4804,7 @@ msgstr "Please wait while your data is downloaded & decrypted." msgid "Preparing note for share" msgstr "Preparing note for share" -#: src/strings.ts:1615 +#: src/strings.ts:1617 msgid "Preparing to restore backup file..." msgstr "Preparing to restore backup file..." @@ -4806,19 +4812,19 @@ msgstr "Preparing to restore backup file..." msgid "PRESETS" msgstr "PRESETS" -#: src/strings.ts:2119 +#: src/strings.ts:2121 msgid "Pressing \"β€”\" will hide the app in your system tray." msgstr "Pressing \"β€”\" will hide the app in your system tray." -#: src/strings.ts:2122 +#: src/strings.ts:2124 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:2170 +#: src/strings.ts:2172 msgid "Prevent note title from appearing in tab/window title." msgstr "Prevent note title from appearing in tab/window title." -#: src/strings.ts:2312 +#: src/strings.ts:2314 msgid "Preview attachment" msgstr "Preview attachment" @@ -4826,19 +4832,19 @@ msgstr "Preview attachment" msgid "Preview not available, content is encrypted." msgstr "Preview not available, content is encrypted." -#: src/strings.ts:2379 +#: src/strings.ts:2381 msgid "Previous match" msgstr "Previous match" -#: src/strings.ts:2444 +#: src/strings.ts:2446 msgid "Previous tab" msgstr "Previous tab" -#: src/strings.ts:2034 +#: src/strings.ts:2036 msgid "Print" msgstr "Print" -#: src/strings.ts:2144 +#: src/strings.ts:2146 msgid "Privacy" msgstr "Privacy" @@ -4846,7 +4852,7 @@ msgstr "Privacy" msgid "Privacy & security" msgstr "Privacy & security" -#: src/strings.ts:1655 +#: src/strings.ts:1657 msgid "Privacy comes first." msgstr "Privacy comes first." @@ -4854,15 +4860,15 @@ msgstr "Privacy comes first." msgid "Privacy for everyone" msgstr "Privacy for everyone" -#: src/strings.ts:1180 +#: src/strings.ts:1182 msgid "Privacy mode" msgstr "Privacy mode" -#: src/strings.ts:2574 +#: src/strings.ts:2576 msgid "privacy policy" msgstr "privacy policy" -#: src/strings.ts:1285 +#: src/strings.ts:1287 msgid "Privacy policy" msgstr "Privacy policy" @@ -4882,35 +4888,35 @@ msgstr "Private." msgid "privileged few" msgstr "privileged few" -#: src/strings.ts:1721 +#: src/strings.ts:1723 msgid "Pro" msgstr "Pro" -#: src/strings.ts:2469 +#: src/strings.ts:2471 msgid "Pro plan" msgstr "Pro plan" -#: src/strings.ts:2047 +#: src/strings.ts:2049 msgid "Processing {collection}..." msgstr "Processing {collection}..." -#: src/strings.ts:2046 +#: src/strings.ts:2048 msgid "Processing..." msgstr "Processing..." -#: src/strings.ts:1240 +#: src/strings.ts:1242 msgid "Productivity" msgstr "Productivity" -#: src/strings.ts:2133 +#: src/strings.ts:2135 msgid "Profile" msgstr "Profile" -#: src/strings.ts:1955 +#: src/strings.ts:1957 msgid "Profile updated" msgstr "Profile updated" -#: src/strings.ts:1866 +#: src/strings.ts:1868 msgid "Properties" msgstr "Properties" @@ -4918,7 +4924,7 @@ msgstr "Properties" msgid "Protect your notes" msgstr "Protect your notes" -#: src/strings.ts:2181 +#: src/strings.ts:2183 msgid "Proxy" msgstr "Proxy" @@ -4930,7 +4936,7 @@ msgstr "Publish" msgid "Publish note" msgstr "Publish note" -#: src/strings.ts:2613 +#: src/strings.ts:2615 msgid "Publish to the web" msgstr "Publish to the web" @@ -4954,39 +4960,39 @@ 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:2567 +#: src/strings.ts:2569 msgid "Purchase" msgstr "Purchase" -#: src/strings.ts:1371 +#: src/strings.ts:1373 msgid "Quick note" msgstr "Quick note" -#: src/strings.ts:1241 +#: src/strings.ts:1243 msgid "Quick note notification" msgstr "Quick note notification" -#: src/strings.ts:1692 +#: src/strings.ts:1694 msgid "Quick note widgets" msgstr "Quick note widgets" -#: src/strings.ts:2440 +#: src/strings.ts:2442 msgid "Quick open" msgstr "Quick open" -#: src/strings.ts:1243 +#: src/strings.ts:1245 msgid "Quickly create a note from the notification" msgstr "Quickly create a note from the notification" -#: src/strings.ts:2332 +#: src/strings.ts:2334 msgid "Quote" msgstr "Quote" -#: src/strings.ts:1357 +#: src/strings.ts:1359 msgid "Rate Notesnook on App Store" msgstr "Rate Notesnook on App Store" -#: src/strings.ts:1358 +#: src/strings.ts:1360 msgid "Rate Notesnook on Play Store" msgstr "Rate Notesnook on Play Store" @@ -5002,47 +5008,47 @@ msgstr "Read full release notes on Github" msgid "Read only" msgstr "Read only" -#: src/strings.ts:1265 +#: src/strings.ts:1267 msgid "Read the documentation to learn more about Notesnook" msgstr "Read the documentation to learn more about Notesnook" -#: src/strings.ts:1286 +#: src/strings.ts:1288 msgid "Read the privacy policy" msgstr "Read the privacy policy" -#: src/strings.ts:1284 +#: src/strings.ts:1286 msgid "Read the terms of service" msgstr "Read the terms of service" -#: src/strings.ts:1616 +#: src/strings.ts:1618 msgid "Reading backup file..." msgstr "Reading backup file..." -#: src/strings.ts:2544 +#: src/strings.ts:2546 msgid "Ready to take the next step on your private note taking journey?" msgstr "Ready to take the next step on your private note taking journey?" -#: src/strings.ts:2223 +#: src/strings.ts:2225 msgid "Receipt" msgstr "Receipt" -#: src/strings.ts:1611 +#: src/strings.ts:1613 msgid "RECENT BACKUPS" msgstr "RECENT BACKUPS" -#: src/strings.ts:2455 +#: src/strings.ts:2457 msgid "Recents" msgstr "Recents" -#: src/strings.ts:2398 +#: src/strings.ts:2400 msgid "Recheck all" msgstr "Recheck all" -#: src/strings.ts:2001 +#: src/strings.ts:2003 msgid "Rechecking failed" msgstr "Rechecking failed" -#: src/strings.ts:2423 +#: src/strings.ts:2425 msgid "Recipes" msgstr "Recipes" @@ -5050,7 +5056,7 @@ msgstr "Recipes" msgid "Recommended" msgstr "Recommended" -#: src/strings.ts:2546 +#: src/strings.ts:2548 msgid "Recommended by Privacy Guides" msgstr "Recommended by Privacy Guides" @@ -5086,23 +5092,23 @@ msgstr "Recovery key QR code saved" msgid "Recovery key text file saved" msgstr "Recovery key text file saved" -#: src/strings.ts:1916 +#: src/strings.ts:1918 msgid "Recovery successful!" msgstr "Recovery successful!" -#: src/strings.ts:2435 +#: src/strings.ts:2437 msgid "Redeem" msgstr "Redeem" -#: src/strings.ts:2596 +#: src/strings.ts:2598 msgid "Redeem code" msgstr "Redeem code" -#: src/strings.ts:2432 +#: src/strings.ts:2434 msgid "Redeem gift code" msgstr "Redeem gift code" -#: src/strings.ts:2434 +#: src/strings.ts:2436 msgid "Redeeming gift code" msgstr "Redeeming gift code" @@ -5122,7 +5128,7 @@ msgstr "References" msgid "Regenerate" msgstr "Regenerate" -#: src/strings.ts:2087 +#: src/strings.ts:2089 msgid "Register" msgstr "Register" @@ -5130,7 +5136,7 @@ msgstr "Register" msgid "Release notes" msgstr "Release notes" -#: src/strings.ts:2457 +#: src/strings.ts:2459 msgid "Release track" msgstr "Release track" @@ -5138,15 +5144,15 @@ msgstr "Release track" msgid "Relevance" msgstr "Relevance" -#: src/strings.ts:1670 +#: src/strings.ts:1672 msgid "Reload app" msgstr "Reload app" -#: src/strings.ts:1828 +#: src/strings.ts:1830 msgid "Relogin to your account" msgstr "Relogin to your account" -#: src/strings.ts:1796 +#: src/strings.ts:1798 msgid "Remembered your password?" msgstr "Remembered your password?" @@ -5158,7 +5164,7 @@ msgstr "Remind me" msgid "Remind me in" msgstr "Remind me in" -#: src/strings.ts:1506 +#: src/strings.ts:1508 msgid "Remind me of..." msgstr "Remind me of..." @@ -5170,11 +5176,11 @@ msgstr "reminder" msgid "Reminder" msgstr "Reminder" -#: src/strings.ts:1246 +#: src/strings.ts:1248 msgid "Reminder notifications" msgstr "Reminder notifications" -#: src/strings.ts:1559 +#: src/strings.ts:1561 msgid "Reminder time cannot be earlier than the current time." msgstr "Reminder time cannot be earlier than the current time." @@ -5183,16 +5189,16 @@ msgid "reminders" msgstr "reminders" #: src/strings.ts:318 -#: src/strings.ts:1244 -#: src/strings.ts:1522 +#: src/strings.ts:1246 +#: src/strings.ts:1524 msgid "Reminders" msgstr "Reminders" -#: src/strings.ts:1379 +#: src/strings.ts:1381 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:1953 +#: src/strings.ts:1955 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." @@ -5204,19 +5210,19 @@ msgstr "Remove" msgid "Remove all notes from the vault." msgstr "Remove all notes from the vault." -#: src/strings.ts:1202 +#: src/strings.ts:1204 msgid "Remove app lock password" msgstr "Remove app lock password" -#: src/strings.ts:1206 +#: src/strings.ts:1208 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:1201 +#: src/strings.ts:1203 msgid "Remove app lock pin" msgstr "Remove app lock pin" -#: src/strings.ts:1204 +#: src/strings.ts:1206 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." @@ -5224,7 +5230,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:2316 +#: src/strings.ts:2318 msgid "Remove attachment" msgstr "Remove attachment" @@ -5236,7 +5242,7 @@ msgstr "Remove from all" msgid "Remove from notebook" msgstr "Remove from notebook" -#: src/strings.ts:2456 +#: src/strings.ts:2458 msgid "Remove from recents" msgstr "Remove from recents" @@ -5244,7 +5250,7 @@ msgstr "Remove from recents" msgid "Remove full name" msgstr "Remove full name" -#: src/strings.ts:2263 +#: src/strings.ts:2265 msgid "Remove link" msgstr "Remove link" @@ -5276,19 +5282,19 @@ msgstr "Reorder" msgid "Repeats daily at {date}" msgstr "Repeats daily at {date}" -#: src/strings.ts:2376 +#: src/strings.ts:2378 msgid "Replace" msgstr "Replace" -#: src/strings.ts:2377 +#: src/strings.ts:2379 msgid "Replace all" msgstr "Replace all" -#: src/strings.ts:2164 +#: src/strings.ts:2166 msgid "Report" msgstr "Report" -#: src/strings.ts:1257 +#: src/strings.ts:1259 msgid "Report an issue" msgstr "Report an issue" @@ -5305,31 +5311,31 @@ msgstr "Resend code in ({seconds})" msgid "Resend code{0}" msgstr "Resend code{0}" -#: src/strings.ts:1402 +#: src/strings.ts:1404 msgid "Resend email" msgstr "Resend email" -#: src/strings.ts:1820 +#: src/strings.ts:1822 msgid "Reset" msgstr "Reset" -#: src/strings.ts:1912 +#: src/strings.ts:1914 msgid "Reset account password" msgstr "Reset account password" -#: src/strings.ts:2483 +#: src/strings.ts:2485 msgid "Reset homepage" msgstr "Reset homepage" -#: src/strings.ts:1821 +#: src/strings.ts:1823 msgid "Reset selection" msgstr "Reset selection" -#: src/strings.ts:1648 +#: src/strings.ts:1650 msgid "Reset server urls" msgstr "Reset server urls" -#: src/strings.ts:2030 +#: src/strings.ts:2032 msgid "Reset sidebar" msgstr "Reset sidebar" @@ -5341,23 +5347,23 @@ msgstr "Reset the toolbar to default settings" msgid "Reset toolbar" msgstr "Reset toolbar" -#: src/strings.ts:1914 +#: src/strings.ts:1916 msgid "Resetting account password ({progress})" msgstr "Resetting account password ({progress})" -#: src/strings.ts:1989 +#: src/strings.ts:1991 msgid "Restart now" msgstr "Restart now" -#: src/strings.ts:1647 +#: src/strings.ts:1649 msgid "Restart the app for changes to take effect." msgstr "Restart the app for changes to take effect." -#: src/strings.ts:1318 +#: src/strings.ts:1320 msgid "Restart the app to apply the changes" msgstr "Restart the app to apply the changes" -#: src/strings.ts:1593 +#: src/strings.ts:1595 msgid "Restart the app." msgstr "Restart the app." @@ -5365,11 +5371,11 @@ msgstr "Restart the app." msgid "Restore" msgstr "Restore" -#: src/strings.ts:1235 +#: src/strings.ts:1237 msgid "Restore backup" msgstr "Restore backup" -#: src/strings.ts:2405 +#: src/strings.ts:2407 msgid "Restore backup?" msgstr "Restore backup?" @@ -5377,15 +5383,15 @@ msgstr "Restore backup?" msgid "Restore failed" msgstr "Restore failed" -#: src/strings.ts:1610 +#: src/strings.ts:1612 msgid "Restore from files" msgstr "Restore from files" -#: src/strings.ts:1660 +#: src/strings.ts:1662 msgid "Restore this version" msgstr "Restore this version" -#: src/strings.ts:1236 +#: src/strings.ts:1238 msgid "Restore your data from a backup" msgstr "Restore your data from a backup" @@ -5401,7 +5407,7 @@ msgstr "Restoring" msgid "Restoring {collection}..." msgstr "Restoring {collection}..." -#: src/strings.ts:1612 +#: src/strings.ts:1614 msgid "Restoring backup..." msgstr "Restoring backup..." @@ -5417,7 +5423,7 @@ msgstr "Resubscribe to Pro" msgid "Reupload" msgstr "Reupload" -#: src/strings.ts:2020 +#: src/strings.ts:2022 msgid "Reveal in list" msgstr "Reveal in list" @@ -5425,7 +5431,7 @@ msgstr "Reveal in list" msgid "Revoke" msgstr "Revoke" -#: src/strings.ts:1179 +#: src/strings.ts:1181 msgid "Revoke biometric unlocking" msgstr "Revoke biometric unlocking" @@ -5433,23 +5439,23 @@ msgstr "Revoke biometric unlocking" msgid "Revoke vault fingerprint unlock" msgstr "Revoke vault fingerprint unlock" -#: src/strings.ts:1293 +#: src/strings.ts:1295 msgid "Roadmap" msgstr "Roadmap" -#: src/strings.ts:2048 +#: src/strings.ts:2050 msgid "Root" msgstr "Root" -#: src/strings.ts:2027 +#: src/strings.ts:2029 msgid "Rotate left" msgstr "Rotate left" -#: src/strings.ts:2028 +#: src/strings.ts:2030 msgid "Rotate right" msgstr "Rotate right" -#: src/strings.ts:2286 +#: src/strings.ts:2288 msgid "Row properties" msgstr "Row properties" @@ -5457,7 +5463,7 @@ msgstr "Row properties" msgid "Run file check" msgstr "Run file check" -#: src/strings.ts:2059 +#: src/strings.ts:2061 msgid "Safe & encrypted notes" msgstr "Safe & encrypted notes" @@ -5513,7 +5519,7 @@ msgstr "Save to file" msgid "Save to text file" msgstr "Save to text file" -#: src/strings.ts:1360 +#: src/strings.ts:1362 msgid "Save your account recovery key" msgstr "Save your account recovery key" @@ -5529,15 +5535,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:2395 +#: src/strings.ts:2397 msgid "Saved" msgstr "Saved" -#: src/strings.ts:2396 +#: src/strings.ts:2398 msgid "Saving" msgstr "Saving" -#: src/strings.ts:1588 +#: src/strings.ts:1590 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." @@ -5549,40 +5555,40 @@ msgstr "Saving zip file ({progress}%). Please wait..." msgid "Saving zip file. Please wait..." msgstr "Saving zip file. Please wait..." -#: src/strings.ts:1722 +#: src/strings.ts:1724 msgid "Scan the QR code with your authenticator app" msgstr "Scan the QR code with your authenticator app" -#: src/strings.ts:2421 +#: src/strings.ts:2423 msgid "School work" msgstr "School work" -#: src/strings.ts:2494 +#: src/strings.ts:2496 msgid "Scroll to bottom" msgstr "Scroll to bottom" -#: src/strings.ts:2493 +#: src/strings.ts:2495 msgid "Scroll to top" msgstr "Scroll to top" -#: src/strings.ts:1510 -#: src/strings.ts:1528 +#: src/strings.ts:1512 +#: src/strings.ts:1530 msgid "Search" msgstr "Search" -#: src/strings.ts:1505 +#: src/strings.ts:1507 msgid "Search a note" msgstr "Search a note" -#: src/strings.ts:1503 +#: src/strings.ts:1505 msgid "Search a note to link to" msgstr "Search a note to link to" -#: src/strings.ts:2437 +#: src/strings.ts:2439 msgid "Search for notes, notebooks, and tags..." msgstr "Search for notes, notebooks, and tags..." -#: src/strings.ts:1538 +#: src/strings.ts:1540 msgid "Search in {routeName}" msgstr "Search in {routeName}" @@ -5634,23 +5640,23 @@ msgstr "Search in Tags" msgid "Search in Trash" msgstr "Search in Trash" -#: src/strings.ts:2358 +#: src/strings.ts:2360 msgid "Search languages" msgstr "Search languages" -#: src/strings.ts:1491 +#: src/strings.ts:1493 msgid "Search notebooks" msgstr "Search notebooks" -#: src/strings.ts:1504 +#: src/strings.ts:1506 msgid "Search or add a tag" msgstr "Search or add a tag" -#: src/strings.ts:1834 +#: src/strings.ts:1836 msgid "Search themes" msgstr "Search themes" -#: src/strings.ts:1508 +#: src/strings.ts:1510 msgid "Searching for {query}..." msgstr "Searching for {query}..." @@ -5658,43 +5664,43 @@ msgstr "Searching for {query}..." msgid "sec" msgstr "sec" -#: src/strings.ts:2143 +#: src/strings.ts:2145 msgid "Security & privacy" msgstr "Security & privacy" -#: src/strings.ts:2083 +#: src/strings.ts:2085 msgid "Security key" msgstr "Security key" -#: src/strings.ts:1988 +#: src/strings.ts:1990 msgid "Security key successfully registered." msgstr "Security key successfully registered." -#: src/strings.ts:1294 +#: src/strings.ts:1296 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:1334 +#: src/strings.ts:1336 msgid "Select" msgstr "Select" -#: src/strings.ts:1609 +#: src/strings.ts:1611 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:2488 +#: src/strings.ts:2490 msgid "Select a notebook to move this notebook into, or unselect to move it to the root level." msgstr "Select a notebook to move this notebook into, or unselect to move it to the root level." -#: src/strings.ts:2098 +#: src/strings.ts:2100 msgid "Select a theme" msgstr "Select a theme" -#: src/strings.ts:1226 +#: src/strings.ts:1228 msgid "Select backup directory" msgstr "Select backup directory" -#: src/strings.ts:1855 +#: src/strings.ts:1857 msgid "Select backup file" msgstr "Select backup file" @@ -5710,15 +5716,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:1763 +#: src/strings.ts:1765 msgid "Select files to import" msgstr "Select files to import" -#: src/strings.ts:1606 +#: src/strings.ts:1608 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:1607 +#: src/strings.ts:1609 msgid "Select folder with backup files" msgstr "Select folder with backup files" @@ -5726,7 +5732,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:2353 +#: src/strings.ts:2355 msgid "Select language" msgstr "Select language" @@ -5742,7 +5748,7 @@ msgstr "Select notebooks" msgid "Select notebooks you want to add note(s) to." msgstr "Select notebooks you want to add note(s) to." -#: src/strings.ts:2476 +#: src/strings.ts:2478 msgid "Select notes to link to \"{title}\"" msgstr "Select notes to link to \"{title}\"" @@ -5750,11 +5756,11 @@ msgstr "Select notes to link to \"{title}\"" 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:1817 +#: src/strings.ts:1819 msgid "Select profile picture" msgstr "Select profile picture" -#: src/strings.ts:2482 +#: src/strings.ts:2484 msgid "Select the default sidebar tab" msgstr "Select the default sidebar tab" @@ -5762,11 +5768,11 @@ msgstr "Select the default sidebar tab" 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:2130 +#: src/strings.ts:2132 msgid "Select the languages the spell checker should check in." msgstr "Select the languages the spell checker should check in." -#: src/strings.ts:2458 +#: src/strings.ts:2460 msgid "Select the release track for Notesnook." msgstr "Select the release track for Notesnook." @@ -5778,7 +5784,7 @@ msgstr "SELECTED NOTE" msgid "Self destruct" msgstr "Self destruct" -#: src/strings.ts:2165 +#: src/strings.ts:2167 msgid "Send" msgstr "Send" @@ -5794,47 +5800,47 @@ msgstr "Send code via email" msgid "Send code via SMS" msgstr "Send code via SMS" -#: src/strings.ts:1859 +#: src/strings.ts:1861 msgid "Send recovery email" msgstr "Send recovery email" -#: src/strings.ts:1895 +#: src/strings.ts:1897 msgid "Sending recovery email" msgstr "Sending recovery email" -#: src/strings.ts:1646 +#: src/strings.ts:1648 msgid "Server url changed" msgstr "Server url changed" -#: src/strings.ts:1649 +#: src/strings.ts:1651 msgid "Server urls reset" msgstr "Server urls reset" -#: src/strings.ts:1627 +#: src/strings.ts:1629 msgid "Server used for login/sign up and authentication." msgstr "Server used for login/sign up and authentication." -#: src/strings.ts:1632 +#: src/strings.ts:1634 msgid "Server used to host your published notes." msgstr "Server used to host your published notes." -#: src/strings.ts:1630 +#: src/strings.ts:1632 msgid "Server used to receive important notifications & events." msgstr "Server used to receive important notifications & events." -#: src/strings.ts:1625 +#: src/strings.ts:1627 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:1638 +#: src/strings.ts:1640 msgid "Server with host {host} not found." msgstr "Server with host {host} not found." -#: src/strings.ts:2138 +#: src/strings.ts:2140 msgid "Servers" msgstr "Servers" -#: src/strings.ts:2139 +#: src/strings.ts:2141 msgid "Servers configuration" msgstr "Servers configuration" @@ -5842,7 +5848,7 @@ msgstr "Servers configuration" msgid "Session expired" msgstr "Session expired" -#: src/strings.ts:2191 +#: src/strings.ts:2193 msgid "Sessions" msgstr "Sessions" @@ -5858,7 +5864,7 @@ msgstr "Set as dark theme" msgid "Set as default" msgstr "Set as default" -#: src/strings.ts:2480 +#: src/strings.ts:2482 msgid "Set as homepage" msgstr "Set as homepage" @@ -5866,31 +5872,31 @@ msgstr "Set as homepage" msgid "Set as light theme" msgstr "Set as light theme" -#: src/strings.ts:1333 +#: src/strings.ts:1335 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:2630 +#: src/strings.ts:2632 msgid "Set expiry" msgstr "Set expiry" -#: src/strings.ts:1310 +#: src/strings.ts:1312 msgid "Set full name" msgstr "Set full name" -#: src/strings.ts:1252 +#: src/strings.ts:1254 msgid "Set snooze time in minutes" msgstr "Set snooze time in minutes" -#: src/strings.ts:1251 +#: src/strings.ts:1253 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:1223 +#: src/strings.ts:1225 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:1220 +#: src/strings.ts:1222 msgid "Set the interval to create a partial backup (without attachments) automatically." msgstr "Set the interval to create a partial backup (without attachments) automatically." @@ -5899,24 +5905,24 @@ msgid "Set your name" msgstr "Set your name" #: src/strings.ts:387 -#: src/strings.ts:1524 +#: src/strings.ts:1526 msgid "Settings" msgstr "Settings" -#: src/strings.ts:1199 -#: src/strings.ts:1200 +#: src/strings.ts:1201 +#: src/strings.ts:1202 msgid "Setup a new password for app lock" msgstr "Setup a new password for app lock" -#: src/strings.ts:1196 +#: src/strings.ts:1198 msgid "Setup a password to lock the app" msgstr "Setup a password to lock the app" -#: src/strings.ts:1194 +#: src/strings.ts:1196 msgid "Setup a pin to lock the app" msgstr "Setup a pin to lock the app" -#: src/strings.ts:2183 +#: src/strings.ts:2185 msgid "" "Setup an HTTP/HTTPS/SOCKS proxy.\n" "\n" @@ -5936,11 +5942,11 @@ msgstr "" "\n" "To remove the proxy, simply erase everything in the input." -#: src/strings.ts:1195 +#: src/strings.ts:1197 msgid "Setup app lock password" msgstr "Setup app lock password" -#: src/strings.ts:1193 +#: src/strings.ts:1195 msgid "Setup app lock pin" msgstr "Setup app lock pin" @@ -5964,11 +5970,11 @@ msgstr "Setup using SMS" msgid "Share" msgstr "Share" -#: src/strings.ts:1691 +#: src/strings.ts:1693 msgid "Share & append to notes from anywhere" msgstr "Share & append to notes from anywhere" -#: src/strings.ts:1341 +#: src/strings.ts:1343 msgid "Share backup" msgstr "Share backup" @@ -5976,7 +5982,7 @@ msgstr "Share backup" msgid "Share note" msgstr "Share note" -#: src/strings.ts:1787 +#: src/strings.ts:1789 msgid "Share Notesnook with friends!" msgstr "Share Notesnook with friends!" @@ -5992,7 +5998,7 @@ msgstr "shortcut" msgid "Shortcut" msgstr "Shortcut" -#: src/strings.ts:2000 +#: src/strings.ts:2002 msgid "Shortcut removed" msgstr "Shortcut removed" @@ -6020,11 +6026,11 @@ msgstr "Signup failed" msgid "Silent" msgstr "Silent" -#: src/strings.ts:2327 +#: src/strings.ts:2329 msgid "Sink list item" msgstr "Sink list item" -#: src/strings.ts:2041 +#: src/strings.ts:2043 msgid "Size" msgstr "Size" @@ -6032,7 +6038,7 @@ msgstr "Size" msgid "Skip" msgstr "Skip" -#: src/strings.ts:1829 +#: src/strings.ts:1831 msgid "Skip & go directly to the app" msgstr "Skip & go directly to the app" @@ -6040,19 +6046,19 @@ msgstr "Skip & go directly to the app" msgid "Skip introduction" msgstr "Skip introduction" -#: src/strings.ts:1604 +#: src/strings.ts:1606 msgid "Some exported notes are locked, Unlock to export them" msgstr "Some exported notes are locked, Unlock to export them" -#: src/strings.ts:1476 +#: src/strings.ts:1478 msgid "Some notes are published" msgstr "Some notes are published" -#: src/strings.ts:1666 +#: src/strings.ts:1668 msgid "Something went wrong" msgstr "Something went wrong" -#: src/strings.ts:2025 +#: src/strings.ts:2027 msgid "Sort" msgstr "Sort" @@ -6060,27 +6066,27 @@ msgstr "Sort" msgid "Sort by" msgstr "Sort by" -#: src/strings.ts:2149 +#: src/strings.ts:2151 msgid "Source code" msgstr "Source code" -#: src/strings.ts:2354 +#: src/strings.ts:2356 msgid "Spaces" msgstr "Spaces" -#: src/strings.ts:2589 +#: src/strings.ts:2591 msgid "Special Offer" msgstr "Special Offer" -#: src/strings.ts:2126 +#: src/strings.ts:2128 msgid "Spell check" msgstr "Spell check" -#: src/strings.ts:2293 +#: src/strings.ts:2295 msgid "Split cells" msgstr "Split cells" -#: src/strings.ts:2459 +#: src/strings.ts:2461 msgid "Stable" msgstr "Stable" @@ -6088,23 +6094,23 @@ msgstr "Stable" msgid "Start" msgstr "Start" -#: src/strings.ts:1830 +#: src/strings.ts:1832 msgid "Start account recovery" msgstr "Start account recovery" -#: src/strings.ts:1825 +#: src/strings.ts:1827 msgid "Start import" msgstr "Start import" -#: src/strings.ts:1822 +#: src/strings.ts:1824 msgid "Start importing now" msgstr "Start importing now" -#: src/strings.ts:2114 +#: src/strings.ts:2116 msgid "Start minimized" msgstr "Start minimized" -#: src/strings.ts:1757 +#: src/strings.ts:1759 msgid "Start over" msgstr "Start over" @@ -6116,31 +6122,31 @@ 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:1601 +#: src/strings.ts:1603 msgid "Start writing your note..." msgstr "Start writing your note..." -#: src/strings.ts:2222 +#: src/strings.ts:2224 msgid "Status" msgstr "Status" -#: src/strings.ts:2472 +#: src/strings.ts:2474 msgid "Storage" msgstr "Storage" -#: src/strings.ts:1548 +#: src/strings.ts:1550 msgid "Streaming not supported" msgstr "Streaming not supported" -#: src/strings.ts:2259 +#: src/strings.ts:2261 msgid "Strikethrough" msgstr "Strikethrough" -#: src/strings.ts:2224 +#: src/strings.ts:2226 msgid "Subgroup 1" msgstr "Subgroup 1" -#: src/strings.ts:1994 +#: src/strings.ts:1996 msgid "Subgroup added" msgstr "Subgroup added" @@ -6148,11 +6154,11 @@ msgstr "Subgroup added" msgid "Submit" msgstr "Submit" -#: src/strings.ts:2568 +#: src/strings.ts:2570 msgid "Subscribe" msgstr "Subscribe" -#: src/strings.ts:2569 +#: src/strings.ts:2571 msgid "Subscribe and start free trial" msgstr "Subscribe and start free trial" @@ -6168,7 +6174,7 @@ msgstr "Subscribed on Android" msgid "Subscribed on iOS" msgstr "Subscribed on iOS" -#: src/strings.ts:1305 +#: src/strings.ts:1307 msgid "Subscribed on web" msgstr "Subscribed on web" @@ -6180,7 +6186,7 @@ msgstr "Subscribed on Web" msgid "Subscribed using gift card" msgstr "Subscribed using gift card" -#: src/strings.ts:2270 +#: src/strings.ts:2272 msgid "Subscript" msgstr "Subscript" @@ -6204,15 +6210,15 @@ msgstr "Sun" msgid "Sunday" msgstr "Sunday" -#: src/strings.ts:2271 +#: src/strings.ts:2273 msgid "Superscript" msgstr "Superscript" -#: src/strings.ts:1469 +#: src/strings.ts:1471 msgid "Switch to search/replace mode" msgstr "Switch to search/replace mode" -#: src/strings.ts:2135 +#: src/strings.ts:2137 msgid "Sync" msgstr "Sync" @@ -6220,7 +6226,7 @@ msgstr "Sync" msgid "Sync failed" msgstr "Sync failed" -#: src/strings.ts:1363 +#: src/strings.ts:1365 msgid "Sync is disabled" msgstr "Sync is disabled" @@ -6232,7 +6238,7 @@ msgstr "Sync now" msgid "Sync off" msgstr "Sync off" -#: src/strings.ts:1623 +#: src/strings.ts:1625 msgid "Sync server" msgstr "Sync server" @@ -6256,11 +6262,11 @@ msgstr "Syncing" msgid "Syncing your data" msgstr "Syncing your data" -#: src/strings.ts:1702 +#: src/strings.ts:1704 msgid "Syncing your notes" msgstr "Syncing your notes" -#: src/strings.ts:2339 +#: src/strings.ts:2341 msgid "Table" msgstr "Table" @@ -6268,11 +6274,11 @@ msgstr "Table" msgid "Table of contents" msgstr "Table of contents" -#: src/strings.ts:2284 +#: src/strings.ts:2286 msgid "Table settings" msgstr "Table settings" -#: src/strings.ts:2533 +#: src/strings.ts:2535 msgid "tables, outlines, block level note linking" msgstr "tables, outlines, block level note linking" @@ -6293,31 +6299,31 @@ msgid "tags" msgstr "tags" #: src/strings.ts:317 -#: src/strings.ts:1525 +#: src/strings.ts:1527 msgid "Tags" msgstr "Tags" -#: src/strings.ts:1543 +#: src/strings.ts:1545 msgid "Take a backup before logging out" msgstr "Take a backup before logging out" -#: src/strings.ts:1215 +#: src/strings.ts:1217 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:1217 +#: src/strings.ts:1219 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:2338 +#: src/strings.ts:2340 msgid "Take a photo using camera" msgstr "Take a photo using camera" -#: src/strings.ts:1373 +#: src/strings.ts:1375 msgid "Take note" msgstr "Take note" -#: src/strings.ts:1656 +#: src/strings.ts:1658 msgid "Take notes privately." msgstr "Take notes privately." @@ -6325,23 +6331,23 @@ msgstr "Take notes privately." msgid "Taking too long? Reload editor" msgstr "Taking too long? Reload editor" -#: src/strings.ts:1457 +#: src/strings.ts:1459 msgid "Tap here to change sorting" msgstr "Tap here to change sorting" -#: src/strings.ts:1461 +#: src/strings.ts:1463 msgid "Tap here to jump to a section" msgstr "Tap here to jump to a section" -#: src/strings.ts:1369 +#: src/strings.ts:1371 msgid "Tap here to update to the latest version" msgstr "Tap here to update to the latest version" -#: src/strings.ts:1592 +#: src/strings.ts:1594 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:1372 +#: src/strings.ts:1374 msgid "Tap on \"Take note\" to add a note." msgstr "Tap on \"Take note\" to add a note." @@ -6361,7 +6367,7 @@ msgstr "Tap to deselect" msgid "Tap to stop reordering" msgstr "Tap to stop reordering" -#: src/strings.ts:1353 +#: src/strings.ts:1355 msgid "Tap to try again" msgstr "Tap to try again" @@ -6369,11 +6375,11 @@ 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:2344 +#: src/strings.ts:2346 msgid "Task list" msgstr "Task list" -#: src/strings.ts:2414 +#: src/strings.ts:2416 msgid "Tasks" msgstr "Tasks" @@ -6381,7 +6387,7 @@ msgstr "Tasks" msgid "Telemetry" msgstr "Telemetry" -#: src/strings.ts:1495 +#: src/strings.ts:1497 msgid "" "Tell us more about the issue you are facing.\n" "\n" @@ -6399,11 +6405,11 @@ msgstr "" "- Steps to reproduce the issue\n" "- Things you have tried etc." -#: src/strings.ts:1494 +#: src/strings.ts:1496 msgid "Tell us what happened" msgstr "Tell us what happened" -#: src/strings.ts:1283 +#: src/strings.ts:1285 msgid "Terms of service" msgstr "Terms of service" @@ -6411,39 +6417,39 @@ msgstr "Terms of service" msgid "Terms of Service " msgstr "Terms of Service " -#: src/strings.ts:2576 +#: src/strings.ts:2578 msgid "terms of use." msgstr "terms of use." -#: src/strings.ts:1622 +#: src/strings.ts:1624 msgid "Test connection" msgstr "Test connection" -#: src/strings.ts:1645 +#: src/strings.ts:1647 msgid "Test connection before changing server urls" msgstr "Test connection before changing server urls" -#: src/strings.ts:2282 +#: src/strings.ts:2284 msgid "Text color" msgstr "Text color" -#: src/strings.ts:2280 +#: src/strings.ts:2282 msgid "Text direction" msgstr "Text direction" -#: src/strings.ts:1786 +#: src/strings.ts:1788 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:2050 +#: src/strings.ts:2052 msgid "Thank you for reporting!" msgstr "Thank you for reporting!" -#: src/strings.ts:2550 +#: src/strings.ts:2552 msgid "Thank you for subscribing" msgstr "Thank you for subscribing" -#: src/strings.ts:2584 +#: src/strings.ts:2586 msgid "Thank you for the purchase" msgstr "Thank you for the purchase" @@ -6451,15 +6457,15 @@ msgstr "Thank you for the purchase" 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:2075 +#: src/strings.ts:2077 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:1643 +#: src/strings.ts:1645 msgid "The {title} at {url} is not compatible with this client." msgstr "The {title} at {url} is not compatible with this client." -#: src/strings.ts:2629 +#: src/strings.ts:2631 msgid "The incoming note could not be unlocked with the provided password. Enter the correct password for the incoming note" msgstr "The incoming note could not be unlocked with the provided password. Enter the correct password for the incoming note" @@ -6467,11 +6473,11 @@ msgstr "The incoming note could not be unlocked with the provided password. Ente msgid "The information above will be publically available at" msgstr "The information above will be publically available at" -#: src/strings.ts:2603 +#: src/strings.ts:2605 msgid "The Notesnook Circle is exclusive to subscribers. Please consider subscribing to gain access to Notesnook Circle and enjoy additional benefits." msgstr "The Notesnook Circle is exclusive to subscribers. Please consider subscribing to gain access to Notesnook Circle and enjoy additional benefits." -#: src/strings.ts:2082 +#: src/strings.ts:2084 msgid "The password/pin for unlocking the app." msgstr "The password/pin for unlocking the app." @@ -6483,15 +6489,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:1712 +#: src/strings.ts:1714 msgid "The reminder will start on {date} at {time}." msgstr "The reminder will start on {date} at {time}." -#: src/strings.ts:2085 +#: src/strings.ts:2087 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:1641 +#: src/strings.ts:1643 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}." @@ -6503,11 +6509,11 @@ msgstr "Themes" msgid "There are no blocks in this note." msgstr "There are no blocks in this note." -#: src/strings.ts:2237 +#: src/strings.ts:2239 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:1920 +#: src/strings.ts:1922 msgid "This action is IRREVERSIBLE." msgstr "This action is IRREVERSIBLE." @@ -6515,39 +6521,39 @@ msgstr "This action is IRREVERSIBLE." msgid "This device" msgstr "This device" -#: src/strings.ts:1683 +#: src/strings.ts:1685 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:1675 +#: src/strings.ts:1677 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:1679 +#: src/strings.ts:1681 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:1677 +#: src/strings.ts:1679 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:1673 +#: src/strings.ts:1675 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:1681 +#: src/strings.ts:1683 msgid "This error usually means the search index is corrupted." msgstr "This error usually means the search index is corrupted." -#: src/strings.ts:1934 +#: src/strings.ts:1936 msgid "This image cannot be previewed" msgstr "This image cannot be previewed" -#: src/strings.ts:2570 +#: src/strings.ts:2572 msgid "This is a one time purchase, no subscription." msgstr "This is a one time purchase, no subscription." -#: src/strings.ts:2045 +#: src/strings.ts:2047 msgid "This may take a while" msgstr "This may take a while" @@ -6556,11 +6562,11 @@ 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:2635 +#: src/strings.ts:2637 msgid "This note is empty" msgstr "This note is empty" -#: src/strings.ts:1594 +#: src/strings.ts:1596 msgid "This note is locked" msgstr "This note is locked" @@ -6580,11 +6586,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:2091 +#: src/strings.ts:2093 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:1303 +#: src/strings.ts:1305 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." @@ -6596,7 +6602,7 @@ msgstr "Thu" msgid "Thursday" msgstr "Thursday" -#: src/strings.ts:1842 +#: src/strings.ts:1844 msgid "Time" msgstr "Time" @@ -6617,31 +6623,31 @@ msgstr "Title" msgid "Title format" msgstr "Title format" -#: src/strings.ts:1188 +#: src/strings.ts:1190 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:1812 +#: src/strings.ts:1814 msgid "Toggle dark/light mode" msgstr "Toggle dark/light mode" -#: src/strings.ts:2462 +#: src/strings.ts:2464 msgid "Toggle focus mode" msgstr "Toggle focus mode" -#: src/strings.ts:2351 +#: src/strings.ts:2353 msgid "Toggle indentation mode" msgstr "Toggle indentation mode" -#: src/strings.ts:2380 +#: src/strings.ts:2382 msgid "Toggle replace" msgstr "Toggle replace" -#: src/strings.ts:2451 +#: src/strings.ts:2453 msgid "Toggle theme" msgstr "Toggle theme" -#: src/strings.ts:2132 +#: src/strings.ts:2134 msgid "Toolbar" msgstr "Toolbar" @@ -6649,36 +6655,36 @@ msgstr "Toolbar" msgid "Toolbar reset to default preset" msgstr "Toolbar reset to default preset" -#: src/strings.ts:1326 -#: src/strings.ts:1523 +#: src/strings.ts:1328 +#: src/strings.ts:1525 msgid "Trash" msgstr "Trash" -#: src/strings.ts:1325 +#: src/strings.ts:1327 msgid "Trash cleared successfully!" msgstr "Trash cleared successfully!" -#: src/strings.ts:1331 +#: src/strings.ts:1333 msgid "Trash gets automatically cleaned up after {days} days" msgstr "Trash gets automatically cleaned up after {days} days" -#: src/strings.ts:1329 +#: src/strings.ts:1331 msgid "Trash gets automatically cleaned up daily" msgstr "Trash gets automatically cleaned up daily" -#: src/strings.ts:2540 +#: src/strings.ts:2542 msgid "Try {plan} for free" msgstr "Try {plan} for free" -#: src/strings.ts:1465 +#: src/strings.ts:1467 msgid "Try compact mode to fit more items on screen" msgstr "Try compact mode to fit more items on screen" -#: src/strings.ts:1824 +#: src/strings.ts:1826 msgid "Try free for 14 days" msgstr "Try free for 14 days" -#: src/strings.ts:2526 +#: src/strings.ts:2528 msgid "Try it for free" msgstr "Try it for free" @@ -6718,27 +6724,27 @@ msgstr "Two-factor authentication" msgid "Two-factor authentication enabled" msgstr "Two-factor authentication enabled" -#: src/strings.ts:1502 +#: src/strings.ts:1504 msgid "Type # to search for headings" msgstr "Type # to search for headings" -#: src/strings.ts:1509 +#: src/strings.ts:1511 msgid "Type a keyword" msgstr "Type a keyword" -#: src/strings.ts:1549 +#: src/strings.ts:1551 msgid "Unable to resolve download url" msgstr "Unable to resolve download url" -#: src/strings.ts:1552 +#: src/strings.ts:1554 msgid "Unable to send 2FA code" msgstr "Unable to send 2FA code" -#: src/strings.ts:2486 +#: src/strings.ts:2488 msgid "Unarchive" msgstr "Unarchive" -#: src/strings.ts:2258 +#: src/strings.ts:2260 msgid "Underline" msgstr "Underline" @@ -6750,7 +6756,7 @@ msgstr "Undo" msgid "Unfavorite" msgstr "Unfavorite" -#: src/strings.ts:2580 +#: src/strings.ts:2582 msgid "Unlimited" msgstr "Unlimited" @@ -6766,11 +6772,11 @@ msgstr "Unlink notebook" msgid "Unlock" msgstr "Unlock" -#: src/strings.ts:2627 +#: src/strings.ts:2629 msgid "Unlock incoming note" msgstr "Unlock incoming note" -#: src/strings.ts:1383 +#: src/strings.ts:1385 msgid "Unlock more colors with Notesnook Pro" msgstr "Unlock more colors with Notesnook Pro" @@ -6783,11 +6789,11 @@ msgstr "Unlock note" msgid "Unlock note to delete it" msgstr "Unlock note to delete it" -#: src/strings.ts:1208 +#: src/strings.ts:1210 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:1932 +#: src/strings.ts:1934 msgid "Unlock vault" msgstr "Unlock vault" @@ -6795,7 +6801,7 @@ msgstr "Unlock vault" msgid "Unlock with biometrics" msgstr "Unlock with biometrics" -#: src/strings.ts:1827 +#: src/strings.ts:1829 msgid "Unlock with security key" msgstr "Unlock with security key" @@ -6803,11 +6809,11 @@ msgstr "Unlock with security key" msgid "Unlock your notes" msgstr "Unlock your notes" -#: src/strings.ts:1178 +#: src/strings.ts:1180 msgid "Unlock your vault with biometric authentication" msgstr "Unlock your vault with biometric authentication" -#: src/strings.ts:1710 +#: src/strings.ts:1712 msgid "Unlocking" msgstr "Unlocking" @@ -6823,20 +6829,20 @@ msgstr "Unpin notification" msgid "Unpublish" msgstr "Unpublish" -#: src/strings.ts:1477 +#: src/strings.ts:1479 msgid "Unpublish notes to delete them" msgstr "Unpublish notes to delete them" -#: src/strings.ts:2086 +#: src/strings.ts:2088 msgid "Unregister" msgstr "Unregister" -#: src/strings.ts:2631 +#: src/strings.ts:2633 msgid "Unset expiry" msgstr "Unset expiry" #: src/strings.ts:210 -#: src/strings.ts:2360 +#: src/strings.ts:2362 msgid "Untitled" msgstr "Untitled" @@ -6848,31 +6854,31 @@ msgstr "Update" msgid "Update available" msgstr "Update available" -#: src/strings.ts:1370 +#: src/strings.ts:1372 msgid "Update now" msgstr "Update now" -#: src/strings.ts:2500 +#: src/strings.ts:2502 msgid "Upgrade" msgstr "Upgrade" -#: src/strings.ts:1918 +#: src/strings.ts:1920 msgid "Upgrade now" msgstr "Upgrade now" -#: src/strings.ts:2499 +#: src/strings.ts:2501 msgid "Upgrade plan" msgstr "Upgrade plan" -#: src/strings.ts:2525 +#: src/strings.ts:2527 msgid "Upgrade plan to {plan} to use this feature." msgstr "Upgrade plan to {plan} to use this feature." -#: src/strings.ts:1939 +#: src/strings.ts:1941 msgid "Upgrade to Notesnook Pro to add colors." msgstr "Upgrade to Notesnook Pro to add colors." -#: src/strings.ts:1940 +#: src/strings.ts:1942 msgid "Upgrade to Notesnook Pro to create more tags." msgstr "Upgrade to Notesnook Pro to create more tags." @@ -6880,7 +6886,7 @@ msgstr "Upgrade to Notesnook Pro to create more tags." msgid "Upgrade to Pro" msgstr "Upgrade to Pro" -#: src/strings.ts:2595 +#: src/strings.ts:2597 msgid "Upgrade to redeem" msgstr "Upgrade to redeem" @@ -6888,12 +6894,12 @@ msgstr "Upgrade to redeem" msgid "Upload" msgstr "Upload" -#: src/strings.ts:2337 +#: src/strings.ts:2339 msgid "Upload from disk" msgstr "Upload from disk" #: src/strings.ts:511 -#: src/strings.ts:1651 +#: src/strings.ts:1653 msgid "Uploaded" msgstr "Uploaded" @@ -6914,11 +6920,11 @@ msgstr "Uploads" msgid "Urgent" msgstr "Urgent" -#: src/strings.ts:2387 +#: src/strings.ts:2389 msgid "URL" msgstr "URL" -#: src/strings.ts:1789 +#: src/strings.ts:1791 msgid "Use" msgstr "Use" @@ -6926,11 +6932,11 @@ msgstr "Use" msgid "Use {keyboardShortcut}+click to select multiple notebooks" msgstr "Use {keyboardShortcut}+click to select multiple notebooks" -#: src/strings.ts:1802 +#: src/strings.ts:1804 msgid "Use a backup file" msgstr "Use a backup file" -#: src/strings.ts:1900 +#: src/strings.ts:1902 msgid "Use a data recovery key to reset your account password." msgstr "Use a data recovery key to reset your account password." @@ -6938,7 +6944,7 @@ msgstr "Use a data recovery key to reset your account password." msgid "Use account password" msgstr "Use account password" -#: src/strings.ts:2532 +#: src/strings.ts:2534 msgid "Use advanced note taking features like" msgstr "Use advanced note taking features like" @@ -6946,7 +6952,7 @@ msgstr "Use advanced note taking features like" msgid "Use an authenticator app to generate 2FA codes." msgstr "Use an authenticator app to generate 2FA codes." -#: src/strings.ts:2172 +#: src/strings.ts:2174 msgid "Use custom DNS" msgstr "Use custom DNS" @@ -6954,7 +6960,7 @@ msgstr "Use custom DNS" msgid "Use dark mode for the app" msgstr "Use dark mode for the app" -#: src/strings.ts:1621 +#: src/strings.ts:1623 msgid "Use encryption key" msgstr "Use encryption key" @@ -6962,15 +6968,15 @@ msgstr "Use encryption key" msgid "Use markdown shortcuts in the editor" msgstr "Use markdown shortcuts in the editor" -#: src/strings.ts:2125 +#: src/strings.ts:2127 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:2123 +#: src/strings.ts:2125 msgid "Use native titlebar" msgstr "Use native titlebar" -#: src/strings.ts:1799 +#: src/strings.ts:1801 msgid "Use recovery key" msgstr "Use recovery key" @@ -7008,7 +7014,7 @@ msgstr "Use this if changes from other devices are not appearing on this device. msgid "Use this if changes made on this device are not appearing on other devices. This will overwrite the data on the server with the data from this device." msgstr "Use this if changes made on this device are not appearing on other devices. This will overwrite the data on the server with the data from this device." -#: src/strings.ts:2473 +#: src/strings.ts:2475 msgid "used" msgstr "used" @@ -7016,15 +7022,15 @@ msgstr "used" msgid "User verification failed" msgstr "User verification failed" -#: src/strings.ts:2254 +#: src/strings.ts:2256 msgid "Using {instance} (v{version})" msgstr "Using {instance} (v{version})" -#: src/strings.ts:2252 +#: src/strings.ts:2254 msgid "Using official Notesnook instance" msgstr "Using official Notesnook instance" -#: src/strings.ts:1709 +#: src/strings.ts:1711 msgid "v{version} available" msgstr "v{version} available" @@ -7032,7 +7038,7 @@ msgstr "v{version} available" msgid "Vault" msgstr "Vault" -#: src/strings.ts:1992 +#: src/strings.ts:1994 msgid "Vault cleared" msgstr "Vault cleared" @@ -7040,7 +7046,7 @@ msgstr "Vault cleared" msgid "Vault created" msgstr "Vault created" -#: src/strings.ts:1993 +#: src/strings.ts:1995 msgid "Vault deleted" msgstr "Vault deleted" @@ -7048,15 +7054,15 @@ msgstr "Vault deleted" msgid "Vault fingerprint unlock" msgstr "Vault fingerprint unlock" -#: src/strings.ts:1931 +#: src/strings.ts:1933 msgid "Vault locked" msgstr "Vault locked" -#: src/strings.ts:1930 +#: src/strings.ts:1932 msgid "Vault unlocked" msgstr "Vault unlocked" -#: src/strings.ts:1400 +#: src/strings.ts:1402 msgid "Verification email sent" msgstr "Verification email sent" @@ -7072,11 +7078,11 @@ msgstr "Verify subscription" msgid "Verify your subscription to Notesnook Pro" msgstr "Verify your subscription to Notesnook Pro" -#: src/strings.ts:1903 +#: src/strings.ts:1905 msgid "Verifying 2FA code" msgstr "Verifying 2FA code" -#: src/strings.ts:1889 +#: src/strings.ts:1891 msgid "Verifying your email" msgstr "Verifying your email" @@ -7096,11 +7102,11 @@ msgstr "Videos" msgid "View all linked notebooks" msgstr "View all linked notebooks" -#: src/strings.ts:1270 +#: src/strings.ts:1272 msgid "View and share debug logs" msgstr "View and share debug logs" -#: src/strings.ts:1747 +#: src/strings.ts:1749 msgid "View receipt" msgstr "View receipt" @@ -7108,7 +7114,7 @@ msgstr "View receipt" msgid "View recovery codes" msgstr "View recovery codes" -#: src/strings.ts:2152 +#: src/strings.ts:2154 msgid "View source code" msgstr "View source code" @@ -7116,7 +7122,7 @@ msgstr "View source code" msgid "View your recovery codes to recover your account in case you lose access to your two-factor authentication methods." msgstr "View your recovery codes to recover your account in case you lose access to your two-factor authentication methods." -#: src/strings.ts:2610 +#: src/strings.ts:2612 msgid "Views" msgstr "Views" @@ -7124,15 +7130,15 @@ msgstr "Views" msgid "Visit homepage" msgstr "Visit homepage" -#: src/strings.ts:1350 +#: src/strings.ts:1352 msgid "Wait 30 seconds to try again" msgstr "Wait 30 seconds to try again" -#: src/strings.ts:1652 +#: src/strings.ts:1654 msgid "Waiting for upload" msgstr "Waiting for upload" -#: src/strings.ts:1911 +#: src/strings.ts:1913 msgid "We are creating a backup of your data. Please wait..." msgstr "We are creating a backup of your data. Please wait..." @@ -7140,15 +7146,15 @@ 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:1390 +#: src/strings.ts:1392 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:2511 +#: src/strings.ts:2513 msgid "We require credit card details to fight abuse and to make it seamless for you to upgrade. Your credit card is NOT charged until your free trial ends and your subscription starts. You will be notified via email of the upcoming charge before your trial ends." msgstr "We require credit card details to fight abuse and to make it seamless for you to upgrade. Your credit card is NOT charged until your free trial ends and your subscription starts. You will be notified via email of the upcoming charge before your trial ends." -#: src/strings.ts:2167 +#: src/strings.ts:2169 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)." @@ -7156,19 +7162,19 @@ msgstr "We send you occasional promotional offers & product updates on your emai 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:1354 +#: src/strings.ts:1356 msgid "We would love to know what you think!" msgstr "We would love to know what you think!" -#: src/strings.ts:2552 +#: src/strings.ts:2554 msgid "We’re setting up your plan right now. We’ll notify you as soon as everything is ready." msgstr "We’re setting up your plan right now. We’ll notify you as soon as everything is ready." -#: src/strings.ts:2322 +#: src/strings.ts:2324 msgid "Web clip settings" msgstr "Web clip settings" -#: src/strings.ts:2029 +#: src/strings.ts:2031 msgid "Website" msgstr "Website" @@ -7184,12 +7190,12 @@ msgstr "Wednesday" msgid "Week" msgstr "Week" -#: src/strings.ts:2623 +#: src/strings.ts:2625 msgid "Week format" msgstr "Week format" #: src/strings.ts:168 -#: src/strings.ts:1569 +#: src/strings.ts:1571 msgid "Weekly" msgstr "Weekly" @@ -7197,47 +7203,47 @@ msgstr "Weekly" msgid "Welcome back, {email}" msgstr "Welcome back, {email}" -#: src/strings.ts:1888 +#: src/strings.ts:1890 msgid "Welcome back!" msgstr "Welcome back!" -#: src/strings.ts:2583 +#: src/strings.ts:2585 msgid "Welcome to Notesnook {plan}" msgstr "Welcome to Notesnook {plan}" -#: src/strings.ts:2073 +#: src/strings.ts:2075 msgid "Welcome to Notesnook Pro" msgstr "Welcome to Notesnook Pro" -#: src/strings.ts:1392 +#: src/strings.ts:1394 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:2503 +#: src/strings.ts:2505 msgid "What happens to my data if I switch plans?" msgstr "What happens to my data if I switch plans?" -#: src/strings.ts:2519 +#: src/strings.ts:2521 msgid "What is your refund policy?" msgstr "What is your refund policy?" -#: src/strings.ts:1667 +#: src/strings.ts:1669 msgid "What went wrong?" msgstr "What went wrong?" -#: src/strings.ts:2509 +#: src/strings.ts:2511 msgid "Why do you need my credit card details for a free trial?" msgstr "Why do you need my credit card details for a free trial?" -#: src/strings.ts:2383 +#: src/strings.ts:2385 msgid "Width" msgstr "Width" -#: src/strings.ts:2489 +#: src/strings.ts:2491 msgid "Words" msgstr "Words" -#: src/strings.ts:2412 +#: src/strings.ts:2414 msgid "Work & Office" msgstr "Work & Office" @@ -7245,15 +7251,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:1374 +#: src/strings.ts:1376 msgid "Write something..." msgstr "Write something..." -#: src/strings.ts:1654 +#: src/strings.ts:1656 msgid "Write with freedom." msgstr "Write with freedom." -#: src/strings.ts:2061 +#: src/strings.ts:2063 msgid "Write with freedom. Never compromise on privacy again." msgstr "Write with freedom. Never compromise on privacy again." @@ -7262,7 +7268,7 @@ msgid "Year" msgstr "Year" #: src/strings.ts:170 -#: src/strings.ts:1571 +#: src/strings.ts:1573 msgid "Yearly" msgstr "Yearly" @@ -7270,7 +7276,7 @@ msgstr "Yearly" msgid "Yes" msgstr "Yes" -#: src/strings.ts:2516 +#: src/strings.ts:2518 msgid "Yes, you can cancel your trial anytime. No questions asked." msgstr "Yes, you can cancel your trial anytime. No questions asked." @@ -7278,23 +7284,23 @@ msgstr "Yes, you can cancel your trial anytime. No questions asked." 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:2588 +#: src/strings.ts:2590 msgid "You are already subscribed to this plan." msgstr "You are already subscribed to this plan." -#: src/strings.ts:2239 +#: src/strings.ts:2241 msgid "You are editing \"{notebookTitle}\"." msgstr "You are editing \"{notebookTitle}\"." -#: src/strings.ts:2043 +#: src/strings.ts:2045 msgid "You are editing #{tag}" msgstr "You are editing #{tag}" -#: src/strings.ts:1781 +#: src/strings.ts:1783 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:1361 +#: src/strings.ts:1363 msgid "You are not logged in" msgstr "You are not logged in" @@ -7310,27 +7316,27 @@ msgstr "You can add as many tags as you want." msgid "You can also link a note to multiple Notebooks. Tap and hold any notebook to enable multi-select." msgstr "You can also link a note to multiple Notebooks. Tap and hold any notebook to enable multi-select." -#: src/strings.ts:2064 +#: src/strings.ts:2066 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:2591 +#: src/strings.ts:2593 msgid "You can change your subscription plan from the web app" msgstr "You can change your subscription plan from the web app" -#: src/strings.ts:2420 +#: src/strings.ts:2422 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:2079 +#: src/strings.ts:2081 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:1436 +#: src/strings.ts:1438 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:1427 +#: src/strings.ts:1429 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." @@ -7338,11 +7344,11 @@ msgstr "You can pin frequently used Notebooks to the Side Menu to quickly access 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:1408 +#: src/strings.ts:1410 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:2053 +#: src/strings.ts:2055 msgid "" "You can track your bug report at [{url}]({url}).\n" "\n" @@ -7368,23 +7374,23 @@ 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:1450 +#: src/strings.ts:1452 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:1749 +#: src/strings.ts:1751 msgid "You have {count} custom dictionary words." msgstr "You have {count} custom dictionary words." -#: src/strings.ts:2198 +#: src/strings.ts:2200 msgid "You have been logged out from all other devices." msgstr "You have been logged out from all other devices." -#: src/strings.ts:2192 +#: src/strings.ts:2194 msgid "You have been logged out." msgstr "You have been logged out." -#: src/strings.ts:2587 +#: src/strings.ts:2589 msgid "You have made a one time purchase. To change your plan please contact support." msgstr "You have made a one time purchase. To change your plan please contact support." @@ -7412,11 +7418,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:1545 +#: src/strings.ts:1547 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:1634 +#: src/strings.ts:1636 msgid "You must log out in order to change/reset server URLs." msgstr "You must log out in order to change/reset server URLs." @@ -7452,7 +7458,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:1851 +#: src/strings.ts:1853 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" @@ -7460,16 +7466,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:1917 +#: src/strings.ts:1919 msgid "Your account has been recovered." msgstr "Your account has been recovered." #: src/strings.ts:502 -#: src/strings.ts:1728 +#: src/strings.ts:1730 msgid "Your account is now 100% secure against unauthorized logins." msgstr "Your account is now 100% secure against unauthorized logins." -#: src/strings.ts:1856 +#: src/strings.ts:1858 msgid "Your account password must be strong & unique." msgstr "Your account password must be strong & unique." @@ -7481,47 +7487,47 @@ msgstr "Your account will be downgraded in {days} days" msgid "Your archive" msgstr "Your archive" -#: src/strings.ts:2485 +#: src/strings.ts:2487 msgid "Your archive is empty" msgstr "Your archive is empty" -#: src/strings.ts:1929 +#: src/strings.ts:1931 msgid "Your backup is ready to download" msgstr "Your backup is ready to download" -#: src/strings.ts:1586 +#: src/strings.ts:1588 msgid "Your changes could not be saved" msgstr "Your changes could not be saved" -#: src/strings.ts:1776 +#: src/strings.ts:1778 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:2099 +#: src/strings.ts:2101 msgid "Your current 2FA method is {method}" msgstr "Your current 2FA method is {method}" -#: src/strings.ts:2594 +#: src/strings.ts:2596 msgid "Your current subscription does not allow changing plans" msgstr "Your current subscription does not allow changing plans" -#: src/strings.ts:1801 +#: src/strings.ts:1803 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:1854 +#: src/strings.ts:1856 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:2505 +#: src/strings.ts:2507 msgid "Your data remains 100% accessible regardless of what plan you are on. That includes your notes, notebooks, attachments, and anything else you might have created." msgstr "Your data remains 100% accessible regardless of what plan you are on. That includes your notes, notebooks, attachments, and anything else you might have created." -#: src/strings.ts:1784 +#: src/strings.ts:1786 msgid "Your email has been confirmed." msgstr "Your email has been confirmed." -#: src/strings.ts:2496 +#: src/strings.ts:2498 msgid "Your email has been confirmed. You can now securely sync your encrypted notes across all devices." msgstr "Your email has been confirmed. You can now securely sync your encrypted notes across all devices." @@ -7537,7 +7543,7 @@ msgstr "Your favorites" msgid "Your free trial ends on {date}" msgstr "Your free trial ends on {date}" -#: src/strings.ts:1404 +#: src/strings.ts:1406 msgid "Your free trial has expired" msgstr "Your free trial has expired" @@ -7545,15 +7551,15 @@ msgstr "Your free trial has expired" msgid "Your free trial has started" msgstr "Your free trial has started" -#: src/strings.ts:1403 +#: src/strings.ts:1405 msgid "Your free trial is ending soon" msgstr "Your free trial is ending soon" -#: src/strings.ts:2622 +#: src/strings.ts:2624 msgid "Your free trial is on-going. Your subscription will start on {trialExpiryDate}" msgstr "Your free trial is on-going. Your subscription will start on {trialExpiryDate}" -#: src/strings.ts:1778 +#: src/strings.ts:1780 msgid "Your full name" msgstr "Your full name" @@ -7561,7 +7567,7 @@ msgstr "Your full name" msgid "Your monographs" msgstr "Your monographs" -#: src/strings.ts:1312 +#: src/strings.ts:1314 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." @@ -7577,7 +7583,7 @@ msgstr "Your notebooks" msgid "Your notes" msgstr "Your notes" -#: src/strings.ts:1892 +#: src/strings.ts:1894 msgid "Your password is always hashed before leaving this device." msgstr "Your password is always hashed before leaving this device." @@ -7585,11 +7591,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:1309 +#: src/strings.ts:1311 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:1997 +#: src/strings.ts:1999 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." @@ -7605,7 +7611,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:1995 +#: src/strings.ts:1997 msgid "Your subscription has been canceled." msgstr "Your subscription has been canceled." @@ -7633,22 +7639,22 @@ msgstr "Z to A" msgid "Zipping" msgstr "Zipping" -#: src/strings.ts:2461 +#: src/strings.ts:2463 msgid "Zoom" msgstr "Zoom" -#: src/strings.ts:2093 +#: src/strings.ts:2095 msgid "Zoom factor" msgstr "Zoom factor" -#: src/strings.ts:1700 +#: src/strings.ts:1702 msgid "Zoom in" msgstr "Zoom in" -#: src/strings.ts:2094 +#: src/strings.ts:2096 msgid "Zoom in or out the app content." msgstr "Zoom in or out the app content." -#: src/strings.ts:1699 +#: src/strings.ts:1701 msgid "Zoom out" msgstr "Zoom out" diff --git a/packages/intl/locale/pseudo-LOCALE.po b/packages/intl/locale/pseudo-LOCALE.po index db8f7b51d..bd0288d39 100644 --- a/packages/intl/locale/pseudo-LOCALE.po +++ b/packages/intl/locale/pseudo-LOCALE.po @@ -13,7 +13,7 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: src/strings.ts:2410 +#: src/strings.ts:2412 msgid " \"Notebook > Notes\"" msgstr "" @@ -21,23 +21,23 @@ msgstr "" msgid " Unlock with password once to enable biometric access." msgstr "" -#: src/strings.ts:1941 +#: src/strings.ts:1943 msgid " Upgrade to Notesnook Pro to add more notebooks." msgstr "" -#: src/strings.ts:1944 +#: src/strings.ts:1946 msgid " Upgrade to Notesnook Pro to customize the toolbar." msgstr "" -#: src/strings.ts:1943 +#: src/strings.ts:1945 msgid " Upgrade to Notesnook Pro to use custom toolbar presets." msgstr "" -#: src/strings.ts:1942 +#: src/strings.ts:1944 msgid " Upgrade to Notesnook Pro to use the notes vault." msgstr "" -#: src/strings.ts:1945 +#: src/strings.ts:1947 msgid " Upgrade to Notesnook Pro to use this feature." msgstr "" @@ -68,15 +68,15 @@ msgstr "" msgid "{0} Highlights πŸŽ‰" msgstr "" -#: src/strings.ts:1753 +#: src/strings.ts:1755 msgid "{count, plural, one {# error occured} other {# errors occured}}" msgstr "" -#: src/strings.ts:1759 +#: src/strings.ts:1761 msgid "{count, plural, one {# file ready for import} other {# files ready for import}}" msgstr "" -#: src/strings.ts:1714 +#: src/strings.ts:1716 msgid "{count, plural, one {# file} other {# files}}" msgstr "" @@ -84,11 +84,11 @@ msgstr "" msgid "{count, plural, one {# note} other {# notes}}" msgstr "" -#: src/strings.ts:1578 +#: src/strings.ts:1580 msgid "{count, plural, one {1 hour} other {# hours}}" msgstr "" -#: src/strings.ts:1573 +#: src/strings.ts:1575 msgid "{count, plural, one {1 minute} other {# minutes}}" msgstr "" @@ -288,7 +288,7 @@ msgstr "" msgid "{count, plural, one {Item unpublished} other {# items unpublished}}" msgstr "" -#: src/strings.ts:2427 +#: src/strings.ts:2429 msgid "{count, plural, one {Move all notes in this notebook to trash} other {Move all notes in these notebooks to trash}}" msgstr "" @@ -491,15 +491,15 @@ msgstr "" msgid "{count, plural, one {Unpublish note} other {Unpublish # notes}}" msgstr "" -#: src/strings.ts:2497 +#: src/strings.ts:2499 msgid "{count} characters" msgstr "" -#: src/strings.ts:1564 +#: src/strings.ts:1566 msgid "{days, plural, one {1 day} other {# days}}" msgstr "" -#: src/strings.ts:2557 +#: src/strings.ts:2559 msgid "{days} days free" msgstr "" @@ -539,19 +539,19 @@ msgstr "" msgid "{mode, select, repeat {Repeat} once {Once} permanent {Permanent} other {Unknown mode}}" msgstr "" -#: src/strings.ts:1976 +#: src/strings.ts:1978 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:1971 +#: src/strings.ts:1973 msgid "{n} {added, plural, one {added to 1 notebook} other {added to # notebooks}}." msgstr "" -#: src/strings.ts:1966 +#: src/strings.ts:1968 msgid "{n} {removed, plural, one {removed from 1 notebook} other {removed from # notebooks}}." msgstr "" -#: src/strings.ts:1961 +#: src/strings.ts:1963 msgid "{notes, plural, one {1 note} other {# notes}}" msgstr "" @@ -559,11 +559,11 @@ msgstr "" msgid "{notes, plural, one {Export note} other {Export # notes}}" msgstr "" -#: src/strings.ts:1706 +#: src/strings.ts:1708 msgid "{percentage}% updating..." msgstr "" -#: src/strings.ts:2541 +#: src/strings.ts:2543 msgid "{plan} plan" msgstr "" @@ -571,11 +571,11 @@ msgstr "" msgid "{platform, select, android {{name} saved to selected path} other {{name} saved to File Manager/Notesnook/downloads}}" msgstr "" -#: src/strings.ts:1337 +#: src/strings.ts:1339 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:2357 +#: src/strings.ts:2359 msgid "{selected} selected" msgstr "" @@ -595,27 +595,27 @@ msgstr "" msgid "{type} does not match" msgstr "" -#: src/strings.ts:1599 +#: src/strings.ts:1601 msgid "{words, plural, one {# word} other {# words}}" msgstr "" -#: src/strings.ts:1662 +#: src/strings.ts:1664 msgid "{words, plural, other {# selected}}" msgstr "" -#: src/strings.ts:1790 +#: src/strings.ts:1792 msgid "#notesnook" msgstr "" -#: src/strings.ts:1583 +#: src/strings.ts:1585 msgid "12-hour" msgstr "" -#: src/strings.ts:1584 +#: src/strings.ts:1586 msgid "24-hour" msgstr "" -#: src/strings.ts:1904 +#: src/strings.ts:1906 msgid "2FA code is required()" msgstr "" @@ -623,15 +623,15 @@ msgstr "" msgid "2FA code sent via {method}" msgstr "" -#: src/strings.ts:2581 +#: src/strings.ts:2583 msgid "5 year plan (One time purchase)" msgstr "" -#: src/strings.ts:1845 +#: src/strings.ts:1847 msgid "6 digit code" msgstr "" -#: src/strings.ts:1431 +#: src/strings.ts:1433 msgid "A notebook can have unlimited topics with unlimited notes." msgstr "" @@ -647,7 +647,7 @@ msgstr "" msgid "Abc" msgstr "" -#: src/strings.ts:1289 +#: src/strings.ts:1291 msgid "About" msgstr "" @@ -655,27 +655,27 @@ msgstr "" msgid "Account" msgstr "" -#: src/strings.ts:1847 +#: src/strings.ts:1849 msgid "Account password" msgstr "" -#: src/strings.ts:2452 +#: src/strings.ts:2454 msgid "Actions for note: {title}" msgstr "" -#: src/strings.ts:2453 +#: src/strings.ts:2455 msgid "Actions for notebook: {title}" msgstr "" -#: src/strings.ts:2454 +#: src/strings.ts:2456 msgid "Actions for tag: {title}" msgstr "" -#: src/strings.ts:2037 +#: src/strings.ts:2039 msgid "Activate" msgstr "" -#: src/strings.ts:1823 +#: src/strings.ts:1825 msgid "Activating trial" msgstr "" @@ -687,11 +687,11 @@ msgstr "" msgid "Add 2FA fallback method" msgstr "" -#: src/strings.ts:1507 +#: src/strings.ts:1509 msgid "Add a short note" msgstr "" -#: src/strings.ts:1600 +#: src/strings.ts:1602 msgid "Add a tag" msgstr "" @@ -703,7 +703,7 @@ msgstr "" msgid "Add notebook" msgstr "" -#: src/strings.ts:2479 +#: src/strings.ts:2481 msgid "Add notes" msgstr "" @@ -731,15 +731,15 @@ msgstr "" msgid "Add tags to multiple notes at once" msgstr "" -#: src/strings.ts:2244 +#: src/strings.ts:2246 msgid "Add to dictionary" msgstr "" -#: src/strings.ts:2614 +#: src/strings.ts:2616 msgid "Add to home" msgstr "" -#: src/strings.ts:2477 +#: src/strings.ts:2479 msgid "Add to notebook" msgstr "" @@ -751,27 +751,27 @@ msgstr "" msgid "Add your first notebook" msgstr "" -#: src/strings.ts:2617 +#: src/strings.ts:2619 msgid "Adjust the line height of the editor" msgstr "" -#: src/strings.ts:2171 +#: src/strings.ts:2173 msgid "Advanced" msgstr "" -#: src/strings.ts:1726 +#: src/strings.ts:1728 msgid "After scanning the QR code image, the app will display a code that you can enter below." msgstr "" -#: src/strings.ts:2309 +#: src/strings.ts:2311 msgid "Align left" msgstr "" -#: src/strings.ts:2310 +#: src/strings.ts:2312 msgid "Align right" msgstr "" -#: src/strings.ts:2279 +#: src/strings.ts:2281 msgid "Alignment" msgstr "" @@ -783,7 +783,7 @@ msgstr "" msgid "All attachments are end-to-end encrypted." msgstr "" -#: src/strings.ts:2404 +#: src/strings.ts:2406 msgid "All cached attachments have been cleared." msgstr "" @@ -795,6 +795,13 @@ msgstr "" msgid "All files" msgstr "" +#: src/strings.ts:1176 +msgid "" +"All locked notes will be PERMANENTLY DELETED. \n" +"\n" +"If you want to keep them, remove locked notes from the vault." +msgstr "" + #: src/strings.ts:1174 msgid "All locked notes will be re-encrypted with the new password." msgstr "" @@ -803,15 +810,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:1637 +#: src/strings.ts:1639 msgid "All server urls are required." msgstr "" -#: src/strings.ts:1906 +#: src/strings.ts:1908 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:2151 +#: src/strings.ts:2153 msgid "All the source code for Notesnook is available & open for everyone on GitHub." msgstr "" @@ -819,15 +826,15 @@ msgstr "" msgid "All tools are grouped" msgstr "" -#: src/strings.ts:1321 +#: src/strings.ts:1323 msgid "All tools in the collapsed section will be removed" msgstr "" -#: src/strings.ts:1316 +#: src/strings.ts:1318 msgid "All tools in this group will be removed from the toolbar." msgstr "" -#: src/strings.ts:1346 +#: src/strings.ts:1348 msgid "All your backups are stored in 'Phone Storage/Notesnook/backups/' folder" msgstr "" @@ -839,7 +846,7 @@ msgstr "" msgid "Already have an account?" msgstr "" -#: src/strings.ts:2221 +#: src/strings.ts:2223 msgid "Amount" msgstr "" @@ -847,7 +854,7 @@ msgstr "" msgid "An error occurred while migrating your data. You can logout of your account and try to relogin. However this is not recommended as it may result in some data loss if your data was not synced." msgstr "" -#: src/strings.ts:2575 +#: src/strings.ts:2577 msgid "and" msgstr "" @@ -855,19 +862,19 @@ msgstr "" msgid "and " msgstr "" -#: src/strings.ts:1791 +#: src/strings.ts:1793 msgid "and get a chance to win free promo codes." msgstr "" -#: src/strings.ts:2534 +#: src/strings.ts:2536 msgid "and much more." msgstr "" -#: src/strings.ts:1397 +#: src/strings.ts:1399 msgid "and we will manually confirm your account." msgstr "" -#: src/strings.ts:2592 +#: src/strings.ts:2594 msgid "ANNOUNCEMENT" msgstr "" @@ -875,25 +882,25 @@ msgstr "" msgid "App data has been cleared. Kindly relaunch the app to login again." msgstr "" -#: src/strings.ts:1183 -#: src/strings.ts:1693 +#: src/strings.ts:1185 +#: src/strings.ts:1695 msgid "App lock" msgstr "" #: src/strings.ts:781 -#: src/strings.ts:1209 +#: src/strings.ts:1211 msgid "App lock disabled" msgstr "" -#: src/strings.ts:1189 +#: src/strings.ts:1191 msgid "App lock timeout" msgstr "" -#: src/strings.ts:1300 +#: src/strings.ts:1302 msgid "App version" msgstr "" -#: src/strings.ts:1774 +#: src/strings.ts:1776 msgid "App will reload in {sec} seconds" msgstr "" @@ -913,16 +920,16 @@ msgstr "" msgid "Apply changes" msgstr "" -#: src/strings.ts:2044 +#: src/strings.ts:2046 msgid "Applying changes" msgstr "" -#: src/strings.ts:1530 -#: src/strings.ts:2484 +#: src/strings.ts:1532 +#: src/strings.ts:2486 msgid "Archive" msgstr "" -#: src/strings.ts:1445 +#: src/strings.ts:1447 msgid "Are you scrolling a lot to find a specific note? Pin it to the top from Note properties." msgstr "" @@ -930,11 +937,11 @@ msgstr "" msgid "Are you sure you want to clear all logs from {key}?" msgstr "" -#: src/strings.ts:1324 +#: src/strings.ts:1326 msgid "Are you sure you want to clear trash?" msgstr "" -#: src/strings.ts:1542 +#: src/strings.ts:1544 msgid "Are you sure you want to logout and clear all data stored on THIS DEVICE?" msgstr "" @@ -950,7 +957,7 @@ msgstr "" msgid "Are you sure you want to remove your profile picture?" msgstr "" -#: src/strings.ts:1323 +#: src/strings.ts:1325 msgid "Are you sure?" msgstr "" @@ -958,7 +965,7 @@ msgstr "" msgid "Ask every time" msgstr "" -#: src/strings.ts:2033 +#: src/strings.ts:2035 msgid "Assign color" msgstr "" @@ -970,7 +977,7 @@ msgstr "" msgid "Atleast 8 characters required" msgstr "" -#: src/strings.ts:2346 +#: src/strings.ts:2348 msgid "Attach image from URL" msgstr "" @@ -983,23 +990,23 @@ msgid "attachment" msgstr "" #: src/strings.ts:300 -#: src/strings.ts:2343 +#: src/strings.ts:2345 msgid "Attachment" msgstr "" -#: src/strings.ts:2447 +#: src/strings.ts:2449 msgid "Attachment manager" msgstr "" -#: src/strings.ts:1935 +#: src/strings.ts:1937 msgid "Attachment preview failed" msgstr "" -#: src/strings.ts:2397 +#: src/strings.ts:2399 msgid "Attachment recheck cancelled" msgstr "" -#: src/strings.ts:2314 +#: src/strings.ts:2316 msgid "Attachment settings" msgstr "" @@ -1012,11 +1019,11 @@ msgstr "" msgid "Attachments" msgstr "" -#: src/strings.ts:1884 +#: src/strings.ts:1886 msgid "Attachments cache cleared!" msgstr "" -#: src/strings.ts:2399 +#: src/strings.ts:2401 msgid "Attachments recheck complete" msgstr "" @@ -1024,64 +1031,64 @@ msgstr "" msgid "Audios" msgstr "" -#: src/strings.ts:1626 +#: src/strings.ts:1628 msgid "Auth server" msgstr "" -#: src/strings.ts:1795 +#: src/strings.ts:1797 msgid "Authenticated as {email}" msgstr "" -#: src/strings.ts:1898 +#: src/strings.ts:1900 msgid "Authenticating user" msgstr "" -#: src/strings.ts:2134 +#: src/strings.ts:2136 msgid "Authentication" msgstr "" -#: src/strings.ts:1730 +#: src/strings.ts:1732 msgid "authentication app" msgstr "" -#: src/strings.ts:1351 +#: src/strings.ts:1353 msgid "Authentication cancelled by user" msgstr "" -#: src/strings.ts:1352 +#: src/strings.ts:1354 msgid "Authentication failed" msgstr "" -#: src/strings.ts:2097 +#: src/strings.ts:2099 msgid "Auto" msgstr "" -#: src/strings.ts:1661 +#: src/strings.ts:1663 msgid "Auto save: off" msgstr "" -#: src/strings.ts:2111 +#: src/strings.ts:2113 msgid "Auto start on system startup" msgstr "" -#: src/strings.ts:1218 -#: src/strings.ts:1689 +#: src/strings.ts:1220 +#: src/strings.ts:1691 msgid "Automatic backups" msgstr "" -#: src/strings.ts:1365 +#: src/strings.ts:1367 msgid "Automatic backups are off" msgstr "" -#: src/strings.ts:2005 +#: src/strings.ts:2007 msgid "Automatic backups disabled" msgstr "" -#: src/strings.ts:1221 +#: src/strings.ts:1223 msgid "Automatic backups with attachments" msgstr "" -#: src/strings.ts:2107 +#: src/strings.ts:2109 msgid "Automatic updates" msgstr "" @@ -1089,11 +1096,11 @@ msgstr "" msgid "Automatically clear trash after a certain period of time" msgstr "" -#: src/strings.ts:2109 +#: src/strings.ts:2111 msgid "Automatically download & install updates in the background without prompting first." msgstr "" -#: src/strings.ts:1191 +#: src/strings.ts:1193 msgid "Automatically lock the app after a certain period" msgstr "" @@ -1101,15 +1108,15 @@ msgstr "" msgid "Automatically switch between light and dark themes based on your system settings" msgstr "" -#: src/strings.ts:2154 +#: src/strings.ts:2156 msgid "Available on iOS" msgstr "" -#: src/strings.ts:2155 +#: src/strings.ts:2157 msgid "Available on iOS & Android" msgstr "" -#: src/strings.ts:2302 +#: src/strings.ts:2304 msgid "Background color" msgstr "" @@ -1117,31 +1124,31 @@ msgstr "" msgid "Background sync (experimental)" msgstr "" -#: src/strings.ts:2103 +#: src/strings.ts:2105 msgid "Backup" msgstr "" -#: src/strings.ts:2141 +#: src/strings.ts:2143 msgid "Backup & export" msgstr "" -#: src/strings.ts:1210 +#: src/strings.ts:1212 msgid "Backup & restore" msgstr "" -#: src/strings.ts:1335 +#: src/strings.ts:1337 msgid "Backup complete" msgstr "" -#: src/strings.ts:1561 +#: src/strings.ts:1563 msgid "Backup directory not selected" msgstr "" -#: src/strings.ts:1233 +#: src/strings.ts:1235 msgid "Backup encryption" msgstr "" -#: src/strings.ts:1858 +#: src/strings.ts:1860 msgid "Backup files have .nnbackup extension" msgstr "" @@ -1149,15 +1156,15 @@ msgstr "" msgid "Backup is encrypted" msgstr "" -#: src/strings.ts:1614 +#: src/strings.ts:1616 msgid "Backup is encrypted, decrypting..." msgstr "" -#: src/strings.ts:1212 +#: src/strings.ts:1214 msgid "Backup now" msgstr "" -#: src/strings.ts:1213 +#: src/strings.ts:1215 msgid "Backup now with attachments" msgstr "" @@ -1165,15 +1172,15 @@ msgstr "" msgid "Backup restored" msgstr "" -#: src/strings.ts:1919 +#: src/strings.ts:1921 msgid "Backup saved at {path}" msgstr "" -#: src/strings.ts:1347 +#: src/strings.ts:1349 msgid "Backup successful" msgstr "" -#: src/strings.ts:2104 +#: src/strings.ts:2106 msgid "Backup with attachments" msgstr "" @@ -1185,7 +1192,7 @@ msgstr "" msgid "Basic" msgstr "" -#: src/strings.ts:1793 +#: src/strings.ts:1795 msgid "Because where's the fun in nookin' alone?" msgstr "" @@ -1193,39 +1200,39 @@ msgstr "" msgid "Behavior" msgstr "" -#: src/strings.ts:2136 +#: src/strings.ts:2138 msgid "Behaviour" msgstr "" -#: src/strings.ts:2471 +#: src/strings.ts:2473 msgid "Believer plan" msgstr "" -#: src/strings.ts:2578 +#: src/strings.ts:2580 msgid "Best value" msgstr "" -#: src/strings.ts:2460 +#: src/strings.ts:2462 msgid "Beta" msgstr "" -#: src/strings.ts:2260 +#: src/strings.ts:2262 msgid "Bi-directional note link" msgstr "" -#: src/strings.ts:2554 +#: src/strings.ts:2556 msgid "billed annually at {price}" msgstr "" -#: src/strings.ts:2555 +#: src/strings.ts:2557 msgid "billed monthly at {price}" msgstr "" -#: src/strings.ts:2202 +#: src/strings.ts:2204 msgid "Billing history" msgstr "" -#: src/strings.ts:1177 +#: src/strings.ts:1179 msgid "Biometric unlocking" msgstr "" @@ -1237,27 +1244,27 @@ msgstr "" msgid "Biometric unlocking enabled" msgstr "" -#: src/strings.ts:1349 +#: src/strings.ts:1351 msgid "Biometrics authentication failed. Please try again." msgstr "" -#: src/strings.ts:1186 +#: src/strings.ts:1188 msgid "Biometrics not enrolled" msgstr "" -#: src/strings.ts:2256 +#: src/strings.ts:2258 msgid "Bold" msgstr "" -#: src/strings.ts:2409 +#: src/strings.ts:2411 msgid "Boost your productivity with Notebooks and organize your notes." msgstr "" -#: src/strings.ts:1809 +#: src/strings.ts:1811 msgid "Browse" msgstr "" -#: src/strings.ts:2273 +#: src/strings.ts:2275 msgid "Bullet list" msgstr "" @@ -1265,7 +1272,7 @@ msgstr "" msgid "By" msgstr "" -#: src/strings.ts:2573 +#: src/strings.ts:2575 msgid "By joining you agree to our" msgstr "" @@ -1273,11 +1280,11 @@ msgstr "" msgid "By signing up, you agree to our " msgstr "" -#: src/strings.ts:2334 +#: src/strings.ts:2336 msgid "Callout" msgstr "" -#: src/strings.ts:2514 +#: src/strings.ts:2516 msgid "Can I cancel my free trial anytime?" msgstr "" @@ -1285,11 +1292,11 @@ msgstr "" msgid "Cancel" msgstr "" -#: src/strings.ts:2571 +#: src/strings.ts:2573 msgid "Cancel anytime, subscription auto-renews." msgstr "" -#: src/strings.ts:2536 +#: src/strings.ts:2538 msgid "Cancel anytime." msgstr "" @@ -1301,7 +1308,7 @@ msgstr "" msgid "Cancel login" msgstr "" -#: src/strings.ts:1826 +#: src/strings.ts:1828 msgid "Cancel subscription" msgstr "" @@ -1309,24 +1316,24 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: src/strings.ts:2301 +#: src/strings.ts:2303 msgid "Cell background color" msgstr "" -#: src/strings.ts:2303 +#: src/strings.ts:2305 msgid "Cell border color" msgstr "" -#: src/strings.ts:2305 -#: src/strings.ts:2306 +#: src/strings.ts:2307 +#: src/strings.ts:2308 msgid "Cell border width" msgstr "" -#: src/strings.ts:2287 +#: src/strings.ts:2289 msgid "Cell properties" msgstr "" -#: src/strings.ts:2304 +#: src/strings.ts:2306 msgid "Cell text color" msgstr "" @@ -1342,15 +1349,15 @@ msgstr "" msgid "Change 2FA method" msgstr "" -#: src/strings.ts:1198 +#: src/strings.ts:1200 msgid "Change app lock password" msgstr "" -#: src/strings.ts:1197 +#: src/strings.ts:1199 msgid "Change app lock pin" msgstr "" -#: src/strings.ts:1232 +#: src/strings.ts:1234 msgid "Change backup directory" msgstr "" @@ -1362,11 +1369,11 @@ msgstr "" msgid "Change how the app behaves in different situations" msgstr "" -#: src/strings.ts:2352 +#: src/strings.ts:2354 msgid "Change language" msgstr "" -#: src/strings.ts:1253 +#: src/strings.ts:1255 msgid "Change notification sound" msgstr "" @@ -1374,23 +1381,23 @@ msgstr "" msgid "Change password" msgstr "" -#: src/strings.ts:2585 +#: src/strings.ts:2587 msgid "Change plan" msgstr "" -#: src/strings.ts:1818 +#: src/strings.ts:1820 msgid "Change profile picture" msgstr "" -#: src/strings.ts:2180 +#: src/strings.ts:2182 msgid "Change proxy" msgstr "" -#: src/strings.ts:2201 +#: src/strings.ts:2203 msgid "Change the payment method you used to purchase this subscription." msgstr "" -#: src/strings.ts:1255 +#: src/strings.ts:1257 msgid "Change the sound that plays when you receive a notification" msgstr "" @@ -1414,27 +1421,27 @@ 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:2490 +#: src/strings.ts:2492 msgid "Characters" msgstr "" -#: src/strings.ts:1296 +#: src/strings.ts:1298 msgid "Check for new version of Notesnook" msgstr "" -#: src/strings.ts:1299 +#: src/strings.ts:1301 msgid "Check for new version of the app available on app launch" msgstr "" -#: src/strings.ts:1295 +#: src/strings.ts:1297 msgid "Check for updates" msgstr "" -#: src/strings.ts:1297 +#: src/strings.ts:1299 msgid "Check for updates automatically" msgstr "" -#: src/strings.ts:2153 +#: src/strings.ts:2155 msgid "Check roadmap" msgstr "" @@ -1442,7 +1449,7 @@ msgstr "" msgid "Check your spam folder if you haven't received an email yet." msgstr "" -#: src/strings.ts:2401 +#: src/strings.ts:2403 msgid "Checking all attachments" msgstr "" @@ -1450,31 +1457,31 @@ msgstr "" msgid "Checking for new version" msgstr "" -#: src/strings.ts:1705 +#: src/strings.ts:1707 msgid "Checking for updates" msgstr "" -#: src/strings.ts:2400 +#: src/strings.ts:2402 msgid "Checking note attachments" msgstr "" -#: src/strings.ts:2275 +#: src/strings.ts:2277 msgid "Checklist" msgstr "" -#: src/strings.ts:2329 +#: src/strings.ts:2331 msgid "Choose a block to insert" msgstr "" -#: src/strings.ts:1797 +#: src/strings.ts:1799 msgid "Choose a recovery method" msgstr "" -#: src/strings.ts:2102 +#: src/strings.ts:2104 msgid "Choose backup format" msgstr "" -#: src/strings.ts:2365 +#: src/strings.ts:2367 msgid "Choose custom color" msgstr "" @@ -1486,7 +1493,7 @@ msgstr "" msgid "Choose how dates are displayed in the app" msgstr "" -#: src/strings.ts:2620 +#: src/strings.ts:2622 msgid "Choose how day is displayed in the app" msgstr "" @@ -1502,19 +1509,19 @@ msgstr "" msgid "Choose how you want to secure your notes locally." msgstr "" -#: src/strings.ts:2625 +#: src/strings.ts:2627 msgid "Choose what day to display as the first day of the week" msgstr "" -#: src/strings.ts:1228 +#: src/strings.ts:1230 msgid "Choose where to save your backups" msgstr "" -#: src/strings.ts:2062 +#: src/strings.ts:2064 msgid "Choose your style" msgstr "" -#: src/strings.ts:1617 +#: src/strings.ts:1619 msgid "cleaningUp" msgstr "" @@ -1522,27 +1529,27 @@ msgstr "" msgid "Clear" msgstr "" -#: src/strings.ts:1870 +#: src/strings.ts:1872 msgid "Clear all cached attachments. Current cache size: {cacheSize}" msgstr "" -#: src/strings.ts:2269 +#: src/strings.ts:2271 msgid "Clear all formatting" msgstr "" -#: src/strings.ts:1871 +#: src/strings.ts:1873 msgid "Clear attachments cache?" msgstr "" -#: src/strings.ts:1868 +#: src/strings.ts:1870 msgid "Clear cache" msgstr "" -#: src/strings.ts:2363 +#: src/strings.ts:2365 msgid "Clear completed tasks" msgstr "" -#: src/strings.ts:1805 +#: src/strings.ts:1807 msgid "Clear data & reset account" msgstr "" @@ -1554,11 +1561,11 @@ msgstr "" msgid "Clear logs" msgstr "" -#: src/strings.ts:2196 +#: src/strings.ts:2198 msgid "clear sessions" msgstr "" -#: src/strings.ts:1322 +#: src/strings.ts:1324 msgid "Clear trash" msgstr "" @@ -1570,7 +1577,7 @@ msgstr "" msgid "Clear vault" msgstr "" -#: src/strings.ts:1873 +#: src/strings.ts:1875 msgid "" "Clearing attachments cache will perform the following actions:\n" "\n" @@ -1585,7 +1592,7 @@ msgid "" "**Only use this for troubleshooting purposes. If you are having persistent issues, it is recommended that you reach out to us via support@streetwriters.co so we can help you resolve it permanently.**" msgstr "" -#: src/strings.ts:2607 +#: src/strings.ts:2609 msgid "Click here to directly claim the promotion." msgstr "" @@ -1593,71 +1600,71 @@ msgstr "" msgid "Click to deselect" msgstr "" -#: src/strings.ts:1867 +#: src/strings.ts:1869 msgid "Click to preview" msgstr "" -#: src/strings.ts:1772 +#: src/strings.ts:1774 msgid "Click to remove" msgstr "" -#: src/strings.ts:2392 +#: src/strings.ts:2394 msgid "Click to reset {title}" msgstr "" -#: src/strings.ts:2615 +#: src/strings.ts:2617 msgid "Click to save" msgstr "" -#: src/strings.ts:2611 +#: src/strings.ts:2613 msgid "Click to update" msgstr "" -#: src/strings.ts:1381 +#: src/strings.ts:1383 msgid "Close" msgstr "" -#: src/strings.ts:2019 +#: src/strings.ts:2021 msgid "Close all" msgstr "" -#: src/strings.ts:2450 +#: src/strings.ts:2452 msgid "Close all tabs" msgstr "" -#: src/strings.ts:2449 +#: src/strings.ts:2451 msgid "Close current tab" msgstr "" -#: src/strings.ts:2016 +#: src/strings.ts:2018 msgid "Close others" msgstr "" -#: src/strings.ts:2120 +#: src/strings.ts:2122 msgid "Close to system tray" msgstr "" -#: src/strings.ts:2018 +#: src/strings.ts:2020 msgid "Close to the left" msgstr "" -#: src/strings.ts:2017 +#: src/strings.ts:2019 msgid "Close to the right" msgstr "" -#: src/strings.ts:2528 +#: src/strings.ts:2530 msgid "cloud storage space for storing images and files." msgstr "" -#: src/strings.ts:2267 +#: src/strings.ts:2269 msgid "Code" msgstr "" -#: src/strings.ts:2331 +#: src/strings.ts:2333 msgid "Code block" msgstr "" -#: src/strings.ts:2268 +#: src/strings.ts:2270 msgid "Code remove" msgstr "" @@ -1670,7 +1677,7 @@ msgid "color" msgstr "" #: src/strings.ts:299 -#: src/strings.ts:1844 +#: src/strings.ts:1846 msgid "Color" msgstr "" @@ -1678,11 +1685,11 @@ msgstr "" msgid "Color #{color} already exists" msgstr "" -#: src/strings.ts:2095 +#: src/strings.ts:2097 msgid "Color scheme" msgstr "" -#: src/strings.ts:1489 +#: src/strings.ts:1491 msgid "Color title" msgstr "" @@ -1694,19 +1701,19 @@ msgstr "" msgid "Colors" msgstr "" -#: src/strings.ts:2285 +#: src/strings.ts:2287 msgid "Column properties" msgstr "" -#: src/strings.ts:2441 +#: src/strings.ts:2443 msgid "Command palette" msgstr "" -#: src/strings.ts:1271 +#: src/strings.ts:1273 msgid "Community" msgstr "" -#: src/strings.ts:2548 +#: src/strings.ts:2550 msgid "Compare plans" msgstr "" @@ -1726,11 +1733,11 @@ msgstr "" msgid "Compressed images are uploaded in Full HD resolution and usually are good enough for most use cases." msgstr "" -#: src/strings.ts:2251 +#: src/strings.ts:2253 msgid "Configure" msgstr "" -#: src/strings.ts:2406 +#: src/strings.ts:2408 msgid "Configure server URLs for Notesnook" msgstr "" @@ -1742,31 +1749,31 @@ msgstr "" msgid "Confirm email to publish note" msgstr "" -#: src/strings.ts:1488 +#: src/strings.ts:1490 msgid "Confirm new password" msgstr "" -#: src/strings.ts:1483 +#: src/strings.ts:1485 msgid "Confirm password" msgstr "" -#: src/strings.ts:1487 +#: src/strings.ts:1489 msgid "Confirm pin" msgstr "" -#: src/strings.ts:2080 +#: src/strings.ts:2082 msgid "Congratulations!" msgstr "" -#: src/strings.ts:1636 +#: src/strings.ts:1638 msgid "Connected to all servers sucessfully." msgstr "" -#: src/strings.ts:1671 +#: src/strings.ts:1673 msgid "Contact support" msgstr "" -#: src/strings.ts:1262 +#: src/strings.ts:1264 msgid "Contact us directly via support@streetwriters.co for any help or support" msgstr "" @@ -1778,11 +1785,11 @@ msgstr "" msgid "Contribute towards a better Notesnook. All tracking information is anonymous." msgstr "" -#: src/strings.ts:1248 +#: src/strings.ts:1250 msgid "Controls whether this device should receive reminder notifications." msgstr "" -#: src/strings.ts:1990 +#: src/strings.ts:1992 msgid "Copied" msgstr "" @@ -1791,7 +1798,7 @@ msgid "Copy" msgstr "" #. placeholder {0}: format ? " " + format : "" -#: src/strings.ts:2036 +#: src/strings.ts:2038 msgid "Copy as{0}" msgstr "" @@ -1799,7 +1806,7 @@ msgstr "" msgid "Copy codes" msgstr "" -#: src/strings.ts:2247 +#: src/strings.ts:2249 msgid "Copy image" msgstr "" @@ -1807,7 +1814,7 @@ msgstr "" msgid "Copy link" msgstr "" -#: src/strings.ts:2246 +#: src/strings.ts:2248 msgid "Copy link text" msgstr "" @@ -1819,7 +1826,7 @@ msgstr "" msgid "Copy to clipboard" msgstr "" -#: src/strings.ts:1619 +#: src/strings.ts:1621 msgid "Copying backup files to cache" msgstr "" @@ -1827,19 +1834,19 @@ msgstr "" msgid "CORS bypass" msgstr "" -#: src/strings.ts:1986 +#: src/strings.ts:1988 msgid "Could not activate trial. Please try again later." msgstr "" -#: src/strings.ts:2004 +#: src/strings.ts:2006 msgid "Could not clear trash." msgstr "" -#: src/strings.ts:1639 +#: src/strings.ts:1641 msgid "Could not connect to {server}." msgstr "" -#: src/strings.ts:1951 +#: src/strings.ts:1953 msgid "Could not convert note to {format}." msgstr "" @@ -1871,7 +1878,7 @@ msgstr "" msgid "Create a shortcut" msgstr "" -#: src/strings.ts:1849 +#: src/strings.ts:1851 msgid "Create account" msgstr "" @@ -1879,19 +1886,19 @@ msgstr "" msgid "Create link" msgstr "" -#: src/strings.ts:1473 +#: src/strings.ts:1475 msgid "Create shortcut of this notebook in side menu" msgstr "" -#: src/strings.ts:1387 +#: src/strings.ts:1389 msgid "Create unlimited notebooks with Notesnook Pro" msgstr "" -#: src/strings.ts:1386 +#: src/strings.ts:1388 msgid "Create unlimited tags with Notesnook Pro" msgstr "" -#: src/strings.ts:1388 +#: src/strings.ts:1390 msgid "Create unlimited vaults with Notesnook Pro" msgstr "" @@ -1903,20 +1910,20 @@ msgstr "" msgid "Create your account" msgstr "" -#: src/strings.ts:2229 +#: src/strings.ts:2231 msgid "Created at" msgstr "" #. placeholder {0}: type === "full" ? " full" : "" -#: src/strings.ts:1344 +#: src/strings.ts:1346 msgid "Creating a{0} backup" msgstr "" -#: src/strings.ts:2049 +#: src/strings.ts:2051 msgid "Credentials" msgstr "" -#: src/strings.ts:2065 +#: src/strings.ts:2067 msgid "Cross platform & 100% encrypted" msgstr "" @@ -1924,31 +1931,31 @@ msgstr "" msgid "Curate the toolbar that fits your needs and matches your personality." msgstr "" -#: src/strings.ts:1836 +#: src/strings.ts:1838 msgid "Current note" msgstr "" -#: src/strings.ts:1485 +#: src/strings.ts:1487 msgid "Current password" msgstr "" -#: src/strings.ts:1229 +#: src/strings.ts:1231 msgid "Current path: {path}" msgstr "" -#: src/strings.ts:1484 +#: src/strings.ts:1486 msgid "Current pin" msgstr "" -#: src/strings.ts:1773 +#: src/strings.ts:1775 msgid "CURRENT PLAN" msgstr "" -#: src/strings.ts:2010 +#: src/strings.ts:2012 msgid "Custom" msgstr "" -#: src/strings.ts:2131 +#: src/strings.ts:2133 msgid "Custom dictionary words" msgstr "" @@ -1972,12 +1979,12 @@ msgstr "" msgid "Customize toolbar" msgstr "" -#: src/strings.ts:2245 +#: src/strings.ts:2247 msgid "Cut" msgstr "" #: src/strings.ts:167 -#: src/strings.ts:1568 +#: src/strings.ts:1570 msgid "Daily" msgstr "" @@ -1989,19 +1996,19 @@ msgstr "" msgid "Dark mode" msgstr "" -#: src/strings.ts:2096 +#: src/strings.ts:2098 msgid "Dark or light, we won't judge." msgstr "" -#: src/strings.ts:1547 +#: src/strings.ts:1549 msgid "Database setup failed, could not get database key" msgstr "" -#: src/strings.ts:1839 +#: src/strings.ts:1841 msgid "Date" msgstr "" -#: src/strings.ts:2105 +#: src/strings.ts:2107 msgid "Date & time" msgstr "" @@ -2025,19 +2032,19 @@ msgstr "" msgid "Date modified" msgstr "" -#: src/strings.ts:2042 +#: src/strings.ts:2044 msgid "Date uploaded" msgstr "" -#: src/strings.ts:1841 +#: src/strings.ts:1843 msgid "Day" msgstr "" -#: src/strings.ts:2619 +#: src/strings.ts:2621 msgid "Day format" msgstr "" -#: src/strings.ts:2038 +#: src/strings.ts:2040 msgid "Deactivate" msgstr "" @@ -2045,7 +2052,7 @@ msgstr "" msgid "Debug log copied!" msgstr "" -#: src/strings.ts:1269 +#: src/strings.ts:1271 msgid "Debug logs" msgstr "" @@ -2053,16 +2060,16 @@ msgstr "" msgid "Debug logs downloaded" msgstr "" -#: src/strings.ts:1266 +#: src/strings.ts:1268 msgid "Debugging" msgstr "" -#: src/strings.ts:2394 +#: src/strings.ts:2396 msgid "Decrease {title}" msgstr "" #: src/strings.ts:660 -#: src/strings.ts:2008 +#: src/strings.ts:2010 msgid "Default" msgstr "" @@ -2090,15 +2097,15 @@ msgstr "" msgid "Default screen to open on app launch" msgstr "" -#: src/strings.ts:2481 +#: src/strings.ts:2483 msgid "Default sidebar tab" msgstr "" -#: src/strings.ts:1249 +#: src/strings.ts:1251 msgid "Default snooze time" msgstr "" -#: src/strings.ts:1301 +#: src/strings.ts:1303 msgid "Default sound" msgstr "" @@ -2110,23 +2117,23 @@ msgstr "" msgid "Delete account" msgstr "" -#: src/strings.ts:1319 +#: src/strings.ts:1321 msgid "Delete collapsed section" msgstr "" -#: src/strings.ts:2292 +#: src/strings.ts:2294 msgid "Delete column" msgstr "" -#: src/strings.ts:2636 +#: src/strings.ts:2638 msgid "Delete data" msgstr "" -#: src/strings.ts:1314 +#: src/strings.ts:1316 msgid "Delete group" msgstr "" -#: src/strings.ts:2366 +#: src/strings.ts:2368 msgid "Delete mode" msgstr "" @@ -2138,11 +2145,11 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: src/strings.ts:2299 +#: src/strings.ts:2301 msgid "Delete row" msgstr "" -#: src/strings.ts:2300 +#: src/strings.ts:2302 msgid "Delete table" msgstr "" @@ -2150,27 +2157,23 @@ msgstr "" msgid "Delete vault" msgstr "" -#: src/strings.ts:1176 -msgid "Delete vault (and optionally remove all notes)." -msgstr "" - #: src/strings.ts:164 msgid "Deleted on {date}" msgstr "" -#: src/strings.ts:1928 +#: src/strings.ts:1930 msgid "Deleting" msgstr "" -#: src/strings.ts:1838 +#: src/strings.ts:1840 msgid "Description" msgstr "" -#: src/strings.ts:2106 +#: src/strings.ts:2108 msgid "Desktop app" msgstr "" -#: src/strings.ts:2110 +#: src/strings.ts:2112 msgid "Desktop integration" msgstr "" @@ -2178,7 +2181,7 @@ msgstr "" msgid "Did you save recovery key?" msgstr "" -#: src/strings.ts:1376 +#: src/strings.ts:1378 msgid "Disable" msgstr "" @@ -2186,7 +2189,7 @@ msgstr "" msgid "Disable auto sync" msgstr "" -#: src/strings.ts:2011 +#: src/strings.ts:2013 msgid "Disable editor margins" msgstr "" @@ -2206,11 +2209,11 @@ msgstr "" msgid "Discard" msgstr "" -#: src/strings.ts:1597 +#: src/strings.ts:1599 msgid "Dismiss" msgstr "" -#: src/strings.ts:1650 +#: src/strings.ts:1652 msgid "Dismiss announcement" msgstr "" @@ -2222,11 +2225,11 @@ msgstr "" msgid "Do you enjoy using Notesnook?" msgstr "" -#: src/strings.ts:2228 +#: src/strings.ts:2230 msgid "Do you want to clear the trash?" msgstr "" -#: src/strings.ts:1263 +#: src/strings.ts:1265 msgid "Documentation" msgstr "" @@ -2250,11 +2253,11 @@ msgstr "" msgid "Don't have an account?" msgstr "" -#: src/strings.ts:1832 +#: src/strings.ts:1834 msgid "Don't have backup file?" msgstr "" -#: src/strings.ts:1831 +#: src/strings.ts:1833 msgid "Don't have your account recovery key?" msgstr "" @@ -2262,11 +2265,11 @@ msgstr "" msgid "Don't have your recovery codes?" msgstr "" -#: src/strings.ts:1810 +#: src/strings.ts:1812 msgid "Don't show again" msgstr "" -#: src/strings.ts:1811 +#: src/strings.ts:1813 msgid "Don't show again on this device?" msgstr "" @@ -2282,15 +2285,15 @@ msgstr "" msgid "Download" msgstr "" -#: src/strings.ts:1816 +#: src/strings.ts:1818 msgid "Download all attachments" msgstr "" -#: src/strings.ts:2315 +#: src/strings.ts:2317 msgid "Download attachment" msgstr "" -#: src/strings.ts:1860 +#: src/strings.ts:1862 msgid "Download backup file" msgstr "" @@ -2298,11 +2301,11 @@ msgstr "" msgid "Download cancelled" msgstr "" -#: src/strings.ts:2208 +#: src/strings.ts:2210 msgid "Download everything including attachments on sync" msgstr "" -#: src/strings.ts:1290 +#: src/strings.ts:1292 msgid "Download on desktop" msgstr "" @@ -2335,23 +2338,23 @@ msgstr "" msgid "Downloading attachments" msgstr "" -#: src/strings.ts:1704 +#: src/strings.ts:1706 msgid "Downloading images" msgstr "" -#: src/strings.ts:1770 +#: src/strings.ts:1772 msgid "Drag & drop files here, or click to select files" msgstr "" -#: src/strings.ts:1769 +#: src/strings.ts:1771 msgid "Drop the files here" msgstr "" -#: src/strings.ts:1663 +#: src/strings.ts:1665 msgid "Drop your files here to attach" msgstr "" -#: src/strings.ts:2558 +#: src/strings.ts:2560 msgid "Due {date}" msgstr "" @@ -2359,7 +2362,7 @@ msgstr "" msgid "Due date" msgstr "" -#: src/strings.ts:2556 +#: src/strings.ts:2558 msgid "Due today" msgstr "" @@ -2371,15 +2374,15 @@ msgstr "" msgid "Earliest first" msgstr "" -#: src/strings.ts:2418 +#: src/strings.ts:2420 msgid "Easy access" msgstr "" -#: src/strings.ts:1777 +#: src/strings.ts:1779 msgid "Edit" msgstr "" -#: src/strings.ts:2626 +#: src/strings.ts:2628 msgid "Edit creation date" msgstr "" @@ -2387,37 +2390,37 @@ msgstr "" msgid "Edit internal link" msgstr "" -#: src/strings.ts:2234 -#: src/strings.ts:2262 +#: src/strings.ts:2236 +#: src/strings.ts:2264 msgid "Edit link" msgstr "" -#: src/strings.ts:2474 +#: src/strings.ts:2476 msgid "Edit profile" msgstr "" -#: src/strings.ts:1307 +#: src/strings.ts:1309 msgid "Edit profile picture" msgstr "" -#: src/strings.ts:1819 +#: src/strings.ts:1821 msgid "Edit your full name" msgstr "" #: src/strings.ts:1142 -#: src/strings.ts:1526 +#: src/strings.ts:1528 msgid "Editor" msgstr "" -#: src/strings.ts:2582 +#: src/strings.ts:2584 msgid "Education plan" msgstr "" -#: src/strings.ts:1481 +#: src/strings.ts:1483 msgid "Email" msgstr "" -#: src/strings.ts:2431 +#: src/strings.ts:2433 msgid "Email copied" msgstr "" @@ -2429,11 +2432,11 @@ msgstr "" msgid "Email not confirmed" msgstr "" -#: src/strings.ts:1553 +#: src/strings.ts:1555 msgid "Email or password incorrect" msgstr "" -#: src/strings.ts:1260 +#: src/strings.ts:1262 msgid "Email support" msgstr "" @@ -2441,15 +2444,15 @@ msgstr "" msgid "Email updated to {email}" msgstr "" -#: src/strings.ts:2341 +#: src/strings.ts:2343 msgid "Embed" msgstr "" -#: src/strings.ts:2321 +#: src/strings.ts:2323 msgid "Embed properties" msgstr "" -#: src/strings.ts:2317 +#: src/strings.ts:2319 msgid "Embed settings" msgstr "" @@ -2461,23 +2464,23 @@ msgstr "" msgid "Enable (Recommended)" msgstr "" -#: src/strings.ts:1185 +#: src/strings.ts:1187 msgid "Enable app lock" msgstr "" -#: src/strings.ts:2012 +#: src/strings.ts:2014 msgid "Enable editor margins" msgstr "" -#: src/strings.ts:2465 +#: src/strings.ts:2467 msgid "Enable ligatures for common symbols like β†’, ←, etc" msgstr "" -#: src/strings.ts:2381 +#: src/strings.ts:2383 msgid "Enable regex" msgstr "" -#: src/strings.ts:2127 +#: src/strings.ts:2129 msgid "Enable spell checker" msgstr "" @@ -2485,7 +2488,7 @@ msgstr "" msgid "Enable two-factor authentication to add an extra layer of security to your account." msgstr "" -#: src/strings.ts:1234 +#: src/strings.ts:1236 msgid "Encrypt your backups for added security" msgstr "" @@ -2493,11 +2496,11 @@ msgstr "" msgid "Encrypted and synced" msgstr "" -#: src/strings.ts:2241 +#: src/strings.ts:2243 msgid "Encrypted backup" msgstr "" -#: src/strings.ts:1657 +#: src/strings.ts:1659 msgid "Encrypted, private, secure." msgstr "" @@ -2505,7 +2508,7 @@ msgstr "" msgid "Encrypting attachment" msgstr "" -#: src/strings.ts:1843 +#: src/strings.ts:1845 msgid "Encryption key" msgstr "" @@ -2525,7 +2528,7 @@ msgstr "" msgid "Enter account password to proceed." msgstr "" -#: src/strings.ts:1852 +#: src/strings.ts:1854 msgid "Enter account recovery key" msgstr "" @@ -2541,23 +2544,23 @@ msgstr "" msgid "Enter code from authenticator app" msgstr "" -#: src/strings.ts:1511 +#: src/strings.ts:1513 msgid "Enter email address" msgstr "" -#: src/strings.ts:2369 +#: src/strings.ts:2371 msgid "Enter embed source URL" msgstr "" -#: src/strings.ts:1313 +#: src/strings.ts:1315 msgid "Enter full name" msgstr "" -#: src/strings.ts:1701 +#: src/strings.ts:1703 msgid "Enter fullscreen" msgstr "" -#: src/strings.ts:1490 +#: src/strings.ts:1492 msgid "Enter notebook description" msgstr "" @@ -2569,7 +2572,7 @@ msgstr "" msgid "Enter password" msgstr "" -#: src/strings.ts:2088 +#: src/strings.ts:2090 msgid "Enter pin or password to enable app lock." msgstr "" @@ -2589,7 +2592,7 @@ msgstr "" msgid "Enter the 6 digit code sent to your phone number to continue logging in" msgstr "" -#: src/strings.ts:2433 +#: src/strings.ts:2435 msgid "Enter the gift code to redeem your subscription." msgstr "" @@ -2597,27 +2600,27 @@ msgstr "" msgid "Enter the recovery code to continue logging in" msgstr "" -#: src/strings.ts:2618 +#: src/strings.ts:2620 msgid "Enter title" msgstr "" -#: src/strings.ts:1493 +#: src/strings.ts:1495 msgid "Enter verification code sent to your new email" msgstr "" -#: src/strings.ts:1492 +#: src/strings.ts:1494 msgid "Enter your new email" msgstr "" -#: src/strings.ts:2089 +#: src/strings.ts:2091 msgid "Enter your username" msgstr "" -#: src/strings.ts:2425 +#: src/strings.ts:2427 msgid "Error" msgstr "" -#: src/strings.ts:1554 +#: src/strings.ts:1556 msgid "Error applying promo code" msgstr "" @@ -2625,7 +2628,7 @@ msgstr "" msgid "Error downloading file: {message}" msgstr "" -#: src/strings.ts:1514 +#: src/strings.ts:1516 msgid "Error getting codes" msgstr "" @@ -2645,59 +2648,59 @@ msgstr "" msgid "Errors" msgstr "" -#: src/strings.ts:1696 +#: src/strings.ts:1698 msgid "Errors in {count} attachments" msgstr "" -#: src/strings.ts:2470 +#: src/strings.ts:2472 msgid "Essential plan" msgstr "" -#: src/strings.ts:1628 +#: src/strings.ts:1630 msgid "Events server" msgstr "" -#: src/strings.ts:2411 +#: src/strings.ts:2413 msgid "Every Notebook can have notes and sub notebooks." msgstr "" -#: src/strings.ts:2413 +#: src/strings.ts:2415 msgid "Everything related to my job in one place." msgstr "" -#: src/strings.ts:2422 +#: src/strings.ts:2424 msgid "Everything related to my school in one place." msgstr "" -#: src/strings.ts:2439 +#: src/strings.ts:2441 msgid "Execute" msgstr "" -#: src/strings.ts:2438 +#: src/strings.ts:2440 msgid "Execute a command..." msgstr "" -#: src/strings.ts:2013 +#: src/strings.ts:2015 msgid "Exit fullscreen" msgstr "" -#: src/strings.ts:2373 +#: src/strings.ts:2375 msgid "Expand" msgstr "" -#: src/strings.ts:2466 +#: src/strings.ts:2468 msgid "Expand sidebar" msgstr "" -#: src/strings.ts:2072 +#: src/strings.ts:2074 msgid "Experience the next level of private note taking\"" msgstr "" -#: src/strings.ts:2632 +#: src/strings.ts:2634 msgid "Expiry date" msgstr "" -#: src/strings.ts:2539 +#: src/strings.ts:2541 msgid "Explore all plans" msgstr "" @@ -2709,24 +2712,24 @@ msgstr "" msgid "Export again" msgstr "" -#: src/strings.ts:1237 +#: src/strings.ts:1239 msgid "Export all notes" msgstr "" -#: src/strings.ts:1239 +#: src/strings.ts:1241 msgid "Export all notes as pdf, markdown, html or text in a single zip file" msgstr "" #. placeholder {0}: format ? " " + format : "" -#: src/strings.ts:2035 +#: src/strings.ts:2037 msgid "Export as{0}" msgstr "" -#: src/strings.ts:2633 +#: src/strings.ts:2635 msgid "Export CSV" msgstr "" -#: src/strings.ts:1385 +#: src/strings.ts:1387 msgid "Export notes as PDF, Markdown and HTML with Notesnook Pro" msgstr "" @@ -2734,31 +2737,31 @@ msgstr "" msgid "Exporting \"{title}\"" msgstr "" -#: src/strings.ts:1618 +#: src/strings.ts:1620 msgid "Extracting files..." msgstr "" -#: src/strings.ts:1807 +#: src/strings.ts:1809 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:1259 +#: src/strings.ts:1261 msgid "Faced an issue or have a suggestion? Click here to create a bug report" msgstr "" -#: src/strings.ts:2403 +#: src/strings.ts:2405 msgid "Failed" msgstr "" -#: src/strings.ts:1936 +#: src/strings.ts:1938 msgid "Failed to copy note" msgstr "" -#: src/strings.ts:1560 +#: src/strings.ts:1562 msgid "Failed to decrypt backup" msgstr "" -#: src/strings.ts:2002 +#: src/strings.ts:2004 msgid "Failed to delete" msgstr "" @@ -2770,7 +2773,7 @@ msgstr "" msgid "Failed to download file" msgstr "" -#: src/strings.ts:1998 +#: src/strings.ts:2000 msgid "Failed to install theme." msgstr "" @@ -2782,7 +2785,7 @@ msgstr "" msgid "Failed to publish note" msgstr "" -#: src/strings.ts:2003 +#: src/strings.ts:2005 msgid "Failed to register task" msgstr "" @@ -2794,7 +2797,7 @@ msgstr "" msgid "Failed to send recovery email" msgstr "" -#: src/strings.ts:1401 +#: src/strings.ts:1403 msgid "Failed to send verification email" msgstr "" @@ -2802,11 +2805,11 @@ msgstr "" msgid "Failed to subscribe" msgstr "" -#: src/strings.ts:2203 +#: src/strings.ts:2205 msgid "Failed to take backup" msgstr "" -#: src/strings.ts:2205 +#: src/strings.ts:2207 msgid "Failed to take backup of your data. Do you want to continue logging out?" msgstr "" @@ -2822,28 +2825,28 @@ msgstr "" msgid "Fallback method for 2FA enabled" msgstr "" -#: src/strings.ts:2549 +#: src/strings.ts:2551 msgid "FAQs" msgstr "" -#: src/strings.ts:2032 +#: src/strings.ts:2034 msgid "Favorite" msgstr "" #: src/strings.ts:321 -#: src/strings.ts:1521 +#: src/strings.ts:1523 msgid "Favorites" msgstr "" -#: src/strings.ts:2547 +#: src/strings.ts:2549 msgid "Featured on" msgstr "" -#: src/strings.ts:2415 +#: src/strings.ts:2417 msgid "February 2022 Week 2" msgstr "" -#: src/strings.ts:2416 +#: src/strings.ts:2418 msgid "February 2022 Week 3" msgstr "" @@ -2875,75 +2878,75 @@ msgstr "" msgid "File too big" msgstr "" -#: src/strings.ts:1478 +#: src/strings.ts:1480 msgid "Filter attachments by filename, type or hash" msgstr "" -#: src/strings.ts:1833 +#: src/strings.ts:1835 msgid "Filter languages" msgstr "" -#: src/strings.ts:2604 +#: src/strings.ts:2606 msgid "Finish your purchase in the browser." msgstr "" -#: src/strings.ts:1669 +#: src/strings.ts:1671 msgid "Fix it" msgstr "" -#: src/strings.ts:2015 +#: src/strings.ts:2017 msgid "Focus mode" msgstr "" -#: src/strings.ts:2163 +#: src/strings.ts:2165 msgid "Follow" msgstr "" -#: src/strings.ts:1275 +#: src/strings.ts:1277 msgid "Follow us on Mastodon" msgstr "" -#: src/strings.ts:1277 +#: src/strings.ts:1279 msgid "Follow us on Mastodon for updates and news about Notesnook" msgstr "" -#: src/strings.ts:1278 +#: src/strings.ts:1280 msgid "Follow us on X" msgstr "" -#: src/strings.ts:1279 +#: src/strings.ts:1281 msgid "Follow us on X for updates and news about Notesnook" msgstr "" -#: src/strings.ts:2276 +#: src/strings.ts:2278 msgid "Font family" msgstr "" -#: src/strings.ts:2463 +#: src/strings.ts:2465 msgid "Font ligatures" msgstr "" -#: src/strings.ts:2277 +#: src/strings.ts:2279 msgid "Font size" msgstr "" -#: src/strings.ts:2521 +#: src/strings.ts:2523 msgid "For a monthly subscription, you can get a refund within 7 days of purchase. For a yearly subscription, we offer a full refund within 14 days of purchase. For a 5 year subscription, you can request a refund within 30 days of purchase." msgstr "" -#: src/strings.ts:1686 +#: src/strings.ts:1688 msgid "For a more integrated user experience, try out Notesnook for {platform}" msgstr "" -#: src/strings.ts:1767 +#: src/strings.ts:1769 msgid "for help regarding how to use the Notesnook Importer." msgstr "" -#: src/strings.ts:2530 +#: src/strings.ts:2532 msgid "for locking your notes as soon as app enters background" msgstr "" -#: src/strings.ts:2195 +#: src/strings.ts:2197 msgid "Force logout from all your other logged in devices." msgstr "" @@ -2955,7 +2958,7 @@ msgstr "" msgid "Force push changes" msgstr "" -#: src/strings.ts:2212 +#: src/strings.ts:2214 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" @@ -2970,11 +2973,11 @@ msgstr "" msgid "Forgot password?" msgstr "" -#: src/strings.ts:2564 +#: src/strings.ts:2566 msgid "Free {duration} day trial, cancel any time" msgstr "" -#: src/strings.ts:2468 +#: src/strings.ts:2470 msgid "Free plan" msgstr "" @@ -2986,55 +2989,55 @@ msgstr "" msgid "Friday" msgstr "" -#: src/strings.ts:2371 +#: src/strings.ts:2373 msgid "From code" msgstr "" -#: src/strings.ts:2368 +#: src/strings.ts:2370 msgid "From URL" msgstr "" -#: src/strings.ts:1999 +#: src/strings.ts:2001 msgid "Full name updated" msgstr "" -#: src/strings.ts:2206 +#: src/strings.ts:2208 msgid "Full offline mode" msgstr "" -#: src/strings.ts:2323 +#: src/strings.ts:2325 msgid "Full screen" msgstr "" -#: src/strings.ts:2092 +#: src/strings.ts:2094 msgid "General" msgstr "" -#: src/strings.ts:1268 +#: src/strings.ts:1270 msgid "Get helpful debug info about the app to help us find bugs." msgstr "" -#: src/strings.ts:1292 +#: src/strings.ts:1294 msgid "Get Notesnook app on your desktop and access all notes" msgstr "" -#: src/strings.ts:2157 +#: src/strings.ts:2159 msgid "Get Notesnook app on your iPhone and access all your notes on the go." msgstr "" -#: src/strings.ts:2159 +#: src/strings.ts:2161 msgid "Get Notesnook app on your iPhone or Android device and access all your notes on the go." msgstr "" -#: src/strings.ts:1382 +#: src/strings.ts:1384 msgid "Get Notesnook Pro" msgstr "" -#: src/strings.ts:1367 +#: src/strings.ts:1369 msgid "Get Notesnook Pro to enable automatic backups" msgstr "" -#: src/strings.ts:2407 +#: src/strings.ts:2409 msgid "Get Priority support" msgstr "" @@ -3046,11 +3049,11 @@ msgstr "" msgid "Get started" msgstr "" -#: src/strings.ts:2527 +#: src/strings.ts:2529 msgid "Get this and so much more:" msgstr "" -#: src/strings.ts:1885 +#: src/strings.ts:1887 msgid "Getting encryption key..." msgstr "" @@ -3062,55 +3065,55 @@ msgstr "" msgid "Getting recovery codes" msgstr "" -#: src/strings.ts:2162 +#: src/strings.ts:2164 msgid "GNU GENERAL PUBLIC LICENSE Version 3" msgstr "" -#: src/strings.ts:2605 +#: src/strings.ts:2607 msgid "Go back" msgstr "" -#: src/strings.ts:2446 +#: src/strings.ts:2448 msgid "Go back in tab" msgstr "" -#: src/strings.ts:2225 +#: src/strings.ts:2227 msgid "Go back to notebooks" msgstr "" -#: src/strings.ts:2226 +#: src/strings.ts:2228 msgid "Go back to tags" msgstr "" -#: src/strings.ts:2445 +#: src/strings.ts:2447 msgid "Go forward in tab" msgstr "" -#: src/strings.ts:1813 +#: src/strings.ts:1815 msgid "Go to" msgstr "" -#: src/strings.ts:1814 +#: src/strings.ts:1816 msgid "Go to #{tag}" msgstr "" -#: src/strings.ts:1697 +#: src/strings.ts:1699 msgid "Go to next page" msgstr "" -#: src/strings.ts:1698 +#: src/strings.ts:1700 msgid "Go to previous page" msgstr "" -#: src/strings.ts:1304 +#: src/strings.ts:1306 msgid "Go to web app" msgstr "" -#: src/strings.ts:2538 +#: src/strings.ts:2540 msgid "Google will remind you 2 days before your trial ends." msgstr "" -#: src/strings.ts:2565 +#: src/strings.ts:2567 msgid "Google will remind you before your trial ends" msgstr "" @@ -3122,7 +3125,7 @@ msgstr "" msgid "GROUP" msgstr "" -#: src/strings.ts:1887 +#: src/strings.ts:1889 msgid "Group added successfully" msgstr "" @@ -3134,27 +3137,27 @@ msgstr "" msgid "Hash copied" msgstr "" -#: src/strings.ts:2209 +#: src/strings.ts:2211 msgid "Having problems with sync?" msgstr "" -#: src/strings.ts:2553 +#: src/strings.ts:2555 msgid "hdImages" msgstr "" -#: src/strings.ts:2349 +#: src/strings.ts:2351 msgid "Heading {level}" msgstr "" -#: src/strings.ts:2278 +#: src/strings.ts:2280 msgid "Headings" msgstr "" -#: src/strings.ts:2384 +#: src/strings.ts:2386 msgid "Height" msgstr "" -#: src/strings.ts:1256 +#: src/strings.ts:1258 msgid "Help and support" msgstr "" @@ -3162,19 +3165,19 @@ msgstr "" msgid "Help improve Notesnook by sending completely anonymized" msgstr "" -#: src/strings.ts:1375 +#: src/strings.ts:1377 msgid "Hide" msgstr "" -#: src/strings.ts:1182 +#: src/strings.ts:1184 msgid "Hide app contents when you switch to other apps. This will also disable screenshot taking in the app." msgstr "" -#: src/strings.ts:2168 +#: src/strings.ts:2170 msgid "Hide note title" msgstr "" -#: src/strings.ts:2281 +#: src/strings.ts:2283 msgid "Highlight" msgstr "" @@ -3182,7 +3185,7 @@ msgstr "" msgid "History" msgstr "" -#: src/strings.ts:1527 +#: src/strings.ts:1529 msgid "Home" msgstr "" @@ -3190,19 +3193,19 @@ msgstr "" msgid "Homepage" msgstr "" -#: src/strings.ts:1317 +#: src/strings.ts:1319 msgid "Homepage changed to {name}" msgstr "" -#: src/strings.ts:2330 +#: src/strings.ts:2332 msgid "Horizontal rule" msgstr "" -#: src/strings.ts:1798 +#: src/strings.ts:1800 msgid "How do you want to recover your account?" msgstr "" -#: src/strings.ts:1668 +#: src/strings.ts:1670 msgid "How to fix it?" msgstr "" @@ -3210,7 +3213,7 @@ msgstr "" msgid "hr" msgstr "" -#: src/strings.ts:2498 +#: src/strings.ts:2500 msgid "I already have an account" msgstr "" @@ -3234,15 +3237,15 @@ msgstr "" msgid "I have a recovery code" msgstr "" -#: src/strings.ts:1886 +#: src/strings.ts:1888 msgid "I have saved my key" msgstr "" -#: src/strings.ts:2424 +#: src/strings.ts:2426 msgid "I love cooking and collecting recipes." msgstr "" -#: src/strings.ts:2210 +#: src/strings.ts:2212 msgid "I understand" msgstr "" @@ -3258,29 +3261,29 @@ msgstr "" msgid "If this continues to happen, please reach out to us via" msgstr "" -#: src/strings.ts:2113 +#: src/strings.ts:2115 msgid "If true, Notesnook will automatically start up when you turn on & login to your system." msgstr "" -#: src/strings.ts:2116 +#: src/strings.ts:2118 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:1724 +#: src/strings.ts:1726 msgid "If you can't scan the QR code above, enter this text instead (spaces don't matter)" msgstr "" -#: src/strings.ts:1394 +#: src/strings.ts:1396 msgid "" "If you didn't get an email from us or the confirmation link isn't\n" " working," msgstr "" -#: src/strings.ts:1804 +#: src/strings.ts:1806 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:2077 +#: src/strings.ts:2079 msgid "If you face any issue, you can reach out to us anytime." msgstr "" @@ -3288,7 +3291,7 @@ msgstr "" msgid "If you want to ask something in general or need some assistance, we would suggest that you" msgstr "" -#: src/strings.ts:2335 +#: src/strings.ts:2337 msgid "Image" msgstr "" @@ -3296,11 +3299,11 @@ msgstr "" msgid "Image Compression" msgstr "" -#: src/strings.ts:2311 +#: src/strings.ts:2313 msgid "Image properties" msgstr "" -#: src/strings.ts:2307 +#: src/strings.ts:2309 msgid "Image settings" msgstr "" @@ -3316,23 +3319,23 @@ 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:1582 +#: src/strings.ts:1584 msgid "Immediately" msgstr "" -#: src/strings.ts:2140 +#: src/strings.ts:2142 msgid "Import & export" msgstr "" -#: src/strings.ts:1751 +#: src/strings.ts:1753 msgid "Import completed" msgstr "" -#: src/strings.ts:2634 +#: src/strings.ts:2636 msgid "Import CSV" msgstr "" -#: src/strings.ts:1766 +#: src/strings.ts:1768 msgid "import guide" msgstr "" @@ -3340,7 +3343,7 @@ msgstr "" msgid "Incoming" msgstr "" -#: src/strings.ts:1837 +#: src/strings.ts:1839 msgid "Incoming note" msgstr "" @@ -3348,59 +3351,59 @@ msgstr "" msgid "Incorrect {type}" msgstr "" -#: src/strings.ts:2393 +#: src/strings.ts:2395 msgid "Increase {title}" msgstr "" -#: src/strings.ts:2235 +#: src/strings.ts:2237 msgid "Insert" msgstr "" -#: src/strings.ts:2390 +#: src/strings.ts:2392 msgid "Insert a {rows}x{columns} table" msgstr "" -#: src/strings.ts:2340 +#: src/strings.ts:2342 msgid "Insert a table" msgstr "" -#: src/strings.ts:2342 +#: src/strings.ts:2344 msgid "Insert an embed" msgstr "" -#: src/strings.ts:2336 +#: src/strings.ts:2338 msgid "Insert an image" msgstr "" -#: src/strings.ts:2288 +#: src/strings.ts:2290 msgid "Insert column left" msgstr "" -#: src/strings.ts:2289 +#: src/strings.ts:2291 msgid "Insert column right" msgstr "" -#: src/strings.ts:2233 +#: src/strings.ts:2235 msgid "Insert link" msgstr "" -#: src/strings.ts:2295 +#: src/strings.ts:2297 msgid "Insert row above" msgstr "" -#: src/strings.ts:2296 +#: src/strings.ts:2298 msgid "Insert row below" msgstr "" -#: src/strings.ts:1684 +#: src/strings.ts:1686 msgid "Install Notesnook" msgstr "" -#: src/strings.ts:2148 +#: src/strings.ts:2150 msgid "Install update" msgstr "" -#: src/strings.ts:1719 +#: src/strings.ts:1721 msgid "installs" msgstr "" @@ -3408,11 +3411,11 @@ msgstr "" msgid "Invalid {type}" msgstr "" -#: src/strings.ts:1991 +#: src/strings.ts:1993 msgid "Invalid CORS proxy url" msgstr "" -#: src/strings.ts:1482 +#: src/strings.ts:1484 msgid "Invalid email" msgstr "" @@ -3425,7 +3428,7 @@ msgstr "" msgid "It may take a minute to receive your code." msgstr "" -#: src/strings.ts:1590 +#: src/strings.ts:1592 msgid "It seems that your changes could not be saved. What to do next:" msgstr "" @@ -3433,7 +3436,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:2257 +#: src/strings.ts:2259 msgid "Italic" msgstr "" @@ -3446,7 +3449,7 @@ msgid "Item" msgstr "" #: src/strings.ts:311 -#: src/strings.ts:1703 +#: src/strings.ts:1705 msgid "items" msgstr "" @@ -3454,7 +3457,7 @@ msgstr "" msgid "Items" msgstr "" -#: src/strings.ts:2160 +#: src/strings.ts:2162 msgid "Join community" msgstr "" @@ -3462,27 +3465,27 @@ msgstr "" msgid "join our community on Discord." msgstr "" -#: src/strings.ts:1280 +#: src/strings.ts:1282 msgid "Join our Discord server" msgstr "" -#: src/strings.ts:1282 +#: src/strings.ts:1284 msgid "Join our Discord server to chat with other users and the team" msgstr "" -#: src/strings.ts:1272 +#: src/strings.ts:1274 msgid "Join our Telegram group" msgstr "" -#: src/strings.ts:1274 +#: src/strings.ts:1276 msgid "Join our Telegram group to chat with other users and the team" msgstr "" -#: src/strings.ts:2068 +#: src/strings.ts:2070 msgid "Join the cause" msgstr "" -#: src/strings.ts:2026 +#: src/strings.ts:2028 msgid "Jump to group" msgstr "" @@ -3490,19 +3493,19 @@ msgstr "" msgid "Keep" msgstr "" -#: src/strings.ts:2021 +#: src/strings.ts:2023 msgid "Keep open" msgstr "" -#: src/strings.ts:1359 +#: src/strings.ts:1361 msgid "Keep your data safe" msgstr "" -#: src/strings.ts:2128 +#: src/strings.ts:2130 msgid "Languages" msgstr "" -#: src/strings.ts:2230 +#: src/strings.ts:2232 msgid "Last edited at" msgstr "" @@ -3534,7 +3537,7 @@ msgstr "" msgid "Least relevant first" msgstr "" -#: src/strings.ts:1562 +#: src/strings.ts:1564 msgid "Legal" msgstr "" @@ -3542,15 +3545,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:2161 +#: src/strings.ts:2163 msgid "License" msgstr "" -#: src/strings.ts:1720 +#: src/strings.ts:1722 msgid "Licensed under {license}" msgstr "" -#: src/strings.ts:2326 +#: src/strings.ts:2328 msgid "Lift list item" msgstr "" @@ -3558,11 +3561,11 @@ msgstr "" msgid "Light" msgstr "" -#: src/strings.ts:2356 +#: src/strings.ts:2358 msgid "Line {line}, Column {column}" msgstr "" -#: src/strings.ts:2616 +#: src/strings.ts:2618 msgid "Line height" msgstr "" @@ -3570,7 +3573,7 @@ msgstr "" msgid "Line spacing changed" msgstr "" -#: src/strings.ts:2261 +#: src/strings.ts:2263 msgid "Link" msgstr "" @@ -3582,15 +3585,15 @@ msgstr "" msgid "Link notebooks" msgstr "" -#: src/strings.ts:2475 +#: src/strings.ts:2477 msgid "Link notes" msgstr "" -#: src/strings.ts:2266 +#: src/strings.ts:2268 msgid "Link settings" msgstr "" -#: src/strings.ts:2386 +#: src/strings.ts:2388 msgid "Link text" msgstr "" @@ -3610,7 +3613,7 @@ msgstr "" msgid "Linked notes" msgstr "" -#: src/strings.ts:1596 +#: src/strings.ts:1598 msgid "Linking to a specific block is not available for locked notes." msgstr "" @@ -3622,7 +3625,7 @@ msgstr "" msgid "Load from file" msgstr "" -#: src/strings.ts:1695 +#: src/strings.ts:1697 msgid "Loading" msgstr "" @@ -3631,7 +3634,7 @@ msgstr "" msgid "Loading {0}, please wait..." msgstr "" -#: src/strings.ts:1664 +#: src/strings.ts:1666 msgid "Loading editor. Please wait..." msgstr "" @@ -3643,7 +3646,7 @@ msgstr "" msgid "Loading themes..." msgstr "" -#: src/strings.ts:1327 +#: src/strings.ts:1329 msgid "Loading trash" msgstr "" @@ -3683,7 +3686,7 @@ msgstr "" msgid "Lock note" msgstr "" -#: src/strings.ts:1184 +#: src/strings.ts:1186 msgid "Lock the app with a password or pin" msgstr "" @@ -3695,7 +3698,7 @@ msgstr "" msgid "Locked notes cannot be published" msgstr "" -#: src/strings.ts:2193 +#: src/strings.ts:2195 msgid "Log out from all other devices" msgstr "" @@ -3711,7 +3714,7 @@ msgstr "" msgid "Logging out. Please wait..." msgstr "" -#: src/strings.ts:1782 +#: src/strings.ts:1784 msgid "Logging you in" msgstr "" @@ -3731,11 +3734,11 @@ msgstr "" msgid "Login successful" msgstr "" -#: src/strings.ts:1362 +#: src/strings.ts:1364 msgid "Login to encrypt and sync notes" msgstr "" -#: src/strings.ts:2609 +#: src/strings.ts:2611 msgid "Login to upload attachments. [Read more](https://help.notesnook.com/faqs/login-to-upload-attachments)" msgstr "" @@ -3755,11 +3758,11 @@ msgstr "" msgid "Logout from this device" msgstr "" -#: src/strings.ts:1412 +#: src/strings.ts:1414 msgid "Long press on any item in list to enter multi-select mode." msgstr "" -#: src/strings.ts:2361 +#: src/strings.ts:2363 msgid "Make task list readonly" msgstr "" @@ -3787,11 +3790,11 @@ msgstr "" msgid "Manage your attachments in one place" msgstr "" -#: src/strings.ts:1211 +#: src/strings.ts:1213 msgid "Manage your backups and restore data" msgstr "" -#: src/strings.ts:1245 +#: src/strings.ts:1247 msgid "Manage your reminders" msgstr "" @@ -3799,7 +3802,7 @@ msgstr "" msgid "Manage your sync settings here" msgstr "" -#: src/strings.ts:1440 +#: src/strings.ts:1442 msgid "Mark important notes by adding them to favorites." msgstr "" @@ -3811,39 +3814,39 @@ msgstr "" msgid "Marketing emails" msgstr "" -#: src/strings.ts:2374 +#: src/strings.ts:2376 msgid "Match case" msgstr "" -#: src/strings.ts:2375 +#: src/strings.ts:2377 msgid "Match whole word" msgstr "" -#: src/strings.ts:2283 +#: src/strings.ts:2285 msgid "Math (inline)" msgstr "" -#: src/strings.ts:2333 +#: src/strings.ts:2335 msgid "Math & formulas" msgstr "" -#: src/strings.ts:2040 +#: src/strings.ts:2042 msgid "Maximize" msgstr "" -#: src/strings.ts:2070 +#: src/strings.ts:2072 msgid "Meet other privacy-minded people & talk to us directly about your concerns, issues and suggestions." msgstr "" -#: src/strings.ts:2417 +#: src/strings.ts:2419 msgid "Meetings" msgstr "" -#: src/strings.ts:1779 +#: src/strings.ts:1781 msgid "Member since {date}" msgstr "" -#: src/strings.ts:2294 +#: src/strings.ts:2296 msgid "Merge cells" msgstr "" @@ -3861,15 +3864,15 @@ msgstr "" msgid "min" msgstr "" -#: src/strings.ts:2009 +#: src/strings.ts:2011 msgid "Minimal" msgstr "" -#: src/strings.ts:2039 +#: src/strings.ts:2041 msgid "Minimize" msgstr "" -#: src/strings.ts:2117 +#: src/strings.ts:2119 msgid "Minimize to system tray" msgstr "" @@ -3885,7 +3888,7 @@ msgstr "" msgid "Monday" msgstr "" -#: src/strings.ts:1631 +#: src/strings.ts:1633 msgid "Monograph server" msgstr "" @@ -3895,19 +3898,19 @@ msgstr "" #: src/strings.ts:322 #: src/strings.ts:939 -#: src/strings.ts:1529 +#: src/strings.ts:1531 msgid "Monographs" msgstr "" -#: src/strings.ts:1422 +#: src/strings.ts:1424 msgid "Monographs can be encrypted with a secret key and shared with anyone." msgstr "" -#: src/strings.ts:1417 +#: src/strings.ts:1419 msgid "Monographs enable you to share your notes in a secure and private way." msgstr "" -#: src/strings.ts:1840 +#: src/strings.ts:1842 msgid "month" msgstr "" @@ -3916,11 +3919,11 @@ msgid "Month" msgstr "" #: src/strings.ts:169 -#: src/strings.ts:1570 +#: src/strings.ts:1572 msgid "Monthly" msgstr "" -#: src/strings.ts:2313 +#: src/strings.ts:2315 msgid "More" msgstr "" @@ -3932,15 +3935,15 @@ msgstr "" msgid "Move" msgstr "" -#: src/strings.ts:2362 +#: src/strings.ts:2364 msgid "Move all checked tasks to bottom" msgstr "" -#: src/strings.ts:2290 +#: src/strings.ts:2292 msgid "Move column left" msgstr "" -#: src/strings.ts:2291 +#: src/strings.ts:2293 msgid "Move column right" msgstr "" @@ -3952,11 +3955,11 @@ msgstr "" msgid "Move notes" msgstr "" -#: src/strings.ts:2298 +#: src/strings.ts:2300 msgid "Move row down" msgstr "" -#: src/strings.ts:2297 +#: src/strings.ts:2299 msgid "Move row up" msgstr "" @@ -3980,11 +3983,11 @@ msgstr "" msgid "Name" msgstr "" -#: src/strings.ts:1688 +#: src/strings.ts:1690 msgid "Native high-performance encryption" msgstr "" -#: src/strings.ts:2442 +#: src/strings.ts:2444 msgid "Navigate" msgstr "" @@ -3992,7 +3995,7 @@ msgstr "" msgid "Never" msgstr "" -#: src/strings.ts:1342 +#: src/strings.ts:1344 msgid "Never ask again" msgstr "" @@ -4012,7 +4015,7 @@ msgstr "" msgid "New color" msgstr "" -#: src/strings.ts:1846 +#: src/strings.ts:1848 msgid "New Email" msgstr "" @@ -4028,11 +4031,11 @@ msgstr "" msgid "New notebook" msgstr "" -#: src/strings.ts:1480 +#: src/strings.ts:1482 msgid "New password" msgstr "" -#: src/strings.ts:1486 +#: src/strings.ts:1488 msgid "New pin" msgstr "" @@ -4044,11 +4047,11 @@ msgstr "" msgid "New tab" msgstr "" -#: src/strings.ts:2448 +#: src/strings.ts:2450 msgid "New tag" msgstr "" -#: src/strings.ts:1368 +#: src/strings.ts:1370 msgid "New update available" msgstr "" @@ -4056,7 +4059,7 @@ msgstr "" msgid "New version" msgstr "" -#: src/strings.ts:2024 +#: src/strings.ts:2026 msgid "Newest - oldest" msgstr "" @@ -4068,11 +4071,11 @@ msgstr "" msgid "Next" msgstr "" -#: src/strings.ts:2378 +#: src/strings.ts:2380 msgid "Next match" msgstr "" -#: src/strings.ts:2443 +#: src/strings.ts:2445 msgid "Next tab" msgstr "" @@ -4100,7 +4103,7 @@ msgstr "" msgid "No color selected" msgstr "" -#: src/strings.ts:1231 +#: src/strings.ts:1233 msgid "No directory selected" msgstr "" @@ -4108,11 +4111,11 @@ msgstr "" msgid "No downloads in progress." msgstr "" -#: src/strings.ts:1984 +#: src/strings.ts:1986 msgid "No encryption key found" msgstr "" -#: src/strings.ts:1665 +#: src/strings.ts:1667 msgid "No headings found" msgstr "" @@ -4128,7 +4131,7 @@ msgstr "" msgid "No note history available for this device." msgstr "" -#: src/strings.ts:2492 +#: src/strings.ts:2494 msgid "No notebooks selected to move" msgstr "" @@ -4136,7 +4139,7 @@ msgstr "" msgid "No one can view this {type} except you." msgstr "" -#: src/strings.ts:2612 +#: src/strings.ts:2614 msgid "No password" msgstr "" @@ -4144,7 +4147,7 @@ msgstr "" msgid "No references found of this note" msgstr "" -#: src/strings.ts:1516 +#: src/strings.ts:1518 msgid "No results found" msgstr "" @@ -4152,7 +4155,7 @@ msgstr "" msgid "No results found for \"{query}\"" msgstr "" -#: src/strings.ts:1516 +#: src/strings.ts:1518 msgid "No results found for {query}" msgstr "" @@ -4168,7 +4171,7 @@ msgstr "" msgid "None" msgstr "" -#: src/strings.ts:2014 +#: src/strings.ts:2016 msgid "Normal mode" msgstr "" @@ -4189,7 +4192,7 @@ msgstr "" msgid "Note copied to clipboard" msgstr "" -#: src/strings.ts:1949 +#: src/strings.ts:1951 msgid "Note does not exist" msgstr "" @@ -4205,7 +4208,7 @@ msgstr "" msgid "Note restored from history" msgstr "" -#: src/strings.ts:1585 +#: src/strings.ts:1587 msgid "Note title" msgstr "" @@ -4217,7 +4220,7 @@ msgstr "" msgid "Note version history is local only." msgstr "" -#: src/strings.ts:1224 +#: src/strings.ts:1226 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 "" @@ -4226,11 +4229,11 @@ msgid "notebook" msgstr "" #: src/strings.ts:296 -#: src/strings.ts:1520 +#: src/strings.ts:1522 msgid "Notebook" msgstr "" -#: src/strings.ts:2478 +#: src/strings.ts:2480 msgid "Notebook added" msgstr "" @@ -4240,15 +4243,15 @@ msgstr "" #: src/strings.ts:258 #: src/strings.ts:316 -#: src/strings.ts:1519 +#: src/strings.ts:1521 msgid "Notebooks" msgstr "" -#: src/strings.ts:1794 +#: src/strings.ts:1796 msgid "NOTEBOOKS" msgstr "" -#: src/strings.ts:2240 +#: src/strings.ts:2242 msgid "Notebooks are the best way to organize your notes." msgstr "" @@ -4257,7 +4260,7 @@ msgid "notes" msgstr "" #: src/strings.ts:315 -#: src/strings.ts:1518 +#: src/strings.ts:1520 msgid "Notes" msgstr "" @@ -4265,27 +4268,27 @@ msgstr "" msgid "Notes exported as {path} successfully" msgstr "" -#: src/strings.ts:1750 +#: src/strings.ts:1752 msgid "notes imported" msgstr "" -#: src/strings.ts:2542 +#: src/strings.ts:2544 msgid "Notesnook" msgstr "" -#: src/strings.ts:2597 +#: src/strings.ts:2599 msgid "Notesnook Circle" msgstr "" -#: src/strings.ts:2599 +#: src/strings.ts:2601 msgid "Notesnook Circle brings together trusted partners who share our commitment to privacy, transparency, and user freedom." msgstr "" -#: src/strings.ts:2067 +#: src/strings.ts:2069 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:2142 +#: src/strings.ts:2144 msgid "Notesnook Importer" msgstr "" @@ -4293,7 +4296,7 @@ msgstr "" msgid "Notesnook Pro" msgstr "" -#: src/strings.ts:2174 +#: src/strings.ts:2176 msgid "" "Notesnook uses the following DNS providers:\n" "\n" @@ -4311,23 +4314,23 @@ msgstr "" msgid "Notesnook will send you an SMS with a 2FA code when prompted" msgstr "" -#: src/strings.ts:2137 +#: src/strings.ts:2139 msgid "Notifications" msgstr "" -#: src/strings.ts:1377 +#: src/strings.ts:1379 msgid "Notifications disabled" msgstr "" -#: src/strings.ts:2274 +#: src/strings.ts:2276 msgid "Numbered list" msgstr "" -#: src/strings.ts:1718 +#: src/strings.ts:1720 msgid "of" msgstr "" -#: src/strings.ts:1602 +#: src/strings.ts:1604 msgid "Off" msgstr "" @@ -4335,7 +4338,7 @@ msgstr "" msgid "Offline" msgstr "" -#: src/strings.ts:2227 +#: src/strings.ts:2229 msgid "Okay" msgstr "" @@ -4343,15 +4346,15 @@ msgstr "" msgid "Old - new" msgstr "" -#: src/strings.ts:1479 +#: src/strings.ts:1481 msgid "Old password" msgstr "" -#: src/strings.ts:1835 +#: src/strings.ts:1837 msgid "Older version" msgstr "" -#: src/strings.ts:2023 +#: src/strings.ts:2025 msgid "Oldest - newest" msgstr "" @@ -4359,11 +4362,11 @@ msgstr "" msgid "Once your password is changed, please make sure to save the new account recovery key" msgstr "" -#: src/strings.ts:2560 +#: src/strings.ts:2562 msgid "One time purchase, no auto-renewal" msgstr "" -#: src/strings.ts:1771 +#: src/strings.ts:1773 msgid "Only .zip files are supported." msgstr "" @@ -4379,11 +4382,11 @@ msgstr "" msgid "Open in browser" msgstr "" -#: src/strings.ts:1306 +#: src/strings.ts:1308 msgid "Open in browser to manage subscription" msgstr "" -#: src/strings.ts:2324 +#: src/strings.ts:2326 msgid "Open in new tab" msgstr "" @@ -4391,27 +4394,27 @@ msgstr "" msgid "Open issue" msgstr "" -#: src/strings.ts:2264 +#: src/strings.ts:2266 msgid "Open link" msgstr "" -#: src/strings.ts:1863 +#: src/strings.ts:1865 msgid "Open note" msgstr "" -#: src/strings.ts:1380 +#: src/strings.ts:1382 msgid "Open settings" msgstr "" -#: src/strings.ts:2325 +#: src/strings.ts:2327 msgid "Open source" msgstr "" -#: src/strings.ts:1288 +#: src/strings.ts:1290 msgid "Open source libraries used in Notesnook" msgstr "" -#: src/strings.ts:1287 +#: src/strings.ts:1289 msgid "Open source licenses" msgstr "" @@ -4423,7 +4426,7 @@ msgstr "" msgid "Open the two-factor authentication (TOTP) app to view your authentication code." msgstr "" -#: src/strings.ts:1857 +#: src/strings.ts:1859 msgid "Optional" msgstr "" @@ -4431,11 +4434,11 @@ msgstr "" msgid "or email us at" msgstr "" -#: src/strings.ts:2022 +#: src/strings.ts:2024 msgid "Order by" msgstr "" -#: src/strings.ts:2220 +#: src/strings.ts:2222 msgid "Order ID" msgstr "" @@ -4444,23 +4447,23 @@ msgstr "" msgid "Orphaned" msgstr "" -#: src/strings.ts:2145 +#: src/strings.ts:2147 msgid "Other" msgstr "" -#: src/strings.ts:2345 +#: src/strings.ts:2347 msgid "Outline list" msgstr "" -#: src/strings.ts:2348 +#: src/strings.ts:2350 msgid "Paragraph" msgstr "" -#: src/strings.ts:2491 +#: src/strings.ts:2493 msgid "Paragraphs" msgstr "" -#: src/strings.ts:2101 +#: src/strings.ts:2103 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 "" @@ -4468,7 +4471,7 @@ msgstr "" msgid "Partially refunded" msgstr "" -#: src/strings.ts:2402 +#: src/strings.ts:2404 msgid "Passed" msgstr "" @@ -4504,35 +4507,35 @@ msgstr "" msgid "Password updated" msgstr "" -#: src/strings.ts:2081 +#: src/strings.ts:2083 msgid "Password/pin" msgstr "" -#: src/strings.ts:2248 +#: src/strings.ts:2250 msgid "Paste" msgstr "" -#: src/strings.ts:2249 +#: src/strings.ts:2251 msgid "Paste and match style" msgstr "" -#: src/strings.ts:2370 +#: src/strings.ts:2372 msgid "Paste embed code here. Only iframes are supported." msgstr "" -#: src/strings.ts:2385 +#: src/strings.ts:2387 msgid "Paste image URL here" msgstr "" -#: src/strings.ts:2250 +#: src/strings.ts:2252 msgid "Paste without formatting" msgstr "" -#: src/strings.ts:2561 +#: src/strings.ts:2563 msgid "Pay once and use for 5 years" msgstr "" -#: src/strings.ts:2199 +#: src/strings.ts:2201 msgid "Payment method" msgstr "" @@ -4540,11 +4543,11 @@ msgstr "" msgid "PDF is password protected" msgstr "" -#: src/strings.ts:1729 +#: src/strings.ts:1731 msgid "phone number" msgstr "" -#: src/strings.ts:1848 +#: src/strings.ts:1850 msgid "Phone number" msgstr "" @@ -4556,7 +4559,7 @@ msgstr "" msgid "Pin" msgstr "" -#: src/strings.ts:1690 +#: src/strings.ts:1692 msgid "Pin notes in notifications drawer" msgstr "" @@ -4568,15 +4571,15 @@ msgstr "" msgid "Pinned" msgstr "" -#: src/strings.ts:2579 +#: src/strings.ts:2581 msgid "Plan limits" msgstr "" -#: src/strings.ts:2542 +#: src/strings.ts:2544 msgid "Plans" msgstr "" -#: src/strings.ts:1364 +#: src/strings.ts:1366 msgid "Please confirm your email to sync notes" msgstr "" @@ -4585,7 +4588,7 @@ msgid "Please confirm your identity by entering a recovery code." msgstr "" #: src/strings.ts:981 -#: src/strings.ts:2232 +#: src/strings.ts:2234 msgid "Please confirm your identity by entering the authentication code from your authenticator app." msgstr "" @@ -4598,35 +4601,35 @@ msgstr "" msgid "Please confirm your identity by entering the authentication code sent to your email address." msgstr "" -#: src/strings.ts:1909 +#: src/strings.ts:1911 msgid "Please download a backup of your data as your account will be cleared before recovery." msgstr "" -#: src/strings.ts:2007 +#: src/strings.ts:2009 msgid "Please enable automatic backups to avoid losing important data." msgstr "" -#: src/strings.ts:1512 +#: src/strings.ts:1514 msgid "Please enter a valid email address" msgstr "" -#: src/strings.ts:1954 +#: src/strings.ts:1956 msgid "Please enter a valid hex color (e.g. #ffffff)" msgstr "" -#: src/strings.ts:1513 +#: src/strings.ts:1515 msgid "Please enter a valid phone number with country code" msgstr "" -#: src/strings.ts:1635 +#: src/strings.ts:1637 msgid "Please enter a valid URL" msgstr "" -#: src/strings.ts:1620 +#: src/strings.ts:1622 msgid "Please enter password of this backup file" msgstr "" -#: src/strings.ts:2243 +#: src/strings.ts:2245 msgid "Please enter the password to decrypt and restore this backup." msgstr "" @@ -4634,11 +4637,11 @@ msgstr "" msgid "Please enter the password to unlock the PDF and view the content." msgstr "" -#: src/strings.ts:1865 +#: src/strings.ts:1867 msgid "Please enter the password to unlock this note" msgstr "" -#: src/strings.ts:1862 +#: src/strings.ts:1864 msgid "Please enter the password to view this version" msgstr "" @@ -4654,7 +4657,7 @@ msgstr "" msgid "Please enter your password to continue" msgstr "" -#: src/strings.ts:1933 +#: src/strings.ts:1935 msgid "Please enter your vault password to continue" msgstr "" @@ -4662,7 +4665,7 @@ msgstr "" msgid "Please fill all the fields to continue." msgstr "" -#: src/strings.ts:1556 +#: src/strings.ts:1558 msgid "Please grant notifications permission to add new reminders." msgstr "" @@ -4674,27 +4677,27 @@ 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:1765 +#: src/strings.ts:1767 msgid "Please refer to the" msgstr "" -#: src/strings.ts:1557 +#: src/strings.ts:1559 msgid "Please select the day to repeat the reminder on" msgstr "" -#: src/strings.ts:1396 +#: src/strings.ts:1398 msgid "please send us an email from your registered email address" msgstr "" -#: src/strings.ts:2391 +#: src/strings.ts:2393 msgid "Please set a table size" msgstr "" -#: src/strings.ts:1558 +#: src/strings.ts:1560 msgid "Please set title of the reminder" msgstr "" -#: src/strings.ts:1987 +#: src/strings.ts:1989 msgid "Please try again" msgstr "" @@ -4710,8 +4713,8 @@ msgstr "" msgid "Please wait before requesting a new code" msgstr "" -#: src/strings.ts:1399 -#: src/strings.ts:1551 +#: src/strings.ts:1401 +#: src/strings.ts:1553 msgid "Please wait before requesting another email" msgstr "" @@ -4727,7 +4730,7 @@ msgstr "" msgid "Please wait while we export your notes." msgstr "" -#: src/strings.ts:1894 +#: src/strings.ts:1896 msgid "Please wait while we finalize your account." msgstr "" @@ -4739,15 +4742,15 @@ msgstr "" msgid "Please wait while we log you out." msgstr "" -#: src/strings.ts:1915 +#: src/strings.ts:1917 msgid "Please wait while we reset your account password." msgstr "" -#: src/strings.ts:1613 +#: src/strings.ts:1615 msgid "Please wait while we restore your backup..." msgstr "" -#: src/strings.ts:1897 +#: src/strings.ts:1899 msgid "Please wait while we send you recovery instructions" msgstr "" @@ -4759,12 +4762,12 @@ msgstr "" msgid "Please wait while we verify your subscription" msgstr "" -#: src/strings.ts:1783 -#: src/strings.ts:1890 +#: src/strings.ts:1785 +#: src/strings.ts:1892 msgid "Please wait while you are authenticated." msgstr "" -#: src/strings.ts:1902 +#: src/strings.ts:1904 msgid "Please wait while your data is downloaded & decrypted." msgstr "" @@ -4772,7 +4775,7 @@ msgstr "" msgid "Preparing note for share" msgstr "" -#: src/strings.ts:1615 +#: src/strings.ts:1617 msgid "Preparing to restore backup file..." msgstr "" @@ -4780,19 +4783,19 @@ msgstr "" msgid "PRESETS" msgstr "" -#: src/strings.ts:2119 +#: src/strings.ts:2121 msgid "Pressing \"β€”\" will hide the app in your system tray." msgstr "" -#: src/strings.ts:2122 +#: src/strings.ts:2124 msgid "Pressing \"X\" will hide the app in your system tray." msgstr "" -#: src/strings.ts:2170 +#: src/strings.ts:2172 msgid "Prevent note title from appearing in tab/window title." msgstr "" -#: src/strings.ts:2312 +#: src/strings.ts:2314 msgid "Preview attachment" msgstr "" @@ -4800,19 +4803,19 @@ msgstr "" msgid "Preview not available, content is encrypted." msgstr "" -#: src/strings.ts:2379 +#: src/strings.ts:2381 msgid "Previous match" msgstr "" -#: src/strings.ts:2444 +#: src/strings.ts:2446 msgid "Previous tab" msgstr "" -#: src/strings.ts:2034 +#: src/strings.ts:2036 msgid "Print" msgstr "" -#: src/strings.ts:2144 +#: src/strings.ts:2146 msgid "Privacy" msgstr "" @@ -4820,7 +4823,7 @@ msgstr "" msgid "Privacy & security" msgstr "" -#: src/strings.ts:1655 +#: src/strings.ts:1657 msgid "Privacy comes first." msgstr "" @@ -4828,15 +4831,15 @@ msgstr "" msgid "Privacy for everyone" msgstr "" -#: src/strings.ts:1180 +#: src/strings.ts:1182 msgid "Privacy mode" msgstr "" -#: src/strings.ts:2574 +#: src/strings.ts:2576 msgid "privacy policy" msgstr "" -#: src/strings.ts:1285 +#: src/strings.ts:1287 msgid "Privacy policy" msgstr "" @@ -4856,35 +4859,35 @@ msgstr "" msgid "privileged few" msgstr "" -#: src/strings.ts:1721 +#: src/strings.ts:1723 msgid "Pro" msgstr "" -#: src/strings.ts:2469 +#: src/strings.ts:2471 msgid "Pro plan" msgstr "" -#: src/strings.ts:2047 +#: src/strings.ts:2049 msgid "Processing {collection}..." msgstr "" -#: src/strings.ts:2046 +#: src/strings.ts:2048 msgid "Processing..." msgstr "" -#: src/strings.ts:1240 +#: src/strings.ts:1242 msgid "Productivity" msgstr "" -#: src/strings.ts:2133 +#: src/strings.ts:2135 msgid "Profile" msgstr "" -#: src/strings.ts:1955 +#: src/strings.ts:1957 msgid "Profile updated" msgstr "" -#: src/strings.ts:1866 +#: src/strings.ts:1868 msgid "Properties" msgstr "" @@ -4892,7 +4895,7 @@ msgstr "" msgid "Protect your notes" msgstr "" -#: src/strings.ts:2181 +#: src/strings.ts:2183 msgid "Proxy" msgstr "" @@ -4904,7 +4907,7 @@ msgstr "" msgid "Publish note" msgstr "" -#: src/strings.ts:2613 +#: src/strings.ts:2615 msgid "Publish to the web" msgstr "" @@ -4928,39 +4931,39 @@ msgstr "" msgid "Published note link will be automatically deleted once it is viewed by someone." msgstr "" -#: src/strings.ts:2567 +#: src/strings.ts:2569 msgid "Purchase" msgstr "" -#: src/strings.ts:1371 +#: src/strings.ts:1373 msgid "Quick note" msgstr "" -#: src/strings.ts:1241 +#: src/strings.ts:1243 msgid "Quick note notification" msgstr "" -#: src/strings.ts:1692 +#: src/strings.ts:1694 msgid "Quick note widgets" msgstr "" -#: src/strings.ts:2440 +#: src/strings.ts:2442 msgid "Quick open" msgstr "" -#: src/strings.ts:1243 +#: src/strings.ts:1245 msgid "Quickly create a note from the notification" msgstr "" -#: src/strings.ts:2332 +#: src/strings.ts:2334 msgid "Quote" msgstr "" -#: src/strings.ts:1357 +#: src/strings.ts:1359 msgid "Rate Notesnook on App Store" msgstr "" -#: src/strings.ts:1358 +#: src/strings.ts:1360 msgid "Rate Notesnook on Play Store" msgstr "" @@ -4976,47 +4979,47 @@ msgstr "" msgid "Read only" msgstr "" -#: src/strings.ts:1265 +#: src/strings.ts:1267 msgid "Read the documentation to learn more about Notesnook" msgstr "" -#: src/strings.ts:1286 +#: src/strings.ts:1288 msgid "Read the privacy policy" msgstr "" -#: src/strings.ts:1284 +#: src/strings.ts:1286 msgid "Read the terms of service" msgstr "" -#: src/strings.ts:1616 +#: src/strings.ts:1618 msgid "Reading backup file..." msgstr "" -#: src/strings.ts:2544 +#: src/strings.ts:2546 msgid "Ready to take the next step on your private note taking journey?" msgstr "" -#: src/strings.ts:2223 +#: src/strings.ts:2225 msgid "Receipt" msgstr "" -#: src/strings.ts:1611 +#: src/strings.ts:1613 msgid "RECENT BACKUPS" msgstr "" -#: src/strings.ts:2455 +#: src/strings.ts:2457 msgid "Recents" msgstr "" -#: src/strings.ts:2398 +#: src/strings.ts:2400 msgid "Recheck all" msgstr "" -#: src/strings.ts:2001 +#: src/strings.ts:2003 msgid "Rechecking failed" msgstr "" -#: src/strings.ts:2423 +#: src/strings.ts:2425 msgid "Recipes" msgstr "" @@ -5024,7 +5027,7 @@ msgstr "" msgid "Recommended" msgstr "" -#: src/strings.ts:2546 +#: src/strings.ts:2548 msgid "Recommended by Privacy Guides" msgstr "" @@ -5060,23 +5063,23 @@ msgstr "" msgid "Recovery key text file saved" msgstr "" -#: src/strings.ts:1916 +#: src/strings.ts:1918 msgid "Recovery successful!" msgstr "" -#: src/strings.ts:2435 +#: src/strings.ts:2437 msgid "Redeem" msgstr "" -#: src/strings.ts:2596 +#: src/strings.ts:2598 msgid "Redeem code" msgstr "" -#: src/strings.ts:2432 +#: src/strings.ts:2434 msgid "Redeem gift code" msgstr "" -#: src/strings.ts:2434 +#: src/strings.ts:2436 msgid "Redeeming gift code" msgstr "" @@ -5096,7 +5099,7 @@ msgstr "" msgid "Regenerate" msgstr "" -#: src/strings.ts:2087 +#: src/strings.ts:2089 msgid "Register" msgstr "" @@ -5104,7 +5107,7 @@ msgstr "" msgid "Release notes" msgstr "" -#: src/strings.ts:2457 +#: src/strings.ts:2459 msgid "Release track" msgstr "" @@ -5112,15 +5115,15 @@ msgstr "" msgid "Relevance" msgstr "" -#: src/strings.ts:1670 +#: src/strings.ts:1672 msgid "Reload app" msgstr "" -#: src/strings.ts:1828 +#: src/strings.ts:1830 msgid "Relogin to your account" msgstr "" -#: src/strings.ts:1796 +#: src/strings.ts:1798 msgid "Remembered your password?" msgstr "" @@ -5132,7 +5135,7 @@ msgstr "" msgid "Remind me in" msgstr "" -#: src/strings.ts:1506 +#: src/strings.ts:1508 msgid "Remind me of..." msgstr "" @@ -5144,11 +5147,11 @@ msgstr "" msgid "Reminder" msgstr "" -#: src/strings.ts:1246 +#: src/strings.ts:1248 msgid "Reminder notifications" msgstr "" -#: src/strings.ts:1559 +#: src/strings.ts:1561 msgid "Reminder time cannot be earlier than the current time." msgstr "" @@ -5157,16 +5160,16 @@ msgid "reminders" msgstr "" #: src/strings.ts:318 -#: src/strings.ts:1244 -#: src/strings.ts:1522 +#: src/strings.ts:1246 +#: src/strings.ts:1524 msgid "Reminders" msgstr "" -#: src/strings.ts:1379 +#: src/strings.ts:1381 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:1953 +#: src/strings.ts:1955 msgid "Reminders will not be active on this device as it does not support notifications." msgstr "" @@ -5178,19 +5181,19 @@ msgstr "" msgid "Remove all notes from the vault." msgstr "" -#: src/strings.ts:1202 +#: src/strings.ts:1204 msgid "Remove app lock password" msgstr "" -#: src/strings.ts:1206 +#: src/strings.ts:1208 msgid "Remove app lock password, app lock will be disabled if no other security method is enabled." msgstr "" -#: src/strings.ts:1201 +#: src/strings.ts:1203 msgid "Remove app lock pin" msgstr "" -#: src/strings.ts:1204 +#: src/strings.ts:1206 msgid "Remove app lock pin, app lock will be disabled if no other security method is enabled." msgstr "" @@ -5198,7 +5201,7 @@ msgstr "" msgid "Remove as default" msgstr "" -#: src/strings.ts:2316 +#: src/strings.ts:2318 msgid "Remove attachment" msgstr "" @@ -5210,7 +5213,7 @@ msgstr "" msgid "Remove from notebook" msgstr "" -#: src/strings.ts:2456 +#: src/strings.ts:2458 msgid "Remove from recents" msgstr "" @@ -5218,7 +5221,7 @@ msgstr "" msgid "Remove full name" msgstr "" -#: src/strings.ts:2263 +#: src/strings.ts:2265 msgid "Remove link" msgstr "" @@ -5250,19 +5253,19 @@ msgstr "" msgid "Repeats daily at {date}" msgstr "" -#: src/strings.ts:2376 +#: src/strings.ts:2378 msgid "Replace" msgstr "" -#: src/strings.ts:2377 +#: src/strings.ts:2379 msgid "Replace all" msgstr "" -#: src/strings.ts:2164 +#: src/strings.ts:2166 msgid "Report" msgstr "" -#: src/strings.ts:1257 +#: src/strings.ts:1259 msgid "Report an issue" msgstr "" @@ -5279,31 +5282,31 @@ msgstr "" msgid "Resend code{0}" msgstr "" -#: src/strings.ts:1402 +#: src/strings.ts:1404 msgid "Resend email" msgstr "" -#: src/strings.ts:1820 +#: src/strings.ts:1822 msgid "Reset" msgstr "" -#: src/strings.ts:1912 +#: src/strings.ts:1914 msgid "Reset account password" msgstr "" -#: src/strings.ts:2483 +#: src/strings.ts:2485 msgid "Reset homepage" msgstr "" -#: src/strings.ts:1821 +#: src/strings.ts:1823 msgid "Reset selection" msgstr "" -#: src/strings.ts:1648 +#: src/strings.ts:1650 msgid "Reset server urls" msgstr "" -#: src/strings.ts:2030 +#: src/strings.ts:2032 msgid "Reset sidebar" msgstr "" @@ -5315,23 +5318,23 @@ msgstr "" msgid "Reset toolbar" msgstr "" -#: src/strings.ts:1914 +#: src/strings.ts:1916 msgid "Resetting account password ({progress})" msgstr "" -#: src/strings.ts:1989 +#: src/strings.ts:1991 msgid "Restart now" msgstr "" -#: src/strings.ts:1647 +#: src/strings.ts:1649 msgid "Restart the app for changes to take effect." msgstr "" -#: src/strings.ts:1318 +#: src/strings.ts:1320 msgid "Restart the app to apply the changes" msgstr "" -#: src/strings.ts:1593 +#: src/strings.ts:1595 msgid "Restart the app." msgstr "" @@ -5339,11 +5342,11 @@ msgstr "" msgid "Restore" msgstr "" -#: src/strings.ts:1235 +#: src/strings.ts:1237 msgid "Restore backup" msgstr "" -#: src/strings.ts:2405 +#: src/strings.ts:2407 msgid "Restore backup?" msgstr "" @@ -5351,15 +5354,15 @@ msgstr "" msgid "Restore failed" msgstr "" -#: src/strings.ts:1610 +#: src/strings.ts:1612 msgid "Restore from files" msgstr "" -#: src/strings.ts:1660 +#: src/strings.ts:1662 msgid "Restore this version" msgstr "" -#: src/strings.ts:1236 +#: src/strings.ts:1238 msgid "Restore your data from a backup" msgstr "" @@ -5375,7 +5378,7 @@ msgstr "" msgid "Restoring {collection}..." msgstr "" -#: src/strings.ts:1612 +#: src/strings.ts:1614 msgid "Restoring backup..." msgstr "" @@ -5391,7 +5394,7 @@ msgstr "" msgid "Reupload" msgstr "" -#: src/strings.ts:2020 +#: src/strings.ts:2022 msgid "Reveal in list" msgstr "" @@ -5399,7 +5402,7 @@ msgstr "" msgid "Revoke" msgstr "" -#: src/strings.ts:1179 +#: src/strings.ts:1181 msgid "Revoke biometric unlocking" msgstr "" @@ -5407,23 +5410,23 @@ msgstr "" msgid "Revoke vault fingerprint unlock" msgstr "" -#: src/strings.ts:1293 +#: src/strings.ts:1295 msgid "Roadmap" msgstr "" -#: src/strings.ts:2048 +#: src/strings.ts:2050 msgid "Root" msgstr "" -#: src/strings.ts:2027 +#: src/strings.ts:2029 msgid "Rotate left" msgstr "" -#: src/strings.ts:2028 +#: src/strings.ts:2030 msgid "Rotate right" msgstr "" -#: src/strings.ts:2286 +#: src/strings.ts:2288 msgid "Row properties" msgstr "" @@ -5431,7 +5434,7 @@ msgstr "" msgid "Run file check" msgstr "" -#: src/strings.ts:2059 +#: src/strings.ts:2061 msgid "Safe & encrypted notes" msgstr "" @@ -5487,7 +5490,7 @@ msgstr "" msgid "Save to text file" msgstr "" -#: src/strings.ts:1360 +#: src/strings.ts:1362 msgid "Save your account recovery key" msgstr "" @@ -5503,15 +5506,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:2395 +#: src/strings.ts:2397 msgid "Saved" msgstr "" -#: src/strings.ts:2396 +#: src/strings.ts:2398 msgid "Saving" msgstr "" -#: src/strings.ts:1588 +#: src/strings.ts:1590 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 "" @@ -5523,40 +5526,40 @@ msgstr "" msgid "Saving zip file. Please wait..." msgstr "" -#: src/strings.ts:1722 +#: src/strings.ts:1724 msgid "Scan the QR code with your authenticator app" msgstr "" -#: src/strings.ts:2421 +#: src/strings.ts:2423 msgid "School work" msgstr "" -#: src/strings.ts:2494 +#: src/strings.ts:2496 msgid "Scroll to bottom" msgstr "" -#: src/strings.ts:2493 +#: src/strings.ts:2495 msgid "Scroll to top" msgstr "" -#: src/strings.ts:1510 -#: src/strings.ts:1528 +#: src/strings.ts:1512 +#: src/strings.ts:1530 msgid "Search" msgstr "" -#: src/strings.ts:1505 +#: src/strings.ts:1507 msgid "Search a note" msgstr "" -#: src/strings.ts:1503 +#: src/strings.ts:1505 msgid "Search a note to link to" msgstr "" -#: src/strings.ts:2437 +#: src/strings.ts:2439 msgid "Search for notes, notebooks, and tags..." msgstr "" -#: src/strings.ts:1538 +#: src/strings.ts:1540 msgid "Search in {routeName}" msgstr "" @@ -5608,23 +5611,23 @@ msgstr "" msgid "Search in Trash" msgstr "" -#: src/strings.ts:2358 +#: src/strings.ts:2360 msgid "Search languages" msgstr "" -#: src/strings.ts:1491 +#: src/strings.ts:1493 msgid "Search notebooks" msgstr "" -#: src/strings.ts:1504 +#: src/strings.ts:1506 msgid "Search or add a tag" msgstr "" -#: src/strings.ts:1834 +#: src/strings.ts:1836 msgid "Search themes" msgstr "" -#: src/strings.ts:1508 +#: src/strings.ts:1510 msgid "Searching for {query}..." msgstr "" @@ -5632,43 +5635,43 @@ msgstr "" msgid "sec" msgstr "" -#: src/strings.ts:2143 +#: src/strings.ts:2145 msgid "Security & privacy" msgstr "" -#: src/strings.ts:2083 +#: src/strings.ts:2085 msgid "Security key" msgstr "" -#: src/strings.ts:1988 +#: src/strings.ts:1990 msgid "Security key successfully registered." msgstr "" -#: src/strings.ts:1294 +#: src/strings.ts:1296 msgid "See what the future of Notesnook is going to be like." msgstr "" -#: src/strings.ts:1334 +#: src/strings.ts:1336 msgid "Select" msgstr "" -#: src/strings.ts:1609 +#: src/strings.ts:1611 msgid "Select a backup file from your device to restore backup" msgstr "" -#: src/strings.ts:2488 +#: src/strings.ts:2490 msgid "Select a notebook to move this notebook into, or unselect to move it to the root level." msgstr "" -#: src/strings.ts:2098 +#: src/strings.ts:2100 msgid "Select a theme" msgstr "" -#: src/strings.ts:1226 +#: src/strings.ts:1228 msgid "Select backup directory" msgstr "" -#: src/strings.ts:1855 +#: src/strings.ts:1857 msgid "Select backup file" msgstr "" @@ -5684,15 +5687,15 @@ msgstr "" msgid "Select day of the week to repeat the reminder." msgstr "" -#: src/strings.ts:1763 +#: src/strings.ts:1765 msgid "Select files to import" msgstr "" -#: src/strings.ts:1606 +#: src/strings.ts:1608 msgid "Select folder where Notesnook backup files are stored to view and restore them from the app" msgstr "" -#: src/strings.ts:1607 +#: src/strings.ts:1609 msgid "Select folder with backup files" msgstr "" @@ -5700,7 +5703,7 @@ msgstr "" msgid "Select how you would like to recieve the code" msgstr "" -#: src/strings.ts:2353 +#: src/strings.ts:2355 msgid "Select language" msgstr "" @@ -5716,7 +5719,7 @@ msgstr "" msgid "Select notebooks you want to add note(s) to." msgstr "" -#: src/strings.ts:2476 +#: src/strings.ts:2478 msgid "Select notes to link to \"{title}\"" msgstr "" @@ -5724,11 +5727,11 @@ msgstr "" msgid "Select nth day of the month to repeat the reminder." msgstr "" -#: src/strings.ts:1817 +#: src/strings.ts:1819 msgid "Select profile picture" msgstr "" -#: src/strings.ts:2482 +#: src/strings.ts:2484 msgid "Select the default sidebar tab" msgstr "" @@ -5736,11 +5739,11 @@ msgstr "" msgid "Select the folder that includes your backup files to list them here." msgstr "" -#: src/strings.ts:2130 +#: src/strings.ts:2132 msgid "Select the languages the spell checker should check in." msgstr "" -#: src/strings.ts:2458 +#: src/strings.ts:2460 msgid "Select the release track for Notesnook." msgstr "" @@ -5752,7 +5755,7 @@ msgstr "" msgid "Self destruct" msgstr "" -#: src/strings.ts:2165 +#: src/strings.ts:2167 msgid "Send" msgstr "" @@ -5768,47 +5771,47 @@ msgstr "" msgid "Send code via SMS" msgstr "" -#: src/strings.ts:1859 +#: src/strings.ts:1861 msgid "Send recovery email" msgstr "" -#: src/strings.ts:1895 +#: src/strings.ts:1897 msgid "Sending recovery email" msgstr "" -#: src/strings.ts:1646 +#: src/strings.ts:1648 msgid "Server url changed" msgstr "" -#: src/strings.ts:1649 +#: src/strings.ts:1651 msgid "Server urls reset" msgstr "" -#: src/strings.ts:1627 +#: src/strings.ts:1629 msgid "Server used for login/sign up and authentication." msgstr "" -#: src/strings.ts:1632 +#: src/strings.ts:1634 msgid "Server used to host your published notes." msgstr "" -#: src/strings.ts:1630 +#: src/strings.ts:1632 msgid "Server used to receive important notifications & events." msgstr "" -#: src/strings.ts:1625 +#: src/strings.ts:1627 msgid "Server used to sync your notes & other data between devices." msgstr "" -#: src/strings.ts:1638 +#: src/strings.ts:1640 msgid "Server with host {host} not found." msgstr "" -#: src/strings.ts:2138 +#: src/strings.ts:2140 msgid "Servers" msgstr "" -#: src/strings.ts:2139 +#: src/strings.ts:2141 msgid "Servers configuration" msgstr "" @@ -5816,7 +5819,7 @@ msgstr "" msgid "Session expired" msgstr "" -#: src/strings.ts:2191 +#: src/strings.ts:2193 msgid "Sessions" msgstr "" @@ -5832,7 +5835,7 @@ msgstr "" msgid "Set as default" msgstr "" -#: src/strings.ts:2480 +#: src/strings.ts:2482 msgid "Set as homepage" msgstr "" @@ -5840,31 +5843,31 @@ msgstr "" msgid "Set as light theme" msgstr "" -#: src/strings.ts:1333 +#: src/strings.ts:1335 msgid "Set automatic trash cleanup interval from Settings > Behaviour > Clean trash interval." msgstr "" -#: src/strings.ts:2630 +#: src/strings.ts:2632 msgid "Set expiry" msgstr "" -#: src/strings.ts:1310 +#: src/strings.ts:1312 msgid "Set full name" msgstr "" -#: src/strings.ts:1252 +#: src/strings.ts:1254 msgid "Set snooze time in minutes" msgstr "" -#: src/strings.ts:1251 +#: src/strings.ts:1253 msgid "Set the default time to snooze a reminder to when you press the snooze button on a notification." msgstr "" -#: src/strings.ts:1223 +#: src/strings.ts:1225 msgid "Set the interval to create a backup (with attachments) automatically." msgstr "" -#: src/strings.ts:1220 +#: src/strings.ts:1222 msgid "Set the interval to create a partial backup (without attachments) automatically." msgstr "" @@ -5873,24 +5876,24 @@ msgid "Set your name" msgstr "" #: src/strings.ts:387 -#: src/strings.ts:1524 +#: src/strings.ts:1526 msgid "Settings" msgstr "" -#: src/strings.ts:1199 -#: src/strings.ts:1200 +#: src/strings.ts:1201 +#: src/strings.ts:1202 msgid "Setup a new password for app lock" msgstr "" -#: src/strings.ts:1196 +#: src/strings.ts:1198 msgid "Setup a password to lock the app" msgstr "" -#: src/strings.ts:1194 +#: src/strings.ts:1196 msgid "Setup a pin to lock the app" msgstr "" -#: src/strings.ts:2183 +#: src/strings.ts:2185 msgid "" "Setup an HTTP/HTTPS/SOCKS proxy.\n" "\n" @@ -5902,11 +5905,11 @@ msgid "" "To remove the proxy, simply erase everything in the input." msgstr "" -#: src/strings.ts:1195 +#: src/strings.ts:1197 msgid "Setup app lock password" msgstr "" -#: src/strings.ts:1193 +#: src/strings.ts:1195 msgid "Setup app lock pin" msgstr "" @@ -5930,11 +5933,11 @@ msgstr "" msgid "Share" msgstr "" -#: src/strings.ts:1691 +#: src/strings.ts:1693 msgid "Share & append to notes from anywhere" msgstr "" -#: src/strings.ts:1341 +#: src/strings.ts:1343 msgid "Share backup" msgstr "" @@ -5942,7 +5945,7 @@ msgstr "" msgid "Share note" msgstr "" -#: src/strings.ts:1787 +#: src/strings.ts:1789 msgid "Share Notesnook with friends!" msgstr "" @@ -5958,7 +5961,7 @@ msgstr "" msgid "Shortcut" msgstr "" -#: src/strings.ts:2000 +#: src/strings.ts:2002 msgid "Shortcut removed" msgstr "" @@ -5986,11 +5989,11 @@ msgstr "" msgid "Silent" msgstr "" -#: src/strings.ts:2327 +#: src/strings.ts:2329 msgid "Sink list item" msgstr "" -#: src/strings.ts:2041 +#: src/strings.ts:2043 msgid "Size" msgstr "" @@ -5998,7 +6001,7 @@ msgstr "" msgid "Skip" msgstr "" -#: src/strings.ts:1829 +#: src/strings.ts:1831 msgid "Skip & go directly to the app" msgstr "" @@ -6006,19 +6009,19 @@ msgstr "" msgid "Skip introduction" msgstr "" -#: src/strings.ts:1604 +#: src/strings.ts:1606 msgid "Some exported notes are locked, Unlock to export them" msgstr "" -#: src/strings.ts:1476 +#: src/strings.ts:1478 msgid "Some notes are published" msgstr "" -#: src/strings.ts:1666 +#: src/strings.ts:1668 msgid "Something went wrong" msgstr "" -#: src/strings.ts:2025 +#: src/strings.ts:2027 msgid "Sort" msgstr "" @@ -6026,27 +6029,27 @@ msgstr "" msgid "Sort by" msgstr "" -#: src/strings.ts:2149 +#: src/strings.ts:2151 msgid "Source code" msgstr "" -#: src/strings.ts:2354 +#: src/strings.ts:2356 msgid "Spaces" msgstr "" -#: src/strings.ts:2589 +#: src/strings.ts:2591 msgid "Special Offer" msgstr "" -#: src/strings.ts:2126 +#: src/strings.ts:2128 msgid "Spell check" msgstr "" -#: src/strings.ts:2293 +#: src/strings.ts:2295 msgid "Split cells" msgstr "" -#: src/strings.ts:2459 +#: src/strings.ts:2461 msgid "Stable" msgstr "" @@ -6054,23 +6057,23 @@ msgstr "" msgid "Start" msgstr "" -#: src/strings.ts:1830 +#: src/strings.ts:1832 msgid "Start account recovery" msgstr "" -#: src/strings.ts:1825 +#: src/strings.ts:1827 msgid "Start import" msgstr "" -#: src/strings.ts:1822 +#: src/strings.ts:1824 msgid "Start importing now" msgstr "" -#: src/strings.ts:2114 +#: src/strings.ts:2116 msgid "Start minimized" msgstr "" -#: src/strings.ts:1757 +#: src/strings.ts:1759 msgid "Start over" msgstr "" @@ -6082,31 +6085,31 @@ msgstr "" msgid "Start writing to save your note." msgstr "" -#: src/strings.ts:1601 +#: src/strings.ts:1603 msgid "Start writing your note..." msgstr "" -#: src/strings.ts:2222 +#: src/strings.ts:2224 msgid "Status" msgstr "" -#: src/strings.ts:2472 +#: src/strings.ts:2474 msgid "Storage" msgstr "" -#: src/strings.ts:1548 +#: src/strings.ts:1550 msgid "Streaming not supported" msgstr "" -#: src/strings.ts:2259 +#: src/strings.ts:2261 msgid "Strikethrough" msgstr "" -#: src/strings.ts:2224 +#: src/strings.ts:2226 msgid "Subgroup 1" msgstr "" -#: src/strings.ts:1994 +#: src/strings.ts:1996 msgid "Subgroup added" msgstr "" @@ -6114,11 +6117,11 @@ msgstr "" msgid "Submit" msgstr "" -#: src/strings.ts:2568 +#: src/strings.ts:2570 msgid "Subscribe" msgstr "" -#: src/strings.ts:2569 +#: src/strings.ts:2571 msgid "Subscribe and start free trial" msgstr "" @@ -6134,7 +6137,7 @@ msgstr "" msgid "Subscribed on iOS" msgstr "" -#: src/strings.ts:1305 +#: src/strings.ts:1307 msgid "Subscribed on web" msgstr "" @@ -6146,7 +6149,7 @@ msgstr "" msgid "Subscribed using gift card" msgstr "" -#: src/strings.ts:2270 +#: src/strings.ts:2272 msgid "Subscript" msgstr "" @@ -6170,15 +6173,15 @@ msgstr "" msgid "Sunday" msgstr "" -#: src/strings.ts:2271 +#: src/strings.ts:2273 msgid "Superscript" msgstr "" -#: src/strings.ts:1469 +#: src/strings.ts:1471 msgid "Switch to search/replace mode" msgstr "" -#: src/strings.ts:2135 +#: src/strings.ts:2137 msgid "Sync" msgstr "" @@ -6186,7 +6189,7 @@ msgstr "" msgid "Sync failed" msgstr "" -#: src/strings.ts:1363 +#: src/strings.ts:1365 msgid "Sync is disabled" msgstr "" @@ -6198,7 +6201,7 @@ msgstr "" msgid "Sync off" msgstr "" -#: src/strings.ts:1623 +#: src/strings.ts:1625 msgid "Sync server" msgstr "" @@ -6222,11 +6225,11 @@ msgstr "" msgid "Syncing your data" msgstr "" -#: src/strings.ts:1702 +#: src/strings.ts:1704 msgid "Syncing your notes" msgstr "" -#: src/strings.ts:2339 +#: src/strings.ts:2341 msgid "Table" msgstr "" @@ -6234,11 +6237,11 @@ msgstr "" msgid "Table of contents" msgstr "" -#: src/strings.ts:2284 +#: src/strings.ts:2286 msgid "Table settings" msgstr "" -#: src/strings.ts:2533 +#: src/strings.ts:2535 msgid "tables, outlines, block level note linking" msgstr "" @@ -6259,31 +6262,31 @@ msgid "tags" msgstr "" #: src/strings.ts:317 -#: src/strings.ts:1525 +#: src/strings.ts:1527 msgid "Tags" msgstr "" -#: src/strings.ts:1543 +#: src/strings.ts:1545 msgid "Take a backup before logging out" msgstr "" -#: src/strings.ts:1215 +#: src/strings.ts:1217 msgid "Take a full backup of your data with all attachments" msgstr "" -#: src/strings.ts:1217 +#: src/strings.ts:1219 msgid "Take a partial backup of your data that does not include attachments" msgstr "" -#: src/strings.ts:2338 +#: src/strings.ts:2340 msgid "Take a photo using camera" msgstr "" -#: src/strings.ts:1373 +#: src/strings.ts:1375 msgid "Take note" msgstr "" -#: src/strings.ts:1656 +#: src/strings.ts:1658 msgid "Take notes privately." msgstr "" @@ -6291,23 +6294,23 @@ msgstr "" msgid "Taking too long? Reload editor" msgstr "" -#: src/strings.ts:1457 +#: src/strings.ts:1459 msgid "Tap here to change sorting" msgstr "" -#: src/strings.ts:1461 +#: src/strings.ts:1463 msgid "Tap here to jump to a section" msgstr "" -#: src/strings.ts:1369 +#: src/strings.ts:1371 msgid "Tap here to update to the latest version" msgstr "" -#: src/strings.ts:1592 +#: src/strings.ts:1594 msgid "Tap on \"Dismiss\" and copy the contents of your note so they are not lost." msgstr "" -#: src/strings.ts:1372 +#: src/strings.ts:1374 msgid "Tap on \"Take note\" to add a note." msgstr "" @@ -6327,7 +6330,7 @@ msgstr "" msgid "Tap to stop reordering" msgstr "" -#: src/strings.ts:1353 +#: src/strings.ts:1355 msgid "Tap to try again" msgstr "" @@ -6335,11 +6338,11 @@ msgstr "" msgid "Tap twice to confirm you have saved the recovery key." msgstr "" -#: src/strings.ts:2344 +#: src/strings.ts:2346 msgid "Task list" msgstr "" -#: src/strings.ts:2414 +#: src/strings.ts:2416 msgid "Tasks" msgstr "" @@ -6347,7 +6350,7 @@ msgstr "" msgid "Telemetry" msgstr "" -#: src/strings.ts:1495 +#: src/strings.ts:1497 msgid "" "Tell us more about the issue you are facing.\n" "\n" @@ -6358,11 +6361,11 @@ msgid "" "- Things you have tried etc." msgstr "" -#: src/strings.ts:1494 +#: src/strings.ts:1496 msgid "Tell us what happened" msgstr "" -#: src/strings.ts:1283 +#: src/strings.ts:1285 msgid "Terms of service" msgstr "" @@ -6370,39 +6373,39 @@ msgstr "" msgid "Terms of Service " msgstr "" -#: src/strings.ts:2576 +#: src/strings.ts:2578 msgid "terms of use." msgstr "" -#: src/strings.ts:1622 +#: src/strings.ts:1624 msgid "Test connection" msgstr "" -#: src/strings.ts:1645 +#: src/strings.ts:1647 msgid "Test connection before changing server urls" msgstr "" -#: src/strings.ts:2282 +#: src/strings.ts:2284 msgid "Text color" msgstr "" -#: src/strings.ts:2280 +#: src/strings.ts:2282 msgid "Text direction" msgstr "" -#: src/strings.ts:1786 +#: src/strings.ts:1788 msgid "Thank you for choosing end-to-end encrypted note taking. Now you can sync your notes to unlimited devices." msgstr "" -#: src/strings.ts:2050 +#: src/strings.ts:2052 msgid "Thank you for reporting!" msgstr "" -#: src/strings.ts:2550 +#: src/strings.ts:2552 msgid "Thank you for subscribing" msgstr "" -#: src/strings.ts:2584 +#: src/strings.ts:2586 msgid "Thank you for the purchase" msgstr "" @@ -6410,15 +6413,15 @@ msgstr "" msgid "Thank you for updating Notesnook! We will be applying some minor changes for a better note taking experience." msgstr "" -#: src/strings.ts:2075 +#: src/strings.ts:2077 msgid "Thank you. You are the proof that privacy always comes first." msgstr "" -#: src/strings.ts:1643 +#: src/strings.ts:1645 msgid "The {title} at {url} is not compatible with this client." msgstr "" -#: src/strings.ts:2629 +#: src/strings.ts:2631 msgid "The incoming note could not be unlocked with the provided password. Enter the correct password for the incoming note" msgstr "" @@ -6426,11 +6429,11 @@ msgstr "" msgid "The information above will be publically available at" msgstr "" -#: src/strings.ts:2603 +#: src/strings.ts:2605 msgid "The Notesnook Circle is exclusive to subscribers. Please consider subscribing to gain access to Notesnook Circle and enjoy additional benefits." msgstr "" -#: src/strings.ts:2082 +#: src/strings.ts:2084 msgid "The password/pin for unlocking the app." msgstr "" @@ -6442,15 +6445,15 @@ msgstr "" msgid "The reminder will repeat every year on {date}." msgstr "" -#: src/strings.ts:1712 +#: src/strings.ts:1714 msgid "The reminder will start on {date} at {time}." msgstr "" -#: src/strings.ts:2085 +#: src/strings.ts:2087 msgid "The security key for unlocking the app. This is the most secure method." msgstr "" -#: src/strings.ts:1641 +#: src/strings.ts:1643 msgid "The URL you have given ({url}) does not point to the {server}." msgstr "" @@ -6462,11 +6465,11 @@ msgstr "" msgid "There are no blocks in this note." msgstr "" -#: src/strings.ts:2237 +#: src/strings.ts:2239 msgid "These items will be **kept in your Trash for {interval} days** after which they will be permanently deleted." msgstr "" -#: src/strings.ts:1920 +#: src/strings.ts:1922 msgid "This action is IRREVERSIBLE." msgstr "" @@ -6474,39 +6477,39 @@ msgstr "" msgid "This device" msgstr "" -#: src/strings.ts:1683 +#: src/strings.ts:1685 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:1675 +#: src/strings.ts:1677 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:1679 +#: src/strings.ts:1681 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:1677 +#: src/strings.ts:1679 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:1673 +#: src/strings.ts:1675 msgid "This error usually means the database file is either corrupt or it could not be decrypted." msgstr "" -#: src/strings.ts:1681 +#: src/strings.ts:1683 msgid "This error usually means the search index is corrupted." msgstr "" -#: src/strings.ts:1934 +#: src/strings.ts:1936 msgid "This image cannot be previewed" msgstr "" -#: src/strings.ts:2570 +#: src/strings.ts:2572 msgid "This is a one time purchase, no subscription." msgstr "" -#: src/strings.ts:2045 +#: src/strings.ts:2047 msgid "This may take a while" msgstr "" @@ -6515,11 +6518,11 @@ 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:2635 +#: src/strings.ts:2637 msgid "This note is empty" msgstr "" -#: src/strings.ts:1594 +#: src/strings.ts:1596 msgid "This note is locked" msgstr "" @@ -6539,11 +6542,11 @@ msgstr "" msgid "This note will be published to a public URL." msgstr "" -#: src/strings.ts:2091 +#: src/strings.ts:2093 msgid "This username will be used to distinguish between different credentials in your security key. Make sure it is unique." msgstr "" -#: src/strings.ts:1303 +#: src/strings.ts:1305 msgid "This version of Notesnook app does not support in-app purchases. Kindly login on the Notesnook web app to make the purchase." msgstr "" @@ -6555,7 +6558,7 @@ msgstr "" msgid "Thursday" msgstr "" -#: src/strings.ts:1842 +#: src/strings.ts:1844 msgid "Time" msgstr "" @@ -6576,31 +6579,31 @@ msgstr "" msgid "Title format" msgstr "" -#: src/strings.ts:1188 +#: src/strings.ts:1190 msgid "To use app lock, you must enable biometrics such as Fingerprint lock or Face ID on your phone." msgstr "" -#: src/strings.ts:1812 +#: src/strings.ts:1814 msgid "Toggle dark/light mode" msgstr "" -#: src/strings.ts:2462 +#: src/strings.ts:2464 msgid "Toggle focus mode" msgstr "" -#: src/strings.ts:2351 +#: src/strings.ts:2353 msgid "Toggle indentation mode" msgstr "" -#: src/strings.ts:2380 +#: src/strings.ts:2382 msgid "Toggle replace" msgstr "" -#: src/strings.ts:2451 +#: src/strings.ts:2453 msgid "Toggle theme" msgstr "" -#: src/strings.ts:2132 +#: src/strings.ts:2134 msgid "Toolbar" msgstr "" @@ -6608,36 +6611,36 @@ msgstr "" msgid "Toolbar reset to default preset" msgstr "" -#: src/strings.ts:1326 -#: src/strings.ts:1523 +#: src/strings.ts:1328 +#: src/strings.ts:1525 msgid "Trash" msgstr "" -#: src/strings.ts:1325 +#: src/strings.ts:1327 msgid "Trash cleared successfully!" msgstr "" -#: src/strings.ts:1331 +#: src/strings.ts:1333 msgid "Trash gets automatically cleaned up after {days} days" msgstr "" -#: src/strings.ts:1329 +#: src/strings.ts:1331 msgid "Trash gets automatically cleaned up daily" msgstr "" -#: src/strings.ts:2540 +#: src/strings.ts:2542 msgid "Try {plan} for free" msgstr "" -#: src/strings.ts:1465 +#: src/strings.ts:1467 msgid "Try compact mode to fit more items on screen" msgstr "" -#: src/strings.ts:1824 +#: src/strings.ts:1826 msgid "Try free for 14 days" msgstr "" -#: src/strings.ts:2526 +#: src/strings.ts:2528 msgid "Try it for free" msgstr "" @@ -6677,27 +6680,27 @@ msgstr "" msgid "Two-factor authentication enabled" msgstr "" -#: src/strings.ts:1502 +#: src/strings.ts:1504 msgid "Type # to search for headings" msgstr "" -#: src/strings.ts:1509 +#: src/strings.ts:1511 msgid "Type a keyword" msgstr "" -#: src/strings.ts:1549 +#: src/strings.ts:1551 msgid "Unable to resolve download url" msgstr "" -#: src/strings.ts:1552 +#: src/strings.ts:1554 msgid "Unable to send 2FA code" msgstr "" -#: src/strings.ts:2486 +#: src/strings.ts:2488 msgid "Unarchive" msgstr "" -#: src/strings.ts:2258 +#: src/strings.ts:2260 msgid "Underline" msgstr "" @@ -6709,7 +6712,7 @@ msgstr "" msgid "Unfavorite" msgstr "" -#: src/strings.ts:2580 +#: src/strings.ts:2582 msgid "Unlimited" msgstr "" @@ -6725,11 +6728,11 @@ msgstr "" msgid "Unlock" msgstr "" -#: src/strings.ts:2627 +#: src/strings.ts:2629 msgid "Unlock incoming note" msgstr "" -#: src/strings.ts:1383 +#: src/strings.ts:1385 msgid "Unlock more colors with Notesnook Pro" msgstr "" @@ -6742,11 +6745,11 @@ msgstr "" msgid "Unlock note to delete it" msgstr "" -#: src/strings.ts:1208 +#: src/strings.ts:1210 msgid "Unlock the app with biometric authentication. This requires biometrics to be enabled on your device." msgstr "" -#: src/strings.ts:1932 +#: src/strings.ts:1934 msgid "Unlock vault" msgstr "" @@ -6754,7 +6757,7 @@ msgstr "" msgid "Unlock with biometrics" msgstr "" -#: src/strings.ts:1827 +#: src/strings.ts:1829 msgid "Unlock with security key" msgstr "" @@ -6762,11 +6765,11 @@ msgstr "" msgid "Unlock your notes" msgstr "" -#: src/strings.ts:1178 +#: src/strings.ts:1180 msgid "Unlock your vault with biometric authentication" msgstr "" -#: src/strings.ts:1710 +#: src/strings.ts:1712 msgid "Unlocking" msgstr "" @@ -6782,20 +6785,20 @@ msgstr "" msgid "Unpublish" msgstr "" -#: src/strings.ts:1477 +#: src/strings.ts:1479 msgid "Unpublish notes to delete them" msgstr "" -#: src/strings.ts:2086 +#: src/strings.ts:2088 msgid "Unregister" msgstr "" -#: src/strings.ts:2631 +#: src/strings.ts:2633 msgid "Unset expiry" msgstr "" #: src/strings.ts:210 -#: src/strings.ts:2360 +#: src/strings.ts:2362 msgid "Untitled" msgstr "" @@ -6807,31 +6810,31 @@ msgstr "" msgid "Update available" msgstr "" -#: src/strings.ts:1370 +#: src/strings.ts:1372 msgid "Update now" msgstr "" -#: src/strings.ts:2500 +#: src/strings.ts:2502 msgid "Upgrade" msgstr "" -#: src/strings.ts:1918 +#: src/strings.ts:1920 msgid "Upgrade now" msgstr "" -#: src/strings.ts:2499 +#: src/strings.ts:2501 msgid "Upgrade plan" msgstr "" -#: src/strings.ts:2525 +#: src/strings.ts:2527 msgid "Upgrade plan to {plan} to use this feature." msgstr "" -#: src/strings.ts:1939 +#: src/strings.ts:1941 msgid "Upgrade to Notesnook Pro to add colors." msgstr "" -#: src/strings.ts:1940 +#: src/strings.ts:1942 msgid "Upgrade to Notesnook Pro to create more tags." msgstr "" @@ -6839,7 +6842,7 @@ msgstr "" msgid "Upgrade to Pro" msgstr "" -#: src/strings.ts:2595 +#: src/strings.ts:2597 msgid "Upgrade to redeem" msgstr "" @@ -6847,12 +6850,12 @@ msgstr "" msgid "Upload" msgstr "" -#: src/strings.ts:2337 +#: src/strings.ts:2339 msgid "Upload from disk" msgstr "" #: src/strings.ts:511 -#: src/strings.ts:1651 +#: src/strings.ts:1653 msgid "Uploaded" msgstr "" @@ -6873,11 +6876,11 @@ msgstr "" msgid "Urgent" msgstr "" -#: src/strings.ts:2387 +#: src/strings.ts:2389 msgid "URL" msgstr "" -#: src/strings.ts:1789 +#: src/strings.ts:1791 msgid "Use" msgstr "" @@ -6885,11 +6888,11 @@ msgstr "" msgid "Use {keyboardShortcut}+click to select multiple notebooks" msgstr "" -#: src/strings.ts:1802 +#: src/strings.ts:1804 msgid "Use a backup file" msgstr "" -#: src/strings.ts:1900 +#: src/strings.ts:1902 msgid "Use a data recovery key to reset your account password." msgstr "" @@ -6897,7 +6900,7 @@ msgstr "" msgid "Use account password" msgstr "" -#: src/strings.ts:2532 +#: src/strings.ts:2534 msgid "Use advanced note taking features like" msgstr "" @@ -6905,7 +6908,7 @@ msgstr "" msgid "Use an authenticator app to generate 2FA codes." msgstr "" -#: src/strings.ts:2172 +#: src/strings.ts:2174 msgid "Use custom DNS" msgstr "" @@ -6913,7 +6916,7 @@ msgstr "" msgid "Use dark mode for the app" msgstr "" -#: src/strings.ts:1621 +#: src/strings.ts:1623 msgid "Use encryption key" msgstr "" @@ -6921,15 +6924,15 @@ msgstr "" msgid "Use markdown shortcuts in the editor" msgstr "" -#: src/strings.ts:2125 +#: src/strings.ts:2127 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:2123 +#: src/strings.ts:2125 msgid "Use native titlebar" msgstr "" -#: src/strings.ts:1799 +#: src/strings.ts:1801 msgid "Use recovery key" msgstr "" @@ -6958,7 +6961,7 @@ msgstr "" msgid "Use this if changes made on this device are not appearing on other devices. This will overwrite the data on the server with the data from this device." msgstr "" -#: src/strings.ts:2473 +#: src/strings.ts:2475 msgid "used" msgstr "" @@ -6966,15 +6969,15 @@ msgstr "" msgid "User verification failed" msgstr "" -#: src/strings.ts:2254 +#: src/strings.ts:2256 msgid "Using {instance} (v{version})" msgstr "" -#: src/strings.ts:2252 +#: src/strings.ts:2254 msgid "Using official Notesnook instance" msgstr "" -#: src/strings.ts:1709 +#: src/strings.ts:1711 msgid "v{version} available" msgstr "" @@ -6982,7 +6985,7 @@ msgstr "" msgid "Vault" msgstr "" -#: src/strings.ts:1992 +#: src/strings.ts:1994 msgid "Vault cleared" msgstr "" @@ -6990,7 +6993,7 @@ msgstr "" msgid "Vault created" msgstr "" -#: src/strings.ts:1993 +#: src/strings.ts:1995 msgid "Vault deleted" msgstr "" @@ -6998,15 +7001,15 @@ msgstr "" msgid "Vault fingerprint unlock" msgstr "" -#: src/strings.ts:1931 +#: src/strings.ts:1933 msgid "Vault locked" msgstr "" -#: src/strings.ts:1930 +#: src/strings.ts:1932 msgid "Vault unlocked" msgstr "" -#: src/strings.ts:1400 +#: src/strings.ts:1402 msgid "Verification email sent" msgstr "" @@ -7022,11 +7025,11 @@ msgstr "" msgid "Verify your subscription to Notesnook Pro" msgstr "" -#: src/strings.ts:1903 +#: src/strings.ts:1905 msgid "Verifying 2FA code" msgstr "" -#: src/strings.ts:1889 +#: src/strings.ts:1891 msgid "Verifying your email" msgstr "" @@ -7046,11 +7049,11 @@ msgstr "" msgid "View all linked notebooks" msgstr "" -#: src/strings.ts:1270 +#: src/strings.ts:1272 msgid "View and share debug logs" msgstr "" -#: src/strings.ts:1747 +#: src/strings.ts:1749 msgid "View receipt" msgstr "" @@ -7058,7 +7061,7 @@ msgstr "" msgid "View recovery codes" msgstr "" -#: src/strings.ts:2152 +#: src/strings.ts:2154 msgid "View source code" msgstr "" @@ -7066,7 +7069,7 @@ msgstr "" msgid "View your recovery codes to recover your account in case you lose access to your two-factor authentication methods." msgstr "" -#: src/strings.ts:2610 +#: src/strings.ts:2612 msgid "Views" msgstr "" @@ -7074,15 +7077,15 @@ msgstr "" msgid "Visit homepage" msgstr "" -#: src/strings.ts:1350 +#: src/strings.ts:1352 msgid "Wait 30 seconds to try again" msgstr "" -#: src/strings.ts:1652 +#: src/strings.ts:1654 msgid "Waiting for upload" msgstr "" -#: src/strings.ts:1911 +#: src/strings.ts:1913 msgid "We are creating a backup of your data. Please wait..." msgstr "" @@ -7090,15 +7093,15 @@ 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:1390 +#: src/strings.ts:1392 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:2511 +#: src/strings.ts:2513 msgid "We require credit card details to fight abuse and to make it seamless for you to upgrade. Your credit card is NOT charged until your free trial ends and your subscription starts. You will be notified via email of the upcoming charge before your trial ends." msgstr "" -#: src/strings.ts:2167 +#: src/strings.ts:2169 msgid "We send you occasional promotional offers & product updates on your email (once every month)." msgstr "" @@ -7106,19 +7109,19 @@ msgstr "" msgid "We will send you occasional promotional offers & product updates on your email (sent once every month)." msgstr "" -#: src/strings.ts:1354 +#: src/strings.ts:1356 msgid "We would love to know what you think!" msgstr "" -#: src/strings.ts:2552 +#: src/strings.ts:2554 msgid "We’re setting up your plan right now. We’ll notify you as soon as everything is ready." msgstr "" -#: src/strings.ts:2322 +#: src/strings.ts:2324 msgid "Web clip settings" msgstr "" -#: src/strings.ts:2029 +#: src/strings.ts:2031 msgid "Website" msgstr "" @@ -7134,12 +7137,12 @@ msgstr "" msgid "Week" msgstr "" -#: src/strings.ts:2623 +#: src/strings.ts:2625 msgid "Week format" msgstr "" #: src/strings.ts:168 -#: src/strings.ts:1569 +#: src/strings.ts:1571 msgid "Weekly" msgstr "" @@ -7147,47 +7150,47 @@ msgstr "" msgid "Welcome back, {email}" msgstr "" -#: src/strings.ts:1888 +#: src/strings.ts:1890 msgid "Welcome back!" msgstr "" -#: src/strings.ts:2583 +#: src/strings.ts:2585 msgid "Welcome to Notesnook {plan}" msgstr "" -#: src/strings.ts:2073 +#: src/strings.ts:2075 msgid "Welcome to Notesnook Pro" msgstr "" -#: src/strings.ts:1392 +#: src/strings.ts:1394 msgid "What do I do if I am not getting the email?" msgstr "" -#: src/strings.ts:2503 +#: src/strings.ts:2505 msgid "What happens to my data if I switch plans?" msgstr "" -#: src/strings.ts:2519 +#: src/strings.ts:2521 msgid "What is your refund policy?" msgstr "" -#: src/strings.ts:1667 +#: src/strings.ts:1669 msgid "What went wrong?" msgstr "" -#: src/strings.ts:2509 +#: src/strings.ts:2511 msgid "Why do you need my credit card details for a free trial?" msgstr "" -#: src/strings.ts:2383 +#: src/strings.ts:2385 msgid "Width" msgstr "" -#: src/strings.ts:2489 +#: src/strings.ts:2491 msgid "Words" msgstr "" -#: src/strings.ts:2412 +#: src/strings.ts:2414 msgid "Work & Office" msgstr "" @@ -7195,15 +7198,15 @@ msgstr "" msgid "Write notes with freedom, no spying, no tracking." msgstr "" -#: src/strings.ts:1374 +#: src/strings.ts:1376 msgid "Write something..." msgstr "" -#: src/strings.ts:1654 +#: src/strings.ts:1656 msgid "Write with freedom." msgstr "" -#: src/strings.ts:2061 +#: src/strings.ts:2063 msgid "Write with freedom. Never compromise on privacy again." msgstr "" @@ -7212,7 +7215,7 @@ msgid "Year" msgstr "" #: src/strings.ts:170 -#: src/strings.ts:1571 +#: src/strings.ts:1573 msgid "Yearly" msgstr "" @@ -7220,7 +7223,7 @@ msgstr "" msgid "Yes" msgstr "" -#: src/strings.ts:2516 +#: src/strings.ts:2518 msgid "Yes, you can cancel your trial anytime. No questions asked." msgstr "" @@ -7228,23 +7231,23 @@ msgstr "" msgid "You also agree to recieve marketing emails from us which you can opt-out of from app settings." msgstr "" -#: src/strings.ts:2588 +#: src/strings.ts:2590 msgid "You are already subscribed to this plan." msgstr "" -#: src/strings.ts:2239 +#: src/strings.ts:2241 msgid "You are editing \"{notebookTitle}\"." msgstr "" -#: src/strings.ts:2043 +#: src/strings.ts:2045 msgid "You are editing #{tag}" msgstr "" -#: src/strings.ts:1781 +#: src/strings.ts:1783 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:1361 +#: src/strings.ts:1363 msgid "You are not logged in" msgstr "" @@ -7260,27 +7263,27 @@ msgstr "" msgid "You can also link a note to multiple Notebooks. Tap and hold any notebook to enable multi-select." msgstr "" -#: src/strings.ts:2064 +#: src/strings.ts:2066 msgid "You can change the theme at any time from Settings or the side menu." msgstr "" -#: src/strings.ts:2591 +#: src/strings.ts:2593 msgid "You can change your subscription plan from the web app" msgstr "" -#: src/strings.ts:2420 +#: src/strings.ts:2422 msgid "You can create shortcuts of frequently accessed notebooks in the side menu" msgstr "" -#: src/strings.ts:2079 +#: src/strings.ts:2081 msgid "You can import your notes from most other note taking apps." msgstr "" -#: src/strings.ts:1436 +#: src/strings.ts:1438 msgid "You can multi-select notes and move them to a notebook at once" msgstr "" -#: src/strings.ts:1427 +#: src/strings.ts:1429 msgid "You can pin frequently used Notebooks to the Side Menu to quickly access them." msgstr "" @@ -7288,11 +7291,11 @@ msgstr "" msgid "You can set a custom proxy URL to increase your privacy." msgstr "" -#: src/strings.ts:1408 +#: src/strings.ts:1410 msgid "You can swipe left anywhere in the app to start a new note." msgstr "" -#: src/strings.ts:2053 +#: src/strings.ts:2055 msgid "" "You can track your bug report at [{url}]({url}).\n" "\n" @@ -7313,23 +7316,23 @@ msgstr "" msgid "You can use fallback 2FA method incase you are unable to login via primary method" msgstr "" -#: src/strings.ts:1450 +#: src/strings.ts:1452 msgid "You can view & restore older versions of any note by going to its properties -> History." msgstr "" -#: src/strings.ts:1749 +#: src/strings.ts:1751 msgid "You have {count} custom dictionary words." msgstr "" -#: src/strings.ts:2198 +#: src/strings.ts:2200 msgid "You have been logged out from all other devices." msgstr "" -#: src/strings.ts:2192 +#: src/strings.ts:2194 msgid "You have been logged out." msgstr "" -#: src/strings.ts:2587 +#: src/strings.ts:2589 msgid "You have made a one time purchase. To change your plan please contact support." msgstr "" @@ -7357,11 +7360,11 @@ msgstr "" msgid "You have not set any reminders yet" msgstr "" -#: src/strings.ts:1545 +#: src/strings.ts:1547 msgid "You have unsynced notes. Take a backup or sync your notes to avoid losing your critical data." msgstr "" -#: src/strings.ts:1634 +#: src/strings.ts:1636 msgid "You must log out in order to change/reset server URLs." msgstr "" @@ -7397,7 +7400,7 @@ msgstr "" msgid "You will be logged out from all your devices" msgstr "" -#: src/strings.ts:1851 +#: src/strings.ts:1853 msgid "You will receive instructions on how to recover your account on this email" msgstr "" @@ -7405,16 +7408,16 @@ msgstr "" msgid "Your account email will be changed without affecting your subscription or any other settings." msgstr "" -#: src/strings.ts:1917 +#: src/strings.ts:1919 msgid "Your account has been recovered." msgstr "" #: src/strings.ts:502 -#: src/strings.ts:1728 +#: src/strings.ts:1730 msgid "Your account is now 100% secure against unauthorized logins." msgstr "" -#: src/strings.ts:1856 +#: src/strings.ts:1858 msgid "Your account password must be strong & unique." msgstr "" @@ -7426,47 +7429,47 @@ msgstr "" msgid "Your archive" msgstr "" -#: src/strings.ts:2485 +#: src/strings.ts:2487 msgid "Your archive is empty" msgstr "" -#: src/strings.ts:1929 +#: src/strings.ts:1931 msgid "Your backup is ready to download" msgstr "" -#: src/strings.ts:1586 +#: src/strings.ts:1588 msgid "Your changes could not be saved" msgstr "" -#: src/strings.ts:1776 +#: src/strings.ts:1778 msgid "Your changes have been saved and will be reflected after the app has refreshed." msgstr "" -#: src/strings.ts:2099 +#: src/strings.ts:2101 msgid "Your current 2FA method is {method}" msgstr "" -#: src/strings.ts:2594 +#: src/strings.ts:2596 msgid "Your current subscription does not allow changing plans" msgstr "" -#: src/strings.ts:1801 +#: src/strings.ts:1803 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:1854 +#: src/strings.ts:1856 msgid "Your data recovery key will be used to decrypt your data" msgstr "" -#: src/strings.ts:2505 +#: src/strings.ts:2507 msgid "Your data remains 100% accessible regardless of what plan you are on. That includes your notes, notebooks, attachments, and anything else you might have created." msgstr "" -#: src/strings.ts:1784 +#: src/strings.ts:1786 msgid "Your email has been confirmed." msgstr "" -#: src/strings.ts:2496 +#: src/strings.ts:2498 msgid "Your email has been confirmed. You can now securely sync your encrypted notes across all devices." msgstr "" @@ -7482,7 +7485,7 @@ msgstr "" msgid "Your free trial ends on {date}" msgstr "" -#: src/strings.ts:1404 +#: src/strings.ts:1406 msgid "Your free trial has expired" msgstr "" @@ -7490,15 +7493,15 @@ msgstr "" msgid "Your free trial has started" msgstr "" -#: src/strings.ts:1403 +#: src/strings.ts:1405 msgid "Your free trial is ending soon" msgstr "" -#: src/strings.ts:2622 +#: src/strings.ts:2624 msgid "Your free trial is on-going. Your subscription will start on {trialExpiryDate}" msgstr "" -#: src/strings.ts:1778 +#: src/strings.ts:1780 msgid "Your full name" msgstr "" @@ -7506,7 +7509,7 @@ msgstr "" msgid "Your monographs" msgstr "" -#: src/strings.ts:1312 +#: src/strings.ts:1314 msgid "Your name is stored 100% end-to-end encrypted and only visible to you." msgstr "" @@ -7522,7 +7525,7 @@ msgstr "" msgid "Your notes" msgstr "" -#: src/strings.ts:1892 +#: src/strings.ts:1894 msgid "Your password is always hashed before leaving this device." msgstr "" @@ -7530,11 +7533,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:1309 +#: src/strings.ts:1311 msgid "Your profile pictrure is stored 100% end-to-end encrypted and only visible to you." msgstr "" -#: src/strings.ts:1997 +#: src/strings.ts:1999 msgid "Your refund has been issued. Please wait 24 hours before reaching out to us in case you do not receive your funds." msgstr "" @@ -7550,7 +7553,7 @@ msgstr "" msgid "Your subscription ends on {date}" msgstr "" -#: src/strings.ts:1995 +#: src/strings.ts:1997 msgid "Your subscription has been canceled." msgstr "" @@ -7578,22 +7581,22 @@ msgstr "" msgid "Zipping" msgstr "" -#: src/strings.ts:2461 +#: src/strings.ts:2463 msgid "Zoom" msgstr "" -#: src/strings.ts:2093 +#: src/strings.ts:2095 msgid "Zoom factor" msgstr "" -#: src/strings.ts:1700 +#: src/strings.ts:1702 msgid "Zoom in" msgstr "" -#: src/strings.ts:2094 +#: src/strings.ts:2096 msgid "Zoom in or out the app content." msgstr "" -#: src/strings.ts:1699 +#: src/strings.ts:1701 msgid "Zoom out" msgstr "" diff --git a/packages/intl/src/strings.ts b/packages/intl/src/strings.ts index a31841975..72b3305a0 100644 --- a/packages/intl/src/strings.ts +++ b/packages/intl/src/strings.ts @@ -1173,7 +1173,9 @@ $day$: Current day (eg. Monday)`, changeVaultPasswordDesc: () => t`All locked notes will be re-encrypted with the new password.`, clearVaultDesc: () => t`Remove all notes from the vault.`, - deleteVaultDesc: () => t`Delete vault (and optionally remove all notes).`, + deleteVaultDesc: () => t`All locked notes will be PERMANENTLY DELETED. + +If you want to keep them, remove locked notes from the vault.`, biometricUnlock: () => t`Biometric unlocking`, biometricUnlockDesc: () => t`Unlock your vault with biometric authentication`, revokeBiometricUnlock: () => t`Revoke biometric unlocking`,