From a037e772db18aca19b30a97cbdcc739acac702fb Mon Sep 17 00:00:00 2001 From: Abdullah Atta Date: Fri, 7 Aug 2026 12:54:42 +0500 Subject: [PATCH] web: refactor and cleanup auth & recovery Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com> --- apps/web/src/views/auth.tsx | 415 +++--- apps/web/src/views/recovery.tsx | 229 +--- packages/intl/locale/en.po | 1683 ++++++++++++------------- packages/intl/locale/pseudo-LOCALE.po | 1657 ++++++++++++------------ packages/intl/src/strings.ts | 3 +- 5 files changed, 1907 insertions(+), 2080 deletions(-) diff --git a/apps/web/src/views/auth.tsx b/apps/web/src/views/auth.tsx index dbbc9b6fd..a8914b146 100644 --- a/apps/web/src/views/auth.tsx +++ b/apps/web/src/views/auth.tsx @@ -49,7 +49,6 @@ import { getQueryParams, hardNavigate, makeURL } from "../navigation"; import { store as userstore } from "../stores/user-store"; import { db } from "../common/db"; import Config from "../utils/config"; -import { Loader } from "../components/loader"; import { showToast } from "../utils/toast"; import AuthContainer from "../components/auth-container"; import { useTimer } from "../hooks/use-timer"; @@ -242,10 +241,6 @@ function Login(props: BaseAuthComponentProps<"login">) { action={{ text: strings.signUp(), onClick: () => navigate("signup") }} /> } - loading={{ - title: strings.loggingIn(), - subtitle: strings.authWait() - }} onSubmit={async (form) => { if (!isEmail(form.email)) throw new Error(strings.emailInvalid()); @@ -268,7 +263,7 @@ function Login(props: BaseAuthComponentProps<"login">) { }); }} > - {(form?: LoginFormData) => ( + {(form, options) => ( <> {IS_BETA ? ( ) { > {strings.forgotPassword()} - + )} @@ -337,10 +339,6 @@ function Signup(props: BaseAuthComponentProps<"signup">) { }} /> } - loading={{ - title: strings.creatingAccount(), - subtitle: strings.creatingAccountDesc() - }} openURL={openURL} onSubmit={async (form) => { if (!isEmail(form.email)) throw new Error(strings.emailInvalid()); @@ -353,7 +351,7 @@ function Signup(props: BaseAuthComponentProps<"signup">) { openURL("/plans", { authenticated: true }); }} > - {(form?: SignupFormData) => ( + {(form, options) => ( <> ) { label={strings.confirmPassword()} defaultValue={form?.["confirm-password"]} /> - + )} @@ -411,10 +416,6 @@ function SessionExpiry(props: BaseAuthComponentProps<"sessionExpiry">) { } - loading={{ - title: strings.loggingIn(), - subtitle: strings.pleaseWaitLogin() - }} openURL={openURL} onSubmit={async (form) => { if (!user) return; @@ -440,59 +441,70 @@ function SessionExpiry(props: BaseAuthComponentProps<"sessionExpiry">) { }); }} > - - - - - + {(_, options) => ( + <> + + + + + + + )} ); } @@ -737,10 +749,6 @@ function MFACode(props: BaseAuthComponentProps<"mfa:code">) { type="mfa:code" title={strings["2fa"]()} subtitle={texts.subtitle} - loading={{ - title: strings.verifying2faCode(), - subtitle: strings.authWait() - }} openURL={openURL} onSubmit={async (form) => { const code = selectedMethod !== "recoveryCode" ? otpValue : form.code; @@ -761,34 +769,115 @@ function MFACode(props: BaseAuthComponentProps<"mfa:code">) { }); }} > - {selectedMethod !== "recoveryCode" ? ( - - ) : ( - - )} - - - {(selectedMethod === "sms" || selectedMethod === "email") && ( - <> - ( + <> + {selectedMethod !== "recoveryCode" ? ( + + ) : ( + + )} + + + {(selectedMethod === "sms" || selectedMethod === "email") && ( + <> + + + + + + + + {"Didn't receive code?"} + + {!enabled && ( + + {`${strings.resendCodeWait()} `} + + {elapsed}s + + + )} + + + + + + )} + + - - - )} - - - - - + + )} ); } @@ -946,10 +971,6 @@ function MFASelector(props: BaseAuthComponentProps<"mfa:select">) { type="mfa:select" title={strings.select2faMethod()} subtitle={strings.select2faCodeHelpText()} - loading={{ - title: strings.loggingIn(), - subtitle: strings.authWait() - }} openURL={openURL} onSubmit={async () => {}} onBack={() => navigate("mfa:code", formData)} @@ -1035,13 +1056,17 @@ function MFASelector(props: BaseAuthComponentProps<"mfa:select">) { // function MFAMethodSelector(params) {} -type AuthFormProps = { +export type AuthFormContainerProps< + TType extends string, + TFormData extends Record> +> = { + testId?: string; title: string; subtitle: string | JSX.Element; // loading: { title: string; subtitle: string }; type: TType; - onSubmit: (form: AuthFormData[TType]) => Promise; - openURL: OpenURLFunction; + onSubmit: (form: TFormData[TType]) => Promise; + openURL?: OpenURLFunction; loadForever?: boolean; canSkip?: boolean; showAgreement?: boolean; @@ -1049,12 +1074,21 @@ type AuthFormProps = { children?: | React.ReactNode | (( - form?: AuthFormData[TType], + form?: TFormData[TType], options?: { loading?: boolean } ) => React.ReactNode); }; -export function AuthForm(props: AuthFormProps) { +function AuthForm( + props: AuthFormContainerProps +) { + return ; +} + +export function AuthFormContainer< + TType extends string, + TFormData extends Record> +>(props: AuthFormContainerProps) { const { title, subtitle, @@ -1068,7 +1102,7 @@ export function AuthForm(props: AuthFormProps) { const [isSubmitting, setIsSubmitting] = useState(false); const [error, setError] = useState(); const formRef = useRef(null); - const [form, setForm] = useState(); + const [form, setForm] = useState(); // if (isSubmitting) // return ; @@ -1088,7 +1122,7 @@ export function AuthForm(props: AuthFormProps) { const formData = new FormData(formRef.current); const form = Object.fromEntries( formData.entries() - ) as AuthFormData[T]; + ) as TFormData[TType]; try { setForm(form); await props.onSubmit(form); @@ -1137,7 +1171,8 @@ export function AuthForm(props: AuthFormProps) { sx={{ fontSize: "sm", fontWeight: 600, - color: "heading" + color: "heading", + lineHeight: "100%" }} > {strings.goBack()} @@ -1198,7 +1233,7 @@ export function AuthForm(props: AuthFormProps) { ? children(form, { loading: isSubmitting }) : children} - {canSkip && ( + {canSkip && openURL && ( - )} - - - - - - Notesnook - - - - {title} - - - {subtitle} - - {typeof children === "function" ? children(form) : children} - - - ); + return ; } function openURL(url: string) { diff --git a/packages/intl/locale/en.po b/packages/intl/locale/en.po index cac9987d6..b355ff133 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:2486 +#: src/strings.ts:2480 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:2006 +#: src/strings.ts:2000 msgid " Upgrade to Notesnook Pro to add more notebooks." msgstr " Upgrade to Notesnook Pro to add more notebooks." -#: src/strings.ts:2009 +#: src/strings.ts:2003 msgid " Upgrade to Notesnook Pro to customize the toolbar." msgstr " Upgrade to Notesnook Pro to customize the toolbar." -#: src/strings.ts:2008 +#: src/strings.ts:2002 msgid " Upgrade to Notesnook Pro to use custom toolbar presets." msgstr " Upgrade to Notesnook Pro to use custom toolbar presets." -#: src/strings.ts:2007 +#: src/strings.ts:2001 msgid " Upgrade to Notesnook Pro to use the notes vault." msgstr " Upgrade to Notesnook Pro to use the notes vault." -#: src/strings.ts:2010 +#: src/strings.ts:2004 msgid " Upgrade to Notesnook Pro to use this feature." msgstr " Upgrade to Notesnook Pro to use this feature." @@ -69,7 +69,7 @@ msgid "{0} Highlights ๐ŸŽ‰" msgstr "{0} Highlights ๐ŸŽ‰" #. placeholder {0}: platform === "ios" ? "Apple" : "Google" -#: src/strings.ts:2652 +#: src/strings.ts:2646 msgid "{0} will remind you before your trial ends" msgstr "{0} will remind you before your trial ends" @@ -301,7 +301,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:2503 +#: src/strings.ts:2497 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}}" @@ -504,11 +504,7 @@ msgstr "{count, plural, one {Unpublish item} other {Unpublish # items}}" msgid "{count, plural, one {Unpublish note} other {Unpublish # notes}}" msgstr "{count, plural, one {Unpublish note} other {Unpublish # notes}}" -#: generated/actions.ts:28 -msgid "{count, plural, one {Version deleted} other {# versions deleted}}" -msgstr "{count, plural, one {Version deleted} other {# versions deleted}}" - -#: src/strings.ts:2573 +#: src/strings.ts:2567 msgid "{count} characters" msgstr "{count} characters" @@ -516,11 +512,11 @@ msgstr "{count} characters" msgid "{days, plural, one {1 day} other {# days}}" msgstr "{days, plural, one {1 day} other {# days}}" -#: src/strings.ts:2643 +#: src/strings.ts:2637 msgid "{days} days free" msgstr "{days} days free" -#: src/strings.ts:2916 +#: src/strings.ts:2896 msgid "{duration} days free trial includes all features" msgstr "{duration} days free trial includes all features" @@ -556,7 +552,7 @@ msgstr "{mode, select, create {Create app lock {keyboardType}} change {Change ap msgid "{mode, select, day {Daily} week {Weekly} month {Monthly} year {Yearly} other {Unknown mode}}" msgstr "{mode, select, day {Daily} week {Weekly} month {Monthly} year {Yearly} other {Unknown mode}}" -#: src/strings.ts:3019 +#: src/strings.ts:2999 msgid "{mode, select, once {The reminder will occur once.} day {The reminder will occur daily.} week {Custom schedule active} month {Custom schedule active} year {The reminder will repeat every year.} other {}}" msgstr "{mode, select, once {The reminder will occur once.} day {The reminder will occur daily.} week {Custom schedule active} month {Custom schedule active} year {The reminder will repeat every year.} other {}}" @@ -564,19 +560,19 @@ msgstr "{mode, select, once {The reminder will occur once.} day {The reminder wi 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:2041 +#: src/strings.ts:2035 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:2036 +#: src/strings.ts:2030 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:2031 +#: src/strings.ts:2025 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:2026 +#: src/strings.ts:2020 msgid "{notes, plural, one {1 note} other {# notes}}" msgstr "{notes, plural, one {1 note} other {# notes}}" @@ -588,7 +584,7 @@ msgstr "{notes, plural, one {Export note} other {Export # notes}}" msgid "{percentage}% updating..." msgstr "{percentage}% updating..." -#: src/strings.ts:2627 +#: src/strings.ts:2621 msgid "{plan} plan" msgstr "{plan} plan" @@ -600,7 +596,7 @@ msgstr "{platform, select, android {{name} saved to selected path} other {{name} 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:2433 +#: src/strings.ts:2427 msgid "{selected} selected" msgstr "{selected} selected" @@ -632,19 +628,19 @@ msgstr "{words, plural, other {# selected}}" msgid "#notesnook" msgstr "#notesnook" -#: src/strings.ts:2756 +#: src/strings.ts:2750 msgid "1 day" msgstr "1 day" -#: src/strings.ts:2758 +#: src/strings.ts:2752 msgid "1 month" msgstr "1 month" -#: src/strings.ts:2757 +#: src/strings.ts:2751 msgid "1 week" msgstr "1 week" -#: src/strings.ts:2759 +#: src/strings.ts:2753 msgid "1 year" msgstr "1 year" @@ -664,7 +660,7 @@ msgstr "2FA code is required()" msgid "2FA code sent via {method}" msgstr "2FA code sent via {method}" -#: src/strings.ts:2672 +#: src/strings.ts:2666 msgid "5 year plan" msgstr "5 year plan" @@ -672,7 +668,7 @@ msgstr "5 year plan" msgid "6 digit code" msgstr "6 digit code" -#: src/strings.ts:2625 +#: src/strings.ts:2619 msgid "7-day free trial" msgstr "7-day free trial" @@ -696,11 +692,11 @@ msgstr "Abc" msgid "About" msgstr "About" -#: src/strings.ts:2935 +#: src/strings.ts:2915 msgid "Access on all devices" msgstr "Access on all devices" -#: src/strings.ts:2910 +#: src/strings.ts:2890 msgid "Access on all your devices" msgstr "Access on all your devices" @@ -708,7 +704,7 @@ msgstr "Access on all your devices" msgid "Account" msgstr "Account" -#: src/strings.ts:2953 +#: src/strings.ts:2933 msgid "Account actions" msgstr "Account actions" @@ -720,19 +716,19 @@ msgstr "Account password" msgid "Actions" msgstr "Actions" -#: src/strings.ts:2528 +#: src/strings.ts:2522 msgid "Actions for note: {title}" msgstr "Actions for note: {title}" -#: src/strings.ts:2529 +#: src/strings.ts:2523 msgid "Actions for notebook: {title}" msgstr "Actions for notebook: {title}" -#: src/strings.ts:2530 +#: src/strings.ts:2524 msgid "Actions for tag: {title}" msgstr "Actions for tag: {title}" -#: src/strings.ts:2102 +#: src/strings.ts:2096 msgid "Activate" msgstr "Activate" @@ -760,11 +756,11 @@ msgstr "Add a tag" msgid "Add color" msgstr "Add color" -#: src/strings.ts:2742 +#: src/strings.ts:2736 msgid "Add key" msgstr "Add key" -#: src/strings.ts:3015 +#: src/strings.ts:2995 msgid "Add Link" msgstr "Add Link" @@ -776,7 +772,7 @@ msgstr "Add multiple tools at once" msgid "Add notebook" msgstr "Add notebook" -#: src/strings.ts:2555 +#: src/strings.ts:2549 msgid "Add notes" msgstr "Add notes" @@ -792,7 +788,7 @@ msgstr "Add shortcut" msgid "Add shortcuts for notebooks and tags here." msgstr "Add shortcuts for notebooks and tags here." -#: src/strings.ts:3043 +#: src/strings.ts:3023 msgid "Add some details..." msgstr "Add some details..." @@ -808,15 +804,15 @@ msgstr "Add tags" msgid "Add tags to multiple notes at once" msgstr "Add tags to multiple notes at once" -#: src/strings.ts:2320 +#: src/strings.ts:2314 msgid "Add to dictionary" msgstr "Add to dictionary" -#: src/strings.ts:2705 +#: src/strings.ts:2699 msgid "Add to home" msgstr "Add to home" -#: src/strings.ts:2553 +#: src/strings.ts:2547 msgid "Add to notebook" msgstr "Add to notebook" @@ -825,7 +821,7 @@ msgid "Add tools to group" msgstr "Add tools to group" #: src/strings.ts:1023 -#: src/strings.ts:2926 +#: src/strings.ts:2906 msgid "Add your first note" msgstr "Add your first note" @@ -833,19 +829,19 @@ msgstr "Add your first note" msgid "Add your first notebook" msgstr "Add your first notebook" -#: src/strings.ts:2708 +#: src/strings.ts:2702 msgid "Adjust the line height of the editor" msgstr "Adjust the line height of the editor" -#: src/strings.ts:3030 +#: src/strings.ts:3010 msgid "Adjusts to last day in shorter months" msgstr "Adjusts to last day in shorter months" -#: src/strings.ts:2246 +#: src/strings.ts:2240 msgid "Advanced" msgstr "Advanced" -#: src/strings.ts:2623 +#: src/strings.ts:2617 msgid "Advanced note elements" msgstr "Advanced note elements" @@ -857,19 +853,19 @@ msgstr "Advanced settings" 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:3040 +#: src/strings.ts:3020 msgid "Alert mode" msgstr "Alert mode" -#: src/strings.ts:2385 +#: src/strings.ts:2379 msgid "Align left" msgstr "Align left" -#: src/strings.ts:2386 +#: src/strings.ts:2380 msgid "Align right" msgstr "Align right" -#: src/strings.ts:2355 +#: src/strings.ts:2349 msgid "Alignment" msgstr "Alignment" @@ -885,7 +881,7 @@ msgstr "All attachments" msgid "All attachments are end-to-end encrypted." msgstr "All attachments are end-to-end encrypted." -#: src/strings.ts:2480 +#: src/strings.ts:2474 msgid "All cached attachments have been cleared." msgstr "All cached attachments have been cleared." @@ -897,7 +893,7 @@ msgstr "All fields are required" msgid "All files" msgstr "All files" -#: src/strings.ts:2846 +#: src/strings.ts:2840 msgid "All items deleted" msgstr "All items deleted" @@ -917,7 +913,7 @@ msgstr "All server urls are required." 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:2226 +#: src/strings.ts:2220 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." @@ -937,7 +933,7 @@ msgstr "All tools in this group will be removed from the toolbar." msgid "All your backups are stored in 'Phone Storage/Notesnook/backups/' folder" msgstr "All your backups are stored in 'Phone Storage/Notesnook/backups/' folder" -#: src/strings.ts:3038 +#: src/strings.ts:3018 msgid "All-day reminder" msgstr "All-day reminder" @@ -945,11 +941,11 @@ msgstr "All-day reminder" msgid "Already have an account?" msgstr "Already have an account?" -#: src/strings.ts:2961 +#: src/strings.ts:2941 msgid "Always ask" msgstr "Always ask" -#: src/strings.ts:2296 +#: src/strings.ts:2290 msgid "Amount" msgstr "Amount" @@ -965,7 +961,7 @@ msgstr "An error occured during sync. please try again in a moment." 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:2664 +#: src/strings.ts:2658 msgid "and" msgstr "and" @@ -977,7 +973,7 @@ msgstr "and " msgid "and get a chance to win free promo codes." msgstr "and get a chance to win free promo codes." -#: src/strings.ts:2610 +#: src/strings.ts:2604 msgid "and much more." msgstr "and much more." @@ -985,27 +981,27 @@ msgstr "and much more." msgid "and we will manually confirm your account." msgstr "and we will manually confirm your account." -#: src/strings.ts:2683 +#: src/strings.ts:2677 msgid "ANNOUNCEMENT" msgstr "ANNOUNCEMENT" -#: src/strings.ts:2774 +#: src/strings.ts:2768 msgid "API key copied to clipboard" msgstr "API key copied to clipboard" -#: src/strings.ts:2751 +#: src/strings.ts:2745 msgid "API key created successfully" msgstr "API key created successfully" -#: src/strings.ts:2779 +#: src/strings.ts:2773 msgid "API key revoked" msgstr "API key revoked" -#: src/strings.ts:2743 +#: src/strings.ts:2737 msgid "API Keys" msgstr "API Keys" -#: src/strings.ts:2766 +#: src/strings.ts:2760 msgid "API Keys Limit Reached" msgstr "API Keys Limit Reached" @@ -1018,7 +1014,7 @@ msgstr "App data has been cleared. Kindly relaunch the app to login again." msgid "App lock" msgstr "App lock" -#: src/strings.ts:2621 +#: src/strings.ts:2615 msgid "App lock & security" msgstr "App lock & security" @@ -1055,12 +1051,12 @@ msgstr "Applied as light theme" msgid "Apply changes" msgstr "Apply changes" -#: src/strings.ts:2109 +#: src/strings.ts:2103 msgid "Applying changes" msgstr "Applying changes" -#: src/strings.ts:1595 -#: src/strings.ts:2560 +#: src/strings.ts:1590 +#: src/strings.ts:2554 msgid "Archive" msgstr "Archive" @@ -1076,11 +1072,11 @@ msgstr "Are you sure you want to clear all logs from {key}?" msgid "Are you sure you want to clear trash?" msgstr "Are you sure you want to clear trash?" -#: src/strings.ts:2845 +#: src/strings.ts:2839 msgid "Are you sure you want to delete all failed inbox items?" msgstr "Are you sure you want to delete all failed inbox items?" -#: src/strings.ts:2813 +#: src/strings.ts:2807 msgid "Are you sure you want to delete this attachment?" msgstr "Are you sure you want to delete this attachment?" @@ -1092,7 +1088,7 @@ msgstr "Are you sure you want to logout and clear all data stored on THIS DEVICE msgid "Are you sure you want to logout from this device? Any unsynced changes will be lost." msgstr "Are you sure you want to logout from this device? Any unsynced changes will be lost." -#: src/strings.ts:2856 +#: src/strings.ts:2850 msgid "Are you sure you want to open this file: {filePath}?" msgstr "Are you sure you want to open this file: {filePath}?" @@ -1104,7 +1100,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:2778 +#: src/strings.ts:2772 msgid "Are you sure you want to revoke the key \"{name}\"? All inbox actions using this key will stop working immediately." msgstr "Are you sure you want to revoke the key \"{name}\"? All inbox actions using this key will stop working immediately." @@ -1120,7 +1116,7 @@ msgstr "Are you sure?" msgid "Ask every time" msgstr "Ask every time" -#: src/strings.ts:2098 +#: src/strings.ts:2092 msgid "Assign color" msgstr "Assign color" @@ -1132,7 +1128,7 @@ msgstr "Assign to..." msgid "Atleast 8 characters required" msgstr "Atleast 8 characters required" -#: src/strings.ts:2422 +#: src/strings.ts:2416 msgid "Attach image from URL" msgstr "Attach image from URL" @@ -1140,7 +1136,7 @@ msgstr "Attach image from URL" msgid "Attached files" msgstr "Attached files" -#: src/strings.ts:2847 +#: src/strings.ts:2841 msgid "Attaching files" msgstr "Attaching files" @@ -1149,27 +1145,27 @@ msgid "attachment" msgstr "attachment" #: src/strings.ts:313 -#: src/strings.ts:2419 +#: src/strings.ts:2413 msgid "Attachment" msgstr "Attachment" -#: src/strings.ts:2814 +#: src/strings.ts:2808 msgid "Attachment deleted" msgstr "Attachment deleted" -#: src/strings.ts:2523 +#: src/strings.ts:2517 msgid "Attachment manager" msgstr "Attachment manager" -#: src/strings.ts:2000 +#: src/strings.ts:1994 msgid "Attachment preview failed" msgstr "Attachment preview failed" -#: src/strings.ts:2473 +#: src/strings.ts:2467 msgid "Attachment recheck cancelled" msgstr "Attachment recheck cancelled" -#: src/strings.ts:2390 +#: src/strings.ts:2384 msgid "Attachment settings" msgstr "Attachment settings" @@ -1186,7 +1182,7 @@ msgstr "Attachments" msgid "Attachments cache cleared!" msgstr "Attachments cache cleared!" -#: src/strings.ts:2475 +#: src/strings.ts:2469 msgid "Attachments recheck complete" msgstr "Attachments recheck complete" @@ -1198,11 +1194,11 @@ msgstr "Audios" msgid "Auth server" msgstr "Auth server" -#: src/strings.ts:2772 +#: src/strings.ts:2766 msgid "Authenticate" msgstr "Authenticate" -#: src/strings.ts:2769 +#: src/strings.ts:2763 msgid "Authenticate to view API key" msgstr "Authenticate to view API key" @@ -1214,7 +1210,7 @@ msgstr "Authenticated as {email}" msgid "Authenticating user" msgstr "Authenticating user" -#: src/strings.ts:2209 +#: src/strings.ts:2203 msgid "Authentication" msgstr "Authentication" @@ -1230,7 +1226,7 @@ msgstr "Authentication cancelled by user" msgid "Authentication failed" msgstr "Authentication failed" -#: src/strings.ts:2172 +#: src/strings.ts:2166 msgid "Auto" msgstr "Auto" @@ -1238,7 +1234,7 @@ msgstr "Auto" msgid "Auto save: off" msgstr "Auto save: off" -#: src/strings.ts:2186 +#: src/strings.ts:2180 msgid "Auto start on system startup" msgstr "Auto start on system startup" @@ -1246,7 +1242,7 @@ msgstr "Auto start on system startup" msgid "Auto sync" msgstr "Auto sync" -#: src/strings.ts:2829 +#: src/strings.ts:2823 msgid "Auto-generate keys" msgstr "Auto-generate keys" @@ -1259,7 +1255,7 @@ msgstr "Automatic backups" msgid "Automatic backups are off" msgstr "Automatic backups are off" -#: src/strings.ts:2070 +#: src/strings.ts:2064 msgid "Automatic backups disabled" msgstr "Automatic backups disabled" @@ -1267,11 +1263,11 @@ msgstr "Automatic backups disabled" msgid "Automatic backups with attachments" msgstr "Automatic backups with attachments" -#: src/strings.ts:2977 +#: src/strings.ts:2957 msgid "Automatic full backup" msgstr "Automatic full backup" -#: src/strings.ts:2182 +#: src/strings.ts:2176 msgid "Automatic updates" msgstr "Automatic updates" @@ -1279,7 +1275,7 @@ 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:2184 +#: src/strings.ts:2178 msgid "Automatically download & install updates in the background without prompting first." msgstr "Automatically download & install updates in the background without prompting first." @@ -1291,19 +1287,19 @@ 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:2229 +#: src/strings.ts:2223 msgid "Available on iOS" msgstr "Available on iOS" -#: src/strings.ts:2230 +#: src/strings.ts:2224 msgid "Available on iOS & Android" msgstr "Available on iOS & Android" -#: src/strings.ts:2799 +#: src/strings.ts:2793 msgid "Back" msgstr "Back" -#: src/strings.ts:2378 +#: src/strings.ts:2372 msgid "Background color" msgstr "Background color" @@ -1311,11 +1307,11 @@ msgstr "Background color" msgid "Background sync (experimental)" msgstr "Background sync (experimental)" -#: src/strings.ts:2178 +#: src/strings.ts:2172 msgid "Backup" msgstr "Backup" -#: src/strings.ts:2216 +#: src/strings.ts:2210 msgid "Backup & export" msgstr "Backup & export" @@ -1323,7 +1319,7 @@ msgstr "Backup & export" msgid "Backup & restore" msgstr "Backup & restore" -#: src/strings.ts:2974 +#: src/strings.ts:2954 msgid "Backup actions" msgstr "Backup actions" @@ -1367,7 +1363,7 @@ msgstr "Backup now with attachments" msgid "Backup restored" msgstr "Backup restored" -#: src/strings.ts:1984 +#: src/strings.ts:1978 msgid "Backup saved at {path}" msgstr "Backup saved at {path}" @@ -1375,7 +1371,7 @@ msgstr "Backup saved at {path}" msgid "Backup successful" msgstr "Backup successful" -#: src/strings.ts:2179 +#: src/strings.ts:2173 msgid "Backup with attachments" msgstr "Backup with attachments" @@ -1395,43 +1391,43 @@ msgstr "Because where's the fun in nookin' alone?" msgid "Behavior" msgstr "Behavior" -#: src/strings.ts:2211 +#: src/strings.ts:2205 msgid "Behaviour" msgstr "Behaviour" -#: src/strings.ts:2547 +#: src/strings.ts:2541 msgid "Believer plan" msgstr "Believer plan" -#: src/strings.ts:2667 +#: src/strings.ts:2661 msgid "Best value" msgstr "Best value" -#: src/strings.ts:2536 +#: src/strings.ts:2530 msgid "Beta" msgstr "Beta" -#: src/strings.ts:2336 +#: src/strings.ts:2330 msgid "Bi-directional note link" msgstr "Bi-directional note link" -#: src/strings.ts:2901 +#: src/strings.ts:2881 msgid "Billed annually" msgstr "Billed annually" -#: src/strings.ts:2640 +#: src/strings.ts:2634 msgid "billed annually at {price}" msgstr "billed annually at {price}" -#: src/strings.ts:2902 +#: src/strings.ts:2882 msgid "Billed monthly" msgstr "Billed monthly" -#: src/strings.ts:2641 +#: src/strings.ts:2635 msgid "billed monthly at {price}" msgstr "billed monthly at {price}" -#: src/strings.ts:2277 +#: src/strings.ts:2271 msgid "Billing history" msgstr "Billing history" @@ -1455,11 +1451,11 @@ msgstr "Biometrics authentication failed. Please try again." msgid "Biometrics not enrolled" msgstr "Biometrics not enrolled" -#: src/strings.ts:2332 +#: src/strings.ts:2326 msgid "Bold" msgstr "Bold" -#: src/strings.ts:2485 +#: src/strings.ts:2479 msgid "Boost your productivity with Notebooks and organize your notes." msgstr "Boost your productivity with Notebooks and organize your notes." @@ -1467,7 +1463,7 @@ msgstr "Boost your productivity with Notebooks and organize your notes." msgid "Browse" msgstr "Browse" -#: src/strings.ts:2349 +#: src/strings.ts:2343 msgid "Bullet list" msgstr "Bullet list" @@ -1475,7 +1471,7 @@ msgstr "Bullet list" msgid "By" msgstr "By" -#: src/strings.ts:2662 +#: src/strings.ts:2656 msgid "By joining you agree to our" msgstr "By joining you agree to our" @@ -1483,11 +1479,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:2410 +#: src/strings.ts:2404 msgid "Callout" msgstr "Callout" -#: src/strings.ts:2590 +#: src/strings.ts:2584 msgid "Can I cancel my free trial anytime?" msgstr "Can I cancel my free trial anytime?" @@ -1495,15 +1491,15 @@ msgstr "Can I cancel my free trial anytime?" msgid "Cancel" msgstr "Cancel" -#: src/strings.ts:2613 +#: src/strings.ts:2607 msgid "Cancel anytime" msgstr "Cancel anytime" -#: src/strings.ts:2660 +#: src/strings.ts:2654 msgid "Cancel anytime, Subscription auto-renews." msgstr "Cancel anytime, Subscription auto-renews." -#: src/strings.ts:2612 +#: src/strings.ts:2606 msgid "Cancel anytime." msgstr "Cancel anytime." @@ -1523,28 +1519,28 @@ msgstr "Cancel subscription" msgid "Cancel upload" msgstr "Cancel upload" -#: src/strings.ts:2768 +#: src/strings.ts:2762 msgid "Cannot create more than 10 api keys at a time. Please revoke some existing keys before creating new ones." msgstr "Cannot create more than 10 api keys at a time. Please revoke some existing keys before creating new ones." -#: src/strings.ts:2377 +#: src/strings.ts:2371 msgid "Cell background color" msgstr "Cell background color" -#: src/strings.ts:2379 +#: src/strings.ts:2373 msgid "Cell border color" msgstr "Cell border color" -#: src/strings.ts:2381 -#: src/strings.ts:2382 +#: src/strings.ts:2375 +#: src/strings.ts:2376 msgid "Cell border width" msgstr "Cell border width" -#: src/strings.ts:2363 +#: src/strings.ts:2357 msgid "Cell properties" msgstr "Cell properties" -#: src/strings.ts:2380 +#: src/strings.ts:2374 msgid "Cell text color" msgstr "Cell text color" @@ -1572,7 +1568,7 @@ msgstr "Change app lock pin" msgid "Change backup location" msgstr "Change backup location" -#: src/strings.ts:3046 +#: src/strings.ts:3026 msgid "Change created date" msgstr "Change created date" @@ -1584,7 +1580,7 @@ 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:2428 +#: src/strings.ts:2422 msgid "Change language" msgstr "Change language" @@ -1596,7 +1592,7 @@ msgstr "Change notification sound" msgid "Change password" msgstr "Change password" -#: src/strings.ts:2676 +#: src/strings.ts:2670 msgid "Change plan" msgstr "Change plan" @@ -1604,15 +1600,15 @@ msgstr "Change plan" msgid "Change profile picture" msgstr "Change profile picture" -#: src/strings.ts:2951 +#: src/strings.ts:2931 msgid "Change profile picture, full name and email" msgstr "Change profile picture, full name and email" -#: src/strings.ts:2255 +#: src/strings.ts:2249 msgid "Change proxy" msgstr "Change proxy" -#: src/strings.ts:2276 +#: src/strings.ts:2270 msgid "Change the payment method you used to purchase this subscription." msgstr "Change the payment method you used to purchase this subscription." @@ -1632,11 +1628,11 @@ msgstr "Change your account password" msgid "Change your primary two-factor authentication method" msgstr "Change your primary two-factor authentication method" -#: src/strings.ts:3059 +#: src/strings.ts:3039 msgid "Changes from other devices won't be updated in the editor in real-time." msgstr "Changes from other devices won't be updated in the editor in real-time." -#: src/strings.ts:2790 +#: src/strings.ts:2784 msgid "Changing Inbox PGP keys will delete all your unsynced inbox items." msgstr "Changing Inbox PGP keys will delete all your unsynced inbox items." @@ -1644,7 +1640,7 @@ msgstr "Changing Inbox PGP keys will delete all your unsynced inbox items." msgid "Changing your password is irreversible process. Once your password is changed please make sure to save the new account recovery key." msgstr "Changing your password is irreversible process. Once your password is changed please make sure to save the new account recovery key." -#: src/strings.ts:2566 +#: src/strings.ts:2560 msgid "Characters" msgstr "Characters" @@ -1664,7 +1660,7 @@ msgstr "Check for updates" msgid "Check for updates automatically" msgstr "Check for updates automatically" -#: src/strings.ts:2228 +#: src/strings.ts:2222 msgid "Check roadmap" msgstr "Check roadmap" @@ -1672,7 +1668,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:2477 +#: src/strings.ts:2471 msgid "Checking all attachments" msgstr "Checking all attachments" @@ -1684,11 +1680,11 @@ msgstr "Checking for new version" msgid "Checking for updates" msgstr "Checking for updates" -#: src/strings.ts:2476 +#: src/strings.ts:2470 msgid "Checking note attachments" msgstr "Checking note attachments" -#: src/strings.ts:2351 +#: src/strings.ts:2345 msgid "Checklist" msgstr "Checklist" @@ -1696,7 +1692,7 @@ msgstr "Checklist" msgid "Choose 2FA Method" msgstr "Choose 2FA Method" -#: src/strings.ts:2405 +#: src/strings.ts:2399 msgid "Choose a block to insert" msgstr "Choose a block to insert" @@ -1704,11 +1700,11 @@ msgstr "Choose a block to insert" msgid "Choose a recovery method" msgstr "Choose a recovery method" -#: src/strings.ts:2177 +#: src/strings.ts:2171 msgid "Choose backup format" msgstr "Choose backup format" -#: src/strings.ts:2441 +#: src/strings.ts:2435 msgid "Choose custom color" msgstr "Choose custom color" @@ -1720,7 +1716,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:2711 +#: src/strings.ts:2705 msgid "Choose how day is displayed in the app" msgstr "Choose how day is displayed in the app" @@ -1736,19 +1732,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:2828 +#: src/strings.ts:2822 msgid "Choose how you want to set up your Inbox PGP keys:" msgstr "Choose how you want to set up your Inbox PGP keys:" -#: src/strings.ts:3032 +#: src/strings.ts:3012 msgid "Choose the day you want to be reminded." msgstr "Choose the day you want to be reminded." -#: src/strings.ts:3033 +#: src/strings.ts:3013 msgid "Choose the time you want to be reminded." msgstr "Choose the time you want to be reminded." -#: src/strings.ts:2716 +#: src/strings.ts:2710 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" @@ -1756,11 +1752,11 @@ msgstr "Choose what day to display as the first day of the week" msgid "Choose where to save your backups" msgstr "Choose where to save your backups" -#: src/strings.ts:2137 +#: src/strings.ts:2131 msgid "Choose your style" msgstr "Choose your style" -#: src/strings.ts:2985 +#: src/strings.ts:2965 msgid "Choosing storage location..." msgstr "Choosing storage location..." @@ -1776,7 +1772,7 @@ msgstr "Clear" msgid "Clear all cached attachments. Size: {cacheSize}" msgstr "Clear all cached attachments. Size: {cacheSize}" -#: src/strings.ts:2345 +#: src/strings.ts:2339 msgid "Clear all formatting" msgstr "Clear all formatting" @@ -1788,7 +1784,7 @@ msgstr "Clear attachments cache?" msgid "Clear cache" msgstr "Clear cache" -#: src/strings.ts:2439 +#: src/strings.ts:2433 msgid "Clear completed tasks" msgstr "Clear completed tasks" @@ -1808,7 +1804,7 @@ msgstr "Clear history" msgid "Clear logs" msgstr "Clear logs" -#: src/strings.ts:2271 +#: src/strings.ts:2265 msgid "clear sessions" msgstr "clear sessions" @@ -1850,15 +1846,15 @@ 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:2304 +#: src/strings.ts:2298 msgid "Clearing trash will permanently delete all the items in your trash. This action is IRREVERSIBLE." msgstr "Clearing trash will permanently delete all the items in your trash. This action is IRREVERSIBLE." -#: src/strings.ts:2956 +#: src/strings.ts:2936 msgid "Click here" msgstr "Click here" -#: src/strings.ts:2698 +#: src/strings.ts:2692 msgid "Click here to directly claim the promotion." msgstr "Click here to directly claim the promotion." @@ -1878,15 +1874,15 @@ msgstr "Click to preview" msgid "Click to remove" msgstr "Click to remove" -#: src/strings.ts:2468 +#: src/strings.ts:2462 msgid "Click to reset {title}" msgstr "Click to reset {title}" -#: src/strings.ts:2706 +#: src/strings.ts:2700 msgid "Click to save" msgstr "Click to save" -#: src/strings.ts:2702 +#: src/strings.ts:2696 msgid "Click to update" msgstr "Click to update" @@ -1894,59 +1890,59 @@ msgstr "Click to update" msgid "Close" msgstr "Close" -#: src/strings.ts:2848 +#: src/strings.ts:2842 msgid "Close ({seconds})" msgstr "Close ({seconds})" -#: src/strings.ts:2084 +#: src/strings.ts:2078 msgid "Close all" msgstr "Close all" -#: src/strings.ts:2526 +#: src/strings.ts:2520 msgid "Close all tabs" msgstr "Close all tabs" -#: src/strings.ts:2525 +#: src/strings.ts:2519 msgid "Close current tab" msgstr "Close current tab" -#: src/strings.ts:2081 +#: src/strings.ts:2075 msgid "Close others" msgstr "Close others" -#: src/strings.ts:2195 +#: src/strings.ts:2189 msgid "Close to system tray" msgstr "Close to system tray" -#: src/strings.ts:2083 +#: src/strings.ts:2077 msgid "Close to the left" msgstr "Close to the left" -#: src/strings.ts:2082 +#: src/strings.ts:2076 msgid "Close to the right" msgstr "Close to the right" -#: src/strings.ts:2619 +#: src/strings.ts:2613 msgid "cloud storage" msgstr "cloud storage" -#: src/strings.ts:2604 +#: src/strings.ts:2598 msgid "cloud storage space for storing images and files." msgstr "cloud storage space for storing images and files." -#: src/strings.ts:2343 +#: src/strings.ts:2337 msgid "Code" msgstr "Code" -#: src/strings.ts:2407 +#: src/strings.ts:2401 msgid "Code block" msgstr "Code block" -#: src/strings.ts:3049 +#: src/strings.ts:3029 msgid "Code copied" msgstr "Code copied" -#: src/strings.ts:2344 +#: src/strings.ts:2338 msgid "Code remove" msgstr "Code remove" @@ -1967,7 +1963,7 @@ msgstr "Color" msgid "Color #{color} already exists" msgstr "Color #{color} already exists" -#: src/strings.ts:2170 +#: src/strings.ts:2164 msgid "Color scheme" msgstr "Color scheme" @@ -1975,7 +1971,7 @@ msgstr "Color scheme" msgid "Color title" msgstr "Color title" -#: src/strings.ts:2880 +#: src/strings.ts:2874 msgid "Colornote password for {filename}" msgstr "Colornote password for {filename}" @@ -1987,11 +1983,11 @@ msgstr "colors" msgid "Colors" msgstr "Colors" -#: src/strings.ts:2361 +#: src/strings.ts:2355 msgid "Column properties" msgstr "Column properties" -#: src/strings.ts:2517 +#: src/strings.ts:2511 msgid "Command palette" msgstr "Command palette" @@ -1999,7 +1995,7 @@ msgstr "Command palette" msgid "Community" msgstr "Community" -#: src/strings.ts:2634 +#: src/strings.ts:2628 msgid "Compare Plans" msgstr "Compare Plans" @@ -2019,23 +2015,23 @@ 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:2849 +#: src/strings.ts:2843 msgid "Compressing" msgstr "Compressing" -#: src/strings.ts:2987 +#: src/strings.ts:2967 msgid "Compressing logs into an archive..." msgstr "Compressing logs into an archive..." -#: src/strings.ts:2853 +#: src/strings.ts:2847 msgid "Compression failed" msgstr "Compression failed" -#: src/strings.ts:2327 +#: src/strings.ts:2321 msgid "Configure" msgstr "Configure" -#: src/strings.ts:2482 +#: src/strings.ts:2476 msgid "Configure server URLs for Notesnook" msgstr "Configure server URLs for Notesnook" @@ -2055,7 +2051,7 @@ msgstr "Confirm new password" msgid "Confirm password" msgstr "Confirm password" -#: src/strings.ts:2808 +#: src/strings.ts:2802 msgid "Confirm password required" msgstr "Confirm password required" @@ -2067,11 +2063,11 @@ msgstr "Confirm pin" msgid "Confirm your email to sync notes" msgstr "Confirm your email to sync notes" -#: src/strings.ts:2730 +#: src/strings.ts:2724 msgid "Confirmation email sent" msgstr "Confirmation email sent" -#: src/strings.ts:2155 +#: src/strings.ts:2149 msgid "Congratulations!" msgstr "Congratulations!" @@ -2079,7 +2075,7 @@ msgstr "Congratulations!" msgid "Connected to all servers sucessfully." msgstr "Connected to all servers sucessfully." -#: src/strings.ts:2986 +#: src/strings.ts:2966 msgid "Consolidating network sync logs..." msgstr "Consolidating network sync logs..." @@ -2103,7 +2099,7 @@ msgstr "Contribute towards a better Notesnook. All tracking information is anony msgid "Controls whether this device should receive reminder notifications." msgstr "Controls whether this device should receive reminder notifications." -#: src/strings.ts:2055 +#: src/strings.ts:2049 msgid "Copied" msgstr "Copied" @@ -2112,7 +2108,7 @@ msgid "Copy" msgstr "Copy" #. placeholder {0}: format ? " " + format : "" -#: src/strings.ts:2101 +#: src/strings.ts:2095 msgid "Copy as{0}" msgstr "Copy as{0}" @@ -2124,7 +2120,7 @@ msgstr "Copy codes" msgid "Copy ID" msgstr "Copy ID" -#: src/strings.ts:2323 +#: src/strings.ts:2317 msgid "Copy image" msgstr "Copy image" @@ -2132,11 +2128,11 @@ msgstr "Copy image" msgid "Copy link" msgstr "Copy link" -#: src/strings.ts:2322 +#: src/strings.ts:2316 msgid "Copy link text" msgstr "Copy link text" -#: src/strings.ts:2872 +#: src/strings.ts:2866 msgid "Copy logs" msgstr "Copy logs" @@ -2148,7 +2144,7 @@ msgstr "Copy note" msgid "Copy to clipboard" msgstr "Copy to clipboard" -#: src/strings.ts:2752 +#: src/strings.ts:2746 msgid "Copy your API key and store it somewhere safe." msgstr "Copy your API key and store it somewhere safe." @@ -2160,11 +2156,11 @@ msgstr "Copying backup files to cache" msgid "CORS bypass" msgstr "CORS bypass" -#: src/strings.ts:2051 +#: src/strings.ts:2045 msgid "Could not activate trial. Please try again later." msgstr "Could not activate trial. Please try again later." -#: src/strings.ts:2069 +#: src/strings.ts:2063 msgid "Could not clear trash." msgstr "Could not clear trash." @@ -2172,7 +2168,7 @@ msgstr "Could not clear trash." msgid "Could not connect to {server}." msgstr "Could not connect to {server}." -#: src/strings.ts:2016 +#: src/strings.ts:2010 msgid "Could not convert note to {format}." msgstr "Could not convert note to {format}." @@ -2184,7 +2180,7 @@ msgstr "Could not create backup" msgid "Could not unlock" msgstr "Could not unlock" -#: src/strings.ts:2992 +#: src/strings.ts:2972 msgid "Couldn't download logs" msgstr "Couldn't download logs" @@ -2216,7 +2212,7 @@ msgstr "Create a tag to group related notes together." msgid "Create account" msgstr "Create account" -#: src/strings.ts:2745 +#: src/strings.ts:2739 msgid "Create API Key" msgstr "Create API Key" @@ -2224,7 +2220,7 @@ msgstr "Create API Key" msgid "Create link" msgstr "Create link" -#: src/strings.ts:2764 +#: src/strings.ts:2758 msgid "Create new key" msgstr "Create new key" @@ -2232,7 +2228,7 @@ msgstr "Create new key" msgid "Create notebook" msgstr "Create notebook" -#: src/strings.ts:3044 +#: src/strings.ts:3024 msgid "Create Reminder" msgstr "Create Reminder" @@ -2240,7 +2236,7 @@ msgstr "Create Reminder" msgid "Create shortcut of this notebook in side menu" msgstr "Create shortcut of this notebook in side menu" -#: src/strings.ts:2997 +#: src/strings.ts:2977 msgid "Create sub-notebook" msgstr "Create sub-notebook" @@ -2264,27 +2260,27 @@ msgstr "Create vault" msgid "Create your account" msgstr "Create your account" -#: src/strings.ts:2746 +#: src/strings.ts:2740 msgid "Create your API key" msgstr "Create your API key" -#: src/strings.ts:2763 +#: src/strings.ts:2757 msgid "Create your first api key to get started." msgstr "Create your first api key to get started." -#: src/strings.ts:2919 +#: src/strings.ts:2899 msgid "Create your first tag to start organizing your workspace." msgstr "Create your first tag to start organizing your workspace." -#: src/strings.ts:2784 +#: src/strings.ts:2778 msgid "Created" msgstr "Created" -#: src/strings.ts:2305 +#: src/strings.ts:2299 msgid "Created at" msgstr "Created at" -#: src/strings.ts:2783 +#: src/strings.ts:2777 msgid "Created on" msgstr "Created on" @@ -2293,19 +2289,19 @@ msgstr "Created on" msgid "Creating a{0} backup" msgstr "Creating a{0} backup" -#: src/strings.ts:2755 +#: src/strings.ts:2749 msgid "Creating..." msgstr "Creating..." -#: src/strings.ts:2864 +#: src/strings.ts:2858 msgid "Creation date cannot be after last edited date" msgstr "Creation date cannot be after last edited date" -#: src/strings.ts:2114 +#: src/strings.ts:2108 msgid "Credentials" msgstr "Credentials" -#: src/strings.ts:2140 +#: src/strings.ts:2134 msgid "Cross platform & 100% encrypted" msgstr "Cross platform & 100% encrypted" @@ -2313,11 +2309,11 @@ 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:2968 +#: src/strings.ts:2948 msgid "Current date" msgstr "Current date" -#: src/strings.ts:2970 +#: src/strings.ts:2950 msgid "Current day" msgstr "Current day" @@ -2330,7 +2326,7 @@ msgstr "Current note" msgid "Current password" msgstr "Current password" -#: src/strings.ts:2817 +#: src/strings.ts:2811 msgid "Current password required" msgstr "Current password required" @@ -2346,15 +2342,15 @@ msgstr "Current pin" msgid "Current Plan" msgstr "Current Plan" -#: src/strings.ts:2969 +#: src/strings.ts:2949 msgid "Current time" msgstr "Current time" -#: src/strings.ts:2075 +#: src/strings.ts:2069 msgid "Custom" msgstr "Custom" -#: src/strings.ts:2206 +#: src/strings.ts:2200 msgid "Custom dictionary words" msgstr "Custom dictionary words" @@ -2378,7 +2374,7 @@ msgstr "Customize the toolbar in the note editor" msgid "Customize toolbar" msgstr "Customize toolbar" -#: src/strings.ts:2321 +#: src/strings.ts:2315 msgid "Cut" msgstr "Cut" @@ -2395,11 +2391,11 @@ msgstr "Dark" msgid "Dark mode" msgstr "Dark mode" -#: src/strings.ts:2171 +#: src/strings.ts:2165 msgid "Dark or light, we won't judge." msgstr "Dark or light, we won't judge." -#: src/strings.ts:2952 +#: src/strings.ts:2932 msgid "Data and storage" msgstr "Data and storage" @@ -2411,7 +2407,7 @@ msgstr "Database setup failed, could not get database key" msgid "Date" msgstr "Date" -#: src/strings.ts:2180 +#: src/strings.ts:2174 msgid "Date & time" msgstr "Date & time" @@ -2435,11 +2431,11 @@ msgstr "Date format" msgid "Date modified" msgstr "Date modified" -#: src/strings.ts:2836 +#: src/strings.ts:2830 msgid "Date synced" msgstr "Date synced" -#: src/strings.ts:2107 +#: src/strings.ts:2101 msgid "Date uploaded" msgstr "Date uploaded" @@ -2447,11 +2443,11 @@ msgstr "Date uploaded" msgid "Day" msgstr "Day" -#: src/strings.ts:2710 +#: src/strings.ts:2704 msgid "Day format" msgstr "Day format" -#: src/strings.ts:2103 +#: src/strings.ts:2097 msgid "Deactivate" msgstr "Deactivate" @@ -2467,7 +2463,7 @@ msgstr "Debug logs" msgid "Debug logs downloaded" msgstr "Debug logs downloaded" -#: src/strings.ts:2989 +#: src/strings.ts:2969 msgid "Debug logs downloaded!" msgstr "Debug logs downloaded!" @@ -2475,12 +2471,12 @@ msgstr "Debug logs downloaded!" msgid "Debugging" msgstr "Debugging" -#: src/strings.ts:2470 +#: src/strings.ts:2464 msgid "Decrease {title}" msgstr "Decrease {title}" #: src/strings.ts:693 -#: src/strings.ts:2073 +#: src/strings.ts:2067 msgid "Default" msgstr "Default" @@ -2508,7 +2504,7 @@ msgstr "Default notebook cleared" msgid "Default screen to open on app launch" msgstr "Default screen to open on app launch" -#: src/strings.ts:2557 +#: src/strings.ts:2551 msgid "Default sidebar tab" msgstr "Default sidebar tab" @@ -2532,15 +2528,11 @@ msgstr "Delete account" msgid "Delete after viewing" msgstr "Delete after viewing" -#: src/strings.ts:2843 +#: src/strings.ts:2837 msgid "Delete all" msgstr "Delete all" -#: src/strings.ts:2889 -msgid "Delete all version history for this note?" -msgstr "Delete all version history for this note?" - -#: src/strings.ts:2811 +#: src/strings.ts:2805 msgid "Delete attachment" msgstr "Delete attachment" @@ -2548,11 +2540,11 @@ msgstr "Delete attachment" msgid "Delete collapsed section" msgstr "Delete collapsed section" -#: src/strings.ts:2368 +#: src/strings.ts:2362 msgid "Delete column" msgstr "Delete column" -#: src/strings.ts:2727 +#: src/strings.ts:2721 msgid "Delete data" msgstr "Delete data" @@ -2560,11 +2552,7 @@ msgstr "Delete data" msgid "Delete group" msgstr "Delete group" -#: src/strings.ts:2883 -msgid "Delete item" -msgstr "Delete item" - -#: src/strings.ts:2442 +#: src/strings.ts:2436 msgid "Delete mode" msgstr "Delete mode" @@ -2576,11 +2564,11 @@ msgstr "Delete notes in this vault permanently" msgid "Delete permanently" msgstr "Delete permanently" -#: src/strings.ts:2375 +#: src/strings.ts:2369 msgid "Delete row" msgstr "Delete row" -#: src/strings.ts:2376 +#: src/strings.ts:2370 msgid "Delete table" msgstr "Delete table" @@ -2596,7 +2584,7 @@ msgstr "Delete vault (and optionally remove all notes)." msgid "Deleted on {date}" msgstr "Deleted on {date}" -#: src/strings.ts:1993 +#: src/strings.ts:1987 msgid "Deleting" msgstr "Deleting" @@ -2608,15 +2596,15 @@ msgstr "Description" msgid "Deselect all" msgstr "Deselect all" -#: src/strings.ts:2181 +#: src/strings.ts:2175 msgid "Desktop app" msgstr "Desktop app" -#: src/strings.ts:2185 +#: src/strings.ts:2179 msgid "Desktop integration" msgstr "Desktop integration" -#: src/strings.ts:2835 +#: src/strings.ts:2829 msgid "Details" msgstr "Details" @@ -2628,23 +2616,23 @@ msgstr "Did you save recovery key?" msgid "Disable" msgstr "Disable" -#: src/strings.ts:3054 +#: src/strings.ts:3034 msgid "Disable auto sync" msgstr "Disable auto sync" -#: src/strings.ts:2076 +#: src/strings.ts:2070 msgid "Disable editor margins" msgstr "Disable editor margins" -#: src/strings.ts:2739 +#: src/strings.ts:2733 msgid "Disable Inbox API" msgstr "Disable Inbox API" -#: src/strings.ts:3057 +#: src/strings.ts:3037 msgid "Disable realtime sync" msgstr "Disable realtime sync" -#: src/strings.ts:3060 +#: src/strings.ts:3040 msgid "Disable sync" msgstr "Disable sync" @@ -2652,7 +2640,7 @@ msgstr "Disable sync" msgid "Disabled" msgstr "Disabled" -#: src/strings.ts:2741 +#: src/strings.ts:2735 msgid "Disabling will delete all your unsynced inbox items. Additionally, disabling will revoke all existing API keys, they will no longer work. Are you sure?" msgstr "Disabling will delete all your unsynced inbox items. Additionally, disabling will revoke all existing API keys, they will no longer work. Are you sure?" @@ -2740,11 +2728,11 @@ msgstr "Download" msgid "Download all attachments" msgstr "Download all attachments" -#: src/strings.ts:2983 +#: src/strings.ts:2963 msgid "Download and share debug logs from the app" msgstr "Download and share debug logs from the app" -#: src/strings.ts:2391 +#: src/strings.ts:2385 msgid "Download attachment" msgstr "Download attachment" @@ -2756,11 +2744,11 @@ msgstr "Download backup file" msgid "Download cancelled" msgstr "Download cancelled" -#: src/strings.ts:2982 +#: src/strings.ts:2962 msgid "Download debug logs" msgstr "Download debug logs" -#: src/strings.ts:2283 +#: src/strings.ts:2277 msgid "Download everything including attachments on sync" msgstr "Download everything including attachments on sync" @@ -2813,7 +2801,7 @@ msgstr "Drop the files here" msgid "Drop your files here to attach" msgstr "Drop your files here to attach" -#: src/strings.ts:2644 +#: src/strings.ts:2638 msgid "Due {date}" msgstr "Due {date}" @@ -2821,7 +2809,7 @@ msgstr "Due {date}" msgid "Due date" msgstr "Due date" -#: src/strings.ts:2642 +#: src/strings.ts:2636 msgid "Due today" msgstr "Due today" @@ -2829,7 +2817,7 @@ msgstr "Due today" msgid "Duplicate" msgstr "Duplicate" -#: src/strings.ts:2748 +#: src/strings.ts:2742 msgid "e.g., Todo integration" msgstr "e.g., Todo integration" @@ -2837,7 +2825,7 @@ msgstr "e.g., Todo integration" msgid "Earliest first" msgstr "Earliest first" -#: src/strings.ts:2494 +#: src/strings.ts:2488 msgid "Easy access" msgstr "Easy access" @@ -2845,7 +2833,7 @@ msgstr "Easy access" msgid "Edit" msgstr "Edit" -#: src/strings.ts:2717 +#: src/strings.ts:2711 msgid "Edit creation date" msgstr "Edit creation date" @@ -2853,12 +2841,12 @@ msgstr "Edit creation date" msgid "Edit internal link" msgstr "Edit internal link" -#: src/strings.ts:2310 -#: src/strings.ts:2338 +#: src/strings.ts:2304 +#: src/strings.ts:2332 msgid "Edit link" msgstr "Edit link" -#: src/strings.ts:2550 +#: src/strings.ts:2544 msgid "Edit profile" msgstr "Edit profile" @@ -2879,7 +2867,7 @@ msgstr "Edit your full name" msgid "Editor" msgstr "Editor" -#: src/strings.ts:2673 +#: src/strings.ts:2667 msgid "Education plan" msgstr "Education plan" @@ -2887,7 +2875,7 @@ msgstr "Education plan" msgid "Email" msgstr "Email" -#: src/strings.ts:2507 +#: src/strings.ts:2501 msgid "Email copied" msgstr "Email copied" @@ -2911,15 +2899,15 @@ msgstr "Email support" msgid "Email updated to {email}" msgstr "Email updated to {email}" -#: src/strings.ts:2417 +#: src/strings.ts:2411 msgid "Embed" msgstr "Embed" -#: src/strings.ts:2397 +#: src/strings.ts:2391 msgid "Embed properties" msgstr "Embed properties" -#: src/strings.ts:2393 +#: src/strings.ts:2387 msgid "Embed settings" msgstr "Embed settings" @@ -2935,27 +2923,27 @@ msgstr "Enable (Recommended)" msgid "Enable app lock" msgstr "Enable app lock" -#: src/strings.ts:2981 +#: src/strings.ts:2961 msgid "Enable biometric unlock" msgstr "Enable biometric unlock" -#: src/strings.ts:2077 +#: src/strings.ts:2071 msgid "Enable editor margins" msgstr "Enable editor margins" -#: src/strings.ts:2734 +#: src/strings.ts:2728 msgid "Enable Inbox API" msgstr "Enable Inbox API" -#: src/strings.ts:2541 +#: src/strings.ts:2535 msgid "Enable ligatures for common symbols like โ†’, โ†, etc" msgstr "Enable ligatures for common symbols like โ†’, โ†, etc" -#: src/strings.ts:2457 +#: src/strings.ts:2451 msgid "Enable regex" msgstr "Enable regex" -#: src/strings.ts:2202 +#: src/strings.ts:2196 msgid "Enable spell checker" msgstr "Enable spell checker" @@ -2963,7 +2951,7 @@ msgstr "Enable spell checker" msgid "Enable two-factor authentication to secure your account." msgstr "Enable two-factor authentication to secure your account." -#: src/strings.ts:2735 +#: src/strings.ts:2729 msgid "Enable/Disable Inbox API" msgstr "Enable/Disable Inbox API" @@ -2975,7 +2963,7 @@ msgstr "Encrypt your backups for added security" msgid "Encrypted and synced" msgstr "Encrypted and synced" -#: src/strings.ts:2317 +#: src/strings.ts:2311 msgid "Encrypted backup" msgstr "Encrypted backup" @@ -2983,7 +2971,7 @@ msgstr "Encrypted backup" msgid "Encrypted, private, secure." msgstr "Encrypted, private, secure." -#: src/strings.ts:2850 +#: src/strings.ts:2844 msgid "Encrypting" msgstr "Encrypting" @@ -2999,7 +2987,7 @@ msgstr "Encryption key" msgid "End-to-end encrypted." msgstr "End-to-end encrypted." -#: src/strings.ts:2909 +#: src/strings.ts:2889 msgid "End-to-end encryption (XChaCha20)" msgstr "End-to-end encryption (XChaCha20)" @@ -3043,7 +3031,7 @@ msgstr "Enter email" msgid "Enter email address" msgstr "Enter email address" -#: src/strings.ts:2445 +#: src/strings.ts:2439 msgid "Enter embed source URL" msgstr "Enter embed source URL" @@ -3071,7 +3059,7 @@ msgstr "Enter notebook title" msgid "Enter password" msgstr "Enter password" -#: src/strings.ts:2163 +#: src/strings.ts:2157 msgid "Enter pin or password to enable app lock." msgstr "Enter pin or password to enable app lock." @@ -3091,15 +3079,15 @@ 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:2509 +#: src/strings.ts:2503 msgid "Enter the gift code to redeem your subscription." msgstr "Enter the gift code to redeem your subscription." -#: src/strings.ts:2709 +#: src/strings.ts:2703 msgid "Enter title" msgstr "Enter title" -#: src/strings.ts:3050 +#: src/strings.ts:3030 msgid "Enter vault password" msgstr "Enter vault password" @@ -3111,15 +3099,15 @@ msgstr "Enter verification code sent to your new email" msgid "Enter your new email" msgstr "Enter your new email" -#: src/strings.ts:2939 +#: src/strings.ts:2919 msgid "Enter your password" msgstr "Enter your password" -#: src/strings.ts:2877 +#: src/strings.ts:2871 msgid "Enter your PGP private key" msgstr "Enter your PGP private key" -#: src/strings.ts:2876 +#: src/strings.ts:2870 msgid "Enter your PGP public key" msgstr "Enter your PGP public key" @@ -3127,15 +3115,15 @@ msgstr "Enter your PGP public key" msgid "Enter your recovery code." msgstr "Enter your recovery code." -#: src/strings.ts:2164 +#: src/strings.ts:2158 msgid "Enter your username" msgstr "Enter your username" -#: src/strings.ts:3006 +#: src/strings.ts:2986 msgid "Entire Note" msgstr "Entire Note" -#: src/strings.ts:2501 +#: src/strings.ts:2495 msgid "Error" msgstr "Error" @@ -3171,7 +3159,7 @@ msgstr "Errors" msgid "Errors in {count} attachments" msgstr "Errors in {count} attachments" -#: src/strings.ts:2546 +#: src/strings.ts:2540 msgid "Essential plan" msgstr "Essential plan" @@ -3179,79 +3167,79 @@ msgstr "Essential plan" msgid "Events server" msgstr "Events server" -#: src/strings.ts:2487 +#: src/strings.ts:2481 msgid "Every Notebook can have notes and sub notebooks." msgstr "Every Notebook can have notes and sub notebooks." -#: src/strings.ts:2489 +#: src/strings.ts:2483 msgid "Everything related to my job in one place." msgstr "Everything related to my job in one place." -#: src/strings.ts:2498 +#: src/strings.ts:2492 msgid "Everything related to my school in one place." msgstr "Everything related to my school in one place." -#: src/strings.ts:2515 +#: src/strings.ts:2509 msgid "Execute" msgstr "Execute" -#: src/strings.ts:2514 +#: src/strings.ts:2508 msgid "Execute a command..." msgstr "Execute a command..." -#: src/strings.ts:2078 +#: src/strings.ts:2072 msgid "Exit fullscreen" msgstr "Exit fullscreen" -#: src/strings.ts:2449 +#: src/strings.ts:2443 msgid "Expand" msgstr "Expand" -#: src/strings.ts:2542 +#: src/strings.ts:2536 msgid "Expand sidebar" msgstr "Expand sidebar" -#: src/strings.ts:2147 +#: src/strings.ts:2141 msgid "Experience the next level of private note taking\"" msgstr "Experience the next level of private note taking\"" -#: src/strings.ts:2787 +#: src/strings.ts:2781 msgid "Expired" msgstr "Expired" -#: src/strings.ts:2785 +#: src/strings.ts:2779 msgid "Expires" msgstr "Expires" -#: src/strings.ts:2749 +#: src/strings.ts:2743 msgid "Expires in" msgstr "Expires in" -#: src/strings.ts:2788 +#: src/strings.ts:2782 msgid "Expires on" msgstr "Expires on" -#: src/strings.ts:2723 +#: src/strings.ts:2717 msgid "Expiry date" msgstr "Expiry date" -#: src/strings.ts:2861 +#: src/strings.ts:2855 msgid "Expiry date cannot be more than 1 year in the future" msgstr "Expiry date cannot be more than 1 year in the future" -#: src/strings.ts:2859 +#: src/strings.ts:2853 msgid "Expiry date must be in the future" msgstr "Expiry date must be in the future" -#: src/strings.ts:2878 +#: src/strings.ts:2872 msgid "Expiry date removed" msgstr "Expiry date removed" -#: src/strings.ts:2862 +#: src/strings.ts:2856 msgid "Expiry date set" msgstr "Expiry date set" -#: src/strings.ts:2616 +#: src/strings.ts:2610 msgid "Explore all plans" msgstr "Explore all plans" @@ -3272,11 +3260,11 @@ 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:2100 +#: src/strings.ts:2094 msgid "Export as{0}" msgstr "Export as{0}" -#: src/strings.ts:2724 +#: src/strings.ts:2718 msgid "Export CSV" msgstr "Export CSV" @@ -3300,28 +3288,28 @@ msgstr "EXTREMELY DANGEROUS! This action is irreversible. All your data includin 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:2479 +#: src/strings.ts:2473 msgid "Failed" msgstr "Failed" -#: src/strings.ts:2837 +#: src/strings.ts:2831 msgid "Failed inbox items" msgstr "Failed inbox items" -#: src/strings.ts:2728 +#: src/strings.ts:2722 msgid "Failed to attach file" msgstr "Failed to attach file" -#: src/strings.ts:2001 +#: src/strings.ts:1995 msgid "Failed to copy note" msgstr "Failed to copy note" -#: src/strings.ts:2775 +#: src/strings.ts:2769 msgid "Failed to copy to clipboard" msgstr "Failed to copy to clipboard" #. placeholder {0}: message ? `: ${message}` : "" -#: src/strings.ts:2754 +#: src/strings.ts:2748 msgid "Failed to create API key{0}" msgstr "Failed to create API key{0}" @@ -3329,7 +3317,7 @@ msgstr "Failed to create API key{0}" msgid "Failed to decrypt backup" msgstr "Failed to decrypt backup" -#: src/strings.ts:2067 +#: src/strings.ts:2061 msgid "Failed to delete" msgstr "Failed to delete" @@ -3341,11 +3329,11 @@ msgstr "Failed to delete account" msgid "Failed to download file" msgstr "Failed to download file" -#: src/strings.ts:2063 +#: src/strings.ts:2057 msgid "Failed to install theme." msgstr "Failed to install theme." -#: src/strings.ts:2761 +#: src/strings.ts:2755 msgid "Failed to load API keys. Please try again." msgstr "Failed to load API keys. Please try again." @@ -3357,7 +3345,7 @@ msgstr "Failed to open" msgid "Failed to publish note" msgstr "Failed to publish note" -#: src/strings.ts:2068 +#: src/strings.ts:2062 msgid "Failed to register task" msgstr "Failed to register task" @@ -3365,7 +3353,7 @@ msgstr "Failed to register task" msgid "Failed to resolve download url" msgstr "Failed to resolve download url" -#: src/strings.ts:2780 +#: src/strings.ts:2774 msgid "Failed to revoke API key" msgstr "Failed to revoke API key" @@ -3381,11 +3369,11 @@ msgstr "Failed to send verification email" msgid "Failed to subscribe" msgstr "Failed to subscribe" -#: src/strings.ts:2278 +#: src/strings.ts:2272 msgid "Failed to take backup" msgstr "Failed to take backup" -#: src/strings.ts:2280 +#: src/strings.ts:2274 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?" @@ -3401,11 +3389,11 @@ msgstr "Failed to zip files" msgid "Fallback method for 2FA enabled" msgstr "Fallback method for 2FA enabled" -#: src/strings.ts:2635 +#: src/strings.ts:2629 msgid "FAQs" msgstr "FAQs" -#: src/strings.ts:2097 +#: src/strings.ts:2091 msgid "Favorite" msgstr "Favorite" @@ -3414,15 +3402,15 @@ msgstr "Favorite" msgid "Favorites" msgstr "Favorites" -#: src/strings.ts:2633 +#: src/strings.ts:2627 msgid "Featured on" msgstr "Featured on" -#: src/strings.ts:2491 +#: src/strings.ts:2485 msgid "February 2022 Week 2" msgstr "February 2022 Week 2" -#: src/strings.ts:2492 +#: src/strings.ts:2486 msgid "February 2022 Week 3" msgstr "February 2022 Week 3" @@ -3442,7 +3430,7 @@ msgstr "File length is 0. Please upload this file again from the attachment mana msgid "File length mismatch. Expected {expectedSize} but got {currentSize} bytes. Please upload this file again from the attachment manager." msgstr "File length mismatch. Expected {expectedSize} but got {currentSize} bytes. Please upload this file again from the attachment manager." -#: src/strings.ts:2858 +#: src/strings.ts:2852 msgid "File links cannot be opened in browsers. Please use the Notesnook desktop app." msgstr "File links cannot be opened in browsers. Please use the Notesnook desktop app." @@ -3450,7 +3438,7 @@ msgstr "File links cannot be opened in browsers. Please use the Notesnook deskto msgid "File mismatch" msgstr "File mismatch" -#: src/strings.ts:2852 +#: src/strings.ts:2846 msgid "File size limit exceeded. Please upgrade your plan." msgstr "File size limit exceeded. Please upgrade your plan." @@ -3478,7 +3466,7 @@ msgstr "Filter notebooks..." msgid "Filter tags..." msgstr "Filter tags..." -#: src/strings.ts:2695 +#: src/strings.ts:2689 msgid "Finish your purchase in the browser." msgstr "Finish your purchase in the browser." @@ -3486,11 +3474,11 @@ msgstr "Finish your purchase in the browser." msgid "Fix it" msgstr "Fix it" -#: src/strings.ts:2080 +#: src/strings.ts:2074 msgid "Focus mode" msgstr "Focus mode" -#: src/strings.ts:2238 +#: src/strings.ts:2232 msgid "Follow" msgstr "Follow" @@ -3510,19 +3498,19 @@ msgstr "Follow us on X" 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:2352 +#: src/strings.ts:2346 msgid "Font family" msgstr "Font family" -#: src/strings.ts:2539 +#: src/strings.ts:2533 msgid "Font ligatures" msgstr "Font ligatures" -#: src/strings.ts:2353 +#: src/strings.ts:2347 msgid "Font size" msgstr "Font size" -#: src/strings.ts:2597 +#: src/strings.ts:2591 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." @@ -3534,7 +3522,7 @@ msgstr "For a more integrated user experience, try out Notesnook for {platform}" msgid "for help regarding how to use the Notesnook Importer." msgstr "for help regarding how to use the Notesnook Importer." -#: src/strings.ts:2606 +#: src/strings.ts:2600 msgid "for locking your notes as soon as app enters background" msgstr "for locking your notes as soon as app enters background" @@ -3542,11 +3530,11 @@ msgstr "for locking your notes as soon as app enters background" msgid "For support or questions, chat with our community on" msgstr "For support or questions, chat with our community on" -#: src/strings.ts:2270 +#: src/strings.ts:2264 msgid "Force logout from all your other logged in devices." msgstr "Force logout from all your other logged in devices." -#: src/strings.ts:2941 +#: src/strings.ts:2921 msgid "Force Pull" msgstr "Force Pull" @@ -3554,7 +3542,7 @@ msgstr "Force Pull" msgid "Force pull changes" msgstr "Force pull changes" -#: src/strings.ts:2942 +#: src/strings.ts:2922 msgid "Force Push" msgstr "Force Push" @@ -3562,7 +3550,7 @@ msgstr "Force Push" msgid "Force push changes" msgstr "Force push changes" -#: src/strings.ts:2287 +#: src/strings.ts:2281 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" @@ -3584,26 +3572,26 @@ msgstr "" msgid "Forgot Password?" msgstr "Forgot Password?" -#: src/strings.ts:2966 +#: src/strings.ts:2946 msgid "Formatting" msgstr "Formatting" -#: src/strings.ts:2911 -#: src/strings.ts:2936 +#: src/strings.ts:2891 +#: src/strings.ts:2916 msgid "Free {days} days trial, cancel anytime" msgstr "Free {days} days trial, cancel anytime" -#: src/strings.ts:2650 +#: src/strings.ts:2644 msgid "Free {duration} day trial, cancel any time" msgstr "Free {duration} day trial, cancel any time" -#: src/strings.ts:2544 +#: src/strings.ts:2538 msgid "Free plan" msgstr "Free plan" -#: src/strings.ts:2898 -msgid "Frequently Asked Questions" -msgstr "Frequently Asked Questions" +#: src/strings.ts:2878 +msgid "Frequently asked questions" +msgstr "Frequently asked questions" #: src/strings.ts:660 msgid "Fri" @@ -3613,31 +3601,31 @@ msgstr "Fri" msgid "Friday" msgstr "Friday" -#: src/strings.ts:2447 +#: src/strings.ts:2441 msgid "From code" msgstr "From code" -#: src/strings.ts:2444 +#: src/strings.ts:2438 msgid "From URL" msgstr "From URL" -#: src/strings.ts:2976 +#: src/strings.ts:2956 msgid "Full backup" msgstr "Full backup" -#: src/strings.ts:2064 +#: src/strings.ts:2058 msgid "Full name updated" msgstr "Full name updated" -#: src/strings.ts:2281 +#: src/strings.ts:2275 msgid "Full offline mode" msgstr "Full offline mode" -#: src/strings.ts:2399 +#: src/strings.ts:2393 msgid "Full screen" msgstr "Full screen" -#: src/strings.ts:2167 +#: src/strings.ts:2161 msgid "General" msgstr "General" @@ -3649,11 +3637,11 @@ msgstr "Get helpful debug info about the app to help us find bugs." 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:2232 +#: src/strings.ts:2226 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:2234 +#: src/strings.ts:2228 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." @@ -3665,7 +3653,7 @@ msgstr "Get Notesnook Pro" msgid "Get Notesnook Pro to enable automatic backups" msgstr "Get Notesnook Pro to enable automatic backups" -#: src/strings.ts:2483 +#: src/strings.ts:2477 msgid "Get Priority support" msgstr "Get Priority support" @@ -3677,7 +3665,7 @@ msgstr "Get Pro" msgid "Get started" msgstr "Get started" -#: src/strings.ts:2603 +#: src/strings.ts:2597 msgid "Get this and so much more:" msgstr "Get this and so much more:" @@ -3693,7 +3681,7 @@ msgstr "Getting information" msgid "Getting recovery codes" msgstr "Getting recovery codes" -#: src/strings.ts:2810 +#: src/strings.ts:2804 msgid "Gift code required" msgstr "Gift code required" @@ -3701,27 +3689,27 @@ msgstr "Gift code required" msgid "Github" msgstr "Github" -#: src/strings.ts:2237 +#: src/strings.ts:2231 msgid "GNU GENERAL PUBLIC LICENSE Version 3" msgstr "GNU GENERAL PUBLIC LICENSE Version 3" -#: src/strings.ts:2696 +#: src/strings.ts:2690 msgid "Go back" msgstr "Go back" -#: src/strings.ts:2522 +#: src/strings.ts:2516 msgid "Go back in tab" msgstr "Go back in tab" -#: src/strings.ts:2300 +#: src/strings.ts:2294 msgid "Go back to notebooks" msgstr "Go back to notebooks" -#: src/strings.ts:2301 +#: src/strings.ts:2295 msgid "Go back to tags" msgstr "Go back to tags" -#: src/strings.ts:2521 +#: src/strings.ts:2515 msgid "Go forward in tab" msgstr "Go forward in tab" @@ -3745,7 +3733,7 @@ msgstr "Go to previous page" msgid "Go to web app" msgstr "Go to web app" -#: src/strings.ts:2615 +#: src/strings.ts:2609 msgid "Google will remind you 2 days before your trial ends." msgstr "Google will remind you 2 days before your trial ends." @@ -3781,31 +3769,31 @@ msgstr "Group deleted" msgid "Hash copied" msgstr "Hash copied" -#: src/strings.ts:2949 +#: src/strings.ts:2929 msgid "Having issues? Contact" msgstr "Having issues? Contact" -#: src/strings.ts:2284 +#: src/strings.ts:2278 msgid "Having problems with sync?" msgstr "Having problems with sync?" -#: src/strings.ts:2639 +#: src/strings.ts:2633 msgid "HD Images" msgstr "HD Images" -#: src/strings.ts:2425 +#: src/strings.ts:2419 msgid "Heading {level}" msgstr "Heading {level}" -#: src/strings.ts:2354 +#: src/strings.ts:2348 msgid "Headings" msgstr "Headings" -#: src/strings.ts:2973 +#: src/strings.ts:2953 msgid "Headline" msgstr "Headline" -#: src/strings.ts:2460 +#: src/strings.ts:2454 msgid "Height" msgstr "Height" @@ -3829,11 +3817,11 @@ msgstr "Hide" 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:2243 +#: src/strings.ts:2237 msgid "Hide note title" msgstr "Hide note title" -#: src/strings.ts:2357 +#: src/strings.ts:2351 msgid "Highlight" msgstr "Highlight" @@ -3857,7 +3845,7 @@ msgstr "Homepage" msgid "Homepage changed to {name}" msgstr "Homepage changed to {name}" -#: src/strings.ts:2406 +#: src/strings.ts:2400 msgid "Horizontal rule" msgstr "Horizontal rule" @@ -3873,7 +3861,7 @@ msgstr "How to fix it?" msgid "hr" msgstr "hr" -#: src/strings.ts:2574 +#: src/strings.ts:2568 msgid "I already have an account" msgstr "I already have an account" @@ -3901,15 +3889,15 @@ msgstr "I have a recovery code" msgid "I have saved my key" msgstr "I have saved my key" -#: src/strings.ts:2500 +#: src/strings.ts:2494 msgid "I love cooking and collecting recipes." msgstr "I love cooking and collecting recipes." -#: src/strings.ts:2285 +#: src/strings.ts:2279 msgid "I understand" msgstr "I understand" -#: src/strings.ts:2950 +#: src/strings.ts:2930 msgid "I understand the risks" msgstr "I understand the risks" @@ -3929,11 +3917,11 @@ 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:2188 +#: src/strings.ts:2182 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:2191 +#: src/strings.ts:2185 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." @@ -3953,11 +3941,11 @@ msgstr "" 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:2152 +#: src/strings.ts:2146 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." -#: src/strings.ts:2411 +#: src/strings.ts:2405 msgid "Image" msgstr "Image" @@ -3965,11 +3953,11 @@ msgstr "Image" msgid "Image Compression" msgstr "Image Compression" -#: src/strings.ts:2387 +#: src/strings.ts:2381 msgid "Image properties" msgstr "Image properties" -#: src/strings.ts:2383 +#: src/strings.ts:2377 msgid "Image settings" msgstr "Image settings" @@ -3989,7 +3977,7 @@ msgstr "Images uploaded without compression are slow to load and take more bandw msgid "Immediately" msgstr "Immediately" -#: src/strings.ts:2215 +#: src/strings.ts:2209 msgid "Import & export" msgstr "Import & export" @@ -3997,7 +3985,7 @@ msgstr "Import & export" msgid "Import completed" msgstr "Import completed" -#: src/strings.ts:2725 +#: src/strings.ts:2719 msgid "Import CSV" msgstr "Import CSV" @@ -4005,15 +3993,15 @@ msgstr "Import CSV" msgid "import guide" msgstr "import guide" -#: src/strings.ts:2731 +#: src/strings.ts:2725 msgid "Inbox API" msgstr "Inbox API" -#: src/strings.ts:2795 +#: src/strings.ts:2789 msgid "Inbox keys saved" msgstr "Inbox keys saved" -#: src/strings.ts:2736 +#: src/strings.ts:2730 msgid "Inbox PGP Keys" msgstr "Inbox PGP Keys" @@ -4029,47 +4017,47 @@ msgstr "Incoming note" msgid "Incorrect {type}" msgstr "Incorrect {type}" -#: src/strings.ts:2469 +#: src/strings.ts:2463 msgid "Increase {title}" msgstr "Increase {title}" -#: src/strings.ts:2311 +#: src/strings.ts:2305 msgid "Insert" msgstr "Insert" -#: src/strings.ts:2466 +#: src/strings.ts:2460 msgid "Insert a {rows}x{columns} table" msgstr "Insert a {rows}x{columns} table" -#: src/strings.ts:2416 +#: src/strings.ts:2410 msgid "Insert a table" msgstr "Insert a table" -#: src/strings.ts:2418 +#: src/strings.ts:2412 msgid "Insert an embed" msgstr "Insert an embed" -#: src/strings.ts:2412 +#: src/strings.ts:2406 msgid "Insert an image" msgstr "Insert an image" -#: src/strings.ts:2364 +#: src/strings.ts:2358 msgid "Insert column left" msgstr "Insert column left" -#: src/strings.ts:2365 +#: src/strings.ts:2359 msgid "Insert column right" msgstr "Insert column right" -#: src/strings.ts:2309 +#: src/strings.ts:2303 msgid "Insert link" msgstr "Insert link" -#: src/strings.ts:2371 +#: src/strings.ts:2365 msgid "Insert row above" msgstr "Insert row above" -#: src/strings.ts:2372 +#: src/strings.ts:2366 msgid "Insert row below" msgstr "Insert row below" @@ -4077,7 +4065,7 @@ msgstr "Insert row below" msgid "Install Notesnook" msgstr "Install Notesnook" -#: src/strings.ts:2223 +#: src/strings.ts:2217 msgid "Install update" msgstr "Install update" @@ -4089,7 +4077,7 @@ msgstr "installs" msgid "Invalid {type}" msgstr "Invalid {type}" -#: src/strings.ts:2056 +#: src/strings.ts:2050 msgid "Invalid CORS proxy url" msgstr "Invalid CORS proxy url" @@ -4097,15 +4085,15 @@ msgstr "Invalid CORS proxy url" msgid "Invalid email" msgstr "Invalid email" -#: src/strings.ts:2773 +#: src/strings.ts:2767 msgid "Invalid password" msgstr "Invalid password" -#: src/strings.ts:2794 +#: src/strings.ts:2788 msgid "Invalid PGP key pair. Please check your keys and try again." msgstr "Invalid PGP key pair. Please check your keys and try again." -#: src/strings.ts:2801 +#: src/strings.ts:2795 msgid "Invalid recovery key. Make sure to input your account recovery key, not a 2FA recovery code." msgstr "Invalid recovery key. Make sure to input your account recovery key, not a 2FA recovery code." @@ -4113,7 +4101,7 @@ msgstr "Invalid recovery key. Make sure to input your account recovery key, not msgid "Issue created" msgstr "Issue created" -#: src/strings.ts:2980 +#: src/strings.ts:2960 msgid "Issue summary" msgstr "Issue summary" @@ -4134,7 +4122,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:2333 +#: src/strings.ts:2327 msgid "Italic" msgstr "Italic" @@ -4146,7 +4134,7 @@ msgstr "item" msgid "Item" msgstr "Item" -#: src/strings.ts:2842 +#: src/strings.ts:2836 msgid "Item deleted" msgstr "Item deleted" @@ -4159,7 +4147,7 @@ msgstr "items" msgid "Items" msgstr "Items" -#: src/strings.ts:2235 +#: src/strings.ts:2229 msgid "Join community" msgstr "Join community" @@ -4179,11 +4167,11 @@ msgstr "Join our Telegram group" 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:2143 +#: src/strings.ts:2137 msgid "Join the cause" msgstr "Join the cause" -#: src/strings.ts:2091 +#: src/strings.ts:2085 msgid "Jump to group" msgstr "Jump to group" @@ -4195,7 +4183,7 @@ msgstr "Jump to Reference" msgid "Keep" msgstr "Keep" -#: src/strings.ts:2086 +#: src/strings.ts:2080 msgid "Keep open" msgstr "Keep open" @@ -4211,19 +4199,19 @@ msgstr "Keep your data safe" msgid "Keep your notes updated automatically" msgstr "Keep your notes updated automatically" -#: src/strings.ts:2747 +#: src/strings.ts:2741 msgid "Key name" msgstr "Key name" -#: src/strings.ts:2203 +#: src/strings.ts:2197 msgid "Languages" msgstr "Languages" -#: src/strings.ts:2306 +#: src/strings.ts:2300 msgid "Last edited at" msgstr "Last edited at" -#: src/strings.ts:2781 +#: src/strings.ts:2775 msgid "Last used on" msgstr "Last used on" @@ -4259,7 +4247,7 @@ msgstr "Least relevant first" msgid "Legal" msgstr "Legal" -#: src/strings.ts:2236 +#: src/strings.ts:2230 msgid "License" msgstr "License" @@ -4267,7 +4255,7 @@ msgstr "License" msgid "Licensed under {license}" msgstr "Licensed under {license}" -#: src/strings.ts:2402 +#: src/strings.ts:2396 msgid "Lift list item" msgstr "Lift list item" @@ -4275,11 +4263,11 @@ msgstr "Lift list item" msgid "Light" msgstr "Light" -#: src/strings.ts:2432 +#: src/strings.ts:2426 msgid "Line {line}, Column {column}" msgstr "Line {line}, Column {column}" -#: src/strings.ts:2707 +#: src/strings.ts:2701 msgid "Line height" msgstr "Line height" @@ -4287,11 +4275,11 @@ msgstr "Line height" msgid "Line spacing changed" msgstr "Line spacing changed" -#: src/strings.ts:2337 +#: src/strings.ts:2331 msgid "Link" msgstr "Link" -#: src/strings.ts:3016 +#: src/strings.ts:2996 msgid "Link added" msgstr "Link added" @@ -4299,11 +4287,11 @@ msgstr "Link added" msgid "Link copied" msgstr "Link copied" -#: src/strings.ts:3011 +#: src/strings.ts:2991 msgid "Link entire note" msgstr "Link entire note" -#: src/strings.ts:3005 +#: src/strings.ts:2985 msgid "Link note" msgstr "Link note" @@ -4311,19 +4299,19 @@ msgstr "Link note" msgid "Link notebooks" msgstr "Link notebooks" -#: src/strings.ts:2551 +#: src/strings.ts:2545 msgid "Link notes" msgstr "Link notes" -#: src/strings.ts:3007 +#: src/strings.ts:2987 msgid "Link options" msgstr "Link options" -#: src/strings.ts:2342 +#: src/strings.ts:2336 msgid "Link settings" msgstr "Link settings" -#: src/strings.ts:2462 +#: src/strings.ts:2456 msgid "Link text" msgstr "Link text" @@ -4347,7 +4335,7 @@ msgstr "Linked" msgid "Linked notes" msgstr "Linked notes" -#: src/strings.ts:3013 +#: src/strings.ts:2993 msgid "Linked References" msgstr "Linked References" @@ -4355,11 +4343,11 @@ msgstr "Linked References" msgid "Linking to a specific block is not available for locked notes." msgstr "Linking to a specific block is not available for locked notes." -#: src/strings.ts:3002 +#: src/strings.ts:2982 msgid "Links of notes that are references in this note." msgstr "Links of notes that are references in this note." -#: src/strings.ts:3003 +#: src/strings.ts:2983 msgid "Links of notes where this note is referenced." msgstr "Links of notes where this note is referenced." @@ -4380,7 +4368,7 @@ msgstr "Loading" msgid "Loading {0}, please wait..." msgstr "Loading {0}, please wait..." -#: src/strings.ts:2760 +#: src/strings.ts:2754 msgid "Loading API keys..." msgstr "Loading API keys..." @@ -4440,7 +4428,7 @@ msgstr "Lock note" msgid "Lock the app with a password or pin" msgstr "Lock the app with a password or pin" -#: src/strings.ts:2796 +#: src/strings.ts:2790 msgid "Lock vault timer" msgstr "Lock vault timer" @@ -4452,7 +4440,7 @@ msgstr "Locked notes cannot be pinned" msgid "Locked notes cannot be published" msgstr "Locked notes cannot be published" -#: src/strings.ts:2268 +#: src/strings.ts:2262 msgid "Log out from all other devices" msgstr "Log out from all other devices" @@ -4480,7 +4468,7 @@ msgstr "Login failed" msgid "Login required" msgstr "Login required" -#: src/strings.ts:2818 +#: src/strings.ts:2812 msgid "Login required to restore attachments" msgstr "Login required to restore attachments" @@ -4492,7 +4480,7 @@ msgstr "Login successful" msgid "Login to encrypt and sync notes" msgstr "Login to encrypt and sync notes" -#: src/strings.ts:2700 +#: src/strings.ts:2694 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)" @@ -4516,7 +4504,7 @@ msgstr "Logout from this device" 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:2437 +#: src/strings.ts:2431 msgid "Make task list readonly" msgstr "Make task list readonly" @@ -4568,35 +4556,35 @@ msgstr "Markdown shortcuts" msgid "Marketing emails" msgstr "Marketing emails" -#: src/strings.ts:2450 +#: src/strings.ts:2444 msgid "Match case" msgstr "Match case" -#: src/strings.ts:2451 +#: src/strings.ts:2445 msgid "Match whole word" msgstr "Match whole word" -#: src/strings.ts:2359 +#: src/strings.ts:2353 msgid "Math (inline)" msgstr "Math (inline)" -#: src/strings.ts:2409 +#: src/strings.ts:2403 msgid "Math & formulas" msgstr "Math & formulas" -#: src/strings.ts:2105 +#: src/strings.ts:2099 msgid "Maximize" msgstr "Maximize" -#: src/strings.ts:2867 +#: src/strings.ts:2861 msgid "Maximum reminder date is {maxDate}" msgstr "Maximum reminder date is {maxDate}" -#: src/strings.ts:2145 +#: src/strings.ts:2139 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:2493 +#: src/strings.ts:2487 msgid "Meetings" msgstr "Meetings" @@ -4604,7 +4592,7 @@ msgstr "Meetings" msgid "Member since {date}" msgstr "Member since {date}" -#: src/strings.ts:2370 +#: src/strings.ts:2364 msgid "Merge cells" msgstr "Merge cells" @@ -4622,19 +4610,19 @@ msgstr "Migration failed" msgid "min" msgstr "min" -#: src/strings.ts:2074 +#: src/strings.ts:2068 msgid "Minimal" msgstr "Minimal" -#: src/strings.ts:2104 +#: src/strings.ts:2098 msgid "Minimize" msgstr "Minimize" -#: src/strings.ts:2192 +#: src/strings.ts:2186 msgid "Minimize to system tray" msgstr "Minimize to system tray" -#: src/strings.ts:2964 +#: src/strings.ts:2944 msgid "Miscellaneous" msgstr "Miscellaneous" @@ -4683,11 +4671,11 @@ msgstr "Month" msgid "Monthly" msgstr "Monthly" -#: src/strings.ts:2389 +#: src/strings.ts:2383 msgid "More" msgstr "More" -#: src/strings.ts:3037 +#: src/strings.ts:3017 msgid "More options" msgstr "More options" @@ -4699,15 +4687,15 @@ msgstr "Most relevant first" msgid "Move" msgstr "Move" -#: src/strings.ts:2438 +#: src/strings.ts:2432 msgid "Move all checked tasks to bottom" msgstr "Move all checked tasks to bottom" -#: src/strings.ts:2366 +#: src/strings.ts:2360 msgid "Move column left" msgstr "Move column left" -#: src/strings.ts:2367 +#: src/strings.ts:2361 msgid "Move column right" msgstr "Move column right" @@ -4719,11 +4707,11 @@ msgstr "Move notebook" msgid "Move notes" msgstr "Move notes" -#: src/strings.ts:2374 +#: src/strings.ts:2368 msgid "Move row down" msgstr "Move row down" -#: src/strings.ts:2373 +#: src/strings.ts:2367 msgid "Move row up" msgstr "Move row up" @@ -4747,7 +4735,7 @@ msgstr "Multi-layer encryption to most important notes" msgid "Name" msgstr "Name" -#: src/strings.ts:2816 +#: src/strings.ts:2810 msgid "Name is required." msgstr "Name is required." @@ -4755,11 +4743,11 @@ msgstr "Name is required." msgid "Native high-performance encryption" msgstr "Native high-performance encryption" -#: src/strings.ts:2518 +#: src/strings.ts:2512 msgid "Navigate" msgstr "Navigate" -#: src/strings.ts:2959 +#: src/strings.ts:2939 msgid "Navigation" msgstr "Navigation" @@ -4771,7 +4759,7 @@ msgstr "Never" msgid "Never ask again" msgstr "Never ask again" -#: src/strings.ts:2786 +#: src/strings.ts:2780 msgid "Never expires" msgstr "Never expires" @@ -4779,7 +4767,7 @@ msgstr "Never expires" msgid "Never hesitate to choose privacy" msgstr "Never hesitate to choose privacy" -#: src/strings.ts:3001 +#: src/strings.ts:2981 msgid "Never miss a task. Set your first reminder now." msgstr "Never miss a task. Set your first reminder now." @@ -4787,7 +4775,7 @@ msgstr "Never miss a task. Set your first reminder now." msgid "Never show again" msgstr "Never show again" -#: src/strings.ts:2782 +#: src/strings.ts:2776 msgid "Never used" msgstr "Never used" @@ -4815,7 +4803,7 @@ msgstr "New lines will be double spaced (old ones won't be affected)." msgid "New note" msgstr "New note" -#: src/strings.ts:2967 +#: src/strings.ts:2947 msgid "New note title" msgstr "New note title" @@ -4839,7 +4827,7 @@ msgstr "New reminder" msgid "New tab" msgstr "New tab" -#: src/strings.ts:2524 +#: src/strings.ts:2518 msgid "New tag" msgstr "New tag" @@ -4851,11 +4839,11 @@ msgstr "New update available" msgid "New version" msgstr "New version" -#: src/strings.ts:2089 +#: src/strings.ts:2083 msgid "Newest - oldest" msgstr "Newest - oldest" -#: src/strings.ts:2920 +#: src/strings.ts:2900 msgid "Newest first" msgstr "Newest first" @@ -4867,15 +4855,15 @@ msgstr "Newly created notes will be uncategorized" msgid "Next" msgstr "Next" -#: src/strings.ts:2914 +#: src/strings.ts:2894 msgid "Next billing date" msgstr "Next billing date" -#: src/strings.ts:2454 +#: src/strings.ts:2448 msgid "Next match" msgstr "Next match" -#: src/strings.ts:2519 +#: src/strings.ts:2513 msgid "Next tab" msgstr "Next tab" @@ -4911,11 +4899,11 @@ msgstr "No directory selected" msgid "No downloads in progress." msgstr "No downloads in progress." -#: src/strings.ts:2049 +#: src/strings.ts:2043 msgid "No encryption key found" msgstr "No encryption key found" -#: src/strings.ts:2840 +#: src/strings.ts:2834 msgid "No failed inbox items" msgstr "No failed inbox items" @@ -4940,7 +4928,7 @@ msgstr "No links found" msgid "No note history available for this device." msgstr "No note history available for this device." -#: src/strings.ts:2568 +#: src/strings.ts:2562 msgid "No notebooks selected to move" msgstr "No notebooks selected to move" @@ -4948,11 +4936,7 @@ msgstr "No notebooks selected to move" msgid "No notebooks yet" msgstr "No notebooks yet" -#: src/strings.ts:3063 -msgid "No notes to export" -msgstr "No notes to export" - -#: src/strings.ts:2923 +#: src/strings.ts:2903 msgid "No notes yet" msgstr "No notes yet" @@ -4960,7 +4944,7 @@ msgstr "No notes yet" msgid "No one can view this {type} except you." msgstr "No one can view this {type} except you." -#: src/strings.ts:2703 +#: src/strings.ts:2697 msgid "No password" msgstr "No password" @@ -4972,7 +4956,7 @@ msgstr "No references found of this note" msgid "No references yet" msgstr "No references yet" -#: src/strings.ts:3000 +#: src/strings.ts:2980 msgid "No reminders found" msgstr "No reminders found" @@ -4988,7 +4972,7 @@ msgstr "No results found for \"{query}\"" msgid "No results found for {query}" msgstr "No results found for {query}" -#: src/strings.ts:2917 +#: src/strings.ts:2897 msgid "No tags yet" msgstr "No tags yet" @@ -5004,7 +4988,7 @@ msgstr "No updates available" msgid "None" msgstr "None" -#: src/strings.ts:2079 +#: src/strings.ts:2073 msgid "Normal mode" msgstr "Normal mode" @@ -5029,15 +5013,15 @@ msgstr "Note content" msgid "Note copied to clipboard" msgstr "Note copied to clipboard" -#: src/strings.ts:2972 +#: src/strings.ts:2952 msgid "Note count" msgstr "Note count" -#: src/strings.ts:2014 +#: src/strings.ts:2008 msgid "Note does not exist" msgstr "Note does not exist" -#: src/strings.ts:2865 +#: src/strings.ts:2859 msgid "Note duplicated" msgstr "Note duplicated" @@ -5061,7 +5045,7 @@ msgstr "Note title" msgid "Note unlocked" msgstr "Note unlocked" -#: src/strings.ts:2999 +#: src/strings.ts:2979 msgid "Note unpublished" msgstr "Note unpublished" @@ -5069,7 +5053,7 @@ msgstr "Note unpublished" msgid "Note version history is local only." msgstr "Note version history is local only." -#: src/strings.ts:3045 +#: src/strings.ts:3025 msgid "Note will get deleted on the set date." msgstr "Note will get deleted on the set date." @@ -5090,7 +5074,7 @@ msgstr "notebook" msgid "Notebook" msgstr "Notebook" -#: src/strings.ts:2554 +#: src/strings.ts:2548 msgid "Notebook added" msgstr "Notebook added" @@ -5108,7 +5092,7 @@ msgstr "Notebooks" msgid "NOTEBOOKS" msgstr "NOTEBOOKS" -#: src/strings.ts:2316 +#: src/strings.ts:2310 msgid "Notebooks are the best way to organize your notes." msgstr "Notebooks are the best way to organize your notes." @@ -5129,23 +5113,23 @@ msgstr "Notes exported as {path} successfully" msgid "notes imported" msgstr "notes imported" -#: src/strings.ts:2628 +#: src/strings.ts:2622 msgid "Notesnook" msgstr "Notesnook" -#: src/strings.ts:2688 +#: src/strings.ts:2682 msgid "Notesnook Circle" msgstr "Notesnook Circle" -#: src/strings.ts:2694 +#: src/strings.ts:2688 msgid "Notesnook Circle is exclusively available to subscribed users." msgstr "Notesnook Circle is exclusively available to subscribed users." -#: src/strings.ts:2142 +#: src/strings.ts:2136 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:2217 +#: src/strings.ts:2211 msgid "Notesnook Importer" msgstr "Notesnook Importer" @@ -5153,7 +5137,7 @@ msgstr "Notesnook Importer" msgid "Notesnook Pro" msgstr "Notesnook Pro" -#: src/strings.ts:2249 +#: src/strings.ts:2243 msgid "" "Notesnook uses the following DNS providers:\n" "\n" @@ -5177,7 +5161,7 @@ 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:2212 +#: src/strings.ts:2206 msgid "Notifications" msgstr "Notifications" @@ -5185,7 +5169,7 @@ msgstr "Notifications" msgid "Notifications disabled" msgstr "Notifications disabled" -#: src/strings.ts:2350 +#: src/strings.ts:2344 msgid "Numbered list" msgstr "Numbered list" @@ -5205,15 +5189,11 @@ msgstr "Offline" msgid "Offline & storage" msgstr "Offline & storage" -#: src/strings.ts:2894 -msgid "Offline mode" -msgstr "Offline mode" - -#: src/strings.ts:2765 +#: src/strings.ts:2759 msgid "OK" msgstr "OK" -#: src/strings.ts:2302 +#: src/strings.ts:2296 msgid "Okay" msgstr "Okay" @@ -5225,11 +5205,11 @@ msgstr "Old - new" msgid "Older version" msgstr "Older version" -#: src/strings.ts:2088 +#: src/strings.ts:2082 msgid "Oldest - newest" msgstr "Oldest - newest" -#: src/strings.ts:2921 +#: src/strings.ts:2901 msgid "Oldest first" msgstr "Oldest first" @@ -5237,11 +5217,11 @@ msgstr "Oldest first" 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:2903 +#: src/strings.ts:2883 msgid "One time purchase" msgstr "One time purchase" -#: src/strings.ts:2646 +#: src/strings.ts:2640 msgid "One time purchase, no auto-renewal" msgstr "One time purchase, no auto-renewal" @@ -5265,7 +5245,7 @@ msgstr "Open in browser" msgid "Open in browser to manage subscription" msgstr "Open in browser to manage subscription" -#: src/strings.ts:2400 +#: src/strings.ts:2394 msgid "Open in new tab" msgstr "Open in new tab" @@ -5273,11 +5253,11 @@ msgstr "Open in new tab" msgid "Open issue" msgstr "Open issue" -#: src/strings.ts:2340 +#: src/strings.ts:2334 msgid "Open link" msgstr "Open link" -#: src/strings.ts:3053 +#: src/strings.ts:3033 msgid "Open location" msgstr "Open location" @@ -5289,7 +5269,7 @@ msgstr "Open note" msgid "Open settings" msgstr "Open settings" -#: src/strings.ts:2401 +#: src/strings.ts:2395 msgid "Open source" msgstr "Open source" @@ -5309,7 +5289,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:2854 +#: src/strings.ts:2848 msgid "Opening local file" msgstr "Opening local file" @@ -5321,15 +5301,15 @@ msgstr "Optional" msgid "or email us at" msgstr "or email us at" -#: src/strings.ts:2087 +#: src/strings.ts:2081 msgid "Order by" msgstr "Order by" -#: src/strings.ts:2295 +#: src/strings.ts:2289 msgid "Order ID" msgstr "Order ID" -#: src/strings.ts:2963 +#: src/strings.ts:2943 msgid "Organization" msgstr "Organization" @@ -5338,27 +5318,27 @@ msgstr "Organization" msgid "Orphaned" msgstr "Orphaned" -#: src/strings.ts:2220 +#: src/strings.ts:2214 msgid "Other" msgstr "Other" -#: src/strings.ts:2421 +#: src/strings.ts:2415 msgid "Outline list" msgstr "Outline list" -#: src/strings.ts:2624 +#: src/strings.ts:2618 msgid "Outlines, note linking, and more" msgstr "Outlines, note linking, and more" -#: src/strings.ts:2424 +#: src/strings.ts:2418 msgid "Paragraph" msgstr "Paragraph" -#: src/strings.ts:2567 +#: src/strings.ts:2561 msgid "Paragraphs" msgstr "Paragraphs" -#: src/strings.ts:2176 +#: src/strings.ts:2170 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." @@ -5366,7 +5346,7 @@ msgstr "Partial backups contain all your data except attachments. They are creat msgid "Partially refunded" msgstr "Partially refunded" -#: src/strings.ts:2478 +#: src/strings.ts:2472 msgid "Passed" msgstr "Passed" @@ -5399,11 +5379,11 @@ msgid "Password protection" msgstr "Password protection" #: src/strings.ts:266 -#: src/strings.ts:3004 +#: src/strings.ts:2984 msgid "Password protection (optional)" msgstr "Password protection (optional)" -#: src/strings.ts:2807 +#: src/strings.ts:2801 msgid "Password required" msgstr "Password required" @@ -5411,27 +5391,27 @@ msgstr "Password required" msgid "Password updated" msgstr "Password updated" -#: src/strings.ts:2156 +#: src/strings.ts:2150 msgid "Password/pin" msgstr "Password/pin" -#: src/strings.ts:2324 +#: src/strings.ts:2318 msgid "Paste" msgstr "Paste" -#: src/strings.ts:2325 +#: src/strings.ts:2319 msgid "Paste and match style" msgstr "Paste and match style" -#: src/strings.ts:2446 +#: src/strings.ts:2440 msgid "Paste embed code here. Only iframes are supported." msgstr "Paste embed code here. Only iframes are supported." -#: src/strings.ts:2461 +#: src/strings.ts:2455 msgid "Paste image URL here" msgstr "Paste image URL here" -#: src/strings.ts:2326 +#: src/strings.ts:2320 msgid "Paste without formatting" msgstr "Paste without formatting" @@ -5439,19 +5419,19 @@ msgstr "Paste without formatting" msgid "Pause sync" msgstr "Pause sync" -#: src/strings.ts:2647 +#: src/strings.ts:2641 msgid "Pay once and use for 5 years" msgstr "Pay once and use for 5 years" -#: src/strings.ts:2839 +#: src/strings.ts:2833 msgid "Payload data" msgstr "Payload data" -#: src/strings.ts:2274 +#: src/strings.ts:2268 msgid "Payment method" msgstr "Payment method" -#: src/strings.ts:2906 +#: src/strings.ts:2886 msgid "Payment summary" msgstr "Payment summary" @@ -5459,7 +5439,7 @@ msgstr "Payment summary" msgid "PDF is password protected" msgstr "PDF is password protected" -#: src/strings.ts:2874 +#: src/strings.ts:2868 msgid "Permission required to save QR-Code to Gallery" msgstr "Permission required to save QR-Code to Gallery" @@ -5491,11 +5471,11 @@ msgstr "Pin notification" msgid "Pinned" msgstr "Pinned" -#: src/strings.ts:2668 +#: src/strings.ts:2662 msgid "Plan limits" msgstr "Plan limits" -#: src/strings.ts:2628 +#: src/strings.ts:2622 msgid "Plans" msgstr "Plans" @@ -5504,7 +5484,7 @@ msgid "Please confirm your identity by entering a recovery code." msgstr "Please confirm your identity by entering a recovery code." #: src/strings.ts:1030 -#: src/strings.ts:2308 +#: src/strings.ts:2302 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." @@ -5521,20 +5501,20 @@ msgstr "Please confirm your identity by entering the authentication code sent to 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:2072 +#: src/strings.ts:2066 msgid "Please enable automatic backups to avoid losing important data." msgstr "Please enable automatic backups to avoid losing important data." -#: src/strings.ts:2750 +#: src/strings.ts:2744 msgid "Please enter a key name" msgstr "Please enter a key name" -#: src/strings.ts:1577 -#: src/strings.ts:2809 +#: src/strings.ts:1572 +#: src/strings.ts:2803 msgid "Please enter a valid email address" msgstr "Please enter a valid email address" -#: src/strings.ts:2019 +#: src/strings.ts:2013 msgid "Please enter a valid hex color (e.g. #ffffff)" msgstr "Please enter a valid hex color (e.g. #ffffff)" @@ -5550,7 +5530,7 @@ msgstr "Please enter a valid URL" msgid "Please enter password of this backup file" msgstr "Please enter password of this backup file" -#: src/strings.ts:2319 +#: src/strings.ts:2313 msgid "Please enter the password to decrypt and restore this backup." msgstr "Please enter the password to decrypt and restore this backup." @@ -5566,7 +5546,7 @@ msgstr "Please enter the password to unlock this note" msgid "Please enter the password to view this version" msgstr "Please enter the password to view this version" -#: src/strings.ts:2771 +#: src/strings.ts:2765 msgid "Please enter your account password to view this API key." msgstr "Please enter your account password to view this API key." @@ -5582,7 +5562,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:1998 +#: src/strings.ts:1992 msgid "Please enter your vault password to continue" msgstr "Please enter your vault password to continue" @@ -5594,7 +5574,7 @@ msgstr "Please fill all the fields to continue." msgid "Please grant notifications permission to add new reminders." msgstr "Please grant notifications permission to add new reminders." -#: src/strings.ts:2824 +#: src/strings.ts:2818 msgid "Please login to download attachments." msgstr "Please login to download attachments." @@ -5606,11 +5586,11 @@ 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:2934 +#: src/strings.ts:2914 msgid "Please provide a valid multi factor authentication code." msgstr "Please provide a valid multi factor authentication code." -#: src/strings.ts:2932 +#: src/strings.ts:2912 msgid "Please provide a valid multi factor authentication recovery code." msgstr "Please provide a valid multi factor authentication recovery code." @@ -5626,7 +5606,7 @@ msgstr "Please select the day to repeat the reminder on" 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:2467 +#: src/strings.ts:2461 msgid "Please set a table size" msgstr "Please set a table size" @@ -5634,7 +5614,7 @@ msgstr "Please set a table size" msgid "Please set title of the reminder" msgstr "Please set title of the reminder" -#: src/strings.ts:2052 +#: src/strings.ts:2046 msgid "Please try again" msgstr "Please try again" @@ -5679,7 +5659,7 @@ 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:1980 +#: src/strings.ts:1974 msgid "Please wait while we reset your account password." msgstr "Please wait while we reset your account password." @@ -5712,7 +5692,7 @@ msgstr "Please wait while your data is downloaded & decrypted." msgid "Preferences" msgstr "Preferences" -#: src/strings.ts:2984 +#: src/strings.ts:2964 msgid "Preparing logs.." msgstr "Preparing logs.." @@ -5728,23 +5708,19 @@ msgstr "Preparing to restore backup file..." msgid "Presets" msgstr "Presets" -#: src/strings.ts:2194 +#: src/strings.ts:2188 msgid "Pressing \"โ€”\" will hide the app in your system tray." msgstr "Pressing \"โ€”\" will hide the app in your system tray." -#: src/strings.ts:2197 +#: src/strings.ts:2191 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:2245 +#: src/strings.ts:2239 msgid "Prevent note title from appearing in tab/window title." msgstr "Prevent note title from appearing in tab/window title." -#: src/strings.ts:2886 -msgid "Prevent the screen from turning off while the editor is focused." -msgstr "Prevent the screen from turning off while the editor is focused." - -#: src/strings.ts:2388 +#: src/strings.ts:2382 msgid "Preview attachment" msgstr "Preview attachment" @@ -5752,19 +5728,19 @@ msgstr "Preview attachment" msgid "Preview not available, content is encrypted." msgstr "Preview not available, content is encrypted." -#: src/strings.ts:2455 +#: src/strings.ts:2449 msgid "Previous match" msgstr "Previous match" -#: src/strings.ts:2520 +#: src/strings.ts:2514 msgid "Previous tab" msgstr "Previous tab" -#: src/strings.ts:2099 +#: src/strings.ts:2093 msgid "Print" msgstr "Print" -#: src/strings.ts:2219 +#: src/strings.ts:2213 msgid "Privacy" msgstr "Privacy" @@ -5788,7 +5764,7 @@ msgstr "Privacy mode" msgid "Privacy policy" msgstr "Privacy policy" -#: src/strings.ts:2665 +#: src/strings.ts:2659 msgid "Privacy Policy." msgstr "Privacy Policy." @@ -5800,15 +5776,15 @@ msgstr "Privacy Policy. " msgid "private analytics and bug reports." msgstr "private analytics and bug reports." -#: src/strings.ts:2792 +#: src/strings.ts:2786 msgid "Private key" msgstr "Private key" -#: src/strings.ts:2806 +#: src/strings.ts:2800 msgid "Private key is passphrase-protected. Please provide the decrypted key or a key without a passphrase." msgstr "Private key is passphrase-protected. Please provide the decrypted key or a key without a passphrase." -#: src/strings.ts:2826 +#: src/strings.ts:2820 msgid "Private key required" msgstr "Private key required" @@ -5820,15 +5796,15 @@ msgstr "Private." msgid "Pro" msgstr "Pro" -#: src/strings.ts:2545 +#: src/strings.ts:2539 msgid "Pro plan" msgstr "Pro plan" -#: src/strings.ts:2112 +#: src/strings.ts:2106 msgid "Processing {collection}..." msgstr "Processing {collection}..." -#: src/strings.ts:2111 +#: src/strings.ts:2105 msgid "Processing..." msgstr "Processing..." @@ -5836,11 +5812,11 @@ msgstr "Processing..." msgid "Productivity" msgstr "Productivity" -#: src/strings.ts:2208 +#: src/strings.ts:2202 msgid "Profile" msgstr "Profile" -#: src/strings.ts:2020 +#: src/strings.ts:2014 msgid "Profile updated" msgstr "Profile updated" @@ -5848,11 +5824,11 @@ msgstr "Profile updated" msgid "Properties" msgstr "Properties" -#: src/strings.ts:2834 +#: src/strings.ts:2828 msgid "Protect incoming messages so only you can read them" msgstr "Protect incoming messages so only you can read them" -#: src/strings.ts:2622 +#: src/strings.ts:2616 msgid "Protect notes with app-level security" msgstr "Protect notes with app-level security" @@ -5860,19 +5836,19 @@ msgstr "Protect notes with app-level security" msgid "Protect your notes" msgstr "Protect your notes" -#: src/strings.ts:2831 +#: src/strings.ts:2825 msgid "Provide your own keys" msgstr "Provide your own keys" -#: src/strings.ts:2256 +#: src/strings.ts:2250 msgid "Proxy" msgstr "Proxy" -#: src/strings.ts:2791 +#: src/strings.ts:2785 msgid "Public key" msgstr "Public key" -#: src/strings.ts:2825 +#: src/strings.ts:2819 msgid "Public key required" msgstr "Public key required" @@ -5884,7 +5860,7 @@ msgstr "Publish" msgid "Publish note" msgstr "Publish note" -#: src/strings.ts:2704 +#: src/strings.ts:2698 msgid "Publish to the web" msgstr "Publish to the web" @@ -5912,7 +5888,7 @@ msgstr "Published note link" 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:2656 +#: src/strings.ts:2650 msgid "Purchase" msgstr "Purchase" @@ -5928,7 +5904,7 @@ msgstr "Quick note notification" msgid "Quick note widgets" msgstr "Quick note widgets" -#: src/strings.ts:2516 +#: src/strings.ts:2510 msgid "Quick open" msgstr "Quick open" @@ -5936,7 +5912,7 @@ msgstr "Quick open" msgid "Quickly create a note from the notification" msgstr "Quickly create a note from the notification" -#: src/strings.ts:2408 +#: src/strings.ts:2402 msgid "Quote" msgstr "Quote" @@ -5976,7 +5952,7 @@ msgstr "Read the terms of service" msgid "Reading backup file..." msgstr "Reading backup file..." -#: src/strings.ts:2630 +#: src/strings.ts:2624 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?" @@ -5984,7 +5960,7 @@ msgstr "Ready to take the next step on your private note taking journey?" msgid "Real-time sync" msgstr "Real-time sync" -#: src/strings.ts:2298 +#: src/strings.ts:2292 msgid "Receipt" msgstr "Receipt" @@ -5996,19 +5972,19 @@ msgstr "Recent backups" msgid "Recent history" msgstr "Recent history" -#: src/strings.ts:2531 +#: src/strings.ts:2525 msgid "Recents" msgstr "Recents" -#: src/strings.ts:2474 +#: src/strings.ts:2468 msgid "Recheck all" msgstr "Recheck all" -#: src/strings.ts:2066 +#: src/strings.ts:2060 msgid "Rechecking failed" msgstr "Rechecking failed" -#: src/strings.ts:2499 +#: src/strings.ts:2493 msgid "Recipes" msgstr "Recipes" @@ -6016,7 +5992,7 @@ msgstr "Recipes" msgid "Recommended" msgstr "Recommended" -#: src/strings.ts:2632 +#: src/strings.ts:2626 msgid "Recommended by Privacy Guides" msgstr "Recommended by Privacy Guides" @@ -6024,7 +6000,7 @@ msgstr "Recommended by Privacy Guides" msgid "Recover your account" msgstr "Recover your account" -#: src/strings.ts:2930 +#: src/strings.ts:2910 msgid "Recovery code" msgstr "Recovery code" @@ -6060,23 +6036,23 @@ msgstr "Recovery key QR code saved" msgid "Recovery key text file saved" msgstr "Recovery key text file saved" -#: src/strings.ts:1981 +#: src/strings.ts:1975 msgid "Recovery successful!" msgstr "Recovery successful!" -#: src/strings.ts:2511 +#: src/strings.ts:2505 msgid "Redeem" msgstr "Redeem" -#: src/strings.ts:2687 +#: src/strings.ts:2681 msgid "Redeem code" msgstr "Redeem code" -#: src/strings.ts:2508 +#: src/strings.ts:2502 msgid "Redeem gift code" msgstr "Redeem gift code" -#: src/strings.ts:2510 +#: src/strings.ts:2504 msgid "Redeeming gift code" msgstr "Redeeming gift code" @@ -6096,7 +6072,7 @@ msgstr "References" msgid "Regenerate" msgstr "Regenerate" -#: src/strings.ts:2162 +#: src/strings.ts:2156 msgid "Register" msgstr "Register" @@ -6104,7 +6080,7 @@ msgstr "Register" msgid "Release notes" msgstr "Release notes" -#: src/strings.ts:2533 +#: src/strings.ts:2527 msgid "Release track" msgstr "Release track" @@ -6120,7 +6096,7 @@ msgstr "Reload app" msgid "Relogin to your account" msgstr "Relogin to your account" -#: src/strings.ts:3039 +#: src/strings.ts:3019 msgid "Remains active throughout the day." msgstr "Remains active throughout the day." @@ -6128,8 +6104,8 @@ msgstr "Remains active throughout the day." msgid "Remembered your password?" msgstr "Remembered your password?" -#: src/strings.ts:2912 -#: src/strings.ts:2937 +#: src/strings.ts:2892 +#: src/strings.ts:2917 msgid "Remind before your trial ends" msgstr "Remind before your trial ends" @@ -6153,7 +6129,7 @@ msgstr "reminder" msgid "Reminder" msgstr "Reminder" -#: src/strings.ts:3017 +#: src/strings.ts:2997 msgid "Reminder frequency" msgstr "Reminder frequency" @@ -6179,7 +6155,7 @@ msgstr "Reminders" 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:2018 +#: src/strings.ts:2012 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." @@ -6211,7 +6187,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:2392 +#: src/strings.ts:2386 msgid "Remove attachment" msgstr "Remove attachment" @@ -6223,7 +6199,7 @@ msgstr "Remove from all" msgid "Remove from notebook" msgstr "Remove from notebook" -#: src/strings.ts:2532 +#: src/strings.ts:2526 msgid "Remove from recents" msgstr "Remove from recents" @@ -6231,7 +6207,7 @@ msgstr "Remove from recents" msgid "Remove full name" msgstr "Remove full name" -#: src/strings.ts:2339 +#: src/strings.ts:2333 msgid "Remove link" msgstr "Remove link" @@ -6263,15 +6239,15 @@ msgstr "Reorder" msgid "Repeats daily at {date}" msgstr "Repeats daily at {date}" -#: src/strings.ts:2452 +#: src/strings.ts:2446 msgid "Replace" msgstr "Replace" -#: src/strings.ts:2453 +#: src/strings.ts:2447 msgid "Replace all" msgstr "Replace all" -#: src/strings.ts:2239 +#: src/strings.ts:2233 msgid "Report" msgstr "Report" @@ -6304,7 +6280,7 @@ msgstr "Reset" msgid "Reset account password" msgstr "Reset account password" -#: src/strings.ts:2559 +#: src/strings.ts:2553 msgid "Reset home" msgstr "Reset home" @@ -6316,7 +6292,7 @@ msgstr "Reset selection" msgid "Reset server urls" msgstr "Reset server urls" -#: src/strings.ts:2095 +#: src/strings.ts:2089 msgid "Reset sidebar" msgstr "Reset sidebar" @@ -6328,11 +6304,11 @@ msgstr "Reset the toolbar to default settings" msgid "Reset toolbar" msgstr "Reset toolbar" -#: src/strings.ts:1979 -msgid "Resetting account password ({progress})" -msgstr "Resetting account password ({progress})" +#: src/strings.ts:1973 +msgid "Resetting account password..." +msgstr "Resetting account password..." -#: src/strings.ts:2054 +#: src/strings.ts:2048 msgid "Restart now" msgstr "Restart now" @@ -6352,7 +6328,7 @@ msgstr "Restart the app." msgid "Restore" msgstr "Restore" -#: src/strings.ts:2979 +#: src/strings.ts:2959 msgid "Restore actions" msgstr "Restore actions" @@ -6360,7 +6336,7 @@ msgstr "Restore actions" msgid "Restore backup" msgstr "Restore backup" -#: src/strings.ts:2481 +#: src/strings.ts:2475 msgid "Restore backup?" msgstr "Restore backup?" @@ -6404,7 +6380,7 @@ msgstr "Resubscribe from Playstore" msgid "Resubscribe to Pro" msgstr "Resubscribe to Pro" -#: src/strings.ts:2762 +#: src/strings.ts:2756 msgid "Retry" msgstr "Retry" @@ -6412,11 +6388,11 @@ msgstr "Retry" msgid "Reupload" msgstr "Reupload" -#: src/strings.ts:2085 +#: src/strings.ts:2079 msgid "Reveal in list" msgstr "Reveal in list" -#: src/strings.ts:2670 +#: src/strings.ts:2664 msgid "Review your current limits and unlock more with premium" msgstr "Review your current limits and unlock more with premium" @@ -6428,7 +6404,7 @@ msgstr "Revoke" msgid "Revoke biometric unlocking" msgstr "Revoke biometric unlocking" -#: src/strings.ts:2776 +#: src/strings.ts:2770 msgid "Revoke Inbox API Key - {name}" msgstr "Revoke Inbox API Key - {name}" @@ -6440,19 +6416,19 @@ msgstr "Revoke vault fingerprint unlock" msgid "Roadmap" msgstr "Roadmap" -#: src/strings.ts:2113 +#: src/strings.ts:2107 msgid "Root" msgstr "Root" -#: src/strings.ts:2092 +#: src/strings.ts:2086 msgid "Rotate left" msgstr "Rotate left" -#: src/strings.ts:2093 +#: src/strings.ts:2087 msgid "Rotate right" msgstr "Rotate right" -#: src/strings.ts:2362 +#: src/strings.ts:2356 msgid "Row properties" msgstr "Row properties" @@ -6460,7 +6436,7 @@ msgstr "Row properties" msgid "Run file check" msgstr "Run file check" -#: src/strings.ts:2134 +#: src/strings.ts:2128 msgid "Safe & encrypted notes" msgstr "Safe & encrypted notes" @@ -6492,7 +6468,7 @@ msgstr "Save account recovery key" msgid "Save and continue" msgstr "Save and continue" -#: src/strings.ts:2998 +#: src/strings.ts:2978 msgid "Save changes" msgstr "Save changes" @@ -6532,15 +6508,15 @@ msgstr "Save your account recovery key in a safe place. You will need it to reco 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:2471 +#: src/strings.ts:2465 msgid "Saved" msgstr "Saved" -#: src/strings.ts:2472 +#: src/strings.ts:2466 msgid "Saving" msgstr "Saving" -#: src/strings.ts:2988 +#: src/strings.ts:2968 msgid "Saving logs to your storage..." msgstr "Saving logs to your storage..." @@ -6560,15 +6536,15 @@ msgstr "Saving zip file. Please wait..." msgid "Scan the QR code with your authenticator app" msgstr "Scan the QR code with your authenticator app" -#: src/strings.ts:2497 +#: src/strings.ts:2491 msgid "School work" msgstr "School work" -#: src/strings.ts:2570 +#: src/strings.ts:2564 msgid "Scroll to bottom" msgstr "Scroll to bottom" -#: src/strings.ts:2569 +#: src/strings.ts:2563 msgid "Scroll to top" msgstr "Scroll to top" @@ -6585,7 +6561,7 @@ msgstr "Search a note" msgid "Search a note to link to" msgstr "Search a note to link to" -#: src/strings.ts:2513 +#: src/strings.ts:2507 msgid "Search for notes, notebooks, and tags..." msgstr "Search for notes, notebooks, and tags..." @@ -6641,7 +6617,7 @@ msgstr "Search in Tags" msgid "Search in Trash" msgstr "Search in Trash" -#: src/strings.ts:2434 +#: src/strings.ts:2428 msgid "Search languages" msgstr "Search languages" @@ -6665,7 +6641,7 @@ msgstr "Searching for {query}..." msgid "sec" msgstr "sec" -#: src/strings.ts:2620 +#: src/strings.ts:2614 msgid "Secure backup space for files and images." msgstr "Secure backup space for files and images." @@ -6673,19 +6649,19 @@ msgstr "Secure backup space for files and images." msgid "Secure your note" msgstr "Secure your note" -#: src/strings.ts:2978 +#: src/strings.ts:2958 msgid "Security" msgstr "Security" -#: src/strings.ts:2218 +#: src/strings.ts:2212 msgid "Security & privacy" msgstr "Security & privacy" -#: src/strings.ts:2158 +#: src/strings.ts:2152 msgid "Security key" msgstr "Security key" -#: src/strings.ts:2053 +#: src/strings.ts:2047 msgid "Security key successfully registered." msgstr "Security key successfully registered." @@ -6705,11 +6681,11 @@ msgstr "Select" msgid "Select a backup file from your device to restore backup" msgstr "Select a backup file from your device to restore backup" -#: src/strings.ts:2564 +#: src/strings.ts:2558 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:2173 +#: src/strings.ts:2167 msgid "Select a theme" msgstr "Select a theme" @@ -6729,15 +6705,15 @@ msgstr "Select backups folder" msgid "Select date" msgstr "Select date" -#: src/strings.ts:3031 +#: src/strings.ts:3011 msgid "Select date & time" msgstr "Select date & time" -#: src/strings.ts:3048 +#: src/strings.ts:3028 msgid "Select date and time to change the created date" msgstr "Select date and time to change the created date" -#: src/strings.ts:3035 +#: src/strings.ts:3015 msgid "Select Dates" msgstr "Select Dates" @@ -6745,7 +6721,7 @@ msgstr "Select Dates" msgid "Select day of the week to repeat the reminder." msgstr "Select day of the week to repeat the reminder." -#: src/strings.ts:3027 +#: src/strings.ts:3007 msgid "Select Days" msgstr "Select Days" @@ -6765,7 +6741,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:2429 +#: src/strings.ts:2423 msgid "Select language" msgstr "Select language" @@ -6777,7 +6753,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:2552 +#: src/strings.ts:2546 msgid "Select notes to link to \"{title}\"" msgstr "Select notes to link to \"{title}\"" @@ -6785,19 +6761,19 @@ 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:3014 +#: src/strings.ts:2994 msgid "Select paragraphs" msgstr "Select paragraphs" -#: src/strings.ts:2897 -msgid "Select Plan" -msgstr "Select Plan" +#: src/strings.ts:2877 +msgid "Select plan" +msgstr "Select plan" #: src/strings.ts:1882 msgid "Select profile picture" msgstr "Select profile picture" -#: src/strings.ts:2558 +#: src/strings.ts:2552 msgid "Select the default sidebar tab" msgstr "Select the default sidebar tab" @@ -6805,23 +6781,23 @@ 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:2205 +#: src/strings.ts:2199 msgid "Select the languages the spell checker should check in." msgstr "Select the languages the spell checker should check in." -#: src/strings.ts:2534 +#: src/strings.ts:2528 msgid "Select the release track for Notesnook." msgstr "Select the release track for Notesnook." -#: src/strings.ts:3034 +#: src/strings.ts:3014 msgid "Select time" msgstr "Select time" -#: src/strings.ts:3036 +#: src/strings.ts:3016 msgid "Select Time" msgstr "Select Time" -#: src/strings.ts:3008 +#: src/strings.ts:2988 msgid "Selected note" msgstr "Selected note" @@ -6833,7 +6809,7 @@ msgstr "SELECTED NOTE" msgid "Self destruct" msgstr "Self destruct" -#: src/strings.ts:2240 +#: src/strings.ts:2234 msgid "Send" msgstr "Send" @@ -6885,11 +6861,11 @@ msgstr "Server used to sync your notes & other data between devices." msgid "Server with host {host} not found." msgstr "Server with host {host} not found." -#: src/strings.ts:2213 +#: src/strings.ts:2207 msgid "Servers" msgstr "Servers" -#: src/strings.ts:2214 +#: src/strings.ts:2208 msgid "Servers configuration" msgstr "Servers configuration" @@ -6897,7 +6873,7 @@ msgstr "Servers configuration" msgid "Session expired" msgstr "Session expired" -#: src/strings.ts:2266 +#: src/strings.ts:2260 msgid "Sessions" msgstr "Sessions" @@ -6913,7 +6889,7 @@ msgstr "Set as dark theme" msgid "Set as default" msgstr "Set as default" -#: src/strings.ts:2556 +#: src/strings.ts:2550 msgid "Set as home" msgstr "Set as home" @@ -6925,7 +6901,7 @@ msgstr "Set as light theme" msgid "Set automatic trash cleanup interval from Settings > Behaviour > Clean trash interval." msgstr "Set automatic trash cleanup interval from Settings > Behaviour > Clean trash interval." -#: src/strings.ts:2721 +#: src/strings.ts:2715 msgid "Set expiry" msgstr "Set expiry" @@ -6953,7 +6929,7 @@ msgstr "Set the interval to create a partial backup (without attachments) automa msgid "Set your name" msgstr "Set your name" -#: src/strings.ts:2928 +#: src/strings.ts:2908 msgid "Setting up your account..." msgstr "Setting up your account..." @@ -6975,7 +6951,7 @@ msgstr "Setup a password to lock the app" msgid "Setup a pin to lock the app" msgstr "Setup a pin to lock the app" -#: src/strings.ts:2258 +#: src/strings.ts:2252 msgid "" "Setup an HTTP/HTTPS/SOCKS proxy.\n" "\n" @@ -7003,7 +6979,7 @@ msgstr "Setup app lock password" msgid "Setup app lock pin" msgstr "Setup app lock pin" -#: src/strings.ts:2875 +#: src/strings.ts:2869 msgid "Setup inbox keys" msgstr "Setup inbox keys" @@ -7043,7 +7019,7 @@ msgstr "Share note" msgid "Share Notesnook with friends!" msgstr "Share Notesnook with friends!" -#: src/strings.ts:2733 +#: src/strings.ts:2727 msgid "Share things to Notesnook from anywhere using the Inbox API" msgstr "Share things to Notesnook from anywhere using the Inbox API" @@ -7051,11 +7027,11 @@ msgstr "Share things to Notesnook from anywhere using the Inbox API" msgid "Share to cloud" msgstr "Share to cloud" -#: src/strings.ts:2995 +#: src/strings.ts:2975 msgid "Share ZIP" msgstr "Share ZIP" -#: src/strings.ts:3041 +#: src/strings.ts:3021 msgid "Short Detail" msgstr "Short Detail" @@ -7067,7 +7043,7 @@ msgstr "shortcut" msgid "Shortcut" msgstr "Shortcut" -#: src/strings.ts:2065 +#: src/strings.ts:2059 msgid "Shortcut removed" msgstr "Shortcut removed" @@ -7079,7 +7055,7 @@ msgstr "shortcuts" msgid "Shortcuts" msgstr "Shortcuts" -#: src/strings.ts:2841 +#: src/strings.ts:2835 msgid "Show" msgstr "Show" @@ -7099,11 +7075,11 @@ msgstr "Signup failed" msgid "Silent" msgstr "Silent" -#: src/strings.ts:2403 +#: src/strings.ts:2397 msgid "Sink list item" msgstr "Sink list item" -#: src/strings.ts:2106 +#: src/strings.ts:2100 msgid "Size" msgstr "Size" @@ -7127,11 +7103,11 @@ msgstr "Some notes are published" msgid "Something went wrong" msgstr "Something went wrong" -#: src/strings.ts:2994 +#: src/strings.ts:2974 msgid "Something went wrong while preparing your debug logs. This can happen if no storage location was selected." msgstr "Something went wrong while preparing your debug logs. This can happen if no storage location was selected." -#: src/strings.ts:2090 +#: src/strings.ts:2084 msgid "Sort" msgstr "Sort" @@ -7139,31 +7115,31 @@ msgstr "Sort" msgid "Sort by" msgstr "Sort by" -#: src/strings.ts:2224 +#: src/strings.ts:2218 msgid "Source code" msgstr "Source code" -#: src/strings.ts:2430 +#: src/strings.ts:2424 msgid "Spaces" msgstr "Spaces" -#: src/strings.ts:2680 +#: src/strings.ts:2674 msgid "Special Offer" msgstr "Special Offer" -#: src/strings.ts:3012 +#: src/strings.ts:2992 msgid "Specify paragraphs" msgstr "Specify paragraphs" -#: src/strings.ts:2201 +#: src/strings.ts:2195 msgid "Spell check" msgstr "Spell check" -#: src/strings.ts:2369 +#: src/strings.ts:2363 msgid "Split cells" msgstr "Split cells" -#: src/strings.ts:2535 +#: src/strings.ts:2529 msgid "Stable" msgstr "Stable" @@ -7183,7 +7159,7 @@ msgstr "Start import" msgid "Start importing now" msgstr "Start importing now" -#: src/strings.ts:2189 +#: src/strings.ts:2183 msgid "Start minimized" msgstr "Start minimized" @@ -7207,19 +7183,19 @@ msgstr "Start writing to save your note." msgid "Start writing your note..." msgstr "Start writing your note..." -#: src/strings.ts:2297 +#: src/strings.ts:2291 msgid "Status" msgstr "Status" -#: src/strings.ts:2548 +#: src/strings.ts:2542 msgid "Storage" msgstr "Storage" -#: src/strings.ts:2960 +#: src/strings.ts:2940 msgid "Storage & cleanup" msgstr "Storage & cleanup" -#: src/strings.ts:2975 +#: src/strings.ts:2955 msgid "Storage & location" msgstr "Storage & location" @@ -7227,15 +7203,15 @@ msgstr "Storage & location" msgid "Streaming not supported" msgstr "Streaming not supported" -#: src/strings.ts:2335 +#: src/strings.ts:2329 msgid "Strikethrough" msgstr "Strikethrough" -#: src/strings.ts:2299 +#: src/strings.ts:2293 msgid "Subgroup 1" msgstr "Subgroup 1" -#: src/strings.ts:2059 +#: src/strings.ts:2053 msgid "Subgroup added" msgstr "Subgroup added" @@ -7243,11 +7219,11 @@ msgstr "Subgroup added" msgid "Submit" msgstr "Submit" -#: src/strings.ts:2657 +#: src/strings.ts:2651 msgid "Subscribe" msgstr "Subscribe" -#: src/strings.ts:2658 +#: src/strings.ts:2652 msgid "Subscribe & Start Your Free Trial" msgstr "Subscribe & Start Your Free Trial" @@ -7275,7 +7251,7 @@ msgstr "Subscribed on Web" msgid "Subscribed using gift card" msgstr "Subscribed using gift card" -#: src/strings.ts:2346 +#: src/strings.ts:2340 msgid "Subscript" msgstr "Subscript" @@ -7291,7 +7267,7 @@ msgstr "Subscription details" msgid "Subscription not activated?" msgstr "Subscription not activated?" -#: src/strings.ts:2954 +#: src/strings.ts:2934 msgid "Subscription required" msgstr "Subscription required" @@ -7303,7 +7279,7 @@ msgstr "Sun" msgid "Sunday" msgstr "Sunday" -#: src/strings.ts:2347 +#: src/strings.ts:2341 msgid "Superscript" msgstr "Superscript" @@ -7311,7 +7287,7 @@ msgstr "Superscript" msgid "Switch to search/replace mode" msgstr "Switch to search/replace mode" -#: src/strings.ts:2210 +#: src/strings.ts:2204 msgid "Sync" msgstr "Sync" @@ -7363,7 +7339,7 @@ msgstr "Syncing your data" msgid "Syncing your notes" msgstr "Syncing your notes" -#: src/strings.ts:2415 +#: src/strings.ts:2409 msgid "Table" msgstr "Table" @@ -7371,11 +7347,11 @@ msgstr "Table" msgid "Table of contents" msgstr "Table of contents" -#: src/strings.ts:2360 +#: src/strings.ts:2354 msgid "Table settings" msgstr "Table settings" -#: src/strings.ts:2609 +#: src/strings.ts:2603 msgid "tables, outlines, block level note linking" msgstr "tables, outlines, block level note linking" @@ -7412,7 +7388,7 @@ msgstr "Take a full backup of your data with all attachments" 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:2414 +#: src/strings.ts:2408 msgid "Take a photo using camera" msgstr "Take a photo using camera" @@ -7468,11 +7444,11 @@ msgstr "Tap to stop reordering" 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:2420 +#: src/strings.ts:2414 msgid "Task list" msgstr "Task list" -#: src/strings.ts:2490 +#: src/strings.ts:2484 msgid "Tasks" msgstr "Tasks" @@ -7506,7 +7482,7 @@ msgstr "Tell us what happened" msgid "Terms of service" msgstr "Terms of service" -#: src/strings.ts:2663 +#: src/strings.ts:2657 msgid "Terms of Service" msgstr "Terms of Service" @@ -7522,15 +7498,15 @@ msgstr "Test connection" msgid "Test connection before changing server urls" msgstr "Test connection before changing server urls" -#: src/strings.ts:2899 +#: src/strings.ts:2879 msgid "Testimonials" msgstr "Testimonials" -#: src/strings.ts:2358 +#: src/strings.ts:2352 msgid "Text color" msgstr "Text color" -#: src/strings.ts:2356 +#: src/strings.ts:2350 msgid "Text direction" msgstr "Text direction" @@ -7538,15 +7514,15 @@ msgstr "Text direction" 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:2115 +#: src/strings.ts:2109 msgid "Thank you for reporting!" msgstr "Thank you for reporting!" -#: src/strings.ts:2636 +#: src/strings.ts:2630 msgid "Thank you for subscribing" msgstr "Thank you for subscribing" -#: src/strings.ts:2675 +#: src/strings.ts:2669 msgid "Thank you for the purchase" msgstr "Thank you for the purchase" @@ -7554,11 +7530,11 @@ 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:2116 +#: src/strings.ts:2110 msgid "Thank you for your feedback!" msgstr "Thank you for your feedback!" -#: src/strings.ts:2150 +#: src/strings.ts:2144 msgid "Thank you. You are the proof that privacy always comes first." msgstr "Thank you. You are the proof that privacy always comes first." @@ -7566,23 +7542,23 @@ msgstr "Thank you. You are the proof that privacy always comes first." msgid "The {title} at {url} is not compatible with this client." msgstr "The {title} at {url} is not compatible with this client." -#: src/strings.ts:2991 +#: src/strings.ts:2971 msgid "The encrypted archive is available in your default local storage structure and can be safely sent to the Notesnook customer care team." msgstr "The encrypted archive is available in your default local storage structure and can be safely sent to the Notesnook customer care team." -#: src/strings.ts:2720 +#: src/strings.ts:2714 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" -#: src/strings.ts:2882 +#: src/strings.ts:2876 msgid "The password for decrypting the Colornote backup file." msgstr "The password for decrypting the Colornote backup file." -#: src/strings.ts:2157 +#: src/strings.ts:2151 msgid "The password/pin for unlocking the app." msgstr "The password/pin for unlocking the app." -#: src/strings.ts:3029 +#: src/strings.ts:3009 msgid "The reminder will occur on the selected day." msgstr "The reminder will occur on the selected day." @@ -7598,7 +7574,7 @@ msgstr "The reminder will repeat every year on {date}." msgid "The reminder will start on {date} at {time}." msgstr "The reminder will start on {date} at {time}." -#: src/strings.ts:2160 +#: src/strings.ts:2154 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." @@ -7618,11 +7594,11 @@ msgstr "There are no blocks in this note." msgid "There are no new updates at the moment." msgstr "There are no new updates at the moment." -#: src/strings.ts:2313 +#: src/strings.ts:2307 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:1985 +#: src/strings.ts:1979 msgid "This action is IRREVERSIBLE." msgstr "This action is IRREVERSIBLE." @@ -7654,19 +7630,19 @@ msgstr "This error usually means the database file is either corrupt or it could msgid "This error usually means the search index is corrupted." msgstr "This error usually means the search index is corrupted." -#: src/strings.ts:2802 +#: src/strings.ts:2796 msgid "This feature is not available on this plan." msgstr "This feature is not available on this plan." -#: src/strings.ts:1999 +#: src/strings.ts:1993 msgid "This image cannot be previewed" msgstr "This image cannot be previewed" -#: src/strings.ts:2659 +#: src/strings.ts:2653 msgid "This is a one time purchase, no subscription." msgstr "This is a one time purchase, no subscription." -#: src/strings.ts:2110 +#: src/strings.ts:2104 msgid "This may take a while" msgstr "This may take a while" @@ -7675,7 +7651,7 @@ msgstr "This may take a while" msgid "This must only be used for troubleshooting. Using it regularly for sync is not recommended and will lead to unexpected data loss and other issues. If you are having persistent issues with sync, please report them to us at support@streetwriters.co." msgstr "This must only be used for troubleshooting. Using it regularly for sync is not recommended and will lead to unexpected data loss and other issues. If you are having persistent issues with sync, please report them to us at support@streetwriters.co." -#: src/strings.ts:2726 +#: src/strings.ts:2720 msgid "This note is empty" msgstr "This note is empty" @@ -7691,7 +7667,7 @@ msgstr "This note is locked. Unlock note to save changes" msgid "This note will be published to a public URL." msgstr "This note will be published to a public URL." -#: src/strings.ts:2166 +#: src/strings.ts:2160 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." @@ -7703,11 +7679,11 @@ msgstr "This version of Notesnook app does not support in-app purchases. Kindly msgid "This will clear all data stored on THIS DEVICE. Make sure to run sync before logging out." msgstr "This will clear all data stored on THIS DEVICE. Make sure to run sync before logging out." -#: src/strings.ts:2946 +#: src/strings.ts:2926 msgid "This will overwrite all data on the server with the data from this device." msgstr "This will overwrite all data on the server with the data from this device." -#: src/strings.ts:2944 +#: src/strings.ts:2924 msgid "This will overwrite all data on this device with the data from the server." msgstr "This will overwrite all data on this device with the data from the server." @@ -7727,7 +7703,7 @@ msgstr "Time" msgid "Time format" msgstr "Time format" -#: src/strings.ts:2971 +#: src/strings.ts:2951 msgid "Timestamp" msgstr "Timestamp" @@ -7744,11 +7720,11 @@ msgstr "Title" msgid "Title format" msgstr "Title format" -#: src/strings.ts:2815 +#: src/strings.ts:2809 msgid "Title is required" msgstr "Title is required" -#: src/strings.ts:2957 +#: src/strings.ts:2937 msgid "to claim the promotion directly." msgstr "to claim the promotion directly." @@ -7760,23 +7736,23 @@ msgstr "To use app lock, you must enable biometrics such as Fingerprint lock or msgid "Toggle dark/light mode" msgstr "Toggle dark/light mode" -#: src/strings.ts:2538 +#: src/strings.ts:2532 msgid "Toggle focus mode" msgstr "Toggle focus mode" -#: src/strings.ts:2427 +#: src/strings.ts:2421 msgid "Toggle indentation mode" msgstr "Toggle indentation mode" -#: src/strings.ts:2456 +#: src/strings.ts:2450 msgid "Toggle replace" msgstr "Toggle replace" -#: src/strings.ts:2527 +#: src/strings.ts:2521 msgid "Toggle theme" msgstr "Toggle theme" -#: src/strings.ts:2207 +#: src/strings.ts:2201 msgid "Toolbar" msgstr "Toolbar" @@ -7813,16 +7789,15 @@ msgstr "Trash gets automatically cleaned up daily" msgid "Troubleshooting" msgstr "Troubleshooting" -#: src/strings.ts:2690 +#: src/strings.ts:2684 msgid "Trusted partners who share our commitment to privacy, transparency, and user freedom." msgstr "Trusted partners who share our commitment to privacy, transparency, and user freedom." -#: src/strings.ts:2626 +#: src/strings.ts:2620 msgid "Try {plan} for free" msgstr "Try {plan} for free" -#: src/strings.ts:1408 -#: src/strings.ts:2996 +#: src/strings.ts:2976 msgid "Try again" msgstr "Try again" @@ -7834,7 +7809,7 @@ msgstr "Try compact mode to fit more items on screen" msgid "Try free for 14 days" msgstr "Try free for 14 days" -#: src/strings.ts:2602 +#: src/strings.ts:2596 msgid "Try it for free" msgstr "Try it for free" @@ -7846,7 +7821,7 @@ msgstr "Tue" msgid "Tuesday" msgstr "Tuesday" -#: src/strings.ts:3056 +#: src/strings.ts:3036 msgid "Turn off automatic syncing. Changes from this client will be synced only when you run sync manually." msgstr "Turn off automatic syncing. Changes from this client will be synced only when you run sync manually." @@ -7859,7 +7834,7 @@ msgid "Turn on reminder" msgstr "Turn on reminder" #: src/strings.ts:1145 -#: src/strings.ts:3062 +#: src/strings.ts:3042 msgid "Turns off syncing completely on this device. Any changes made will remain local only and new changes from your other devices won't sync to this device." msgstr "Turns off syncing completely on this device. Any changes made will remain local only and new changes from your other devices won't sync to this device." @@ -7883,7 +7858,7 @@ msgstr "Type # to search for headings" msgid "Type a keyword" msgstr "Type a keyword" -#: src/strings.ts:2965 +#: src/strings.ts:2945 msgid "Typography" msgstr "Typography" @@ -7895,11 +7870,11 @@ msgstr "Unable to resolve download url" msgid "Unable to send 2FA code" msgstr "Unable to send 2FA code" -#: src/strings.ts:2562 +#: src/strings.ts:2556 msgid "Unarchive" msgstr "Unarchive" -#: src/strings.ts:2334 +#: src/strings.ts:2328 msgid "Underline" msgstr "Underline" @@ -7911,11 +7886,11 @@ msgstr "Undo" msgid "Unfavorite" msgstr "Unfavorite" -#: src/strings.ts:2671 +#: src/strings.ts:2665 msgid "Unlimited" msgstr "Unlimited" -#: src/strings.ts:2908 +#: src/strings.ts:2888 msgid "Unlimited notes and attachments" msgstr "Unlimited notes and attachments" @@ -7931,7 +7906,7 @@ msgstr "Unlink notebook" msgid "Unlock" msgstr "Unlock" -#: src/strings.ts:2718 +#: src/strings.ts:2712 msgid "Unlock incoming note" msgstr "Unlock incoming note" @@ -7948,11 +7923,11 @@ msgstr "Unlock note" msgid "Unlock note to delete it" msgstr "Unlock note to delete it" -#: src/strings.ts:2729 +#: src/strings.ts:2723 msgid "Unlock note to merge conflicts" msgstr "Unlock note to merge conflicts" -#: src/strings.ts:2618 +#: src/strings.ts:2612 msgid "Unlock premium features and extra storage" msgstr "Unlock premium features and extra storage" @@ -7960,7 +7935,7 @@ msgstr "Unlock premium features and extra storage" 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:1997 +#: src/strings.ts:1991 msgid "Unlock vault" msgstr "Unlock vault" @@ -8000,16 +7975,16 @@ msgstr "Unpublish" msgid "Unpublish notes to delete them" msgstr "Unpublish notes to delete them" -#: src/strings.ts:2161 +#: src/strings.ts:2155 msgid "Unregister" msgstr "Unregister" -#: src/strings.ts:2722 +#: src/strings.ts:2716 msgid "Unset expiry" msgstr "Unset expiry" #: src/strings.ts:210 -#: src/strings.ts:2436 +#: src/strings.ts:2430 msgid "Untitled" msgstr "Untitled" @@ -8025,31 +8000,31 @@ msgstr "Update available" msgid "Update now" msgstr "Update now" -#: src/strings.ts:2962 +#: src/strings.ts:2942 msgid "Updates" msgstr "Updates" -#: src/strings.ts:2576 +#: src/strings.ts:2570 msgid "Upgrade" msgstr "Upgrade" -#: src/strings.ts:1983 +#: src/strings.ts:1977 msgid "Upgrade now" msgstr "Upgrade now" -#: src/strings.ts:2575 +#: src/strings.ts:2569 msgid "Upgrade plan" msgstr "Upgrade plan" -#: src/strings.ts:2601 +#: src/strings.ts:2595 msgid "Upgrade plan to {plan} to use this feature." msgstr "Upgrade plan to {plan} to use this feature." -#: src/strings.ts:2004 +#: src/strings.ts:1998 msgid "Upgrade to Notesnook Pro to add colors." msgstr "Upgrade to Notesnook Pro to add colors." -#: src/strings.ts:2005 +#: src/strings.ts:1999 msgid "Upgrade to Notesnook Pro to create more tags." msgstr "Upgrade to Notesnook Pro to create more tags." @@ -8057,7 +8032,7 @@ msgstr "Upgrade to Notesnook Pro to create more tags." msgid "Upgrade to Pro" msgstr "Upgrade to Pro" -#: src/strings.ts:2686 +#: src/strings.ts:2680 msgid "Upgrade to redeem" msgstr "Upgrade to redeem" @@ -8065,7 +8040,7 @@ msgstr "Upgrade to redeem" msgid "Upload" msgstr "Upload" -#: src/strings.ts:2413 +#: src/strings.ts:2407 msgid "Upload from disk" msgstr "Upload from disk" @@ -8091,7 +8066,7 @@ msgstr "Uploads" msgid "Urgent" msgstr "Urgent" -#: src/strings.ts:2463 +#: src/strings.ts:2457 msgid "URL" msgstr "URL" @@ -8115,7 +8090,7 @@ msgstr "Use a data recovery key to reset your account password." msgid "Use account password" msgstr "Use account password" -#: src/strings.ts:2608 +#: src/strings.ts:2602 msgid "Use advanced note taking features like" msgstr "Use advanced note taking features like" @@ -8123,7 +8098,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:2247 +#: src/strings.ts:2241 msgid "Use custom DNS" msgstr "Use custom DNS" @@ -8135,7 +8110,7 @@ msgstr "Use dark mode for the app" msgid "Use encryption key" msgstr "Use encryption key" -#: src/strings.ts:2832 +#: src/strings.ts:2826 msgid "Use existing PGP keys if you already have them" msgstr "Use existing PGP keys if you already have them" @@ -8143,11 +8118,11 @@ msgstr "Use existing PGP keys if you already have them" msgid "Use markdown shortcuts in the editor" msgstr "Use markdown shortcuts in the editor" -#: src/strings.ts:2200 +#: src/strings.ts:2194 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:2198 +#: src/strings.ts:2192 msgid "Use native titlebar" msgstr "Use native titlebar" @@ -8193,11 +8168,11 @@ 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:2948 +#: src/strings.ts:2928 msgid "Use this only for troubleshooting sync issues. Regular use may lead to data loss or conflicts." msgstr "Use this only for troubleshooting sync issues. Regular use may lead to data loss or conflicts." -#: src/strings.ts:2549 +#: src/strings.ts:2543 msgid "used" msgstr "used" @@ -8209,15 +8184,11 @@ msgstr "Used in" msgid "User verification failed" msgstr "User verification failed" -#: src/strings.ts:2330 +#: src/strings.ts:2324 msgid "Using {instance} (v{version})" msgstr "Using {instance} (v{version})" -#: src/strings.ts:2896 -msgid "Using Notesnook without an account will **NOT** sync your notes across devices and could result in data loss if you lose access to your device or uninstall the app. Make sure to backup your notes regularly." -msgstr "Using Notesnook without an account will **NOT** sync your notes across devices and could result in data loss if you lose access to your device or uninstall the app. Make sure to backup your notes regularly." - -#: src/strings.ts:2328 +#: src/strings.ts:2322 msgid "Using official Notesnook instance" msgstr "Using official Notesnook instance" @@ -8225,11 +8196,11 @@ msgstr "Using official Notesnook instance" msgid "v{version} available" msgstr "v{version} available" -#: src/strings.ts:2804 +#: src/strings.ts:2798 msgid "Value must be between {min} and {max}" msgstr "Value must be between {min} and {max}" -#: src/strings.ts:3052 +#: src/strings.ts:3032 msgid "Value must be greater than {value}" msgstr "Value must be greater than {value}" @@ -8237,7 +8208,7 @@ msgstr "Value must be greater than {value}" msgid "Vault" msgstr "Vault" -#: src/strings.ts:2057 +#: src/strings.ts:2051 msgid "Vault cleared" msgstr "Vault cleared" @@ -8245,7 +8216,7 @@ msgstr "Vault cleared" msgid "Vault created" msgstr "Vault created" -#: src/strings.ts:2058 +#: src/strings.ts:2052 msgid "Vault deleted" msgstr "Vault deleted" @@ -8253,11 +8224,11 @@ msgstr "Vault deleted" msgid "Vault fingerprint unlock" msgstr "Vault fingerprint unlock" -#: src/strings.ts:1996 +#: src/strings.ts:1990 msgid "Vault locked" msgstr "Vault locked" -#: src/strings.ts:1995 +#: src/strings.ts:1989 msgid "Vault unlocked" msgstr "Vault unlocked" @@ -8313,11 +8284,11 @@ msgstr "Videos" msgid "View all linked notebooks" msgstr "View all linked notebooks" -#: src/strings.ts:2738 +#: src/strings.ts:2732 msgid "View and edit your inbox public/private key pair" msgstr "View and edit your inbox public/private key pair" -#: src/strings.ts:2744 +#: src/strings.ts:2738 msgid "View and manage inbox API keys" msgstr "View and manage inbox API keys" @@ -8325,11 +8296,11 @@ msgstr "View and manage inbox API keys" msgid "View and share debug logs" msgstr "View and share debug logs" -#: src/strings.ts:2838 +#: src/strings.ts:2832 msgid "View failed inbox items and error contexts" msgstr "View failed inbox items and error contexts" -#: src/strings.ts:2617 +#: src/strings.ts:2611 msgid "View plans" msgstr "View plans" @@ -8341,7 +8312,7 @@ msgstr "View receipt" msgid "View recovery codes" msgstr "View recovery codes" -#: src/strings.ts:2227 +#: src/strings.ts:2221 msgid "View source code" msgstr "View source code" @@ -8349,7 +8320,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:2701 +#: src/strings.ts:2695 msgid "Views" msgstr "Views" @@ -8377,11 +8348,11 @@ msgstr "We are creating a backup of your data. Please wait..." msgid "We are sorry, it seems that the app crashed due to an error. You can submit a bug report below so we can fix this asap." msgstr "We are sorry, it seems that the app crashed due to an error. You can submit a bug report below so we can fix this asap." -#: src/strings.ts:2869 +#: src/strings.ts:2863 msgid "We couldn't load this theme. Please make sure the file is a valid JSON theme file." msgstr "We couldn't load this theme. Please make sure the file is a valid JSON theme file." -#: src/strings.ts:2871 +#: src/strings.ts:2865 msgid "We couldn't load this theme. The file appears to be incomplete or missing required theme properties." msgstr "We couldn't load this theme. The file appears to be incomplete or missing required theme properties." @@ -8389,11 +8360,11 @@ msgstr "We couldn't load this theme. The file appears to be incomplete or missin msgid "We have sent you an email confirmation link. Please check your email inbox. If you cannot find the email, check your spam folder." msgstr "We have sent you an email confirmation link. Please check your email inbox. If you cannot find the email, check your spam folder." -#: src/strings.ts:2587 +#: src/strings.ts:2581 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:2242 +#: src/strings.ts:2236 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)." @@ -8405,23 +8376,19 @@ msgstr "We will send you occasional promotional offers & product updates on your msgid "We would love to know what you think!" msgstr "We would love to know what you think!" -#: src/strings.ts:2830 +#: src/strings.ts:2824 msgid "We'll create secure keys for you automatically" msgstr "We'll create secure keys for you automatically" -#: src/strings.ts:2638 +#: src/strings.ts:2632 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:1554 -msgid "We've sent a verification code to your new email. Enter it below to continue." -msgstr "We've sent a verification code to your new email. Enter it below to continue." - -#: src/strings.ts:2398 +#: src/strings.ts:2392 msgid "Web clip settings" msgstr "Web clip settings" -#: src/strings.ts:2094 +#: src/strings.ts:2088 msgid "Website" msgstr "Website" @@ -8437,7 +8404,7 @@ msgstr "Wednesday" msgid "Week" msgstr "Week" -#: src/strings.ts:2714 +#: src/strings.ts:2708 msgid "Week format" msgstr "Week format" @@ -8454,11 +8421,11 @@ msgstr "Welcome back, {email}" msgid "Welcome back!" msgstr "Welcome back!" -#: src/strings.ts:2674 +#: src/strings.ts:2668 msgid "Welcome to Notesnook {plan}" msgstr "Welcome to Notesnook {plan}" -#: src/strings.ts:2148 +#: src/strings.ts:2142 msgid "Welcome to Notesnook Pro" msgstr "Welcome to Notesnook Pro" @@ -8466,15 +8433,15 @@ msgstr "Welcome to Notesnook Pro" msgid "What do I do if I am not getting the email?" msgstr "What do I do if I am not getting the email?" -#: src/strings.ts:2579 +#: src/strings.ts:2573 msgid "What happens to my data if I switch plans?" msgstr "What happens to my data if I switch plans?" -#: src/strings.ts:2595 +#: src/strings.ts:2589 msgid "What is your refund policy?" msgstr "What is your refund policy?" -#: src/strings.ts:3042 +#: src/strings.ts:3022 msgid "What needs to be done?" msgstr "What needs to be done?" @@ -8482,23 +8449,23 @@ msgstr "What needs to be done?" msgid "What went wrong?" msgstr "What went wrong?" -#: src/strings.ts:2905 +#: src/strings.ts:2885 msgid "What's included" msgstr "What's included" -#: src/strings.ts:2585 +#: src/strings.ts:2579 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:2459 +#: src/strings.ts:2453 msgid "Width" msgstr "Width" -#: src/strings.ts:2565 +#: src/strings.ts:2559 msgid "Words" msgstr "Words" -#: src/strings.ts:2488 +#: src/strings.ts:2482 msgid "Work & Office" msgstr "Work & Office" @@ -8514,7 +8481,7 @@ msgstr "Write something..." msgid "Write with freedom." msgstr "Write with freedom." -#: src/strings.ts:2136 +#: src/strings.ts:2130 msgid "Write with freedom. Never compromise on privacy again." msgstr "Write with freedom. Never compromise on privacy again." @@ -8535,7 +8502,7 @@ msgstr "Yes" msgid "Yes, Unpublish" msgstr "Yes, Unpublish" -#: src/strings.ts:2592 +#: src/strings.ts:2586 msgid "Yes, you can cancel your trial anytime. No questions asked." msgstr "Yes, you can cancel your trial anytime. No questions asked." @@ -8543,15 +8510,15 @@ msgstr "Yes, you can cancel your trial anytime. No questions asked." msgid "You also agree to receive marketing emails from us which you can opt-out of from app settings." msgstr "You also agree to receive marketing emails from us which you can opt-out of from app settings." -#: src/strings.ts:2679 +#: src/strings.ts:2673 msgid "You are already subscribed to this plan." msgstr "You are already subscribed to this plan." -#: src/strings.ts:2315 +#: src/strings.ts:2309 msgid "You are editing \"{notebookTitle}\"." msgstr "You are editing \"{notebookTitle}\"." -#: src/strings.ts:2108 +#: src/strings.ts:2102 msgid "You are editing #{tag}" msgstr "You are editing #{tag}" @@ -8575,23 +8542,23 @@ msgstr "You are renaming color {color}" 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:2139 +#: src/strings.ts:2133 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:2682 +#: src/strings.ts:2676 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:2496 +#: src/strings.ts:2490 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:2154 +#: src/strings.ts:2148 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:3010 +#: src/strings.ts:2990 msgid "You can link the entire note or specific parts like paragraphs." msgstr "You can link the entire note or specific parts like paragraphs." @@ -8611,7 +8578,7 @@ msgstr "You can set a custom proxy URL to increase your privacy." 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:2121 +#: src/strings.ts:2115 msgid "" "You can track your bug report at [{url}]({url}).\n" "\n" @@ -8625,7 +8592,7 @@ msgstr "" "\n" "If your issue is critical (e.g. notes not syncing, crashes etc.), please [join our Discord community](https://go.notesnook.com/discord) for one-to-one support." -#: src/strings.ts:2130 +#: src/strings.ts:2124 msgid "" "You can track your feature request at [{url}]({url}).\n" "\n" @@ -8655,15 +8622,15 @@ msgstr "You can view & restore older versions of any note by going to its proper msgid "You have {count} custom dictionary words." msgstr "You have {count} custom dictionary words." -#: src/strings.ts:2273 +#: src/strings.ts:2267 msgid "You have been logged out from all other devices." msgstr "You have been logged out from all other devices." -#: src/strings.ts:2267 +#: src/strings.ts:2261 msgid "You have been logged out." msgstr "You have been logged out." -#: src/strings.ts:2678 +#: src/strings.ts:2672 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." @@ -8699,7 +8666,7 @@ msgstr "You have unsynced notes. Take a backup or sync your notes to avoid losin msgid "You must log out in order to change/reset server URLs." msgstr "You must log out in order to change/reset server URLs." -#: src/strings.ts:2820 +#: src/strings.ts:2814 msgid "" "You need to login to restore attachments from a backup file. [Read more](https://help.notesnook.com/faqs/login-to-restore-attachments-in-backup).\n" " \n" @@ -8749,11 +8716,11 @@ 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:1982 +#: src/strings.ts:1976 msgid "Your account has been recovered." msgstr "Your account has been recovered." -#: src/strings.ts:2929 +#: src/strings.ts:2909 msgid "Your account is almost ready, please wait." msgstr "Your account is almost ready, please wait." @@ -8778,11 +8745,11 @@ msgstr "Your account will be permanently deleted along with all your data, login msgid "Your archive" msgstr "Your archive" -#: src/strings.ts:2561 +#: src/strings.ts:2555 msgid "Your archive is empty" msgstr "Your archive is empty" -#: src/strings.ts:1994 +#: src/strings.ts:1988 msgid "Your backup is ready to download" msgstr "Your backup is ready to download" @@ -8794,11 +8761,11 @@ msgstr "Your changes could not be saved" 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:2174 +#: src/strings.ts:2168 msgid "Your current 2FA method is {method}" msgstr "Your current 2FA method is {method}" -#: src/strings.ts:2685 +#: src/strings.ts:2679 msgid "Your current subscription does not allow changing plans" msgstr "Your current subscription does not allow changing plans" @@ -8810,7 +8777,7 @@ msgstr "Your data recovery key is basically a hashed version of your password (p msgid "Your data recovery key will be used to decrypt your data" msgstr "Your data recovery key will be used to decrypt your data" -#: src/strings.ts:2581 +#: src/strings.ts:2575 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." @@ -8818,7 +8785,7 @@ msgstr "Your data remains 100% accessible regardless of what plan you are on. Th msgid "Your email has been confirmed." msgstr "Your email has been confirmed." -#: src/strings.ts:2572 +#: src/strings.ts:2566 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." @@ -8846,7 +8813,7 @@ msgstr "Your free trial has started" msgid "Your free trial is ending soon" msgstr "Your free trial is ending soon" -#: src/strings.ts:2713 +#: src/strings.ts:2707 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}" @@ -8886,11 +8853,11 @@ msgstr "Your privacy matters to us, no matter who you are. In a world where ever 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:2940 +#: src/strings.ts:2920 msgid "Your recovery key" msgstr "Your recovery key" -#: src/strings.ts:2062 +#: src/strings.ts:2056 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." @@ -8906,7 +8873,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:2060 +#: src/strings.ts:2054 msgid "Your subscription has been canceled." msgstr "Your subscription has been canceled." @@ -8918,11 +8885,11 @@ msgstr "Your subscription has ended" msgid "Your subscription renews on {date}" msgstr "Your subscription renews on {date}" -#: src/strings.ts:2118 +#: src/strings.ts:2112 msgid "Your support request has been forwarded" msgstr "Your support request has been forwarded" -#: src/strings.ts:2127 +#: src/strings.ts:2121 msgid "Your support request has been forwarded to our support team. We will get back to you via email as soon as possible. If you don't receive an email from us within 24-48 hours, please send us an email directly at support@notesnook.com." msgstr "Your support request has been forwarded to our support team. We will get back to you via email as soon as possible. If you don't receive an email from us within 24-48 hours, please send us an email directly at support@notesnook.com." @@ -8930,7 +8897,7 @@ msgstr "Your support request has been forwarded to our support team. We will get msgid "Your tags" msgstr "Your tags" -#: src/strings.ts:2925 +#: src/strings.ts:2905 msgid "Your thoughts deserve a home. Create your first note and start organizing your life today." msgstr "Your thoughts deserve a home. Create your first note and start organizing your life today." @@ -8946,11 +8913,11 @@ msgstr "Z to A" msgid "Zipping" msgstr "Zipping" -#: src/strings.ts:2537 +#: src/strings.ts:2531 msgid "Zoom" msgstr "Zoom" -#: src/strings.ts:2168 +#: src/strings.ts:2162 msgid "Zoom factor" msgstr "Zoom factor" @@ -8958,7 +8925,7 @@ msgstr "Zoom factor" msgid "Zoom in" msgstr "Zoom in" -#: src/strings.ts:2169 +#: src/strings.ts:2163 msgid "Zoom in or out the app content." msgstr "Zoom in or out the app content." diff --git a/packages/intl/locale/pseudo-LOCALE.po b/packages/intl/locale/pseudo-LOCALE.po index 1be6e7b25..74619e3b1 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:2486 +#: src/strings.ts:2480 msgid " \"Notebook > Notes\"" msgstr "" @@ -21,23 +21,23 @@ msgstr "" msgid " Unlock with password once to enable biometric access." msgstr "" -#: src/strings.ts:2006 +#: src/strings.ts:2000 msgid " Upgrade to Notesnook Pro to add more notebooks." msgstr "" -#: src/strings.ts:2009 +#: src/strings.ts:2003 msgid " Upgrade to Notesnook Pro to customize the toolbar." msgstr "" -#: src/strings.ts:2008 +#: src/strings.ts:2002 msgid " Upgrade to Notesnook Pro to use custom toolbar presets." msgstr "" -#: src/strings.ts:2007 +#: src/strings.ts:2001 msgid " Upgrade to Notesnook Pro to use the notes vault." msgstr "" -#: src/strings.ts:2010 +#: src/strings.ts:2004 msgid " Upgrade to Notesnook Pro to use this feature." msgstr "" @@ -69,7 +69,7 @@ msgid "{0} Highlights ๐ŸŽ‰" msgstr "" #. placeholder {0}: platform === "ios" ? "Apple" : "Google" -#: src/strings.ts:2652 +#: src/strings.ts:2646 msgid "{0} will remind you before your trial ends" msgstr "" @@ -301,7 +301,7 @@ msgstr "" msgid "{count, plural, one {Item unpublished} other {# items unpublished}}" msgstr "" -#: src/strings.ts:2503 +#: src/strings.ts:2497 msgid "{count, plural, one {Move all notes in this notebook to trash} other {Move all notes in these notebooks to trash}}" msgstr "" @@ -508,7 +508,7 @@ msgstr "<<<<<<< HEAD" msgid "{count, plural, one {Version deleted} other {# versions deleted}}" msgstr "" -#: src/strings.ts:2573 +#: src/strings.ts:2567 msgid "{count} characters" msgstr "" @@ -516,11 +516,11 @@ msgstr "" msgid "{days, plural, one {1 day} other {# days}}" msgstr "" -#: src/strings.ts:2643 +#: src/strings.ts:2637 msgid "{days} days free" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2916 +#: src/strings.ts:2896 msgid "{duration} days free trial includes all features" msgstr "" @@ -556,7 +556,7 @@ msgstr "" msgid "{mode, select, day {Daily} week {Weekly} month {Monthly} year {Yearly} other {Unknown mode}}" msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3019 +#: src/strings.ts:2999 msgid "{mode, select, once {The reminder will occur once.} day {The reminder will occur daily.} week {Custom schedule active} month {Custom schedule active} year {The reminder will repeat every year.} other {}}" msgstr "" @@ -564,19 +564,19 @@ msgstr "" msgid "{mode, select, repeat {Repeat} once {Once} permanent {Permanent} other {Unknown mode}}" msgstr "" -#: src/strings.ts:2041 +#: src/strings.ts:2035 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:2036 +#: src/strings.ts:2030 msgid "{n} {added, plural, one {added to 1 notebook} other {added to # notebooks}}." msgstr "" -#: src/strings.ts:2031 +#: src/strings.ts:2025 msgid "{n} {removed, plural, one {removed from 1 notebook} other {removed from # notebooks}}." msgstr "" -#: src/strings.ts:2026 +#: src/strings.ts:2020 msgid "{notes, plural, one {1 note} other {# notes}}" msgstr "" @@ -588,7 +588,7 @@ msgstr "" msgid "{percentage}% updating..." msgstr "" -#: src/strings.ts:2627 +#: src/strings.ts:2621 msgid "{plan} plan" msgstr "" @@ -600,7 +600,7 @@ msgstr "" 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:2433 +#: src/strings.ts:2427 msgid "{selected} selected" msgstr "" @@ -632,19 +632,19 @@ msgstr "" msgid "#notesnook" msgstr "" -#: src/strings.ts:2756 +#: src/strings.ts:2750 msgid "1 day" msgstr "" -#: src/strings.ts:2758 +#: src/strings.ts:2752 msgid "1 month" msgstr "" -#: src/strings.ts:2757 +#: src/strings.ts:2751 msgid "1 week" msgstr "" -#: src/strings.ts:2759 +#: src/strings.ts:2753 msgid "1 year" msgstr "" @@ -664,7 +664,7 @@ msgstr "" msgid "2FA code sent via {method}" msgstr "" -#: src/strings.ts:2672 +#: src/strings.ts:2666 msgid "5 year plan" msgstr "" @@ -672,7 +672,7 @@ msgstr "" msgid "6 digit code" msgstr "" -#: src/strings.ts:2625 +#: src/strings.ts:2619 msgid "7-day free trial" msgstr "" @@ -696,11 +696,11 @@ msgstr "" msgid "About" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2935 +#: src/strings.ts:2915 msgid "Access on all devices" msgstr "" -#: src/strings.ts:2910 +#: src/strings.ts:2890 msgid "Access on all your devices" msgstr "" @@ -708,7 +708,7 @@ msgstr "" msgid "Account" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2953 +#: src/strings.ts:2933 msgid "Account actions" msgstr "" @@ -720,19 +720,19 @@ msgstr "" msgid "Actions" msgstr "" -#: src/strings.ts:2528 +#: src/strings.ts:2522 msgid "Actions for note: {title}" msgstr "" -#: src/strings.ts:2529 +#: src/strings.ts:2523 msgid "Actions for notebook: {title}" msgstr "" -#: src/strings.ts:2530 +#: src/strings.ts:2524 msgid "Actions for tag: {title}" msgstr "" -#: src/strings.ts:2102 +#: src/strings.ts:2096 msgid "Activate" msgstr "" @@ -760,11 +760,11 @@ msgstr "" msgid "Add color" msgstr "" -#: src/strings.ts:2742 +#: src/strings.ts:2736 msgid "Add key" msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3015 +#: src/strings.ts:2995 msgid "Add Link" msgstr "" @@ -776,7 +776,7 @@ msgstr "" msgid "Add notebook" msgstr "" -#: src/strings.ts:2555 +#: src/strings.ts:2549 msgid "Add notes" msgstr "" @@ -792,7 +792,7 @@ msgstr "" msgid "Add shortcuts for notebooks and tags here." msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3043 +#: src/strings.ts:3023 msgid "Add some details..." msgstr "" @@ -808,15 +808,15 @@ msgstr "" msgid "Add tags to multiple notes at once" msgstr "" -#: src/strings.ts:2320 +#: src/strings.ts:2314 msgid "Add to dictionary" msgstr "" -#: src/strings.ts:2705 +#: src/strings.ts:2699 msgid "Add to home" msgstr "" -#: src/strings.ts:2553 +#: src/strings.ts:2547 msgid "Add to notebook" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" @@ -825,7 +825,7 @@ msgid "Add tools to group" msgstr "" #: src/strings.ts:1023 -#: src/strings.ts:2926 +#: src/strings.ts:2906 msgid "Add your first note" msgstr "" @@ -833,19 +833,19 @@ msgstr "" msgid "Add your first notebook" msgstr "" -#: src/strings.ts:2708 +#: src/strings.ts:2702 msgid "Adjust the line height of the editor" msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3030 +#: src/strings.ts:3010 msgid "Adjusts to last day in shorter months" msgstr "" -#: src/strings.ts:2246 +#: src/strings.ts:2240 msgid "Advanced" msgstr "" -#: src/strings.ts:2623 +#: src/strings.ts:2617 msgid "Advanced note elements" msgstr "" @@ -857,19 +857,19 @@ msgstr "" msgid "After scanning the QR code image, the app will display a code that you can enter below." msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3040 +#: src/strings.ts:3020 msgid "Alert mode" msgstr "" -#: src/strings.ts:2385 +#: src/strings.ts:2379 msgid "Align left" msgstr "" -#: src/strings.ts:2386 +#: src/strings.ts:2380 msgid "Align right" msgstr "" -#: src/strings.ts:2355 +#: src/strings.ts:2349 msgid "Alignment" msgstr "" @@ -885,7 +885,7 @@ msgstr "" msgid "All attachments are end-to-end encrypted." msgstr "" -#: src/strings.ts:2480 +#: src/strings.ts:2474 msgid "All cached attachments have been cleared." msgstr "" @@ -897,7 +897,7 @@ msgstr "" msgid "All files" msgstr "" -#: src/strings.ts:2846 +#: src/strings.ts:2840 msgid "All items deleted" msgstr "" @@ -917,7 +917,7 @@ msgstr "" 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:2226 +#: src/strings.ts:2220 msgid "All the source code for Notesnook is available & open for everyone on GitHub." msgstr "" @@ -937,7 +937,7 @@ msgstr "" msgid "All your backups are stored in 'Phone Storage/Notesnook/backups/' folder" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3038 +#: src/strings.ts:3018 msgid "All-day reminder" msgstr "" @@ -945,11 +945,11 @@ msgstr "" msgid "Already have an account?" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2961 +#: src/strings.ts:2941 msgid "Always ask" msgstr "" -#: src/strings.ts:2296 +#: src/strings.ts:2290 msgid "Amount" msgstr "" @@ -965,7 +965,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:2664 +#: src/strings.ts:2658 msgid "and" msgstr "" @@ -977,7 +977,7 @@ msgstr "" msgid "and get a chance to win free promo codes." msgstr "" -#: src/strings.ts:2610 +#: src/strings.ts:2604 msgid "and much more." msgstr "" @@ -985,27 +985,27 @@ msgstr "" msgid "and we will manually confirm your account." msgstr "" -#: src/strings.ts:2683 +#: src/strings.ts:2677 msgid "ANNOUNCEMENT" msgstr "" -#: src/strings.ts:2774 +#: src/strings.ts:2768 msgid "API key copied to clipboard" msgstr "" -#: src/strings.ts:2751 +#: src/strings.ts:2745 msgid "API key created successfully" msgstr "" -#: src/strings.ts:2779 +#: src/strings.ts:2773 msgid "API key revoked" msgstr "" -#: src/strings.ts:2743 +#: src/strings.ts:2737 msgid "API Keys" msgstr "" -#: src/strings.ts:2766 +#: src/strings.ts:2760 msgid "API Keys Limit Reached" msgstr "" @@ -1018,7 +1018,7 @@ msgstr "" msgid "App lock" msgstr "" -#: src/strings.ts:2621 +#: src/strings.ts:2615 msgid "App lock & security" msgstr "" @@ -1055,12 +1055,12 @@ msgstr "" msgid "Apply changes" msgstr "" -#: src/strings.ts:2109 +#: src/strings.ts:2103 msgid "Applying changes" msgstr "" -#: src/strings.ts:1595 -#: src/strings.ts:2560 +#: src/strings.ts:1590 +#: src/strings.ts:2554 msgid "Archive" msgstr "" @@ -1076,11 +1076,11 @@ msgstr "" msgid "Are you sure you want to clear trash?" msgstr "" -#: src/strings.ts:2845 +#: src/strings.ts:2839 msgid "Are you sure you want to delete all failed inbox items?" msgstr "" -#: src/strings.ts:2813 +#: src/strings.ts:2807 msgid "Are you sure you want to delete this attachment?" msgstr "" @@ -1092,7 +1092,7 @@ msgstr "" msgid "Are you sure you want to logout from this device? Any unsynced changes will be lost." msgstr "" -#: src/strings.ts:2856 +#: src/strings.ts:2850 msgid "Are you sure you want to open this file: {filePath}?" msgstr "" @@ -1104,7 +1104,7 @@ msgstr "" msgid "Are you sure you want to remove your profile picture?" msgstr "" -#: src/strings.ts:2778 +#: src/strings.ts:2772 msgid "Are you sure you want to revoke the key \"{name}\"? All inbox actions using this key will stop working immediately." msgstr "<<<<<<< HEAD" @@ -1120,7 +1120,7 @@ msgstr "" msgid "Ask every time" msgstr "" -#: src/strings.ts:2098 +#: src/strings.ts:2092 msgid "Assign color" msgstr "" @@ -1132,7 +1132,7 @@ msgstr "" msgid "Atleast 8 characters required" msgstr "" -#: src/strings.ts:2422 +#: src/strings.ts:2416 msgid "Attach image from URL" msgstr "" @@ -1140,7 +1140,7 @@ msgstr "" msgid "Attached files" msgstr "" -#: src/strings.ts:2847 +#: src/strings.ts:2841 msgid "Attaching files" msgstr "" @@ -1149,27 +1149,27 @@ msgid "attachment" msgstr "" #: src/strings.ts:313 -#: src/strings.ts:2419 +#: src/strings.ts:2413 msgid "Attachment" msgstr "" -#: src/strings.ts:2814 +#: src/strings.ts:2808 msgid "Attachment deleted" msgstr "" -#: src/strings.ts:2523 +#: src/strings.ts:2517 msgid "Attachment manager" msgstr "" -#: src/strings.ts:2000 +#: src/strings.ts:1994 msgid "Attachment preview failed" msgstr "" -#: src/strings.ts:2473 +#: src/strings.ts:2467 msgid "Attachment recheck cancelled" msgstr "" -#: src/strings.ts:2390 +#: src/strings.ts:2384 msgid "Attachment settings" msgstr "" @@ -1186,7 +1186,7 @@ msgstr "" msgid "Attachments cache cleared!" msgstr "" -#: src/strings.ts:2475 +#: src/strings.ts:2469 msgid "Attachments recheck complete" msgstr "" @@ -1198,11 +1198,11 @@ msgstr "" msgid "Auth server" msgstr "" -#: src/strings.ts:2772 +#: src/strings.ts:2766 msgid "Authenticate" msgstr "" -#: src/strings.ts:2769 +#: src/strings.ts:2763 msgid "Authenticate to view API key" msgstr "" @@ -1214,7 +1214,7 @@ msgstr "" msgid "Authenticating user" msgstr "" -#: src/strings.ts:2209 +#: src/strings.ts:2203 msgid "Authentication" msgstr "" @@ -1230,7 +1230,7 @@ msgstr "" msgid "Authentication failed" msgstr "" -#: src/strings.ts:2172 +#: src/strings.ts:2166 msgid "Auto" msgstr "" @@ -1238,7 +1238,7 @@ msgstr "" msgid "Auto save: off" msgstr "" -#: src/strings.ts:2186 +#: src/strings.ts:2180 msgid "Auto start on system startup" msgstr "" @@ -1246,7 +1246,7 @@ msgstr "" msgid "Auto sync" msgstr "" -#: src/strings.ts:2829 +#: src/strings.ts:2823 msgid "Auto-generate keys" msgstr "" @@ -1259,7 +1259,7 @@ msgstr "" msgid "Automatic backups are off" msgstr "" -#: src/strings.ts:2070 +#: src/strings.ts:2064 msgid "Automatic backups disabled" msgstr "" @@ -1267,11 +1267,11 @@ msgstr "" msgid "Automatic backups with attachments" msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2977 +#: src/strings.ts:2957 msgid "Automatic full backup" msgstr "" -#: src/strings.ts:2182 +#: src/strings.ts:2176 msgid "Automatic updates" msgstr "" @@ -1279,7 +1279,7 @@ msgstr "" msgid "Automatically clear trash after a certain period of time" msgstr "" -#: src/strings.ts:2184 +#: src/strings.ts:2178 msgid "Automatically download & install updates in the background without prompting first." msgstr "" @@ -1291,19 +1291,19 @@ msgstr "" msgid "Automatically switch between light and dark themes based on your system settings" msgstr "" -#: src/strings.ts:2229 +#: src/strings.ts:2223 msgid "Available on iOS" msgstr "" -#: src/strings.ts:2230 +#: src/strings.ts:2224 msgid "Available on iOS & Android" msgstr "" -#: src/strings.ts:2799 +#: src/strings.ts:2793 msgid "Back" msgstr "" -#: src/strings.ts:2378 +#: src/strings.ts:2372 msgid "Background color" msgstr "" @@ -1311,11 +1311,11 @@ msgstr "" msgid "Background sync (experimental)" msgstr "" -#: src/strings.ts:2178 +#: src/strings.ts:2172 msgid "Backup" msgstr "" -#: src/strings.ts:2216 +#: src/strings.ts:2210 msgid "Backup & export" msgstr "" @@ -1323,7 +1323,7 @@ msgstr "" msgid "Backup & restore" msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2974 +#: src/strings.ts:2954 msgid "Backup actions" msgstr "" @@ -1367,7 +1367,7 @@ msgstr "" msgid "Backup restored" msgstr "" -#: src/strings.ts:1984 +#: src/strings.ts:1978 msgid "Backup saved at {path}" msgstr "" @@ -1375,7 +1375,7 @@ msgstr "" msgid "Backup successful" msgstr "" -#: src/strings.ts:2179 +#: src/strings.ts:2173 msgid "Backup with attachments" msgstr "" @@ -1395,43 +1395,43 @@ msgstr "" msgid "Behavior" msgstr "" -#: src/strings.ts:2211 +#: src/strings.ts:2205 msgid "Behaviour" msgstr "" -#: src/strings.ts:2547 +#: src/strings.ts:2541 msgid "Believer plan" msgstr "" -#: src/strings.ts:2667 +#: src/strings.ts:2661 msgid "Best value" msgstr "" -#: src/strings.ts:2536 +#: src/strings.ts:2530 msgid "Beta" msgstr "" -#: src/strings.ts:2336 +#: src/strings.ts:2330 msgid "Bi-directional note link" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2901 +#: src/strings.ts:2881 msgid "Billed annually" msgstr "" -#: src/strings.ts:2640 +#: src/strings.ts:2634 msgid "billed annually at {price}" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2902 +#: src/strings.ts:2882 msgid "Billed monthly" msgstr "" -#: src/strings.ts:2641 +#: src/strings.ts:2635 msgid "billed monthly at {price}" msgstr "" -#: src/strings.ts:2277 +#: src/strings.ts:2271 msgid "Billing history" msgstr "" @@ -1455,11 +1455,11 @@ msgstr "" msgid "Biometrics not enrolled" msgstr "" -#: src/strings.ts:2332 +#: src/strings.ts:2326 msgid "Bold" msgstr "" -#: src/strings.ts:2485 +#: src/strings.ts:2479 msgid "Boost your productivity with Notebooks and organize your notes." msgstr "" @@ -1467,7 +1467,7 @@ msgstr "" msgid "Browse" msgstr "" -#: src/strings.ts:2349 +#: src/strings.ts:2343 msgid "Bullet list" msgstr "" @@ -1475,7 +1475,7 @@ msgstr "" msgid "By" msgstr "" -#: src/strings.ts:2662 +#: src/strings.ts:2656 msgid "By joining you agree to our" msgstr "" @@ -1483,11 +1483,11 @@ msgstr "" msgid "By signing up, you agree to our " msgstr "" -#: src/strings.ts:2410 +#: src/strings.ts:2404 msgid "Callout" msgstr "" -#: src/strings.ts:2590 +#: src/strings.ts:2584 msgid "Can I cancel my free trial anytime?" msgstr "" @@ -1495,15 +1495,15 @@ msgstr "" msgid "Cancel" msgstr "" -#: src/strings.ts:2613 +#: src/strings.ts:2607 msgid "Cancel anytime" msgstr "" -#: src/strings.ts:2660 +#: src/strings.ts:2654 msgid "Cancel anytime, Subscription auto-renews." msgstr "" -#: src/strings.ts:2612 +#: src/strings.ts:2606 msgid "Cancel anytime." msgstr "" @@ -1523,28 +1523,28 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: src/strings.ts:2768 +#: src/strings.ts:2762 msgid "Cannot create more than 10 api keys at a time. Please revoke some existing keys before creating new ones." msgstr "" -#: src/strings.ts:2377 +#: src/strings.ts:2371 msgid "Cell background color" msgstr "" -#: src/strings.ts:2379 +#: src/strings.ts:2373 msgid "Cell border color" msgstr "" -#: src/strings.ts:2381 -#: src/strings.ts:2382 +#: src/strings.ts:2375 +#: src/strings.ts:2376 msgid "Cell border width" msgstr "" -#: src/strings.ts:2363 +#: src/strings.ts:2357 msgid "Cell properties" msgstr "" -#: src/strings.ts:2380 +#: src/strings.ts:2374 msgid "Cell text color" msgstr "" @@ -1572,7 +1572,7 @@ msgstr "" msgid "Change backup location" msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3046 +#: src/strings.ts:3026 msgid "Change created date" msgstr "" @@ -1584,7 +1584,7 @@ msgstr "" msgid "Change how the app behaves in different situations" msgstr "" -#: src/strings.ts:2428 +#: src/strings.ts:2422 msgid "Change language" msgstr "" @@ -1596,7 +1596,7 @@ msgstr "" msgid "Change password" msgstr "" -#: src/strings.ts:2676 +#: src/strings.ts:2670 msgid "Change plan" msgstr "" @@ -1604,15 +1604,15 @@ msgstr "" msgid "Change profile picture" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2951 +#: src/strings.ts:2931 msgid "Change profile picture, full name and email" msgstr "" -#: src/strings.ts:2255 +#: src/strings.ts:2249 msgid "Change proxy" msgstr "" -#: src/strings.ts:2276 +#: src/strings.ts:2270 msgid "Change the payment method you used to purchase this subscription." msgstr "" @@ -1632,11 +1632,11 @@ msgstr "" msgid "Change your primary two-factor authentication method" msgstr "" -#: src/strings.ts:3059 +#: src/strings.ts:3039 msgid "Changes from other devices won't be updated in the editor in real-time." msgstr "" -#: src/strings.ts:2790 +#: src/strings.ts:2784 msgid "Changing Inbox PGP keys will delete all your unsynced inbox items." msgstr "" @@ -1644,7 +1644,7 @@ msgstr "" msgid "Changing your password is irreversible process. Once your password is changed please make sure to save the new account recovery key." msgstr "" -#: src/strings.ts:2566 +#: src/strings.ts:2560 msgid "Characters" msgstr "" @@ -1664,7 +1664,7 @@ msgstr "" msgid "Check for updates automatically" msgstr "" -#: src/strings.ts:2228 +#: src/strings.ts:2222 msgid "Check roadmap" msgstr "" @@ -1672,7 +1672,7 @@ msgstr "" msgid "Check your spam folder if you haven't received an email yet." msgstr "" -#: src/strings.ts:2477 +#: src/strings.ts:2471 msgid "Checking all attachments" msgstr "" @@ -1684,11 +1684,11 @@ msgstr "" msgid "Checking for updates" msgstr "" -#: src/strings.ts:2476 +#: src/strings.ts:2470 msgid "Checking note attachments" msgstr "" -#: src/strings.ts:2351 +#: src/strings.ts:2345 msgid "Checklist" msgstr "" @@ -1696,7 +1696,7 @@ msgstr "" msgid "Choose 2FA Method" msgstr "" -#: src/strings.ts:2405 +#: src/strings.ts:2399 msgid "Choose a block to insert" msgstr "" @@ -1704,11 +1704,11 @@ msgstr "" msgid "Choose a recovery method" msgstr "" -#: src/strings.ts:2177 +#: src/strings.ts:2171 msgid "Choose backup format" msgstr "" -#: src/strings.ts:2441 +#: src/strings.ts:2435 msgid "Choose custom color" msgstr "" @@ -1720,7 +1720,7 @@ msgstr "" msgid "Choose how dates are displayed in the app" msgstr "" -#: src/strings.ts:2711 +#: src/strings.ts:2705 msgid "Choose how day is displayed in the app" msgstr "" @@ -1736,19 +1736,19 @@ msgstr "" msgid "Choose how you want to secure your notes locally." msgstr "" -#: src/strings.ts:2828 +#: src/strings.ts:2822 msgid "Choose how you want to set up your Inbox PGP keys:" msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3032 +#: src/strings.ts:3012 msgid "Choose the day you want to be reminded." msgstr "" -#: src/strings.ts:3033 +#: src/strings.ts:3013 msgid "Choose the time you want to be reminded." msgstr "" -#: src/strings.ts:2716 +#: src/strings.ts:2710 msgid "Choose what day to display as the first day of the week" msgstr "" @@ -1756,11 +1756,11 @@ msgstr "" msgid "Choose where to save your backups" msgstr "" -#: src/strings.ts:2137 +#: src/strings.ts:2131 msgid "Choose your style" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2985 +#: src/strings.ts:2965 msgid "Choosing storage location..." msgstr "" @@ -1776,7 +1776,7 @@ msgstr "" msgid "Clear all cached attachments. Size: {cacheSize}" msgstr "" -#: src/strings.ts:2345 +#: src/strings.ts:2339 msgid "Clear all formatting" msgstr "" @@ -1788,7 +1788,7 @@ msgstr "" msgid "Clear cache" msgstr "" -#: src/strings.ts:2439 +#: src/strings.ts:2433 msgid "Clear completed tasks" msgstr "" @@ -1808,7 +1808,7 @@ msgstr "" msgid "Clear logs" msgstr "" -#: src/strings.ts:2271 +#: src/strings.ts:2265 msgid "clear sessions" msgstr "" @@ -1839,15 +1839,15 @@ 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:2304 +#: src/strings.ts:2298 msgid "Clearing trash will permanently delete all the items in your trash. This action is IRREVERSIBLE." msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2956 +#: src/strings.ts:2936 msgid "Click here" msgstr "" -#: src/strings.ts:2698 +#: src/strings.ts:2692 msgid "Click here to directly claim the promotion." msgstr "" @@ -1867,15 +1867,15 @@ msgstr "" msgid "Click to remove" msgstr "" -#: src/strings.ts:2468 +#: src/strings.ts:2462 msgid "Click to reset {title}" msgstr "" -#: src/strings.ts:2706 +#: src/strings.ts:2700 msgid "Click to save" msgstr "" -#: src/strings.ts:2702 +#: src/strings.ts:2696 msgid "Click to update" msgstr "" @@ -1883,59 +1883,59 @@ msgstr "" msgid "Close" msgstr "" -#: src/strings.ts:2848 +#: src/strings.ts:2842 msgid "Close ({seconds})" msgstr "" -#: src/strings.ts:2084 +#: src/strings.ts:2078 msgid "Close all" msgstr "" -#: src/strings.ts:2526 +#: src/strings.ts:2520 msgid "Close all tabs" msgstr "" -#: src/strings.ts:2525 +#: src/strings.ts:2519 msgid "Close current tab" msgstr "" -#: src/strings.ts:2081 +#: src/strings.ts:2075 msgid "Close others" msgstr "" -#: src/strings.ts:2195 +#: src/strings.ts:2189 msgid "Close to system tray" msgstr "" -#: src/strings.ts:2083 +#: src/strings.ts:2077 msgid "Close to the left" msgstr "" -#: src/strings.ts:2082 +#: src/strings.ts:2076 msgid "Close to the right" msgstr "" -#: src/strings.ts:2619 +#: src/strings.ts:2613 msgid "cloud storage" msgstr "" -#: src/strings.ts:2604 +#: src/strings.ts:2598 msgid "cloud storage space for storing images and files." msgstr "" -#: src/strings.ts:2343 +#: src/strings.ts:2337 msgid "Code" msgstr "" -#: src/strings.ts:2407 +#: src/strings.ts:2401 msgid "Code block" msgstr "<<<<<<< HEAD" -#: src/strings.ts:3049 +#: src/strings.ts:3029 msgid "Code copied" msgstr "" -#: src/strings.ts:2344 +#: src/strings.ts:2338 msgid "Code remove" msgstr "" @@ -1956,7 +1956,7 @@ msgstr "" msgid "Color #{color} already exists" msgstr "" -#: src/strings.ts:2170 +#: src/strings.ts:2164 msgid "Color scheme" msgstr "" @@ -1964,7 +1964,7 @@ msgstr "" msgid "Color title" msgstr "" -#: src/strings.ts:2880 +#: src/strings.ts:2874 msgid "Colornote password for {filename}" msgstr "" @@ -1976,11 +1976,11 @@ msgstr "" msgid "Colors" msgstr "" -#: src/strings.ts:2361 +#: src/strings.ts:2355 msgid "Column properties" msgstr "" -#: src/strings.ts:2517 +#: src/strings.ts:2511 msgid "Command palette" msgstr "" @@ -1988,7 +1988,7 @@ msgstr "" msgid "Community" msgstr "" -#: src/strings.ts:2634 +#: src/strings.ts:2628 msgid "Compare Plans" msgstr "" @@ -2008,23 +2008,23 @@ msgstr "" msgid "Compressed images are uploaded in Full HD resolution and usually are good enough for most use cases." msgstr "" -#: src/strings.ts:2849 +#: src/strings.ts:2843 msgid "Compressing" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2987 +#: src/strings.ts:2967 msgid "Compressing logs into an archive..." msgstr "" -#: src/strings.ts:2853 +#: src/strings.ts:2847 msgid "Compression failed" msgstr "" -#: src/strings.ts:2327 +#: src/strings.ts:2321 msgid "Configure" msgstr "" -#: src/strings.ts:2482 +#: src/strings.ts:2476 msgid "Configure server URLs for Notesnook" msgstr "" @@ -2044,7 +2044,7 @@ msgstr "" msgid "Confirm password" msgstr "" -#: src/strings.ts:2808 +#: src/strings.ts:2802 msgid "Confirm password required" msgstr "" @@ -2056,11 +2056,11 @@ msgstr "" msgid "Confirm your email to sync notes" msgstr "" -#: src/strings.ts:2730 +#: src/strings.ts:2724 msgid "Confirmation email sent" msgstr "" -#: src/strings.ts:2155 +#: src/strings.ts:2149 msgid "Congratulations!" msgstr "" @@ -2068,7 +2068,7 @@ msgstr "" msgid "Connected to all servers sucessfully." msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2986 +#: src/strings.ts:2966 msgid "Consolidating network sync logs..." msgstr "" @@ -2092,7 +2092,7 @@ msgstr "" msgid "Controls whether this device should receive reminder notifications." msgstr "" -#: src/strings.ts:2055 +#: src/strings.ts:2049 msgid "Copied" msgstr "" @@ -2101,7 +2101,7 @@ msgid "Copy" msgstr "" #. placeholder {0}: format ? " " + format : "" -#: src/strings.ts:2101 +#: src/strings.ts:2095 msgid "Copy as{0}" msgstr "" @@ -2113,7 +2113,7 @@ msgstr "" msgid "Copy ID" msgstr "" -#: src/strings.ts:2323 +#: src/strings.ts:2317 msgid "Copy image" msgstr "" @@ -2121,11 +2121,11 @@ msgstr "" msgid "Copy link" msgstr "" -#: src/strings.ts:2322 +#: src/strings.ts:2316 msgid "Copy link text" msgstr "" -#: src/strings.ts:2872 +#: src/strings.ts:2866 msgid "Copy logs" msgstr "" @@ -2137,7 +2137,7 @@ msgstr "" msgid "Copy to clipboard" msgstr "" -#: src/strings.ts:2752 +#: src/strings.ts:2746 msgid "Copy your API key and store it somewhere safe." msgstr "" @@ -2149,11 +2149,11 @@ msgstr "" msgid "CORS bypass" msgstr "" -#: src/strings.ts:2051 +#: src/strings.ts:2045 msgid "Could not activate trial. Please try again later." msgstr "" -#: src/strings.ts:2069 +#: src/strings.ts:2063 msgid "Could not clear trash." msgstr "" @@ -2161,7 +2161,7 @@ msgstr "" msgid "Could not connect to {server}." msgstr "" -#: src/strings.ts:2016 +#: src/strings.ts:2010 msgid "Could not convert note to {format}." msgstr "" @@ -2173,7 +2173,7 @@ msgstr "" msgid "Could not unlock" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2992 +#: src/strings.ts:2972 msgid "Couldn't download logs" msgstr "" @@ -2205,7 +2205,7 @@ msgstr "" msgid "Create account" msgstr "" -#: src/strings.ts:2745 +#: src/strings.ts:2739 msgid "Create API Key" msgstr "" @@ -2213,7 +2213,7 @@ msgstr "" msgid "Create link" msgstr "" -#: src/strings.ts:2764 +#: src/strings.ts:2758 msgid "Create new key" msgstr "" @@ -2221,7 +2221,7 @@ msgstr "" msgid "Create notebook" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3044 +#: src/strings.ts:3024 msgid "Create Reminder" msgstr "" @@ -2229,7 +2229,7 @@ msgstr "" msgid "Create shortcut of this notebook in side menu" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2997 +#: src/strings.ts:2977 msgid "Create sub-notebook" msgstr "" @@ -2253,27 +2253,27 @@ msgstr "" msgid "Create your account" msgstr "" -#: src/strings.ts:2746 +#: src/strings.ts:2740 msgid "Create your API key" msgstr "" -#: src/strings.ts:2763 +#: src/strings.ts:2757 msgid "Create your first api key to get started." msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2919 +#: src/strings.ts:2899 msgid "Create your first tag to start organizing your workspace." msgstr "" -#: src/strings.ts:2784 +#: src/strings.ts:2778 msgid "Created" msgstr "" -#: src/strings.ts:2305 +#: src/strings.ts:2299 msgid "Created at" msgstr "" -#: src/strings.ts:2783 +#: src/strings.ts:2777 msgid "Created on" msgstr "" @@ -2282,19 +2282,19 @@ msgstr "" msgid "Creating a{0} backup" msgstr "" -#: src/strings.ts:2755 +#: src/strings.ts:2749 msgid "Creating..." msgstr "" -#: src/strings.ts:2864 +#: src/strings.ts:2858 msgid "Creation date cannot be after last edited date" msgstr "" -#: src/strings.ts:2114 +#: src/strings.ts:2108 msgid "Credentials" msgstr "" -#: src/strings.ts:2140 +#: src/strings.ts:2134 msgid "Cross platform & 100% encrypted" msgstr "" @@ -2302,11 +2302,11 @@ msgstr "" msgid "Curate the toolbar that fits your needs and matches your personality." msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2968 +#: src/strings.ts:2948 msgid "Current date" msgstr "" -#: src/strings.ts:2970 +#: src/strings.ts:2950 msgid "Current day" msgstr "" @@ -2319,7 +2319,7 @@ msgstr "" msgid "Current password" msgstr "" -#: src/strings.ts:2817 +#: src/strings.ts:2811 msgid "Current password required" msgstr "" @@ -2335,15 +2335,15 @@ msgstr "" msgid "Current Plan" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2969 +#: src/strings.ts:2949 msgid "Current time" msgstr "" -#: src/strings.ts:2075 +#: src/strings.ts:2069 msgid "Custom" msgstr "" -#: src/strings.ts:2206 +#: src/strings.ts:2200 msgid "Custom dictionary words" msgstr "" @@ -2367,7 +2367,7 @@ msgstr "" msgid "Customize toolbar" msgstr "" -#: src/strings.ts:2321 +#: src/strings.ts:2315 msgid "Cut" msgstr "" @@ -2384,11 +2384,11 @@ msgstr "" msgid "Dark mode" msgstr "" -#: src/strings.ts:2171 +#: src/strings.ts:2165 msgid "Dark or light, we won't judge." msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2952 +#: src/strings.ts:2932 msgid "Data and storage" msgstr "" @@ -2400,7 +2400,7 @@ msgstr "" msgid "Date" msgstr "" -#: src/strings.ts:2180 +#: src/strings.ts:2174 msgid "Date & time" msgstr "" @@ -2424,11 +2424,11 @@ msgstr "" msgid "Date modified" msgstr "" -#: src/strings.ts:2836 +#: src/strings.ts:2830 msgid "Date synced" msgstr "" -#: src/strings.ts:2107 +#: src/strings.ts:2101 msgid "Date uploaded" msgstr "" @@ -2436,11 +2436,11 @@ msgstr "" msgid "Day" msgstr "" -#: src/strings.ts:2710 +#: src/strings.ts:2704 msgid "Day format" msgstr "" -#: src/strings.ts:2103 +#: src/strings.ts:2097 msgid "Deactivate" msgstr "" @@ -2456,7 +2456,7 @@ msgstr "" msgid "Debug logs downloaded" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2989 +#: src/strings.ts:2969 msgid "Debug logs downloaded!" msgstr "" @@ -2464,12 +2464,12 @@ msgstr "" msgid "Debugging" msgstr "" -#: src/strings.ts:2470 +#: src/strings.ts:2464 msgid "Decrease {title}" msgstr "" #: src/strings.ts:693 -#: src/strings.ts:2073 +#: src/strings.ts:2067 msgid "Default" msgstr "" @@ -2497,7 +2497,7 @@ msgstr "" msgid "Default screen to open on app launch" msgstr "" -#: src/strings.ts:2557 +#: src/strings.ts:2551 msgid "Default sidebar tab" msgstr "" @@ -2521,7 +2521,7 @@ msgstr "" msgid "Delete after viewing" msgstr "" -#: src/strings.ts:2843 +#: src/strings.ts:2837 msgid "Delete all" msgstr "<<<<<<< HEAD" @@ -2529,7 +2529,7 @@ msgstr "<<<<<<< HEAD" msgid "Delete all version history for this note?" msgstr "" -#: src/strings.ts:2811 +#: src/strings.ts:2805 msgid "Delete attachment" msgstr "" @@ -2537,11 +2537,11 @@ msgstr "" msgid "Delete collapsed section" msgstr "" -#: src/strings.ts:2368 +#: src/strings.ts:2362 msgid "Delete column" msgstr "" -#: src/strings.ts:2727 +#: src/strings.ts:2721 msgid "Delete data" msgstr "" @@ -2553,7 +2553,7 @@ msgstr "<<<<<<< HEAD" msgid "Delete item" msgstr "" -#: src/strings.ts:2442 +#: src/strings.ts:2436 msgid "Delete mode" msgstr "" @@ -2565,11 +2565,11 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: src/strings.ts:2375 +#: src/strings.ts:2369 msgid "Delete row" msgstr "" -#: src/strings.ts:2376 +#: src/strings.ts:2370 msgid "Delete table" msgstr "" @@ -2585,7 +2585,7 @@ msgstr "" msgid "Deleted on {date}" msgstr "" -#: src/strings.ts:1993 +#: src/strings.ts:1987 msgid "Deleting" msgstr "" @@ -2597,15 +2597,15 @@ msgstr "" msgid "Deselect all" msgstr "" -#: src/strings.ts:2181 +#: src/strings.ts:2175 msgid "Desktop app" msgstr "" -#: src/strings.ts:2185 +#: src/strings.ts:2179 msgid "Desktop integration" msgstr "" -#: src/strings.ts:2835 +#: src/strings.ts:2829 msgid "Details" msgstr "" @@ -2617,23 +2617,23 @@ msgstr "" msgid "Disable" msgstr "" -#: src/strings.ts:3054 +#: src/strings.ts:3034 msgid "Disable auto sync" msgstr "" -#: src/strings.ts:2076 +#: src/strings.ts:2070 msgid "Disable editor margins" msgstr "" -#: src/strings.ts:2739 +#: src/strings.ts:2733 msgid "Disable Inbox API" msgstr "" -#: src/strings.ts:3057 +#: src/strings.ts:3037 msgid "Disable realtime sync" msgstr "" -#: src/strings.ts:3060 +#: src/strings.ts:3040 msgid "Disable sync" msgstr "" @@ -2641,7 +2641,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/strings.ts:2741 +#: src/strings.ts:2735 msgid "Disabling will delete all your unsynced inbox items. Additionally, disabling will revoke all existing API keys, they will no longer work. Are you sure?" msgstr "" @@ -2729,11 +2729,11 @@ msgstr "" msgid "Download all attachments" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2983 +#: src/strings.ts:2963 msgid "Download and share debug logs from the app" msgstr "" -#: src/strings.ts:2391 +#: src/strings.ts:2385 msgid "Download attachment" msgstr "" @@ -2745,11 +2745,11 @@ msgstr "" msgid "Download cancelled" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2982 +#: src/strings.ts:2962 msgid "Download debug logs" msgstr "" -#: src/strings.ts:2283 +#: src/strings.ts:2277 msgid "Download everything including attachments on sync" msgstr "" @@ -2802,7 +2802,7 @@ msgstr "" msgid "Drop your files here to attach" msgstr "" -#: src/strings.ts:2644 +#: src/strings.ts:2638 msgid "Due {date}" msgstr "" @@ -2810,7 +2810,7 @@ msgstr "" msgid "Due date" msgstr "" -#: src/strings.ts:2642 +#: src/strings.ts:2636 msgid "Due today" msgstr "" @@ -2818,7 +2818,7 @@ msgstr "" msgid "Duplicate" msgstr "" -#: src/strings.ts:2748 +#: src/strings.ts:2742 msgid "e.g., Todo integration" msgstr "" @@ -2826,7 +2826,7 @@ msgstr "" msgid "Earliest first" msgstr "" -#: src/strings.ts:2494 +#: src/strings.ts:2488 msgid "Easy access" msgstr "" @@ -2834,7 +2834,7 @@ msgstr "" msgid "Edit" msgstr "" -#: src/strings.ts:2717 +#: src/strings.ts:2711 msgid "Edit creation date" msgstr "" @@ -2842,12 +2842,12 @@ msgstr "" msgid "Edit internal link" msgstr "" -#: src/strings.ts:2310 -#: src/strings.ts:2338 +#: src/strings.ts:2304 +#: src/strings.ts:2332 msgid "Edit link" msgstr "" -#: src/strings.ts:2550 +#: src/strings.ts:2544 msgid "Edit profile" msgstr "" @@ -2868,7 +2868,7 @@ msgstr "" msgid "Editor" msgstr "" -#: src/strings.ts:2673 +#: src/strings.ts:2667 msgid "Education plan" msgstr "" @@ -2876,7 +2876,7 @@ msgstr "" msgid "Email" msgstr "" -#: src/strings.ts:2507 +#: src/strings.ts:2501 msgid "Email copied" msgstr "" @@ -2900,15 +2900,15 @@ msgstr "" msgid "Email updated to {email}" msgstr "" -#: src/strings.ts:2417 +#: src/strings.ts:2411 msgid "Embed" msgstr "" -#: src/strings.ts:2397 +#: src/strings.ts:2391 msgid "Embed properties" msgstr "" -#: src/strings.ts:2393 +#: src/strings.ts:2387 msgid "Embed settings" msgstr "" @@ -2924,27 +2924,27 @@ msgstr "" msgid "Enable app lock" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2981 +#: src/strings.ts:2961 msgid "Enable biometric unlock" msgstr "" -#: src/strings.ts:2077 +#: src/strings.ts:2071 msgid "Enable editor margins" msgstr "" -#: src/strings.ts:2734 +#: src/strings.ts:2728 msgid "Enable Inbox API" msgstr "" -#: src/strings.ts:2541 +#: src/strings.ts:2535 msgid "Enable ligatures for common symbols like โ†’, โ†, etc" msgstr "" -#: src/strings.ts:2457 +#: src/strings.ts:2451 msgid "Enable regex" msgstr "" -#: src/strings.ts:2202 +#: src/strings.ts:2196 msgid "Enable spell checker" msgstr "" @@ -2952,7 +2952,7 @@ msgstr "" msgid "Enable two-factor authentication to secure your account." msgstr "" -#: src/strings.ts:2735 +#: src/strings.ts:2729 msgid "Enable/Disable Inbox API" msgstr "" @@ -2964,7 +2964,7 @@ msgstr "" msgid "Encrypted and synced" msgstr "" -#: src/strings.ts:2317 +#: src/strings.ts:2311 msgid "Encrypted backup" msgstr "" @@ -2972,7 +2972,7 @@ msgstr "" msgid "Encrypted, private, secure." msgstr "" -#: src/strings.ts:2850 +#: src/strings.ts:2844 msgid "Encrypting" msgstr "" @@ -2988,7 +2988,7 @@ msgstr "" msgid "End-to-end encrypted." msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2909 +#: src/strings.ts:2889 msgid "End-to-end encryption (XChaCha20)" msgstr "" @@ -3032,7 +3032,7 @@ msgstr "" msgid "Enter email address" msgstr "" -#: src/strings.ts:2445 +#: src/strings.ts:2439 msgid "Enter embed source URL" msgstr "" @@ -3060,7 +3060,7 @@ msgstr "" msgid "Enter password" msgstr "" -#: src/strings.ts:2163 +#: src/strings.ts:2157 msgid "Enter pin or password to enable app lock." msgstr "" @@ -3080,15 +3080,15 @@ msgstr "" msgid "Enter the 6 digit code sent to your phone number to continue logging in." msgstr "" -#: src/strings.ts:2509 +#: src/strings.ts:2503 msgid "Enter the gift code to redeem your subscription." msgstr "" -#: src/strings.ts:2709 +#: src/strings.ts:2703 msgid "Enter title" msgstr "<<<<<<< HEAD" -#: src/strings.ts:3050 +#: src/strings.ts:3030 msgid "Enter vault password" msgstr "" @@ -3100,15 +3100,15 @@ msgstr "" msgid "Enter your new email" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2939 +#: src/strings.ts:2919 msgid "Enter your password" msgstr "" -#: src/strings.ts:2877 +#: src/strings.ts:2871 msgid "Enter your PGP private key" msgstr "" -#: src/strings.ts:2876 +#: src/strings.ts:2870 msgid "Enter your PGP public key" msgstr "" @@ -3116,15 +3116,15 @@ msgstr "" msgid "Enter your recovery code." msgstr "" -#: src/strings.ts:2164 +#: src/strings.ts:2158 msgid "Enter your username" msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3006 +#: src/strings.ts:2986 msgid "Entire Note" msgstr "" -#: src/strings.ts:2501 +#: src/strings.ts:2495 msgid "Error" msgstr "" @@ -3160,7 +3160,7 @@ msgstr "" msgid "Errors in {count} attachments" msgstr "" -#: src/strings.ts:2546 +#: src/strings.ts:2540 msgid "Essential plan" msgstr "" @@ -3168,79 +3168,79 @@ msgstr "" msgid "Events server" msgstr "" -#: src/strings.ts:2487 +#: src/strings.ts:2481 msgid "Every Notebook can have notes and sub notebooks." msgstr "" -#: src/strings.ts:2489 +#: src/strings.ts:2483 msgid "Everything related to my job in one place." msgstr "" -#: src/strings.ts:2498 +#: src/strings.ts:2492 msgid "Everything related to my school in one place." msgstr "" -#: src/strings.ts:2515 +#: src/strings.ts:2509 msgid "Execute" msgstr "" -#: src/strings.ts:2514 +#: src/strings.ts:2508 msgid "Execute a command..." msgstr "" -#: src/strings.ts:2078 +#: src/strings.ts:2072 msgid "Exit fullscreen" msgstr "" -#: src/strings.ts:2449 +#: src/strings.ts:2443 msgid "Expand" msgstr "" -#: src/strings.ts:2542 +#: src/strings.ts:2536 msgid "Expand sidebar" msgstr "" -#: src/strings.ts:2147 +#: src/strings.ts:2141 msgid "Experience the next level of private note taking\"" msgstr "" -#: src/strings.ts:2787 +#: src/strings.ts:2781 msgid "Expired" msgstr "" -#: src/strings.ts:2785 +#: src/strings.ts:2779 msgid "Expires" msgstr "" -#: src/strings.ts:2749 +#: src/strings.ts:2743 msgid "Expires in" msgstr "" -#: src/strings.ts:2788 +#: src/strings.ts:2782 msgid "Expires on" msgstr "" -#: src/strings.ts:2723 +#: src/strings.ts:2717 msgid "Expiry date" msgstr "" -#: src/strings.ts:2861 +#: src/strings.ts:2855 msgid "Expiry date cannot be more than 1 year in the future" msgstr "" -#: src/strings.ts:2859 +#: src/strings.ts:2853 msgid "Expiry date must be in the future" msgstr "" -#: src/strings.ts:2878 +#: src/strings.ts:2872 msgid "Expiry date removed" msgstr "" -#: src/strings.ts:2862 +#: src/strings.ts:2856 msgid "Expiry date set" msgstr "" -#: src/strings.ts:2616 +#: src/strings.ts:2610 msgid "Explore all plans" msgstr "" @@ -3261,11 +3261,11 @@ msgid "Export all notes as pdf, markdown, html or text in a single zip file" msgstr "" #. placeholder {0}: format ? " " + format : "" -#: src/strings.ts:2100 +#: src/strings.ts:2094 msgid "Export as{0}" msgstr "" -#: src/strings.ts:2724 +#: src/strings.ts:2718 msgid "Export CSV" msgstr "" @@ -3289,28 +3289,28 @@ msgstr "" msgid "Faced an issue or have a suggestion? Click here to create a bug report" msgstr "" -#: src/strings.ts:2479 +#: src/strings.ts:2473 msgid "Failed" msgstr "" -#: src/strings.ts:2837 +#: src/strings.ts:2831 msgid "Failed inbox items" msgstr "" -#: src/strings.ts:2728 +#: src/strings.ts:2722 msgid "Failed to attach file" msgstr "" -#: src/strings.ts:2001 +#: src/strings.ts:1995 msgid "Failed to copy note" msgstr "" -#: src/strings.ts:2775 +#: src/strings.ts:2769 msgid "Failed to copy to clipboard" msgstr "" #. placeholder {0}: message ? `: ${message}` : "" -#: src/strings.ts:2754 +#: src/strings.ts:2748 msgid "Failed to create API key{0}" msgstr "" @@ -3318,7 +3318,7 @@ msgstr "" msgid "Failed to decrypt backup" msgstr "" -#: src/strings.ts:2067 +#: src/strings.ts:2061 msgid "Failed to delete" msgstr "" @@ -3330,11 +3330,11 @@ msgstr "" msgid "Failed to download file" msgstr "" -#: src/strings.ts:2063 +#: src/strings.ts:2057 msgid "Failed to install theme." msgstr "" -#: src/strings.ts:2761 +#: src/strings.ts:2755 msgid "Failed to load API keys. Please try again." msgstr "" @@ -3346,7 +3346,7 @@ msgstr "" msgid "Failed to publish note" msgstr "" -#: src/strings.ts:2068 +#: src/strings.ts:2062 msgid "Failed to register task" msgstr "" @@ -3354,7 +3354,7 @@ msgstr "" msgid "Failed to resolve download url" msgstr "" -#: src/strings.ts:2780 +#: src/strings.ts:2774 msgid "Failed to revoke API key" msgstr "" @@ -3370,11 +3370,11 @@ msgstr "" msgid "Failed to subscribe" msgstr "" -#: src/strings.ts:2278 +#: src/strings.ts:2272 msgid "Failed to take backup" msgstr "" -#: src/strings.ts:2280 +#: src/strings.ts:2274 msgid "Failed to take backup of your data. Do you want to continue logging out?" msgstr "" @@ -3390,11 +3390,11 @@ msgstr "" msgid "Fallback method for 2FA enabled" msgstr "" -#: src/strings.ts:2635 +#: src/strings.ts:2629 msgid "FAQs" msgstr "" -#: src/strings.ts:2097 +#: src/strings.ts:2091 msgid "Favorite" msgstr "" @@ -3403,15 +3403,15 @@ msgstr "" msgid "Favorites" msgstr "" -#: src/strings.ts:2633 +#: src/strings.ts:2627 msgid "Featured on" msgstr "" -#: src/strings.ts:2491 +#: src/strings.ts:2485 msgid "February 2022 Week 2" msgstr "" -#: src/strings.ts:2492 +#: src/strings.ts:2486 msgid "February 2022 Week 3" msgstr "" @@ -3431,7 +3431,7 @@ msgstr "" msgid "File length mismatch. Expected {expectedSize} but got {currentSize} bytes. Please upload this file again from the attachment manager." msgstr "" -#: src/strings.ts:2858 +#: src/strings.ts:2852 msgid "File links cannot be opened in browsers. Please use the Notesnook desktop app." msgstr "" @@ -3439,7 +3439,7 @@ msgstr "" msgid "File mismatch" msgstr "" -#: src/strings.ts:2852 +#: src/strings.ts:2846 msgid "File size limit exceeded. Please upgrade your plan." msgstr "" @@ -3467,7 +3467,7 @@ msgstr "" msgid "Filter tags..." msgstr "" -#: src/strings.ts:2695 +#: src/strings.ts:2689 msgid "Finish your purchase in the browser." msgstr "" @@ -3475,11 +3475,11 @@ msgstr "" msgid "Fix it" msgstr "" -#: src/strings.ts:2080 +#: src/strings.ts:2074 msgid "Focus mode" msgstr "" -#: src/strings.ts:2238 +#: src/strings.ts:2232 msgid "Follow" msgstr "" @@ -3499,19 +3499,19 @@ msgstr "" msgid "Follow us on X for updates and news about Notesnook" msgstr "" -#: src/strings.ts:2352 +#: src/strings.ts:2346 msgid "Font family" msgstr "" -#: src/strings.ts:2539 +#: src/strings.ts:2533 msgid "Font ligatures" msgstr "" -#: src/strings.ts:2353 +#: src/strings.ts:2347 msgid "Font size" msgstr "" -#: src/strings.ts:2597 +#: src/strings.ts:2591 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 "" @@ -3523,7 +3523,7 @@ msgstr "" msgid "for help regarding how to use the Notesnook Importer." msgstr "" -#: src/strings.ts:2606 +#: src/strings.ts:2600 msgid "for locking your notes as soon as app enters background" msgstr "" @@ -3531,11 +3531,11 @@ msgstr "" msgid "For support or questions, chat with our community on" msgstr "" -#: src/strings.ts:2270 +#: src/strings.ts:2264 msgid "Force logout from all your other logged in devices." msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2941 +#: src/strings.ts:2921 msgid "Force Pull" msgstr "" @@ -3543,7 +3543,7 @@ msgstr "" msgid "Force pull changes" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2942 +#: src/strings.ts:2922 msgid "Force Push" msgstr "" @@ -3551,7 +3551,7 @@ msgstr "" msgid "Force push changes" msgstr "" -#: src/strings.ts:2287 +#: src/strings.ts:2281 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" @@ -3566,25 +3566,25 @@ msgstr "" msgid "Forgot Password?" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2966 +#: src/strings.ts:2946 msgid "Formatting" msgstr "" -#: src/strings.ts:2911 -#: src/strings.ts:2936 +#: src/strings.ts:2891 +#: src/strings.ts:2916 msgid "Free {days} days trial, cancel anytime" msgstr "" -#: src/strings.ts:2650 +#: src/strings.ts:2644 msgid "Free {duration} day trial, cancel any time" msgstr "" -#: src/strings.ts:2544 +#: src/strings.ts:2538 msgid "Free plan" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2898 -msgid "Frequently Asked Questions" +#: src/strings.ts:2878 +msgid "Frequently asked questions" msgstr "" #: src/strings.ts:660 @@ -3595,31 +3595,31 @@ msgstr "" msgid "Friday" msgstr "" -#: src/strings.ts:2447 +#: src/strings.ts:2441 msgid "From code" msgstr "" -#: src/strings.ts:2444 +#: src/strings.ts:2438 msgid "From URL" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2976 +#: src/strings.ts:2956 msgid "Full backup" msgstr "" -#: src/strings.ts:2064 +#: src/strings.ts:2058 msgid "Full name updated" msgstr "" -#: src/strings.ts:2281 +#: src/strings.ts:2275 msgid "Full offline mode" msgstr "" -#: src/strings.ts:2399 +#: src/strings.ts:2393 msgid "Full screen" msgstr "" -#: src/strings.ts:2167 +#: src/strings.ts:2161 msgid "General" msgstr "" @@ -3631,11 +3631,11 @@ msgstr "" msgid "Get Notesnook app on your desktop and access all notes" msgstr "" -#: src/strings.ts:2232 +#: src/strings.ts:2226 msgid "Get Notesnook app on your iPhone and access all your notes on the go." msgstr "" -#: src/strings.ts:2234 +#: src/strings.ts:2228 msgid "Get Notesnook app on your iPhone or Android device and access all your notes on the go." msgstr "" @@ -3647,7 +3647,7 @@ msgstr "" msgid "Get Notesnook Pro to enable automatic backups" msgstr "" -#: src/strings.ts:2483 +#: src/strings.ts:2477 msgid "Get Priority support" msgstr "" @@ -3659,7 +3659,7 @@ msgstr "" msgid "Get started" msgstr "" -#: src/strings.ts:2603 +#: src/strings.ts:2597 msgid "Get this and so much more:" msgstr "" @@ -3675,7 +3675,7 @@ msgstr "" msgid "Getting recovery codes" msgstr "" -#: src/strings.ts:2810 +#: src/strings.ts:2804 msgid "Gift code required" msgstr "" @@ -3683,27 +3683,27 @@ msgstr "" msgid "Github" msgstr "" -#: src/strings.ts:2237 +#: src/strings.ts:2231 msgid "GNU GENERAL PUBLIC LICENSE Version 3" msgstr "" -#: src/strings.ts:2696 +#: src/strings.ts:2690 msgid "Go back" msgstr "" -#: src/strings.ts:2522 +#: src/strings.ts:2516 msgid "Go back in tab" msgstr "" -#: src/strings.ts:2300 +#: src/strings.ts:2294 msgid "Go back to notebooks" msgstr "" -#: src/strings.ts:2301 +#: src/strings.ts:2295 msgid "Go back to tags" msgstr "" -#: src/strings.ts:2521 +#: src/strings.ts:2515 msgid "Go forward in tab" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "" msgid "Go to web app" msgstr "" -#: src/strings.ts:2615 +#: src/strings.ts:2609 msgid "Google will remind you 2 days before your trial ends." msgstr "" @@ -3755,39 +3755,31 @@ msgstr "" msgid "Group created" msgstr "" -#: src/strings.ts:3069 -msgid "Group deleted" -msgstr "" - -#: src/strings.ts:785 -msgid "Hash copied" -msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" - -#: src/strings.ts:2949 +#: src/strings.ts:2929 msgid "Having issues? Contact" msgstr "" -#: src/strings.ts:2284 +#: src/strings.ts:2278 msgid "Having problems with sync?" msgstr "" -#: src/strings.ts:2639 +#: src/strings.ts:2633 msgid "HD Images" msgstr "" -#: src/strings.ts:2425 +#: src/strings.ts:2419 msgid "Heading {level}" msgstr "" -#: src/strings.ts:2354 +#: src/strings.ts:2348 msgid "Headings" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2973 +#: src/strings.ts:2953 msgid "Headline" msgstr "" -#: src/strings.ts:2460 +#: src/strings.ts:2454 msgid "Height" msgstr "" @@ -3811,11 +3803,11 @@ msgstr "" msgid "Hide app contents when you switch to other apps. This will also disable screenshot taking in the app." msgstr "" -#: src/strings.ts:2243 +#: src/strings.ts:2237 msgid "Hide note title" msgstr "" -#: src/strings.ts:2357 +#: src/strings.ts:2351 msgid "Highlight" msgstr "" @@ -3839,7 +3831,7 @@ msgstr "" msgid "Homepage changed to {name}" msgstr "" -#: src/strings.ts:2406 +#: src/strings.ts:2400 msgid "Horizontal rule" msgstr "" @@ -3855,7 +3847,7 @@ msgstr "" msgid "hr" msgstr "" -#: src/strings.ts:2574 +#: src/strings.ts:2568 msgid "I already have an account" msgstr "" @@ -3883,15 +3875,15 @@ msgstr "" msgid "I have saved my key" msgstr "" -#: src/strings.ts:2500 +#: src/strings.ts:2494 msgid "I love cooking and collecting recipes." msgstr "" -#: src/strings.ts:2285 +#: src/strings.ts:2279 msgid "I understand" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2950 +#: src/strings.ts:2930 msgid "I understand the risks" msgstr "" @@ -3911,11 +3903,11 @@ msgstr "" msgid "If this continues to happen, please reach out to us via" msgstr "" -#: src/strings.ts:2188 +#: src/strings.ts:2182 msgid "If true, Notesnook will automatically start up when you turn on & login to your system." msgstr "" -#: src/strings.ts:2191 +#: src/strings.ts:2185 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 "" @@ -3933,11 +3925,11 @@ msgstr "" 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:2152 +#: src/strings.ts:2146 msgid "If you face any issue, you can reach out to us anytime." msgstr "" -#: src/strings.ts:2411 +#: src/strings.ts:2405 msgid "Image" msgstr "" @@ -3945,11 +3937,11 @@ msgstr "" msgid "Image Compression" msgstr "" -#: src/strings.ts:2387 +#: src/strings.ts:2381 msgid "Image properties" msgstr "" -#: src/strings.ts:2383 +#: src/strings.ts:2377 msgid "Image settings" msgstr "" @@ -3969,7 +3961,7 @@ msgstr "" msgid "Immediately" msgstr "" -#: src/strings.ts:2215 +#: src/strings.ts:2209 msgid "Import & export" msgstr "" @@ -3977,7 +3969,7 @@ msgstr "" msgid "Import completed" msgstr "" -#: src/strings.ts:2725 +#: src/strings.ts:2719 msgid "Import CSV" msgstr "" @@ -3985,15 +3977,15 @@ msgstr "" msgid "import guide" msgstr "" -#: src/strings.ts:2731 +#: src/strings.ts:2725 msgid "Inbox API" msgstr "" -#: src/strings.ts:2795 +#: src/strings.ts:2789 msgid "Inbox keys saved" msgstr "" -#: src/strings.ts:2736 +#: src/strings.ts:2730 msgid "Inbox PGP Keys" msgstr "" @@ -4009,47 +4001,47 @@ msgstr "" msgid "Incorrect {type}" msgstr "" -#: src/strings.ts:2469 +#: src/strings.ts:2463 msgid "Increase {title}" msgstr "" -#: src/strings.ts:2311 +#: src/strings.ts:2305 msgid "Insert" msgstr "" -#: src/strings.ts:2466 +#: src/strings.ts:2460 msgid "Insert a {rows}x{columns} table" msgstr "" -#: src/strings.ts:2416 +#: src/strings.ts:2410 msgid "Insert a table" msgstr "" -#: src/strings.ts:2418 +#: src/strings.ts:2412 msgid "Insert an embed" msgstr "" -#: src/strings.ts:2412 +#: src/strings.ts:2406 msgid "Insert an image" msgstr "" -#: src/strings.ts:2364 +#: src/strings.ts:2358 msgid "Insert column left" msgstr "" -#: src/strings.ts:2365 +#: src/strings.ts:2359 msgid "Insert column right" msgstr "" -#: src/strings.ts:2309 +#: src/strings.ts:2303 msgid "Insert link" msgstr "" -#: src/strings.ts:2371 +#: src/strings.ts:2365 msgid "Insert row above" msgstr "" -#: src/strings.ts:2372 +#: src/strings.ts:2366 msgid "Insert row below" msgstr "" @@ -4057,7 +4049,7 @@ msgstr "" msgid "Install Notesnook" msgstr "" -#: src/strings.ts:2223 +#: src/strings.ts:2217 msgid "Install update" msgstr "" @@ -4069,7 +4061,7 @@ msgstr "" msgid "Invalid {type}" msgstr "" -#: src/strings.ts:2056 +#: src/strings.ts:2050 msgid "Invalid CORS proxy url" msgstr "" @@ -4077,15 +4069,15 @@ msgstr "" msgid "Invalid email" msgstr "" -#: src/strings.ts:2773 +#: src/strings.ts:2767 msgid "Invalid password" msgstr "" -#: src/strings.ts:2794 +#: src/strings.ts:2788 msgid "Invalid PGP key pair. Please check your keys and try again." msgstr "" -#: src/strings.ts:2801 +#: src/strings.ts:2795 msgid "Invalid recovery key. Make sure to input your account recovery key, not a 2FA recovery code." msgstr "" @@ -4093,7 +4085,7 @@ msgstr "" msgid "Issue created" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2980 +#: src/strings.ts:2960 msgid "Issue summary" msgstr "" @@ -4114,7 +4106,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:2333 +#: src/strings.ts:2327 msgid "Italic" msgstr "" @@ -4126,7 +4118,7 @@ msgstr "" msgid "Item" msgstr "" -#: src/strings.ts:2842 +#: src/strings.ts:2836 msgid "Item deleted" msgstr "" @@ -4139,7 +4131,7 @@ msgstr "" msgid "Items" msgstr "" -#: src/strings.ts:2235 +#: src/strings.ts:2229 msgid "Join community" msgstr "" @@ -4159,11 +4151,11 @@ msgstr "" msgid "Join our Telegram group to chat with other users and the team" msgstr "" -#: src/strings.ts:2143 +#: src/strings.ts:2137 msgid "Join the cause" msgstr "" -#: src/strings.ts:2091 +#: src/strings.ts:2085 msgid "Jump to group" msgstr "" @@ -4175,7 +4167,7 @@ msgstr "" msgid "Keep" msgstr "" -#: src/strings.ts:2086 +#: src/strings.ts:2080 msgid "Keep open" msgstr "<<<<<<< HEAD" @@ -4191,19 +4183,19 @@ msgstr "" msgid "Keep your notes updated automatically" msgstr "" -#: src/strings.ts:2747 +#: src/strings.ts:2741 msgid "Key name" msgstr "" -#: src/strings.ts:2203 +#: src/strings.ts:2197 msgid "Languages" msgstr "" -#: src/strings.ts:2306 +#: src/strings.ts:2300 msgid "Last edited at" msgstr "" -#: src/strings.ts:2781 +#: src/strings.ts:2775 msgid "Last used on" msgstr "" @@ -4239,7 +4231,7 @@ msgstr "" msgid "Legal" msgstr "" -#: src/strings.ts:2236 +#: src/strings.ts:2230 msgid "License" msgstr "" @@ -4247,7 +4239,7 @@ msgstr "" msgid "Licensed under {license}" msgstr "" -#: src/strings.ts:2402 +#: src/strings.ts:2396 msgid "Lift list item" msgstr "" @@ -4255,11 +4247,11 @@ msgstr "" msgid "Light" msgstr "" -#: src/strings.ts:2432 +#: src/strings.ts:2426 msgid "Line {line}, Column {column}" msgstr "" -#: src/strings.ts:2707 +#: src/strings.ts:2701 msgid "Line height" msgstr "" @@ -4267,11 +4259,11 @@ msgstr "" msgid "Line spacing changed" msgstr "" -#: src/strings.ts:2337 +#: src/strings.ts:2331 msgid "Link" msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3016 +#: src/strings.ts:2996 msgid "Link added" msgstr "" @@ -4279,11 +4271,11 @@ msgstr "" msgid "Link copied" msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3011 +#: src/strings.ts:2991 msgid "Link entire note" msgstr "" -#: src/strings.ts:3005 +#: src/strings.ts:2985 msgid "Link note" msgstr "" @@ -4291,19 +4283,19 @@ msgstr "" msgid "Link notebooks" msgstr "" -#: src/strings.ts:2551 +#: src/strings.ts:2545 msgid "Link notes" msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3007 +#: src/strings.ts:2987 msgid "Link options" msgstr "" -#: src/strings.ts:2342 +#: src/strings.ts:2336 msgid "Link settings" msgstr "" -#: src/strings.ts:2462 +#: src/strings.ts:2456 msgid "Link text" msgstr "" @@ -4327,7 +4319,7 @@ msgstr "" msgid "Linked notes" msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3013 +#: src/strings.ts:2993 msgid "Linked References" msgstr "" @@ -4335,11 +4327,11 @@ msgstr "" msgid "Linking to a specific block is not available for locked notes." msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3002 +#: src/strings.ts:2982 msgid "Links of notes that are references in this note." msgstr "" -#: src/strings.ts:3003 +#: src/strings.ts:2983 msgid "Links of notes where this note is referenced." msgstr "" @@ -4360,7 +4352,7 @@ msgstr "" msgid "Loading {0}, please wait..." msgstr "" -#: src/strings.ts:2760 +#: src/strings.ts:2754 msgid "Loading API keys..." msgstr "" @@ -4420,7 +4412,7 @@ msgstr "" msgid "Lock the app with a password or pin" msgstr "" -#: src/strings.ts:2796 +#: src/strings.ts:2790 msgid "Lock vault timer" msgstr "" @@ -4432,7 +4424,7 @@ msgstr "" msgid "Locked notes cannot be published" msgstr "" -#: src/strings.ts:2268 +#: src/strings.ts:2262 msgid "Log out from all other devices" msgstr "" @@ -4460,7 +4452,7 @@ msgstr "" msgid "Login required" msgstr "" -#: src/strings.ts:2818 +#: src/strings.ts:2812 msgid "Login required to restore attachments" msgstr "" @@ -4472,7 +4464,7 @@ msgstr "" msgid "Login to encrypt and sync notes" msgstr "" -#: src/strings.ts:2700 +#: src/strings.ts:2694 msgid "Login to upload attachments. [Read more](https://help.notesnook.com/faqs/login-to-upload-attachments)" msgstr "" @@ -4496,7 +4488,7 @@ msgstr "" msgid "Long press on any item in list to enter multi-select mode." msgstr "" -#: src/strings.ts:2437 +#: src/strings.ts:2431 msgid "Make task list readonly" msgstr "" @@ -4548,35 +4540,35 @@ msgstr "" msgid "Marketing emails" msgstr "" -#: src/strings.ts:2450 +#: src/strings.ts:2444 msgid "Match case" msgstr "" -#: src/strings.ts:2451 +#: src/strings.ts:2445 msgid "Match whole word" msgstr "" -#: src/strings.ts:2359 +#: src/strings.ts:2353 msgid "Math (inline)" msgstr "" -#: src/strings.ts:2409 +#: src/strings.ts:2403 msgid "Math & formulas" msgstr "" -#: src/strings.ts:2105 +#: src/strings.ts:2099 msgid "Maximize" msgstr "" -#: src/strings.ts:2867 +#: src/strings.ts:2861 msgid "Maximum reminder date is {maxDate}" msgstr "" -#: src/strings.ts:2145 +#: src/strings.ts:2139 msgid "Meet other privacy-minded people & talk to us directly about your concerns, issues and suggestions." msgstr "" -#: src/strings.ts:2493 +#: src/strings.ts:2487 msgid "Meetings" msgstr "" @@ -4584,7 +4576,7 @@ msgstr "" msgid "Member since {date}" msgstr "" -#: src/strings.ts:2370 +#: src/strings.ts:2364 msgid "Merge cells" msgstr "" @@ -4602,19 +4594,19 @@ msgstr "" msgid "min" msgstr "" -#: src/strings.ts:2074 +#: src/strings.ts:2068 msgid "Minimal" msgstr "" -#: src/strings.ts:2104 +#: src/strings.ts:2098 msgid "Minimize" msgstr "" -#: src/strings.ts:2192 +#: src/strings.ts:2186 msgid "Minimize to system tray" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2964 +#: src/strings.ts:2944 msgid "Miscellaneous" msgstr "" @@ -4663,11 +4655,11 @@ msgstr "" msgid "Monthly" msgstr "" -#: src/strings.ts:2389 +#: src/strings.ts:2383 msgid "More" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3037 +#: src/strings.ts:3017 msgid "More options" msgstr "" @@ -4679,15 +4671,15 @@ msgstr "" msgid "Move" msgstr "" -#: src/strings.ts:2438 +#: src/strings.ts:2432 msgid "Move all checked tasks to bottom" msgstr "" -#: src/strings.ts:2366 +#: src/strings.ts:2360 msgid "Move column left" msgstr "" -#: src/strings.ts:2367 +#: src/strings.ts:2361 msgid "Move column right" msgstr "" @@ -4699,11 +4691,11 @@ msgstr "" msgid "Move notes" msgstr "" -#: src/strings.ts:2374 +#: src/strings.ts:2368 msgid "Move row down" msgstr "" -#: src/strings.ts:2373 +#: src/strings.ts:2367 msgid "Move row up" msgstr "" @@ -4727,7 +4719,7 @@ msgstr "" msgid "Name" msgstr "" -#: src/strings.ts:2816 +#: src/strings.ts:2810 msgid "Name is required." msgstr "" @@ -4735,11 +4727,11 @@ msgstr "" msgid "Native high-performance encryption" msgstr "" -#: src/strings.ts:2518 +#: src/strings.ts:2512 msgid "Navigate" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2959 +#: src/strings.ts:2939 msgid "Navigation" msgstr "" @@ -4751,7 +4743,7 @@ msgstr "" msgid "Never ask again" msgstr "" -#: src/strings.ts:2786 +#: src/strings.ts:2780 msgid "Never expires" msgstr "" @@ -4759,7 +4751,7 @@ msgstr "" msgid "Never hesitate to choose privacy" msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3001 +#: src/strings.ts:2981 msgid "Never miss a task. Set your first reminder now." msgstr "" @@ -4767,7 +4759,7 @@ msgstr "" msgid "Never show again" msgstr "" -#: src/strings.ts:2782 +#: src/strings.ts:2776 msgid "Never used" msgstr "" @@ -4795,7 +4787,7 @@ msgstr "" msgid "New note" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2967 +#: src/strings.ts:2947 msgid "New note title" msgstr "" @@ -4819,7 +4811,7 @@ msgstr "" msgid "New tab" msgstr "" -#: src/strings.ts:2524 +#: src/strings.ts:2518 msgid "New tag" msgstr "" @@ -4831,11 +4823,11 @@ msgstr "" msgid "New version" msgstr "" -#: src/strings.ts:2089 +#: src/strings.ts:2083 msgid "Newest - oldest" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2920 +#: src/strings.ts:2900 msgid "Newest first" msgstr "" @@ -4847,15 +4839,15 @@ msgstr "" msgid "Next" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2914 +#: src/strings.ts:2894 msgid "Next billing date" msgstr "" -#: src/strings.ts:2454 +#: src/strings.ts:2448 msgid "Next match" msgstr "" -#: src/strings.ts:2519 +#: src/strings.ts:2513 msgid "Next tab" msgstr "" @@ -4891,11 +4883,11 @@ msgstr "" msgid "No downloads in progress." msgstr "" -#: src/strings.ts:2049 +#: src/strings.ts:2043 msgid "No encryption key found" msgstr "" -#: src/strings.ts:2840 +#: src/strings.ts:2834 msgid "No failed inbox items" msgstr "" @@ -4920,7 +4912,7 @@ msgstr "" msgid "No note history available for this device." msgstr "" -#: src/strings.ts:2568 +#: src/strings.ts:2562 msgid "No notebooks selected to move" msgstr "" @@ -4932,7 +4924,7 @@ msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" msgid "No notes to export" msgstr "" -#: src/strings.ts:2923 +#: src/strings.ts:2903 msgid "No notes yet" msgstr "" @@ -4940,7 +4932,7 @@ msgstr "" msgid "No one can view this {type} except you." msgstr "" -#: src/strings.ts:2703 +#: src/strings.ts:2697 msgid "No password" msgstr "" @@ -4952,7 +4944,7 @@ msgstr "" msgid "No references yet" msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3000 +#: src/strings.ts:2980 msgid "No reminders found" msgstr "" @@ -4968,7 +4960,7 @@ msgstr "" msgid "No results found for {query}" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2917 +#: src/strings.ts:2897 msgid "No tags yet" msgstr "" @@ -4984,7 +4976,7 @@ msgstr "" msgid "None" msgstr "" -#: src/strings.ts:2079 +#: src/strings.ts:2073 msgid "Normal mode" msgstr "" @@ -5009,15 +5001,15 @@ msgstr "" msgid "Note copied to clipboard" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2972 +#: src/strings.ts:2952 msgid "Note count" msgstr "" -#: src/strings.ts:2014 +#: src/strings.ts:2008 msgid "Note does not exist" msgstr "" -#: src/strings.ts:2865 +#: src/strings.ts:2859 msgid "Note duplicated" msgstr "" @@ -5041,7 +5033,7 @@ msgstr "" msgid "Note unlocked" msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2999 +#: src/strings.ts:2979 msgid "Note unpublished" msgstr "" @@ -5049,7 +5041,7 @@ msgstr "" msgid "Note version history is local only." msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3045 +#: src/strings.ts:3025 msgid "Note will get deleted on the set date." msgstr "" @@ -5070,7 +5062,7 @@ msgstr "" msgid "Notebook" msgstr "" -#: src/strings.ts:2554 +#: src/strings.ts:2548 msgid "Notebook added" msgstr "" @@ -5088,7 +5080,7 @@ msgstr "" msgid "NOTEBOOKS" msgstr "" -#: src/strings.ts:2316 +#: src/strings.ts:2310 msgid "Notebooks are the best way to organize your notes." msgstr "" @@ -5109,23 +5101,23 @@ msgstr "" msgid "notes imported" msgstr "" -#: src/strings.ts:2628 +#: src/strings.ts:2622 msgid "Notesnook" msgstr "" -#: src/strings.ts:2688 +#: src/strings.ts:2682 msgid "Notesnook Circle" msgstr "" -#: src/strings.ts:2694 +#: src/strings.ts:2688 msgid "Notesnook Circle is exclusively available to subscribed users." msgstr "" -#: src/strings.ts:2142 +#: src/strings.ts:2136 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:2217 +#: src/strings.ts:2211 msgid "Notesnook Importer" msgstr "" @@ -5133,7 +5125,7 @@ msgstr "" msgid "Notesnook Pro" msgstr "" -#: src/strings.ts:2249 +#: src/strings.ts:2243 msgid "" "Notesnook uses the following DNS providers:\n" "\n" @@ -5151,7 +5143,7 @@ msgstr "" msgid "Notesnook will send you an SMS with a 2FA code when prompted" msgstr "" -#: src/strings.ts:2212 +#: src/strings.ts:2206 msgid "Notifications" msgstr "" @@ -5159,7 +5151,7 @@ msgstr "" msgid "Notifications disabled" msgstr "" -#: src/strings.ts:2350 +#: src/strings.ts:2344 msgid "Numbered list" msgstr "" @@ -5183,11 +5175,11 @@ msgstr "<<<<<<< HEAD" msgid "Offline mode" msgstr "" -#: src/strings.ts:2765 +#: src/strings.ts:2759 msgid "OK" msgstr "" -#: src/strings.ts:2302 +#: src/strings.ts:2296 msgid "Okay" msgstr "" @@ -5199,11 +5191,11 @@ msgstr "" msgid "Older version" msgstr "" -#: src/strings.ts:2088 +#: src/strings.ts:2082 msgid "Oldest - newest" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2921 +#: src/strings.ts:2901 msgid "Oldest first" msgstr "" @@ -5211,11 +5203,11 @@ msgstr "" msgid "Once your password is changed, please make sure to save the new account recovery key" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2903 +#: src/strings.ts:2883 msgid "One time purchase" msgstr "" -#: src/strings.ts:2646 +#: src/strings.ts:2640 msgid "One time purchase, no auto-renewal" msgstr "" @@ -5239,7 +5231,7 @@ msgstr "" msgid "Open in browser to manage subscription" msgstr "" -#: src/strings.ts:2400 +#: src/strings.ts:2394 msgid "Open in new tab" msgstr "" @@ -5247,11 +5239,11 @@ msgstr "" msgid "Open issue" msgstr "" -#: src/strings.ts:2340 +#: src/strings.ts:2334 msgid "Open link" msgstr "<<<<<<< HEAD" -#: src/strings.ts:3053 +#: src/strings.ts:3033 msgid "Open location" msgstr "" @@ -5263,7 +5255,7 @@ msgstr "" msgid "Open settings" msgstr "" -#: src/strings.ts:2401 +#: src/strings.ts:2395 msgid "Open source" msgstr "" @@ -5283,7 +5275,7 @@ msgstr "" msgid "Open the two-factor authentication (TOTP) app to view your authentication code." msgstr "" -#: src/strings.ts:2854 +#: src/strings.ts:2848 msgid "Opening local file" msgstr "" @@ -5295,15 +5287,15 @@ msgstr "" msgid "or email us at" msgstr "" -#: src/strings.ts:2087 +#: src/strings.ts:2081 msgid "Order by" msgstr "" -#: src/strings.ts:2295 +#: src/strings.ts:2289 msgid "Order ID" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2963 +#: src/strings.ts:2943 msgid "Organization" msgstr "" @@ -5312,27 +5304,27 @@ msgstr "" msgid "Orphaned" msgstr "" -#: src/strings.ts:2220 +#: src/strings.ts:2214 msgid "Other" msgstr "" -#: src/strings.ts:2421 +#: src/strings.ts:2415 msgid "Outline list" msgstr "" -#: src/strings.ts:2624 +#: src/strings.ts:2618 msgid "Outlines, note linking, and more" msgstr "" -#: src/strings.ts:2424 +#: src/strings.ts:2418 msgid "Paragraph" msgstr "" -#: src/strings.ts:2567 +#: src/strings.ts:2561 msgid "Paragraphs" msgstr "" -#: src/strings.ts:2176 +#: src/strings.ts:2170 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 "" @@ -5340,7 +5332,7 @@ msgstr "" msgid "Partially refunded" msgstr "" -#: src/strings.ts:2478 +#: src/strings.ts:2472 msgid "Passed" msgstr "" @@ -5373,11 +5365,11 @@ msgid "Password protection" msgstr "" #: src/strings.ts:266 -#: src/strings.ts:3004 +#: src/strings.ts:2984 msgid "Password protection (optional)" msgstr "" -#: src/strings.ts:2807 +#: src/strings.ts:2801 msgid "Password required" msgstr "" @@ -5385,27 +5377,27 @@ msgstr "" msgid "Password updated" msgstr "" -#: src/strings.ts:2156 +#: src/strings.ts:2150 msgid "Password/pin" msgstr "" -#: src/strings.ts:2324 +#: src/strings.ts:2318 msgid "Paste" msgstr "" -#: src/strings.ts:2325 +#: src/strings.ts:2319 msgid "Paste and match style" msgstr "" -#: src/strings.ts:2446 +#: src/strings.ts:2440 msgid "Paste embed code here. Only iframes are supported." msgstr "" -#: src/strings.ts:2461 +#: src/strings.ts:2455 msgid "Paste image URL here" msgstr "" -#: src/strings.ts:2326 +#: src/strings.ts:2320 msgid "Paste without formatting" msgstr "" @@ -5413,19 +5405,19 @@ msgstr "" msgid "Pause sync" msgstr "" -#: src/strings.ts:2647 +#: src/strings.ts:2641 msgid "Pay once and use for 5 years" msgstr "" -#: src/strings.ts:2839 +#: src/strings.ts:2833 msgid "Payload data" msgstr "" -#: src/strings.ts:2274 +#: src/strings.ts:2268 msgid "Payment method" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2906 +#: src/strings.ts:2886 msgid "Payment summary" msgstr "" @@ -5433,7 +5425,7 @@ msgstr "" msgid "PDF is password protected" msgstr "" -#: src/strings.ts:2874 +#: src/strings.ts:2868 msgid "Permission required to save QR-Code to Gallery" msgstr "" @@ -5465,11 +5457,11 @@ msgstr "" msgid "Pinned" msgstr "" -#: src/strings.ts:2668 +#: src/strings.ts:2662 msgid "Plan limits" msgstr "" -#: src/strings.ts:2628 +#: src/strings.ts:2622 msgid "Plans" msgstr "" @@ -5478,7 +5470,7 @@ msgid "Please confirm your identity by entering a recovery code." msgstr "" #: src/strings.ts:1030 -#: src/strings.ts:2308 +#: src/strings.ts:2302 msgid "Please confirm your identity by entering the authentication code from your authenticator app." msgstr "" @@ -5495,20 +5487,20 @@ msgstr "" msgid "Please download a backup of your data as your account will be cleared before recovery." msgstr "" -#: src/strings.ts:2072 +#: src/strings.ts:2066 msgid "Please enable automatic backups to avoid losing important data." msgstr "" -#: src/strings.ts:2750 +#: src/strings.ts:2744 msgid "Please enter a key name" msgstr "" -#: src/strings.ts:1577 -#: src/strings.ts:2809 +#: src/strings.ts:1572 +#: src/strings.ts:2803 msgid "Please enter a valid email address" msgstr "" -#: src/strings.ts:2019 +#: src/strings.ts:2013 msgid "Please enter a valid hex color (e.g. #ffffff)" msgstr "" @@ -5524,7 +5516,7 @@ msgstr "" msgid "Please enter password of this backup file" msgstr "" -#: src/strings.ts:2319 +#: src/strings.ts:2313 msgid "Please enter the password to decrypt and restore this backup." msgstr "" @@ -5540,7 +5532,7 @@ msgstr "" msgid "Please enter the password to view this version" msgstr "" -#: src/strings.ts:2771 +#: src/strings.ts:2765 msgid "Please enter your account password to view this API key." msgstr "" @@ -5556,7 +5548,7 @@ msgstr "" msgid "Please enter your password to continue" msgstr "" -#: src/strings.ts:1998 +#: src/strings.ts:1992 msgid "Please enter your vault password to continue" msgstr "" @@ -5568,7 +5560,7 @@ msgstr "" msgid "Please grant notifications permission to add new reminders." msgstr "" -#: src/strings.ts:2824 +#: src/strings.ts:2818 msgid "Please login to download attachments." msgstr "" @@ -5580,11 +5572,11 @@ msgstr "" msgid "Please note that we will respond to your issue on the given link. We recommend that you save it." msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2934 +#: src/strings.ts:2914 msgid "Please provide a valid multi factor authentication code." msgstr "" -#: src/strings.ts:2932 +#: src/strings.ts:2912 msgid "Please provide a valid multi factor authentication recovery code." msgstr "" @@ -5600,7 +5592,7 @@ msgstr "" msgid "please send us an email from your registered email address" msgstr "" -#: src/strings.ts:2467 +#: src/strings.ts:2461 msgid "Please set a table size" msgstr "" @@ -5608,7 +5600,7 @@ msgstr "" msgid "Please set title of the reminder" msgstr "" -#: src/strings.ts:2052 +#: src/strings.ts:2046 msgid "Please try again" msgstr "" @@ -5653,7 +5645,7 @@ msgstr "" msgid "Please wait while we log you out." msgstr "" -#: src/strings.ts:1980 +#: src/strings.ts:1974 msgid "Please wait while we reset your account password." msgstr "" @@ -5686,7 +5678,7 @@ msgstr "<<<<<<< HEAD" msgid "Preferences" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2984 +#: src/strings.ts:2964 msgid "Preparing logs.." msgstr "" @@ -5702,15 +5694,15 @@ msgstr "" msgid "Presets" msgstr "" -#: src/strings.ts:2194 +#: src/strings.ts:2188 msgid "Pressing \"โ€”\" will hide the app in your system tray." msgstr "" -#: src/strings.ts:2197 +#: src/strings.ts:2191 msgid "Pressing \"X\" will hide the app in your system tray." msgstr "" -#: src/strings.ts:2245 +#: src/strings.ts:2239 msgid "Prevent note title from appearing in tab/window title." msgstr "<<<<<<< HEAD" @@ -5718,7 +5710,7 @@ msgstr "<<<<<<< HEAD" msgid "Prevent the screen from turning off while the editor is focused." msgstr "" -#: src/strings.ts:2388 +#: src/strings.ts:2382 msgid "Preview attachment" msgstr "" @@ -5726,19 +5718,19 @@ msgstr "" msgid "Preview not available, content is encrypted." msgstr "" -#: src/strings.ts:2455 +#: src/strings.ts:2449 msgid "Previous match" msgstr "" -#: src/strings.ts:2520 +#: src/strings.ts:2514 msgid "Previous tab" msgstr "" -#: src/strings.ts:2099 +#: src/strings.ts:2093 msgid "Print" msgstr "" -#: src/strings.ts:2219 +#: src/strings.ts:2213 msgid "Privacy" msgstr "" @@ -5762,7 +5754,7 @@ msgstr "" msgid "Privacy policy" msgstr "" -#: src/strings.ts:2665 +#: src/strings.ts:2659 msgid "Privacy Policy." msgstr "" @@ -5774,15 +5766,15 @@ msgstr "" msgid "private analytics and bug reports." msgstr "" -#: src/strings.ts:2792 +#: src/strings.ts:2786 msgid "Private key" msgstr "" -#: src/strings.ts:2806 +#: src/strings.ts:2800 msgid "Private key is passphrase-protected. Please provide the decrypted key or a key without a passphrase." msgstr "" -#: src/strings.ts:2826 +#: src/strings.ts:2820 msgid "Private key required" msgstr "" @@ -5794,15 +5786,15 @@ msgstr "" msgid "Pro" msgstr "" -#: src/strings.ts:2545 +#: src/strings.ts:2539 msgid "Pro plan" msgstr "" -#: src/strings.ts:2112 +#: src/strings.ts:2106 msgid "Processing {collection}..." msgstr "" -#: src/strings.ts:2111 +#: src/strings.ts:2105 msgid "Processing..." msgstr "" @@ -5810,11 +5802,11 @@ msgstr "" msgid "Productivity" msgstr "" -#: src/strings.ts:2208 +#: src/strings.ts:2202 msgid "Profile" msgstr "" -#: src/strings.ts:2020 +#: src/strings.ts:2014 msgid "Profile updated" msgstr "" @@ -5822,11 +5814,11 @@ msgstr "" msgid "Properties" msgstr "" -#: src/strings.ts:2834 +#: src/strings.ts:2828 msgid "Protect incoming messages so only you can read them" msgstr "" -#: src/strings.ts:2622 +#: src/strings.ts:2616 msgid "Protect notes with app-level security" msgstr "" @@ -5834,19 +5826,19 @@ msgstr "" msgid "Protect your notes" msgstr "" -#: src/strings.ts:2831 +#: src/strings.ts:2825 msgid "Provide your own keys" msgstr "" -#: src/strings.ts:2256 +#: src/strings.ts:2250 msgid "Proxy" msgstr "" -#: src/strings.ts:2791 +#: src/strings.ts:2785 msgid "Public key" msgstr "" -#: src/strings.ts:2825 +#: src/strings.ts:2819 msgid "Public key required" msgstr "" @@ -5858,7 +5850,7 @@ msgstr "" msgid "Publish note" msgstr "" -#: src/strings.ts:2704 +#: src/strings.ts:2698 msgid "Publish to the web" msgstr "" @@ -5886,7 +5878,7 @@ msgstr "" msgid "Published note link will be automatically deleted once it is viewed by someone." msgstr "" -#: src/strings.ts:2656 +#: src/strings.ts:2650 msgid "Purchase" msgstr "" @@ -5902,7 +5894,7 @@ msgstr "" msgid "Quick note widgets" msgstr "" -#: src/strings.ts:2516 +#: src/strings.ts:2510 msgid "Quick open" msgstr "" @@ -5910,7 +5902,7 @@ msgstr "" msgid "Quickly create a note from the notification" msgstr "" -#: src/strings.ts:2408 +#: src/strings.ts:2402 msgid "Quote" msgstr "" @@ -5950,7 +5942,7 @@ msgstr "" msgid "Reading backup file..." msgstr "" -#: src/strings.ts:2630 +#: src/strings.ts:2624 msgid "Ready to take the next step on your private note taking journey?" msgstr "" @@ -5958,7 +5950,7 @@ msgstr "" msgid "Real-time sync" msgstr "" -#: src/strings.ts:2298 +#: src/strings.ts:2292 msgid "Receipt" msgstr "" @@ -5970,19 +5962,19 @@ msgstr "" msgid "Recent history" msgstr "" -#: src/strings.ts:2531 +#: src/strings.ts:2525 msgid "Recents" msgstr "" -#: src/strings.ts:2474 +#: src/strings.ts:2468 msgid "Recheck all" msgstr "" -#: src/strings.ts:2066 +#: src/strings.ts:2060 msgid "Rechecking failed" msgstr "" -#: src/strings.ts:2499 +#: src/strings.ts:2493 msgid "Recipes" msgstr "" @@ -5990,7 +5982,7 @@ msgstr "" msgid "Recommended" msgstr "" -#: src/strings.ts:2632 +#: src/strings.ts:2626 msgid "Recommended by Privacy Guides" msgstr "" @@ -5998,7 +5990,7 @@ msgstr "" msgid "Recover your account" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2930 +#: src/strings.ts:2910 msgid "Recovery code" msgstr "" @@ -6034,23 +6026,23 @@ msgstr "" msgid "Recovery key text file saved" msgstr "" -#: src/strings.ts:1981 +#: src/strings.ts:1975 msgid "Recovery successful!" msgstr "" -#: src/strings.ts:2511 +#: src/strings.ts:2505 msgid "Redeem" msgstr "" -#: src/strings.ts:2687 +#: src/strings.ts:2681 msgid "Redeem code" msgstr "" -#: src/strings.ts:2508 +#: src/strings.ts:2502 msgid "Redeem gift code" msgstr "" -#: src/strings.ts:2510 +#: src/strings.ts:2504 msgid "Redeeming gift code" msgstr "" @@ -6070,7 +6062,7 @@ msgstr "" msgid "Regenerate" msgstr "" -#: src/strings.ts:2162 +#: src/strings.ts:2156 msgid "Register" msgstr "" @@ -6078,7 +6070,7 @@ msgstr "" msgid "Release notes" msgstr "" -#: src/strings.ts:2533 +#: src/strings.ts:2527 msgid "Release track" msgstr "" @@ -6094,7 +6086,7 @@ msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" msgid "Relogin to your account" msgstr "<<<<<<< HEAD" -#: src/strings.ts:3039 +#: src/strings.ts:3019 msgid "Remains active throughout the day." msgstr "" @@ -6102,8 +6094,8 @@ msgstr "" msgid "Remembered your password?" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2912 -#: src/strings.ts:2937 +#: src/strings.ts:2892 +#: src/strings.ts:2917 msgid "Remind before your trial ends" msgstr "" @@ -6127,7 +6119,7 @@ msgstr "" msgid "Reminder" msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3017 +#: src/strings.ts:2997 msgid "Reminder frequency" msgstr "" @@ -6153,7 +6145,7 @@ msgstr "" 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:2018 +#: src/strings.ts:2012 msgid "Reminders will not be active on this device as it does not support notifications." msgstr "" @@ -6185,7 +6177,7 @@ msgstr "" msgid "Remove as default" msgstr "" -#: src/strings.ts:2392 +#: src/strings.ts:2386 msgid "Remove attachment" msgstr "" @@ -6197,7 +6189,7 @@ msgstr "" msgid "Remove from notebook" msgstr "" -#: src/strings.ts:2532 +#: src/strings.ts:2526 msgid "Remove from recents" msgstr "" @@ -6205,7 +6197,7 @@ msgstr "" msgid "Remove full name" msgstr "" -#: src/strings.ts:2339 +#: src/strings.ts:2333 msgid "Remove link" msgstr "" @@ -6237,15 +6229,15 @@ msgstr "" msgid "Repeats daily at {date}" msgstr "" -#: src/strings.ts:2452 +#: src/strings.ts:2446 msgid "Replace" msgstr "" -#: src/strings.ts:2453 +#: src/strings.ts:2447 msgid "Replace all" msgstr "" -#: src/strings.ts:2239 +#: src/strings.ts:2233 msgid "Report" msgstr "" @@ -6278,7 +6270,7 @@ msgstr "" msgid "Reset account password" msgstr "" -#: src/strings.ts:2559 +#: src/strings.ts:2553 msgid "Reset home" msgstr "" @@ -6290,7 +6282,7 @@ msgstr "" msgid "Reset server urls" msgstr "" -#: src/strings.ts:2095 +#: src/strings.ts:2089 msgid "Reset sidebar" msgstr "" @@ -6302,11 +6294,11 @@ msgstr "" msgid "Reset toolbar" msgstr "" -#: src/strings.ts:1979 -msgid "Resetting account password ({progress})" +#: src/strings.ts:1973 +msgid "Resetting account password..." msgstr "" -#: src/strings.ts:2054 +#: src/strings.ts:2048 msgid "Restart now" msgstr "" @@ -6326,7 +6318,7 @@ msgstr "" msgid "Restore" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2979 +#: src/strings.ts:2959 msgid "Restore actions" msgstr "" @@ -6334,7 +6326,7 @@ msgstr "" msgid "Restore backup" msgstr "" -#: src/strings.ts:2481 +#: src/strings.ts:2475 msgid "Restore backup?" msgstr "" @@ -6378,7 +6370,7 @@ msgstr "" msgid "Resubscribe to Pro" msgstr "" -#: src/strings.ts:2762 +#: src/strings.ts:2756 msgid "Retry" msgstr "" @@ -6386,11 +6378,11 @@ msgstr "" msgid "Reupload" msgstr "" -#: src/strings.ts:2085 +#: src/strings.ts:2079 msgid "Reveal in list" msgstr "" -#: src/strings.ts:2670 +#: src/strings.ts:2664 msgid "Review your current limits and unlock more with premium" msgstr "" @@ -6402,7 +6394,7 @@ msgstr "" msgid "Revoke biometric unlocking" msgstr "" -#: src/strings.ts:2776 +#: src/strings.ts:2770 msgid "Revoke Inbox API Key - {name}" msgstr "" @@ -6414,19 +6406,19 @@ msgstr "" msgid "Roadmap" msgstr "" -#: src/strings.ts:2113 +#: src/strings.ts:2107 msgid "Root" msgstr "" -#: src/strings.ts:2092 +#: src/strings.ts:2086 msgid "Rotate left" msgstr "" -#: src/strings.ts:2093 +#: src/strings.ts:2087 msgid "Rotate right" msgstr "" -#: src/strings.ts:2362 +#: src/strings.ts:2356 msgid "Row properties" msgstr "" @@ -6434,7 +6426,7 @@ msgstr "" msgid "Run file check" msgstr "" -#: src/strings.ts:2134 +#: src/strings.ts:2128 msgid "Safe & encrypted notes" msgstr "" @@ -6466,7 +6458,7 @@ msgstr "" msgid "Save and continue" msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2998 +#: src/strings.ts:2978 msgid "Save changes" msgstr "" @@ -6506,15 +6498,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:2471 +#: src/strings.ts:2465 msgid "Saved" msgstr "" -#: src/strings.ts:2472 +#: src/strings.ts:2466 msgid "Saving" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2988 +#: src/strings.ts:2968 msgid "Saving logs to your storage..." msgstr "" @@ -6534,15 +6526,15 @@ msgstr "" msgid "Scan the QR code with your authenticator app" msgstr "" -#: src/strings.ts:2497 +#: src/strings.ts:2491 msgid "School work" msgstr "" -#: src/strings.ts:2570 +#: src/strings.ts:2564 msgid "Scroll to bottom" msgstr "" -#: src/strings.ts:2569 +#: src/strings.ts:2563 msgid "Scroll to top" msgstr "" @@ -6559,7 +6551,7 @@ msgstr "" msgid "Search a note to link to" msgstr "" -#: src/strings.ts:2513 +#: src/strings.ts:2507 msgid "Search for notes, notebooks, and tags..." msgstr "" @@ -6615,7 +6607,7 @@ msgstr "" msgid "Search in Trash" msgstr "" -#: src/strings.ts:2434 +#: src/strings.ts:2428 msgid "Search languages" msgstr "" @@ -6639,7 +6631,7 @@ msgstr "" msgid "sec" msgstr "" -#: src/strings.ts:2620 +#: src/strings.ts:2614 msgid "Secure backup space for files and images." msgstr "<<<<<<< HEAD<<<<<<< HEAD" @@ -6647,19 +6639,19 @@ msgstr "<<<<<<< HEAD<<<<<<< HEAD" msgid "Secure your note" msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2978 +#: src/strings.ts:2958 msgid "Security" msgstr "" -#: src/strings.ts:2218 +#: src/strings.ts:2212 msgid "Security & privacy" msgstr "" -#: src/strings.ts:2158 +#: src/strings.ts:2152 msgid "Security key" msgstr "" -#: src/strings.ts:2053 +#: src/strings.ts:2047 msgid "Security key successfully registered." msgstr "" @@ -6679,11 +6671,11 @@ msgstr "" msgid "Select a backup file from your device to restore backup" msgstr "" -#: src/strings.ts:2564 +#: src/strings.ts:2558 msgid "Select a notebook to move this notebook into, or unselect to move it to the root level." msgstr "" -#: src/strings.ts:2173 +#: src/strings.ts:2167 msgid "Select a theme" msgstr "" @@ -6703,15 +6695,15 @@ msgstr "" msgid "Select date" msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3031 +#: src/strings.ts:3011 msgid "Select date & time" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3048 +#: src/strings.ts:3028 msgid "Select date and time to change the created date" msgstr "" -#: src/strings.ts:3035 +#: src/strings.ts:3015 msgid "Select Dates" msgstr "" @@ -6719,7 +6711,7 @@ msgstr "" msgid "Select day of the week to repeat the reminder." msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3027 +#: src/strings.ts:3007 msgid "Select Days" msgstr "" @@ -6739,7 +6731,7 @@ msgstr "" msgid "Select how you would like to recieve the code" msgstr "" -#: src/strings.ts:2429 +#: src/strings.ts:2423 msgid "Select language" msgstr "" @@ -6751,7 +6743,7 @@ msgstr "" msgid "Select notebooks you want to add note(s) to." msgstr "" -#: src/strings.ts:2552 +#: src/strings.ts:2546 msgid "Select notes to link to \"{title}\"" msgstr "" @@ -6759,19 +6751,19 @@ msgstr "" msgid "Select nth day of the month to repeat the reminder." msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3014 +#: src/strings.ts:2994 msgid "Select paragraphs" msgstr "" -#: src/strings.ts:2897 -msgid "Select Plan" +#: src/strings.ts:2877 +msgid "Select plan" msgstr "" #: src/strings.ts:1882 msgid "Select profile picture" msgstr "" -#: src/strings.ts:2558 +#: src/strings.ts:2552 msgid "Select the default sidebar tab" msgstr "" @@ -6779,23 +6771,23 @@ msgstr "" msgid "Select the folder that includes your backup files to list them here." msgstr "" -#: src/strings.ts:2205 +#: src/strings.ts:2199 msgid "Select the languages the spell checker should check in." msgstr "" -#: src/strings.ts:2534 +#: src/strings.ts:2528 msgid "Select the release track for Notesnook." msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3034 +#: src/strings.ts:3014 msgid "Select time" msgstr "" -#: src/strings.ts:3036 +#: src/strings.ts:3016 msgid "Select Time" msgstr "" -#: src/strings.ts:3008 +#: src/strings.ts:2988 msgid "Selected note" msgstr "" @@ -6807,7 +6799,7 @@ msgstr "" msgid "Self destruct" msgstr "" -#: src/strings.ts:2240 +#: src/strings.ts:2234 msgid "Send" msgstr "" @@ -6859,11 +6851,11 @@ msgstr "" msgid "Server with host {host} not found." msgstr "" -#: src/strings.ts:2213 +#: src/strings.ts:2207 msgid "Servers" msgstr "" -#: src/strings.ts:2214 +#: src/strings.ts:2208 msgid "Servers configuration" msgstr "" @@ -6871,7 +6863,7 @@ msgstr "" msgid "Session expired" msgstr "" -#: src/strings.ts:2266 +#: src/strings.ts:2260 msgid "Sessions" msgstr "" @@ -6887,7 +6879,7 @@ msgstr "" msgid "Set as default" msgstr "" -#: src/strings.ts:2556 +#: src/strings.ts:2550 msgid "Set as home" msgstr "" @@ -6899,7 +6891,7 @@ msgstr "" msgid "Set automatic trash cleanup interval from Settings > Behaviour > Clean trash interval." msgstr "" -#: src/strings.ts:2721 +#: src/strings.ts:2715 msgid "Set expiry" msgstr "" @@ -6927,7 +6919,7 @@ msgstr "" msgid "Set your name" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2928 +#: src/strings.ts:2908 msgid "Setting up your account..." msgstr "" @@ -6949,7 +6941,7 @@ msgstr "" msgid "Setup a pin to lock the app" msgstr "" -#: src/strings.ts:2258 +#: src/strings.ts:2252 msgid "" "Setup an HTTP/HTTPS/SOCKS proxy.\n" "\n" @@ -6969,7 +6961,7 @@ msgstr "" msgid "Setup app lock pin" msgstr "" -#: src/strings.ts:2875 +#: src/strings.ts:2869 msgid "Setup inbox keys" msgstr "" @@ -7009,7 +7001,7 @@ msgstr "" msgid "Share Notesnook with friends!" msgstr "" -#: src/strings.ts:2733 +#: src/strings.ts:2727 msgid "Share things to Notesnook from anywhere using the Inbox API" msgstr "" @@ -7017,11 +7009,11 @@ msgstr "" msgid "Share to cloud" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2995 +#: src/strings.ts:2975 msgid "Share ZIP" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3041 +#: src/strings.ts:3021 msgid "Short Detail" msgstr "" @@ -7033,7 +7025,7 @@ msgstr "" msgid "Shortcut" msgstr "" -#: src/strings.ts:2065 +#: src/strings.ts:2059 msgid "Shortcut removed" msgstr "" @@ -7045,7 +7037,7 @@ msgstr "" msgid "Shortcuts" msgstr "" -#: src/strings.ts:2841 +#: src/strings.ts:2835 msgid "Show" msgstr "" @@ -7065,11 +7057,11 @@ msgstr "" msgid "Silent" msgstr "" -#: src/strings.ts:2403 +#: src/strings.ts:2397 msgid "Sink list item" msgstr "" -#: src/strings.ts:2106 +#: src/strings.ts:2100 msgid "Size" msgstr "" @@ -7093,11 +7085,11 @@ msgstr "" msgid "Something went wrong" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2994 +#: src/strings.ts:2974 msgid "Something went wrong while preparing your debug logs. This can happen if no storage location was selected." msgstr "" -#: src/strings.ts:2090 +#: src/strings.ts:2084 msgid "Sort" msgstr "" @@ -7105,31 +7097,31 @@ msgstr "" msgid "Sort by" msgstr "" -#: src/strings.ts:2224 +#: src/strings.ts:2218 msgid "Source code" msgstr "" -#: src/strings.ts:2430 +#: src/strings.ts:2424 msgid "Spaces" msgstr "" -#: src/strings.ts:2680 +#: src/strings.ts:2674 msgid "Special Offer" msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3012 +#: src/strings.ts:2992 msgid "Specify paragraphs" msgstr "" -#: src/strings.ts:2201 +#: src/strings.ts:2195 msgid "Spell check" msgstr "" -#: src/strings.ts:2369 +#: src/strings.ts:2363 msgid "Split cells" msgstr "" -#: src/strings.ts:2535 +#: src/strings.ts:2529 msgid "Stable" msgstr "" @@ -7149,7 +7141,7 @@ msgstr "" msgid "Start importing now" msgstr "" -#: src/strings.ts:2189 +#: src/strings.ts:2183 msgid "Start minimized" msgstr "" @@ -7173,19 +7165,19 @@ msgstr "" msgid "Start writing your note..." msgstr "" -#: src/strings.ts:2297 +#: src/strings.ts:2291 msgid "Status" msgstr "" -#: src/strings.ts:2548 +#: src/strings.ts:2542 msgid "Storage" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2960 +#: src/strings.ts:2940 msgid "Storage & cleanup" msgstr "" -#: src/strings.ts:2975 +#: src/strings.ts:2955 msgid "Storage & location" msgstr "" @@ -7193,15 +7185,15 @@ msgstr "" msgid "Streaming not supported" msgstr "" -#: src/strings.ts:2335 +#: src/strings.ts:2329 msgid "Strikethrough" msgstr "" -#: src/strings.ts:2299 +#: src/strings.ts:2293 msgid "Subgroup 1" msgstr "" -#: src/strings.ts:2059 +#: src/strings.ts:2053 msgid "Subgroup added" msgstr "" @@ -7209,11 +7201,11 @@ msgstr "" msgid "Submit" msgstr "" -#: src/strings.ts:2657 +#: src/strings.ts:2651 msgid "Subscribe" msgstr "" -#: src/strings.ts:2658 +#: src/strings.ts:2652 msgid "Subscribe & Start Your Free Trial" msgstr "" @@ -7241,7 +7233,7 @@ msgstr "" msgid "Subscribed using gift card" msgstr "" -#: src/strings.ts:2346 +#: src/strings.ts:2340 msgid "Subscript" msgstr "" @@ -7257,7 +7249,7 @@ msgstr "" msgid "Subscription not activated?" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2954 +#: src/strings.ts:2934 msgid "Subscription required" msgstr "" @@ -7269,7 +7261,7 @@ msgstr "" msgid "Sunday" msgstr "" -#: src/strings.ts:2347 +#: src/strings.ts:2341 msgid "Superscript" msgstr "" @@ -7277,7 +7269,7 @@ msgstr "" msgid "Switch to search/replace mode" msgstr "" -#: src/strings.ts:2210 +#: src/strings.ts:2204 msgid "Sync" msgstr "" @@ -7329,7 +7321,7 @@ msgstr "" msgid "Syncing your notes" msgstr "" -#: src/strings.ts:2415 +#: src/strings.ts:2409 msgid "Table" msgstr "" @@ -7337,11 +7329,11 @@ msgstr "" msgid "Table of contents" msgstr "" -#: src/strings.ts:2360 +#: src/strings.ts:2354 msgid "Table settings" msgstr "" -#: src/strings.ts:2609 +#: src/strings.ts:2603 msgid "tables, outlines, block level note linking" msgstr "" @@ -7378,7 +7370,7 @@ msgstr "" msgid "Take a partial backup of your data that does not include attachments" msgstr "" -#: src/strings.ts:2414 +#: src/strings.ts:2408 msgid "Take a photo using camera" msgstr "" @@ -7434,11 +7426,11 @@ msgstr "" msgid "Tap twice to confirm you have saved the recovery key." msgstr "" -#: src/strings.ts:2420 +#: src/strings.ts:2414 msgid "Task list" msgstr "" -#: src/strings.ts:2490 +#: src/strings.ts:2484 msgid "Tasks" msgstr "" @@ -7465,7 +7457,7 @@ msgstr "" msgid "Terms of service" msgstr "" -#: src/strings.ts:2663 +#: src/strings.ts:2657 msgid "Terms of Service" msgstr "" @@ -7481,15 +7473,15 @@ msgstr "" msgid "Test connection before changing server urls" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2899 +#: src/strings.ts:2879 msgid "Testimonials" msgstr "" -#: src/strings.ts:2358 +#: src/strings.ts:2352 msgid "Text color" msgstr "" -#: src/strings.ts:2356 +#: src/strings.ts:2350 msgid "Text direction" msgstr "" @@ -7497,15 +7489,15 @@ msgstr "" msgid "Thank you for choosing end-to-end encrypted note taking. Now you can sync your notes to unlimited devices." msgstr "" -#: src/strings.ts:2115 +#: src/strings.ts:2109 msgid "Thank you for reporting!" msgstr "" -#: src/strings.ts:2636 +#: src/strings.ts:2630 msgid "Thank you for subscribing" msgstr "" -#: src/strings.ts:2675 +#: src/strings.ts:2669 msgid "Thank you for the purchase" msgstr "" @@ -7513,11 +7505,11 @@ msgstr "" msgid "Thank you for updating Notesnook! We will be applying some minor changes for a better note taking experience." msgstr "" -#: src/strings.ts:2116 +#: src/strings.ts:2110 msgid "Thank you for your feedback!" msgstr "" -#: src/strings.ts:2150 +#: src/strings.ts:2144 msgid "Thank you. You are the proof that privacy always comes first." msgstr "" @@ -7525,23 +7517,23 @@ msgstr "" msgid "The {title} at {url} is not compatible with this client." msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2991 +#: src/strings.ts:2971 msgid "The encrypted archive is available in your default local storage structure and can be safely sent to the Notesnook customer care team." msgstr "" -#: src/strings.ts:2720 +#: src/strings.ts:2714 msgid "The incoming note could not be unlocked with the provided password. Enter the correct password for the incoming note" msgstr "" -#: src/strings.ts:2882 +#: src/strings.ts:2876 msgid "The password for decrypting the Colornote backup file." msgstr "" -#: src/strings.ts:2157 +#: src/strings.ts:2151 msgid "The password/pin for unlocking the app." msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3029 +#: src/strings.ts:3009 msgid "The reminder will occur on the selected day." msgstr "" @@ -7557,7 +7549,7 @@ msgstr "" msgid "The reminder will start on {date} at {time}." msgstr "" -#: src/strings.ts:2160 +#: src/strings.ts:2154 msgid "The security key for unlocking the app. This is the most secure method." msgstr "" @@ -7577,11 +7569,11 @@ msgstr "" msgid "There are no new updates at the moment." msgstr "" -#: src/strings.ts:2313 +#: src/strings.ts:2307 msgid "These items will be **kept in your Trash for {interval} days** after which they will be permanently deleted." msgstr "" -#: src/strings.ts:1985 +#: src/strings.ts:1979 msgid "This action is IRREVERSIBLE." msgstr "" @@ -7613,19 +7605,19 @@ msgstr "" msgid "This error usually means the search index is corrupted." msgstr "" -#: src/strings.ts:2802 +#: src/strings.ts:2796 msgid "This feature is not available on this plan." msgstr "" -#: src/strings.ts:1999 +#: src/strings.ts:1993 msgid "This image cannot be previewed" msgstr "" -#: src/strings.ts:2659 +#: src/strings.ts:2653 msgid "This is a one time purchase, no subscription." msgstr "" -#: src/strings.ts:2110 +#: src/strings.ts:2104 msgid "This may take a while" msgstr "" @@ -7634,7 +7626,7 @@ msgstr "" msgid "This must only be used for troubleshooting. Using it regularly for sync is not recommended and will lead to unexpected data loss and other issues. If you are having persistent issues with sync, please report them to us at support@streetwriters.co." msgstr "" -#: src/strings.ts:2726 +#: src/strings.ts:2720 msgid "This note is empty" msgstr "" @@ -7650,7 +7642,7 @@ msgstr "" msgid "This note will be published to a public URL." msgstr "" -#: src/strings.ts:2166 +#: src/strings.ts:2160 msgid "This username will be used to distinguish between different credentials in your security key. Make sure it is unique." msgstr "" @@ -7662,11 +7654,11 @@ msgstr "" msgid "This will clear all data stored on THIS DEVICE. Make sure to run sync before logging out." msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2946 +#: src/strings.ts:2926 msgid "This will overwrite all data on the server with the data from this device." msgstr "" -#: src/strings.ts:2944 +#: src/strings.ts:2924 msgid "This will overwrite all data on this device with the data from the server." msgstr "" @@ -7686,7 +7678,7 @@ msgstr "" msgid "Time format" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2971 +#: src/strings.ts:2951 msgid "Timestamp" msgstr "" @@ -7703,11 +7695,11 @@ msgstr "" msgid "Title format" msgstr "" -#: src/strings.ts:2815 +#: src/strings.ts:2809 msgid "Title is required" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2957 +#: src/strings.ts:2937 msgid "to claim the promotion directly." msgstr "" @@ -7719,23 +7711,23 @@ msgstr "" msgid "Toggle dark/light mode" msgstr "" -#: src/strings.ts:2538 +#: src/strings.ts:2532 msgid "Toggle focus mode" msgstr "" -#: src/strings.ts:2427 +#: src/strings.ts:2421 msgid "Toggle indentation mode" msgstr "" -#: src/strings.ts:2456 +#: src/strings.ts:2450 msgid "Toggle replace" msgstr "" -#: src/strings.ts:2527 +#: src/strings.ts:2521 msgid "Toggle theme" msgstr "" -#: src/strings.ts:2207 +#: src/strings.ts:2201 msgid "Toolbar" msgstr "" @@ -7772,16 +7764,15 @@ msgstr "" msgid "Troubleshooting" msgstr "" -#: src/strings.ts:2690 +#: src/strings.ts:2684 msgid "Trusted partners who share our commitment to privacy, transparency, and user freedom." msgstr "" -#: src/strings.ts:2626 +#: src/strings.ts:2620 msgid "Try {plan} for free" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:1408 -#: src/strings.ts:2996 +#: src/strings.ts:2976 msgid "Try again" msgstr "" @@ -7793,7 +7784,7 @@ msgstr "" msgid "Try free for 14 days" msgstr "" -#: src/strings.ts:2602 +#: src/strings.ts:2596 msgid "Try it for free" msgstr "" @@ -7805,7 +7796,7 @@ msgstr "" msgid "Tuesday" msgstr "" -#: src/strings.ts:3056 +#: src/strings.ts:3036 msgid "Turn off automatic syncing. Changes from this client will be synced only when you run sync manually." msgstr "" @@ -7818,7 +7809,7 @@ msgid "Turn on reminder" msgstr "" #: src/strings.ts:1145 -#: src/strings.ts:3062 +#: src/strings.ts:3042 msgid "Turns off syncing completely on this device. Any changes made will remain local only and new changes from your other devices won't sync to this device." msgstr "" @@ -7842,7 +7833,7 @@ msgstr "" msgid "Type a keyword" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2965 +#: src/strings.ts:2945 msgid "Typography" msgstr "" @@ -7854,11 +7845,11 @@ msgstr "" msgid "Unable to send 2FA code" msgstr "" -#: src/strings.ts:2562 +#: src/strings.ts:2556 msgid "Unarchive" msgstr "" -#: src/strings.ts:2334 +#: src/strings.ts:2328 msgid "Underline" msgstr "" @@ -7870,11 +7861,11 @@ msgstr "" msgid "Unfavorite" msgstr "" -#: src/strings.ts:2671 +#: src/strings.ts:2665 msgid "Unlimited" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2908 +#: src/strings.ts:2888 msgid "Unlimited notes and attachments" msgstr "" @@ -7890,7 +7881,7 @@ msgstr "" msgid "Unlock" msgstr "" -#: src/strings.ts:2718 +#: src/strings.ts:2712 msgid "Unlock incoming note" msgstr "" @@ -7907,11 +7898,11 @@ msgstr "" msgid "Unlock note to delete it" msgstr "" -#: src/strings.ts:2729 +#: src/strings.ts:2723 msgid "Unlock note to merge conflicts" msgstr "" -#: src/strings.ts:2618 +#: src/strings.ts:2612 msgid "Unlock premium features and extra storage" msgstr "" @@ -7919,7 +7910,7 @@ msgstr "" msgid "Unlock the app with biometric authentication. This requires biometrics to be enabled on your device." msgstr "" -#: src/strings.ts:1997 +#: src/strings.ts:1991 msgid "Unlock vault" msgstr "" @@ -7959,16 +7950,16 @@ msgstr "" msgid "Unpublish notes to delete them" msgstr "" -#: src/strings.ts:2161 +#: src/strings.ts:2155 msgid "Unregister" msgstr "" -#: src/strings.ts:2722 +#: src/strings.ts:2716 msgid "Unset expiry" msgstr "" #: src/strings.ts:210 -#: src/strings.ts:2436 +#: src/strings.ts:2430 msgid "Untitled" msgstr "" @@ -7984,31 +7975,31 @@ msgstr "" msgid "Update now" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2962 +#: src/strings.ts:2942 msgid "Updates" msgstr "" -#: src/strings.ts:2576 +#: src/strings.ts:2570 msgid "Upgrade" msgstr "" -#: src/strings.ts:1983 +#: src/strings.ts:1977 msgid "Upgrade now" msgstr "" -#: src/strings.ts:2575 +#: src/strings.ts:2569 msgid "Upgrade plan" msgstr "" -#: src/strings.ts:2601 +#: src/strings.ts:2595 msgid "Upgrade plan to {plan} to use this feature." msgstr "" -#: src/strings.ts:2004 +#: src/strings.ts:1998 msgid "Upgrade to Notesnook Pro to add colors." msgstr "" -#: src/strings.ts:2005 +#: src/strings.ts:1999 msgid "Upgrade to Notesnook Pro to create more tags." msgstr "" @@ -8016,7 +8007,7 @@ msgstr "" msgid "Upgrade to Pro" msgstr "" -#: src/strings.ts:2686 +#: src/strings.ts:2680 msgid "Upgrade to redeem" msgstr "" @@ -8024,7 +8015,7 @@ msgstr "" msgid "Upload" msgstr "" -#: src/strings.ts:2413 +#: src/strings.ts:2407 msgid "Upload from disk" msgstr "" @@ -8050,7 +8041,7 @@ msgstr "" msgid "Urgent" msgstr "" -#: src/strings.ts:2463 +#: src/strings.ts:2457 msgid "URL" msgstr "" @@ -8074,7 +8065,7 @@ msgstr "" msgid "Use account password" msgstr "" -#: src/strings.ts:2608 +#: src/strings.ts:2602 msgid "Use advanced note taking features like" msgstr "" @@ -8082,7 +8073,7 @@ msgstr "" msgid "Use an authenticator app to generate 2FA codes." msgstr "" -#: src/strings.ts:2247 +#: src/strings.ts:2241 msgid "Use custom DNS" msgstr "" @@ -8094,7 +8085,7 @@ msgstr "" msgid "Use encryption key" msgstr "" -#: src/strings.ts:2832 +#: src/strings.ts:2826 msgid "Use existing PGP keys if you already have them" msgstr "" @@ -8102,11 +8093,11 @@ msgstr "" msgid "Use markdown shortcuts in the editor" msgstr "" -#: src/strings.ts:2200 +#: src/strings.ts:2194 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:2198 +#: src/strings.ts:2192 msgid "Use native titlebar" msgstr "<<<<<<< HEAD" @@ -8143,11 +8134,11 @@ 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 "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2948 +#: src/strings.ts:2928 msgid "Use this only for troubleshooting sync issues. Regular use may lead to data loss or conflicts." msgstr "" -#: src/strings.ts:2549 +#: src/strings.ts:2543 msgid "used" msgstr "" @@ -8159,7 +8150,7 @@ msgstr "" msgid "User verification failed" msgstr "" -#: src/strings.ts:2330 +#: src/strings.ts:2324 msgid "Using {instance} (v{version})" msgstr "<<<<<<< HEAD" @@ -8167,7 +8158,7 @@ msgstr "<<<<<<< HEAD" msgid "Using Notesnook without an account will **NOT** sync your notes across devices and could result in data loss if you lose access to your device or uninstall the app. Make sure to backup your notes regularly." msgstr "" -#: src/strings.ts:2328 +#: src/strings.ts:2322 msgid "Using official Notesnook instance" msgstr "" @@ -8175,11 +8166,11 @@ msgstr "" msgid "v{version} available" msgstr "" -#: src/strings.ts:2804 +#: src/strings.ts:2798 msgid "Value must be between {min} and {max}" msgstr "<<<<<<< HEAD" -#: src/strings.ts:3052 +#: src/strings.ts:3032 msgid "Value must be greater than {value}" msgstr "" @@ -8187,7 +8178,7 @@ msgstr "" msgid "Vault" msgstr "" -#: src/strings.ts:2057 +#: src/strings.ts:2051 msgid "Vault cleared" msgstr "" @@ -8195,7 +8186,7 @@ msgstr "" msgid "Vault created" msgstr "" -#: src/strings.ts:2058 +#: src/strings.ts:2052 msgid "Vault deleted" msgstr "" @@ -8203,11 +8194,11 @@ msgstr "" msgid "Vault fingerprint unlock" msgstr "" -#: src/strings.ts:1996 +#: src/strings.ts:1990 msgid "Vault locked" msgstr "" -#: src/strings.ts:1995 +#: src/strings.ts:1989 msgid "Vault unlocked" msgstr "" @@ -8263,11 +8254,11 @@ msgstr "" msgid "View all linked notebooks" msgstr "" -#: src/strings.ts:2738 +#: src/strings.ts:2732 msgid "View and edit your inbox public/private key pair" msgstr "" -#: src/strings.ts:2744 +#: src/strings.ts:2738 msgid "View and manage inbox API keys" msgstr "" @@ -8275,11 +8266,11 @@ msgstr "" msgid "View and share debug logs" msgstr "" -#: src/strings.ts:2838 +#: src/strings.ts:2832 msgid "View failed inbox items and error contexts" msgstr "" -#: src/strings.ts:2617 +#: src/strings.ts:2611 msgid "View plans" msgstr "" @@ -8291,7 +8282,7 @@ msgstr "" msgid "View recovery codes" msgstr "" -#: src/strings.ts:2227 +#: src/strings.ts:2221 msgid "View source code" msgstr "" @@ -8299,7 +8290,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:2701 +#: src/strings.ts:2695 msgid "Views" msgstr "" @@ -8327,11 +8318,11 @@ msgstr "" msgid "We are sorry, it seems that the app crashed due to an error. You can submit a bug report below so we can fix this asap." msgstr "" -#: src/strings.ts:2869 +#: src/strings.ts:2863 msgid "We couldn't load this theme. Please make sure the file is a valid JSON theme file." msgstr "" -#: src/strings.ts:2871 +#: src/strings.ts:2865 msgid "We couldn't load this theme. The file appears to be incomplete or missing required theme properties." msgstr "" @@ -8339,11 +8330,11 @@ msgstr "" msgid "We have sent you an email confirmation link. Please check your email inbox. If you cannot find the email, check your spam folder." msgstr "" -#: src/strings.ts:2587 +#: src/strings.ts:2581 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:2242 +#: src/strings.ts:2236 msgid "We send you occasional promotional offers & product updates on your email (once every month)." msgstr "" @@ -8355,23 +8346,19 @@ msgstr "" msgid "We would love to know what you think!" msgstr "" -#: src/strings.ts:2830 +#: src/strings.ts:2824 msgid "We'll create secure keys for you automatically" msgstr "" -#: src/strings.ts:2638 +#: src/strings.ts:2632 msgid "Weโ€™re setting up your plan right now. Weโ€™ll notify you as soon as everything is ready." msgstr "" -#: src/strings.ts:1554 -msgid "We've sent a verification code to your new email. Enter it below to continue." -msgstr "" - -#: src/strings.ts:2398 +#: src/strings.ts:2392 msgid "Web clip settings" msgstr "" -#: src/strings.ts:2094 +#: src/strings.ts:2088 msgid "Website" msgstr "" @@ -8387,7 +8374,7 @@ msgstr "" msgid "Week" msgstr "" -#: src/strings.ts:2714 +#: src/strings.ts:2708 msgid "Week format" msgstr "" @@ -8404,11 +8391,11 @@ msgstr "" msgid "Welcome back!" msgstr "" -#: src/strings.ts:2674 +#: src/strings.ts:2668 msgid "Welcome to Notesnook {plan}" msgstr "" -#: src/strings.ts:2148 +#: src/strings.ts:2142 msgid "Welcome to Notesnook Pro" msgstr "" @@ -8416,15 +8403,15 @@ msgstr "" msgid "What do I do if I am not getting the email?" msgstr "" -#: src/strings.ts:2579 +#: src/strings.ts:2573 msgid "What happens to my data if I switch plans?" msgstr "" -#: src/strings.ts:2595 +#: src/strings.ts:2589 msgid "What is your refund policy?" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3042 +#: src/strings.ts:3022 msgid "What needs to be done?" msgstr "" @@ -8432,23 +8419,23 @@ msgstr "" msgid "What went wrong?" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2905 +#: src/strings.ts:2885 msgid "What's included" msgstr "" -#: src/strings.ts:2585 +#: src/strings.ts:2579 msgid "Why do you need my credit card details for a free trial?" msgstr "" -#: src/strings.ts:2459 +#: src/strings.ts:2453 msgid "Width" msgstr "" -#: src/strings.ts:2565 +#: src/strings.ts:2559 msgid "Words" msgstr "" -#: src/strings.ts:2488 +#: src/strings.ts:2482 msgid "Work & Office" msgstr "" @@ -8464,7 +8451,7 @@ msgstr "" msgid "Write with freedom." msgstr "" -#: src/strings.ts:2136 +#: src/strings.ts:2130 msgid "Write with freedom. Never compromise on privacy again." msgstr "" @@ -8485,7 +8472,7 @@ msgstr "" msgid "Yes, Unpublish" msgstr "" -#: src/strings.ts:2592 +#: src/strings.ts:2586 msgid "Yes, you can cancel your trial anytime. No questions asked." msgstr "" @@ -8493,15 +8480,15 @@ msgstr "" msgid "You also agree to receive marketing emails from us which you can opt-out of from app settings." msgstr "" -#: src/strings.ts:2679 +#: src/strings.ts:2673 msgid "You are already subscribed to this plan." msgstr "" -#: src/strings.ts:2315 +#: src/strings.ts:2309 msgid "You are editing \"{notebookTitle}\"." msgstr "" -#: src/strings.ts:2108 +#: src/strings.ts:2102 msgid "You are editing #{tag}" msgstr "" @@ -8525,23 +8512,23 @@ msgstr "" msgid "You can also link a note to multiple Notebooks. Tap and hold any notebook to enable multi-select." msgstr "" -#: src/strings.ts:2139 +#: src/strings.ts:2133 msgid "You can change the theme at any time from Settings or the side menu." msgstr "" -#: src/strings.ts:2682 +#: src/strings.ts:2676 msgid "You can change your subscription plan from the web app" msgstr "" -#: src/strings.ts:2496 +#: src/strings.ts:2490 msgid "You can create shortcuts of frequently accessed notebooks in the side menu" msgstr "" -#: src/strings.ts:2154 +#: src/strings.ts:2148 msgid "You can import your notes from most other note taking apps." msgstr "<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:3010 +#: src/strings.ts:2990 msgid "You can link the entire note or specific parts like paragraphs." msgstr "" @@ -8561,7 +8548,7 @@ msgstr "" msgid "You can swipe left anywhere in the app to start a new note." msgstr "" -#: src/strings.ts:2121 +#: src/strings.ts:2115 msgid "" "You can track your bug report at [{url}]({url}).\n" "\n" @@ -8570,7 +8557,7 @@ msgid "" "If your issue is critical (e.g. notes not syncing, crashes etc.), please [join our Discord community](https://go.notesnook.com/discord) for one-to-one support." msgstr "" -#: src/strings.ts:2130 +#: src/strings.ts:2124 msgid "" "You can track your feature request at [{url}]({url}).\n" "\n" @@ -8597,15 +8584,15 @@ msgstr "" msgid "You have {count} custom dictionary words." msgstr "" -#: src/strings.ts:2273 +#: src/strings.ts:2267 msgid "You have been logged out from all other devices." msgstr "" -#: src/strings.ts:2267 +#: src/strings.ts:2261 msgid "You have been logged out." msgstr "" -#: src/strings.ts:2678 +#: src/strings.ts:2672 msgid "You have made a one time purchase. To change your plan please contact support." msgstr "" @@ -8641,7 +8628,7 @@ msgstr "" msgid "You must log out in order to change/reset server URLs." msgstr "" -#: src/strings.ts:2820 +#: src/strings.ts:2814 msgid "" "You need to login to restore attachments from a backup file. [Read more](https://help.notesnook.com/faqs/login-to-restore-attachments-in-backup).\n" " \n" @@ -8688,11 +8675,11 @@ msgstr "" msgid "Your account email will be changed without affecting your subscription or any other settings." msgstr "" -#: src/strings.ts:1982 +#: src/strings.ts:1976 msgid "Your account has been recovered." msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2929 +#: src/strings.ts:2909 msgid "Your account is almost ready, please wait." msgstr "" @@ -8717,11 +8704,11 @@ msgstr "" msgid "Your archive" msgstr "" -#: src/strings.ts:2561 +#: src/strings.ts:2555 msgid "Your archive is empty" msgstr "" -#: src/strings.ts:1994 +#: src/strings.ts:1988 msgid "Your backup is ready to download" msgstr "" @@ -8733,11 +8720,11 @@ msgstr "" msgid "Your changes have been saved and will be reflected after the app has refreshed." msgstr "" -#: src/strings.ts:2174 +#: src/strings.ts:2168 msgid "Your current 2FA method is {method}" msgstr "" -#: src/strings.ts:2685 +#: src/strings.ts:2679 msgid "Your current subscription does not allow changing plans" msgstr "" @@ -8749,7 +8736,7 @@ msgstr "" msgid "Your data recovery key will be used to decrypt your data" msgstr "" -#: src/strings.ts:2581 +#: src/strings.ts:2575 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 "" @@ -8757,7 +8744,7 @@ msgstr "" msgid "Your email has been confirmed." msgstr "" -#: src/strings.ts:2572 +#: src/strings.ts:2566 msgid "Your email has been confirmed. You can now securely sync your encrypted notes across all devices." msgstr "" @@ -8785,7 +8772,7 @@ msgstr "" msgid "Your free trial is ending soon" msgstr "" -#: src/strings.ts:2713 +#: src/strings.ts:2707 msgid "Your free trial is on-going. Your subscription will start on {trialExpiryDate}" msgstr "" @@ -8825,11 +8812,11 @@ msgstr "" msgid "Your profile pictrure is stored 100% end-to-end encrypted and only visible to you." msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2940 +#: src/strings.ts:2920 msgid "Your recovery key" msgstr "" -#: src/strings.ts:2062 +#: src/strings.ts:2056 msgid "Your refund has been issued. Please wait 24 hours before reaching out to us in case you do not receive your funds." msgstr "" @@ -8845,7 +8832,7 @@ msgstr "" msgid "Your subscription ends on {date}" msgstr "" -#: src/strings.ts:2060 +#: src/strings.ts:2054 msgid "Your subscription has been canceled." msgstr "" @@ -8857,11 +8844,11 @@ msgstr "" msgid "Your subscription renews on {date}" msgstr "" -#: src/strings.ts:2118 +#: src/strings.ts:2112 msgid "Your support request has been forwarded" msgstr "" -#: src/strings.ts:2127 +#: src/strings.ts:2121 msgid "Your support request has been forwarded to our support team. We will get back to you via email as soon as possible. If you don't receive an email from us within 24-48 hours, please send us an email directly at support@notesnook.com." msgstr "" @@ -8869,7 +8856,7 @@ msgstr "" msgid "Your tags" msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD" -#: src/strings.ts:2925 +#: src/strings.ts:2905 msgid "Your thoughts deserve a home. Create your first note and start organizing your life today." msgstr "" @@ -8885,11 +8872,11 @@ msgstr "" msgid "Zipping" msgstr "" -#: src/strings.ts:2537 +#: src/strings.ts:2531 msgid "Zoom" msgstr "" -#: src/strings.ts:2168 +#: src/strings.ts:2162 msgid "Zoom factor" msgstr "" @@ -8897,7 +8884,7 @@ msgstr "" msgid "Zoom in" msgstr "" -#: src/strings.ts:2169 +#: src/strings.ts:2163 msgid "Zoom in or out the app content." msgstr "" diff --git a/packages/intl/src/strings.ts b/packages/intl/src/strings.ts index 1bc9612d7..05e6c4740 100644 --- a/packages/intl/src/strings.ts +++ b/packages/intl/src/strings.ts @@ -1975,8 +1975,7 @@ All attachments will be downloaded & cached again on access. backingUpDataWait: () => t`We are creating a backup of your data. Please wait...`, resetAccountPassword: () => t`Reset account password`, - resettingAccountPassword: (progress: number) => - t`Resetting account password (${progress})`, + resettingAccountPassword: () => t`Resetting account password...`, resetPasswordWait: () => t`Please wait while we reset your account password.`, recoverySuccess: () => t`Recovery successful!`, recoverySuccessDesc: () => t`Your account has been recovered.`,