From ef2ed2bba08f39370f4fa3b1eeb4f9a539c8a0e2 Mon Sep 17 00:00:00 2001 From: Ammar Ahmed Date: Wed, 22 Jan 2025 12:27:33 +0500 Subject: [PATCH] mobile: show toast when changing some settings --- .../app/components/ui/pressable/index.tsx | 21 +- .../app/screens/settings/section-item.tsx | 23 +- .../app/screens/settings/settings-data.tsx | 10 +- apps/mobile/app/screens/settings/types.ts | 1 + apps/mobile/package-lock.json | 152 +- packages/intl/locale/en.po | 1830 +++++++++-------- packages/intl/locale/pseudo-LOCALE.po | 1830 +++++++++-------- packages/intl/src/strings.ts | 2 + 8 files changed, 1925 insertions(+), 1944 deletions(-) diff --git a/apps/mobile/app/components/ui/pressable/index.tsx b/apps/mobile/app/components/ui/pressable/index.tsx index ee967442f..b948c77bd 100644 --- a/apps/mobile/app/components/ui/pressable/index.tsx +++ b/apps/mobile/app/components/ui/pressable/index.tsx @@ -263,20 +263,22 @@ export const Pressable = ({ const getStyle = useCallback( ({ pressed }: PressableStateCallbackType): ViewStyle | ViewStyle[] => [ { - backgroundColor: pressed - ? RGB_Linear_Shade(alpha, hexToRGBA(selectedColor, opacity || 1)) - : hexToRGBA(primaryColor, opacity || 1), + backgroundColor: + pressed && !disabled + ? RGB_Linear_Shade(alpha, hexToRGBA(selectedColor, opacity || 1)) + : hexToRGBA(primaryColor, opacity || 1), width: "100%", alignSelf: "center", borderRadius: noborder ? 0 : br, justifyContent: "center", alignItems: "center", marginBottom: 0, - borderColor: pressed - ? customSelectedColor - ? getColorLinearShade(customSelectedColor, 0.3, false) - : borderSelectedColor || borderColor - : borderColor || "transparent", + borderColor: + pressed && !disabled + ? customSelectedColor + ? getColorLinearShade(customSelectedColor, 0.3, false) + : borderSelectedColor || borderColor + : borderColor || "transparent", borderWidth: borderWidth }, style, @@ -298,7 +300,8 @@ export const Pressable = ({ borderColor, borderWidth, style, - growFactor + growFactor, + disabled ] ); diff --git a/apps/mobile/app/screens/settings/section-item.tsx b/apps/mobile/app/screens/settings/section-item.tsx index 4df4e7853..372a30f76 100644 --- a/apps/mobile/app/screens/settings/section-item.tsx +++ b/apps/mobile/app/screens/settings/section-item.tsx @@ -44,7 +44,12 @@ const _SectionItem = ({ item }: { item: SettingSection }) => { const settings = useSettingStore((state) => state.settings); const navigation = useNavigation>(); const current = item.useHook && item.useHook(item); - const isHidden = item.hidden && item.hidden(item.property || current); + const [isHidden, setIsHidden] = useState( + item.hidden && item.hidden(item.property || current) + ); + const [isDisabled, setIsDisabled] = useState( + item.disabled && item.disabled(item.property || current) + ); const inputRef = useRef(null); const [loading, setLoading] = useState(false); @@ -62,7 +67,13 @@ const _SectionItem = ({ item }: { item: SettingSection }) => { SettingsService.set({ [item.property]: nextValue }); - setImmediate(() => item.onChange?.(nextValue)); + setImmediate(() => { + item.onChange?.(nextValue); + item.hidden && + setIsHidden(item.hidden && item.hidden(item.property || current)); + item.disabled && + setIsDisabled(item.disabled && item.disabled(item.property || current)); + }); }; const styles = @@ -94,7 +105,7 @@ const _SectionItem = ({ item }: { item: SettingSection }) => { return isHidden ? null : ( { flexDirection: "row", justifyContent: "space-between", paddingVertical: 20, + opacity: isDisabled ? 0.5 : 1, borderRadius: 0, ...styles }} onPress={async () => { + if (isDisabled) return; switch (item.type) { case "screen": { @@ -208,6 +221,7 @@ const _SectionItem = ({ item }: { item: SettingSection }) => { }); item.inputProperties?.onSubmitEditing?.(e); }} + editable={!isDisabled} onChangeText={(text) => { SettingsService.set({ [item.property as string]: text @@ -240,6 +254,7 @@ const _SectionItem = ({ item }: { item: SettingSection }) => { name="minus" color={colors.primary.icon} onPress={() => { + if (isDisabled) return; const rawValue = SettingsService.get()[ item.property as keyof SettingStore["settings"] ] as string; @@ -262,6 +277,7 @@ const _SectionItem = ({ item }: { item: SettingSection }) => { onChangeInputSelectorValue(e.nativeEvent.text); item.inputProperties?.onSubmitEditing?.(e); }} + editable={!isDisabled} onChangeText={(text) => { onChangeInputSelectorValue(text); item.inputProperties?.onSubmitEditing?.(text as any); @@ -287,6 +303,7 @@ const _SectionItem = ({ item }: { item: SettingSection }) => { name="plus" color={colors.primary.icon} onPress={() => { + if (isDisabled) return; const rawValue = SettingsService.get()[ item.property as keyof SettingStore["settings"] ] as string; diff --git a/apps/mobile/app/screens/settings/settings-data.tsx b/apps/mobile/app/screens/settings/settings-data.tsx index 602d53be9..3a73f6d3f 100644 --- a/apps/mobile/app/screens/settings/settings-data.tsx +++ b/apps/mobile/app/screens/settings/settings-data.tsx @@ -751,8 +751,12 @@ export const settingsGroups: SettingSection[] = [ description: strings.clearDefaultNotebookDesc(), modifer: () => { db.settings.setDefaultNotebook(undefined); + ToastManager.show({ + heading: strings.defaultNotebookCleared(), + type: "success" + }); }, - hidden: () => !db.settings.getDefaultNotebook() + disabled: () => !db.settings.getDefaultNotebook() } ] }, @@ -776,6 +780,10 @@ export const settingsGroups: SettingSection[] = [ description: strings.resetToolbarDesc(), modifer: () => { useDragState.getState().setPreset("default"); + ToastManager.show({ + heading: strings.toolbarReset(), + type: "success" + }); } }, { diff --git a/apps/mobile/app/screens/settings/types.ts b/apps/mobile/app/screens/settings/types.ts index 8a9c3f4d2..c50840588 100644 --- a/apps/mobile/app/screens/settings/types.ts +++ b/apps/mobile/app/screens/settings/types.ts @@ -47,6 +47,7 @@ export type SettingSection = { maxInputValue?: number; onVerify?: () => Promise; hideHeader?: boolean; + disabled?: (current: unknown) => boolean; }; export type SettingsGroup = { diff --git a/apps/mobile/package-lock.json b/apps/mobile/package-lock.json index 679e6b4dd..c5d60cc23 100644 --- a/apps/mobile/package-lock.json +++ b/apps/mobile/package-lock.json @@ -28,7 +28,6 @@ "@trpc/react-query": "^10.45.2", "@trpc/server": "^10.45.2", "@types/validator": "^13.12.2", - "dayjs": "^1.11.13", "diffblazer": "^1.0.1", "react": "18.2.0", "react-native": "0.74.5" @@ -7741,7 +7740,7 @@ }, "../../packages/editor-mobile/node_modules/@types/prop-types": { "version": "15.7.11", - "dev": true, + "devOptional": true, "license": "MIT" }, "../../packages/editor-mobile/node_modules/@types/q": { @@ -7761,7 +7760,7 @@ }, "../../packages/editor-mobile/node_modules/@types/react": { "version": "18.2.39", - "dev": true, + "devOptional": true, "license": "MIT", "dependencies": { "@types/prop-types": "*", @@ -7792,7 +7791,7 @@ }, "../../packages/editor-mobile/node_modules/@types/scheduler": { "version": "0.16.8", - "dev": true, + "devOptional": true, "license": "MIT" }, "../../packages/editor-mobile/node_modules/@types/semver": { @@ -12617,7 +12616,7 @@ }, "../../packages/editor-mobile/node_modules/immer": { "version": "9.0.21", - "dev": true, + "devOptional": true, "license": "MIT", "funding": { "type": "opencollective", @@ -23089,7 +23088,6 @@ }, "../../packages/editor/node_modules/js-tokens": { "version": "4.0.0", - "dev": true, "license": "MIT" }, "../../packages/editor/node_modules/jsesc": { @@ -23140,7 +23138,6 @@ }, "../../packages/editor/node_modules/loose-envify": { "version": "1.4.0", - "dev": true, "license": "MIT", "dependencies": { "js-tokens": "^3.0.0 || ^4.0.0" @@ -23652,7 +23649,6 @@ }, "../../packages/editor/node_modules/react": { "version": "18.3.1", - "dev": true, "license": "MIT", "dependencies": { "loose-envify": "^1.1.0" @@ -23671,7 +23667,6 @@ }, "../../packages/editor/node_modules/react-dom": { "version": "18.3.1", - "dev": true, "license": "MIT", "dependencies": { "loose-envify": "^1.1.0", @@ -23810,7 +23805,6 @@ }, "../../packages/editor/node_modules/scheduler": { "version": "0.23.2", - "dev": true, "license": "MIT", "dependencies": { "loose-envify": "^1.1.0" @@ -28276,6 +28270,7 @@ "@streetwriters/showdown": "^3.0.1-alpha.2", "absolutify": "^0.1.0", "buffer": "^6.0.3", + "dayjs": "^1.11.13", "deprecated-react-native-prop-types": "^4.1.0", "entities": "^3.0.1", "fflate": "^0.7.3", @@ -28587,7 +28582,6 @@ }, "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { "version": "7.22.5", - "dev": true, "license": "MIT", "dependencies": { "@babel/types": "^7.22.5" @@ -28707,7 +28701,6 @@ }, "node_modules/@babel/helper-hoist-variables": { "version": "7.22.5", - "dev": true, "license": "MIT", "dependencies": { "@babel/types": "^7.22.5" @@ -28967,7 +28960,6 @@ "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.9.tgz", "integrity": "sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==", - "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, @@ -28982,7 +28974,6 @@ "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz", "integrity": "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==", - "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", @@ -29131,7 +29122,6 @@ "version": "7.21.0-placeholder-for-preset-env.2", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", - "dev": true, "engines": { "node": ">=6.9.0" }, @@ -29144,7 +29134,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead.", - "dev": true, "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -29179,7 +29168,6 @@ }, "node_modules/@babel/plugin-syntax-class-properties": { "version": "7.12.13", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.12.13" @@ -29192,7 +29180,6 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", - "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -29230,7 +29217,6 @@ "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", - "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.8.3" }, @@ -29255,7 +29241,6 @@ "version": "7.25.6", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.25.6.tgz", "integrity": "sha512-aABl0jHw9bZ2karQ/uUD6XP4u0SG22SJrOHFoL6XB1R7dTovOP4TzTlsxOYC5yQ1pdscVK2JTUnF6QL3ARoAiQ==", - "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" }, @@ -29270,7 +29255,6 @@ "version": "7.25.6", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.25.6.tgz", "integrity": "sha512-sXaDXaJN9SNLymBdlWFA+bjzBhFD617ZaFiY13dGt7TVslVvVgA6fkZOP7Ki3IGElC45lwHdOTrCtKZGVAWeLQ==", - "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" }, @@ -29285,7 +29269,6 @@ "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", - "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -29297,7 +29280,6 @@ "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", - "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -29397,7 +29379,6 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", - "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -29425,7 +29406,6 @@ "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", - "dev": true, "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -29454,7 +29434,6 @@ "version": "7.25.4", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.4.tgz", "integrity": "sha512-jz8cV2XDDTqjKPwVPJBIjORVEmSGYhdRa8e5k5+vN+uwcjSrSxUaebBRa4ko1jqNF2uxyg8G6XYk30Jv285xzg==", - "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5", @@ -29485,7 +29464,6 @@ }, "node_modules/@babel/plugin-transform-block-scoped-functions": { "version": "7.22.5", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -29514,7 +29492,6 @@ "version": "7.25.4", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.4.tgz", "integrity": "sha512-nZeZHyCWPfjkdU5pA/uHiTaDAFUEqkpzf1YoQT2NeSynCGYq9rxfyI3XpQbfx/a0hSnFH6TGlEXvae5Vi7GD8g==", - "dev": true, "dependencies": { "@babel/helper-create-class-features-plugin": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" @@ -29530,7 +29507,6 @@ "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz", "integrity": "sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==", - "dev": true, "dependencies": { "@babel/helper-create-class-features-plugin": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5", @@ -29595,7 +29571,6 @@ "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz", "integrity": "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==", - "dev": true, "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" @@ -29611,7 +29586,6 @@ "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz", "integrity": "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==", - "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" }, @@ -29626,7 +29600,6 @@ "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz", "integrity": "sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==", - "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, @@ -29639,7 +29612,6 @@ }, "node_modules/@babel/plugin-transform-exponentiation-operator": { "version": "7.22.5", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5", @@ -29656,7 +29628,6 @@ "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz", "integrity": "sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==", - "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" @@ -29684,7 +29655,6 @@ }, "node_modules/@babel/plugin-transform-for-of": { "version": "7.22.5", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -29715,7 +29685,6 @@ "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz", "integrity": "sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==", - "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-json-strings": "^7.8.3" @@ -29744,7 +29713,6 @@ "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz", "integrity": "sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==", - "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" @@ -29758,7 +29726,6 @@ }, "node_modules/@babel/plugin-transform-member-expression-literals": { "version": "7.22.5", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -29774,7 +29741,6 @@ "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz", "integrity": "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==", - "dev": true, "dependencies": { "@babel/helper-module-transforms": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" @@ -29805,7 +29771,6 @@ "version": "7.25.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.0.tgz", "integrity": "sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==", - "dev": true, "dependencies": { "@babel/helper-hoist-variables": "^7.22.5", "@babel/helper-module-transforms": "^7.22.5", @@ -29823,7 +29788,6 @@ "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz", "integrity": "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==", - "dev": true, "dependencies": { "@babel/helper-module-transforms": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" @@ -29853,7 +29817,6 @@ "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz", "integrity": "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==", - "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" }, @@ -29883,7 +29846,6 @@ "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz", "integrity": "sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==", - "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-numeric-separator": "^7.10.4" @@ -29899,7 +29861,6 @@ "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz", "integrity": "sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==", - "dev": true, "dependencies": { "@babel/compat-data": "^7.22.5", "@babel/helper-compilation-targets": "^7.22.5", @@ -29916,7 +29877,6 @@ }, "node_modules/@babel/plugin-transform-object-super": { "version": "7.22.5", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", @@ -29933,7 +29893,6 @@ "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz", "integrity": "sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==", - "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" @@ -30007,7 +29966,6 @@ }, "node_modules/@babel/plugin-transform-property-literals": { "version": "7.22.5", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -30077,7 +30035,6 @@ }, "node_modules/@babel/plugin-transform-regenerator": { "version": "7.22.5", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", @@ -30094,7 +30051,6 @@ "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz", "integrity": "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==", - "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" }, @@ -30187,7 +30143,6 @@ "version": "7.24.8", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.8.tgz", "integrity": "sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==", - "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" }, @@ -30218,7 +30173,6 @@ "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz", "integrity": "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==", - "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" }, @@ -30233,7 +30187,6 @@ "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz", "integrity": "sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==", - "dev": true, "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" @@ -30263,7 +30216,6 @@ "version": "7.25.4", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.4.tgz", "integrity": "sha512-qesBxiWkgN1Q+31xUE9RcMk79eOXXDCv6tfyGMRSs4RGlioSg2WVyQAm07k726cSE56pa+Kb0y9epX2qaXzTvA==", - "dev": true, "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" @@ -30279,7 +30231,6 @@ "version": "7.25.4", "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.25.4.tgz", "integrity": "sha512-W9Gyo+KmcxjGahtt3t9fb14vFRWvPpu5pT6GBlovAK6BTBcxgjfVMSQCfJl4oi35ODrxP6xx2Wr8LNST57Mraw==", - "dev": true, "dependencies": { "@babel/compat-data": "^7.22.5", "@babel/helper-compilation-targets": "^7.22.5", @@ -30373,7 +30324,6 @@ "version": "0.1.6", "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6.tgz", "integrity": "sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==", - "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", @@ -30389,7 +30339,6 @@ "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, "bin": { "semver": "bin/semver.js" } @@ -33693,8 +33642,7 @@ "node_modules/@types/estree": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", - "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", - "dev": true + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" }, "node_modules/@types/graceful-fs": { "version": "4.1.6", @@ -33800,14 +33748,14 @@ }, "node_modules/@types/prop-types": { "version": "15.7.5", - "dev": true, + "devOptional": true, "license": "MIT" }, "node_modules/@types/react": { "version": "18.3.18", "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.18.tgz", "integrity": "sha512-t4yC+vtgnkYjNSKlFx1jkAhH8LgTo2N/7Qvi83kdEaUtMDiwpbLAktKDaAMlRcJ5eSxZkH74eEGt1ky31d7kfQ==", - "dev": true, + "devOptional": true, "license": "MIT", "dependencies": { "@types/prop-types": "*", @@ -34163,7 +34111,6 @@ "version": "1.12.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", - "dev": true, "dependencies": { "@webassemblyjs/helper-numbers": "1.11.6", "@webassemblyjs/helper-wasm-bytecode": "1.11.6" @@ -34172,26 +34119,22 @@ "node_modules/@webassemblyjs/floating-point-hex-parser": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", - "dev": true + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" }, "node_modules/@webassemblyjs/helper-api-error": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", - "dev": true + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" }, "node_modules/@webassemblyjs/helper-buffer": { "version": "1.12.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", - "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==", - "dev": true + "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==" }, "node_modules/@webassemblyjs/helper-numbers": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", - "dev": true, "dependencies": { "@webassemblyjs/floating-point-hex-parser": "1.11.6", "@webassemblyjs/helper-api-error": "1.11.6", @@ -34201,14 +34144,12 @@ "node_modules/@webassemblyjs/helper-wasm-bytecode": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", - "dev": true + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" }, "node_modules/@webassemblyjs/helper-wasm-section": { "version": "1.12.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", - "dev": true, "dependencies": { "@webassemblyjs/ast": "1.11.6", "@webassemblyjs/helper-buffer": "1.11.6", @@ -34220,7 +34161,6 @@ "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", - "dev": true, "dependencies": { "@xtuc/ieee754": "^1.2.0" } @@ -34229,7 +34169,6 @@ "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", - "dev": true, "dependencies": { "@xtuc/long": "4.2.2" } @@ -34237,14 +34176,12 @@ "node_modules/@webassemblyjs/utf8": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", - "dev": true + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" }, "node_modules/@webassemblyjs/wasm-edit": { "version": "1.12.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", - "dev": true, "dependencies": { "@webassemblyjs/ast": "1.11.6", "@webassemblyjs/helper-buffer": "1.11.6", @@ -34260,7 +34197,6 @@ "version": "1.12.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", - "dev": true, "dependencies": { "@webassemblyjs/ast": "1.11.6", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", @@ -34273,7 +34209,6 @@ "version": "1.12.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", - "dev": true, "dependencies": { "@webassemblyjs/ast": "1.11.6", "@webassemblyjs/helper-buffer": "1.11.6", @@ -34285,7 +34220,6 @@ "version": "1.12.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", - "dev": true, "dependencies": { "@webassemblyjs/ast": "1.11.6", "@webassemblyjs/helper-api-error": "1.11.6", @@ -34299,7 +34233,6 @@ "version": "1.12.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", - "dev": true, "dependencies": { "@webassemblyjs/ast": "1.11.6", "@xtuc/long": "4.2.2" @@ -34357,14 +34290,12 @@ "node_modules/@xtuc/ieee754": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "dev": true + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" }, "node_modules/@xtuc/long": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "dev": true + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" }, "node_modules/@yarnpkg/lockfile": { "version": "1.1.0", @@ -35355,7 +35286,6 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", - "dev": true, "engines": { "node": ">=6.0" } @@ -35786,7 +35716,7 @@ }, "node_modules/csstype": { "version": "3.1.2", - "dev": true, + "devOptional": true, "license": "MIT" }, "node_modules/date-fns": { @@ -36386,7 +36316,6 @@ "version": "5.17.1", "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", - "dev": true, "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -36506,8 +36435,7 @@ "node_modules/es-module-lexer": { "version": "1.5.4", "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", - "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", - "dev": true + "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==" }, "node_modules/es-object-atoms": { "version": "1.0.0", @@ -36852,7 +36780,6 @@ "version": "5.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dev": true, "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" @@ -36865,7 +36792,6 @@ "version": "4.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true, "engines": { "node": ">=4.0" } @@ -37029,7 +36955,6 @@ "version": "4.3.0", "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, "dependencies": { "estraverse": "^5.2.0" }, @@ -37041,7 +36966,6 @@ "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, "engines": { "node": ">=4.0" } @@ -37050,7 +36974,6 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, "engines": { "node": ">=0.10.0" } @@ -37810,8 +37733,7 @@ "node_modules/glob-to-regexp": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", - "dev": true + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" }, "node_modules/global": { "version": "4.4.0", @@ -39900,8 +39822,7 @@ "node_modules/json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" }, "node_modules/json-schema-ref-resolver": { "version": "1.0.1", @@ -40377,7 +40298,6 @@ "version": "4.3.0", "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", - "dev": true, "engines": { "node": ">=6.11.5" } @@ -42607,7 +42527,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "dev": true, "dependencies": { "safe-buffer": "^5.1.0" } @@ -42629,6 +42548,30 @@ "node": ">=0.10.0" } }, + "node_modules/react-dom": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + "license": "MIT", + "peer": true, + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" + } + }, + "node_modules/react-dom/node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "loose-envify": "^1.1.0" + } + }, "node_modules/react-freeze": { "version": "1.0.3", "license": "MIT", @@ -43547,7 +43490,6 @@ }, "node_modules/regenerator-transform": { "version": "0.15.1", - "dev": true, "license": "MIT", "dependencies": { "@babel/runtime": "^7.8.4" @@ -43900,7 +43842,6 @@ }, "node_modules/serialize-javascript": { "version": "6.0.1", - "dev": true, "license": "BSD-3-Clause", "dependencies": { "randombytes": "^2.1.0" @@ -44558,7 +44499,6 @@ }, "node_modules/tapable": { "version": "2.2.1", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -44636,7 +44576,6 @@ "version": "5.3.10", "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", - "dev": true, "dependencies": { "@jridgewell/trace-mapping": "^0.3.17", "jest-worker": "^27.4.5", @@ -44670,7 +44609,6 @@ "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", - "dev": true, "dependencies": { "@types/node": "*", "merge-stream": "^2.0.0", @@ -44684,7 +44622,6 @@ "version": "8.1.1", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, "dependencies": { "has-flag": "^4.0.0" }, @@ -45261,7 +45198,6 @@ "version": "2.4.2", "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz", "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==", - "dev": true, "dependencies": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" @@ -45285,7 +45221,6 @@ "version": "5.94.0", "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.94.0.tgz", "integrity": "sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg==", - "dev": true, "dependencies": { "@types/eslint-scope": "^3.7.3", "@types/estree": "^1.0.0", @@ -45401,7 +45336,6 @@ "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", - "dev": true, "engines": { "node": ">=10.13.0" } diff --git a/packages/intl/locale/en.po b/packages/intl/locale/en.po index 779104868..c7544ad92 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:2387 +#: src/strings.ts:2389 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:1920 +#: src/strings.ts:1922 msgid " Upgrade to Notesnook Pro to add more notebooks." msgstr " Upgrade to Notesnook Pro to add more notebooks." -#: src/strings.ts:1923 +#: src/strings.ts:1925 msgid " Upgrade to Notesnook Pro to customize the toolbar." msgstr " Upgrade to Notesnook Pro to customize the toolbar." -#: src/strings.ts:1922 +#: src/strings.ts:1924 msgid " Upgrade to Notesnook Pro to use custom toolbar presets." msgstr " Upgrade to Notesnook Pro to use custom toolbar presets." -#: src/strings.ts:1921 +#: src/strings.ts:1923 msgid " Upgrade to Notesnook Pro to use the notes vault." msgstr " Upgrade to Notesnook Pro to use the notes vault." -#: src/strings.ts:1924 +#: src/strings.ts:1926 msgid " Upgrade to Notesnook Pro to use this feature." msgstr " Upgrade to Notesnook Pro to use this feature." @@ -68,23 +68,23 @@ msgstr "{0} downloaded" msgid "{0} Highlights 🎉" msgstr "{0} Highlights 🎉" -#: src/strings.ts:1732 +#: src/strings.ts:1734 msgid "{count, plural, one {# error occured} other {# errors occured}}" msgstr "{count, plural, one {# error occured} other {# errors occured}}" -#: src/strings.ts:1738 +#: src/strings.ts:1740 msgid "{count, plural, one {# file ready for import} other {# files ready for import}}" msgstr "{count, plural, one {# file ready for import} other {# files ready for import}}" -#: src/strings.ts:1693 +#: src/strings.ts:1695 msgid "{count, plural, one {# file} other {# files}}" msgstr "{count, plural, one {# file} other {# files}}" -#: src/strings.ts:1557 +#: src/strings.ts:1559 msgid "{count, plural, one {1 hour} other {# hours}}" msgstr "{count, plural, one {1 hour} other {# hours}}" -#: src/strings.ts:1552 +#: src/strings.ts:1554 msgid "{count, plural, one {1 minute} other {# minutes}}" msgstr "{count, plural, one {1 minute} other {# minutes}}" @@ -279,7 +279,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:2404 +#: src/strings.ts:2406 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}}" @@ -476,7 +476,7 @@ msgstr "{count, plural, one {Unpublish item} other {Unpublish # items}}" msgid "{count, plural, one {Unpublish note} other {Unpublish # notes}}" msgstr "{count, plural, one {Unpublish note} other {Unpublish # notes}}" -#: src/strings.ts:1543 +#: src/strings.ts:1545 msgid "{days, plural, one {1 day} other {# days}}" msgstr "{days, plural, one {1 day} other {# days}}" @@ -516,19 +516,19 @@ msgstr "{mode, select, day {Daily} week {Weekly} month {Monthly} year {Yearly} o msgid "{mode, select, repeat {Repeat} once {Once} permanent {Permanent} other {Unknown mode}}" msgstr "{mode, select, repeat {Repeat} once {Once} permanent {Permanent} other {Unknown mode}}" -#: src/strings.ts:1955 +#: src/strings.ts:1957 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:1950 +#: src/strings.ts:1952 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:1945 +#: src/strings.ts:1947 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:1940 +#: src/strings.ts:1942 msgid "{notes, plural, one {1 note} other {# notes}}" msgstr "{notes, plural, one {1 note} other {# notes}}" @@ -536,7 +536,7 @@ msgstr "{notes, plural, one {1 note} other {# notes}}" msgid "{notes, plural, one {Export note} other {Export # notes}}" msgstr "{notes, plural, one {Export note} other {Export # notes}}" -#: src/strings.ts:1685 +#: src/strings.ts:1687 msgid "{percentage}% updating..." msgstr "{percentage}% updating..." @@ -544,11 +544,11 @@ msgstr "{percentage}% updating..." msgid "{platform, select, android {{name} saved to selected path} other {{name} saved to File Manager/Notesnook/downloads}}" msgstr "{platform, select, android {{name} saved to selected path} other {{name} saved to File Manager/Notesnook/downloads}}" -#: src/strings.ts:1318 +#: src/strings.ts:1320 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:2335 +#: src/strings.ts:2337 msgid "{selected} selected" msgstr "{selected} selected" @@ -568,27 +568,27 @@ msgstr "{type, select, upload {Uploading} download {Downloading} sync {Syncing} msgid "{type} does not match" msgstr "{type} does not match" -#: src/strings.ts:1578 +#: src/strings.ts:1580 msgid "{words, plural, one {# word} other {# words}}" msgstr "{words, plural, one {# word} other {# words}}" -#: src/strings.ts:1641 +#: src/strings.ts:1643 msgid "{words, plural, other {# selected}}" msgstr "{words, plural, other {# selected}}" -#: src/strings.ts:1769 +#: src/strings.ts:1771 msgid "#notesnook" msgstr "#notesnook" -#: src/strings.ts:1562 +#: src/strings.ts:1564 msgid "12-hour" msgstr "12-hour" -#: src/strings.ts:1563 +#: src/strings.ts:1565 msgid "24-hour" msgstr "24-hour" -#: src/strings.ts:1883 +#: src/strings.ts:1885 msgid "2FA code is required()" msgstr "2FA code is required()" @@ -596,11 +596,11 @@ msgstr "2FA code is required()" msgid "2FA code sent via {method}" msgstr "2FA code sent via {method}" -#: src/strings.ts:1824 +#: src/strings.ts:1826 msgid "6 digit code" msgstr "6 digit code" -#: src/strings.ts:1412 +#: src/strings.ts:1414 msgid "A notebook can have unlimited topics with unlimited notes." msgstr "A notebook can have unlimited topics with unlimited notes." @@ -616,7 +616,7 @@ msgstr "A vault stores your notes in a encrypted storage." msgid "Abc" msgstr "Abc" -#: src/strings.ts:1273 +#: src/strings.ts:1275 msgid "About" msgstr "About" @@ -624,15 +624,15 @@ msgstr "About" msgid "account" msgstr "account" -#: src/strings.ts:1826 +#: src/strings.ts:1828 msgid "Account password" msgstr "Account password" -#: src/strings.ts:2016 +#: src/strings.ts:2018 msgid "Activate" msgstr "Activate" -#: src/strings.ts:1802 +#: src/strings.ts:1804 msgid "Activating trial" msgstr "Activating trial" @@ -644,11 +644,11 @@ msgstr "Add" msgid "Add 2FA fallback method" msgstr "Add 2FA fallback method" -#: src/strings.ts:1488 +#: src/strings.ts:1490 msgid "Add a short note" msgstr "Add a short note" -#: src/strings.ts:1579 +#: src/strings.ts:1581 msgid "Add a tag" msgstr "Add a tag" @@ -684,7 +684,7 @@ msgstr "Add tags" msgid "Add tags to multiple notes at once" msgstr "Add tags to multiple notes at once" -#: src/strings.ts:2223 +#: src/strings.ts:2225 msgid "Add to dictionary" msgstr "Add to dictionary" @@ -696,23 +696,23 @@ msgstr "Add your first note" msgid "Add your first notebook" msgstr "Add your first notebook" -#: src/strings.ts:2150 +#: src/strings.ts:2152 msgid "Advanced" msgstr "Advanced" -#: src/strings.ts:1705 +#: src/strings.ts:1707 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:2286 +#: src/strings.ts:2288 msgid "Align left" msgstr "Align left" -#: src/strings.ts:2287 +#: src/strings.ts:2289 msgid "Align right" msgstr "Align right" -#: src/strings.ts:2256 +#: src/strings.ts:2258 msgid "Alignment" msgstr "Alignment" @@ -724,7 +724,7 @@ msgstr "All" msgid "All attachments are end-to-end encrypted." msgstr "All attachments are end-to-end encrypted." -#: src/strings.ts:2381 +#: src/strings.ts:2383 msgid "All cached attachments have been cleared." msgstr "All cached attachments have been cleared." @@ -736,7 +736,7 @@ msgstr "All fields are required" msgid "All files" msgstr "All files" -#: src/strings.ts:1158 +#: src/strings.ts:1160 msgid "All locked notes will be re-encrypted with the new password." msgstr "All locked notes will be re-encrypted with the new password." @@ -744,15 +744,15 @@ msgstr "All locked notes will be re-encrypted with the new password." msgid "All logs are local only and are not sent to any server. You can share the logs from here with us if you face an issue to help us find the root cause." msgstr "All logs are local only and are not sent to any server. You can share the logs from here with us if you face an issue to help us find the root cause." -#: src/strings.ts:1616 +#: src/strings.ts:1618 msgid "All server urls are required." msgstr "All server urls are required." -#: src/strings.ts:1885 +#: src/strings.ts:1887 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:2130 +#: src/strings.ts:2132 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." @@ -760,15 +760,15 @@ msgstr "All the source code for Notesnook is available & open for everyone on Gi msgid "All tools are grouped" msgstr "All tools are grouped" -#: src/strings.ts:1302 +#: src/strings.ts:1304 msgid "All tools in the collapsed section will be removed" msgstr "All tools in the collapsed section will be removed" -#: src/strings.ts:1297 +#: src/strings.ts:1299 msgid "All tools in this group will be removed from the toolbar." msgstr "All tools in this group will be removed from the toolbar." -#: src/strings.ts:1327 +#: src/strings.ts:1329 msgid "All your backups are stored in 'Phone Storage/Notesnook/backups/' folder" msgstr "All your backups are stored in 'Phone Storage/Notesnook/backups/' folder" @@ -780,7 +780,7 @@ msgstr "All your data will be removed permanently. Make sure you have saved back msgid "Already have an account?" msgstr "Already have an account?" -#: src/strings.ts:2200 +#: src/strings.ts:2202 msgid "Amount" msgstr "Amount" @@ -792,11 +792,11 @@ msgstr "An error occurred while migrating your data. You can logout of your acco msgid "and " msgstr "and " -#: src/strings.ts:1770 +#: src/strings.ts:1772 msgid "and get a chance to win free promo codes." msgstr "and get a chance to win free promo codes." -#: src/strings.ts:1378 +#: src/strings.ts:1380 msgid "and we will manually confirm your account." msgstr "and we will manually confirm your account." @@ -804,25 +804,25 @@ msgstr "and we will manually confirm your account." msgid "App data has been cleared. Kindly relaunch the app to login again." msgstr "App data has been cleared. Kindly relaunch the app to login again." -#: src/strings.ts:1167 -#: src/strings.ts:1672 +#: src/strings.ts:1169 +#: src/strings.ts:1674 msgid "App lock" msgstr "App lock" #: src/strings.ts:770 -#: src/strings.ts:1193 +#: src/strings.ts:1195 msgid "App lock disabled" msgstr "App lock disabled" -#: src/strings.ts:1173 +#: src/strings.ts:1175 msgid "App lock timeout" msgstr "App lock timeout" -#: src/strings.ts:1281 +#: src/strings.ts:1283 msgid "App version" msgstr "App version" -#: src/strings.ts:1753 +#: src/strings.ts:1755 msgid "App will reload in {sec} seconds" msgstr "App will reload in {sec} seconds" @@ -842,11 +842,11 @@ msgstr "Applied as light theme" msgid "Apply changes" msgstr "Apply changes" -#: src/strings.ts:2023 +#: src/strings.ts:2025 msgid "Applying changes" msgstr "Applying changes" -#: src/strings.ts:1426 +#: src/strings.ts:1428 msgid "Are you scrolling a lot to find a specific note? Pin it to the top from Note properties." msgstr "Are you scrolling a lot to find a specific note? Pin it to the top from Note properties." @@ -854,11 +854,11 @@ msgstr "Are you scrolling a lot to find a specific note? Pin it to the top from msgid "Are you sure you want to clear all logs from {key}?" msgstr "Are you sure you want to clear all logs from {key}?" -#: src/strings.ts:1305 +#: src/strings.ts:1307 msgid "Are you sure you want to clear trash?" msgstr "Are you sure you want to clear trash?" -#: src/strings.ts:1521 +#: src/strings.ts:1523 msgid "Are you sure you want to logout and clear all data stored on THIS DEVICE?" msgstr "Are you sure you want to logout and clear all data stored on THIS DEVICE?" @@ -874,7 +874,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:1304 +#: src/strings.ts:1306 msgid "Are you sure?" msgstr "Are you sure?" @@ -882,7 +882,7 @@ msgstr "Are you sure?" msgid "Ask every time" msgstr "Ask every time" -#: src/strings.ts:2012 +#: src/strings.ts:2014 msgid "Assign color" msgstr "Assign color" @@ -894,7 +894,7 @@ msgstr "Assign to..." msgid "Atleast 8 characters required" msgstr "Atleast 8 characters required" -#: src/strings.ts:2324 +#: src/strings.ts:2326 msgid "Attach image from URL" msgstr "Attach image from URL" @@ -903,19 +903,19 @@ msgid "attachment" msgstr "attachment" #: src/strings.ts:300 -#: src/strings.ts:2321 +#: src/strings.ts:2323 msgid "Attachment" msgstr "Attachment" -#: src/strings.ts:1914 +#: src/strings.ts:1916 msgid "Attachment preview failed" msgstr "Attachment preview failed" -#: src/strings.ts:2374 +#: src/strings.ts:2376 msgid "Attachment recheck cancelled" msgstr "Attachment recheck cancelled" -#: src/strings.ts:2292 +#: src/strings.ts:2294 msgid "Attachment settings" msgstr "Attachment settings" @@ -928,11 +928,11 @@ msgstr "attachments" msgid "Attachments" msgstr "Attachments" -#: src/strings.ts:1863 +#: src/strings.ts:1865 msgid "Attachments cache cleared!" msgstr "Attachments cache cleared!" -#: src/strings.ts:2376 +#: src/strings.ts:2378 msgid "Attachments recheck complete" msgstr "Attachments recheck complete" @@ -940,64 +940,64 @@ msgstr "Attachments recheck complete" msgid "Audios" msgstr "Audios" -#: src/strings.ts:1605 +#: src/strings.ts:1607 msgid "Auth server" msgstr "Auth server" -#: src/strings.ts:1774 +#: src/strings.ts:1776 msgid "Authenticated as {email}" msgstr "Authenticated as {email}" -#: src/strings.ts:1877 +#: src/strings.ts:1879 msgid "Authenticating user" msgstr "Authenticating user" -#: src/strings.ts:2113 +#: src/strings.ts:2115 msgid "Authentication" msgstr "Authentication" -#: src/strings.ts:1709 +#: src/strings.ts:1711 msgid "authentication app" msgstr "authentication app" -#: src/strings.ts:1332 +#: src/strings.ts:1334 msgid "Authentication cancelled by user" msgstr "Authentication cancelled by user" -#: src/strings.ts:1333 +#: src/strings.ts:1335 msgid "Authentication failed" msgstr "Authentication failed" -#: src/strings.ts:2076 +#: src/strings.ts:2078 msgid "Auto" msgstr "Auto" -#: src/strings.ts:1640 +#: src/strings.ts:1642 msgid "Auto save: off" msgstr "Auto save: off" -#: src/strings.ts:2090 +#: src/strings.ts:2092 msgid "Auto start on system startup" msgstr "Auto start on system startup" -#: src/strings.ts:1202 -#: src/strings.ts:1668 +#: src/strings.ts:1204 +#: src/strings.ts:1670 msgid "Automatic backups" msgstr "Automatic backups" -#: src/strings.ts:1346 +#: src/strings.ts:1348 msgid "Automatic backups are off" msgstr "Automatic backups are off" -#: src/strings.ts:1984 +#: src/strings.ts:1986 msgid "Automatic backups disabled" msgstr "Automatic backups disabled" -#: src/strings.ts:1205 +#: src/strings.ts:1207 msgid "Automatic backups with attachments" msgstr "Automatic backups with attachments" -#: src/strings.ts:2086 +#: src/strings.ts:2088 msgid "Automatic updates" msgstr "Automatic updates" @@ -1005,11 +1005,11 @@ msgstr "Automatic updates" msgid "Automatically clear trash after a certain period of time" msgstr "Automatically clear trash after a certain period of time" -#: src/strings.ts:2088 +#: src/strings.ts:2090 msgid "Automatically download & install updates in the background without prompting first." msgstr "Automatically download & install updates in the background without prompting first." -#: src/strings.ts:1175 +#: src/strings.ts:1177 msgid "Automatically lock the app after a certain period" msgstr "Automatically lock the app after a certain period" @@ -1017,15 +1017,15 @@ msgstr "Automatically lock the app after a certain period" msgid "Automatically switch between light and dark themes based on your system settings" msgstr "Automatically switch between light and dark themes based on your system settings" -#: src/strings.ts:2133 +#: src/strings.ts:2135 msgid "Available on iOS" msgstr "Available on iOS" -#: src/strings.ts:2134 +#: src/strings.ts:2136 msgid "Available on iOS & Android" msgstr "Available on iOS & Android" -#: src/strings.ts:2279 +#: src/strings.ts:2281 msgid "Background color" msgstr "Background color" @@ -1033,31 +1033,31 @@ msgstr "Background color" msgid "Background sync (experimental)" msgstr "Background sync (experimental)" -#: src/strings.ts:2082 +#: src/strings.ts:2084 msgid "Backup" msgstr "Backup" -#: src/strings.ts:2120 +#: src/strings.ts:2122 msgid "Backup & export" msgstr "Backup & export" -#: src/strings.ts:1194 +#: src/strings.ts:1196 msgid "Backup & restore" msgstr "Backup & restore" -#: src/strings.ts:1316 +#: src/strings.ts:1318 msgid "Backup complete" msgstr "Backup complete" -#: src/strings.ts:1540 +#: src/strings.ts:1542 msgid "Backup directory not selected" msgstr "Backup directory not selected" -#: src/strings.ts:1217 +#: src/strings.ts:1219 msgid "Backup encryption" msgstr "Backup encryption" -#: src/strings.ts:1837 +#: src/strings.ts:1839 msgid "Backup files have .nnbackup extension" msgstr "Backup files have .nnbackup extension" @@ -1065,15 +1065,15 @@ msgstr "Backup files have .nnbackup extension" msgid "Backup is encrypted" msgstr "Backup is encrypted" -#: src/strings.ts:1593 +#: src/strings.ts:1595 msgid "Backup is encrypted, decrypting..." msgstr "Backup is encrypted, decrypting..." -#: src/strings.ts:1196 +#: src/strings.ts:1198 msgid "Backup now" msgstr "Backup now" -#: src/strings.ts:1197 +#: src/strings.ts:1199 msgid "Backup now with attachments" msgstr "Backup now with attachments" @@ -1081,15 +1081,15 @@ msgstr "Backup now with attachments" msgid "Backup restored" msgstr "Backup restored" -#: src/strings.ts:1898 +#: src/strings.ts:1900 msgid "Backup saved at {path}" msgstr "Backup saved at {path}" -#: src/strings.ts:1328 +#: src/strings.ts:1330 msgid "Backup successful" msgstr "Backup successful" -#: src/strings.ts:2083 +#: src/strings.ts:2085 msgid "Backup with attachments" msgstr "Backup with attachments" @@ -1101,7 +1101,7 @@ msgstr "Backups" msgid "Basic" msgstr "Basic" -#: src/strings.ts:1772 +#: src/strings.ts:1774 msgid "Because where's the fun in nookin' alone?" msgstr "Because where's the fun in nookin' alone?" @@ -1109,7 +1109,7 @@ msgstr "Because where's the fun in nookin' alone?" msgid "Behavior" msgstr "Behavior" -#: src/strings.ts:2115 +#: src/strings.ts:2117 msgid "Behaviour" msgstr "Behaviour" @@ -1117,15 +1117,15 @@ msgstr "Behaviour" msgid "BETA" msgstr "BETA" -#: src/strings.ts:2237 +#: src/strings.ts:2239 msgid "Bi-directional note link" msgstr "Bi-directional note link" -#: src/strings.ts:2181 +#: src/strings.ts:2183 msgid "Billing history" msgstr "Billing history" -#: src/strings.ts:1161 +#: src/strings.ts:1163 msgid "Biometric unlocking" msgstr "Biometric unlocking" @@ -1137,27 +1137,27 @@ msgstr "Biometric unlocking disabled" msgid "Biometric unlocking enabled" msgstr "Biometric unlocking enabled" -#: src/strings.ts:1330 +#: src/strings.ts:1332 msgid "Biometrics authentication failed. Please try again." msgstr "Biometrics authentication failed. Please try again." -#: src/strings.ts:1170 +#: src/strings.ts:1172 msgid "Biometrics not enrolled" msgstr "Biometrics not enrolled" -#: src/strings.ts:2233 +#: src/strings.ts:2235 msgid "Bold" msgstr "Bold" -#: src/strings.ts:2386 +#: src/strings.ts:2388 msgid "Boost your productivity with Notebooks and organize your notes." msgstr "Boost your productivity with Notebooks and organize your notes." -#: src/strings.ts:1788 +#: src/strings.ts:1790 msgid "Browse" msgstr "Browse" -#: src/strings.ts:2250 +#: src/strings.ts:2252 msgid "Bullet list" msgstr "Bullet list" @@ -1169,7 +1169,7 @@ msgstr "By" msgid "By signing up, you agree to our " msgstr "By signing up, you agree to our " -#: src/strings.ts:2312 +#: src/strings.ts:2314 msgid "Callout" msgstr "Callout" @@ -1185,7 +1185,7 @@ msgstr "Cancel download" msgid "Cancel login" msgstr "Cancel login" -#: src/strings.ts:1805 +#: src/strings.ts:1807 msgid "Cancel subscription" msgstr "Cancel subscription" @@ -1193,24 +1193,24 @@ msgstr "Cancel subscription" msgid "Cancel upload" msgstr "Cancel upload" -#: src/strings.ts:2278 +#: src/strings.ts:2280 msgid "Cell background color" msgstr "Cell background color" -#: src/strings.ts:2280 +#: src/strings.ts:2282 msgid "Cell border color" msgstr "Cell border color" -#: src/strings.ts:2282 -#: src/strings.ts:2283 +#: src/strings.ts:2284 +#: src/strings.ts:2285 msgid "Cell border width" msgstr "Cell border width" -#: src/strings.ts:2264 +#: src/strings.ts:2266 msgid "Cell properties" msgstr "Cell properties" -#: src/strings.ts:2281 +#: src/strings.ts:2283 msgid "Cell text color" msgstr "Cell text color" @@ -1226,15 +1226,15 @@ msgstr "Change 2FA fallback method" msgid "Change 2FA method" msgstr "Change 2FA method" -#: src/strings.ts:1182 +#: src/strings.ts:1184 msgid "Change app lock password" msgstr "Change app lock password" -#: src/strings.ts:1181 +#: src/strings.ts:1183 msgid "Change app lock pin" msgstr "Change app lock pin" -#: src/strings.ts:1216 +#: src/strings.ts:1218 msgid "Change backup directory" msgstr "Change backup directory" @@ -1246,11 +1246,11 @@ msgstr "Change email address" msgid "Change how the app behaves in different situations" msgstr "Change how the app behaves in different situations" -#: src/strings.ts:2330 +#: src/strings.ts:2332 msgid "Change language" msgstr "Change language" -#: src/strings.ts:1237 +#: src/strings.ts:1239 msgid "Change notification sound" msgstr "Change notification sound" @@ -1258,19 +1258,19 @@ msgstr "Change notification sound" msgid "Change password" msgstr "Change password" -#: src/strings.ts:1797 +#: src/strings.ts:1799 msgid "Change profile picture" msgstr "Change profile picture" -#: src/strings.ts:2159 +#: src/strings.ts:2161 msgid "Change proxy" msgstr "Change proxy" -#: src/strings.ts:2180 +#: src/strings.ts:2182 msgid "Change the payment method you used to purchase this subscription." msgstr "Change the payment method you used to purchase this subscription." -#: src/strings.ts:1239 +#: src/strings.ts:1241 msgid "Change the sound that plays when you receive a notification" msgstr "Change the sound that plays when you receive a notification" @@ -1294,15 +1294,15 @@ msgstr "Changes from other devices won't be updated in the editor in real-time." msgid "Changing password is an irreversible process. You will be logged out from all your devices. Please make sure you do not close the app while your password is changing and have good internet connection." msgstr "Changing password is an irreversible process. You will be logged out from all your devices. Please make sure you do not close the app while your password is changing and have good internet connection." -#: src/strings.ts:1280 +#: src/strings.ts:1282 msgid "Check for new version of Notesnook" msgstr "Check for new version of Notesnook" -#: src/strings.ts:1279 +#: src/strings.ts:1281 msgid "Check for updates" msgstr "Check for updates" -#: src/strings.ts:2132 +#: src/strings.ts:2134 msgid "Check roadmap" msgstr "Check roadmap" @@ -1310,7 +1310,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:2378 +#: src/strings.ts:2380 msgid "Checking all attachments" msgstr "Checking all attachments" @@ -1318,31 +1318,31 @@ msgstr "Checking all attachments" msgid "Checking for new version" msgstr "Checking for new version" -#: src/strings.ts:1684 +#: src/strings.ts:1686 msgid "Checking for updates" msgstr "Checking for updates" -#: src/strings.ts:2377 +#: src/strings.ts:2379 msgid "Checking note attachments" msgstr "Checking note attachments" -#: src/strings.ts:2252 +#: src/strings.ts:2254 msgid "Checklist" msgstr "Checklist" -#: src/strings.ts:2307 +#: src/strings.ts:2309 msgid "Choose a block to insert" msgstr "Choose a block to insert" -#: src/strings.ts:1776 +#: src/strings.ts:1778 msgid "Choose a recovery method" msgstr "Choose a recovery method" -#: src/strings.ts:2081 +#: src/strings.ts:2083 msgid "Choose backup format" msgstr "Choose backup format" -#: src/strings.ts:2343 +#: src/strings.ts:2345 msgid "Choose custom color" msgstr "Choose custom color" @@ -1354,7 +1354,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:1142 +#: src/strings.ts:1144 msgid "Choose how the new note titles are formatted" msgstr "Choose how the new note titles are formatted" @@ -1366,15 +1366,15 @@ msgstr "Choose how time is displayed in the app" msgid "Choose how you want to secure your notes locally." msgstr "Choose how you want to secure your notes locally." -#: src/strings.ts:1212 +#: src/strings.ts:1214 msgid "Choose where to save your backups" msgstr "Choose where to save your backups" -#: src/strings.ts:2041 +#: src/strings.ts:2043 msgid "Choose your style" msgstr "Choose your style" -#: src/strings.ts:1596 +#: src/strings.ts:1598 msgid "cleaningUp" msgstr "cleaningUp" @@ -1382,27 +1382,27 @@ msgstr "cleaningUp" msgid "Clear" msgstr "Clear" -#: src/strings.ts:1849 +#: src/strings.ts:1851 msgid "Clear all cached attachments. Current cache size: {cacheSize}" msgstr "Clear all cached attachments. Current cache size: {cacheSize}" -#: src/strings.ts:2246 +#: src/strings.ts:2248 msgid "Clear all formatting" msgstr "Clear all formatting" -#: src/strings.ts:1850 +#: src/strings.ts:1852 msgid "Clear attachments cache?" msgstr "Clear attachments cache?" -#: src/strings.ts:1847 +#: src/strings.ts:1849 msgid "Clear cache" msgstr "Clear cache" -#: src/strings.ts:2341 +#: src/strings.ts:2343 msgid "Clear completed tasks" msgstr "Clear completed tasks" -#: src/strings.ts:1784 +#: src/strings.ts:1786 msgid "Clear data & reset account" msgstr "Clear data & reset account" @@ -1414,11 +1414,11 @@ msgstr "Clear default notebook" msgid "Clear logs" msgstr "Clear logs" -#: src/strings.ts:2175 +#: src/strings.ts:2177 msgid "clear sessions" msgstr "clear sessions" -#: src/strings.ts:1303 +#: src/strings.ts:1305 msgid "Clear trash" msgstr "Clear trash" @@ -1430,7 +1430,7 @@ msgstr "Clear trash interval" msgid "Clear vault" msgstr "Clear vault" -#: src/strings.ts:1852 +#: src/strings.ts:1854 msgid "" "Clearing attachments cache will perform the following actions:\n" "\n" @@ -1460,51 +1460,51 @@ msgstr "" msgid "Click to deselect" msgstr "Click to deselect" -#: src/strings.ts:1846 +#: src/strings.ts:1848 msgid "Click to preview" msgstr "Click to preview" -#: src/strings.ts:1751 +#: src/strings.ts:1753 msgid "Click to remove" msgstr "Click to remove" -#: src/strings.ts:2369 +#: src/strings.ts:2371 msgid "Click to reset {title}" msgstr "Click to reset {title}" -#: src/strings.ts:1362 +#: src/strings.ts:1364 msgid "Close" msgstr "Close" -#: src/strings.ts:1998 +#: src/strings.ts:2000 msgid "Close all" msgstr "Close all" -#: src/strings.ts:1995 +#: src/strings.ts:1997 msgid "Close others" msgstr "Close others" -#: src/strings.ts:2099 +#: src/strings.ts:2101 msgid "Close to system tray" msgstr "Close to system tray" -#: src/strings.ts:1997 +#: src/strings.ts:1999 msgid "Close to the left" msgstr "Close to the left" -#: src/strings.ts:1996 +#: src/strings.ts:1998 msgid "Close to the right" msgstr "Close to the right" -#: src/strings.ts:2244 +#: src/strings.ts:2246 msgid "Code" msgstr "Code" -#: src/strings.ts:2309 +#: src/strings.ts:2311 msgid "Code block" msgstr "Code block" -#: src/strings.ts:2245 +#: src/strings.ts:2247 msgid "Code remove" msgstr "Code remove" @@ -1517,7 +1517,7 @@ msgid "color" msgstr "color" #: src/strings.ts:299 -#: src/strings.ts:1823 +#: src/strings.ts:1825 msgid "Color" msgstr "Color" @@ -1525,11 +1525,11 @@ msgstr "Color" msgid "Color #{color} already exists" msgstr "Color #{color} already exists" -#: src/strings.ts:2074 +#: src/strings.ts:2076 msgid "Color scheme" msgstr "Color scheme" -#: src/strings.ts:1470 +#: src/strings.ts:1472 msgid "Color title" msgstr "Color title" @@ -1541,11 +1541,11 @@ msgstr "colors" msgid "Colors" msgstr "Colors" -#: src/strings.ts:2262 +#: src/strings.ts:2264 msgid "Column properties" msgstr "Column properties" -#: src/strings.ts:1255 +#: src/strings.ts:1257 msgid "Community" msgstr "Community" @@ -1565,11 +1565,11 @@ msgstr "Compress images before uploading" msgid "Compressed images are uploaded in Full HD resolution and usually are good enough for most use cases." msgstr "Compressed images are uploaded in Full HD resolution and usually are good enough for most use cases." -#: src/strings.ts:2228 +#: src/strings.ts:2230 msgid "Configure" msgstr "Configure" -#: src/strings.ts:2383 +#: src/strings.ts:2385 msgid "Configure server URLs for Notesnook" msgstr "Configure server URLs for Notesnook" @@ -1581,31 +1581,31 @@ msgstr "Confirm email" msgid "Confirm email to publish note" msgstr "Confirm email to publish note" -#: src/strings.ts:1469 +#: src/strings.ts:1471 msgid "Confirm new password" msgstr "Confirm new password" -#: src/strings.ts:1464 +#: src/strings.ts:1466 msgid "Confirm password" msgstr "Confirm password" -#: src/strings.ts:1468 +#: src/strings.ts:1470 msgid "Confirm pin" msgstr "Confirm pin" -#: src/strings.ts:2059 +#: src/strings.ts:2061 msgid "Congratulations!" msgstr "Congratulations!" -#: src/strings.ts:1615 +#: src/strings.ts:1617 msgid "Connected to all servers sucessfully." msgstr "Connected to all servers sucessfully." -#: src/strings.ts:1650 +#: src/strings.ts:1652 msgid "Contact support" msgstr "Contact support" -#: src/strings.ts:1246 +#: src/strings.ts:1248 msgid "Contact us directly via support@streetwriters.co for any help or support" msgstr "Contact us directly via support@streetwriters.co for any help or support" @@ -1613,15 +1613,15 @@ msgstr "Contact us directly via support@streetwriters.co for any help or support msgid "Continue" msgstr "Continue" -#: src/strings.ts:1148 +#: src/strings.ts:1150 msgid "Contribute towards a better Notesnook. All tracking information is anonymous." msgstr "Contribute towards a better Notesnook. All tracking information is anonymous." -#: src/strings.ts:1232 +#: src/strings.ts:1234 msgid "Controls whether this device should receive reminder notifications." msgstr "Controls whether this device should receive reminder notifications." -#: src/strings.ts:1969 +#: src/strings.ts:1971 msgid "Copied" msgstr "Copied" @@ -1630,7 +1630,7 @@ msgid "Copy" msgstr "Copy" #. placeholder {0}: format ? " " + format : "" -#: src/strings.ts:2015 +#: src/strings.ts:2017 msgid "Copy as{0}" msgstr "Copy as{0}" @@ -1638,7 +1638,7 @@ msgstr "Copy as{0}" msgid "Copy codes" msgstr "Copy codes" -#: src/strings.ts:2226 +#: src/strings.ts:2228 msgid "Copy image" msgstr "Copy image" @@ -1646,7 +1646,7 @@ msgstr "Copy image" msgid "Copy link" msgstr "Copy link" -#: src/strings.ts:2225 +#: src/strings.ts:2227 msgid "Copy link text" msgstr "Copy link text" @@ -1658,27 +1658,27 @@ msgstr "Copy note" msgid "Copy to clipboard" msgstr "Copy to clipboard" -#: src/strings.ts:1598 +#: src/strings.ts:1600 msgid "Copying backup files to cache" msgstr "Copying backup files to cache" -#: src/strings.ts:1152 +#: src/strings.ts:1154 msgid "CORS bypass" msgstr "CORS bypass" -#: src/strings.ts:1965 +#: src/strings.ts:1967 msgid "Could not activate trial. Please try again later." msgstr "Could not activate trial. Please try again later." -#: src/strings.ts:1983 +#: src/strings.ts:1985 msgid "Could not clear trash." msgstr "Could not clear trash." -#: src/strings.ts:1618 +#: src/strings.ts:1620 msgid "Could not connect to {server}." msgstr "Could not connect to {server}." -#: src/strings.ts:1930 +#: src/strings.ts:1932 msgid "Could not convert note to {format}." msgstr "Could not convert note to {format}." @@ -1710,7 +1710,7 @@ msgstr "Create a note first" msgid "Create a shortcut" msgstr "Create a shortcut" -#: src/strings.ts:1828 +#: src/strings.ts:1830 msgid "Create account" msgstr "Create account" @@ -1718,19 +1718,19 @@ msgstr "Create account" msgid "Create link" msgstr "Create link" -#: src/strings.ts:1454 +#: src/strings.ts:1456 msgid "Create shortcut of this notebook in side menu" msgstr "Create shortcut of this notebook in side menu" -#: src/strings.ts:1368 +#: src/strings.ts:1370 msgid "Create unlimited notebooks with Notesnook Pro" msgstr "Create unlimited notebooks with Notesnook Pro" -#: src/strings.ts:1367 +#: src/strings.ts:1369 msgid "Create unlimited tags with Notesnook Pro" msgstr "Create unlimited tags with Notesnook Pro" -#: src/strings.ts:1369 +#: src/strings.ts:1371 msgid "Create unlimited vaults with Notesnook Pro" msgstr "Create unlimited vaults with Notesnook Pro" @@ -1742,20 +1742,20 @@ msgstr "Create vault" msgid "Create your account" msgstr "Create your account" -#: src/strings.ts:2208 +#: src/strings.ts:2210 msgid "Created at" msgstr "Created at" #. placeholder {0}: type === "full" ? " full" : "" -#: src/strings.ts:1325 +#: src/strings.ts:1327 msgid "Creating a{0} backup" msgstr "Creating a{0} backup" -#: src/strings.ts:2028 +#: src/strings.ts:2030 msgid "Credentials" msgstr "Credentials" -#: src/strings.ts:2044 +#: src/strings.ts:2046 msgid "Cross platform & 100% encrypted" msgstr "Cross platform & 100% encrypted" @@ -1763,31 +1763,31 @@ msgstr "Cross platform & 100% encrypted" msgid "Curate the toolbar that fits your needs and matches your personality." msgstr "Curate the toolbar that fits your needs and matches your personality." -#: src/strings.ts:1815 +#: src/strings.ts:1817 msgid "Current note" msgstr "Current note" -#: src/strings.ts:1466 +#: src/strings.ts:1468 msgid "Current password" msgstr "Current password" -#: src/strings.ts:1213 +#: src/strings.ts:1215 msgid "Current path: {path}" msgstr "Current path: {path}" -#: src/strings.ts:1465 +#: src/strings.ts:1467 msgid "Current pin" msgstr "Current pin" -#: src/strings.ts:1752 +#: src/strings.ts:1754 msgid "CURRENT PLAN" msgstr "CURRENT PLAN" -#: src/strings.ts:1989 +#: src/strings.ts:1991 msgid "Custom" msgstr "Custom" -#: src/strings.ts:2110 +#: src/strings.ts:2112 msgid "Custom dictionary words" msgstr "Custom dictionary words" @@ -1799,24 +1799,24 @@ msgstr "Customization" msgid "Customize the appearance of the app with custom themes" msgstr "Customize the appearance of the app with custom themes" -#: src/strings.ts:1128 +#: src/strings.ts:1129 msgid "Customize the note editor" msgstr "Customize the note editor" -#: src/strings.ts:1130 +#: src/strings.ts:1131 msgid "Customize the toolbar in the note editor" msgstr "Customize the toolbar in the note editor" -#: src/strings.ts:1129 +#: src/strings.ts:1130 msgid "Customize toolbar" msgstr "Customize toolbar" -#: src/strings.ts:2224 +#: src/strings.ts:2226 msgid "Cut" msgstr "Cut" #: src/strings.ts:167 -#: src/strings.ts:1547 +#: src/strings.ts:1549 msgid "Daily" msgstr "Daily" @@ -1828,19 +1828,19 @@ msgstr "Dark" msgid "Dark mode" msgstr "Dark mode" -#: src/strings.ts:2075 +#: src/strings.ts:2077 msgid "Dark or light, we won't judge." msgstr "Dark or light, we won't judge." -#: src/strings.ts:1526 +#: src/strings.ts:1528 msgid "Database setup failed, could not get database key" msgstr "Database setup failed, could not get database key" -#: src/strings.ts:1818 +#: src/strings.ts:1820 msgid "Date" msgstr "Date" -#: src/strings.ts:2084 +#: src/strings.ts:2086 msgid "Date & time" msgstr "Date & time" @@ -1864,15 +1864,15 @@ msgstr "Date format" msgid "Date modified" msgstr "Date modified" -#: src/strings.ts:2021 +#: src/strings.ts:2023 msgid "Date uploaded" msgstr "Date uploaded" -#: src/strings.ts:1820 +#: src/strings.ts:1822 msgid "Day" msgstr "Day" -#: src/strings.ts:2017 +#: src/strings.ts:2019 msgid "Deactivate" msgstr "Deactivate" @@ -1880,7 +1880,7 @@ msgstr "Deactivate" msgid "Debug log copied!" msgstr "Debug log copied!" -#: src/strings.ts:1253 +#: src/strings.ts:1255 msgid "Debug logs" msgstr "Debug logs" @@ -1888,44 +1888,48 @@ msgstr "Debug logs" msgid "Debug logs downloaded" msgstr "Debug logs downloaded" -#: src/strings.ts:1250 +#: src/strings.ts:1252 msgid "Debugging" msgstr "Debugging" -#: src/strings.ts:2371 +#: src/strings.ts:2373 msgid "Decrease {title}" msgstr "Decrease {title}" #: src/strings.ts:649 -#: src/strings.ts:1987 +#: src/strings.ts:1989 msgid "Default" msgstr "Default" -#: src/strings.ts:1139 +#: src/strings.ts:1141 msgid "Default font family" msgstr "Default font family" -#: src/strings.ts:1140 +#: src/strings.ts:1142 msgid "Default font family in editor" msgstr "Default font family in editor" -#: src/strings.ts:1137 +#: src/strings.ts:1139 msgid "Default font size" msgstr "Default font size" -#: src/strings.ts:1138 +#: src/strings.ts:1140 msgid "Default font size in editor" msgstr "Default font size in editor" +#: src/strings.ts:1127 +msgid "Default notebook cleared" +msgstr "Default notebook cleared" + #: src/strings.ts:1113 msgid "Default screen to open on app launch" msgstr "Default screen to open on app launch" -#: src/strings.ts:1233 +#: src/strings.ts:1235 msgid "Default snooze time" msgstr "Default snooze time" -#: src/strings.ts:1282 +#: src/strings.ts:1284 msgid "Default sound" msgstr "Default sound" @@ -1937,19 +1941,19 @@ msgstr "Delete" msgid "Delete account" msgstr "Delete account" -#: src/strings.ts:1300 +#: src/strings.ts:1302 msgid "Delete collapsed section" msgstr "Delete collapsed section" -#: src/strings.ts:2269 +#: src/strings.ts:2271 msgid "Delete column" msgstr "Delete column" -#: src/strings.ts:1295 +#: src/strings.ts:1297 msgid "Delete group" msgstr "Delete group" -#: src/strings.ts:2344 +#: src/strings.ts:2346 msgid "Delete mode" msgstr "Delete mode" @@ -1961,11 +1965,11 @@ msgstr "Delete notes in this vault" msgid "Delete permanently" msgstr "Delete permanently" -#: src/strings.ts:2276 +#: src/strings.ts:2278 msgid "Delete row" msgstr "Delete row" -#: src/strings.ts:2277 +#: src/strings.ts:2279 msgid "Delete table" msgstr "Delete table" @@ -1973,7 +1977,7 @@ msgstr "Delete table" msgid "Delete vault" msgstr "Delete vault" -#: src/strings.ts:1160 +#: src/strings.ts:1162 msgid "Delete vault (and optionally remove all notes)." msgstr "Delete vault (and optionally remove all notes)." @@ -1981,19 +1985,19 @@ msgstr "Delete vault (and optionally remove all notes)." msgid "Deleted on {date}" msgstr "Deleted on {date}" -#: src/strings.ts:1907 +#: src/strings.ts:1909 msgid "Deleting" msgstr "Deleting" -#: src/strings.ts:1817 +#: src/strings.ts:1819 msgid "Description" msgstr "Description" -#: src/strings.ts:2085 +#: src/strings.ts:2087 msgid "Desktop app" msgstr "Desktop app" -#: src/strings.ts:2089 +#: src/strings.ts:2091 msgid "Desktop integration" msgstr "Desktop integration" @@ -2001,7 +2005,7 @@ msgstr "Desktop integration" msgid "Did you save recovery key?" msgstr "Did you save recovery key?" -#: src/strings.ts:1357 +#: src/strings.ts:1359 msgid "Disable" msgstr "Disable" @@ -2009,7 +2013,7 @@ msgstr "Disable" msgid "Disable auto sync" msgstr "Disable auto sync" -#: src/strings.ts:1990 +#: src/strings.ts:1992 msgid "Disable editor margins" msgstr "Disable editor margins" @@ -2029,11 +2033,11 @@ msgstr "Disabled" msgid "Discard" msgstr "Discard" -#: src/strings.ts:1576 +#: src/strings.ts:1578 msgid "Dismiss" msgstr "Dismiss" -#: src/strings.ts:1629 +#: src/strings.ts:1631 msgid "Dismiss announcement" msgstr "Dismiss announcement" @@ -2045,11 +2049,11 @@ msgstr "Disputed" msgid "Do you enjoy using Notesnook?" msgstr "Do you enjoy using Notesnook?" -#: src/strings.ts:2207 +#: src/strings.ts:2209 msgid "Do you want to clear the trash?" msgstr "Do you want to clear the trash?" -#: src/strings.ts:1247 +#: src/strings.ts:1249 msgid "Documentation" msgstr "Documentation" @@ -2073,11 +2077,11 @@ msgstr "Don't have access to your phone number?" msgid "Don't have an account?" msgstr "Don't have an account?" -#: src/strings.ts:1811 +#: src/strings.ts:1813 msgid "Don't have backup file?" msgstr "Don't have backup file?" -#: src/strings.ts:1810 +#: src/strings.ts:1812 msgid "Don't have your account recovery key?" msgstr "Don't have your account recovery key?" @@ -2085,11 +2089,11 @@ msgstr "Don't have your account recovery key?" msgid "Don't have your recovery codes?" msgstr "Don't have your recovery codes?" -#: src/strings.ts:1789 +#: src/strings.ts:1791 msgid "Don't show again" msgstr "Don't show again" -#: src/strings.ts:1790 +#: src/strings.ts:1792 msgid "Don't show again on this device?" msgstr "Don't show again on this device?" @@ -2097,7 +2101,7 @@ msgstr "Don't show again on this device?" msgid "Done" msgstr "Done" -#: src/strings.ts:1133 +#: src/strings.ts:1135 msgid "Double spaced lines" msgstr "Double spaced lines" @@ -2105,15 +2109,15 @@ msgstr "Double spaced lines" msgid "Download" msgstr "Download" -#: src/strings.ts:1795 +#: src/strings.ts:1797 msgid "Download all attachments" msgstr "Download all attachments" -#: src/strings.ts:2293 +#: src/strings.ts:2295 msgid "Download attachment" msgstr "Download attachment" -#: src/strings.ts:1839 +#: src/strings.ts:1841 msgid "Download backup file" msgstr "Download backup file" @@ -2121,11 +2125,11 @@ msgstr "Download backup file" msgid "Download cancelled" msgstr "Download cancelled" -#: src/strings.ts:2187 +#: src/strings.ts:2189 msgid "Download everything including attachments on sync" msgstr "Download everything including attachments on sync" -#: src/strings.ts:1274 +#: src/strings.ts:1276 msgid "Download on desktop" msgstr "Download on desktop" @@ -2158,19 +2162,19 @@ msgstr "Downloading ({progress})" msgid "Downloading attachments" msgstr "Downloading attachments" -#: src/strings.ts:1683 +#: src/strings.ts:1685 msgid "Downloading images" msgstr "Downloading images" -#: src/strings.ts:1749 +#: src/strings.ts:1751 msgid "Drag & drop files here, or click to select files" msgstr "Drag & drop files here, or click to select files" -#: src/strings.ts:1748 +#: src/strings.ts:1750 msgid "Drop the files here" msgstr "Drop the files here" -#: src/strings.ts:1642 +#: src/strings.ts:1644 msgid "Drop your files here to attach" msgstr "Drop your files here to attach" @@ -2186,11 +2190,11 @@ msgstr "Duplicate" msgid "Earliest first" msgstr "Earliest first" -#: src/strings.ts:2395 +#: src/strings.ts:2397 msgid "Easy access" msgstr "Easy access" -#: src/strings.ts:1756 +#: src/strings.ts:1758 msgid "Edit" msgstr "Edit" @@ -2198,29 +2202,29 @@ msgstr "Edit" msgid "Edit internal link" msgstr "Edit internal link" -#: src/strings.ts:2213 -#: src/strings.ts:2239 +#: src/strings.ts:2215 +#: src/strings.ts:2241 msgid "Edit link" msgstr "Edit link" -#: src/strings.ts:1288 +#: src/strings.ts:1290 msgid "Edit profile picture" msgstr "Edit profile picture" -#: src/strings.ts:1798 +#: src/strings.ts:1800 msgid "Edit your full name" msgstr "Edit your full name" -#: src/strings.ts:1127 -#: src/strings.ts:1506 +#: src/strings.ts:1128 +#: src/strings.ts:1508 msgid "Editor" msgstr "Editor" -#: src/strings.ts:1462 +#: src/strings.ts:1464 msgid "Email" msgstr "Email" -#: src/strings.ts:2408 +#: src/strings.ts:2410 msgid "Email copied" msgstr "Email copied" @@ -2232,11 +2236,11 @@ msgstr "Email is required" msgid "Email not confirmed" msgstr "Email not confirmed" -#: src/strings.ts:1532 +#: src/strings.ts:1534 msgid "Email or password incorrect" msgstr "Email or password incorrect" -#: src/strings.ts:1244 +#: src/strings.ts:1246 msgid "Email support" msgstr "Email support" @@ -2244,15 +2248,15 @@ msgstr "Email support" msgid "Email updated to {email}" msgstr "Email updated to {email}" -#: src/strings.ts:2319 +#: src/strings.ts:2321 msgid "Embed" msgstr "Embed" -#: src/strings.ts:2299 +#: src/strings.ts:2301 msgid "Embed properties" msgstr "Embed properties" -#: src/strings.ts:2295 +#: src/strings.ts:2297 msgid "Embed settings" msgstr "Embed settings" @@ -2264,19 +2268,19 @@ msgstr "Enable" msgid "Enable (Recommended)" msgstr "Enable (Recommended)" -#: src/strings.ts:1169 +#: src/strings.ts:1171 msgid "Enable app lock" msgstr "Enable app lock" -#: src/strings.ts:1991 +#: src/strings.ts:1993 msgid "Enable editor margins" msgstr "Enable editor margins" -#: src/strings.ts:2359 +#: src/strings.ts:2361 msgid "Enable regex" msgstr "Enable regex" -#: src/strings.ts:2106 +#: src/strings.ts:2108 msgid "Enable spell checker" msgstr "Enable spell checker" @@ -2284,7 +2288,7 @@ msgstr "Enable spell checker" msgid "Enable two-factor authentication to add an extra layer of security to your account." msgstr "Enable two-factor authentication to add an extra layer of security to your account." -#: src/strings.ts:1218 +#: src/strings.ts:1220 msgid "Encrypt your backups for added security" msgstr "Encrypt your backups for added security" @@ -2292,11 +2296,11 @@ msgstr "Encrypt your backups for added security" msgid "Encrypted and synced" msgstr "Encrypted and synced" -#: src/strings.ts:2220 +#: src/strings.ts:2222 msgid "Encrypted backup" msgstr "Encrypted backup" -#: src/strings.ts:1636 +#: src/strings.ts:1638 msgid "Encrypted, private, secure." msgstr "Encrypted, private, secure." @@ -2304,7 +2308,7 @@ msgstr "Encrypted, private, secure." msgid "Encrypting attachment" msgstr "Encrypting attachment" -#: src/strings.ts:1822 +#: src/strings.ts:1824 msgid "Encryption key" msgstr "Encryption key" @@ -2324,7 +2328,7 @@ msgstr "Enter account password" msgid "Enter account password to proceed." msgstr "Enter account password to proceed." -#: src/strings.ts:1831 +#: src/strings.ts:1833 msgid "Enter account recovery key" msgstr "Enter account recovery key" @@ -2340,23 +2344,23 @@ msgstr "Enter app lock pin" msgid "Enter code from authenticator app" msgstr "Enter code from authenticator app" -#: src/strings.ts:1492 +#: src/strings.ts:1494 msgid "Enter email address" msgstr "Enter email address" -#: src/strings.ts:2347 +#: src/strings.ts:2349 msgid "Enter embed source URL" msgstr "Enter embed source URL" -#: src/strings.ts:1294 +#: src/strings.ts:1296 msgid "Enter full name" msgstr "Enter full name" -#: src/strings.ts:1680 +#: src/strings.ts:1682 msgid "Enter fullscreen" msgstr "Enter fullscreen" -#: src/strings.ts:1471 +#: src/strings.ts:1473 msgid "Enter notebook description" msgstr "Enter notebook description" @@ -2368,7 +2372,7 @@ msgstr "Enter notebook title" msgid "Enter password" msgstr "Enter password" -#: src/strings.ts:2067 +#: src/strings.ts:2069 msgid "Enter pin or password to enable app lock." msgstr "Enter pin or password to enable app lock." @@ -2388,7 +2392,7 @@ msgstr "Enter the 6 digit code sent to your email to continue logging in" msgid "Enter the 6 digit code sent to your phone number to continue logging in" msgstr "Enter the 6 digit code sent to your phone number to continue logging in" -#: src/strings.ts:2410 +#: src/strings.ts:2412 msgid "Enter the gift code to redeem your subscription." msgstr "Enter the gift code to redeem your subscription." @@ -2396,23 +2400,23 @@ msgstr "Enter the gift code to redeem your subscription." msgid "Enter the recovery code to continue logging in" msgstr "Enter the recovery code to continue logging in" -#: src/strings.ts:1474 +#: src/strings.ts:1476 msgid "Enter verification code sent to your new email" msgstr "Enter verification code sent to your new email" -#: src/strings.ts:1473 +#: src/strings.ts:1475 msgid "Enter your new email" msgstr "Enter your new email" -#: src/strings.ts:2068 +#: src/strings.ts:2070 msgid "Enter your username" msgstr "Enter your username" -#: src/strings.ts:2402 +#: src/strings.ts:2404 msgid "Error" msgstr "Error" -#: src/strings.ts:1533 +#: src/strings.ts:1535 msgid "Error applying promo code" msgstr "Error applying promo code" @@ -2420,7 +2424,7 @@ msgstr "Error applying promo code" msgid "Error downloading file: {message}" msgstr "Error downloading file: {message}" -#: src/strings.ts:1495 +#: src/strings.ts:1497 msgid "Error getting codes" msgstr "Error getting codes" @@ -2440,35 +2444,35 @@ msgstr "Error sending 2FA code" msgid "Errors" msgstr "Errors" -#: src/strings.ts:1675 +#: src/strings.ts:1677 msgid "Errors in {count} attachments" msgstr "Errors in {count} attachments" -#: src/strings.ts:1607 +#: src/strings.ts:1609 msgid "Events server" msgstr "Events server" -#: src/strings.ts:2388 +#: src/strings.ts:2390 msgid "Every Notebook can have notes and sub notebooks." msgstr "Every Notebook can have notes and sub notebooks." -#: src/strings.ts:2390 +#: src/strings.ts:2392 msgid "Everything related to my job in one place." msgstr "Everything related to my job in one place." -#: src/strings.ts:2399 +#: src/strings.ts:2401 msgid "Everything related to my school in one place." msgstr "Everything related to my school in one place." -#: src/strings.ts:1992 +#: src/strings.ts:1994 msgid "Exit fullscreen" msgstr "Exit fullscreen" -#: src/strings.ts:2351 +#: src/strings.ts:2353 msgid "Expand" msgstr "Expand" -#: src/strings.ts:2051 +#: src/strings.ts:2053 msgid "Experience the next level of private note taking\"" msgstr "Experience the next level of private note taking\"" @@ -2480,20 +2484,20 @@ msgstr "Export" msgid "Export again" msgstr "Export again" -#: src/strings.ts:1221 +#: src/strings.ts:1223 msgid "Export all notes" msgstr "Export all notes" -#: src/strings.ts:1223 +#: src/strings.ts:1225 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:2014 +#: src/strings.ts:2016 msgid "Export as{0}" msgstr "Export as{0}" -#: src/strings.ts:1366 +#: src/strings.ts:1368 msgid "Export notes as PDF, Markdown and HTML with Notesnook Pro" msgstr "Export notes as PDF, Markdown and HTML with Notesnook Pro" @@ -2501,31 +2505,31 @@ msgstr "Export notes as PDF, Markdown and HTML with Notesnook Pro" msgid "Exporting \"{title}\"" msgstr "Exporting \"{title}\"" -#: src/strings.ts:1597 +#: src/strings.ts:1599 msgid "Extracting files..." msgstr "Extracting files..." -#: src/strings.ts:1786 +#: src/strings.ts:1788 msgid "EXTREMELY DANGEROUS! This action is irreversible. All your data including notes, notebooks, attachments & settings will be deleted. This is a full account reset. Proceed with caution." msgstr "EXTREMELY DANGEROUS! This action is irreversible. All your data including notes, notebooks, attachments & settings will be deleted. This is a full account reset. Proceed with caution." -#: src/strings.ts:1243 +#: src/strings.ts:1245 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:2380 +#: src/strings.ts:2382 msgid "Failed" msgstr "Failed" -#: src/strings.ts:1915 +#: src/strings.ts:1917 msgid "Failed to copy note" msgstr "Failed to copy note" -#: src/strings.ts:1539 +#: src/strings.ts:1541 msgid "Failed to decrypt backup" msgstr "Failed to decrypt backup" -#: src/strings.ts:1981 +#: src/strings.ts:1983 msgid "Failed to delete" msgstr "Failed to delete" @@ -2537,7 +2541,7 @@ msgstr "Failed to delete account" msgid "Failed to download file" msgstr "Failed to download file" -#: src/strings.ts:1977 +#: src/strings.ts:1979 msgid "Failed to install theme." msgstr "Failed to install theme." @@ -2549,7 +2553,7 @@ msgstr "Failed to open" msgid "Failed to publish note" msgstr "Failed to publish note" -#: src/strings.ts:1982 +#: src/strings.ts:1984 msgid "Failed to register task" msgstr "Failed to register task" @@ -2561,7 +2565,7 @@ msgstr "Failed to resolve download url" msgid "Failed to send recovery email" msgstr "Failed to send recovery email" -#: src/strings.ts:1382 +#: src/strings.ts:1384 msgid "Failed to send verification email" msgstr "Failed to send verification email" @@ -2569,11 +2573,11 @@ msgstr "Failed to send verification email" msgid "Failed to subscribe" msgstr "Failed to subscribe" -#: src/strings.ts:2182 +#: src/strings.ts:2184 msgid "Failed to take backup" msgstr "Failed to take backup" -#: src/strings.ts:2184 +#: src/strings.ts:2186 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?" @@ -2589,20 +2593,20 @@ msgstr "Failed to zip files" msgid "Fallback method for 2FA enabled" msgstr "Fallback method for 2FA enabled" -#: src/strings.ts:2011 +#: src/strings.ts:2013 msgid "Favorite" msgstr "Favorite" #: src/strings.ts:321 -#: src/strings.ts:1501 +#: src/strings.ts:1503 msgid "Favorites" msgstr "Favorites" -#: src/strings.ts:2392 +#: src/strings.ts:2394 msgid "February 2022 Week 2" msgstr "February 2022 Week 2" -#: src/strings.ts:2393 +#: src/strings.ts:2395 msgid "February 2022 Week 3" msgstr "February 2022 Week 3" @@ -2634,63 +2638,63 @@ msgstr "File size should be less than {sizeInMB}MB" msgid "File too big" msgstr "File too big" -#: src/strings.ts:1459 +#: src/strings.ts:1461 msgid "Filter attachments by filename, type or hash" msgstr "Filter attachments by filename, type or hash" -#: src/strings.ts:1812 +#: src/strings.ts:1814 msgid "Filter languages" msgstr "Filter languages" -#: src/strings.ts:1648 +#: src/strings.ts:1650 msgid "Fix it" msgstr "Fix it" -#: src/strings.ts:2288 +#: src/strings.ts:2290 msgid "Float image" msgstr "Float image" -#: src/strings.ts:1994 +#: src/strings.ts:1996 msgid "Focus mode" msgstr "Focus mode" -#: src/strings.ts:2142 +#: src/strings.ts:2144 msgid "Follow" msgstr "Follow" -#: src/strings.ts:1259 +#: src/strings.ts:1261 msgid "Follow us on Mastodon" msgstr "Follow us on Mastodon" -#: src/strings.ts:1261 +#: src/strings.ts:1263 msgid "Follow us on Mastodon for updates and news about Notesnook" msgstr "Follow us on Mastodon for updates and news about Notesnook" -#: src/strings.ts:1262 +#: src/strings.ts:1264 msgid "Follow us on X" msgstr "Follow us on X" -#: src/strings.ts:1263 +#: src/strings.ts:1265 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:2253 +#: src/strings.ts:2255 msgid "Font family" msgstr "Font family" -#: src/strings.ts:2254 +#: src/strings.ts:2256 msgid "Font size" msgstr "Font size" -#: src/strings.ts:1665 +#: src/strings.ts:1667 msgid "For a more integrated user experience, try out Notesnook for {platform}" msgstr "For a more integrated user experience, try out Notesnook for {platform}" -#: src/strings.ts:1746 +#: src/strings.ts:1748 msgid "for help regarding how to use the Notesnook Importer." msgstr "for help regarding how to use the Notesnook Importer." -#: src/strings.ts:2174 +#: src/strings.ts:2176 msgid "Force logout from all your other logged in devices." msgstr "Force logout from all your other logged in devices." @@ -2702,7 +2706,7 @@ msgstr "Force pull changes" msgid "Force push changes" msgstr "Force push changes" -#: src/strings.ts:2191 +#: src/strings.ts:2193 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" @@ -2732,55 +2736,55 @@ msgstr "Fri" msgid "Friday" msgstr "Friday" -#: src/strings.ts:2349 +#: src/strings.ts:2351 msgid "From code" msgstr "From code" -#: src/strings.ts:2346 +#: src/strings.ts:2348 msgid "From URL" msgstr "From URL" -#: src/strings.ts:1978 +#: src/strings.ts:1980 msgid "Full name updated" msgstr "Full name updated" -#: src/strings.ts:2185 +#: src/strings.ts:2187 msgid "Full offline mode" msgstr "Full offline mode" -#: src/strings.ts:2301 +#: src/strings.ts:2303 msgid "Full screen" msgstr "Full screen" -#: src/strings.ts:2071 +#: src/strings.ts:2073 msgid "General" msgstr "General" -#: src/strings.ts:1252 +#: src/strings.ts:1254 msgid "Get helpful debug info about the app to help us find bugs." msgstr "Get helpful debug info about the app to help us find bugs." -#: src/strings.ts:1276 +#: src/strings.ts:1278 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:2136 +#: src/strings.ts:2138 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:2138 +#: src/strings.ts:2140 msgid "Get Notesnook app on your iPhone or Android device and access all your notes on the go." msgstr "Get Notesnook app on your iPhone or Android device and access all your notes on the go." -#: src/strings.ts:1363 +#: src/strings.ts:1365 msgid "Get Notesnook Pro" msgstr "Get Notesnook Pro" -#: src/strings.ts:1348 +#: src/strings.ts:1350 msgid "Get Notesnook Pro to enable automatic backups" msgstr "Get Notesnook Pro to enable automatic backups" -#: src/strings.ts:2384 +#: src/strings.ts:2386 msgid "Get Priority support" msgstr "Get Priority support" @@ -2792,7 +2796,7 @@ msgstr "Get Pro" msgid "Get started" msgstr "Get started" -#: src/strings.ts:1864 +#: src/strings.ts:1866 msgid "Getting encryption key..." msgstr "Getting encryption key..." @@ -2804,35 +2808,35 @@ msgstr "Getting information" msgid "Getting recovery codes" msgstr "Getting recovery codes" -#: src/strings.ts:2141 +#: src/strings.ts:2143 msgid "GNU GENERAL PUBLIC LICENSE Version 3" msgstr "GNU GENERAL PUBLIC LICENSE Version 3" -#: src/strings.ts:2204 +#: src/strings.ts:2206 msgid "Go back to notebooks" msgstr "Go back to notebooks" -#: src/strings.ts:2205 +#: src/strings.ts:2207 msgid "Go back to tags" msgstr "Go back to tags" -#: src/strings.ts:1792 +#: src/strings.ts:1794 msgid "Go to" msgstr "Go to" -#: src/strings.ts:1793 +#: src/strings.ts:1795 msgid "Go to #{tag}" msgstr "Go to #{tag}" -#: src/strings.ts:1676 +#: src/strings.ts:1678 msgid "Go to next page" msgstr "Go to next page" -#: src/strings.ts:1677 +#: src/strings.ts:1679 msgid "Go to previous page" msgstr "Go to previous page" -#: src/strings.ts:1285 +#: src/strings.ts:1287 msgid "Go to web app" msgstr "Go to web app" @@ -2844,7 +2848,7 @@ msgstr "Got it" msgid "GROUP" msgstr "GROUP" -#: src/strings.ts:1866 +#: src/strings.ts:1868 msgid "Group added successfully" msgstr "Group added successfully" @@ -2856,23 +2860,23 @@ msgstr "Group by" msgid "Hash copied" msgstr "Hash copied" -#: src/strings.ts:2188 +#: src/strings.ts:2190 msgid "Having problems with sync?" msgstr "Having problems with sync?" -#: src/strings.ts:2327 +#: src/strings.ts:2329 msgid "Heading {level}" msgstr "Heading {level}" -#: src/strings.ts:2255 +#: src/strings.ts:2257 msgid "Headings" msgstr "Headings" -#: src/strings.ts:2362 +#: src/strings.ts:2364 msgid "Height" msgstr "Height" -#: src/strings.ts:1240 +#: src/strings.ts:1242 msgid "Help and support" msgstr "Help and support" @@ -2880,19 +2884,19 @@ msgstr "Help and support" msgid "Help improve Notesnook by sending completely anonymized" msgstr "Help improve Notesnook by sending completely anonymized" -#: src/strings.ts:1356 +#: src/strings.ts:1358 msgid "Hide" msgstr "Hide" -#: src/strings.ts:1166 +#: src/strings.ts:1168 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:2147 +#: src/strings.ts:2149 msgid "Hide note title" msgstr "Hide note title" -#: src/strings.ts:2258 +#: src/strings.ts:2260 msgid "Highlight" msgstr "Highlight" @@ -2900,7 +2904,7 @@ msgstr "Highlight" msgid "History" msgstr "History" -#: src/strings.ts:1507 +#: src/strings.ts:1509 msgid "Home" msgstr "Home" @@ -2908,19 +2912,19 @@ msgstr "Home" msgid "Homepage" msgstr "Homepage" -#: src/strings.ts:1298 +#: src/strings.ts:1300 msgid "Homepage changed to {name}" msgstr "Homepage changed to {name}" -#: src/strings.ts:2308 +#: src/strings.ts:2310 msgid "Horizontal rule" msgstr "Horizontal rule" -#: src/strings.ts:1777 +#: src/strings.ts:1779 msgid "How do you want to recover your account?" msgstr "How do you want to recover your account?" -#: src/strings.ts:1647 +#: src/strings.ts:1649 msgid "How to fix it?" msgstr "How to fix it?" @@ -2948,15 +2952,15 @@ msgstr "I don't have recovery codes" msgid "I have a recovery code" msgstr "I have a recovery code" -#: src/strings.ts:1865 +#: src/strings.ts:1867 msgid "I have saved my key" msgstr "I have saved my key" -#: src/strings.ts:2401 +#: src/strings.ts:2403 msgid "I love cooking and collecting recipes." msgstr "I love cooking and collecting recipes." -#: src/strings.ts:2189 +#: src/strings.ts:2191 msgid "I understand" msgstr "I understand" @@ -2972,19 +2976,19 @@ msgstr "If the editor fails to load even after reloading. Try restarting the app msgid "If this continues to happen, please reach out to us via" msgstr "If this continues to happen, please reach out to us via" -#: src/strings.ts:2092 +#: src/strings.ts:2094 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:2095 +#: src/strings.ts:2097 msgid "If true, Notesnook will start minimized to either the system tray or your system taskbar/dock. This setting only works with Auto start on system startup is enabled." msgstr "If true, Notesnook will start minimized to either the system tray or your system taskbar/dock. This setting only works with Auto start on system startup is enabled." -#: src/strings.ts:1703 +#: src/strings.ts:1705 msgid "If you can't scan the QR code above, enter this text instead (spaces don't matter)" msgstr "If you can't scan the QR code above, enter this text instead (spaces don't matter)" -#: src/strings.ts:1375 +#: src/strings.ts:1377 msgid "" "If you didn't get an email from us or the confirmation link isn't\n" " working," @@ -2992,11 +2996,11 @@ msgstr "" "If you didn't get an email from us or the confirmation link isn't\n" " working," -#: src/strings.ts:1783 +#: src/strings.ts:1785 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:2056 +#: src/strings.ts:2058 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." @@ -3004,7 +3008,7 @@ msgstr "If you face any issue, you can reach out to us anytime." msgid "If you want to ask something in general or need some assistance, we would suggest that you" msgstr "If you want to ask something in general or need some assistance, we would suggest that you" -#: src/strings.ts:2313 +#: src/strings.ts:2315 msgid "Image" msgstr "Image" @@ -3012,11 +3016,11 @@ msgstr "Image" msgid "Image Compression" msgstr "Image Compression" -#: src/strings.ts:2289 +#: src/strings.ts:2291 msgid "Image properties" msgstr "Image properties" -#: src/strings.ts:2284 +#: src/strings.ts:2286 msgid "Image settings" msgstr "Image settings" @@ -3032,19 +3036,19 @@ msgstr "Images" msgid "Images uploaded without compression are slow to load and take more bandwidth. We recommend compressing images unless you need image in original quality." msgstr "Images uploaded without compression are slow to load and take more bandwidth. We recommend compressing images unless you need image in original quality." -#: src/strings.ts:1561 +#: src/strings.ts:1563 msgid "Immediately" msgstr "Immediately" -#: src/strings.ts:2119 +#: src/strings.ts:2121 msgid "Import & export" msgstr "Import & export" -#: src/strings.ts:1730 +#: src/strings.ts:1732 msgid "Import completed" msgstr "Import completed" -#: src/strings.ts:1745 +#: src/strings.ts:1747 msgid "import guide" msgstr "import guide" @@ -3052,7 +3056,7 @@ msgstr "import guide" msgid "Incoming" msgstr "Incoming" -#: src/strings.ts:1816 +#: src/strings.ts:1818 msgid "Incoming note" msgstr "Incoming note" @@ -3060,59 +3064,59 @@ msgstr "Incoming note" msgid "Incorrect {type}" msgstr "Incorrect {type}" -#: src/strings.ts:2370 +#: src/strings.ts:2372 msgid "Increase {title}" msgstr "Increase {title}" -#: src/strings.ts:2214 +#: src/strings.ts:2216 msgid "Insert" msgstr "Insert" -#: src/strings.ts:2367 +#: src/strings.ts:2369 msgid "Insert a {rows}x{columns} table" msgstr "Insert a {rows}x{columns} table" -#: src/strings.ts:2318 +#: src/strings.ts:2320 msgid "Insert a table" msgstr "Insert a table" -#: src/strings.ts:2320 +#: src/strings.ts:2322 msgid "Insert an embed" msgstr "Insert an embed" -#: src/strings.ts:2314 +#: src/strings.ts:2316 msgid "Insert an image" msgstr "Insert an image" -#: src/strings.ts:2265 +#: src/strings.ts:2267 msgid "Insert column left" msgstr "Insert column left" -#: src/strings.ts:2266 +#: src/strings.ts:2268 msgid "Insert column right" msgstr "Insert column right" -#: src/strings.ts:2212 +#: src/strings.ts:2214 msgid "Insert link" msgstr "Insert link" -#: src/strings.ts:2272 +#: src/strings.ts:2274 msgid "Insert row above" msgstr "Insert row above" -#: src/strings.ts:2273 +#: src/strings.ts:2275 msgid "Insert row below" msgstr "Insert row below" -#: src/strings.ts:1663 +#: src/strings.ts:1665 msgid "Install Notesnook" msgstr "Install Notesnook" -#: src/strings.ts:2127 +#: src/strings.ts:2129 msgid "Install update" msgstr "Install update" -#: src/strings.ts:1698 +#: src/strings.ts:1700 msgid "installs" msgstr "installs" @@ -3120,11 +3124,11 @@ msgstr "installs" msgid "Invalid {type}" msgstr "Invalid {type}" -#: src/strings.ts:1970 +#: src/strings.ts:1972 msgid "Invalid CORS proxy url" msgstr "Invalid CORS proxy url" -#: src/strings.ts:1463 +#: src/strings.ts:1465 msgid "Invalid email" msgstr "Invalid email" @@ -3137,7 +3141,7 @@ msgstr "Issue created" msgid "It may take a minute to receive your code." msgstr "It may take a minute to receive your code." -#: src/strings.ts:1569 +#: src/strings.ts:1571 msgid "It seems that your changes could not be saved. What to do next:" msgstr "It seems that your changes could not be saved. What to do next:" @@ -3145,7 +3149,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:2234 +#: src/strings.ts:2236 msgid "Italic" msgstr "Italic" @@ -3158,7 +3162,7 @@ msgid "Item" msgstr "Item" #: src/strings.ts:311 -#: src/strings.ts:1682 +#: src/strings.ts:1684 msgid "items" msgstr "items" @@ -3166,7 +3170,7 @@ msgstr "items" msgid "Items" msgstr "Items" -#: src/strings.ts:2139 +#: src/strings.ts:2141 msgid "Join community" msgstr "Join community" @@ -3174,27 +3178,27 @@ msgstr "Join community" msgid "join our community on Discord." msgstr "join our community on Discord." -#: src/strings.ts:1264 +#: src/strings.ts:1266 msgid "Join our Discord server" msgstr "Join our Discord server" -#: src/strings.ts:1266 +#: src/strings.ts:1268 msgid "Join our Discord server to chat with other users and the team" msgstr "Join our Discord server to chat with other users and the team" -#: src/strings.ts:1256 +#: src/strings.ts:1258 msgid "Join our Telegram group" msgstr "Join our Telegram group" -#: src/strings.ts:1258 +#: src/strings.ts:1260 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:2047 +#: src/strings.ts:2049 msgid "Join the cause" msgstr "Join the cause" -#: src/strings.ts:2005 +#: src/strings.ts:2007 msgid "Jump to group" msgstr "Jump to group" @@ -3202,19 +3206,19 @@ msgstr "Jump to group" msgid "Keep" msgstr "Keep" -#: src/strings.ts:2000 +#: src/strings.ts:2002 msgid "Keep open" msgstr "Keep open" -#: src/strings.ts:1340 +#: src/strings.ts:1342 msgid "Keep your data safe" msgstr "Keep your data safe" -#: src/strings.ts:2107 +#: src/strings.ts:2109 msgid "Languages" msgstr "Languages" -#: src/strings.ts:2209 +#: src/strings.ts:2211 msgid "Last edited at" msgstr "Last edited at" @@ -3242,7 +3246,7 @@ msgstr "Learn more about Monographs" msgid "Learn more about Notesnook Monograph" msgstr "Learn more about Notesnook Monograph" -#: src/strings.ts:1541 +#: src/strings.ts:1543 msgid "Legal" msgstr "Legal" @@ -3250,15 +3254,15 @@ msgstr "Legal" msgid "Let us know if you have faced any issue/bug while using Notesnook. We will try to fix it as soon as possible." msgstr "Let us know if you have faced any issue/bug while using Notesnook. We will try to fix it as soon as possible." -#: src/strings.ts:2140 +#: src/strings.ts:2142 msgid "License" msgstr "License" -#: src/strings.ts:1699 +#: src/strings.ts:1701 msgid "Licensed under {license}" msgstr "Licensed under {license}" -#: src/strings.ts:2304 +#: src/strings.ts:2306 msgid "Lift list item" msgstr "Lift list item" @@ -3266,15 +3270,15 @@ msgstr "Lift list item" msgid "Light" msgstr "Light" -#: src/strings.ts:2334 +#: src/strings.ts:2336 msgid "Line {line}, Column {column}" msgstr "Line {line}, Column {column}" -#: src/strings.ts:1136 +#: src/strings.ts:1138 msgid "Line spacing changed" msgstr "Line spacing changed" -#: src/strings.ts:2238 +#: src/strings.ts:2240 msgid "Link" msgstr "Link" @@ -3286,11 +3290,11 @@ msgstr "Link copied" msgid "Link notebooks" msgstr "Link notebooks" -#: src/strings.ts:2243 +#: src/strings.ts:2245 msgid "Link settings" msgstr "Link settings" -#: src/strings.ts:2364 +#: src/strings.ts:2366 msgid "Link text" msgstr "Link text" @@ -3310,7 +3314,7 @@ msgstr "Link to notebook" msgid "Linked notes" msgstr "Linked notes" -#: src/strings.ts:1575 +#: src/strings.ts:1577 msgid "Linking to a specific block is not available for locked notes." msgstr "Linking to a specific block is not available for locked notes." @@ -3322,7 +3326,7 @@ msgstr "List of" msgid "Load from file" msgstr "Load from file" -#: src/strings.ts:1674 +#: src/strings.ts:1676 msgid "Loading" msgstr "Loading" @@ -3331,7 +3335,7 @@ msgstr "Loading" msgid "Loading {0}, please wait..." msgstr "Loading {0}, please wait..." -#: src/strings.ts:1643 +#: src/strings.ts:1645 msgid "Loading editor. Please wait..." msgstr "Loading editor. Please wait..." @@ -3343,7 +3347,7 @@ msgstr "Loading subscription details" msgid "Loading themes..." msgstr "Loading themes..." -#: src/strings.ts:1308 +#: src/strings.ts:1310 msgid "Loading trash" msgstr "Loading trash" @@ -3379,7 +3383,7 @@ msgstr "Lock" msgid "Lock note" msgstr "Lock note" -#: src/strings.ts:1168 +#: src/strings.ts:1170 msgid "Lock the app with a password or pin" msgstr "Lock the app with a password or pin" @@ -3391,7 +3395,7 @@ msgstr "Locked notes cannot be pinned" msgid "Locked notes cannot be published" msgstr "Locked notes cannot be published" -#: src/strings.ts:2172 +#: src/strings.ts:2174 msgid "Log out from all other devices" msgstr "Log out from all other devices" @@ -3403,7 +3407,7 @@ msgstr "Logging out will clear all data stored on THIS DEVICE. Make sure you hav msgid "Logging out. Please wait..." msgstr "Logging out. Please wait..." -#: src/strings.ts:1761 +#: src/strings.ts:1763 msgid "Logging you in" msgstr "Logging you in" @@ -3423,7 +3427,7 @@ msgstr "Login required" msgid "Login successful" msgstr "Login successful" -#: src/strings.ts:1343 +#: src/strings.ts:1345 msgid "Login to encrypt and sync notes" msgstr "Login to encrypt and sync notes" @@ -3443,11 +3447,11 @@ msgstr "Logout and clear data" msgid "Logout from this device" msgstr "Logout from this device" -#: src/strings.ts:1393 +#: src/strings.ts:1395 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:2339 +#: src/strings.ts:2341 msgid "Make task list readonly" msgstr "Make task list readonly" @@ -3475,11 +3479,11 @@ msgstr "Manage your account related settings here" msgid "Manage your attachments in one place" msgstr "Manage your attachments in one place" -#: src/strings.ts:1195 +#: src/strings.ts:1197 msgid "Manage your backups and restore data" msgstr "Manage your backups and restore data" -#: src/strings.ts:1229 +#: src/strings.ts:1231 msgid "Manage your reminders" msgstr "Manage your reminders" @@ -3487,51 +3491,51 @@ msgstr "Manage your reminders" msgid "Manage your sync settings here" msgstr "Manage your sync settings here" -#: src/strings.ts:1421 +#: src/strings.ts:1423 msgid "Mark important notes by adding them to favorites." msgstr "Mark important notes by adding them to favorites." -#: src/strings.ts:1143 +#: src/strings.ts:1145 msgid "Markdown shortcuts" msgstr "Markdown shortcuts" -#: src/strings.ts:1149 +#: src/strings.ts:1151 msgid "Marketing emails" msgstr "Marketing emails" -#: src/strings.ts:2352 +#: src/strings.ts:2354 msgid "Match case" msgstr "Match case" -#: src/strings.ts:2353 +#: src/strings.ts:2355 msgid "Match whole word" msgstr "Match whole word" -#: src/strings.ts:2260 +#: src/strings.ts:2262 msgid "Math (inline)" msgstr "Math (inline)" -#: src/strings.ts:2311 +#: src/strings.ts:2313 msgid "Math & formulas" msgstr "Math & formulas" -#: src/strings.ts:2019 +#: src/strings.ts:2021 msgid "Maximize" msgstr "Maximize" -#: src/strings.ts:2049 +#: src/strings.ts:2051 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:2394 +#: src/strings.ts:2396 msgid "Meetings" msgstr "Meetings" -#: src/strings.ts:1758 +#: src/strings.ts:1760 msgid "Member since {date}" msgstr "Member since {date}" -#: src/strings.ts:2271 +#: src/strings.ts:2273 msgid "Merge cells" msgstr "Merge cells" @@ -3549,15 +3553,15 @@ msgstr "Migration failed" msgid "min" msgstr "min" -#: src/strings.ts:1988 +#: src/strings.ts:1990 msgid "Minimal" msgstr "Minimal" -#: src/strings.ts:2018 +#: src/strings.ts:2020 msgid "Minimize" msgstr "Minimize" -#: src/strings.ts:2096 +#: src/strings.ts:2098 msgid "Minimize to system tray" msgstr "Minimize to system tray" @@ -3573,7 +3577,7 @@ msgstr "Mon" msgid "Monday" msgstr "Monday" -#: src/strings.ts:1610 +#: src/strings.ts:1612 msgid "Monograph server" msgstr "Monograph server" @@ -3583,19 +3587,19 @@ msgstr "Monograph URL copied" #: src/strings.ts:322 #: src/strings.ts:927 -#: src/strings.ts:1509 +#: src/strings.ts:1511 msgid "Monographs" msgstr "Monographs" -#: src/strings.ts:1403 +#: src/strings.ts:1405 msgid "Monographs can be encrypted with a secret key and shared with anyone." msgstr "Monographs can be encrypted with a secret key and shared with anyone." -#: src/strings.ts:1398 +#: src/strings.ts:1400 msgid "Monographs enable you to share your notes in a secure and private way." msgstr "Monographs enable you to share your notes in a secure and private way." -#: src/strings.ts:1819 +#: src/strings.ts:1821 msgid "month" msgstr "month" @@ -3604,11 +3608,11 @@ msgid "Month" msgstr "Month" #: src/strings.ts:169 -#: src/strings.ts:1549 +#: src/strings.ts:1551 msgid "Monthly" msgstr "Monthly" -#: src/strings.ts:2291 +#: src/strings.ts:2293 msgid "More" msgstr "More" @@ -3616,15 +3620,15 @@ msgstr "More" msgid "Move" msgstr "Move" -#: src/strings.ts:2340 +#: src/strings.ts:2342 msgid "Move all checked tasks to bottom" msgstr "Move all checked tasks to bottom" -#: src/strings.ts:2267 +#: src/strings.ts:2269 msgid "Move column left" msgstr "Move column left" -#: src/strings.ts:2268 +#: src/strings.ts:2270 msgid "Move column right" msgstr "Move column right" @@ -3636,11 +3640,11 @@ msgstr "Move notebook" msgid "Move notes" msgstr "Move notes" -#: src/strings.ts:2275 +#: src/strings.ts:2277 msgid "Move row down" msgstr "Move row down" -#: src/strings.ts:2274 +#: src/strings.ts:2276 msgid "Move row up" msgstr "Move row up" @@ -3656,7 +3660,7 @@ msgstr "Move to top" msgid "Move to trash" msgstr "Move to trash" -#: src/strings.ts:1156 +#: src/strings.ts:1158 msgid "Multi-layer encryption to most important notes" msgstr "Multi-layer encryption to most important notes" @@ -3664,7 +3668,7 @@ msgstr "Multi-layer encryption to most important notes" msgid "Name" msgstr "Name" -#: src/strings.ts:1667 +#: src/strings.ts:1669 msgid "Native high-performance encryption" msgstr "Native high-performance encryption" @@ -3672,7 +3676,7 @@ msgstr "Native high-performance encryption" msgid "Never" msgstr "Never" -#: src/strings.ts:1323 +#: src/strings.ts:1325 msgid "Never ask again" msgstr "Never ask again" @@ -3692,11 +3696,11 @@ msgstr "New - old" msgid "New color" msgstr "New color" -#: src/strings.ts:1825 +#: src/strings.ts:1827 msgid "New Email" msgstr "New Email" -#: src/strings.ts:1135 +#: src/strings.ts:1137 msgid "New lines will be double spaced (old ones won't be affected)." msgstr "New lines will be double spaced (old ones won't be affected)." @@ -3708,11 +3712,11 @@ msgstr "New note" msgid "New notebook" msgstr "New notebook" -#: src/strings.ts:1461 +#: src/strings.ts:1463 msgid "New password" msgstr "New password" -#: src/strings.ts:1467 +#: src/strings.ts:1469 msgid "New pin" msgstr "New pin" @@ -3724,7 +3728,7 @@ msgstr "New reminder" msgid "New tab" msgstr "New tab" -#: src/strings.ts:1349 +#: src/strings.ts:1351 msgid "New update available" msgstr "New update available" @@ -3732,7 +3736,7 @@ msgstr "New update available" msgid "New version" msgstr "New version" -#: src/strings.ts:2003 +#: src/strings.ts:2005 msgid "Newest - oldest" msgstr "Newest - oldest" @@ -3744,7 +3748,7 @@ msgstr "Newly created notes will be uncategorized" msgid "Next" msgstr "Next" -#: src/strings.ts:2356 +#: src/strings.ts:2358 msgid "Next match" msgstr "Next match" @@ -3772,7 +3776,7 @@ msgstr "No blocks linked" msgid "No color selected" msgstr "No color selected" -#: src/strings.ts:1215 +#: src/strings.ts:1217 msgid "No directory selected" msgstr "No directory selected" @@ -3780,11 +3784,11 @@ msgstr "No directory selected" msgid "No downloads in progress." msgstr "No downloads in progress." -#: src/strings.ts:1963 +#: src/strings.ts:1965 msgid "No encryption key found" msgstr "No encryption key found" -#: src/strings.ts:1644 +#: src/strings.ts:1646 msgid "No headings found" msgstr "No headings found" @@ -3812,7 +3816,7 @@ msgstr "No references found of this note" msgid "No results found for \"{query}\"" msgstr "No results found for \"{query}\"" -#: src/strings.ts:1496 +#: src/strings.ts:1498 msgid "No results found for {query}" msgstr "No results found for {query}" @@ -3828,7 +3832,7 @@ msgstr "No updates available" msgid "None" msgstr "None" -#: src/strings.ts:1993 +#: src/strings.ts:1995 msgid "Normal mode" msgstr "Normal mode" @@ -3849,7 +3853,7 @@ msgstr "Note" msgid "Note copied to clipboard" msgstr "Note copied to clipboard" -#: src/strings.ts:1928 +#: src/strings.ts:1930 msgid "Note does not exist" msgstr "Note does not exist" @@ -3865,7 +3869,7 @@ msgstr "Note locked" msgid "Note restored from history" msgstr "Note restored from history" -#: src/strings.ts:1564 +#: src/strings.ts:1566 msgid "Note title" msgstr "Note title" @@ -3877,7 +3881,7 @@ msgstr "Note unlocked" msgid "Note version history is local only." msgstr "Note version history is local only." -#: src/strings.ts:1208 +#: src/strings.ts:1210 msgid "NOTE: Creating a backup with attachments can take a while, and also fail completely. The app will try to resume/restart the backup in case of interruptions." msgstr "NOTE: Creating a backup with attachments can take a while, and also fail completely. The app will try to resume/restart the backup in case of interruptions." @@ -3886,7 +3890,7 @@ msgid "notebook" msgstr "notebook" #: src/strings.ts:296 -#: src/strings.ts:1500 +#: src/strings.ts:1502 msgid "Notebook" msgstr "Notebook" @@ -3896,15 +3900,15 @@ msgstr "notebooks" #: src/strings.ts:258 #: src/strings.ts:316 -#: src/strings.ts:1499 +#: src/strings.ts:1501 msgid "Notebooks" msgstr "Notebooks" -#: src/strings.ts:1773 +#: src/strings.ts:1775 msgid "NOTEBOOKS" msgstr "NOTEBOOKS" -#: src/strings.ts:2219 +#: src/strings.ts:2221 msgid "Notebooks are the best way to organize your notes." msgstr "Notebooks are the best way to organize your notes." @@ -3913,7 +3917,7 @@ msgid "notes" msgstr "notes" #: src/strings.ts:315 -#: src/strings.ts:1498 +#: src/strings.ts:1500 msgid "Notes" msgstr "Notes" @@ -3921,15 +3925,15 @@ msgstr "Notes" msgid "Notes exported as {path} successfully" msgstr "Notes exported as {path} successfully" -#: src/strings.ts:1729 +#: src/strings.ts:1731 msgid "notes imported" msgstr "notes imported" -#: src/strings.ts:2046 +#: src/strings.ts:2048 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:2121 +#: src/strings.ts:2123 msgid "Notesnook Importer" msgstr "Notesnook Importer" @@ -3937,7 +3941,7 @@ msgstr "Notesnook Importer" msgid "Notesnook Pro" msgstr "Notesnook Pro" -#: src/strings.ts:2153 +#: src/strings.ts:2155 msgid "" "Notesnook uses the following DNS providers:\n" "\n" @@ -3961,23 +3965,23 @@ msgstr "Notesnook will send you a 2FA code on your email when prompted" msgid "Notesnook will send you an SMS with a 2FA code when prompted" msgstr "Notesnook will send you an SMS with a 2FA code when prompted" -#: src/strings.ts:2116 +#: src/strings.ts:2118 msgid "Notifications" msgstr "Notifications" -#: src/strings.ts:1358 +#: src/strings.ts:1360 msgid "Notifications disabled" msgstr "Notifications disabled" -#: src/strings.ts:2251 +#: src/strings.ts:2253 msgid "Numbered list" msgstr "Numbered list" -#: src/strings.ts:1697 +#: src/strings.ts:1699 msgid "of" msgstr "of" -#: src/strings.ts:1581 +#: src/strings.ts:1583 msgid "Off" msgstr "Off" @@ -3985,7 +3989,7 @@ msgstr "Off" msgid "Offline" msgstr "Offline" -#: src/strings.ts:2206 +#: src/strings.ts:2208 msgid "Okay" msgstr "Okay" @@ -3993,15 +3997,15 @@ msgstr "Okay" msgid "Old - new" msgstr "Old - new" -#: src/strings.ts:1460 +#: src/strings.ts:1462 msgid "Old password" msgstr "Old password" -#: src/strings.ts:1814 +#: src/strings.ts:1816 msgid "Older version" msgstr "Older version" -#: src/strings.ts:2002 +#: src/strings.ts:2004 msgid "Oldest - newest" msgstr "Oldest - newest" @@ -4009,7 +4013,7 @@ msgstr "Oldest - newest" msgid "Once your password is changed, please make sure to save the new account recovery key" msgstr "Once your password is changed, please make sure to save the new account recovery key" -#: src/strings.ts:1750 +#: src/strings.ts:1752 msgid "Only .zip files are supported." msgstr "Only .zip files are supported." @@ -4025,11 +4029,11 @@ msgstr "Open file location" msgid "Open in browser" msgstr "Open in browser" -#: src/strings.ts:1287 +#: src/strings.ts:1289 msgid "Open in browser to manage subscription" msgstr "Open in browser to manage subscription" -#: src/strings.ts:2302 +#: src/strings.ts:2304 msgid "Open in new tab" msgstr "Open in new tab" @@ -4037,27 +4041,27 @@ msgstr "Open in new tab" msgid "Open issue" msgstr "Open issue" -#: src/strings.ts:2241 +#: src/strings.ts:2243 msgid "Open link" msgstr "Open link" -#: src/strings.ts:1842 +#: src/strings.ts:1844 msgid "Open note" msgstr "Open note" -#: src/strings.ts:1361 +#: src/strings.ts:1363 msgid "Open settings" msgstr "Open settings" -#: src/strings.ts:2303 +#: src/strings.ts:2305 msgid "Open source" msgstr "Open source" -#: src/strings.ts:1272 +#: src/strings.ts:1274 msgid "Open source libraries used in Notesnook" msgstr "Open source libraries used in Notesnook" -#: src/strings.ts:1271 +#: src/strings.ts:1273 msgid "Open source licenses" msgstr "Open source licenses" @@ -4069,7 +4073,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:1836 +#: src/strings.ts:1838 msgid "Optional" msgstr "Optional" @@ -4077,11 +4081,11 @@ msgstr "Optional" msgid "or email us at" msgstr "or email us at" -#: src/strings.ts:2001 +#: src/strings.ts:2003 msgid "Order by" msgstr "Order by" -#: src/strings.ts:2199 +#: src/strings.ts:2201 msgid "Order ID" msgstr "Order ID" @@ -4090,19 +4094,19 @@ msgstr "Order ID" msgid "Orphaned" msgstr "Orphaned" -#: src/strings.ts:2124 +#: src/strings.ts:2126 msgid "Other" msgstr "Other" -#: src/strings.ts:2323 +#: src/strings.ts:2325 msgid "Outline list" msgstr "Outline list" -#: src/strings.ts:2326 +#: src/strings.ts:2328 msgid "Paragraph" msgstr "Paragraph" -#: src/strings.ts:2080 +#: src/strings.ts:2082 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." @@ -4110,7 +4114,7 @@ msgstr "Partial backups contain all your data except attachments. They are creat msgid "Partially refunded" msgstr "Partially refunded" -#: src/strings.ts:2379 +#: src/strings.ts:2381 msgid "Passed" msgstr "Passed" @@ -4146,23 +4150,23 @@ msgstr "Password protection" msgid "Password updated" msgstr "Password updated" -#: src/strings.ts:2060 +#: src/strings.ts:2062 msgid "Password/pin" msgstr "Password/pin" -#: src/strings.ts:2227 +#: src/strings.ts:2229 msgid "Paste" msgstr "Paste" -#: src/strings.ts:2348 +#: src/strings.ts:2350 msgid "Paste embed code here. Only iframes are supported." msgstr "Paste embed code here. Only iframes are supported." -#: src/strings.ts:2363 +#: src/strings.ts:2365 msgid "Paste image URL here" msgstr "Paste image URL here" -#: src/strings.ts:2178 +#: src/strings.ts:2180 msgid "Payment method" msgstr "Payment method" @@ -4170,11 +4174,11 @@ msgstr "Payment method" msgid "PDF is password protected" msgstr "PDF is password protected" -#: src/strings.ts:1708 +#: src/strings.ts:1710 msgid "phone number" msgstr "phone number" -#: src/strings.ts:1827 +#: src/strings.ts:1829 msgid "Phone number" msgstr "Phone number" @@ -4186,7 +4190,7 @@ msgstr "Phone number not entered" msgid "Pin" msgstr "Pin" -#: src/strings.ts:1669 +#: src/strings.ts:1671 msgid "Pin notes in notifications drawer" msgstr "Pin notes in notifications drawer" @@ -4198,7 +4202,7 @@ msgstr "Pin to notifications" msgid "Pinned" msgstr "Pinned" -#: src/strings.ts:1345 +#: src/strings.ts:1347 msgid "Please confirm your email to sync notes" msgstr "Please confirm your email to sync notes" @@ -4207,7 +4211,7 @@ msgid "Please confirm your identity by entering a recovery code." msgstr "Please confirm your identity by entering a recovery code." #: src/strings.ts:967 -#: src/strings.ts:2211 +#: src/strings.ts:2213 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." @@ -4220,31 +4224,31 @@ msgstr "Please confirm your identity by entering the authentication code sent to msgid "Please confirm your identity by entering the authentication code sent to your email address." msgstr "Please confirm your identity by entering the authentication code sent to your email address." -#: src/strings.ts:1888 +#: src/strings.ts:1890 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:1493 +#: src/strings.ts:1495 msgid "Please enter a valid email address" msgstr "Please enter a valid email address" -#: src/strings.ts:1933 +#: src/strings.ts:1935 msgid "Please enter a valid hex color (e.g. #ffffff)" msgstr "Please enter a valid hex color (e.g. #ffffff)" -#: src/strings.ts:1494 +#: src/strings.ts:1496 msgid "Please enter a valid phone number with country code" msgstr "Please enter a valid phone number with country code" -#: src/strings.ts:1614 +#: src/strings.ts:1616 msgid "Please enter a valid URL" msgstr "Please enter a valid URL" -#: src/strings.ts:1599 +#: src/strings.ts:1601 msgid "Please enter password of this backup file" msgstr "Please enter password of this backup file" -#: src/strings.ts:2222 +#: src/strings.ts:2224 msgid "Please enter the password to decrypt and restore this backup." msgstr "Please enter the password to decrypt and restore this backup." @@ -4252,11 +4256,11 @@ msgstr "Please enter the password to decrypt and restore this backup." msgid "Please enter the password to unlock the PDF and view the content." msgstr "Please enter the password to unlock the PDF and view the content." -#: src/strings.ts:1844 +#: src/strings.ts:1846 msgid "Please enter the password to unlock this note" msgstr "Please enter the password to unlock this note" -#: src/strings.ts:1841 +#: src/strings.ts:1843 msgid "Please enter the password to view this version" msgstr "Please enter the password to view this version" @@ -4272,7 +4276,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:1912 +#: src/strings.ts:1914 msgid "Please enter your vault password to continue" msgstr "Please enter your vault password to continue" @@ -4280,7 +4284,7 @@ msgstr "Please enter your vault password to continue" msgid "Please fill all the fields to continue." msgstr "Please fill all the fields to continue." -#: src/strings.ts:1535 +#: src/strings.ts:1537 msgid "Please grant notifications permission to add new reminders." msgstr "Please grant notifications permission to add new reminders." @@ -4292,31 +4296,31 @@ msgstr "Please make sure you have saved the recovery key. Tap one more time to c msgid "Please note that we will respond to your issue on the given link. We recommend that you save it." msgstr "Please note that we will respond to your issue on the given link. We recommend that you save it." -#: src/strings.ts:1744 +#: src/strings.ts:1746 msgid "Please refer to the" msgstr "Please refer to the" -#: src/strings.ts:1536 +#: src/strings.ts:1538 msgid "Please select the day to repeat the reminder on" msgstr "Please select the day to repeat the reminder on" -#: src/strings.ts:1377 +#: src/strings.ts:1379 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:2368 +#: src/strings.ts:2370 msgid "Please set a table size" msgstr "Please set a table size" -#: src/strings.ts:1537 +#: src/strings.ts:1539 msgid "Please set title of the reminder" msgstr "Please set title of the reminder" -#: src/strings.ts:1966 +#: src/strings.ts:1968 msgid "Please try again" msgstr "Please try again" -#: src/strings.ts:1986 +#: src/strings.ts:1988 msgid "Please upgrade to Pro to enable automatic backups." msgstr "Please upgrade to Pro to enable automatic backups." @@ -4332,8 +4336,8 @@ msgstr "Please wait" msgid "Please wait before requesting a new code" msgstr "Please wait before requesting a new code" -#: src/strings.ts:1380 -#: src/strings.ts:1530 +#: src/strings.ts:1382 +#: src/strings.ts:1532 msgid "Please wait before requesting another email" msgstr "Please wait before requesting another email" @@ -4349,7 +4353,7 @@ msgstr "Please wait while we export your not." msgid "Please wait while we export your notes." msgstr "Please wait while we export your notes." -#: src/strings.ts:1873 +#: src/strings.ts:1875 msgid "Please wait while we finalize your account." msgstr "Please wait while we finalize your account." @@ -4361,15 +4365,15 @@ msgstr "Please wait while we load your subscription" msgid "Please wait while we log you out." msgstr "Please wait while we log you out." -#: src/strings.ts:1894 +#: src/strings.ts:1896 msgid "Please wait while we reset your account password." msgstr "Please wait while we reset your account password." -#: src/strings.ts:1592 +#: src/strings.ts:1594 msgid "Please wait while we restore your backup..." msgstr "Please wait while we restore your backup..." -#: src/strings.ts:1876 +#: src/strings.ts:1878 msgid "Please wait while we send you recovery instructions" msgstr "Please wait while we send you recovery instructions" @@ -4381,12 +4385,12 @@ msgstr "Please wait while we sync all your data." msgid "Please wait while we verify your subscription" msgstr "Please wait while we verify your subscription" -#: src/strings.ts:1762 -#: src/strings.ts:1869 +#: src/strings.ts:1764 +#: src/strings.ts:1871 msgid "Please wait while you are authenticated." msgstr "Please wait while you are authenticated." -#: src/strings.ts:1881 +#: src/strings.ts:1883 msgid "Please wait while your data is downloaded & decrypted." msgstr "Please wait while your data is downloaded & decrypted." @@ -4394,7 +4398,7 @@ msgstr "Please wait while your data is downloaded & decrypted." msgid "Preparing note for share" msgstr "Preparing note for share" -#: src/strings.ts:1594 +#: src/strings.ts:1596 msgid "Preparing to restore backup file..." msgstr "Preparing to restore backup file..." @@ -4402,19 +4406,19 @@ msgstr "Preparing to restore backup file..." msgid "PRESETS" msgstr "PRESETS" -#: src/strings.ts:2098 +#: src/strings.ts:2100 msgid "Pressing \"—\" will hide the app in your system tray." msgstr "Pressing \"—\" will hide the app in your system tray." -#: src/strings.ts:2101 +#: src/strings.ts:2103 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:2149 +#: src/strings.ts:2151 msgid "Prevent note title from appearing in tab/window title." msgstr "Prevent note title from appearing in tab/window title." -#: src/strings.ts:2290 +#: src/strings.ts:2292 msgid "Preview attachment" msgstr "Preview attachment" @@ -4422,23 +4426,23 @@ msgstr "Preview attachment" msgid "Preview not available, content is encrypted." msgstr "Preview not available, content is encrypted." -#: src/strings.ts:2357 +#: src/strings.ts:2359 msgid "Previous match" msgstr "Previous match" -#: src/strings.ts:2013 +#: src/strings.ts:2015 msgid "Print" msgstr "Print" -#: src/strings.ts:2123 +#: src/strings.ts:2125 msgid "Privacy" msgstr "Privacy" -#: src/strings.ts:1145 +#: src/strings.ts:1147 msgid "Privacy & security" msgstr "Privacy & security" -#: src/strings.ts:1634 +#: src/strings.ts:1636 msgid "Privacy comes first." msgstr "Privacy comes first." @@ -4446,11 +4450,11 @@ msgstr "Privacy comes first." msgid "Privacy for everyone" msgstr "Privacy for everyone" -#: src/strings.ts:1164 +#: src/strings.ts:1166 msgid "Privacy mode" msgstr "Privacy mode" -#: src/strings.ts:1269 +#: src/strings.ts:1271 msgid "Privacy policy" msgstr "Privacy policy" @@ -4470,31 +4474,31 @@ msgstr "Private." msgid "privileged few" msgstr "privileged few" -#: src/strings.ts:1700 +#: src/strings.ts:1702 msgid "Pro" msgstr "Pro" -#: src/strings.ts:2026 +#: src/strings.ts:2028 msgid "Processing {collection}..." msgstr "Processing {collection}..." -#: src/strings.ts:2025 +#: src/strings.ts:2027 msgid "Processing..." msgstr "Processing..." -#: src/strings.ts:1224 +#: src/strings.ts:1226 msgid "Productivity" msgstr "Productivity" -#: src/strings.ts:2112 +#: src/strings.ts:2114 msgid "Profile" msgstr "Profile" -#: src/strings.ts:1934 +#: src/strings.ts:1936 msgid "Profile updated" msgstr "Profile updated" -#: src/strings.ts:1845 +#: src/strings.ts:1847 msgid "Properties" msgstr "Properties" @@ -4502,7 +4506,7 @@ msgstr "Properties" msgid "Protect your notes" msgstr "Protect your notes" -#: src/strings.ts:2160 +#: src/strings.ts:2162 msgid "Proxy" msgstr "Proxy" @@ -4534,31 +4538,31 @@ msgstr "Published note can only be viewed by someone with the password." msgid "Published note link will be automatically deleted once it is viewed by someone." msgstr "Published note link will be automatically deleted once it is viewed by someone." -#: src/strings.ts:1352 +#: src/strings.ts:1354 msgid "Quick note" msgstr "Quick note" -#: src/strings.ts:1225 +#: src/strings.ts:1227 msgid "Quick note notification" msgstr "Quick note notification" -#: src/strings.ts:1671 +#: src/strings.ts:1673 msgid "Quick note widgets" msgstr "Quick note widgets" -#: src/strings.ts:1227 +#: src/strings.ts:1229 msgid "Quickly create a note from the notification" msgstr "Quickly create a note from the notification" -#: src/strings.ts:2310 +#: src/strings.ts:2312 msgid "Quote" msgstr "Quote" -#: src/strings.ts:1338 +#: src/strings.ts:1340 msgid "Rate Notesnook on App Store" msgstr "Rate Notesnook on App Store" -#: src/strings.ts:1339 +#: src/strings.ts:1341 msgid "Rate Notesnook on Play Store" msgstr "Rate Notesnook on Play Store" @@ -4574,39 +4578,39 @@ msgstr "Read full release notes on Github" msgid "Read only" msgstr "Read only" -#: src/strings.ts:1249 +#: src/strings.ts:1251 msgid "Read the documentation to learn more about Notesnook" msgstr "Read the documentation to learn more about Notesnook" -#: src/strings.ts:1270 +#: src/strings.ts:1272 msgid "Read the privacy policy" msgstr "Read the privacy policy" -#: src/strings.ts:1268 +#: src/strings.ts:1270 msgid "Read the terms of service" msgstr "Read the terms of service" -#: src/strings.ts:1595 +#: src/strings.ts:1597 msgid "Reading backup file..." msgstr "Reading backup file..." -#: src/strings.ts:2202 +#: src/strings.ts:2204 msgid "Receipt" msgstr "Receipt" -#: src/strings.ts:1590 +#: src/strings.ts:1592 msgid "RECENT BACKUPS" msgstr "RECENT BACKUPS" -#: src/strings.ts:2375 +#: src/strings.ts:2377 msgid "Recheck all" msgstr "Recheck all" -#: src/strings.ts:1980 +#: src/strings.ts:1982 msgid "Rechecking failed" msgstr "Rechecking failed" -#: src/strings.ts:2400 +#: src/strings.ts:2402 msgid "Recipes" msgstr "Recipes" @@ -4646,19 +4650,19 @@ msgstr "Recovery key QR code saved" msgid "Recovery key text file saved" msgstr "Recovery key text file saved" -#: src/strings.ts:1895 +#: src/strings.ts:1897 msgid "Recovery successful!" msgstr "Recovery successful!" -#: src/strings.ts:2412 +#: src/strings.ts:2414 msgid "Redeem" msgstr "Redeem" -#: src/strings.ts:2409 +#: src/strings.ts:2411 msgid "Redeem gift code" msgstr "Redeem gift code" -#: src/strings.ts:2411 +#: src/strings.ts:2413 msgid "Redeeming gift code" msgstr "Redeeming gift code" @@ -4678,7 +4682,7 @@ msgstr "References" msgid "Regenerate" msgstr "Regenerate" -#: src/strings.ts:2066 +#: src/strings.ts:2068 msgid "Register" msgstr "Register" @@ -4686,15 +4690,15 @@ msgstr "Register" msgid "Release notes" msgstr "Release notes" -#: src/strings.ts:1649 +#: src/strings.ts:1651 msgid "Reload app" msgstr "Reload app" -#: src/strings.ts:1807 +#: src/strings.ts:1809 msgid "Relogin to your account" msgstr "Relogin to your account" -#: src/strings.ts:1775 +#: src/strings.ts:1777 msgid "Remembered your password?" msgstr "Remembered your password?" @@ -4706,7 +4710,7 @@ msgstr "Remind me" msgid "Remind me in" msgstr "Remind me in" -#: src/strings.ts:1487 +#: src/strings.ts:1489 msgid "Remind me of..." msgstr "Remind me of..." @@ -4718,11 +4722,11 @@ msgstr "reminder" msgid "Reminder" msgstr "Reminder" -#: src/strings.ts:1230 +#: src/strings.ts:1232 msgid "Reminder notifications" msgstr "Reminder notifications" -#: src/strings.ts:1538 +#: src/strings.ts:1540 msgid "Reminder time cannot be earlier than the current time." msgstr "Reminder time cannot be earlier than the current time." @@ -4731,16 +4735,16 @@ msgid "reminders" msgstr "reminders" #: src/strings.ts:318 -#: src/strings.ts:1228 -#: src/strings.ts:1502 +#: src/strings.ts:1230 +#: src/strings.ts:1504 msgid "Reminders" msgstr "Reminders" -#: src/strings.ts:1360 +#: src/strings.ts:1362 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:1932 +#: src/strings.ts:1934 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." @@ -4748,23 +4752,23 @@ msgstr "Reminders will not be active on this device as it does not support notif msgid "Remove" msgstr "Remove" -#: src/strings.ts:1159 +#: src/strings.ts:1161 msgid "Remove all notes from the vault." msgstr "Remove all notes from the vault." -#: src/strings.ts:1186 +#: src/strings.ts:1188 msgid "Remove app lock password" msgstr "Remove app lock password" -#: src/strings.ts:1190 +#: src/strings.ts:1192 msgid "Remove app lock password, app lock will be disabled if no other security method is enabled." msgstr "Remove app lock password, app lock will be disabled if no other security method is enabled." -#: src/strings.ts:1185 +#: src/strings.ts:1187 msgid "Remove app lock pin" msgstr "Remove app lock pin" -#: src/strings.ts:1188 +#: src/strings.ts:1190 msgid "Remove app lock pin, app lock will be disabled if no other security method is enabled." msgstr "Remove app lock pin, app lock will be disabled if no other security method is enabled." @@ -4772,7 +4776,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:2294 +#: src/strings.ts:2296 msgid "Remove attachment" msgstr "Remove attachment" @@ -4788,7 +4792,7 @@ msgstr "Remove from notebook" msgid "Remove full name" msgstr "Remove full name" -#: src/strings.ts:2240 +#: src/strings.ts:2242 msgid "Remove link" msgstr "Remove link" @@ -4820,19 +4824,19 @@ msgstr "Reorder" msgid "Repeats daily at {date}" msgstr "Repeats daily at {date}" -#: src/strings.ts:2354 +#: src/strings.ts:2356 msgid "Replace" msgstr "Replace" -#: src/strings.ts:2355 +#: src/strings.ts:2357 msgid "Replace all" msgstr "Replace all" -#: src/strings.ts:2143 +#: src/strings.ts:2145 msgid "Report" msgstr "Report" -#: src/strings.ts:1241 +#: src/strings.ts:1243 msgid "Report an issue" msgstr "Report an issue" @@ -4849,55 +4853,55 @@ msgstr "Resend code in ({seconds})" msgid "Resend code{0}" msgstr "Resend code{0}" -#: src/strings.ts:1383 +#: src/strings.ts:1385 msgid "Resend email" msgstr "Resend email" -#: src/strings.ts:1799 +#: src/strings.ts:1801 msgid "Reset" msgstr "Reset" -#: src/strings.ts:1891 +#: src/strings.ts:1893 msgid "Reset account password" msgstr "Reset account password" -#: src/strings.ts:1800 +#: src/strings.ts:1802 msgid "Reset selection" msgstr "Reset selection" -#: src/strings.ts:1627 +#: src/strings.ts:1629 msgid "Reset server urls" msgstr "Reset server urls" -#: src/strings.ts:2009 +#: src/strings.ts:2011 msgid "Reset sidebar" msgstr "Reset sidebar" -#: src/strings.ts:1132 +#: src/strings.ts:1133 msgid "Reset the toolbar to default settings" msgstr "Reset the toolbar to default settings" -#: src/strings.ts:1131 +#: src/strings.ts:1132 msgid "Reset toolbar" msgstr "Reset toolbar" -#: src/strings.ts:1893 +#: src/strings.ts:1895 msgid "Resetting account password ({progress})" msgstr "Resetting account password ({progress})" -#: src/strings.ts:1968 +#: src/strings.ts:1970 msgid "Restart now" msgstr "Restart now" -#: src/strings.ts:1626 +#: src/strings.ts:1628 msgid "Restart the app for changes to take effect." msgstr "Restart the app for changes to take effect." -#: src/strings.ts:1299 +#: src/strings.ts:1301 msgid "Restart the app to apply the changes" msgstr "Restart the app to apply the changes" -#: src/strings.ts:1572 +#: src/strings.ts:1574 msgid "Restart the app." msgstr "Restart the app." @@ -4905,11 +4909,11 @@ msgstr "Restart the app." msgid "Restore" msgstr "Restore" -#: src/strings.ts:1219 +#: src/strings.ts:1221 msgid "Restore backup" msgstr "Restore backup" -#: src/strings.ts:2382 +#: src/strings.ts:2384 msgid "Restore backup?" msgstr "Restore backup?" @@ -4917,15 +4921,15 @@ msgstr "Restore backup?" msgid "Restore failed" msgstr "Restore failed" -#: src/strings.ts:1589 +#: src/strings.ts:1591 msgid "Restore from files" msgstr "Restore from files" -#: src/strings.ts:1639 +#: src/strings.ts:1641 msgid "Restore this version" msgstr "Restore this version" -#: src/strings.ts:1220 +#: src/strings.ts:1222 msgid "Restore your data from a backup" msgstr "Restore your data from a backup" @@ -4941,7 +4945,7 @@ msgstr "Restoring" msgid "Restoring {collection}..." msgstr "Restoring {collection}..." -#: src/strings.ts:1591 +#: src/strings.ts:1593 msgid "Restoring backup..." msgstr "Restoring backup..." @@ -4957,7 +4961,7 @@ msgstr "Resubscribe to Pro" msgid "Reupload" msgstr "Reupload" -#: src/strings.ts:1999 +#: src/strings.ts:2001 msgid "Reveal in list" msgstr "Reveal in list" @@ -4965,7 +4969,7 @@ msgstr "Reveal in list" msgid "Revoke" msgstr "Revoke" -#: src/strings.ts:1163 +#: src/strings.ts:1165 msgid "Revoke biometric unlocking" msgstr "Revoke biometric unlocking" @@ -4973,23 +4977,23 @@ msgstr "Revoke biometric unlocking" msgid "Revoke vault fingerprint unlock" msgstr "Revoke vault fingerprint unlock" -#: src/strings.ts:1277 +#: src/strings.ts:1279 msgid "Roadmap" msgstr "Roadmap" -#: src/strings.ts:2027 +#: src/strings.ts:2029 msgid "Root" msgstr "Root" -#: src/strings.ts:2006 +#: src/strings.ts:2008 msgid "Rotate left" msgstr "Rotate left" -#: src/strings.ts:2007 +#: src/strings.ts:2009 msgid "Rotate right" msgstr "Rotate right" -#: src/strings.ts:2263 +#: src/strings.ts:2265 msgid "Row properties" msgstr "Row properties" @@ -4997,7 +5001,7 @@ msgstr "Row properties" msgid "Run file check" msgstr "Run file check" -#: src/strings.ts:2038 +#: src/strings.ts:2040 msgid "Safe & encrypted notes" msgstr "Safe & encrypted notes" @@ -5053,7 +5057,7 @@ msgstr "Save to file" msgid "Save to text file" msgstr "Save to text file" -#: src/strings.ts:1341 +#: src/strings.ts:1343 msgid "Save your account recovery key" msgstr "Save your account recovery key" @@ -5069,15 +5073,15 @@ msgstr "Save your data recovery key in a safe place. You will need it to recover msgid "Save your recovery codes in a safe place. You will need them to recover your account in case you lose access to your two-factor authentication methods." msgstr "Save your recovery codes in a safe place. You will need them to recover your account in case you lose access to your two-factor authentication methods." -#: src/strings.ts:2372 +#: src/strings.ts:2374 msgid "Saved" msgstr "Saved" -#: src/strings.ts:2373 +#: src/strings.ts:2375 msgid "Saving" msgstr "Saving" -#: src/strings.ts:1567 +#: src/strings.ts:1569 msgid "Saving this note is taking too long. Copy your changes and restart the app to prevent data loss. If the problem persists, please report it to us at support@streetwriters.co." msgstr "Saving this note is taking too long. Copy your changes and restart the app to prevent data loss. If the problem persists, please report it to us at support@streetwriters.co." @@ -5089,28 +5093,28 @@ msgstr "Saving zip file ({progress}%). Please wait..." msgid "Saving zip file. Please wait..." msgstr "Saving zip file. Please wait..." -#: src/strings.ts:1701 +#: src/strings.ts:1703 msgid "Scan the QR code with your authenticator app" msgstr "Scan the QR code with your authenticator app" -#: src/strings.ts:2398 +#: src/strings.ts:2400 msgid "School work" msgstr "School work" -#: src/strings.ts:1491 -#: src/strings.ts:1508 +#: src/strings.ts:1493 +#: src/strings.ts:1510 msgid "Search" msgstr "Search" -#: src/strings.ts:1486 +#: src/strings.ts:1488 msgid "Search a note" msgstr "Search a note" -#: src/strings.ts:1484 +#: src/strings.ts:1486 msgid "Search a note to link to" msgstr "Search a note to link to" -#: src/strings.ts:1517 +#: src/strings.ts:1519 msgid "Search in {routeName}" msgstr "Search in {routeName}" @@ -5162,23 +5166,23 @@ msgstr "Search in Tags" msgid "Search in Trash" msgstr "Search in Trash" -#: src/strings.ts:2336 +#: src/strings.ts:2338 msgid "Search languages" msgstr "Search languages" -#: src/strings.ts:1472 +#: src/strings.ts:1474 msgid "Search notebooks" msgstr "Search notebooks" -#: src/strings.ts:1485 +#: src/strings.ts:1487 msgid "Search or add a tag" msgstr "Search or add a tag" -#: src/strings.ts:1813 +#: src/strings.ts:1815 msgid "Search themes" msgstr "Search themes" -#: src/strings.ts:1489 +#: src/strings.ts:1491 msgid "Searching for {query}..." msgstr "Searching for {query}..." @@ -5186,39 +5190,39 @@ msgstr "Searching for {query}..." msgid "sec" msgstr "sec" -#: src/strings.ts:2122 +#: src/strings.ts:2124 msgid "Security & privacy" msgstr "Security & privacy" -#: src/strings.ts:2062 +#: src/strings.ts:2064 msgid "Security key" msgstr "Security key" -#: src/strings.ts:1967 +#: src/strings.ts:1969 msgid "Security key successfully registered." msgstr "Security key successfully registered." -#: src/strings.ts:1278 +#: src/strings.ts:1280 msgid "See what the future of Notesnook is going to be like." msgstr "See what the future of Notesnook is going to be like." -#: src/strings.ts:1315 +#: src/strings.ts:1317 msgid "Select" msgstr "Select" -#: src/strings.ts:1588 +#: src/strings.ts:1590 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:2077 +#: src/strings.ts:2079 msgid "Select a theme" msgstr "Select a theme" -#: src/strings.ts:1210 +#: src/strings.ts:1212 msgid "Select backup directory" msgstr "Select backup directory" -#: src/strings.ts:1834 +#: src/strings.ts:1836 msgid "Select backup file" msgstr "Select backup file" @@ -5234,15 +5238,15 @@ msgstr "Select date" msgid "Select day of the week to repeat the reminder." msgstr "Select day of the week to repeat the reminder." -#: src/strings.ts:1742 +#: src/strings.ts:1744 msgid "Select files to import" msgstr "Select files to import" -#: src/strings.ts:1585 +#: src/strings.ts:1587 msgid "Select folder where Notesnook backup files are stored to view and restore them from the app" msgstr "Select folder where Notesnook backup files are stored to view and restore them from the app" -#: src/strings.ts:1586 +#: src/strings.ts:1588 msgid "Select folder with backup files" msgstr "Select folder with backup files" @@ -5250,7 +5254,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:2331 +#: src/strings.ts:2333 msgid "Select language" msgstr "Select language" @@ -5270,7 +5274,7 @@ msgstr "Select notebooks you want to add note(s) to." msgid "Select nth day of the month to repeat the reminder." msgstr "Select nth day of the month to repeat the reminder." -#: src/strings.ts:1796 +#: src/strings.ts:1798 msgid "Select profile picture" msgstr "Select profile picture" @@ -5278,7 +5282,7 @@ msgstr "Select profile picture" msgid "Select the folder that includes your backup files to list them here." msgstr "Select the folder that includes your backup files to list them here." -#: src/strings.ts:2109 +#: src/strings.ts:2111 msgid "Select the languages the spell checker should check in." msgstr "Select the languages the spell checker should check in." @@ -5290,7 +5294,7 @@ msgstr "SELECTED NOTE" msgid "Self destruct" msgstr "Self destruct" -#: src/strings.ts:2144 +#: src/strings.ts:2146 msgid "Send" msgstr "Send" @@ -5306,47 +5310,47 @@ msgstr "Send code via email" msgid "Send code via SMS" msgstr "Send code via SMS" -#: src/strings.ts:1838 +#: src/strings.ts:1840 msgid "Send recovery email" msgstr "Send recovery email" -#: src/strings.ts:1874 +#: src/strings.ts:1876 msgid "Sending recovery email" msgstr "Sending recovery email" -#: src/strings.ts:1625 +#: src/strings.ts:1627 msgid "Server url changed" msgstr "Server url changed" -#: src/strings.ts:1628 +#: src/strings.ts:1630 msgid "Server urls reset" msgstr "Server urls reset" -#: src/strings.ts:1606 +#: src/strings.ts:1608 msgid "Server used for login/sign up and authentication." msgstr "Server used for login/sign up and authentication." -#: src/strings.ts:1611 +#: src/strings.ts:1613 msgid "Server used to host your published notes." msgstr "Server used to host your published notes." -#: src/strings.ts:1609 +#: src/strings.ts:1611 msgid "Server used to receive important notifications & events." msgstr "Server used to receive important notifications & events." -#: src/strings.ts:1604 +#: src/strings.ts:1606 msgid "Server used to sync your notes & other data between devices." msgstr "Server used to sync your notes & other data between devices." -#: src/strings.ts:1617 +#: src/strings.ts:1619 msgid "Server with host {host} not found." msgstr "Server with host {host} not found." -#: src/strings.ts:2117 +#: src/strings.ts:2119 msgid "Servers" msgstr "Servers" -#: src/strings.ts:2118 +#: src/strings.ts:2120 msgid "Servers configuration" msgstr "Servers configuration" @@ -5354,7 +5358,7 @@ msgstr "Servers configuration" msgid "Session expired" msgstr "Session expired" -#: src/strings.ts:2170 +#: src/strings.ts:2172 msgid "Sessions" msgstr "Sessions" @@ -5374,27 +5378,27 @@ msgstr "Set as default" msgid "Set as light theme" msgstr "Set as light theme" -#: src/strings.ts:1314 +#: src/strings.ts:1316 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:1291 +#: src/strings.ts:1293 msgid "Set full name" msgstr "Set full name" -#: src/strings.ts:1236 +#: src/strings.ts:1238 msgid "Set snooze time in minutes" msgstr "Set snooze time in minutes" -#: src/strings.ts:1235 +#: src/strings.ts:1237 msgid "Set the default time to snooze a reminder to when you press the snooze button on a notification." msgstr "Set the default time to snooze a reminder to when you press the snooze button on a notification." -#: src/strings.ts:1207 +#: src/strings.ts:1209 msgid "Set the interval to create a backup (with attachments) automatically." msgstr "Set the interval to create a backup (with attachments) automatically." -#: src/strings.ts:1204 +#: src/strings.ts:1206 msgid "Set the interval to create a partial backup (without attachments) automatically." msgstr "Set the interval to create a partial backup (without attachments) automatically." @@ -5403,24 +5407,24 @@ msgid "Set your name" msgstr "Set your name" #: src/strings.ts:388 -#: src/strings.ts:1504 +#: src/strings.ts:1506 msgid "Settings" msgstr "Settings" -#: src/strings.ts:1183 -#: src/strings.ts:1184 +#: src/strings.ts:1185 +#: src/strings.ts:1186 msgid "Setup a new password for app lock" msgstr "Setup a new password for app lock" -#: src/strings.ts:1180 +#: src/strings.ts:1182 msgid "Setup a password to lock the app" msgstr "Setup a password to lock the app" -#: src/strings.ts:1178 +#: src/strings.ts:1180 msgid "Setup a pin to lock the app" msgstr "Setup a pin to lock the app" -#: src/strings.ts:2162 +#: src/strings.ts:2164 msgid "" "Setup an HTTP/HTTPS/SOCKS proxy.\n" "\n" @@ -5440,11 +5444,11 @@ msgstr "" "\n" "To remove the proxy, simply erase everything in the input." -#: src/strings.ts:1179 +#: src/strings.ts:1181 msgid "Setup app lock password" msgstr "Setup app lock password" -#: src/strings.ts:1177 +#: src/strings.ts:1179 msgid "Setup app lock pin" msgstr "Setup app lock pin" @@ -5468,11 +5472,11 @@ msgstr "Setup using SMS" msgid "Share" msgstr "Share" -#: src/strings.ts:1670 +#: src/strings.ts:1672 msgid "Share & append to notes from anywhere" msgstr "Share & append to notes from anywhere" -#: src/strings.ts:1322 +#: src/strings.ts:1324 msgid "Share backup" msgstr "Share backup" @@ -5480,7 +5484,7 @@ msgstr "Share backup" msgid "Share note" msgstr "Share note" -#: src/strings.ts:1766 +#: src/strings.ts:1768 msgid "Share Notesnook with friends!" msgstr "Share Notesnook with friends!" @@ -5496,7 +5500,7 @@ msgstr "shortcut" msgid "Shortcut" msgstr "Shortcut" -#: src/strings.ts:1979 +#: src/strings.ts:1981 msgid "Shortcut removed" msgstr "Shortcut removed" @@ -5524,11 +5528,11 @@ msgstr "Signup failed" msgid "Silent" msgstr "Silent" -#: src/strings.ts:2305 +#: src/strings.ts:2307 msgid "Sink list item" msgstr "Sink list item" -#: src/strings.ts:2020 +#: src/strings.ts:2022 msgid "Size" msgstr "Size" @@ -5536,7 +5540,7 @@ msgstr "Size" msgid "Skip" msgstr "Skip" -#: src/strings.ts:1808 +#: src/strings.ts:1810 msgid "Skip & go directly to the app" msgstr "Skip & go directly to the app" @@ -5544,19 +5548,19 @@ msgstr "Skip & go directly to the app" msgid "Skip introduction" msgstr "Skip introduction" -#: src/strings.ts:1583 +#: src/strings.ts:1585 msgid "Some exported notes are locked, Unlock to export them" msgstr "Some exported notes are locked, Unlock to export them" -#: src/strings.ts:1457 +#: src/strings.ts:1459 msgid "Some notes are published" msgstr "Some notes are published" -#: src/strings.ts:1645 +#: src/strings.ts:1647 msgid "Something went wrong" msgstr "Something went wrong" -#: src/strings.ts:2004 +#: src/strings.ts:2006 msgid "Sort" msgstr "Sort" @@ -5564,19 +5568,19 @@ msgstr "Sort" msgid "Sort by" msgstr "Sort by" -#: src/strings.ts:2128 +#: src/strings.ts:2130 msgid "Source code" msgstr "Source code" -#: src/strings.ts:2332 +#: src/strings.ts:2334 msgid "Spaces" msgstr "Spaces" -#: src/strings.ts:2105 +#: src/strings.ts:2107 msgid "Spell check" msgstr "Spell check" -#: src/strings.ts:2270 +#: src/strings.ts:2272 msgid "Split cells" msgstr "Split cells" @@ -5584,23 +5588,23 @@ msgstr "Split cells" msgid "Start" msgstr "Start" -#: src/strings.ts:1809 +#: src/strings.ts:1811 msgid "Start account recovery" msgstr "Start account recovery" -#: src/strings.ts:1804 +#: src/strings.ts:1806 msgid "Start import" msgstr "Start import" -#: src/strings.ts:1801 +#: src/strings.ts:1803 msgid "Start importing now" msgstr "Start importing now" -#: src/strings.ts:2093 +#: src/strings.ts:2095 msgid "Start minimized" msgstr "Start minimized" -#: src/strings.ts:1736 +#: src/strings.ts:1738 msgid "Start over" msgstr "Start over" @@ -5612,27 +5616,27 @@ msgstr "Start writing to create a new note" msgid "Start writing to save your note." msgstr "Start writing to save your note." -#: src/strings.ts:1580 +#: src/strings.ts:1582 msgid "Start writing your note..." msgstr "Start writing your note..." -#: src/strings.ts:2201 +#: src/strings.ts:2203 msgid "Status" msgstr "Status" -#: src/strings.ts:1527 +#: src/strings.ts:1529 msgid "Streaming not supported" msgstr "Streaming not supported" -#: src/strings.ts:2236 +#: src/strings.ts:2238 msgid "Strikethrough" msgstr "Strikethrough" -#: src/strings.ts:2203 +#: src/strings.ts:2205 msgid "Subgroup 1" msgstr "Subgroup 1" -#: src/strings.ts:1973 +#: src/strings.ts:1975 msgid "Subgroup added" msgstr "Subgroup added" @@ -5652,7 +5656,7 @@ msgstr "Subscribed on Android" msgid "Subscribed on iOS" msgstr "Subscribed on iOS" -#: src/strings.ts:1286 +#: src/strings.ts:1288 msgid "Subscribed on web" msgstr "Subscribed on web" @@ -5664,7 +5668,7 @@ msgstr "Subscribed on Web" msgid "Subscribed using gift card" msgstr "Subscribed using gift card" -#: src/strings.ts:2247 +#: src/strings.ts:2249 msgid "Subscript" msgstr "Subscript" @@ -5688,15 +5692,15 @@ msgstr "Sun" msgid "Sunday" msgstr "Sunday" -#: src/strings.ts:2248 +#: src/strings.ts:2250 msgid "Superscript" msgstr "Superscript" -#: src/strings.ts:1450 +#: src/strings.ts:1452 msgid "Switch to search/replace mode" msgstr "Switch to search/replace mode" -#: src/strings.ts:2114 +#: src/strings.ts:2116 msgid "Sync" msgstr "Sync" @@ -5704,7 +5708,7 @@ msgstr "Sync" msgid "Sync failed" msgstr "Sync failed" -#: src/strings.ts:1344 +#: src/strings.ts:1346 msgid "Sync is disabled" msgstr "Sync is disabled" @@ -5712,7 +5716,7 @@ msgstr "Sync is disabled" msgid "Sync off" msgstr "Sync off" -#: src/strings.ts:1602 +#: src/strings.ts:1604 msgid "Sync server" msgstr "Sync server" @@ -5736,11 +5740,11 @@ msgstr "Syncing" msgid "Syncing your data" msgstr "Syncing your data" -#: src/strings.ts:1681 +#: src/strings.ts:1683 msgid "Syncing your notes" msgstr "Syncing your notes" -#: src/strings.ts:2317 +#: src/strings.ts:2319 msgid "Table" msgstr "Table" @@ -5748,7 +5752,7 @@ msgstr "Table" msgid "Table of contents" msgstr "Table of contents" -#: src/strings.ts:2261 +#: src/strings.ts:2263 msgid "Table settings" msgstr "Table settings" @@ -5769,31 +5773,31 @@ msgid "tags" msgstr "tags" #: src/strings.ts:317 -#: src/strings.ts:1505 +#: src/strings.ts:1507 msgid "Tags" msgstr "Tags" -#: src/strings.ts:1522 +#: src/strings.ts:1524 msgid "Take a backup before logging out" msgstr "Take a backup before logging out" -#: src/strings.ts:1199 +#: src/strings.ts:1201 msgid "Take a full backup of your data with all attachments" msgstr "Take a full backup of your data with all attachments" -#: src/strings.ts:1201 +#: src/strings.ts:1203 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:2316 +#: src/strings.ts:2318 msgid "Take a photo using camera" msgstr "Take a photo using camera" -#: src/strings.ts:1354 +#: src/strings.ts:1356 msgid "Take note" msgstr "Take note" -#: src/strings.ts:1635 +#: src/strings.ts:1637 msgid "Take notes privately." msgstr "Take notes privately." @@ -5805,23 +5809,23 @@ msgstr "Taking too long? Reload editor" msgid "Tap and hold to enable multi-select." msgstr "Tap and hold to enable multi-select." -#: src/strings.ts:1438 +#: src/strings.ts:1440 msgid "Tap here to change sorting" msgstr "Tap here to change sorting" -#: src/strings.ts:1442 +#: src/strings.ts:1444 msgid "Tap here to jump to a section" msgstr "Tap here to jump to a section" -#: src/strings.ts:1350 +#: src/strings.ts:1352 msgid "Tap here to update to the latest version" msgstr "Tap here to update to the latest version" -#: src/strings.ts:1571 +#: src/strings.ts:1573 msgid "Tap on \"Dismiss\" and copy the contents of your note so they are not lost." msgstr "Tap on \"Dismiss\" and copy the contents of your note so they are not lost." -#: src/strings.ts:1353 +#: src/strings.ts:1355 msgid "Tap on \"Take note\" to add a note." msgstr "Tap on \"Take note\" to add a note." @@ -5841,7 +5845,7 @@ msgstr "Tap to deselect" msgid "Tap to stop reordering" msgstr "Tap to stop reordering" -#: src/strings.ts:1334 +#: src/strings.ts:1336 msgid "Tap to try again" msgstr "Tap to try again" @@ -5849,19 +5853,19 @@ msgstr "Tap to try again" msgid "Tap twice to confirm you have saved the recovery key." msgstr "Tap twice to confirm you have saved the recovery key." -#: src/strings.ts:2322 +#: src/strings.ts:2324 msgid "Task list" msgstr "Task list" -#: src/strings.ts:2391 +#: src/strings.ts:2393 msgid "Tasks" msgstr "Tasks" -#: src/strings.ts:1146 +#: src/strings.ts:1148 msgid "Telemetry" msgstr "Telemetry" -#: src/strings.ts:1476 +#: src/strings.ts:1478 msgid "" "Tell us more about the issue you are facing.\n" "\n" @@ -5879,11 +5883,11 @@ msgstr "" "- Steps to reproduce the issue\n" "- Things you have tried etc." -#: src/strings.ts:1475 +#: src/strings.ts:1477 msgid "Tell us what happened" msgstr "Tell us what happened" -#: src/strings.ts:1267 +#: src/strings.ts:1269 msgid "Terms of service" msgstr "Terms of service" @@ -5891,27 +5895,27 @@ msgstr "Terms of service" msgid "Terms of Service " msgstr "Terms of Service " -#: src/strings.ts:1601 +#: src/strings.ts:1603 msgid "Test connection" msgstr "Test connection" -#: src/strings.ts:1624 +#: src/strings.ts:1626 msgid "Test connection before changing server urls" msgstr "Test connection before changing server urls" -#: src/strings.ts:2259 +#: src/strings.ts:2261 msgid "Text color" msgstr "Text color" -#: src/strings.ts:2257 +#: src/strings.ts:2259 msgid "Text direction" msgstr "Text direction" -#: src/strings.ts:1765 +#: src/strings.ts:1767 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:2029 +#: src/strings.ts:2031 msgid "Thank you for reporting!" msgstr "Thank you for reporting!" @@ -5919,11 +5923,11 @@ msgstr "Thank you for reporting!" msgid "Thank you for updating Notesnook! We will be applying some minor changes for a better note taking experience." msgstr "Thank you for updating Notesnook! We will be applying some minor changes for a better note taking experience." -#: src/strings.ts:2054 +#: src/strings.ts:2056 msgid "Thank you. You are the proof that privacy always comes first." msgstr "Thank you. You are the proof that privacy always comes first." -#: src/strings.ts:1622 +#: src/strings.ts:1624 msgid "The {title} at {url} is not compatible with this client." msgstr "The {title} at {url} is not compatible with this client." @@ -5931,7 +5935,7 @@ msgstr "The {title} at {url} is not compatible with this client." msgid "The information above will be publically available at" msgstr "The information above will be publically available at" -#: src/strings.ts:2061 +#: src/strings.ts:2063 msgid "The password/pin for unlocking the app." msgstr "The password/pin for unlocking the app." @@ -5943,15 +5947,15 @@ msgstr "The reminder will repeat daily at {date}." msgid "The reminder will repeat every year on {date}." msgstr "The reminder will repeat every year on {date}." -#: src/strings.ts:1691 +#: src/strings.ts:1693 msgid "The reminder will start on {date} at {time}." msgstr "The reminder will start on {date} at {time}." -#: src/strings.ts:2064 +#: src/strings.ts:2066 msgid "The security key for unlocking the app. This is the most secure method." msgstr "The security key for unlocking the app. This is the most secure method." -#: src/strings.ts:1620 +#: src/strings.ts:1622 msgid "The URL you have given ({url}) does not point to the {server}." msgstr "The URL you have given ({url}) does not point to the {server}." @@ -5963,11 +5967,11 @@ msgstr "Themes" msgid "There are no blocks in this note." msgstr "There are no blocks in this note." -#: src/strings.ts:2216 +#: src/strings.ts:2218 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:1899 +#: src/strings.ts:1901 msgid "This action is IRREVERSIBLE." msgstr "This action is IRREVERSIBLE." @@ -5975,35 +5979,35 @@ msgstr "This action is IRREVERSIBLE." msgid "This device" msgstr "This device" -#: src/strings.ts:1662 +#: src/strings.ts:1664 msgid "This error can be fixed by rebuilding the search index. This action won't result in any kind of data loss." msgstr "This error can be fixed by rebuilding the search index. This action won't result in any kind of data loss." -#: src/strings.ts:1654 +#: src/strings.ts:1656 msgid "This error can only be fixed by wiping & reseting the database. Beware that this will wipe all your data inside the database with no way to recover it later on. This WILL NOT change/affect/delete/wipe your data on the server but ONLY on this device." msgstr "This error can only be fixed by wiping & reseting the database. Beware that this will wipe all your data inside the database with no way to recover it later on. This WILL NOT change/affect/delete/wipe your data on the server but ONLY on this device." -#: src/strings.ts:1658 +#: src/strings.ts:1660 msgid "This error can only be fixed by wiping & reseting the Key Store and the database. This WILL NOT change/affect/delete/wipe your data on the server but ONLY on this device." msgstr "This error can only be fixed by wiping & reseting the Key Store and the database. This WILL NOT change/affect/delete/wipe your data on the server but ONLY on this device." -#: src/strings.ts:1656 +#: src/strings.ts:1658 msgid "This error means the at rest encryption key could not be decrypted. This can be due to data corruption or implementation change." msgstr "This error means the at rest encryption key could not be decrypted. This can be due to data corruption or implementation change." -#: src/strings.ts:1652 +#: src/strings.ts:1654 msgid "This error usually means the database file is either corrupt or it could not be decrypted." msgstr "This error usually means the database file is either corrupt or it could not be decrypted." -#: src/strings.ts:1660 +#: src/strings.ts:1662 msgid "This error usually means the search index is corrupted." msgstr "This error usually means the search index is corrupted." -#: src/strings.ts:1913 +#: src/strings.ts:1915 msgid "This image cannot be previewed" msgstr "This image cannot be previewed" -#: src/strings.ts:2024 +#: src/strings.ts:2026 msgid "This may take a while" msgstr "This may take a while" @@ -6012,7 +6016,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:1573 +#: src/strings.ts:1575 msgid "This note is locked" msgstr "This note is locked" @@ -6032,11 +6036,11 @@ msgstr "This note is not referenced in other notes." msgid "This note will be published to a public URL." msgstr "This note will be published to a public URL." -#: src/strings.ts:2070 +#: src/strings.ts:2072 msgid "This username will be used to distinguish between different credentials in your security key. Make sure it is unique." msgstr "This username will be used to distinguish between different credentials in your security key. Make sure it is unique." -#: src/strings.ts:1284 +#: src/strings.ts:1286 msgid "This version of Notesnook app does not support in-app purchases. Kindly login on the Notesnook web app to make the purchase." msgstr "This version of Notesnook app does not support in-app purchases. Kindly login on the Notesnook web app to make the purchase." @@ -6048,7 +6052,7 @@ msgstr "Thu" msgid "Thursday" msgstr "Thursday" -#: src/strings.ts:1821 +#: src/strings.ts:1823 msgid "Time" msgstr "Time" @@ -6065,52 +6069,56 @@ msgstr "TIP" msgid "Title" msgstr "Title" -#: src/strings.ts:1141 +#: src/strings.ts:1143 msgid "Title format" msgstr "Title format" -#: src/strings.ts:1172 +#: src/strings.ts:1174 msgid "To use app lock, you must enable biometrics such as Fingerprint lock or Face ID on your phone." msgstr "To use app lock, you must enable biometrics such as Fingerprint lock or Face ID on your phone." -#: src/strings.ts:1791 +#: src/strings.ts:1793 msgid "Toggle dark/light mode" msgstr "Toggle dark/light mode" -#: src/strings.ts:2329 +#: src/strings.ts:2331 msgid "Toggle indentation mode" msgstr "Toggle indentation mode" -#: src/strings.ts:2358 +#: src/strings.ts:2360 msgid "Toggle replace" msgstr "Toggle replace" -#: src/strings.ts:2111 +#: src/strings.ts:2113 msgid "Toolbar" msgstr "Toolbar" -#: src/strings.ts:1307 -#: src/strings.ts:1503 +#: src/strings.ts:1134 +msgid "Toolbar reset to default preset" +msgstr "Toolbar reset to default preset" + +#: src/strings.ts:1309 +#: src/strings.ts:1505 msgid "Trash" msgstr "Trash" -#: src/strings.ts:1306 +#: src/strings.ts:1308 msgid "Trash cleared successfully!" msgstr "Trash cleared successfully!" -#: src/strings.ts:1312 +#: src/strings.ts:1314 msgid "Trash gets automatically cleaned up after {days} days" msgstr "Trash gets automatically cleaned up after {days} days" -#: src/strings.ts:1310 +#: src/strings.ts:1312 msgid "Trash gets automatically cleaned up daily" msgstr "Trash gets automatically cleaned up daily" -#: src/strings.ts:1446 +#: src/strings.ts:1448 msgid "Try compact mode to fit more items on screen" msgstr "Try compact mode to fit more items on screen" -#: src/strings.ts:1803 +#: src/strings.ts:1805 msgid "Try free for 14 days" msgstr "Try free for 14 days" @@ -6150,23 +6158,23 @@ msgstr "Two-factor authentication" msgid "Two-factor authentication enabled" msgstr "Two-factor authentication enabled" -#: src/strings.ts:1483 +#: src/strings.ts:1485 msgid "Type # to search for headings" msgstr "Type # to search for headings" -#: src/strings.ts:1490 +#: src/strings.ts:1492 msgid "Type a keyword" msgstr "Type a keyword" -#: src/strings.ts:1528 +#: src/strings.ts:1530 msgid "Unable to resolve download url" msgstr "Unable to resolve download url" -#: src/strings.ts:1531 +#: src/strings.ts:1533 msgid "Unable to send 2FA code" msgstr "Unable to send 2FA code" -#: src/strings.ts:2235 +#: src/strings.ts:2237 msgid "Underline" msgstr "Underline" @@ -6190,7 +6198,7 @@ msgstr "Unlink notebook" msgid "Unlock" msgstr "Unlock" -#: src/strings.ts:1364 +#: src/strings.ts:1366 msgid "Unlock more colors with Notesnook Pro" msgstr "Unlock more colors with Notesnook Pro" @@ -6203,11 +6211,11 @@ msgstr "Unlock note" msgid "Unlock note to delete it" msgstr "Unlock note to delete it" -#: src/strings.ts:1192 +#: src/strings.ts:1194 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:1911 +#: src/strings.ts:1913 msgid "Unlock vault" msgstr "Unlock vault" @@ -6215,7 +6223,7 @@ msgstr "Unlock vault" msgid "Unlock with biometrics" msgstr "Unlock with biometrics" -#: src/strings.ts:1806 +#: src/strings.ts:1808 msgid "Unlock with security key" msgstr "Unlock with security key" @@ -6223,11 +6231,11 @@ msgstr "Unlock with security key" msgid "Unlock your notes" msgstr "Unlock your notes" -#: src/strings.ts:1162 +#: src/strings.ts:1164 msgid "Unlock your vault with biometric authentication" msgstr "Unlock your vault with biometric authentication" -#: src/strings.ts:1689 +#: src/strings.ts:1691 msgid "Unlocking" msgstr "Unlocking" @@ -6243,16 +6251,16 @@ msgstr "Unpin from notifications" msgid "Unpublish" msgstr "Unpublish" -#: src/strings.ts:1458 +#: src/strings.ts:1460 msgid "Unpublish notes to delete them" msgstr "Unpublish notes to delete them" -#: src/strings.ts:2065 +#: src/strings.ts:2067 msgid "Unregister" msgstr "Unregister" #: src/strings.ts:210 -#: src/strings.ts:2338 +#: src/strings.ts:2340 msgid "Untitled" msgstr "Untitled" @@ -6264,19 +6272,19 @@ msgstr "Update" msgid "Update available" msgstr "Update available" -#: src/strings.ts:1351 +#: src/strings.ts:1353 msgid "Update now" msgstr "Update now" -#: src/strings.ts:1897 +#: src/strings.ts:1899 msgid "Upgrade now" msgstr "Upgrade now" -#: src/strings.ts:1918 +#: src/strings.ts:1920 msgid "Upgrade to Notesnook Pro to add colors." msgstr "Upgrade to Notesnook Pro to add colors." -#: src/strings.ts:1919 +#: src/strings.ts:1921 msgid "Upgrade to Notesnook Pro to create more tags." msgstr "Upgrade to Notesnook Pro to create more tags." @@ -6288,12 +6296,12 @@ msgstr "Upgrade to Pro" msgid "Upload" msgstr "Upload" -#: src/strings.ts:2315 +#: src/strings.ts:2317 msgid "Upload from disk" msgstr "Upload from disk" #: src/strings.ts:503 -#: src/strings.ts:1630 +#: src/strings.ts:1632 msgid "Uploaded" msgstr "Uploaded" @@ -6314,7 +6322,7 @@ msgstr "Uploads" msgid "Urgent" msgstr "Urgent" -#: src/strings.ts:1768 +#: src/strings.ts:1770 msgid "Use" msgstr "Use" @@ -6322,11 +6330,11 @@ msgstr "Use" msgid "Use {keyboardShortcut}+click to select multiple notebooks" msgstr "Use {keyboardShortcut}+click to select multiple notebooks" -#: src/strings.ts:1781 +#: src/strings.ts:1783 msgid "Use a backup file" msgstr "Use a backup file" -#: src/strings.ts:1879 +#: src/strings.ts:1881 msgid "Use a data recovery key to reset your account password." msgstr "Use a data recovery key to reset your account password." @@ -6338,7 +6346,7 @@ msgstr "Use account password" msgid "Use an authenticator app to generate 2FA codes." msgstr "Use an authenticator app to generate 2FA codes." -#: src/strings.ts:2151 +#: src/strings.ts:2153 msgid "Use custom DNS" msgstr "Use custom DNS" @@ -6346,23 +6354,23 @@ msgstr "Use custom DNS" msgid "Use dark mode for the app" msgstr "Use dark mode for the app" -#: src/strings.ts:1600 +#: src/strings.ts:1602 msgid "Use encryption key" msgstr "Use encryption key" -#: src/strings.ts:1144 +#: src/strings.ts:1146 msgid "Use markdown shortcuts in the editor" msgstr "Use markdown shortcuts in the editor" -#: src/strings.ts:2104 +#: src/strings.ts:2106 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:2102 +#: src/strings.ts:2104 msgid "Use native titlebar" msgstr "Use native titlebar" -#: src/strings.ts:1778 +#: src/strings.ts:1780 msgid "Use recovery key" msgstr "Use recovery key" @@ -6402,23 +6410,23 @@ msgstr "Use this if changes made on this device are not appearing on other devic msgid "User verification failed" msgstr "User verification failed" -#: src/strings.ts:2231 +#: src/strings.ts:2233 msgid "Using {instance} (v{version})" msgstr "Using {instance} (v{version})" -#: src/strings.ts:2229 +#: src/strings.ts:2231 msgid "Using official Notesnook instance" msgstr "Using official Notesnook instance" -#: src/strings.ts:1688 +#: src/strings.ts:1690 msgid "v{version} available" msgstr "v{version} available" -#: src/strings.ts:1155 +#: src/strings.ts:1157 msgid "Vault" msgstr "Vault" -#: src/strings.ts:1971 +#: src/strings.ts:1973 msgid "Vault cleared" msgstr "Vault cleared" @@ -6426,7 +6434,7 @@ msgstr "Vault cleared" msgid "Vault created" msgstr "Vault created" -#: src/strings.ts:1972 +#: src/strings.ts:1974 msgid "Vault deleted" msgstr "Vault deleted" @@ -6434,15 +6442,15 @@ msgstr "Vault deleted" msgid "Vault fingerprint unlock" msgstr "Vault fingerprint unlock" -#: src/strings.ts:1910 +#: src/strings.ts:1912 msgid "Vault locked" msgstr "Vault locked" -#: src/strings.ts:1909 +#: src/strings.ts:1911 msgid "Vault unlocked" msgstr "Vault unlocked" -#: src/strings.ts:1381 +#: src/strings.ts:1383 msgid "Verification email sent" msgstr "Verification email sent" @@ -6458,11 +6466,11 @@ msgstr "Verify subscription" msgid "Verify your subscription to Notesnook Pro" msgstr "Verify your subscription to Notesnook Pro" -#: src/strings.ts:1882 +#: src/strings.ts:1884 msgid "Verifying 2FA code" msgstr "Verifying 2FA code" -#: src/strings.ts:1868 +#: src/strings.ts:1870 msgid "Verifying your email" msgstr "Verifying your email" @@ -6482,11 +6490,11 @@ msgstr "Videos" msgid "View all linked notebooks" msgstr "View all linked notebooks" -#: src/strings.ts:1254 +#: src/strings.ts:1256 msgid "View and share debug logs" msgstr "View and share debug logs" -#: src/strings.ts:1726 +#: src/strings.ts:1728 msgid "View receipt" msgstr "View receipt" @@ -6494,7 +6502,7 @@ msgstr "View receipt" msgid "View recovery codes" msgstr "View recovery codes" -#: src/strings.ts:2131 +#: src/strings.ts:2133 msgid "View source code" msgstr "View source code" @@ -6506,15 +6514,15 @@ msgstr "View your recovery codes to recover your account in case you lose access msgid "Visit homepage" msgstr "Visit homepage" -#: src/strings.ts:1331 +#: src/strings.ts:1333 msgid "Wait 30 seconds to try again" msgstr "Wait 30 seconds to try again" -#: src/strings.ts:1631 +#: src/strings.ts:1633 msgid "Waiting for upload" msgstr "Waiting for upload" -#: src/strings.ts:1890 +#: src/strings.ts:1892 msgid "We are creating a backup of your data. Please wait..." msgstr "We are creating a backup of your data. Please wait..." @@ -6522,27 +6530,27 @@ msgstr "We are creating a backup of your data. Please wait..." msgid "We are sorry, it seems that the app crashed due to an error. You can submit a bug report below so we can fix this asap." msgstr "We are sorry, it seems that the app crashed due to an error. You can submit a bug report below so we can fix this asap." -#: src/strings.ts:1371 +#: src/strings.ts:1373 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:2146 +#: src/strings.ts:2148 msgid "We send you occasional promotional offers & product updates on your email (once every month)." msgstr "We send you occasional promotional offers & product updates on your email (once every month)." -#: src/strings.ts:1151 +#: src/strings.ts:1153 msgid "We will send you occasional promotional offers & product updates on your email (sent once every month)." msgstr "We will send you occasional promotional offers & product updates on your email (sent once every month)." -#: src/strings.ts:1335 +#: src/strings.ts:1337 msgid "We would love to know what you think!" msgstr "We would love to know what you think!" -#: src/strings.ts:2300 +#: src/strings.ts:2302 msgid "Web clip settings" msgstr "Web clip settings" -#: src/strings.ts:2008 +#: src/strings.ts:2010 msgid "Website" msgstr "Website" @@ -6559,7 +6567,7 @@ msgid "Week" msgstr "Week" #: src/strings.ts:168 -#: src/strings.ts:1548 +#: src/strings.ts:1550 msgid "Weekly" msgstr "Weekly" @@ -6567,27 +6575,27 @@ msgstr "Weekly" msgid "Welcome back, {email}" msgstr "Welcome back, {email}" -#: src/strings.ts:1867 +#: src/strings.ts:1869 msgid "Welcome back!" msgstr "Welcome back!" -#: src/strings.ts:2052 +#: src/strings.ts:2054 msgid "Welcome to Notesnook Pro" msgstr "Welcome to Notesnook Pro" -#: src/strings.ts:1373 +#: src/strings.ts:1375 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:1646 +#: src/strings.ts:1648 msgid "What went wrong?" msgstr "What went wrong?" -#: src/strings.ts:2361 +#: src/strings.ts:2363 msgid "Width" msgstr "Width" -#: src/strings.ts:2389 +#: src/strings.ts:2391 msgid "Work & Office" msgstr "Work & Office" @@ -6595,15 +6603,15 @@ msgstr "Work & Office" msgid "Write notes with freedom, no spying, no tracking." msgstr "Write notes with freedom, no spying, no tracking." -#: src/strings.ts:1355 +#: src/strings.ts:1357 msgid "Write something..." msgstr "Write something..." -#: src/strings.ts:1633 +#: src/strings.ts:1635 msgid "Write with freedom." msgstr "Write with freedom." -#: src/strings.ts:2040 +#: src/strings.ts:2042 msgid "Write with freedom. Never compromise on privacy again." msgstr "Write with freedom. Never compromise on privacy again." @@ -6612,7 +6620,7 @@ msgid "Year" msgstr "Year" #: src/strings.ts:170 -#: src/strings.ts:1550 +#: src/strings.ts:1552 msgid "Yearly" msgstr "Yearly" @@ -6624,19 +6632,19 @@ msgstr "Yes" msgid "You also agree to recieve marketing emails from us which you can opt-out of from app settings." msgstr "You also agree to recieve marketing emails from us which you can opt-out of from app settings." -#: src/strings.ts:2218 +#: src/strings.ts:2220 msgid "You are editing \"{notebookTitle}\"." msgstr "You are editing \"{notebookTitle}\"." -#: src/strings.ts:2022 +#: src/strings.ts:2024 msgid "You are editing #{tag}" msgstr "You are editing #{tag}" -#: src/strings.ts:1760 +#: src/strings.ts:1762 msgid "You are logging into the beta version of Notesnook. Switching between beta & stable versions can cause weird issues including data loss. It is recommended that you do not use both simultaneously." msgstr "You are logging into the beta version of Notesnook. Switching between beta & stable versions can cause weird issues including data loss. It is recommended that you do not use both simultaneously." -#: src/strings.ts:1342 +#: src/strings.ts:1344 msgid "You are not logged in" msgstr "You are not logged in" @@ -6648,35 +6656,35 @@ msgstr "You are renaming color {color}" msgid "You can add as many tags as you want." msgstr "You can add as many tags as you want." -#: src/strings.ts:2043 +#: src/strings.ts:2045 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:2397 +#: src/strings.ts:2399 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:2058 +#: src/strings.ts:2060 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:1417 +#: src/strings.ts:1419 msgid "You can multi-select notes and move them to a notebook at once" msgstr "You can multi-select notes and move them to a notebook at once" -#: src/strings.ts:1408 +#: src/strings.ts:1410 msgid "You can pin frequently used Notebooks to the Side Menu to quickly access them." msgstr "You can pin frequently used Notebooks to the Side Menu to quickly access them." -#: src/strings.ts:1154 +#: src/strings.ts:1156 msgid "You can set a custom proxy URL to increase your privacy." msgstr "You can set a custom proxy URL to increase your privacy." -#: src/strings.ts:1389 +#: src/strings.ts:1391 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:2032 +#: src/strings.ts:2034 msgid "" "You can track your bug report at [{url}]({url}).\n" "\n" @@ -6702,19 +6710,19 @@ msgstr "You can use all premium features for free for the next 14 days" msgid "You can use fallback 2FA method incase you are unable to login via primary method" msgstr "You can use fallback 2FA method incase you are unable to login via primary method" -#: src/strings.ts:1431 +#: src/strings.ts:1433 msgid "You can view & restore older versions of any note by going to its properties -> History." msgstr "You can view & restore older versions of any note by going to its properties -> History." -#: src/strings.ts:1728 +#: src/strings.ts:1730 msgid "You have {count} custom dictionary words." msgstr "You have {count} custom dictionary words." -#: src/strings.ts:2177 +#: src/strings.ts:2179 msgid "You have been logged out from all other devices." msgstr "You have been logged out from all other devices." -#: src/strings.ts:2171 +#: src/strings.ts:2173 msgid "You have been logged out." msgstr "You have been logged out." @@ -6742,11 +6750,11 @@ msgstr "You have not published any monographs yet" msgid "You have not set any reminders yet" msgstr "You have not set any reminders yet" -#: src/strings.ts:1524 +#: src/strings.ts:1526 msgid "You have unsynced notes. Take a backup or sync your notes to avoid losing your critical data." msgstr "You have unsynced notes. Take a backup or sync your notes to avoid losing your critical data." -#: src/strings.ts:1613 +#: src/strings.ts:1615 msgid "You must log out in order to change/reset server URLs." msgstr "You must log out in order to change/reset server URLs." @@ -6782,7 +6790,7 @@ msgstr "You were awarded a subscription to Notesnook Pro by Streetwriters." msgid "You will be logged out from all your devices" msgstr "You will be logged out from all your devices" -#: src/strings.ts:1830 +#: src/strings.ts:1832 msgid "You will receive instructions on how to recover your account on this email" msgstr "You will receive instructions on how to recover your account on this email" @@ -6790,16 +6798,16 @@ msgstr "You will receive instructions on how to recover your account on this ema msgid "Your account email will be changed without affecting your subscription or any other settings." msgstr "Your account email will be changed without affecting your subscription or any other settings." -#: src/strings.ts:1896 +#: src/strings.ts:1898 msgid "Your account has been recovered." msgstr "Your account has been recovered." #: src/strings.ts:494 -#: src/strings.ts:1707 +#: src/strings.ts:1709 msgid "Your account is now 100% secure against unauthorized logins." msgstr "Your account is now 100% secure against unauthorized logins." -#: src/strings.ts:1835 +#: src/strings.ts:1837 msgid "Your account password must be strong & unique." msgstr "Your account password must be strong & unique." @@ -6807,31 +6815,31 @@ msgstr "Your account password must be strong & unique." msgid "Your account will be downgraded in {days} days" msgstr "Your account will be downgraded in {days} days" -#: src/strings.ts:1908 +#: src/strings.ts:1910 msgid "Your backup is ready to download" msgstr "Your backup is ready to download" -#: src/strings.ts:1565 +#: src/strings.ts:1567 msgid "Your changes could not be saved" msgstr "Your changes could not be saved" -#: src/strings.ts:1755 +#: src/strings.ts:1757 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:2078 +#: src/strings.ts:2080 msgid "Your current 2FA method is {method}" msgstr "Your current 2FA method is {method}" -#: src/strings.ts:1780 +#: src/strings.ts:1782 msgid "Your data recovery key is basically a hashed version of your password (plus some random salt). It can be used to decrypt your data for re-encryption." msgstr "Your data recovery key is basically a hashed version of your password (plus some random salt). It can be used to decrypt your data for re-encryption." -#: src/strings.ts:1833 +#: src/strings.ts:1835 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:1763 +#: src/strings.ts:1765 msgid "Your email has been confirmed." msgstr "Your email has been confirmed." @@ -6847,7 +6855,7 @@ msgstr "Your favorites" msgid "Your free trial ends on {date}" msgstr "Your free trial ends on {date}" -#: src/strings.ts:1385 +#: src/strings.ts:1387 msgid "Your free trial has expired" msgstr "Your free trial has expired" @@ -6855,11 +6863,11 @@ msgstr "Your free trial has expired" msgid "Your free trial has started" msgstr "Your free trial has started" -#: src/strings.ts:1384 +#: src/strings.ts:1386 msgid "Your free trial is ending soon" msgstr "Your free trial is ending soon" -#: src/strings.ts:1757 +#: src/strings.ts:1759 msgid "Your full name" msgstr "Your full name" @@ -6867,7 +6875,7 @@ msgstr "Your full name" msgid "Your monographs" msgstr "Your monographs" -#: src/strings.ts:1293 +#: src/strings.ts:1295 msgid "Your name is stored 100% end-to-end encrypted and only visible to you." msgstr "Your name is stored 100% end-to-end encrypted and only visible to you." @@ -6883,7 +6891,7 @@ msgstr "Your notebooks" msgid "Your notes" msgstr "Your notes" -#: src/strings.ts:1871 +#: src/strings.ts:1873 msgid "Your password is always hashed before leaving this device." msgstr "Your password is always hashed before leaving this device." @@ -6891,11 +6899,11 @@ msgstr "Your password is always hashed before leaving this device." msgid "Your privacy matters to us, no matter who you are. In a world where everyone is trying to spy on you, Notesnook encrypts all your data before it leaves your device. With Notesnook no one can ever sell your data again." msgstr "Your privacy matters to us, no matter who you are. In a world where everyone is trying to spy on you, Notesnook encrypts all your data before it leaves your device. With Notesnook no one can ever sell your data again." -#: src/strings.ts:1290 +#: src/strings.ts:1292 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:1976 +#: src/strings.ts:1978 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." @@ -6911,7 +6919,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:1974 +#: src/strings.ts:1976 msgid "Your subscription has been canceled." msgstr "Your subscription has been canceled." @@ -6939,18 +6947,18 @@ msgstr "Z to A" msgid "Zipping" msgstr "Zipping" -#: src/strings.ts:2072 +#: src/strings.ts:2074 msgid "Zoom factor" msgstr "Zoom factor" -#: src/strings.ts:1679 +#: src/strings.ts:1681 msgid "Zoom in" msgstr "Zoom in" -#: src/strings.ts:2073 +#: src/strings.ts:2075 msgid "Zoom in or out the app content." msgstr "Zoom in or out the app content." -#: src/strings.ts:1678 +#: src/strings.ts:1680 msgid "Zoom out" msgstr "Zoom out" diff --git a/packages/intl/locale/pseudo-LOCALE.po b/packages/intl/locale/pseudo-LOCALE.po index 42595b0dc..0ed792693 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:2387 +#: src/strings.ts:2389 msgid " \"Notebook > Notes\"" msgstr "" @@ -21,23 +21,23 @@ msgstr "" msgid " Unlock with password once to enable biometric access." msgstr "" -#: src/strings.ts:1920 +#: src/strings.ts:1922 msgid " Upgrade to Notesnook Pro to add more notebooks." msgstr "" -#: src/strings.ts:1923 +#: src/strings.ts:1925 msgid " Upgrade to Notesnook Pro to customize the toolbar." msgstr "" -#: src/strings.ts:1922 +#: src/strings.ts:1924 msgid " Upgrade to Notesnook Pro to use custom toolbar presets." msgstr "" -#: src/strings.ts:1921 +#: src/strings.ts:1923 msgid " Upgrade to Notesnook Pro to use the notes vault." msgstr "" -#: src/strings.ts:1924 +#: src/strings.ts:1926 msgid " Upgrade to Notesnook Pro to use this feature." msgstr "" @@ -68,23 +68,23 @@ msgstr "" msgid "{0} Highlights 🎉" msgstr "" -#: src/strings.ts:1732 +#: src/strings.ts:1734 msgid "{count, plural, one {# error occured} other {# errors occured}}" msgstr "" -#: src/strings.ts:1738 +#: src/strings.ts:1740 msgid "{count, plural, one {# file ready for import} other {# files ready for import}}" msgstr "" -#: src/strings.ts:1693 +#: src/strings.ts:1695 msgid "{count, plural, one {# file} other {# files}}" msgstr "" -#: src/strings.ts:1557 +#: src/strings.ts:1559 msgid "{count, plural, one {1 hour} other {# hours}}" msgstr "" -#: src/strings.ts:1552 +#: src/strings.ts:1554 msgid "{count, plural, one {1 minute} other {# minutes}}" msgstr "" @@ -279,7 +279,7 @@ msgstr "" msgid "{count, plural, one {Item unpublished} other {# items unpublished}}" msgstr "" -#: src/strings.ts:2404 +#: src/strings.ts:2406 msgid "{count, plural, one {Move all notes in this notebook to trash} other {Move all notes in these notebooks to trash}}" msgstr "" @@ -476,7 +476,7 @@ msgstr "" msgid "{count, plural, one {Unpublish note} other {Unpublish # notes}}" msgstr "" -#: src/strings.ts:1543 +#: src/strings.ts:1545 msgid "{days, plural, one {1 day} other {# days}}" msgstr "" @@ -516,19 +516,19 @@ msgstr "" msgid "{mode, select, repeat {Repeat} once {Once} permanent {Permanent} other {Unknown mode}}" msgstr "" -#: src/strings.ts:1955 +#: src/strings.ts:1957 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:1950 +#: src/strings.ts:1952 msgid "{n} {added, plural, one {added to 1 notebook} other {added to # notebooks}}." msgstr "" -#: src/strings.ts:1945 +#: src/strings.ts:1947 msgid "{n} {removed, plural, one {removed from 1 notebook} other {removed from # notebooks}}." msgstr "" -#: src/strings.ts:1940 +#: src/strings.ts:1942 msgid "{notes, plural, one {1 note} other {# notes}}" msgstr "" @@ -536,7 +536,7 @@ msgstr "" msgid "{notes, plural, one {Export note} other {Export # notes}}" msgstr "" -#: src/strings.ts:1685 +#: src/strings.ts:1687 msgid "{percentage}% updating..." msgstr "" @@ -544,11 +544,11 @@ msgstr "" msgid "{platform, select, android {{name} saved to selected path} other {{name} saved to File Manager/Notesnook/downloads}}" msgstr "" -#: src/strings.ts:1318 +#: src/strings.ts:1320 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:2335 +#: src/strings.ts:2337 msgid "{selected} selected" msgstr "" @@ -568,27 +568,27 @@ msgstr "" msgid "{type} does not match" msgstr "" -#: src/strings.ts:1578 +#: src/strings.ts:1580 msgid "{words, plural, one {# word} other {# words}}" msgstr "" -#: src/strings.ts:1641 +#: src/strings.ts:1643 msgid "{words, plural, other {# selected}}" msgstr "" -#: src/strings.ts:1769 +#: src/strings.ts:1771 msgid "#notesnook" msgstr "" -#: src/strings.ts:1562 +#: src/strings.ts:1564 msgid "12-hour" msgstr "" -#: src/strings.ts:1563 +#: src/strings.ts:1565 msgid "24-hour" msgstr "" -#: src/strings.ts:1883 +#: src/strings.ts:1885 msgid "2FA code is required()" msgstr "" @@ -596,11 +596,11 @@ msgstr "" msgid "2FA code sent via {method}" msgstr "" -#: src/strings.ts:1824 +#: src/strings.ts:1826 msgid "6 digit code" msgstr "" -#: src/strings.ts:1412 +#: src/strings.ts:1414 msgid "A notebook can have unlimited topics with unlimited notes." msgstr "" @@ -616,7 +616,7 @@ msgstr "" msgid "Abc" msgstr "" -#: src/strings.ts:1273 +#: src/strings.ts:1275 msgid "About" msgstr "" @@ -624,15 +624,15 @@ msgstr "" msgid "account" msgstr "" -#: src/strings.ts:1826 +#: src/strings.ts:1828 msgid "Account password" msgstr "" -#: src/strings.ts:2016 +#: src/strings.ts:2018 msgid "Activate" msgstr "" -#: src/strings.ts:1802 +#: src/strings.ts:1804 msgid "Activating trial" msgstr "" @@ -644,11 +644,11 @@ msgstr "" msgid "Add 2FA fallback method" msgstr "" -#: src/strings.ts:1488 +#: src/strings.ts:1490 msgid "Add a short note" msgstr "" -#: src/strings.ts:1579 +#: src/strings.ts:1581 msgid "Add a tag" msgstr "" @@ -684,7 +684,7 @@ msgstr "" msgid "Add tags to multiple notes at once" msgstr "" -#: src/strings.ts:2223 +#: src/strings.ts:2225 msgid "Add to dictionary" msgstr "" @@ -696,23 +696,23 @@ msgstr "" msgid "Add your first notebook" msgstr "" -#: src/strings.ts:2150 +#: src/strings.ts:2152 msgid "Advanced" msgstr "" -#: src/strings.ts:1705 +#: src/strings.ts:1707 msgid "After scanning the QR code image, the app will display a code that you can enter below." msgstr "" -#: src/strings.ts:2286 +#: src/strings.ts:2288 msgid "Align left" msgstr "" -#: src/strings.ts:2287 +#: src/strings.ts:2289 msgid "Align right" msgstr "" -#: src/strings.ts:2256 +#: src/strings.ts:2258 msgid "Alignment" msgstr "" @@ -724,7 +724,7 @@ msgstr "" msgid "All attachments are end-to-end encrypted." msgstr "" -#: src/strings.ts:2381 +#: src/strings.ts:2383 msgid "All cached attachments have been cleared." msgstr "" @@ -736,7 +736,7 @@ msgstr "" msgid "All files" msgstr "" -#: src/strings.ts:1158 +#: src/strings.ts:1160 msgid "All locked notes will be re-encrypted with the new password." msgstr "" @@ -744,15 +744,15 @@ msgstr "" msgid "All logs are local only and are not sent to any server. You can share the logs from here with us if you face an issue to help us find the root cause." msgstr "" -#: src/strings.ts:1616 +#: src/strings.ts:1618 msgid "All server urls are required." msgstr "" -#: src/strings.ts:1885 +#: src/strings.ts:1887 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:2130 +#: src/strings.ts:2132 msgid "All the source code for Notesnook is available & open for everyone on GitHub." msgstr "" @@ -760,15 +760,15 @@ msgstr "" msgid "All tools are grouped" msgstr "" -#: src/strings.ts:1302 +#: src/strings.ts:1304 msgid "All tools in the collapsed section will be removed" msgstr "" -#: src/strings.ts:1297 +#: src/strings.ts:1299 msgid "All tools in this group will be removed from the toolbar." msgstr "" -#: src/strings.ts:1327 +#: src/strings.ts:1329 msgid "All your backups are stored in 'Phone Storage/Notesnook/backups/' folder" msgstr "" @@ -780,7 +780,7 @@ msgstr "" msgid "Already have an account?" msgstr "" -#: src/strings.ts:2200 +#: src/strings.ts:2202 msgid "Amount" msgstr "" @@ -792,11 +792,11 @@ msgstr "" msgid "and " msgstr "" -#: src/strings.ts:1770 +#: src/strings.ts:1772 msgid "and get a chance to win free promo codes." msgstr "" -#: src/strings.ts:1378 +#: src/strings.ts:1380 msgid "and we will manually confirm your account." msgstr "" @@ -804,25 +804,25 @@ msgstr "" msgid "App data has been cleared. Kindly relaunch the app to login again." msgstr "" -#: src/strings.ts:1167 -#: src/strings.ts:1672 +#: src/strings.ts:1169 +#: src/strings.ts:1674 msgid "App lock" msgstr "" #: src/strings.ts:770 -#: src/strings.ts:1193 +#: src/strings.ts:1195 msgid "App lock disabled" msgstr "" -#: src/strings.ts:1173 +#: src/strings.ts:1175 msgid "App lock timeout" msgstr "" -#: src/strings.ts:1281 +#: src/strings.ts:1283 msgid "App version" msgstr "" -#: src/strings.ts:1753 +#: src/strings.ts:1755 msgid "App will reload in {sec} seconds" msgstr "" @@ -842,11 +842,11 @@ msgstr "" msgid "Apply changes" msgstr "" -#: src/strings.ts:2023 +#: src/strings.ts:2025 msgid "Applying changes" msgstr "" -#: src/strings.ts:1426 +#: src/strings.ts:1428 msgid "Are you scrolling a lot to find a specific note? Pin it to the top from Note properties." msgstr "" @@ -854,11 +854,11 @@ msgstr "" msgid "Are you sure you want to clear all logs from {key}?" msgstr "" -#: src/strings.ts:1305 +#: src/strings.ts:1307 msgid "Are you sure you want to clear trash?" msgstr "" -#: src/strings.ts:1521 +#: src/strings.ts:1523 msgid "Are you sure you want to logout and clear all data stored on THIS DEVICE?" msgstr "" @@ -874,7 +874,7 @@ msgstr "" msgid "Are you sure you want to remove your profile picture?" msgstr "" -#: src/strings.ts:1304 +#: src/strings.ts:1306 msgid "Are you sure?" msgstr "" @@ -882,7 +882,7 @@ msgstr "" msgid "Ask every time" msgstr "" -#: src/strings.ts:2012 +#: src/strings.ts:2014 msgid "Assign color" msgstr "" @@ -894,7 +894,7 @@ msgstr "" msgid "Atleast 8 characters required" msgstr "" -#: src/strings.ts:2324 +#: src/strings.ts:2326 msgid "Attach image from URL" msgstr "" @@ -903,19 +903,19 @@ msgid "attachment" msgstr "" #: src/strings.ts:300 -#: src/strings.ts:2321 +#: src/strings.ts:2323 msgid "Attachment" msgstr "" -#: src/strings.ts:1914 +#: src/strings.ts:1916 msgid "Attachment preview failed" msgstr "" -#: src/strings.ts:2374 +#: src/strings.ts:2376 msgid "Attachment recheck cancelled" msgstr "" -#: src/strings.ts:2292 +#: src/strings.ts:2294 msgid "Attachment settings" msgstr "" @@ -928,11 +928,11 @@ msgstr "" msgid "Attachments" msgstr "" -#: src/strings.ts:1863 +#: src/strings.ts:1865 msgid "Attachments cache cleared!" msgstr "" -#: src/strings.ts:2376 +#: src/strings.ts:2378 msgid "Attachments recheck complete" msgstr "" @@ -940,64 +940,64 @@ msgstr "" msgid "Audios" msgstr "" -#: src/strings.ts:1605 +#: src/strings.ts:1607 msgid "Auth server" msgstr "" -#: src/strings.ts:1774 +#: src/strings.ts:1776 msgid "Authenticated as {email}" msgstr "" -#: src/strings.ts:1877 +#: src/strings.ts:1879 msgid "Authenticating user" msgstr "" -#: src/strings.ts:2113 +#: src/strings.ts:2115 msgid "Authentication" msgstr "" -#: src/strings.ts:1709 +#: src/strings.ts:1711 msgid "authentication app" msgstr "" -#: src/strings.ts:1332 +#: src/strings.ts:1334 msgid "Authentication cancelled by user" msgstr "" -#: src/strings.ts:1333 +#: src/strings.ts:1335 msgid "Authentication failed" msgstr "" -#: src/strings.ts:2076 +#: src/strings.ts:2078 msgid "Auto" msgstr "" -#: src/strings.ts:1640 +#: src/strings.ts:1642 msgid "Auto save: off" msgstr "" -#: src/strings.ts:2090 +#: src/strings.ts:2092 msgid "Auto start on system startup" msgstr "" -#: src/strings.ts:1202 -#: src/strings.ts:1668 +#: src/strings.ts:1204 +#: src/strings.ts:1670 msgid "Automatic backups" msgstr "" -#: src/strings.ts:1346 +#: src/strings.ts:1348 msgid "Automatic backups are off" msgstr "" -#: src/strings.ts:1984 +#: src/strings.ts:1986 msgid "Automatic backups disabled" msgstr "" -#: src/strings.ts:1205 +#: src/strings.ts:1207 msgid "Automatic backups with attachments" msgstr "" -#: src/strings.ts:2086 +#: src/strings.ts:2088 msgid "Automatic updates" msgstr "" @@ -1005,11 +1005,11 @@ msgstr "" msgid "Automatically clear trash after a certain period of time" msgstr "" -#: src/strings.ts:2088 +#: src/strings.ts:2090 msgid "Automatically download & install updates in the background without prompting first." msgstr "" -#: src/strings.ts:1175 +#: src/strings.ts:1177 msgid "Automatically lock the app after a certain period" msgstr "" @@ -1017,15 +1017,15 @@ msgstr "" msgid "Automatically switch between light and dark themes based on your system settings" msgstr "" -#: src/strings.ts:2133 +#: src/strings.ts:2135 msgid "Available on iOS" msgstr "" -#: src/strings.ts:2134 +#: src/strings.ts:2136 msgid "Available on iOS & Android" msgstr "" -#: src/strings.ts:2279 +#: src/strings.ts:2281 msgid "Background color" msgstr "" @@ -1033,31 +1033,31 @@ msgstr "" msgid "Background sync (experimental)" msgstr "" -#: src/strings.ts:2082 +#: src/strings.ts:2084 msgid "Backup" msgstr "" -#: src/strings.ts:2120 +#: src/strings.ts:2122 msgid "Backup & export" msgstr "" -#: src/strings.ts:1194 +#: src/strings.ts:1196 msgid "Backup & restore" msgstr "" -#: src/strings.ts:1316 +#: src/strings.ts:1318 msgid "Backup complete" msgstr "" -#: src/strings.ts:1540 +#: src/strings.ts:1542 msgid "Backup directory not selected" msgstr "" -#: src/strings.ts:1217 +#: src/strings.ts:1219 msgid "Backup encryption" msgstr "" -#: src/strings.ts:1837 +#: src/strings.ts:1839 msgid "Backup files have .nnbackup extension" msgstr "" @@ -1065,15 +1065,15 @@ msgstr "" msgid "Backup is encrypted" msgstr "" -#: src/strings.ts:1593 +#: src/strings.ts:1595 msgid "Backup is encrypted, decrypting..." msgstr "" -#: src/strings.ts:1196 +#: src/strings.ts:1198 msgid "Backup now" msgstr "" -#: src/strings.ts:1197 +#: src/strings.ts:1199 msgid "Backup now with attachments" msgstr "" @@ -1081,15 +1081,15 @@ msgstr "" msgid "Backup restored" msgstr "" -#: src/strings.ts:1898 +#: src/strings.ts:1900 msgid "Backup saved at {path}" msgstr "" -#: src/strings.ts:1328 +#: src/strings.ts:1330 msgid "Backup successful" msgstr "" -#: src/strings.ts:2083 +#: src/strings.ts:2085 msgid "Backup with attachments" msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" msgid "Basic" msgstr "" -#: src/strings.ts:1772 +#: src/strings.ts:1774 msgid "Because where's the fun in nookin' alone?" msgstr "" @@ -1109,7 +1109,7 @@ msgstr "" msgid "Behavior" msgstr "" -#: src/strings.ts:2115 +#: src/strings.ts:2117 msgid "Behaviour" msgstr "" @@ -1117,15 +1117,15 @@ msgstr "" msgid "BETA" msgstr "" -#: src/strings.ts:2237 +#: src/strings.ts:2239 msgid "Bi-directional note link" msgstr "" -#: src/strings.ts:2181 +#: src/strings.ts:2183 msgid "Billing history" msgstr "" -#: src/strings.ts:1161 +#: src/strings.ts:1163 msgid "Biometric unlocking" msgstr "" @@ -1137,27 +1137,27 @@ msgstr "" msgid "Biometric unlocking enabled" msgstr "" -#: src/strings.ts:1330 +#: src/strings.ts:1332 msgid "Biometrics authentication failed. Please try again." msgstr "" -#: src/strings.ts:1170 +#: src/strings.ts:1172 msgid "Biometrics not enrolled" msgstr "" -#: src/strings.ts:2233 +#: src/strings.ts:2235 msgid "Bold" msgstr "" -#: src/strings.ts:2386 +#: src/strings.ts:2388 msgid "Boost your productivity with Notebooks and organize your notes." msgstr "" -#: src/strings.ts:1788 +#: src/strings.ts:1790 msgid "Browse" msgstr "" -#: src/strings.ts:2250 +#: src/strings.ts:2252 msgid "Bullet list" msgstr "" @@ -1169,7 +1169,7 @@ msgstr "" msgid "By signing up, you agree to our " msgstr "" -#: src/strings.ts:2312 +#: src/strings.ts:2314 msgid "Callout" msgstr "" @@ -1185,7 +1185,7 @@ msgstr "" msgid "Cancel login" msgstr "" -#: src/strings.ts:1805 +#: src/strings.ts:1807 msgid "Cancel subscription" msgstr "" @@ -1193,24 +1193,24 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: src/strings.ts:2278 +#: src/strings.ts:2280 msgid "Cell background color" msgstr "" -#: src/strings.ts:2280 +#: src/strings.ts:2282 msgid "Cell border color" msgstr "" -#: src/strings.ts:2282 -#: src/strings.ts:2283 +#: src/strings.ts:2284 +#: src/strings.ts:2285 msgid "Cell border width" msgstr "" -#: src/strings.ts:2264 +#: src/strings.ts:2266 msgid "Cell properties" msgstr "" -#: src/strings.ts:2281 +#: src/strings.ts:2283 msgid "Cell text color" msgstr "" @@ -1226,15 +1226,15 @@ msgstr "" msgid "Change 2FA method" msgstr "" -#: src/strings.ts:1182 +#: src/strings.ts:1184 msgid "Change app lock password" msgstr "" -#: src/strings.ts:1181 +#: src/strings.ts:1183 msgid "Change app lock pin" msgstr "" -#: src/strings.ts:1216 +#: src/strings.ts:1218 msgid "Change backup directory" msgstr "" @@ -1246,11 +1246,11 @@ msgstr "" msgid "Change how the app behaves in different situations" msgstr "" -#: src/strings.ts:2330 +#: src/strings.ts:2332 msgid "Change language" msgstr "" -#: src/strings.ts:1237 +#: src/strings.ts:1239 msgid "Change notification sound" msgstr "" @@ -1258,19 +1258,19 @@ msgstr "" msgid "Change password" msgstr "" -#: src/strings.ts:1797 +#: src/strings.ts:1799 msgid "Change profile picture" msgstr "" -#: src/strings.ts:2159 +#: src/strings.ts:2161 msgid "Change proxy" msgstr "" -#: src/strings.ts:2180 +#: src/strings.ts:2182 msgid "Change the payment method you used to purchase this subscription." msgstr "" -#: src/strings.ts:1239 +#: src/strings.ts:1241 msgid "Change the sound that plays when you receive a notification" msgstr "" @@ -1294,15 +1294,15 @@ msgstr "" msgid "Changing password is an irreversible process. You will be logged out from all your devices. Please make sure you do not close the app while your password is changing and have good internet connection." msgstr "" -#: src/strings.ts:1280 +#: src/strings.ts:1282 msgid "Check for new version of Notesnook" msgstr "" -#: src/strings.ts:1279 +#: src/strings.ts:1281 msgid "Check for updates" msgstr "" -#: src/strings.ts:2132 +#: src/strings.ts:2134 msgid "Check roadmap" msgstr "" @@ -1310,7 +1310,7 @@ msgstr "" msgid "Check your spam folder if you haven't received an email yet." msgstr "" -#: src/strings.ts:2378 +#: src/strings.ts:2380 msgid "Checking all attachments" msgstr "" @@ -1318,31 +1318,31 @@ msgstr "" msgid "Checking for new version" msgstr "" -#: src/strings.ts:1684 +#: src/strings.ts:1686 msgid "Checking for updates" msgstr "" -#: src/strings.ts:2377 +#: src/strings.ts:2379 msgid "Checking note attachments" msgstr "" -#: src/strings.ts:2252 +#: src/strings.ts:2254 msgid "Checklist" msgstr "" -#: src/strings.ts:2307 +#: src/strings.ts:2309 msgid "Choose a block to insert" msgstr "" -#: src/strings.ts:1776 +#: src/strings.ts:1778 msgid "Choose a recovery method" msgstr "" -#: src/strings.ts:2081 +#: src/strings.ts:2083 msgid "Choose backup format" msgstr "" -#: src/strings.ts:2343 +#: src/strings.ts:2345 msgid "Choose custom color" msgstr "" @@ -1354,7 +1354,7 @@ msgstr "" msgid "Choose how dates are displayed in the app" msgstr "" -#: src/strings.ts:1142 +#: src/strings.ts:1144 msgid "Choose how the new note titles are formatted" msgstr "" @@ -1366,15 +1366,15 @@ msgstr "" msgid "Choose how you want to secure your notes locally." msgstr "" -#: src/strings.ts:1212 +#: src/strings.ts:1214 msgid "Choose where to save your backups" msgstr "" -#: src/strings.ts:2041 +#: src/strings.ts:2043 msgid "Choose your style" msgstr "" -#: src/strings.ts:1596 +#: src/strings.ts:1598 msgid "cleaningUp" msgstr "" @@ -1382,27 +1382,27 @@ msgstr "" msgid "Clear" msgstr "" -#: src/strings.ts:1849 +#: src/strings.ts:1851 msgid "Clear all cached attachments. Current cache size: {cacheSize}" msgstr "" -#: src/strings.ts:2246 +#: src/strings.ts:2248 msgid "Clear all formatting" msgstr "" -#: src/strings.ts:1850 +#: src/strings.ts:1852 msgid "Clear attachments cache?" msgstr "" -#: src/strings.ts:1847 +#: src/strings.ts:1849 msgid "Clear cache" msgstr "" -#: src/strings.ts:2341 +#: src/strings.ts:2343 msgid "Clear completed tasks" msgstr "" -#: src/strings.ts:1784 +#: src/strings.ts:1786 msgid "Clear data & reset account" msgstr "" @@ -1414,11 +1414,11 @@ msgstr "" msgid "Clear logs" msgstr "" -#: src/strings.ts:2175 +#: src/strings.ts:2177 msgid "clear sessions" msgstr "" -#: src/strings.ts:1303 +#: src/strings.ts:1305 msgid "Clear trash" msgstr "" @@ -1430,7 +1430,7 @@ msgstr "" msgid "Clear vault" msgstr "" -#: src/strings.ts:1852 +#: src/strings.ts:1854 msgid "" "Clearing attachments cache will perform the following actions:\n" "\n" @@ -1449,51 +1449,51 @@ msgstr "" msgid "Click to deselect" msgstr "" -#: src/strings.ts:1846 +#: src/strings.ts:1848 msgid "Click to preview" msgstr "" -#: src/strings.ts:1751 +#: src/strings.ts:1753 msgid "Click to remove" msgstr "" -#: src/strings.ts:2369 +#: src/strings.ts:2371 msgid "Click to reset {title}" msgstr "" -#: src/strings.ts:1362 +#: src/strings.ts:1364 msgid "Close" msgstr "" -#: src/strings.ts:1998 +#: src/strings.ts:2000 msgid "Close all" msgstr "" -#: src/strings.ts:1995 +#: src/strings.ts:1997 msgid "Close others" msgstr "" -#: src/strings.ts:2099 +#: src/strings.ts:2101 msgid "Close to system tray" msgstr "" -#: src/strings.ts:1997 +#: src/strings.ts:1999 msgid "Close to the left" msgstr "" -#: src/strings.ts:1996 +#: src/strings.ts:1998 msgid "Close to the right" msgstr "" -#: src/strings.ts:2244 +#: src/strings.ts:2246 msgid "Code" msgstr "" -#: src/strings.ts:2309 +#: src/strings.ts:2311 msgid "Code block" msgstr "" -#: src/strings.ts:2245 +#: src/strings.ts:2247 msgid "Code remove" msgstr "" @@ -1506,7 +1506,7 @@ msgid "color" msgstr "" #: src/strings.ts:299 -#: src/strings.ts:1823 +#: src/strings.ts:1825 msgid "Color" msgstr "" @@ -1514,11 +1514,11 @@ msgstr "" msgid "Color #{color} already exists" msgstr "" -#: src/strings.ts:2074 +#: src/strings.ts:2076 msgid "Color scheme" msgstr "" -#: src/strings.ts:1470 +#: src/strings.ts:1472 msgid "Color title" msgstr "" @@ -1530,11 +1530,11 @@ msgstr "" msgid "Colors" msgstr "" -#: src/strings.ts:2262 +#: src/strings.ts:2264 msgid "Column properties" msgstr "" -#: src/strings.ts:1255 +#: src/strings.ts:1257 msgid "Community" msgstr "" @@ -1554,11 +1554,11 @@ msgstr "" msgid "Compressed images are uploaded in Full HD resolution and usually are good enough for most use cases." msgstr "" -#: src/strings.ts:2228 +#: src/strings.ts:2230 msgid "Configure" msgstr "" -#: src/strings.ts:2383 +#: src/strings.ts:2385 msgid "Configure server URLs for Notesnook" msgstr "" @@ -1570,31 +1570,31 @@ msgstr "" msgid "Confirm email to publish note" msgstr "" -#: src/strings.ts:1469 +#: src/strings.ts:1471 msgid "Confirm new password" msgstr "" -#: src/strings.ts:1464 +#: src/strings.ts:1466 msgid "Confirm password" msgstr "" -#: src/strings.ts:1468 +#: src/strings.ts:1470 msgid "Confirm pin" msgstr "" -#: src/strings.ts:2059 +#: src/strings.ts:2061 msgid "Congratulations!" msgstr "" -#: src/strings.ts:1615 +#: src/strings.ts:1617 msgid "Connected to all servers sucessfully." msgstr "" -#: src/strings.ts:1650 +#: src/strings.ts:1652 msgid "Contact support" msgstr "" -#: src/strings.ts:1246 +#: src/strings.ts:1248 msgid "Contact us directly via support@streetwriters.co for any help or support" msgstr "" @@ -1602,15 +1602,15 @@ msgstr "" msgid "Continue" msgstr "" -#: src/strings.ts:1148 +#: src/strings.ts:1150 msgid "Contribute towards a better Notesnook. All tracking information is anonymous." msgstr "" -#: src/strings.ts:1232 +#: src/strings.ts:1234 msgid "Controls whether this device should receive reminder notifications." msgstr "" -#: src/strings.ts:1969 +#: src/strings.ts:1971 msgid "Copied" msgstr "" @@ -1619,7 +1619,7 @@ msgid "Copy" msgstr "" #. placeholder {0}: format ? " " + format : "" -#: src/strings.ts:2015 +#: src/strings.ts:2017 msgid "Copy as{0}" msgstr "" @@ -1627,7 +1627,7 @@ msgstr "" msgid "Copy codes" msgstr "" -#: src/strings.ts:2226 +#: src/strings.ts:2228 msgid "Copy image" msgstr "" @@ -1635,7 +1635,7 @@ msgstr "" msgid "Copy link" msgstr "" -#: src/strings.ts:2225 +#: src/strings.ts:2227 msgid "Copy link text" msgstr "" @@ -1647,27 +1647,27 @@ msgstr "" msgid "Copy to clipboard" msgstr "" -#: src/strings.ts:1598 +#: src/strings.ts:1600 msgid "Copying backup files to cache" msgstr "" -#: src/strings.ts:1152 +#: src/strings.ts:1154 msgid "CORS bypass" msgstr "" -#: src/strings.ts:1965 +#: src/strings.ts:1967 msgid "Could not activate trial. Please try again later." msgstr "" -#: src/strings.ts:1983 +#: src/strings.ts:1985 msgid "Could not clear trash." msgstr "" -#: src/strings.ts:1618 +#: src/strings.ts:1620 msgid "Could not connect to {server}." msgstr "" -#: src/strings.ts:1930 +#: src/strings.ts:1932 msgid "Could not convert note to {format}." msgstr "" @@ -1699,7 +1699,7 @@ msgstr "" msgid "Create a shortcut" msgstr "" -#: src/strings.ts:1828 +#: src/strings.ts:1830 msgid "Create account" msgstr "" @@ -1707,19 +1707,19 @@ msgstr "" msgid "Create link" msgstr "" -#: src/strings.ts:1454 +#: src/strings.ts:1456 msgid "Create shortcut of this notebook in side menu" msgstr "" -#: src/strings.ts:1368 +#: src/strings.ts:1370 msgid "Create unlimited notebooks with Notesnook Pro" msgstr "" -#: src/strings.ts:1367 +#: src/strings.ts:1369 msgid "Create unlimited tags with Notesnook Pro" msgstr "" -#: src/strings.ts:1369 +#: src/strings.ts:1371 msgid "Create unlimited vaults with Notesnook Pro" msgstr "" @@ -1731,20 +1731,20 @@ msgstr "" msgid "Create your account" msgstr "" -#: src/strings.ts:2208 +#: src/strings.ts:2210 msgid "Created at" msgstr "" #. placeholder {0}: type === "full" ? " full" : "" -#: src/strings.ts:1325 +#: src/strings.ts:1327 msgid "Creating a{0} backup" msgstr "" -#: src/strings.ts:2028 +#: src/strings.ts:2030 msgid "Credentials" msgstr "" -#: src/strings.ts:2044 +#: src/strings.ts:2046 msgid "Cross platform & 100% encrypted" msgstr "" @@ -1752,31 +1752,31 @@ msgstr "" msgid "Curate the toolbar that fits your needs and matches your personality." msgstr "" -#: src/strings.ts:1815 +#: src/strings.ts:1817 msgid "Current note" msgstr "" -#: src/strings.ts:1466 +#: src/strings.ts:1468 msgid "Current password" msgstr "" -#: src/strings.ts:1213 +#: src/strings.ts:1215 msgid "Current path: {path}" msgstr "" -#: src/strings.ts:1465 +#: src/strings.ts:1467 msgid "Current pin" msgstr "" -#: src/strings.ts:1752 +#: src/strings.ts:1754 msgid "CURRENT PLAN" msgstr "" -#: src/strings.ts:1989 +#: src/strings.ts:1991 msgid "Custom" msgstr "" -#: src/strings.ts:2110 +#: src/strings.ts:2112 msgid "Custom dictionary words" msgstr "" @@ -1788,24 +1788,24 @@ msgstr "" msgid "Customize the appearance of the app with custom themes" msgstr "" -#: src/strings.ts:1128 +#: src/strings.ts:1129 msgid "Customize the note editor" msgstr "" -#: src/strings.ts:1130 +#: src/strings.ts:1131 msgid "Customize the toolbar in the note editor" msgstr "" -#: src/strings.ts:1129 +#: src/strings.ts:1130 msgid "Customize toolbar" msgstr "" -#: src/strings.ts:2224 +#: src/strings.ts:2226 msgid "Cut" msgstr "" #: src/strings.ts:167 -#: src/strings.ts:1547 +#: src/strings.ts:1549 msgid "Daily" msgstr "" @@ -1817,19 +1817,19 @@ msgstr "" msgid "Dark mode" msgstr "" -#: src/strings.ts:2075 +#: src/strings.ts:2077 msgid "Dark or light, we won't judge." msgstr "" -#: src/strings.ts:1526 +#: src/strings.ts:1528 msgid "Database setup failed, could not get database key" msgstr "" -#: src/strings.ts:1818 +#: src/strings.ts:1820 msgid "Date" msgstr "" -#: src/strings.ts:2084 +#: src/strings.ts:2086 msgid "Date & time" msgstr "" @@ -1853,15 +1853,15 @@ msgstr "" msgid "Date modified" msgstr "" -#: src/strings.ts:2021 +#: src/strings.ts:2023 msgid "Date uploaded" msgstr "" -#: src/strings.ts:1820 +#: src/strings.ts:1822 msgid "Day" msgstr "" -#: src/strings.ts:2017 +#: src/strings.ts:2019 msgid "Deactivate" msgstr "" @@ -1869,7 +1869,7 @@ msgstr "" msgid "Debug log copied!" msgstr "" -#: src/strings.ts:1253 +#: src/strings.ts:1255 msgid "Debug logs" msgstr "" @@ -1877,44 +1877,48 @@ msgstr "" msgid "Debug logs downloaded" msgstr "" -#: src/strings.ts:1250 +#: src/strings.ts:1252 msgid "Debugging" msgstr "" -#: src/strings.ts:2371 +#: src/strings.ts:2373 msgid "Decrease {title}" msgstr "" #: src/strings.ts:649 -#: src/strings.ts:1987 +#: src/strings.ts:1989 msgid "Default" msgstr "" -#: src/strings.ts:1139 +#: src/strings.ts:1141 msgid "Default font family" msgstr "" -#: src/strings.ts:1140 +#: src/strings.ts:1142 msgid "Default font family in editor" msgstr "" -#: src/strings.ts:1137 +#: src/strings.ts:1139 msgid "Default font size" msgstr "" -#: src/strings.ts:1138 +#: src/strings.ts:1140 msgid "Default font size in editor" msgstr "" +#: src/strings.ts:1127 +msgid "Default notebook cleared" +msgstr "" + #: src/strings.ts:1113 msgid "Default screen to open on app launch" msgstr "" -#: src/strings.ts:1233 +#: src/strings.ts:1235 msgid "Default snooze time" msgstr "" -#: src/strings.ts:1282 +#: src/strings.ts:1284 msgid "Default sound" msgstr "" @@ -1926,19 +1930,19 @@ msgstr "" msgid "Delete account" msgstr "" -#: src/strings.ts:1300 +#: src/strings.ts:1302 msgid "Delete collapsed section" msgstr "" -#: src/strings.ts:2269 +#: src/strings.ts:2271 msgid "Delete column" msgstr "" -#: src/strings.ts:1295 +#: src/strings.ts:1297 msgid "Delete group" msgstr "" -#: src/strings.ts:2344 +#: src/strings.ts:2346 msgid "Delete mode" msgstr "" @@ -1950,11 +1954,11 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: src/strings.ts:2276 +#: src/strings.ts:2278 msgid "Delete row" msgstr "" -#: src/strings.ts:2277 +#: src/strings.ts:2279 msgid "Delete table" msgstr "" @@ -1962,7 +1966,7 @@ msgstr "" msgid "Delete vault" msgstr "" -#: src/strings.ts:1160 +#: src/strings.ts:1162 msgid "Delete vault (and optionally remove all notes)." msgstr "" @@ -1970,19 +1974,19 @@ msgstr "" msgid "Deleted on {date}" msgstr "" -#: src/strings.ts:1907 +#: src/strings.ts:1909 msgid "Deleting" msgstr "" -#: src/strings.ts:1817 +#: src/strings.ts:1819 msgid "Description" msgstr "" -#: src/strings.ts:2085 +#: src/strings.ts:2087 msgid "Desktop app" msgstr "" -#: src/strings.ts:2089 +#: src/strings.ts:2091 msgid "Desktop integration" msgstr "" @@ -1990,7 +1994,7 @@ msgstr "" msgid "Did you save recovery key?" msgstr "" -#: src/strings.ts:1357 +#: src/strings.ts:1359 msgid "Disable" msgstr "" @@ -1998,7 +2002,7 @@ msgstr "" msgid "Disable auto sync" msgstr "" -#: src/strings.ts:1990 +#: src/strings.ts:1992 msgid "Disable editor margins" msgstr "" @@ -2018,11 +2022,11 @@ msgstr "" msgid "Discard" msgstr "" -#: src/strings.ts:1576 +#: src/strings.ts:1578 msgid "Dismiss" msgstr "" -#: src/strings.ts:1629 +#: src/strings.ts:1631 msgid "Dismiss announcement" msgstr "" @@ -2034,11 +2038,11 @@ msgstr "" msgid "Do you enjoy using Notesnook?" msgstr "" -#: src/strings.ts:2207 +#: src/strings.ts:2209 msgid "Do you want to clear the trash?" msgstr "" -#: src/strings.ts:1247 +#: src/strings.ts:1249 msgid "Documentation" msgstr "" @@ -2062,11 +2066,11 @@ msgstr "" msgid "Don't have an account?" msgstr "" -#: src/strings.ts:1811 +#: src/strings.ts:1813 msgid "Don't have backup file?" msgstr "" -#: src/strings.ts:1810 +#: src/strings.ts:1812 msgid "Don't have your account recovery key?" msgstr "" @@ -2074,11 +2078,11 @@ msgstr "" msgid "Don't have your recovery codes?" msgstr "" -#: src/strings.ts:1789 +#: src/strings.ts:1791 msgid "Don't show again" msgstr "" -#: src/strings.ts:1790 +#: src/strings.ts:1792 msgid "Don't show again on this device?" msgstr "" @@ -2086,7 +2090,7 @@ msgstr "" msgid "Done" msgstr "" -#: src/strings.ts:1133 +#: src/strings.ts:1135 msgid "Double spaced lines" msgstr "" @@ -2094,15 +2098,15 @@ msgstr "" msgid "Download" msgstr "" -#: src/strings.ts:1795 +#: src/strings.ts:1797 msgid "Download all attachments" msgstr "" -#: src/strings.ts:2293 +#: src/strings.ts:2295 msgid "Download attachment" msgstr "" -#: src/strings.ts:1839 +#: src/strings.ts:1841 msgid "Download backup file" msgstr "" @@ -2110,11 +2114,11 @@ msgstr "" msgid "Download cancelled" msgstr "" -#: src/strings.ts:2187 +#: src/strings.ts:2189 msgid "Download everything including attachments on sync" msgstr "" -#: src/strings.ts:1274 +#: src/strings.ts:1276 msgid "Download on desktop" msgstr "" @@ -2147,19 +2151,19 @@ msgstr "" msgid "Downloading attachments" msgstr "" -#: src/strings.ts:1683 +#: src/strings.ts:1685 msgid "Downloading images" msgstr "" -#: src/strings.ts:1749 +#: src/strings.ts:1751 msgid "Drag & drop files here, or click to select files" msgstr "" -#: src/strings.ts:1748 +#: src/strings.ts:1750 msgid "Drop the files here" msgstr "" -#: src/strings.ts:1642 +#: src/strings.ts:1644 msgid "Drop your files here to attach" msgstr "" @@ -2175,11 +2179,11 @@ msgstr "" msgid "Earliest first" msgstr "" -#: src/strings.ts:2395 +#: src/strings.ts:2397 msgid "Easy access" msgstr "" -#: src/strings.ts:1756 +#: src/strings.ts:1758 msgid "Edit" msgstr "" @@ -2187,29 +2191,29 @@ msgstr "" msgid "Edit internal link" msgstr "" -#: src/strings.ts:2213 -#: src/strings.ts:2239 +#: src/strings.ts:2215 +#: src/strings.ts:2241 msgid "Edit link" msgstr "" -#: src/strings.ts:1288 +#: src/strings.ts:1290 msgid "Edit profile picture" msgstr "" -#: src/strings.ts:1798 +#: src/strings.ts:1800 msgid "Edit your full name" msgstr "" -#: src/strings.ts:1127 -#: src/strings.ts:1506 +#: src/strings.ts:1128 +#: src/strings.ts:1508 msgid "Editor" msgstr "" -#: src/strings.ts:1462 +#: src/strings.ts:1464 msgid "Email" msgstr "" -#: src/strings.ts:2408 +#: src/strings.ts:2410 msgid "Email copied" msgstr "" @@ -2221,11 +2225,11 @@ msgstr "" msgid "Email not confirmed" msgstr "" -#: src/strings.ts:1532 +#: src/strings.ts:1534 msgid "Email or password incorrect" msgstr "" -#: src/strings.ts:1244 +#: src/strings.ts:1246 msgid "Email support" msgstr "" @@ -2233,15 +2237,15 @@ msgstr "" msgid "Email updated to {email}" msgstr "" -#: src/strings.ts:2319 +#: src/strings.ts:2321 msgid "Embed" msgstr "" -#: src/strings.ts:2299 +#: src/strings.ts:2301 msgid "Embed properties" msgstr "" -#: src/strings.ts:2295 +#: src/strings.ts:2297 msgid "Embed settings" msgstr "" @@ -2253,19 +2257,19 @@ msgstr "" msgid "Enable (Recommended)" msgstr "" -#: src/strings.ts:1169 +#: src/strings.ts:1171 msgid "Enable app lock" msgstr "" -#: src/strings.ts:1991 +#: src/strings.ts:1993 msgid "Enable editor margins" msgstr "" -#: src/strings.ts:2359 +#: src/strings.ts:2361 msgid "Enable regex" msgstr "" -#: src/strings.ts:2106 +#: src/strings.ts:2108 msgid "Enable spell checker" msgstr "" @@ -2273,7 +2277,7 @@ msgstr "" msgid "Enable two-factor authentication to add an extra layer of security to your account." msgstr "" -#: src/strings.ts:1218 +#: src/strings.ts:1220 msgid "Encrypt your backups for added security" msgstr "" @@ -2281,11 +2285,11 @@ msgstr "" msgid "Encrypted and synced" msgstr "" -#: src/strings.ts:2220 +#: src/strings.ts:2222 msgid "Encrypted backup" msgstr "" -#: src/strings.ts:1636 +#: src/strings.ts:1638 msgid "Encrypted, private, secure." msgstr "" @@ -2293,7 +2297,7 @@ msgstr "" msgid "Encrypting attachment" msgstr "" -#: src/strings.ts:1822 +#: src/strings.ts:1824 msgid "Encryption key" msgstr "" @@ -2313,7 +2317,7 @@ msgstr "" msgid "Enter account password to proceed." msgstr "" -#: src/strings.ts:1831 +#: src/strings.ts:1833 msgid "Enter account recovery key" msgstr "" @@ -2329,23 +2333,23 @@ msgstr "" msgid "Enter code from authenticator app" msgstr "" -#: src/strings.ts:1492 +#: src/strings.ts:1494 msgid "Enter email address" msgstr "" -#: src/strings.ts:2347 +#: src/strings.ts:2349 msgid "Enter embed source URL" msgstr "" -#: src/strings.ts:1294 +#: src/strings.ts:1296 msgid "Enter full name" msgstr "" -#: src/strings.ts:1680 +#: src/strings.ts:1682 msgid "Enter fullscreen" msgstr "" -#: src/strings.ts:1471 +#: src/strings.ts:1473 msgid "Enter notebook description" msgstr "" @@ -2357,7 +2361,7 @@ msgstr "" msgid "Enter password" msgstr "" -#: src/strings.ts:2067 +#: src/strings.ts:2069 msgid "Enter pin or password to enable app lock." msgstr "" @@ -2377,7 +2381,7 @@ msgstr "" msgid "Enter the 6 digit code sent to your phone number to continue logging in" msgstr "" -#: src/strings.ts:2410 +#: src/strings.ts:2412 msgid "Enter the gift code to redeem your subscription." msgstr "" @@ -2385,23 +2389,23 @@ msgstr "" msgid "Enter the recovery code to continue logging in" msgstr "" -#: src/strings.ts:1474 +#: src/strings.ts:1476 msgid "Enter verification code sent to your new email" msgstr "" -#: src/strings.ts:1473 +#: src/strings.ts:1475 msgid "Enter your new email" msgstr "" -#: src/strings.ts:2068 +#: src/strings.ts:2070 msgid "Enter your username" msgstr "" -#: src/strings.ts:2402 +#: src/strings.ts:2404 msgid "Error" msgstr "" -#: src/strings.ts:1533 +#: src/strings.ts:1535 msgid "Error applying promo code" msgstr "" @@ -2409,7 +2413,7 @@ msgstr "" msgid "Error downloading file: {message}" msgstr "" -#: src/strings.ts:1495 +#: src/strings.ts:1497 msgid "Error getting codes" msgstr "" @@ -2429,35 +2433,35 @@ msgstr "" msgid "Errors" msgstr "" -#: src/strings.ts:1675 +#: src/strings.ts:1677 msgid "Errors in {count} attachments" msgstr "" -#: src/strings.ts:1607 +#: src/strings.ts:1609 msgid "Events server" msgstr "" -#: src/strings.ts:2388 +#: src/strings.ts:2390 msgid "Every Notebook can have notes and sub notebooks." msgstr "" -#: src/strings.ts:2390 +#: src/strings.ts:2392 msgid "Everything related to my job in one place." msgstr "" -#: src/strings.ts:2399 +#: src/strings.ts:2401 msgid "Everything related to my school in one place." msgstr "" -#: src/strings.ts:1992 +#: src/strings.ts:1994 msgid "Exit fullscreen" msgstr "" -#: src/strings.ts:2351 +#: src/strings.ts:2353 msgid "Expand" msgstr "" -#: src/strings.ts:2051 +#: src/strings.ts:2053 msgid "Experience the next level of private note taking\"" msgstr "" @@ -2469,20 +2473,20 @@ msgstr "" msgid "Export again" msgstr "" -#: src/strings.ts:1221 +#: src/strings.ts:1223 msgid "Export all notes" msgstr "" -#: src/strings.ts:1223 +#: src/strings.ts:1225 msgid "Export all notes as pdf, markdown, html or text in a single zip file" msgstr "" #. placeholder {0}: format ? " " + format : "" -#: src/strings.ts:2014 +#: src/strings.ts:2016 msgid "Export as{0}" msgstr "" -#: src/strings.ts:1366 +#: src/strings.ts:1368 msgid "Export notes as PDF, Markdown and HTML with Notesnook Pro" msgstr "" @@ -2490,31 +2494,31 @@ msgstr "" msgid "Exporting \"{title}\"" msgstr "" -#: src/strings.ts:1597 +#: src/strings.ts:1599 msgid "Extracting files..." msgstr "" -#: src/strings.ts:1786 +#: src/strings.ts:1788 msgid "EXTREMELY DANGEROUS! This action is irreversible. All your data including notes, notebooks, attachments & settings will be deleted. This is a full account reset. Proceed with caution." msgstr "" -#: src/strings.ts:1243 +#: src/strings.ts:1245 msgid "Faced an issue or have a suggestion? Click here to create a bug report" msgstr "" -#: src/strings.ts:2380 +#: src/strings.ts:2382 msgid "Failed" msgstr "" -#: src/strings.ts:1915 +#: src/strings.ts:1917 msgid "Failed to copy note" msgstr "" -#: src/strings.ts:1539 +#: src/strings.ts:1541 msgid "Failed to decrypt backup" msgstr "" -#: src/strings.ts:1981 +#: src/strings.ts:1983 msgid "Failed to delete" msgstr "" @@ -2526,7 +2530,7 @@ msgstr "" msgid "Failed to download file" msgstr "" -#: src/strings.ts:1977 +#: src/strings.ts:1979 msgid "Failed to install theme." msgstr "" @@ -2538,7 +2542,7 @@ msgstr "" msgid "Failed to publish note" msgstr "" -#: src/strings.ts:1982 +#: src/strings.ts:1984 msgid "Failed to register task" msgstr "" @@ -2550,7 +2554,7 @@ msgstr "" msgid "Failed to send recovery email" msgstr "" -#: src/strings.ts:1382 +#: src/strings.ts:1384 msgid "Failed to send verification email" msgstr "" @@ -2558,11 +2562,11 @@ msgstr "" msgid "Failed to subscribe" msgstr "" -#: src/strings.ts:2182 +#: src/strings.ts:2184 msgid "Failed to take backup" msgstr "" -#: src/strings.ts:2184 +#: src/strings.ts:2186 msgid "Failed to take backup of your data. Do you want to continue logging out?" msgstr "" @@ -2578,20 +2582,20 @@ msgstr "" msgid "Fallback method for 2FA enabled" msgstr "" -#: src/strings.ts:2011 +#: src/strings.ts:2013 msgid "Favorite" msgstr "" #: src/strings.ts:321 -#: src/strings.ts:1501 +#: src/strings.ts:1503 msgid "Favorites" msgstr "" -#: src/strings.ts:2392 +#: src/strings.ts:2394 msgid "February 2022 Week 2" msgstr "" -#: src/strings.ts:2393 +#: src/strings.ts:2395 msgid "February 2022 Week 3" msgstr "" @@ -2623,63 +2627,63 @@ msgstr "" msgid "File too big" msgstr "" -#: src/strings.ts:1459 +#: src/strings.ts:1461 msgid "Filter attachments by filename, type or hash" msgstr "" -#: src/strings.ts:1812 +#: src/strings.ts:1814 msgid "Filter languages" msgstr "" -#: src/strings.ts:1648 +#: src/strings.ts:1650 msgid "Fix it" msgstr "" -#: src/strings.ts:2288 +#: src/strings.ts:2290 msgid "Float image" msgstr "" -#: src/strings.ts:1994 +#: src/strings.ts:1996 msgid "Focus mode" msgstr "" -#: src/strings.ts:2142 +#: src/strings.ts:2144 msgid "Follow" msgstr "" -#: src/strings.ts:1259 +#: src/strings.ts:1261 msgid "Follow us on Mastodon" msgstr "" -#: src/strings.ts:1261 +#: src/strings.ts:1263 msgid "Follow us on Mastodon for updates and news about Notesnook" msgstr "" -#: src/strings.ts:1262 +#: src/strings.ts:1264 msgid "Follow us on X" msgstr "" -#: src/strings.ts:1263 +#: src/strings.ts:1265 msgid "Follow us on X for updates and news about Notesnook" msgstr "" -#: src/strings.ts:2253 +#: src/strings.ts:2255 msgid "Font family" msgstr "" -#: src/strings.ts:2254 +#: src/strings.ts:2256 msgid "Font size" msgstr "" -#: src/strings.ts:1665 +#: src/strings.ts:1667 msgid "For a more integrated user experience, try out Notesnook for {platform}" msgstr "" -#: src/strings.ts:1746 +#: src/strings.ts:1748 msgid "for help regarding how to use the Notesnook Importer." msgstr "" -#: src/strings.ts:2174 +#: src/strings.ts:2176 msgid "Force logout from all your other logged in devices." msgstr "" @@ -2691,7 +2695,7 @@ msgstr "" msgid "Force push changes" msgstr "" -#: src/strings.ts:2191 +#: src/strings.ts:2193 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" @@ -2714,55 +2718,55 @@ msgstr "" msgid "Friday" msgstr "" -#: src/strings.ts:2349 +#: src/strings.ts:2351 msgid "From code" msgstr "" -#: src/strings.ts:2346 +#: src/strings.ts:2348 msgid "From URL" msgstr "" -#: src/strings.ts:1978 +#: src/strings.ts:1980 msgid "Full name updated" msgstr "" -#: src/strings.ts:2185 +#: src/strings.ts:2187 msgid "Full offline mode" msgstr "" -#: src/strings.ts:2301 +#: src/strings.ts:2303 msgid "Full screen" msgstr "" -#: src/strings.ts:2071 +#: src/strings.ts:2073 msgid "General" msgstr "" -#: src/strings.ts:1252 +#: src/strings.ts:1254 msgid "Get helpful debug info about the app to help us find bugs." msgstr "" -#: src/strings.ts:1276 +#: src/strings.ts:1278 msgid "Get Notesnook app on your desktop and access all notes" msgstr "" -#: src/strings.ts:2136 +#: src/strings.ts:2138 msgid "Get Notesnook app on your iPhone and access all your notes on the go." msgstr "" -#: src/strings.ts:2138 +#: src/strings.ts:2140 msgid "Get Notesnook app on your iPhone or Android device and access all your notes on the go." msgstr "" -#: src/strings.ts:1363 +#: src/strings.ts:1365 msgid "Get Notesnook Pro" msgstr "" -#: src/strings.ts:1348 +#: src/strings.ts:1350 msgid "Get Notesnook Pro to enable automatic backups" msgstr "" -#: src/strings.ts:2384 +#: src/strings.ts:2386 msgid "Get Priority support" msgstr "" @@ -2774,7 +2778,7 @@ msgstr "" msgid "Get started" msgstr "" -#: src/strings.ts:1864 +#: src/strings.ts:1866 msgid "Getting encryption key..." msgstr "" @@ -2786,35 +2790,35 @@ msgstr "" msgid "Getting recovery codes" msgstr "" -#: src/strings.ts:2141 +#: src/strings.ts:2143 msgid "GNU GENERAL PUBLIC LICENSE Version 3" msgstr "" -#: src/strings.ts:2204 +#: src/strings.ts:2206 msgid "Go back to notebooks" msgstr "" -#: src/strings.ts:2205 +#: src/strings.ts:2207 msgid "Go back to tags" msgstr "" -#: src/strings.ts:1792 +#: src/strings.ts:1794 msgid "Go to" msgstr "" -#: src/strings.ts:1793 +#: src/strings.ts:1795 msgid "Go to #{tag}" msgstr "" -#: src/strings.ts:1676 +#: src/strings.ts:1678 msgid "Go to next page" msgstr "" -#: src/strings.ts:1677 +#: src/strings.ts:1679 msgid "Go to previous page" msgstr "" -#: src/strings.ts:1285 +#: src/strings.ts:1287 msgid "Go to web app" msgstr "" @@ -2826,7 +2830,7 @@ msgstr "" msgid "GROUP" msgstr "" -#: src/strings.ts:1866 +#: src/strings.ts:1868 msgid "Group added successfully" msgstr "" @@ -2838,23 +2842,23 @@ msgstr "" msgid "Hash copied" msgstr "" -#: src/strings.ts:2188 +#: src/strings.ts:2190 msgid "Having problems with sync?" msgstr "" -#: src/strings.ts:2327 +#: src/strings.ts:2329 msgid "Heading {level}" msgstr "" -#: src/strings.ts:2255 +#: src/strings.ts:2257 msgid "Headings" msgstr "" -#: src/strings.ts:2362 +#: src/strings.ts:2364 msgid "Height" msgstr "" -#: src/strings.ts:1240 +#: src/strings.ts:1242 msgid "Help and support" msgstr "" @@ -2862,19 +2866,19 @@ msgstr "" msgid "Help improve Notesnook by sending completely anonymized" msgstr "" -#: src/strings.ts:1356 +#: src/strings.ts:1358 msgid "Hide" msgstr "" -#: src/strings.ts:1166 +#: src/strings.ts:1168 msgid "Hide app contents when you switch to other apps. This will also disable screenshot taking in the app." msgstr "" -#: src/strings.ts:2147 +#: src/strings.ts:2149 msgid "Hide note title" msgstr "" -#: src/strings.ts:2258 +#: src/strings.ts:2260 msgid "Highlight" msgstr "" @@ -2882,7 +2886,7 @@ msgstr "" msgid "History" msgstr "" -#: src/strings.ts:1507 +#: src/strings.ts:1509 msgid "Home" msgstr "" @@ -2890,19 +2894,19 @@ msgstr "" msgid "Homepage" msgstr "" -#: src/strings.ts:1298 +#: src/strings.ts:1300 msgid "Homepage changed to {name}" msgstr "" -#: src/strings.ts:2308 +#: src/strings.ts:2310 msgid "Horizontal rule" msgstr "" -#: src/strings.ts:1777 +#: src/strings.ts:1779 msgid "How do you want to recover your account?" msgstr "" -#: src/strings.ts:1647 +#: src/strings.ts:1649 msgid "How to fix it?" msgstr "" @@ -2930,15 +2934,15 @@ msgstr "" msgid "I have a recovery code" msgstr "" -#: src/strings.ts:1865 +#: src/strings.ts:1867 msgid "I have saved my key" msgstr "" -#: src/strings.ts:2401 +#: src/strings.ts:2403 msgid "I love cooking and collecting recipes." msgstr "" -#: src/strings.ts:2189 +#: src/strings.ts:2191 msgid "I understand" msgstr "" @@ -2954,29 +2958,29 @@ msgstr "" msgid "If this continues to happen, please reach out to us via" msgstr "" -#: src/strings.ts:2092 +#: src/strings.ts:2094 msgid "If true, Notesnook will automatically start up when you turn on & login to your system." msgstr "" -#: src/strings.ts:2095 +#: src/strings.ts:2097 msgid "If true, Notesnook will start minimized to either the system tray or your system taskbar/dock. This setting only works with Auto start on system startup is enabled." msgstr "" -#: src/strings.ts:1703 +#: src/strings.ts:1705 msgid "If you can't scan the QR code above, enter this text instead (spaces don't matter)" msgstr "" -#: src/strings.ts:1375 +#: src/strings.ts:1377 msgid "" "If you didn't get an email from us or the confirmation link isn't\n" " working," msgstr "" -#: src/strings.ts:1783 +#: src/strings.ts:1785 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:2056 +#: src/strings.ts:2058 msgid "If you face any issue, you can reach out to us anytime." msgstr "" @@ -2984,7 +2988,7 @@ msgstr "" msgid "If you want to ask something in general or need some assistance, we would suggest that you" msgstr "" -#: src/strings.ts:2313 +#: src/strings.ts:2315 msgid "Image" msgstr "" @@ -2992,11 +2996,11 @@ msgstr "" msgid "Image Compression" msgstr "" -#: src/strings.ts:2289 +#: src/strings.ts:2291 msgid "Image properties" msgstr "" -#: src/strings.ts:2284 +#: src/strings.ts:2286 msgid "Image settings" msgstr "" @@ -3012,19 +3016,19 @@ msgstr "" msgid "Images uploaded without compression are slow to load and take more bandwidth. We recommend compressing images unless you need image in original quality." msgstr "" -#: src/strings.ts:1561 +#: src/strings.ts:1563 msgid "Immediately" msgstr "" -#: src/strings.ts:2119 +#: src/strings.ts:2121 msgid "Import & export" msgstr "" -#: src/strings.ts:1730 +#: src/strings.ts:1732 msgid "Import completed" msgstr "" -#: src/strings.ts:1745 +#: src/strings.ts:1747 msgid "import guide" msgstr "" @@ -3032,7 +3036,7 @@ msgstr "" msgid "Incoming" msgstr "" -#: src/strings.ts:1816 +#: src/strings.ts:1818 msgid "Incoming note" msgstr "" @@ -3040,59 +3044,59 @@ msgstr "" msgid "Incorrect {type}" msgstr "" -#: src/strings.ts:2370 +#: src/strings.ts:2372 msgid "Increase {title}" msgstr "" -#: src/strings.ts:2214 +#: src/strings.ts:2216 msgid "Insert" msgstr "" -#: src/strings.ts:2367 +#: src/strings.ts:2369 msgid "Insert a {rows}x{columns} table" msgstr "" -#: src/strings.ts:2318 +#: src/strings.ts:2320 msgid "Insert a table" msgstr "" -#: src/strings.ts:2320 +#: src/strings.ts:2322 msgid "Insert an embed" msgstr "" -#: src/strings.ts:2314 +#: src/strings.ts:2316 msgid "Insert an image" msgstr "" -#: src/strings.ts:2265 +#: src/strings.ts:2267 msgid "Insert column left" msgstr "" -#: src/strings.ts:2266 +#: src/strings.ts:2268 msgid "Insert column right" msgstr "" -#: src/strings.ts:2212 +#: src/strings.ts:2214 msgid "Insert link" msgstr "" -#: src/strings.ts:2272 +#: src/strings.ts:2274 msgid "Insert row above" msgstr "" -#: src/strings.ts:2273 +#: src/strings.ts:2275 msgid "Insert row below" msgstr "" -#: src/strings.ts:1663 +#: src/strings.ts:1665 msgid "Install Notesnook" msgstr "" -#: src/strings.ts:2127 +#: src/strings.ts:2129 msgid "Install update" msgstr "" -#: src/strings.ts:1698 +#: src/strings.ts:1700 msgid "installs" msgstr "" @@ -3100,11 +3104,11 @@ msgstr "" msgid "Invalid {type}" msgstr "" -#: src/strings.ts:1970 +#: src/strings.ts:1972 msgid "Invalid CORS proxy url" msgstr "" -#: src/strings.ts:1463 +#: src/strings.ts:1465 msgid "Invalid email" msgstr "" @@ -3117,7 +3121,7 @@ msgstr "" msgid "It may take a minute to receive your code." msgstr "" -#: src/strings.ts:1569 +#: src/strings.ts:1571 msgid "It seems that your changes could not be saved. What to do next:" msgstr "" @@ -3125,7 +3129,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:2234 +#: src/strings.ts:2236 msgid "Italic" msgstr "" @@ -3138,7 +3142,7 @@ msgid "Item" msgstr "" #: src/strings.ts:311 -#: src/strings.ts:1682 +#: src/strings.ts:1684 msgid "items" msgstr "" @@ -3146,7 +3150,7 @@ msgstr "" msgid "Items" msgstr "" -#: src/strings.ts:2139 +#: src/strings.ts:2141 msgid "Join community" msgstr "" @@ -3154,27 +3158,27 @@ msgstr "" msgid "join our community on Discord." msgstr "" -#: src/strings.ts:1264 +#: src/strings.ts:1266 msgid "Join our Discord server" msgstr "" -#: src/strings.ts:1266 +#: src/strings.ts:1268 msgid "Join our Discord server to chat with other users and the team" msgstr "" -#: src/strings.ts:1256 +#: src/strings.ts:1258 msgid "Join our Telegram group" msgstr "" -#: src/strings.ts:1258 +#: src/strings.ts:1260 msgid "Join our Telegram group to chat with other users and the team" msgstr "" -#: src/strings.ts:2047 +#: src/strings.ts:2049 msgid "Join the cause" msgstr "" -#: src/strings.ts:2005 +#: src/strings.ts:2007 msgid "Jump to group" msgstr "" @@ -3182,19 +3186,19 @@ msgstr "" msgid "Keep" msgstr "" -#: src/strings.ts:2000 +#: src/strings.ts:2002 msgid "Keep open" msgstr "" -#: src/strings.ts:1340 +#: src/strings.ts:1342 msgid "Keep your data safe" msgstr "" -#: src/strings.ts:2107 +#: src/strings.ts:2109 msgid "Languages" msgstr "" -#: src/strings.ts:2209 +#: src/strings.ts:2211 msgid "Last edited at" msgstr "" @@ -3222,7 +3226,7 @@ msgstr "" msgid "Learn more about Notesnook Monograph" msgstr "" -#: src/strings.ts:1541 +#: src/strings.ts:1543 msgid "Legal" msgstr "" @@ -3230,15 +3234,15 @@ msgstr "" msgid "Let us know if you have faced any issue/bug while using Notesnook. We will try to fix it as soon as possible." msgstr "" -#: src/strings.ts:2140 +#: src/strings.ts:2142 msgid "License" msgstr "" -#: src/strings.ts:1699 +#: src/strings.ts:1701 msgid "Licensed under {license}" msgstr "" -#: src/strings.ts:2304 +#: src/strings.ts:2306 msgid "Lift list item" msgstr "" @@ -3246,15 +3250,15 @@ msgstr "" msgid "Light" msgstr "" -#: src/strings.ts:2334 +#: src/strings.ts:2336 msgid "Line {line}, Column {column}" msgstr "" -#: src/strings.ts:1136 +#: src/strings.ts:1138 msgid "Line spacing changed" msgstr "" -#: src/strings.ts:2238 +#: src/strings.ts:2240 msgid "Link" msgstr "" @@ -3266,11 +3270,11 @@ msgstr "" msgid "Link notebooks" msgstr "" -#: src/strings.ts:2243 +#: src/strings.ts:2245 msgid "Link settings" msgstr "" -#: src/strings.ts:2364 +#: src/strings.ts:2366 msgid "Link text" msgstr "" @@ -3290,7 +3294,7 @@ msgstr "" msgid "Linked notes" msgstr "" -#: src/strings.ts:1575 +#: src/strings.ts:1577 msgid "Linking to a specific block is not available for locked notes." msgstr "" @@ -3302,7 +3306,7 @@ msgstr "" msgid "Load from file" msgstr "" -#: src/strings.ts:1674 +#: src/strings.ts:1676 msgid "Loading" msgstr "" @@ -3311,7 +3315,7 @@ msgstr "" msgid "Loading {0}, please wait..." msgstr "" -#: src/strings.ts:1643 +#: src/strings.ts:1645 msgid "Loading editor. Please wait..." msgstr "" @@ -3323,7 +3327,7 @@ msgstr "" msgid "Loading themes..." msgstr "" -#: src/strings.ts:1308 +#: src/strings.ts:1310 msgid "Loading trash" msgstr "" @@ -3359,7 +3363,7 @@ msgstr "" msgid "Lock note" msgstr "" -#: src/strings.ts:1168 +#: src/strings.ts:1170 msgid "Lock the app with a password or pin" msgstr "" @@ -3371,7 +3375,7 @@ msgstr "" msgid "Locked notes cannot be published" msgstr "" -#: src/strings.ts:2172 +#: src/strings.ts:2174 msgid "Log out from all other devices" msgstr "" @@ -3383,7 +3387,7 @@ msgstr "" msgid "Logging out. Please wait..." msgstr "" -#: src/strings.ts:1761 +#: src/strings.ts:1763 msgid "Logging you in" msgstr "" @@ -3403,7 +3407,7 @@ msgstr "" msgid "Login successful" msgstr "" -#: src/strings.ts:1343 +#: src/strings.ts:1345 msgid "Login to encrypt and sync notes" msgstr "" @@ -3423,11 +3427,11 @@ msgstr "" msgid "Logout from this device" msgstr "" -#: src/strings.ts:1393 +#: src/strings.ts:1395 msgid "Long press on any item in list to enter multi-select mode." msgstr "" -#: src/strings.ts:2339 +#: src/strings.ts:2341 msgid "Make task list readonly" msgstr "" @@ -3455,11 +3459,11 @@ msgstr "" msgid "Manage your attachments in one place" msgstr "" -#: src/strings.ts:1195 +#: src/strings.ts:1197 msgid "Manage your backups and restore data" msgstr "" -#: src/strings.ts:1229 +#: src/strings.ts:1231 msgid "Manage your reminders" msgstr "" @@ -3467,51 +3471,51 @@ msgstr "" msgid "Manage your sync settings here" msgstr "" -#: src/strings.ts:1421 +#: src/strings.ts:1423 msgid "Mark important notes by adding them to favorites." msgstr "" -#: src/strings.ts:1143 +#: src/strings.ts:1145 msgid "Markdown shortcuts" msgstr "" -#: src/strings.ts:1149 +#: src/strings.ts:1151 msgid "Marketing emails" msgstr "" -#: src/strings.ts:2352 +#: src/strings.ts:2354 msgid "Match case" msgstr "" -#: src/strings.ts:2353 +#: src/strings.ts:2355 msgid "Match whole word" msgstr "" -#: src/strings.ts:2260 +#: src/strings.ts:2262 msgid "Math (inline)" msgstr "" -#: src/strings.ts:2311 +#: src/strings.ts:2313 msgid "Math & formulas" msgstr "" -#: src/strings.ts:2019 +#: src/strings.ts:2021 msgid "Maximize" msgstr "" -#: src/strings.ts:2049 +#: src/strings.ts:2051 msgid "Meet other privacy-minded people & talk to us directly about your concerns, issues and suggestions." msgstr "" -#: src/strings.ts:2394 +#: src/strings.ts:2396 msgid "Meetings" msgstr "" -#: src/strings.ts:1758 +#: src/strings.ts:1760 msgid "Member since {date}" msgstr "" -#: src/strings.ts:2271 +#: src/strings.ts:2273 msgid "Merge cells" msgstr "" @@ -3529,15 +3533,15 @@ msgstr "" msgid "min" msgstr "" -#: src/strings.ts:1988 +#: src/strings.ts:1990 msgid "Minimal" msgstr "" -#: src/strings.ts:2018 +#: src/strings.ts:2020 msgid "Minimize" msgstr "" -#: src/strings.ts:2096 +#: src/strings.ts:2098 msgid "Minimize to system tray" msgstr "" @@ -3553,7 +3557,7 @@ msgstr "" msgid "Monday" msgstr "" -#: src/strings.ts:1610 +#: src/strings.ts:1612 msgid "Monograph server" msgstr "" @@ -3563,19 +3567,19 @@ msgstr "" #: src/strings.ts:322 #: src/strings.ts:927 -#: src/strings.ts:1509 +#: src/strings.ts:1511 msgid "Monographs" msgstr "" -#: src/strings.ts:1403 +#: src/strings.ts:1405 msgid "Monographs can be encrypted with a secret key and shared with anyone." msgstr "" -#: src/strings.ts:1398 +#: src/strings.ts:1400 msgid "Monographs enable you to share your notes in a secure and private way." msgstr "" -#: src/strings.ts:1819 +#: src/strings.ts:1821 msgid "month" msgstr "" @@ -3584,11 +3588,11 @@ msgid "Month" msgstr "" #: src/strings.ts:169 -#: src/strings.ts:1549 +#: src/strings.ts:1551 msgid "Monthly" msgstr "" -#: src/strings.ts:2291 +#: src/strings.ts:2293 msgid "More" msgstr "" @@ -3596,15 +3600,15 @@ msgstr "" msgid "Move" msgstr "" -#: src/strings.ts:2340 +#: src/strings.ts:2342 msgid "Move all checked tasks to bottom" msgstr "" -#: src/strings.ts:2267 +#: src/strings.ts:2269 msgid "Move column left" msgstr "" -#: src/strings.ts:2268 +#: src/strings.ts:2270 msgid "Move column right" msgstr "" @@ -3616,11 +3620,11 @@ msgstr "" msgid "Move notes" msgstr "" -#: src/strings.ts:2275 +#: src/strings.ts:2277 msgid "Move row down" msgstr "" -#: src/strings.ts:2274 +#: src/strings.ts:2276 msgid "Move row up" msgstr "" @@ -3636,7 +3640,7 @@ msgstr "" msgid "Move to trash" msgstr "" -#: src/strings.ts:1156 +#: src/strings.ts:1158 msgid "Multi-layer encryption to most important notes" msgstr "" @@ -3644,7 +3648,7 @@ msgstr "" msgid "Name" msgstr "" -#: src/strings.ts:1667 +#: src/strings.ts:1669 msgid "Native high-performance encryption" msgstr "" @@ -3652,7 +3656,7 @@ msgstr "" msgid "Never" msgstr "" -#: src/strings.ts:1323 +#: src/strings.ts:1325 msgid "Never ask again" msgstr "" @@ -3672,11 +3676,11 @@ msgstr "" msgid "New color" msgstr "" -#: src/strings.ts:1825 +#: src/strings.ts:1827 msgid "New Email" msgstr "" -#: src/strings.ts:1135 +#: src/strings.ts:1137 msgid "New lines will be double spaced (old ones won't be affected)." msgstr "" @@ -3688,11 +3692,11 @@ msgstr "" msgid "New notebook" msgstr "" -#: src/strings.ts:1461 +#: src/strings.ts:1463 msgid "New password" msgstr "" -#: src/strings.ts:1467 +#: src/strings.ts:1469 msgid "New pin" msgstr "" @@ -3704,7 +3708,7 @@ msgstr "" msgid "New tab" msgstr "" -#: src/strings.ts:1349 +#: src/strings.ts:1351 msgid "New update available" msgstr "" @@ -3712,7 +3716,7 @@ msgstr "" msgid "New version" msgstr "" -#: src/strings.ts:2003 +#: src/strings.ts:2005 msgid "Newest - oldest" msgstr "" @@ -3724,7 +3728,7 @@ msgstr "" msgid "Next" msgstr "" -#: src/strings.ts:2356 +#: src/strings.ts:2358 msgid "Next match" msgstr "" @@ -3752,7 +3756,7 @@ msgstr "" msgid "No color selected" msgstr "" -#: src/strings.ts:1215 +#: src/strings.ts:1217 msgid "No directory selected" msgstr "" @@ -3760,11 +3764,11 @@ msgstr "" msgid "No downloads in progress." msgstr "" -#: src/strings.ts:1963 +#: src/strings.ts:1965 msgid "No encryption key found" msgstr "" -#: src/strings.ts:1644 +#: src/strings.ts:1646 msgid "No headings found" msgstr "" @@ -3792,7 +3796,7 @@ msgstr "" msgid "No results found for \"{query}\"" msgstr "" -#: src/strings.ts:1496 +#: src/strings.ts:1498 msgid "No results found for {query}" msgstr "" @@ -3808,7 +3812,7 @@ msgstr "" msgid "None" msgstr "" -#: src/strings.ts:1993 +#: src/strings.ts:1995 msgid "Normal mode" msgstr "" @@ -3829,7 +3833,7 @@ msgstr "" msgid "Note copied to clipboard" msgstr "" -#: src/strings.ts:1928 +#: src/strings.ts:1930 msgid "Note does not exist" msgstr "" @@ -3845,7 +3849,7 @@ msgstr "" msgid "Note restored from history" msgstr "" -#: src/strings.ts:1564 +#: src/strings.ts:1566 msgid "Note title" msgstr "" @@ -3857,7 +3861,7 @@ msgstr "" msgid "Note version history is local only." msgstr "" -#: src/strings.ts:1208 +#: src/strings.ts:1210 msgid "NOTE: Creating a backup with attachments can take a while, and also fail completely. The app will try to resume/restart the backup in case of interruptions." msgstr "" @@ -3866,7 +3870,7 @@ msgid "notebook" msgstr "" #: src/strings.ts:296 -#: src/strings.ts:1500 +#: src/strings.ts:1502 msgid "Notebook" msgstr "" @@ -3876,15 +3880,15 @@ msgstr "" #: src/strings.ts:258 #: src/strings.ts:316 -#: src/strings.ts:1499 +#: src/strings.ts:1501 msgid "Notebooks" msgstr "" -#: src/strings.ts:1773 +#: src/strings.ts:1775 msgid "NOTEBOOKS" msgstr "" -#: src/strings.ts:2219 +#: src/strings.ts:2221 msgid "Notebooks are the best way to organize your notes." msgstr "" @@ -3893,7 +3897,7 @@ msgid "notes" msgstr "" #: src/strings.ts:315 -#: src/strings.ts:1498 +#: src/strings.ts:1500 msgid "Notes" msgstr "" @@ -3901,15 +3905,15 @@ msgstr "" msgid "Notes exported as {path} successfully" msgstr "" -#: src/strings.ts:1729 +#: src/strings.ts:1731 msgid "notes imported" msgstr "" -#: src/strings.ts:2046 +#: src/strings.ts:2048 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:2121 +#: src/strings.ts:2123 msgid "Notesnook Importer" msgstr "" @@ -3917,7 +3921,7 @@ msgstr "" msgid "Notesnook Pro" msgstr "" -#: src/strings.ts:2153 +#: src/strings.ts:2155 msgid "" "Notesnook uses the following DNS providers:\n" "\n" @@ -3935,23 +3939,23 @@ msgstr "" msgid "Notesnook will send you an SMS with a 2FA code when prompted" msgstr "" -#: src/strings.ts:2116 +#: src/strings.ts:2118 msgid "Notifications" msgstr "" -#: src/strings.ts:1358 +#: src/strings.ts:1360 msgid "Notifications disabled" msgstr "" -#: src/strings.ts:2251 +#: src/strings.ts:2253 msgid "Numbered list" msgstr "" -#: src/strings.ts:1697 +#: src/strings.ts:1699 msgid "of" msgstr "" -#: src/strings.ts:1581 +#: src/strings.ts:1583 msgid "Off" msgstr "" @@ -3959,7 +3963,7 @@ msgstr "" msgid "Offline" msgstr "" -#: src/strings.ts:2206 +#: src/strings.ts:2208 msgid "Okay" msgstr "" @@ -3967,15 +3971,15 @@ msgstr "" msgid "Old - new" msgstr "" -#: src/strings.ts:1460 +#: src/strings.ts:1462 msgid "Old password" msgstr "" -#: src/strings.ts:1814 +#: src/strings.ts:1816 msgid "Older version" msgstr "" -#: src/strings.ts:2002 +#: src/strings.ts:2004 msgid "Oldest - newest" msgstr "" @@ -3983,7 +3987,7 @@ msgstr "" msgid "Once your password is changed, please make sure to save the new account recovery key" msgstr "" -#: src/strings.ts:1750 +#: src/strings.ts:1752 msgid "Only .zip files are supported." msgstr "" @@ -3999,11 +4003,11 @@ msgstr "" msgid "Open in browser" msgstr "" -#: src/strings.ts:1287 +#: src/strings.ts:1289 msgid "Open in browser to manage subscription" msgstr "" -#: src/strings.ts:2302 +#: src/strings.ts:2304 msgid "Open in new tab" msgstr "" @@ -4011,27 +4015,27 @@ msgstr "" msgid "Open issue" msgstr "" -#: src/strings.ts:2241 +#: src/strings.ts:2243 msgid "Open link" msgstr "" -#: src/strings.ts:1842 +#: src/strings.ts:1844 msgid "Open note" msgstr "" -#: src/strings.ts:1361 +#: src/strings.ts:1363 msgid "Open settings" msgstr "" -#: src/strings.ts:2303 +#: src/strings.ts:2305 msgid "Open source" msgstr "" -#: src/strings.ts:1272 +#: src/strings.ts:1274 msgid "Open source libraries used in Notesnook" msgstr "" -#: src/strings.ts:1271 +#: src/strings.ts:1273 msgid "Open source licenses" msgstr "" @@ -4043,7 +4047,7 @@ msgstr "" msgid "Open the two-factor authentication (TOTP) app to view your authentication code." msgstr "" -#: src/strings.ts:1836 +#: src/strings.ts:1838 msgid "Optional" msgstr "" @@ -4051,11 +4055,11 @@ msgstr "" msgid "or email us at" msgstr "" -#: src/strings.ts:2001 +#: src/strings.ts:2003 msgid "Order by" msgstr "" -#: src/strings.ts:2199 +#: src/strings.ts:2201 msgid "Order ID" msgstr "" @@ -4064,19 +4068,19 @@ msgstr "" msgid "Orphaned" msgstr "" -#: src/strings.ts:2124 +#: src/strings.ts:2126 msgid "Other" msgstr "" -#: src/strings.ts:2323 +#: src/strings.ts:2325 msgid "Outline list" msgstr "" -#: src/strings.ts:2326 +#: src/strings.ts:2328 msgid "Paragraph" msgstr "" -#: src/strings.ts:2080 +#: src/strings.ts:2082 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 "" @@ -4084,7 +4088,7 @@ msgstr "" msgid "Partially refunded" msgstr "" -#: src/strings.ts:2379 +#: src/strings.ts:2381 msgid "Passed" msgstr "" @@ -4120,23 +4124,23 @@ msgstr "" msgid "Password updated" msgstr "" -#: src/strings.ts:2060 +#: src/strings.ts:2062 msgid "Password/pin" msgstr "" -#: src/strings.ts:2227 +#: src/strings.ts:2229 msgid "Paste" msgstr "" -#: src/strings.ts:2348 +#: src/strings.ts:2350 msgid "Paste embed code here. Only iframes are supported." msgstr "" -#: src/strings.ts:2363 +#: src/strings.ts:2365 msgid "Paste image URL here" msgstr "" -#: src/strings.ts:2178 +#: src/strings.ts:2180 msgid "Payment method" msgstr "" @@ -4144,11 +4148,11 @@ msgstr "" msgid "PDF is password protected" msgstr "" -#: src/strings.ts:1708 +#: src/strings.ts:1710 msgid "phone number" msgstr "" -#: src/strings.ts:1827 +#: src/strings.ts:1829 msgid "Phone number" msgstr "" @@ -4160,7 +4164,7 @@ msgstr "" msgid "Pin" msgstr "" -#: src/strings.ts:1669 +#: src/strings.ts:1671 msgid "Pin notes in notifications drawer" msgstr "" @@ -4172,7 +4176,7 @@ msgstr "" msgid "Pinned" msgstr "" -#: src/strings.ts:1345 +#: src/strings.ts:1347 msgid "Please confirm your email to sync notes" msgstr "" @@ -4181,7 +4185,7 @@ msgid "Please confirm your identity by entering a recovery code." msgstr "" #: src/strings.ts:967 -#: src/strings.ts:2211 +#: src/strings.ts:2213 msgid "Please confirm your identity by entering the authentication code from your authenticator app." msgstr "" @@ -4194,31 +4198,31 @@ msgstr "" msgid "Please confirm your identity by entering the authentication code sent to your email address." msgstr "" -#: src/strings.ts:1888 +#: src/strings.ts:1890 msgid "Please download a backup of your data as your account will be cleared before recovery." msgstr "" -#: src/strings.ts:1493 +#: src/strings.ts:1495 msgid "Please enter a valid email address" msgstr "" -#: src/strings.ts:1933 +#: src/strings.ts:1935 msgid "Please enter a valid hex color (e.g. #ffffff)" msgstr "" -#: src/strings.ts:1494 +#: src/strings.ts:1496 msgid "Please enter a valid phone number with country code" msgstr "" -#: src/strings.ts:1614 +#: src/strings.ts:1616 msgid "Please enter a valid URL" msgstr "" -#: src/strings.ts:1599 +#: src/strings.ts:1601 msgid "Please enter password of this backup file" msgstr "" -#: src/strings.ts:2222 +#: src/strings.ts:2224 msgid "Please enter the password to decrypt and restore this backup." msgstr "" @@ -4226,11 +4230,11 @@ msgstr "" msgid "Please enter the password to unlock the PDF and view the content." msgstr "" -#: src/strings.ts:1844 +#: src/strings.ts:1846 msgid "Please enter the password to unlock this note" msgstr "" -#: src/strings.ts:1841 +#: src/strings.ts:1843 msgid "Please enter the password to view this version" msgstr "" @@ -4246,7 +4250,7 @@ msgstr "" msgid "Please enter your password to continue" msgstr "" -#: src/strings.ts:1912 +#: src/strings.ts:1914 msgid "Please enter your vault password to continue" msgstr "" @@ -4254,7 +4258,7 @@ msgstr "" msgid "Please fill all the fields to continue." msgstr "" -#: src/strings.ts:1535 +#: src/strings.ts:1537 msgid "Please grant notifications permission to add new reminders." msgstr "" @@ -4266,31 +4270,31 @@ msgstr "" msgid "Please note that we will respond to your issue on the given link. We recommend that you save it." msgstr "" -#: src/strings.ts:1744 +#: src/strings.ts:1746 msgid "Please refer to the" msgstr "" -#: src/strings.ts:1536 +#: src/strings.ts:1538 msgid "Please select the day to repeat the reminder on" msgstr "" -#: src/strings.ts:1377 +#: src/strings.ts:1379 msgid "please send us an email from your registered email address" msgstr "" -#: src/strings.ts:2368 +#: src/strings.ts:2370 msgid "Please set a table size" msgstr "" -#: src/strings.ts:1537 +#: src/strings.ts:1539 msgid "Please set title of the reminder" msgstr "" -#: src/strings.ts:1966 +#: src/strings.ts:1968 msgid "Please try again" msgstr "" -#: src/strings.ts:1986 +#: src/strings.ts:1988 msgid "Please upgrade to Pro to enable automatic backups." msgstr "" @@ -4306,8 +4310,8 @@ msgstr "" msgid "Please wait before requesting a new code" msgstr "" -#: src/strings.ts:1380 -#: src/strings.ts:1530 +#: src/strings.ts:1382 +#: src/strings.ts:1532 msgid "Please wait before requesting another email" msgstr "" @@ -4323,7 +4327,7 @@ msgstr "" msgid "Please wait while we export your notes." msgstr "" -#: src/strings.ts:1873 +#: src/strings.ts:1875 msgid "Please wait while we finalize your account." msgstr "" @@ -4335,15 +4339,15 @@ msgstr "" msgid "Please wait while we log you out." msgstr "" -#: src/strings.ts:1894 +#: src/strings.ts:1896 msgid "Please wait while we reset your account password." msgstr "" -#: src/strings.ts:1592 +#: src/strings.ts:1594 msgid "Please wait while we restore your backup..." msgstr "" -#: src/strings.ts:1876 +#: src/strings.ts:1878 msgid "Please wait while we send you recovery instructions" msgstr "" @@ -4355,12 +4359,12 @@ msgstr "" msgid "Please wait while we verify your subscription" msgstr "" -#: src/strings.ts:1762 -#: src/strings.ts:1869 +#: src/strings.ts:1764 +#: src/strings.ts:1871 msgid "Please wait while you are authenticated." msgstr "" -#: src/strings.ts:1881 +#: src/strings.ts:1883 msgid "Please wait while your data is downloaded & decrypted." msgstr "" @@ -4368,7 +4372,7 @@ msgstr "" msgid "Preparing note for share" msgstr "" -#: src/strings.ts:1594 +#: src/strings.ts:1596 msgid "Preparing to restore backup file..." msgstr "" @@ -4376,19 +4380,19 @@ msgstr "" msgid "PRESETS" msgstr "" -#: src/strings.ts:2098 +#: src/strings.ts:2100 msgid "Pressing \"—\" will hide the app in your system tray." msgstr "" -#: src/strings.ts:2101 +#: src/strings.ts:2103 msgid "Pressing \"X\" will hide the app in your system tray." msgstr "" -#: src/strings.ts:2149 +#: src/strings.ts:2151 msgid "Prevent note title from appearing in tab/window title." msgstr "" -#: src/strings.ts:2290 +#: src/strings.ts:2292 msgid "Preview attachment" msgstr "" @@ -4396,23 +4400,23 @@ msgstr "" msgid "Preview not available, content is encrypted." msgstr "" -#: src/strings.ts:2357 +#: src/strings.ts:2359 msgid "Previous match" msgstr "" -#: src/strings.ts:2013 +#: src/strings.ts:2015 msgid "Print" msgstr "" -#: src/strings.ts:2123 +#: src/strings.ts:2125 msgid "Privacy" msgstr "" -#: src/strings.ts:1145 +#: src/strings.ts:1147 msgid "Privacy & security" msgstr "" -#: src/strings.ts:1634 +#: src/strings.ts:1636 msgid "Privacy comes first." msgstr "" @@ -4420,11 +4424,11 @@ msgstr "" msgid "Privacy for everyone" msgstr "" -#: src/strings.ts:1164 +#: src/strings.ts:1166 msgid "Privacy mode" msgstr "" -#: src/strings.ts:1269 +#: src/strings.ts:1271 msgid "Privacy policy" msgstr "" @@ -4444,31 +4448,31 @@ msgstr "" msgid "privileged few" msgstr "" -#: src/strings.ts:1700 +#: src/strings.ts:1702 msgid "Pro" msgstr "" -#: src/strings.ts:2026 +#: src/strings.ts:2028 msgid "Processing {collection}..." msgstr "" -#: src/strings.ts:2025 +#: src/strings.ts:2027 msgid "Processing..." msgstr "" -#: src/strings.ts:1224 +#: src/strings.ts:1226 msgid "Productivity" msgstr "" -#: src/strings.ts:2112 +#: src/strings.ts:2114 msgid "Profile" msgstr "" -#: src/strings.ts:1934 +#: src/strings.ts:1936 msgid "Profile updated" msgstr "" -#: src/strings.ts:1845 +#: src/strings.ts:1847 msgid "Properties" msgstr "" @@ -4476,7 +4480,7 @@ msgstr "" msgid "Protect your notes" msgstr "" -#: src/strings.ts:2160 +#: src/strings.ts:2162 msgid "Proxy" msgstr "" @@ -4508,31 +4512,31 @@ msgstr "" msgid "Published note link will be automatically deleted once it is viewed by someone." msgstr "" -#: src/strings.ts:1352 +#: src/strings.ts:1354 msgid "Quick note" msgstr "" -#: src/strings.ts:1225 +#: src/strings.ts:1227 msgid "Quick note notification" msgstr "" -#: src/strings.ts:1671 +#: src/strings.ts:1673 msgid "Quick note widgets" msgstr "" -#: src/strings.ts:1227 +#: src/strings.ts:1229 msgid "Quickly create a note from the notification" msgstr "" -#: src/strings.ts:2310 +#: src/strings.ts:2312 msgid "Quote" msgstr "" -#: src/strings.ts:1338 +#: src/strings.ts:1340 msgid "Rate Notesnook on App Store" msgstr "" -#: src/strings.ts:1339 +#: src/strings.ts:1341 msgid "Rate Notesnook on Play Store" msgstr "" @@ -4548,39 +4552,39 @@ msgstr "" msgid "Read only" msgstr "" -#: src/strings.ts:1249 +#: src/strings.ts:1251 msgid "Read the documentation to learn more about Notesnook" msgstr "" -#: src/strings.ts:1270 +#: src/strings.ts:1272 msgid "Read the privacy policy" msgstr "" -#: src/strings.ts:1268 +#: src/strings.ts:1270 msgid "Read the terms of service" msgstr "" -#: src/strings.ts:1595 +#: src/strings.ts:1597 msgid "Reading backup file..." msgstr "" -#: src/strings.ts:2202 +#: src/strings.ts:2204 msgid "Receipt" msgstr "" -#: src/strings.ts:1590 +#: src/strings.ts:1592 msgid "RECENT BACKUPS" msgstr "" -#: src/strings.ts:2375 +#: src/strings.ts:2377 msgid "Recheck all" msgstr "" -#: src/strings.ts:1980 +#: src/strings.ts:1982 msgid "Rechecking failed" msgstr "" -#: src/strings.ts:2400 +#: src/strings.ts:2402 msgid "Recipes" msgstr "" @@ -4620,19 +4624,19 @@ msgstr "" msgid "Recovery key text file saved" msgstr "" -#: src/strings.ts:1895 +#: src/strings.ts:1897 msgid "Recovery successful!" msgstr "" -#: src/strings.ts:2412 +#: src/strings.ts:2414 msgid "Redeem" msgstr "" -#: src/strings.ts:2409 +#: src/strings.ts:2411 msgid "Redeem gift code" msgstr "" -#: src/strings.ts:2411 +#: src/strings.ts:2413 msgid "Redeeming gift code" msgstr "" @@ -4652,7 +4656,7 @@ msgstr "" msgid "Regenerate" msgstr "" -#: src/strings.ts:2066 +#: src/strings.ts:2068 msgid "Register" msgstr "" @@ -4660,15 +4664,15 @@ msgstr "" msgid "Release notes" msgstr "" -#: src/strings.ts:1649 +#: src/strings.ts:1651 msgid "Reload app" msgstr "" -#: src/strings.ts:1807 +#: src/strings.ts:1809 msgid "Relogin to your account" msgstr "" -#: src/strings.ts:1775 +#: src/strings.ts:1777 msgid "Remembered your password?" msgstr "" @@ -4680,7 +4684,7 @@ msgstr "" msgid "Remind me in" msgstr "" -#: src/strings.ts:1487 +#: src/strings.ts:1489 msgid "Remind me of..." msgstr "" @@ -4692,11 +4696,11 @@ msgstr "" msgid "Reminder" msgstr "" -#: src/strings.ts:1230 +#: src/strings.ts:1232 msgid "Reminder notifications" msgstr "" -#: src/strings.ts:1538 +#: src/strings.ts:1540 msgid "Reminder time cannot be earlier than the current time." msgstr "" @@ -4705,16 +4709,16 @@ msgid "reminders" msgstr "" #: src/strings.ts:318 -#: src/strings.ts:1228 -#: src/strings.ts:1502 +#: src/strings.ts:1230 +#: src/strings.ts:1504 msgid "Reminders" msgstr "" -#: src/strings.ts:1360 +#: src/strings.ts:1362 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:1932 +#: src/strings.ts:1934 msgid "Reminders will not be active on this device as it does not support notifications." msgstr "" @@ -4722,23 +4726,23 @@ msgstr "" msgid "Remove" msgstr "" -#: src/strings.ts:1159 +#: src/strings.ts:1161 msgid "Remove all notes from the vault." msgstr "" -#: src/strings.ts:1186 +#: src/strings.ts:1188 msgid "Remove app lock password" msgstr "" -#: src/strings.ts:1190 +#: src/strings.ts:1192 msgid "Remove app lock password, app lock will be disabled if no other security method is enabled." msgstr "" -#: src/strings.ts:1185 +#: src/strings.ts:1187 msgid "Remove app lock pin" msgstr "" -#: src/strings.ts:1188 +#: src/strings.ts:1190 msgid "Remove app lock pin, app lock will be disabled if no other security method is enabled." msgstr "" @@ -4746,7 +4750,7 @@ msgstr "" msgid "Remove as default" msgstr "" -#: src/strings.ts:2294 +#: src/strings.ts:2296 msgid "Remove attachment" msgstr "" @@ -4762,7 +4766,7 @@ msgstr "" msgid "Remove full name" msgstr "" -#: src/strings.ts:2240 +#: src/strings.ts:2242 msgid "Remove link" msgstr "" @@ -4794,19 +4798,19 @@ msgstr "" msgid "Repeats daily at {date}" msgstr "" -#: src/strings.ts:2354 +#: src/strings.ts:2356 msgid "Replace" msgstr "" -#: src/strings.ts:2355 +#: src/strings.ts:2357 msgid "Replace all" msgstr "" -#: src/strings.ts:2143 +#: src/strings.ts:2145 msgid "Report" msgstr "" -#: src/strings.ts:1241 +#: src/strings.ts:1243 msgid "Report an issue" msgstr "" @@ -4823,55 +4827,55 @@ msgstr "" msgid "Resend code{0}" msgstr "" -#: src/strings.ts:1383 +#: src/strings.ts:1385 msgid "Resend email" msgstr "" -#: src/strings.ts:1799 +#: src/strings.ts:1801 msgid "Reset" msgstr "" -#: src/strings.ts:1891 +#: src/strings.ts:1893 msgid "Reset account password" msgstr "" -#: src/strings.ts:1800 +#: src/strings.ts:1802 msgid "Reset selection" msgstr "" -#: src/strings.ts:1627 +#: src/strings.ts:1629 msgid "Reset server urls" msgstr "" -#: src/strings.ts:2009 +#: src/strings.ts:2011 msgid "Reset sidebar" msgstr "" -#: src/strings.ts:1132 +#: src/strings.ts:1133 msgid "Reset the toolbar to default settings" msgstr "" -#: src/strings.ts:1131 +#: src/strings.ts:1132 msgid "Reset toolbar" msgstr "" -#: src/strings.ts:1893 +#: src/strings.ts:1895 msgid "Resetting account password ({progress})" msgstr "" -#: src/strings.ts:1968 +#: src/strings.ts:1970 msgid "Restart now" msgstr "" -#: src/strings.ts:1626 +#: src/strings.ts:1628 msgid "Restart the app for changes to take effect." msgstr "" -#: src/strings.ts:1299 +#: src/strings.ts:1301 msgid "Restart the app to apply the changes" msgstr "" -#: src/strings.ts:1572 +#: src/strings.ts:1574 msgid "Restart the app." msgstr "" @@ -4879,11 +4883,11 @@ msgstr "" msgid "Restore" msgstr "" -#: src/strings.ts:1219 +#: src/strings.ts:1221 msgid "Restore backup" msgstr "" -#: src/strings.ts:2382 +#: src/strings.ts:2384 msgid "Restore backup?" msgstr "" @@ -4891,15 +4895,15 @@ msgstr "" msgid "Restore failed" msgstr "" -#: src/strings.ts:1589 +#: src/strings.ts:1591 msgid "Restore from files" msgstr "" -#: src/strings.ts:1639 +#: src/strings.ts:1641 msgid "Restore this version" msgstr "" -#: src/strings.ts:1220 +#: src/strings.ts:1222 msgid "Restore your data from a backup" msgstr "" @@ -4915,7 +4919,7 @@ msgstr "" msgid "Restoring {collection}..." msgstr "" -#: src/strings.ts:1591 +#: src/strings.ts:1593 msgid "Restoring backup..." msgstr "" @@ -4931,7 +4935,7 @@ msgstr "" msgid "Reupload" msgstr "" -#: src/strings.ts:1999 +#: src/strings.ts:2001 msgid "Reveal in list" msgstr "" @@ -4939,7 +4943,7 @@ msgstr "" msgid "Revoke" msgstr "" -#: src/strings.ts:1163 +#: src/strings.ts:1165 msgid "Revoke biometric unlocking" msgstr "" @@ -4947,23 +4951,23 @@ msgstr "" msgid "Revoke vault fingerprint unlock" msgstr "" -#: src/strings.ts:1277 +#: src/strings.ts:1279 msgid "Roadmap" msgstr "" -#: src/strings.ts:2027 +#: src/strings.ts:2029 msgid "Root" msgstr "" -#: src/strings.ts:2006 +#: src/strings.ts:2008 msgid "Rotate left" msgstr "" -#: src/strings.ts:2007 +#: src/strings.ts:2009 msgid "Rotate right" msgstr "" -#: src/strings.ts:2263 +#: src/strings.ts:2265 msgid "Row properties" msgstr "" @@ -4971,7 +4975,7 @@ msgstr "" msgid "Run file check" msgstr "" -#: src/strings.ts:2038 +#: src/strings.ts:2040 msgid "Safe & encrypted notes" msgstr "" @@ -5027,7 +5031,7 @@ msgstr "" msgid "Save to text file" msgstr "" -#: src/strings.ts:1341 +#: src/strings.ts:1343 msgid "Save your account recovery key" msgstr "" @@ -5043,15 +5047,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:2372 +#: src/strings.ts:2374 msgid "Saved" msgstr "" -#: src/strings.ts:2373 +#: src/strings.ts:2375 msgid "Saving" msgstr "" -#: src/strings.ts:1567 +#: src/strings.ts:1569 msgid "Saving this note is taking too long. Copy your changes and restart the app to prevent data loss. If the problem persists, please report it to us at support@streetwriters.co." msgstr "" @@ -5063,28 +5067,28 @@ msgstr "" msgid "Saving zip file. Please wait..." msgstr "" -#: src/strings.ts:1701 +#: src/strings.ts:1703 msgid "Scan the QR code with your authenticator app" msgstr "" -#: src/strings.ts:2398 +#: src/strings.ts:2400 msgid "School work" msgstr "" -#: src/strings.ts:1491 -#: src/strings.ts:1508 +#: src/strings.ts:1493 +#: src/strings.ts:1510 msgid "Search" msgstr "" -#: src/strings.ts:1486 +#: src/strings.ts:1488 msgid "Search a note" msgstr "" -#: src/strings.ts:1484 +#: src/strings.ts:1486 msgid "Search a note to link to" msgstr "" -#: src/strings.ts:1517 +#: src/strings.ts:1519 msgid "Search in {routeName}" msgstr "" @@ -5136,23 +5140,23 @@ msgstr "" msgid "Search in Trash" msgstr "" -#: src/strings.ts:2336 +#: src/strings.ts:2338 msgid "Search languages" msgstr "" -#: src/strings.ts:1472 +#: src/strings.ts:1474 msgid "Search notebooks" msgstr "" -#: src/strings.ts:1485 +#: src/strings.ts:1487 msgid "Search or add a tag" msgstr "" -#: src/strings.ts:1813 +#: src/strings.ts:1815 msgid "Search themes" msgstr "" -#: src/strings.ts:1489 +#: src/strings.ts:1491 msgid "Searching for {query}..." msgstr "" @@ -5160,39 +5164,39 @@ msgstr "" msgid "sec" msgstr "" -#: src/strings.ts:2122 +#: src/strings.ts:2124 msgid "Security & privacy" msgstr "" -#: src/strings.ts:2062 +#: src/strings.ts:2064 msgid "Security key" msgstr "" -#: src/strings.ts:1967 +#: src/strings.ts:1969 msgid "Security key successfully registered." msgstr "" -#: src/strings.ts:1278 +#: src/strings.ts:1280 msgid "See what the future of Notesnook is going to be like." msgstr "" -#: src/strings.ts:1315 +#: src/strings.ts:1317 msgid "Select" msgstr "" -#: src/strings.ts:1588 +#: src/strings.ts:1590 msgid "Select a backup file from your device to restore backup" msgstr "" -#: src/strings.ts:2077 +#: src/strings.ts:2079 msgid "Select a theme" msgstr "" -#: src/strings.ts:1210 +#: src/strings.ts:1212 msgid "Select backup directory" msgstr "" -#: src/strings.ts:1834 +#: src/strings.ts:1836 msgid "Select backup file" msgstr "" @@ -5208,15 +5212,15 @@ msgstr "" msgid "Select day of the week to repeat the reminder." msgstr "" -#: src/strings.ts:1742 +#: src/strings.ts:1744 msgid "Select files to import" msgstr "" -#: src/strings.ts:1585 +#: src/strings.ts:1587 msgid "Select folder where Notesnook backup files are stored to view and restore them from the app" msgstr "" -#: src/strings.ts:1586 +#: src/strings.ts:1588 msgid "Select folder with backup files" msgstr "" @@ -5224,7 +5228,7 @@ msgstr "" msgid "Select how you would like to recieve the code" msgstr "" -#: src/strings.ts:2331 +#: src/strings.ts:2333 msgid "Select language" msgstr "" @@ -5244,7 +5248,7 @@ msgstr "" msgid "Select nth day of the month to repeat the reminder." msgstr "" -#: src/strings.ts:1796 +#: src/strings.ts:1798 msgid "Select profile picture" msgstr "" @@ -5252,7 +5256,7 @@ msgstr "" msgid "Select the folder that includes your backup files to list them here." msgstr "" -#: src/strings.ts:2109 +#: src/strings.ts:2111 msgid "Select the languages the spell checker should check in." msgstr "" @@ -5264,7 +5268,7 @@ msgstr "" msgid "Self destruct" msgstr "" -#: src/strings.ts:2144 +#: src/strings.ts:2146 msgid "Send" msgstr "" @@ -5280,47 +5284,47 @@ msgstr "" msgid "Send code via SMS" msgstr "" -#: src/strings.ts:1838 +#: src/strings.ts:1840 msgid "Send recovery email" msgstr "" -#: src/strings.ts:1874 +#: src/strings.ts:1876 msgid "Sending recovery email" msgstr "" -#: src/strings.ts:1625 +#: src/strings.ts:1627 msgid "Server url changed" msgstr "" -#: src/strings.ts:1628 +#: src/strings.ts:1630 msgid "Server urls reset" msgstr "" -#: src/strings.ts:1606 +#: src/strings.ts:1608 msgid "Server used for login/sign up and authentication." msgstr "" -#: src/strings.ts:1611 +#: src/strings.ts:1613 msgid "Server used to host your published notes." msgstr "" -#: src/strings.ts:1609 +#: src/strings.ts:1611 msgid "Server used to receive important notifications & events." msgstr "" -#: src/strings.ts:1604 +#: src/strings.ts:1606 msgid "Server used to sync your notes & other data between devices." msgstr "" -#: src/strings.ts:1617 +#: src/strings.ts:1619 msgid "Server with host {host} not found." msgstr "" -#: src/strings.ts:2117 +#: src/strings.ts:2119 msgid "Servers" msgstr "" -#: src/strings.ts:2118 +#: src/strings.ts:2120 msgid "Servers configuration" msgstr "" @@ -5328,7 +5332,7 @@ msgstr "" msgid "Session expired" msgstr "" -#: src/strings.ts:2170 +#: src/strings.ts:2172 msgid "Sessions" msgstr "" @@ -5348,27 +5352,27 @@ msgstr "" msgid "Set as light theme" msgstr "" -#: src/strings.ts:1314 +#: src/strings.ts:1316 msgid "Set automatic trash cleanup interval from Settings > Behaviour > Clean trash interval." msgstr "" -#: src/strings.ts:1291 +#: src/strings.ts:1293 msgid "Set full name" msgstr "" -#: src/strings.ts:1236 +#: src/strings.ts:1238 msgid "Set snooze time in minutes" msgstr "" -#: src/strings.ts:1235 +#: src/strings.ts:1237 msgid "Set the default time to snooze a reminder to when you press the snooze button on a notification." msgstr "" -#: src/strings.ts:1207 +#: src/strings.ts:1209 msgid "Set the interval to create a backup (with attachments) automatically." msgstr "" -#: src/strings.ts:1204 +#: src/strings.ts:1206 msgid "Set the interval to create a partial backup (without attachments) automatically." msgstr "" @@ -5377,24 +5381,24 @@ msgid "Set your name" msgstr "" #: src/strings.ts:388 -#: src/strings.ts:1504 +#: src/strings.ts:1506 msgid "Settings" msgstr "" -#: src/strings.ts:1183 -#: src/strings.ts:1184 +#: src/strings.ts:1185 +#: src/strings.ts:1186 msgid "Setup a new password for app lock" msgstr "" -#: src/strings.ts:1180 +#: src/strings.ts:1182 msgid "Setup a password to lock the app" msgstr "" -#: src/strings.ts:1178 +#: src/strings.ts:1180 msgid "Setup a pin to lock the app" msgstr "" -#: src/strings.ts:2162 +#: src/strings.ts:2164 msgid "" "Setup an HTTP/HTTPS/SOCKS proxy.\n" "\n" @@ -5406,11 +5410,11 @@ msgid "" "To remove the proxy, simply erase everything in the input." msgstr "" -#: src/strings.ts:1179 +#: src/strings.ts:1181 msgid "Setup app lock password" msgstr "" -#: src/strings.ts:1177 +#: src/strings.ts:1179 msgid "Setup app lock pin" msgstr "" @@ -5434,11 +5438,11 @@ msgstr "" msgid "Share" msgstr "" -#: src/strings.ts:1670 +#: src/strings.ts:1672 msgid "Share & append to notes from anywhere" msgstr "" -#: src/strings.ts:1322 +#: src/strings.ts:1324 msgid "Share backup" msgstr "" @@ -5446,7 +5450,7 @@ msgstr "" msgid "Share note" msgstr "" -#: src/strings.ts:1766 +#: src/strings.ts:1768 msgid "Share Notesnook with friends!" msgstr "" @@ -5462,7 +5466,7 @@ msgstr "" msgid "Shortcut" msgstr "" -#: src/strings.ts:1979 +#: src/strings.ts:1981 msgid "Shortcut removed" msgstr "" @@ -5490,11 +5494,11 @@ msgstr "" msgid "Silent" msgstr "" -#: src/strings.ts:2305 +#: src/strings.ts:2307 msgid "Sink list item" msgstr "" -#: src/strings.ts:2020 +#: src/strings.ts:2022 msgid "Size" msgstr "" @@ -5502,7 +5506,7 @@ msgstr "" msgid "Skip" msgstr "" -#: src/strings.ts:1808 +#: src/strings.ts:1810 msgid "Skip & go directly to the app" msgstr "" @@ -5510,19 +5514,19 @@ msgstr "" msgid "Skip introduction" msgstr "" -#: src/strings.ts:1583 +#: src/strings.ts:1585 msgid "Some exported notes are locked, Unlock to export them" msgstr "" -#: src/strings.ts:1457 +#: src/strings.ts:1459 msgid "Some notes are published" msgstr "" -#: src/strings.ts:1645 +#: src/strings.ts:1647 msgid "Something went wrong" msgstr "" -#: src/strings.ts:2004 +#: src/strings.ts:2006 msgid "Sort" msgstr "" @@ -5530,19 +5534,19 @@ msgstr "" msgid "Sort by" msgstr "" -#: src/strings.ts:2128 +#: src/strings.ts:2130 msgid "Source code" msgstr "" -#: src/strings.ts:2332 +#: src/strings.ts:2334 msgid "Spaces" msgstr "" -#: src/strings.ts:2105 +#: src/strings.ts:2107 msgid "Spell check" msgstr "" -#: src/strings.ts:2270 +#: src/strings.ts:2272 msgid "Split cells" msgstr "" @@ -5550,23 +5554,23 @@ msgstr "" msgid "Start" msgstr "" -#: src/strings.ts:1809 +#: src/strings.ts:1811 msgid "Start account recovery" msgstr "" -#: src/strings.ts:1804 +#: src/strings.ts:1806 msgid "Start import" msgstr "" -#: src/strings.ts:1801 +#: src/strings.ts:1803 msgid "Start importing now" msgstr "" -#: src/strings.ts:2093 +#: src/strings.ts:2095 msgid "Start minimized" msgstr "" -#: src/strings.ts:1736 +#: src/strings.ts:1738 msgid "Start over" msgstr "" @@ -5578,27 +5582,27 @@ msgstr "" msgid "Start writing to save your note." msgstr "" -#: src/strings.ts:1580 +#: src/strings.ts:1582 msgid "Start writing your note..." msgstr "" -#: src/strings.ts:2201 +#: src/strings.ts:2203 msgid "Status" msgstr "" -#: src/strings.ts:1527 +#: src/strings.ts:1529 msgid "Streaming not supported" msgstr "" -#: src/strings.ts:2236 +#: src/strings.ts:2238 msgid "Strikethrough" msgstr "" -#: src/strings.ts:2203 +#: src/strings.ts:2205 msgid "Subgroup 1" msgstr "" -#: src/strings.ts:1973 +#: src/strings.ts:1975 msgid "Subgroup added" msgstr "" @@ -5618,7 +5622,7 @@ msgstr "" msgid "Subscribed on iOS" msgstr "" -#: src/strings.ts:1286 +#: src/strings.ts:1288 msgid "Subscribed on web" msgstr "" @@ -5630,7 +5634,7 @@ msgstr "" msgid "Subscribed using gift card" msgstr "" -#: src/strings.ts:2247 +#: src/strings.ts:2249 msgid "Subscript" msgstr "" @@ -5654,15 +5658,15 @@ msgstr "" msgid "Sunday" msgstr "" -#: src/strings.ts:2248 +#: src/strings.ts:2250 msgid "Superscript" msgstr "" -#: src/strings.ts:1450 +#: src/strings.ts:1452 msgid "Switch to search/replace mode" msgstr "" -#: src/strings.ts:2114 +#: src/strings.ts:2116 msgid "Sync" msgstr "" @@ -5670,7 +5674,7 @@ msgstr "" msgid "Sync failed" msgstr "" -#: src/strings.ts:1344 +#: src/strings.ts:1346 msgid "Sync is disabled" msgstr "" @@ -5678,7 +5682,7 @@ msgstr "" msgid "Sync off" msgstr "" -#: src/strings.ts:1602 +#: src/strings.ts:1604 msgid "Sync server" msgstr "" @@ -5702,11 +5706,11 @@ msgstr "" msgid "Syncing your data" msgstr "" -#: src/strings.ts:1681 +#: src/strings.ts:1683 msgid "Syncing your notes" msgstr "" -#: src/strings.ts:2317 +#: src/strings.ts:2319 msgid "Table" msgstr "" @@ -5714,7 +5718,7 @@ msgstr "" msgid "Table of contents" msgstr "" -#: src/strings.ts:2261 +#: src/strings.ts:2263 msgid "Table settings" msgstr "" @@ -5735,31 +5739,31 @@ msgid "tags" msgstr "" #: src/strings.ts:317 -#: src/strings.ts:1505 +#: src/strings.ts:1507 msgid "Tags" msgstr "" -#: src/strings.ts:1522 +#: src/strings.ts:1524 msgid "Take a backup before logging out" msgstr "" -#: src/strings.ts:1199 +#: src/strings.ts:1201 msgid "Take a full backup of your data with all attachments" msgstr "" -#: src/strings.ts:1201 +#: src/strings.ts:1203 msgid "Take a partial backup of your data that does not include attachments" msgstr "" -#: src/strings.ts:2316 +#: src/strings.ts:2318 msgid "Take a photo using camera" msgstr "" -#: src/strings.ts:1354 +#: src/strings.ts:1356 msgid "Take note" msgstr "" -#: src/strings.ts:1635 +#: src/strings.ts:1637 msgid "Take notes privately." msgstr "" @@ -5771,23 +5775,23 @@ msgstr "" msgid "Tap and hold to enable multi-select." msgstr "" -#: src/strings.ts:1438 +#: src/strings.ts:1440 msgid "Tap here to change sorting" msgstr "" -#: src/strings.ts:1442 +#: src/strings.ts:1444 msgid "Tap here to jump to a section" msgstr "" -#: src/strings.ts:1350 +#: src/strings.ts:1352 msgid "Tap here to update to the latest version" msgstr "" -#: src/strings.ts:1571 +#: src/strings.ts:1573 msgid "Tap on \"Dismiss\" and copy the contents of your note so they are not lost." msgstr "" -#: src/strings.ts:1353 +#: src/strings.ts:1355 msgid "Tap on \"Take note\" to add a note." msgstr "" @@ -5807,7 +5811,7 @@ msgstr "" msgid "Tap to stop reordering" msgstr "" -#: src/strings.ts:1334 +#: src/strings.ts:1336 msgid "Tap to try again" msgstr "" @@ -5815,19 +5819,19 @@ msgstr "" msgid "Tap twice to confirm you have saved the recovery key." msgstr "" -#: src/strings.ts:2322 +#: src/strings.ts:2324 msgid "Task list" msgstr "" -#: src/strings.ts:2391 +#: src/strings.ts:2393 msgid "Tasks" msgstr "" -#: src/strings.ts:1146 +#: src/strings.ts:1148 msgid "Telemetry" msgstr "" -#: src/strings.ts:1476 +#: src/strings.ts:1478 msgid "" "Tell us more about the issue you are facing.\n" "\n" @@ -5838,11 +5842,11 @@ msgid "" "- Things you have tried etc." msgstr "" -#: src/strings.ts:1475 +#: src/strings.ts:1477 msgid "Tell us what happened" msgstr "" -#: src/strings.ts:1267 +#: src/strings.ts:1269 msgid "Terms of service" msgstr "" @@ -5850,27 +5854,27 @@ msgstr "" msgid "Terms of Service " msgstr "" -#: src/strings.ts:1601 +#: src/strings.ts:1603 msgid "Test connection" msgstr "" -#: src/strings.ts:1624 +#: src/strings.ts:1626 msgid "Test connection before changing server urls" msgstr "" -#: src/strings.ts:2259 +#: src/strings.ts:2261 msgid "Text color" msgstr "" -#: src/strings.ts:2257 +#: src/strings.ts:2259 msgid "Text direction" msgstr "" -#: src/strings.ts:1765 +#: src/strings.ts:1767 msgid "Thank you for choosing end-to-end encrypted note taking. Now you can sync your notes to unlimited devices." msgstr "" -#: src/strings.ts:2029 +#: src/strings.ts:2031 msgid "Thank you for reporting!" msgstr "" @@ -5878,11 +5882,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:2054 +#: src/strings.ts:2056 msgid "Thank you. You are the proof that privacy always comes first." msgstr "" -#: src/strings.ts:1622 +#: src/strings.ts:1624 msgid "The {title} at {url} is not compatible with this client." msgstr "" @@ -5890,7 +5894,7 @@ msgstr "" msgid "The information above will be publically available at" msgstr "" -#: src/strings.ts:2061 +#: src/strings.ts:2063 msgid "The password/pin for unlocking the app." msgstr "" @@ -5902,15 +5906,15 @@ msgstr "" msgid "The reminder will repeat every year on {date}." msgstr "" -#: src/strings.ts:1691 +#: src/strings.ts:1693 msgid "The reminder will start on {date} at {time}." msgstr "" -#: src/strings.ts:2064 +#: src/strings.ts:2066 msgid "The security key for unlocking the app. This is the most secure method." msgstr "" -#: src/strings.ts:1620 +#: src/strings.ts:1622 msgid "The URL you have given ({url}) does not point to the {server}." msgstr "" @@ -5922,11 +5926,11 @@ msgstr "" msgid "There are no blocks in this note." msgstr "" -#: src/strings.ts:2216 +#: src/strings.ts:2218 msgid "These items will be **kept in your Trash for {interval} days** after which they will be permanently deleted." msgstr "" -#: src/strings.ts:1899 +#: src/strings.ts:1901 msgid "This action is IRREVERSIBLE." msgstr "" @@ -5934,35 +5938,35 @@ msgstr "" msgid "This device" msgstr "" -#: src/strings.ts:1662 +#: src/strings.ts:1664 msgid "This error can be fixed by rebuilding the search index. This action won't result in any kind of data loss." msgstr "" -#: src/strings.ts:1654 +#: src/strings.ts:1656 msgid "This error can only be fixed by wiping & reseting the database. Beware that this will wipe all your data inside the database with no way to recover it later on. This WILL NOT change/affect/delete/wipe your data on the server but ONLY on this device." msgstr "" -#: src/strings.ts:1658 +#: src/strings.ts:1660 msgid "This error can only be fixed by wiping & reseting the Key Store and the database. This WILL NOT change/affect/delete/wipe your data on the server but ONLY on this device." msgstr "" -#: src/strings.ts:1656 +#: src/strings.ts:1658 msgid "This error means the at rest encryption key could not be decrypted. This can be due to data corruption or implementation change." msgstr "" -#: src/strings.ts:1652 +#: src/strings.ts:1654 msgid "This error usually means the database file is either corrupt or it could not be decrypted." msgstr "" -#: src/strings.ts:1660 +#: src/strings.ts:1662 msgid "This error usually means the search index is corrupted." msgstr "" -#: src/strings.ts:1913 +#: src/strings.ts:1915 msgid "This image cannot be previewed" msgstr "" -#: src/strings.ts:2024 +#: src/strings.ts:2026 msgid "This may take a while" msgstr "" @@ -5971,7 +5975,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:1573 +#: src/strings.ts:1575 msgid "This note is locked" msgstr "" @@ -5991,11 +5995,11 @@ msgstr "" msgid "This note will be published to a public URL." msgstr "" -#: src/strings.ts:2070 +#: src/strings.ts:2072 msgid "This username will be used to distinguish between different credentials in your security key. Make sure it is unique." msgstr "" -#: src/strings.ts:1284 +#: src/strings.ts:1286 msgid "This version of Notesnook app does not support in-app purchases. Kindly login on the Notesnook web app to make the purchase." msgstr "" @@ -6007,7 +6011,7 @@ msgstr "" msgid "Thursday" msgstr "" -#: src/strings.ts:1821 +#: src/strings.ts:1823 msgid "Time" msgstr "" @@ -6024,52 +6028,56 @@ msgstr "" msgid "Title" msgstr "" -#: src/strings.ts:1141 +#: src/strings.ts:1143 msgid "Title format" msgstr "" -#: src/strings.ts:1172 +#: src/strings.ts:1174 msgid "To use app lock, you must enable biometrics such as Fingerprint lock or Face ID on your phone." msgstr "" -#: src/strings.ts:1791 +#: src/strings.ts:1793 msgid "Toggle dark/light mode" msgstr "" -#: src/strings.ts:2329 +#: src/strings.ts:2331 msgid "Toggle indentation mode" msgstr "" -#: src/strings.ts:2358 +#: src/strings.ts:2360 msgid "Toggle replace" msgstr "" -#: src/strings.ts:2111 +#: src/strings.ts:2113 msgid "Toolbar" msgstr "" -#: src/strings.ts:1307 -#: src/strings.ts:1503 +#: src/strings.ts:1134 +msgid "Toolbar reset to default preset" +msgstr "" + +#: src/strings.ts:1309 +#: src/strings.ts:1505 msgid "Trash" msgstr "" -#: src/strings.ts:1306 +#: src/strings.ts:1308 msgid "Trash cleared successfully!" msgstr "" -#: src/strings.ts:1312 +#: src/strings.ts:1314 msgid "Trash gets automatically cleaned up after {days} days" msgstr "" -#: src/strings.ts:1310 +#: src/strings.ts:1312 msgid "Trash gets automatically cleaned up daily" msgstr "" -#: src/strings.ts:1446 +#: src/strings.ts:1448 msgid "Try compact mode to fit more items on screen" msgstr "" -#: src/strings.ts:1803 +#: src/strings.ts:1805 msgid "Try free for 14 days" msgstr "" @@ -6109,23 +6117,23 @@ msgstr "" msgid "Two-factor authentication enabled" msgstr "" -#: src/strings.ts:1483 +#: src/strings.ts:1485 msgid "Type # to search for headings" msgstr "" -#: src/strings.ts:1490 +#: src/strings.ts:1492 msgid "Type a keyword" msgstr "" -#: src/strings.ts:1528 +#: src/strings.ts:1530 msgid "Unable to resolve download url" msgstr "" -#: src/strings.ts:1531 +#: src/strings.ts:1533 msgid "Unable to send 2FA code" msgstr "" -#: src/strings.ts:2235 +#: src/strings.ts:2237 msgid "Underline" msgstr "" @@ -6149,7 +6157,7 @@ msgstr "" msgid "Unlock" msgstr "" -#: src/strings.ts:1364 +#: src/strings.ts:1366 msgid "Unlock more colors with Notesnook Pro" msgstr "" @@ -6162,11 +6170,11 @@ msgstr "" msgid "Unlock note to delete it" msgstr "" -#: src/strings.ts:1192 +#: src/strings.ts:1194 msgid "Unlock the app with biometric authentication. This requires biometrics to be enabled on your device." msgstr "" -#: src/strings.ts:1911 +#: src/strings.ts:1913 msgid "Unlock vault" msgstr "" @@ -6174,7 +6182,7 @@ msgstr "" msgid "Unlock with biometrics" msgstr "" -#: src/strings.ts:1806 +#: src/strings.ts:1808 msgid "Unlock with security key" msgstr "" @@ -6182,11 +6190,11 @@ msgstr "" msgid "Unlock your notes" msgstr "" -#: src/strings.ts:1162 +#: src/strings.ts:1164 msgid "Unlock your vault with biometric authentication" msgstr "" -#: src/strings.ts:1689 +#: src/strings.ts:1691 msgid "Unlocking" msgstr "" @@ -6202,16 +6210,16 @@ msgstr "" msgid "Unpublish" msgstr "" -#: src/strings.ts:1458 +#: src/strings.ts:1460 msgid "Unpublish notes to delete them" msgstr "" -#: src/strings.ts:2065 +#: src/strings.ts:2067 msgid "Unregister" msgstr "" #: src/strings.ts:210 -#: src/strings.ts:2338 +#: src/strings.ts:2340 msgid "Untitled" msgstr "" @@ -6223,19 +6231,19 @@ msgstr "" msgid "Update available" msgstr "" -#: src/strings.ts:1351 +#: src/strings.ts:1353 msgid "Update now" msgstr "" -#: src/strings.ts:1897 +#: src/strings.ts:1899 msgid "Upgrade now" msgstr "" -#: src/strings.ts:1918 +#: src/strings.ts:1920 msgid "Upgrade to Notesnook Pro to add colors." msgstr "" -#: src/strings.ts:1919 +#: src/strings.ts:1921 msgid "Upgrade to Notesnook Pro to create more tags." msgstr "" @@ -6247,12 +6255,12 @@ msgstr "" msgid "Upload" msgstr "" -#: src/strings.ts:2315 +#: src/strings.ts:2317 msgid "Upload from disk" msgstr "" #: src/strings.ts:503 -#: src/strings.ts:1630 +#: src/strings.ts:1632 msgid "Uploaded" msgstr "" @@ -6273,7 +6281,7 @@ msgstr "" msgid "Urgent" msgstr "" -#: src/strings.ts:1768 +#: src/strings.ts:1770 msgid "Use" msgstr "" @@ -6281,11 +6289,11 @@ msgstr "" msgid "Use {keyboardShortcut}+click to select multiple notebooks" msgstr "" -#: src/strings.ts:1781 +#: src/strings.ts:1783 msgid "Use a backup file" msgstr "" -#: src/strings.ts:1879 +#: src/strings.ts:1881 msgid "Use a data recovery key to reset your account password." msgstr "" @@ -6297,7 +6305,7 @@ msgstr "" msgid "Use an authenticator app to generate 2FA codes." msgstr "" -#: src/strings.ts:2151 +#: src/strings.ts:2153 msgid "Use custom DNS" msgstr "" @@ -6305,23 +6313,23 @@ msgstr "" msgid "Use dark mode for the app" msgstr "" -#: src/strings.ts:1600 +#: src/strings.ts:1602 msgid "Use encryption key" msgstr "" -#: src/strings.ts:1144 +#: src/strings.ts:1146 msgid "Use markdown shortcuts in the editor" msgstr "" -#: src/strings.ts:2104 +#: src/strings.ts:2106 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:2102 +#: src/strings.ts:2104 msgid "Use native titlebar" msgstr "" -#: src/strings.ts:1778 +#: src/strings.ts:1780 msgid "Use recovery key" msgstr "" @@ -6353,23 +6361,23 @@ msgstr "" msgid "User verification failed" msgstr "" -#: src/strings.ts:2231 +#: src/strings.ts:2233 msgid "Using {instance} (v{version})" msgstr "" -#: src/strings.ts:2229 +#: src/strings.ts:2231 msgid "Using official Notesnook instance" msgstr "" -#: src/strings.ts:1688 +#: src/strings.ts:1690 msgid "v{version} available" msgstr "" -#: src/strings.ts:1155 +#: src/strings.ts:1157 msgid "Vault" msgstr "" -#: src/strings.ts:1971 +#: src/strings.ts:1973 msgid "Vault cleared" msgstr "" @@ -6377,7 +6385,7 @@ msgstr "" msgid "Vault created" msgstr "" -#: src/strings.ts:1972 +#: src/strings.ts:1974 msgid "Vault deleted" msgstr "" @@ -6385,15 +6393,15 @@ msgstr "" msgid "Vault fingerprint unlock" msgstr "" -#: src/strings.ts:1910 +#: src/strings.ts:1912 msgid "Vault locked" msgstr "" -#: src/strings.ts:1909 +#: src/strings.ts:1911 msgid "Vault unlocked" msgstr "" -#: src/strings.ts:1381 +#: src/strings.ts:1383 msgid "Verification email sent" msgstr "" @@ -6409,11 +6417,11 @@ msgstr "" msgid "Verify your subscription to Notesnook Pro" msgstr "" -#: src/strings.ts:1882 +#: src/strings.ts:1884 msgid "Verifying 2FA code" msgstr "" -#: src/strings.ts:1868 +#: src/strings.ts:1870 msgid "Verifying your email" msgstr "" @@ -6433,11 +6441,11 @@ msgstr "" msgid "View all linked notebooks" msgstr "" -#: src/strings.ts:1254 +#: src/strings.ts:1256 msgid "View and share debug logs" msgstr "" -#: src/strings.ts:1726 +#: src/strings.ts:1728 msgid "View receipt" msgstr "" @@ -6445,7 +6453,7 @@ msgstr "" msgid "View recovery codes" msgstr "" -#: src/strings.ts:2131 +#: src/strings.ts:2133 msgid "View source code" msgstr "" @@ -6457,15 +6465,15 @@ msgstr "" msgid "Visit homepage" msgstr "" -#: src/strings.ts:1331 +#: src/strings.ts:1333 msgid "Wait 30 seconds to try again" msgstr "" -#: src/strings.ts:1631 +#: src/strings.ts:1633 msgid "Waiting for upload" msgstr "" -#: src/strings.ts:1890 +#: src/strings.ts:1892 msgid "We are creating a backup of your data. Please wait..." msgstr "" @@ -6473,27 +6481,27 @@ msgstr "" msgid "We are sorry, it seems that the app crashed due to an error. You can submit a bug report below so we can fix this asap." msgstr "" -#: src/strings.ts:1371 +#: src/strings.ts:1373 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:2146 +#: src/strings.ts:2148 msgid "We send you occasional promotional offers & product updates on your email (once every month)." msgstr "" -#: src/strings.ts:1151 +#: src/strings.ts:1153 msgid "We will send you occasional promotional offers & product updates on your email (sent once every month)." msgstr "" -#: src/strings.ts:1335 +#: src/strings.ts:1337 msgid "We would love to know what you think!" msgstr "" -#: src/strings.ts:2300 +#: src/strings.ts:2302 msgid "Web clip settings" msgstr "" -#: src/strings.ts:2008 +#: src/strings.ts:2010 msgid "Website" msgstr "" @@ -6510,7 +6518,7 @@ msgid "Week" msgstr "" #: src/strings.ts:168 -#: src/strings.ts:1548 +#: src/strings.ts:1550 msgid "Weekly" msgstr "" @@ -6518,27 +6526,27 @@ msgstr "" msgid "Welcome back, {email}" msgstr "" -#: src/strings.ts:1867 +#: src/strings.ts:1869 msgid "Welcome back!" msgstr "" -#: src/strings.ts:2052 +#: src/strings.ts:2054 msgid "Welcome to Notesnook Pro" msgstr "" -#: src/strings.ts:1373 +#: src/strings.ts:1375 msgid "What do I do if I am not getting the email?" msgstr "" -#: src/strings.ts:1646 +#: src/strings.ts:1648 msgid "What went wrong?" msgstr "" -#: src/strings.ts:2361 +#: src/strings.ts:2363 msgid "Width" msgstr "" -#: src/strings.ts:2389 +#: src/strings.ts:2391 msgid "Work & Office" msgstr "" @@ -6546,15 +6554,15 @@ msgstr "" msgid "Write notes with freedom, no spying, no tracking." msgstr "" -#: src/strings.ts:1355 +#: src/strings.ts:1357 msgid "Write something..." msgstr "" -#: src/strings.ts:1633 +#: src/strings.ts:1635 msgid "Write with freedom." msgstr "" -#: src/strings.ts:2040 +#: src/strings.ts:2042 msgid "Write with freedom. Never compromise on privacy again." msgstr "" @@ -6563,7 +6571,7 @@ msgid "Year" msgstr "" #: src/strings.ts:170 -#: src/strings.ts:1550 +#: src/strings.ts:1552 msgid "Yearly" msgstr "" @@ -6575,19 +6583,19 @@ msgstr "" msgid "You also agree to recieve marketing emails from us which you can opt-out of from app settings." msgstr "" -#: src/strings.ts:2218 +#: src/strings.ts:2220 msgid "You are editing \"{notebookTitle}\"." msgstr "" -#: src/strings.ts:2022 +#: src/strings.ts:2024 msgid "You are editing #{tag}" msgstr "" -#: src/strings.ts:1760 +#: src/strings.ts:1762 msgid "You are logging into the beta version of Notesnook. Switching between beta & stable versions can cause weird issues including data loss. It is recommended that you do not use both simultaneously." msgstr "" -#: src/strings.ts:1342 +#: src/strings.ts:1344 msgid "You are not logged in" msgstr "" @@ -6599,35 +6607,35 @@ msgstr "" msgid "You can add as many tags as you want." msgstr "" -#: src/strings.ts:2043 +#: src/strings.ts:2045 msgid "You can change the theme at any time from Settings or the side menu." msgstr "" -#: src/strings.ts:2397 +#: src/strings.ts:2399 msgid "You can create shortcuts of frequently accessed notebooks in the side menu" msgstr "" -#: src/strings.ts:2058 +#: src/strings.ts:2060 msgid "You can import your notes from most other note taking apps." msgstr "" -#: src/strings.ts:1417 +#: src/strings.ts:1419 msgid "You can multi-select notes and move them to a notebook at once" msgstr "" -#: src/strings.ts:1408 +#: src/strings.ts:1410 msgid "You can pin frequently used Notebooks to the Side Menu to quickly access them." msgstr "" -#: src/strings.ts:1154 +#: src/strings.ts:1156 msgid "You can set a custom proxy URL to increase your privacy." msgstr "" -#: src/strings.ts:1389 +#: src/strings.ts:1391 msgid "You can swipe left anywhere in the app to start a new note." msgstr "" -#: src/strings.ts:2032 +#: src/strings.ts:2034 msgid "" "You can track your bug report at [{url}]({url}).\n" "\n" @@ -6648,19 +6656,19 @@ msgstr "" msgid "You can use fallback 2FA method incase you are unable to login via primary method" msgstr "" -#: src/strings.ts:1431 +#: src/strings.ts:1433 msgid "You can view & restore older versions of any note by going to its properties -> History." msgstr "" -#: src/strings.ts:1728 +#: src/strings.ts:1730 msgid "You have {count} custom dictionary words." msgstr "" -#: src/strings.ts:2177 +#: src/strings.ts:2179 msgid "You have been logged out from all other devices." msgstr "" -#: src/strings.ts:2171 +#: src/strings.ts:2173 msgid "You have been logged out." msgstr "" @@ -6688,11 +6696,11 @@ msgstr "" msgid "You have not set any reminders yet" msgstr "" -#: src/strings.ts:1524 +#: src/strings.ts:1526 msgid "You have unsynced notes. Take a backup or sync your notes to avoid losing your critical data." msgstr "" -#: src/strings.ts:1613 +#: src/strings.ts:1615 msgid "You must log out in order to change/reset server URLs." msgstr "" @@ -6728,7 +6736,7 @@ msgstr "" msgid "You will be logged out from all your devices" msgstr "" -#: src/strings.ts:1830 +#: src/strings.ts:1832 msgid "You will receive instructions on how to recover your account on this email" msgstr "" @@ -6736,16 +6744,16 @@ msgstr "" msgid "Your account email will be changed without affecting your subscription or any other settings." msgstr "" -#: src/strings.ts:1896 +#: src/strings.ts:1898 msgid "Your account has been recovered." msgstr "" #: src/strings.ts:494 -#: src/strings.ts:1707 +#: src/strings.ts:1709 msgid "Your account is now 100% secure against unauthorized logins." msgstr "" -#: src/strings.ts:1835 +#: src/strings.ts:1837 msgid "Your account password must be strong & unique." msgstr "" @@ -6753,31 +6761,31 @@ msgstr "" msgid "Your account will be downgraded in {days} days" msgstr "" -#: src/strings.ts:1908 +#: src/strings.ts:1910 msgid "Your backup is ready to download" msgstr "" -#: src/strings.ts:1565 +#: src/strings.ts:1567 msgid "Your changes could not be saved" msgstr "" -#: src/strings.ts:1755 +#: src/strings.ts:1757 msgid "Your changes have been saved and will be reflected after the app has refreshed." msgstr "" -#: src/strings.ts:2078 +#: src/strings.ts:2080 msgid "Your current 2FA method is {method}" msgstr "" -#: src/strings.ts:1780 +#: src/strings.ts:1782 msgid "Your data recovery key is basically a hashed version of your password (plus some random salt). It can be used to decrypt your data for re-encryption." msgstr "" -#: src/strings.ts:1833 +#: src/strings.ts:1835 msgid "Your data recovery key will be used to decrypt your data" msgstr "" -#: src/strings.ts:1763 +#: src/strings.ts:1765 msgid "Your email has been confirmed." msgstr "" @@ -6793,7 +6801,7 @@ msgstr "" msgid "Your free trial ends on {date}" msgstr "" -#: src/strings.ts:1385 +#: src/strings.ts:1387 msgid "Your free trial has expired" msgstr "" @@ -6801,11 +6809,11 @@ msgstr "" msgid "Your free trial has started" msgstr "" -#: src/strings.ts:1384 +#: src/strings.ts:1386 msgid "Your free trial is ending soon" msgstr "" -#: src/strings.ts:1757 +#: src/strings.ts:1759 msgid "Your full name" msgstr "" @@ -6813,7 +6821,7 @@ msgstr "" msgid "Your monographs" msgstr "" -#: src/strings.ts:1293 +#: src/strings.ts:1295 msgid "Your name is stored 100% end-to-end encrypted and only visible to you." msgstr "" @@ -6829,7 +6837,7 @@ msgstr "" msgid "Your notes" msgstr "" -#: src/strings.ts:1871 +#: src/strings.ts:1873 msgid "Your password is always hashed before leaving this device." msgstr "" @@ -6837,11 +6845,11 @@ msgstr "" msgid "Your privacy matters to us, no matter who you are. In a world where everyone is trying to spy on you, Notesnook encrypts all your data before it leaves your device. With Notesnook no one can ever sell your data again." msgstr "" -#: src/strings.ts:1290 +#: src/strings.ts:1292 msgid "Your profile pictrure is stored 100% end-to-end encrypted and only visible to you." msgstr "" -#: src/strings.ts:1976 +#: src/strings.ts:1978 msgid "Your refund has been issued. Please wait 24 hours before reaching out to us in case you do not receive your funds." msgstr "" @@ -6857,7 +6865,7 @@ msgstr "" msgid "Your subscription ends on {date}" msgstr "" -#: src/strings.ts:1974 +#: src/strings.ts:1976 msgid "Your subscription has been canceled." msgstr "" @@ -6885,18 +6893,18 @@ msgstr "" msgid "Zipping" msgstr "" -#: src/strings.ts:2072 +#: src/strings.ts:2074 msgid "Zoom factor" msgstr "" -#: src/strings.ts:1679 +#: src/strings.ts:1681 msgid "Zoom in" msgstr "" -#: src/strings.ts:2073 +#: src/strings.ts:2075 msgid "Zoom in or out the app content." msgstr "" -#: src/strings.ts:1678 +#: src/strings.ts:1680 msgid "Zoom out" msgstr "" diff --git a/packages/intl/src/strings.ts b/packages/intl/src/strings.ts index aaa8de6b4..eb2266a28 100644 --- a/packages/intl/src/strings.ts +++ b/packages/intl/src/strings.ts @@ -1124,12 +1124,14 @@ $headline$: Use starting line of the note as title.`, t`Automatically clear trash after a certain period of time`, clearDefaultNotebook: () => t`Clear default notebook`, clearDefaultNotebookDesc: () => t`Newly created notes will be uncategorized`, + defaultNotebookCleared: () => t`Default notebook cleared`, editor: () => t`Editor`, editorDesc: () => t`Customize the note editor`, customizeToolbar: () => t`Customize toolbar`, customizeToolbarDesc: () => t`Customize the toolbar in the note editor`, resetToolbar: () => t`Reset toolbar`, resetToolbarDesc: () => t`Reset the toolbar to default settings`, + toolbarReset: () => t`Toolbar reset to default preset`, doubleSpacedLines: () => t`Double spaced lines`, doubleSpacedLinesDesc: () => t`New lines will be double spaced (old ones won't be affected).`,