diff --git a/apps/mobile/app/components/attachments/actions.tsx b/apps/mobile/app/components/attachments/actions.tsx
index 4ee2de59e..908bf4052 100644
--- a/apps/mobile/app/components/attachments/actions.tsx
+++ b/apps/mobile/app/components/attachments/actions.tsx
@@ -19,6 +19,7 @@ along with this program. If not, see .
import { formatBytes } from "@notesnook/common";
import { Attachment, Note, VirtualizedGrouping } from "@notesnook/core";
+import { strings } from "@notesnook/intl";
import { useThemeColors } from "@notesnook/theme";
import Clipboard from "@react-native-clipboard/clipboard";
import React, { RefObject, useEffect, useState } from "react";
@@ -26,6 +27,7 @@ import { TextInput, View } from "react-native";
import { ActionSheetRef } from "react-native-actions-sheet";
import { ScrollView } from "react-native-gesture-handler";
import { db } from "../../common/database";
+import { Radius, Spacing } from "../../common/design/spacing";
import filesystem from "../../common/filesystem";
import downloadAttachment from "../../common/filesystem/download-attachment";
import { useAttachmentProgress } from "../../hooks/use-attachment-progress";
@@ -37,6 +39,7 @@ import {
eSendEvent,
presentSheet
} from "../../services/event-manager";
+import Navigation from "../../services/navigation";
import PremiumService from "../../services/premium";
import { useAttachmentStore } from "../../stores/use-attachment-store";
import {
@@ -46,20 +49,19 @@ import {
eOnLoadNote
} from "../../utils/events";
import { AppFontSize } from "../../utils/size";
+import { DefaultAppStyles } from "../../utils/styles";
import { Dialog } from "../dialog";
import { presentDialog } from "../dialog/functions";
import { openNote } from "../list-items/note/wrapper";
import { DateMeta } from "../properties/date-meta";
import SheetProvider from "../sheet-provider";
-import { Button } from "../ui/button";
+import AppIcon from "../ui/AppIcon";
+import { createFormRef, validators } from "../ui/input/form-input";
import { Notice } from "../ui/notice";
import { Pressable } from "../ui/pressable";
+import LineSeparator from "../ui/seperator/line-separator";
import Heading from "../ui/typography/heading";
import Paragraph from "../ui/typography/paragraph";
-import { strings } from "@notesnook/intl";
-import { DefaultAppStyles } from "../../utils/styles";
-import Navigation from "../../services/navigation";
-import { createFormRef, validators } from "../ui/input/form-input";
const Actions = ({
attachment,
@@ -94,7 +96,7 @@ const Actions = ({
downloadAttachment(attachment.hash, context === "global");
fwdRef.current?.hide();
},
- icon: "download"
+ icon: "download-simple"
},
{
name: strings.network.reupload(),
@@ -114,7 +116,7 @@ const Actions = ({
type: attachment.mimeType.startsWith("image") ? "image" : "file"
});
},
- icon: "upload"
+ icon: "upload-simple"
},
{
name: strings.fileCheck(),
@@ -149,7 +151,7 @@ const Actions = ({
name: undefined
});
},
- icon: "file-check"
+ icon: "file"
},
{
name: strings.rename(),
@@ -197,7 +199,7 @@ const Actions = ({
});
}, 500);
},
- icon: "form-textbox"
+ icon: "pencil-simple"
},
{
name: strings.delete(),
@@ -249,7 +251,7 @@ const Actions = ({
});
}, 500);
},
- icon: "delete-outline"
+ icon: "trash"
}
];
@@ -267,6 +269,7 @@ const Actions = ({
onMomentumScrollEnd={() => {
fwdRef?.current?.handleChildScrollEnd();
}}
+ bounces={false}
nestedScrollEnabled={true}
style={{
maxHeight: "100%"
@@ -277,42 +280,34 @@ const Actions = ({
0 ? 0 : DefaultAppStyles.GAP_VERTICAL
+ paddingHorizontal: Spacing.LEVEL_3,
+ paddingTop: Spacing.LEVEL_4,
+ gap: Spacing.LEVEL_1
}}
>
-
- {filename}
-
+ {filename}
-
+
{attachment.mimeType}
+ •
{formatBytes(attachment.size)}
-
+ •
{notes.length ? (
-
+
{strings.notes(notes.length)}
) : null}
+ •
{
Clipboard.setString(attachment.hash);
@@ -322,82 +317,123 @@ const Actions = ({
context: "local"
});
}}
- size={AppFontSize.xs}
+ fontSize="XS"
color={colors.secondary.paragraph}
>
+ {" "}
{attachment.hash}
+
+
{notes && notes.length > 0 ? (
-
- <>
-
- {strings.listOf()} {strings.dataTypesPlural.note()}:
-
+ <>
+
+
+ <>
+
+ {strings.notes(notes.length)}
+
- {notes.map((item) => (
- {
- eSendEvent(eCloseSheet, contextId);
- close?.();
- eSendEvent(eCloseAttachmentDialog);
- Navigation.navigate("FluidPanelsView");
- openNote(item, (item as any).type === "trash");
- }}
- style={{
- paddingVertical: DefaultAppStyles.GAP_VERTICAL,
- alignItems: "flex-start",
-
- paddingHorizontal: DefaultAppStyles.GAP
- }}
- key={item.id}
- >
- {item.title}
-
- ))}
- >
-
+ {notes.map((item) => (
+ {
+ eSendEvent(eCloseSheet, contextId);
+ close?.();
+ eSendEvent(eCloseAttachmentDialog);
+ Navigation.navigate("FluidPanelsView");
+ openNote(item, (item as any).type === "trash");
+ }}
+ style={{
+ alignItems: "flex-start"
+ }}
+ key={item.id}
+ >
+ {item.title}
+
+ ))}
+ >
+
+ >
) : null}
- {actions.map((item) => (
-
- ))}
+
+
+
+ {actions.map((item) => (
+
+
+
+
+
+
+ {item.name}
+
+
+ ))}
+
.
*/
-import { formatBytes } from "@notesnook/common";
+import { formatBytes, getFormattedDate } from "@notesnook/common";
import { Attachment, VirtualizedGrouping } from "@notesnook/core";
+import { strings } from "@notesnook/intl";
import { useThemeColors } from "@notesnook/theme";
import React from "react";
-import { TouchableOpacity, View } from "react-native";
-import { db } from "../../common/database";
+import { View } from "react-native";
+import { Radius, Spacing } from "../../common/design/spacing";
import { useAttachmentProgress } from "../../hooks/use-attachment-progress";
import { useDBItem } from "../../hooks/use-db-item";
-import { defaultBorderRadius, AppFontSize } from "../../utils/size";
-import { IconButton } from "../ui/icon-button";
-import { ProgressCircleComponent } from "../ui/svg/lazy";
+import AppIcon from "../ui/AppIcon";
+import { Pressable } from "../ui/pressable";
+import { ProgressBarComponent } from "../ui/svg/lazy";
+import Heading from "../ui/typography/heading";
import Paragraph from "../ui/typography/paragraph";
import Actions from "./actions";
-import { strings } from "@notesnook/intl";
-import { Pressable } from "../ui/pressable";
-import { DefaultAppStyles } from "../../utils/styles";
+import { IconButton } from "../ui/icon-button";
-function getFileExtension(filename: string) {
- const ext = /^.+\.([^.]+)$/.exec(filename);
- return ext == null ? "" : ext[1];
+function getAttachmentIcon(attachment: Attachment) {
+ const mimeType = attachment.mimeType || "";
+ if (mimeType.startsWith("image/")) return "image";
+ if (mimeType.startsWith("video/")) return "video-camera";
+ if (mimeType.startsWith("audio/")) return "music-notes";
+ return "file-text";
}
export const AttachmentItem = ({
@@ -75,11 +78,15 @@ export const AttachmentItem = ({
onPress={onPress}
style={{
flexDirection: "row",
- marginVertical: 5,
+ alignItems: "center",
justifyContent: "space-between",
- padding: DefaultAppStyles.GAP,
- paddingVertical: DefaultAppStyles.GAP_VERTICAL,
- minHeight: 45
+ gap: Spacing.LEVEL_2,
+ borderWidth: 1,
+ borderColor: colors.primary.border,
+ borderRadius: Radius.S,
+ paddingHorizontal: Spacing.LEVEL_2,
+ paddingVertical: Spacing.LEVEL_3,
+ marginBottom: Spacing.LEVEL_2
}}
>
{!attachment ? null : (
@@ -89,107 +96,112 @@ export const AttachmentItem = ({
flexShrink: 1,
flexDirection: "row",
alignItems: "center",
- gap: 10
+ gap: Spacing.LEVEL_2
}}
>
-
- {getFileExtension(attachment.filename).toUpperCase() ||
- attachment.mimeType.split("/")?.[1]?.toUpperCase()}
-
+
-
- {attachment.filename}
-
+ book.pdf
+
- {!hideWhenNotDownloading ? (
-
+ {attachment.failed ? (
+
+ ) : null}
+ {!hideWhenNotDownloading ? (
+
+ {getFormattedDate(attachment.dateModified)} |{" "}
+ {formatBytes(attachment.size)}
+
+ ) : null}
+
+
+ {currentProgress ? (
+
- {strings.fileSize()}: {formatBytes(attachment.size)}
-
+
+
+ {currentProgress.percent} |{" "}
+ {currentProgress.type === "upload"
+ ? strings.uploading()
+ : strings.downloading()}
+
+
) : null}
-
- {currentProgress ? (
- {
- if (encryption || !pressable) return;
- db.fs().cancel(attachment.hash);
- setCurrentProgress(undefined);
- }}
- style={{
- justifyContent: "center",
- marginLeft: 5,
- marginTop: 5,
- marginRight: -5
- }}
- >
- (progress * 100).toFixed(0)}
- borderWidth={0}
- thickness={2}
- />
-
- ) : (
- <>
- {attachment.failed ? (
-
- ) : null}
- >
- )}
>
)}
+
+
);
};
diff --git a/apps/mobile/app/components/list-items/note/wrapper.tsx b/apps/mobile/app/components/list-items/note/wrapper.tsx
index ee0b07460..fa7ebe88e 100644
--- a/apps/mobile/app/components/list-items/note/wrapper.tsx
+++ b/apps/mobile/app/components/list-items/note/wrapper.tsx
@@ -23,19 +23,15 @@ import NoteItem from ".";
import { notesnook } from "../../../../e2e/test.ids";
import { db } from "../../../common/database";
import { DDS } from "../../../services/device-detection";
-import {
- eSendEvent,
- hideSheet,
- presentSheet
-} from "../../../services/event-manager";
+import { eSendEvent, hideSheet } from "../../../services/event-manager";
import { eOnLoadNote, eShowMergeDialog } from "../../../utils/events";
import { fluidTabsRef } from "../../../utils/global-refs";
import { NotebooksWithDateEdited, TagsWithDateEdited } from "@notesnook/common";
import { useTabStore } from "../../../screens/editor/tiptap/use-tab-store";
import { editorController } from "../../../screens/editor/tiptap/utils";
+import Navigation from "../../../services/navigation";
import { RouteParams } from "../../../stores/use-navigation-store";
-import NotePreview from "../../note-history/preview";
import SelectionWrapper from "../selection-wrapper";
import { selectItem } from "../../../stores/use-selection-store";
@@ -60,11 +56,7 @@ export const openNote = async (
if (isTrash) {
if (!note.contentId) return;
-
- const content = await db.content.get(note.contentId as string);
- presentSheet({
- component:
- });
+ Navigation.navigate("NotePreview", { note: item });
} else {
if (!useTabStore.getState().hasTabForNote(note.id!)) {
editorController.current.commands.setLoading(
diff --git a/apps/mobile/app/components/note-history/index.tsx b/apps/mobile/app/components/note-history/index.tsx
deleted file mode 100644
index c7a9bedf1..000000000
--- a/apps/mobile/app/components/note-history/index.tsx
+++ /dev/null
@@ -1,265 +0,0 @@
-/*
-This file is part of the Notesnook project (https://notesnook.com/)
-
-Copyright (C) 2023 Streetwriters (Private) Limited
-
-This program is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation, either version 3 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program. If not, see .
-*/
-
-import React, { RefObject, useCallback, useEffect, useState } from "react";
-import { ActivityIndicator, Text, View } from "react-native";
-
-import { LegendList } from "@legendapp/list";
-import { getFormattedDate, getTimeAgo } from "@notesnook/common";
-import { HistorySession, Note, VirtualizedGrouping } from "@notesnook/core";
-import { strings } from "@notesnook/intl";
-import { useThemeColors } from "@notesnook/theme";
-import { ActionSheetRef, ScrollView } from "react-native-actions-sheet";
-import Icon from "react-native-vector-icons/MaterialCommunityIcons";
-import { db } from "../../common/database";
-import { useDBItem } from "../../hooks/use-db-item";
-import { presentSheet, ToastManager } from "../../services/event-manager";
-import { openLinkInBrowser } from "../../utils/functions";
-import { AppFontSize } from "../../utils/size";
-import { DefaultAppStyles } from "../../utils/styles";
-import DialogHeader from "../dialog/dialog-header";
-import SheetProvider from "../sheet-provider";
-import { Pressable } from "../ui/pressable";
-import Seperator from "../ui/seperator";
-import Paragraph from "../ui/typography/paragraph";
-import NotePreview from "./preview";
-import { presentDialog } from "../dialog/functions";
-import { Dialog } from "../dialog";
-
-const HistoryItem = ({
- index,
- items,
- note,
- refresh
-}: {
- index: number;
- items?: VirtualizedGrouping;
- note: Note;
- refresh: () => void;
-}) => {
- const [item] = useDBItem(index, "noteHistory", items);
- const { colors } = useThemeColors();
- const getDate = (start: number, end: number) => {
- const _start_date = getFormattedDate(start, "date");
- const _end_date = getFormattedDate(end + 60000, "date");
-
- const _start_time = getFormattedDate(start, "time");
- const _end_time = getFormattedDate(end + 60000, "time");
-
- return `${_start_date} ${_start_time} - ${
- _end_date === _start_date ? " " : _end_date + " "
- }${_end_time}`;
- };
-
- const preview = useCallback(
- async (item: HistorySession) => {
- const content = await db.noteHistory.content(item.id);
- presentSheet({
- component: (
-
- ),
- context: "note_history"
- });
- },
- [note, refresh]
- );
-
- return (
- {
- if (!item) return;
- preview(item);
- }}
- style={{
- justifyContent: "space-between",
- alignItems: "center",
- paddingHorizontal: DefaultAppStyles.GAP,
- height: 45,
- marginBottom: DefaultAppStyles.GAP_VERTICAL,
- flexDirection: "row"
- }}
- >
- {!item ? null : (
- <>
- {getDate(item.dateCreated, item.dateModified)}
-
- {getTimeAgo(item.dateModified)}
-
- >
- )}
-
- );
-};
-
-export default function NoteHistory({
- note,
- fwdRef
-}: {
- note: Note;
- fwdRef: RefObject;
-}) {
- const [history, setHistory] = useState>();
- const [_loading, setLoading] = useState(true);
- const { colors } = useThemeColors();
-
- const refresh = useCallback(() => {
- db.noteHistory
- .get(note.id)
- .sorted({
- sortBy: "dateModified",
- sortDirection: "desc"
- })
- .then((result) => {
- setHistory(result);
- setLoading(false);
- })
- .catch((e) => {
- setLoading(false);
- });
- }, [note.id]);
-
- useEffect(() => {
- refresh();
- }, [refresh]);
-
- const renderItem = useCallback(
- ({ index }: { index: number }) => (
-
- ),
- [history, note, refresh]
- );
-
- return (
-
-
-
- {
- presentDialog({
- title: strings.clearHistory(),
- paragraph: strings.clearHistoryConfirmation(),
- positiveText: strings.clear(),
- negativeText: strings.cancel(),
- positiveType: "errorShade",
- context: "local",
- positivePress: async () => {
- await db.noteHistory.clearSessions(note.id);
- fwdRef.current?.hide();
- ToastManager.show({
- heading: strings.historyCleared(),
- type: "success"
- });
- }
- });
- }
- }
- : undefined
- }
- />
-
-
-
-
- }
- data={history?.placeholders || []}
- estimatedItemSize={55}
- extraData={history}
- ListEmptyComponent={
-
- {_loading ? (
-
- ) : (
- <>
-
-
- {strings.noteHistoryPlaceholder()}
-
- >
- )}
-
- }
- renderItem={renderItem}
- />
-
-
- {strings.noteHistoryNotice[0]()}{" "}
- {
- openLinkInBrowser(
- "https://help.notesnook.com/note-version-history"
- );
- }}
- style={{
- color: colors.primary.accent,
- textDecorationLine: "underline"
- }}
- >
- {strings.noteHistoryNotice[1]()}
-
-
-
- );
-}
diff --git a/apps/mobile/app/components/note-history/preview.tsx b/apps/mobile/app/components/note-history/preview.tsx
deleted file mode 100644
index a92afc887..000000000
--- a/apps/mobile/app/components/note-history/preview.tsx
+++ /dev/null
@@ -1,237 +0,0 @@
-/*
-This file is part of the Notesnook project (https://notesnook.com/)
-
-Copyright (C) 2023 Streetwriters (Private) Limited
-
-This program is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation, either version 3 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program. If not, see .
-*/
-
-import { useThemeColors } from "@notesnook/theme";
-import React, { useEffect, useState } from "react";
-import { View } from "react-native";
-import { db } from "../../common/database";
-import { ReadonlyEditor } from "../../screens/editor/readonly-editor";
-import { useTabStore } from "../../screens/editor/tiptap/use-tab-store";
-import { editorController } from "../../screens/editor/tiptap/utils";
-import { ToastManager, eSendEvent } from "../../services/event-manager";
-import Navigation from "../../services/navigation";
-import { useSelectionStore } from "../../stores/use-selection-store";
-import { useTrashStore } from "../../stores/use-trash-store";
-import { eCloseSheet, eOnLoadNote } from "../../utils/events";
-import { Dialog } from "../dialog";
-import DialogHeader from "../dialog/dialog-header";
-import { presentDialog } from "../dialog/functions";
-import { Button } from "../ui/button";
-import Paragraph from "../ui/typography/paragraph";
-import { diff } from "diffblazer";
-import { strings } from "@notesnook/intl";
-import { DefaultAppStyles } from "../../utils/styles";
-import {
- HistorySession,
- isEncryptedContent,
- Note,
- NoteContent,
- TrashOrItem
-} from "@notesnook/core";
-
-/**
- *
- * @param {any} param0
- * @returns
- */
-export default function NotePreview({
- session,
- content,
- note,
- update
-}: {
- session?: HistorySession & { session: string };
- content:
- | Partial<
- NoteContent & {
- title: string;
- }
- >
- | undefined;
- note: TrashOrItem;
- update?: () => void;
-}) {
- const { colors } = useThemeColors();
- const [locked, setLocked] = useState(false);
-
- async function restore() {
- if (note && note.type === "trash") {
- await db.trash.restore(note.id);
- Navigation.queueRoutesForUpdate();
- useSelectionStore.getState().setSelectionMode();
- ToastManager.show({
- heading: strings.noteRestored(),
- type: "success"
- });
- eSendEvent(eCloseSheet);
- return;
- }
- if (session) {
- await db.noteHistory.restore(session.id);
- if (useTabStore.getState().hasTabForNote(session?.noteId)) {
- const note = editorController.current.note.current[session?.noteId];
- if (note) {
- eSendEvent(eOnLoadNote, {
- item: note,
- forced: true
- });
- }
- }
- eSendEvent(eCloseSheet, "note_history");
- eSendEvent(eCloseSheet);
- Navigation.queueRoutesForUpdate();
-
- ToastManager.show({
- heading: strings.noteRestoredFromHistory(),
- type: "success"
- });
- }
- }
-
- useEffect(() => {
- db.vaults.itemExists(note).then((locked) => setLocked(locked));
- }, [note]);
-
- const deleteNote = async () => {
- const isSession = !!session;
-
- presentDialog({
- title: isSession ? strings.deleteVersion() : strings.deleteNote(),
- paragraph: isSession
- ? strings.deleteVersionConfirmation()
- : strings.deleteNoteConfirmation(),
- positiveText: strings.delete(),
- negativeText: strings.cancel(),
- context: "preview",
- positivePress: async () => {
- if (isSession) {
- await db.noteHistory.remove(session.id);
- update?.();
- eSendEvent(eCloseSheet, "note_history");
- Navigation.queueRoutesForUpdate();
- } else if (note.type === "trash") {
- await db.trash.delete(note.id);
- useTrashStore.getState().refresh();
- useSelectionStore.getState().setSelectionMode();
- eSendEvent(eCloseSheet);
- }
- ToastManager.show({
- heading: isSession ? strings.versionDeleted() : strings.noteDeleted(),
- type: "success",
- context: isSession ? "local" : "global"
- });
-
- return true;
- },
- positiveType: "error"
- });
- };
-
- return (
-
-
-
- {!session?.locked && !locked && content?.data ? (
-
- {
- try {
- if (content?.data) {
- const currentContent = note?.contentId
- ? await db.content.get(note.contentId)
- : undefined;
-
- if (
- currentContent?.data &&
- !isEncryptedContent(currentContent)
- ) {
- loadContent({
- data: diff(
- currentContent?.data || "",
- content.data as string
- ),
- id: session?.noteId || note.id
- });
- }
- }
- } catch (e) {
- ToastManager.error(
- e as Error,
- "Failed to load history preview",
- "local"
- );
- }
- }}
- />
-
- ) : (
-
-
- {!content?.data
- ? strings.noContent()
- : strings.encryptedNoteHistoryNotice()}
-
-
- )}
-
-
-
-
-
-
- );
-}
diff --git a/apps/mobile/app/components/properties/items.tsx b/apps/mobile/app/components/properties/items.tsx
index f81b754bd..9a7c46e6a 100644
--- a/apps/mobile/app/components/properties/items.tsx
+++ b/apps/mobile/app/components/properties/items.tsx
@@ -438,8 +438,8 @@ export const Items = ({
paginationStyle={{
position: "relative",
marginHorizontal: 2,
- marginBottom: -10,
- marginTop: 10
+ marginBottom: Spacing.LEVEL_0,
+ marginTop: Spacing.LEVEL_2
}}
contentContainerStyle={{
justifyContent: "flex-start",
diff --git a/apps/mobile/app/components/sheets/publish-note/index.tsx b/apps/mobile/app/components/sheets/publish-note/index.tsx
index e45f43095..33202fc0f 100644
--- a/apps/mobile/app/components/sheets/publish-note/index.tsx
+++ b/apps/mobile/app/components/sheets/publish-note/index.tsx
@@ -22,14 +22,8 @@ import { strings } from "@notesnook/intl";
import { useThemeColors } from "@notesnook/theme";
import Clipboard from "@react-native-clipboard/clipboard";
import React, { useEffect, useRef, useState } from "react";
-import {
- ActivityIndicator,
- TextInput,
- TouchableOpacity,
- View
-} from "react-native";
-//@ts-ignore
-import ToggleSwitch from "toggle-switch-react-native";
+import { ActivityIndicator, TextInput, View } from "react-native";
+import { Radius, Spacing } from "../../../common/design/spacing";
import { db } from "../../../common/database";
import { requestInAppReview } from "../../../services/app-review";
import {
@@ -40,12 +34,11 @@ import {
import Navigation from "../../../services/navigation";
import { useAttachmentStore } from "../../../stores/use-attachment-store";
import { openLinkInBrowser } from "../../../utils/functions";
-import { AppFontSize, defaultBorderRadius } from "../../../utils/size";
-import { DefaultAppStyles } from "../../../utils/styles";
import DialogHeader from "../../dialog/dialog-header";
+import { presentDialog } from "../../dialog/functions";
+import AppIcon, { IconProps } from "../../ui/AppIcon";
import { Button } from "../../ui/button";
-import { IconButton } from "../../ui/icon-button";
-import Heading from "../../ui/typography/heading";
+import { Pressable } from "../../ui/pressable";
import Paragraph from "../../ui/typography/paragraph";
import { useAsync } from "react-async-hook";
import { eMenuItemUpdate } from "../../../utils/events";
@@ -55,6 +48,70 @@ import FormInput, {
validators
} from "../../ui/input/form-input";
import { useAppState } from "../../../../app/hooks/use-app-state";
+import Heading from "../../ui/typography/heading";
+import { FontSizes } from "../../../common/design/font";
+import { Dialog } from "../../dialog";
+import LineSeparator from "../../ui/seperator/line-separator";
+
+const OptionRow = ({
+ icon,
+ iconFamily = "notesnook",
+ title,
+ description,
+ right,
+ onPress,
+ disabled
+}: {
+ icon: string;
+ iconFamily?: IconProps["iconFamily"];
+ title: string;
+ description: string;
+ right: React.ReactNode;
+ onPress?: () => void;
+ disabled?: boolean;
+}) => {
+ const { colors } = useThemeColors();
+ return (
+
+
+
+
+
+
+ {title}
+
+
+ {description}
+
+
+ {right}
+
+ );
+};
async function fetchMonographData(noteId: string) {
const monographId = db.monographs.monograph(noteId);
@@ -73,7 +130,8 @@ async function fetchMonographData(noteId: string) {
}
const PublishNoteSheet = ({
- note
+ note,
+ close
}: {
note: Note;
close?: (ctx?: string) => void;
@@ -153,7 +211,7 @@ const PublishNoteSheet = ({
if (note?.id) {
await db.monographs.publish(note.id, values.title, {
selfDestruct,
- password: isLocked ? values.password : undefined
+ password: values.password || undefined
});
await monographData.execute();
Navigation.queueRoutesForUpdate();
@@ -175,16 +233,22 @@ const PublishNoteSheet = ({
setPublishing(value);
};
- const deletePublishedNote = async () => {
+ const unpublishNote = async () => {
if (publishing) return;
setPublishLoading(true);
try {
if (note?.id) {
await db.monographs.unpublish(note.id);
- monographData.execute();
+ close?.();
+ // monographData.execute();
Navigation.queueRoutesForUpdate();
eSendEvent(eMenuItemUpdate);
setPublishLoading(false);
+ ToastManager.show({
+ message: strings.noteUnpublished(),
+ type: "success",
+ context: "global"
+ });
}
} catch (e) {
ToastManager.show({
@@ -197,6 +261,20 @@ const PublishNoteSheet = ({
setPublishLoading(false);
};
+ const confirmUnpublishNote = () => {
+ presentDialog({
+ title: strings.unpublish() + "?",
+ paragraph: strings.unpublishNoteConfirm(),
+ icon: "warning-circle",
+ iconFamily: "notesnook",
+ iconType: "error",
+ centered: true,
+ positiveText: strings.yes(),
+ positivePress: unpublishNote,
+ context: "local"
+ });
+ };
+
const monographMetadata =
monographData.result?.metadata ?? lastMonographDataResult.current;
@@ -225,17 +303,18 @@ const PublishNoteSheet = ({
style={{
width: "100%",
alignSelf: "center",
- paddingHorizontal: DefaultAppStyles.GAP,
- gap: DefaultAppStyles.GAP_VERTICAL
+ paddingHorizontal: Spacing.LEVEL_3,
+ gap: Spacing.LEVEL_3,
+ paddingTop: Spacing.LEVEL_3
}}
>
- {isPublished &&
- (monographData?.result?.monograph || monographData?.loading) ? null : (
-
- )}
+
+
{publishing || monographData.loading ? (
{isPublished && publishUrl ? (
- {
- try {
- await openLinkInBrowser(publishUrl);
- } catch (e) {
- console.error(e);
- }
- }}
+
-
- {strings.publishedAt()}:
+
+ {strings.publishedNoteLink()}
-
+ {
+ try {
+ await openLinkInBrowser(publishUrl);
+ } catch (e) {
+ console.error(e);
+ }
+ }}
+ >
{monographMetadata?.publishUrl}
- {
Clipboard.setString(publishUrl as string);
ToastManager.show({
@@ -303,208 +394,114 @@ const PublishNoteSheet = ({
context: "local"
});
}}
- color={colors.primary.accent}
- size={AppFontSize.lg}
- name="content-copy"
/>
-
- ) : null}
-
-
-
- {
- if (publishing) return;
- setIsLocked(!isLocked);
- }}
- activeOpacity={0.9}
- style={{
- flexDirection: "row",
- alignItems: "center",
- backgroundColor: colors.secondary.background,
- borderRadius: defaultBorderRadius,
- paddingHorizontal: DefaultAppStyles.GAP,
- paddingVertical: DefaultAppStyles.GAP_VERTICAL
- }}
- >
-
-
-
- {strings.monographPassHeading()}
-
- setIsLocked(!isLocked)}
- />
-
-
- {/* {strings.monographPassDesc()} */}
-
- {isLocked ? (
- <>
-
- >
- ) : null}
-
-
-
- {
- setSelfDestruct(!selfDestruct);
- }}
- activeOpacity={0.9}
- style={{
- flexDirection: "row",
- alignItems: "center",
- backgroundColor: colors.secondary.background,
- paddingVertical: DefaultAppStyles.GAP_VERTICAL,
- borderRadius: defaultBorderRadius,
- paddingHorizontal: DefaultAppStyles.GAP
- }}
- >
-
-
-
- {strings.monographSelfDestructHeading()}
-
- setSelfDestruct(!selfDestruct)}
- />
-
-
- {/* {strings.monographSelfDestructDesc()} */}
-
-
-
- {isFeatureAvailable?.isAllowed &&
- !selfDestruct &&
- monographMetadata &&
- monographMetadata?.analytics.totalViews > 0 ? (
-
-
-
- {strings.views()}
-
- {monographMetadata?.analytics.totalViews || 0}
-
-
-
) : null}
+
+
+
+
+
+
+
+
+ setSelfDestruct(!selfDestruct)}
+ right={
+
+ }
+ />
+
+ {isFeatureAvailable?.isAllowed &&
+ !selfDestruct &&
+ monographMetadata &&
+ isPublished ? (
+
+ {monographMetadata?.analytics.totalViews || 0}
+
+ }
+ />
+ ) : null}
+
+
+
+ {isPublished ? (
+
+ ) : null}
+
-
- {isPublished && (
- <>
-
- >
- )}
>
)}
{
try {
@@ -516,7 +513,14 @@ const PublishNoteSheet = ({
}
}}
>
- {strings.monographLearnMore()}
+ {strings.monographLearnMore[0]()}{" "}
+
+ {strings.monographLearnMore[1]()}
+
);
diff --git a/apps/mobile/app/components/sheets/references/index.tsx b/apps/mobile/app/components/sheets/references/index.tsx
deleted file mode 100644
index bedc25c8e..000000000
--- a/apps/mobile/app/components/sheets/references/index.tsx
+++ /dev/null
@@ -1,541 +0,0 @@
-/*
-This file is part of the Notesnook project (https://notesnook.com/)
-
-Copyright (C) 2023 Streetwriters (Private) Limited
-
-This program is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation, either version 3 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program. If not, see .
-*/
-import { LegendList } from "@legendapp/list";
-import {
- ContentBlock,
- InternalLink,
- ItemReference,
- Note,
- TextSlice,
- VirtualizedGrouping,
- createInternalLink,
- highlightInternalLinks
-} from "@notesnook/core";
-import { strings } from "@notesnook/intl";
-import { useThemeColors } from "@notesnook/theme";
-import React, { MutableRefObject, useEffect, useRef, useState } from "react";
-import { ActivityIndicator, View } from "react-native";
-import { ScrollView } from "react-native-actions-sheet";
-import { create } from "zustand";
-import { db } from "../../../common/database";
-import { useDBItem, useNoteLocked } from "../../../hooks/use-db-item";
-import { eSendEvent, presentSheet } from "../../../services/event-manager";
-import { useRelationStore } from "../../../stores/use-relation-store";
-import { eOnLoadNote } from "../../../utils/events";
-import { fluidTabsRef } from "../../../utils/global-refs";
-import { AppFontSize, defaultBorderRadius } from "../../../utils/size";
-import { DefaultAppStyles } from "../../../utils/styles";
-import SheetProvider from "../../sheet-provider";
-import { Button } from "../../ui/button";
-import { IconButton } from "../../ui/icon-button";
-import { Pressable } from "../../ui/pressable";
-import Paragraph from "../../ui/typography/paragraph";
-
-export const useExpandedStore = create<{
- expanded: {
- [id: string]: boolean;
- };
- setExpanded: (id: string) => void;
-}>((set, get) => ({
- expanded: {},
- setExpanded(id: string) {
- set({
- expanded: {
- ...get().expanded,
- [id]: !get().expanded[id]
- }
- });
- }
-}));
-
-const ListBlockItem = ({
- item,
- onSelectBlock
-}: {
- item: ContentBlock;
- onSelectBlock: () => void;
-}) => {
- const { colors } = useThemeColors();
- return (
- {
- onSelectBlock();
- }}
- type={"transparent"}
- style={{
- flexDirection: "row",
- width: "100%",
- paddingLeft: 35,
- justifyContent: "flex-start",
- minHeight: 45,
- paddingHorizontal: DefaultAppStyles.GAP
- }}
- >
-
-
- {item?.content.length > 200
- ? item?.content.slice(0, 200) + "..."
- : !item.content || item.content.trim() === ""
- ? strings.linkNoteEmptyBlock()
- : item.content}
-
-
-
-
- {item.type.toUpperCase()}
-
-
-
-
- );
-};
-
-const ListNoteInternalLink = ({
- link,
- onSelect
-}: {
- link: {
- blockId: string;
- highlightedText: [TextSlice, TextSlice, TextSlice][];
- };
- onSelect: () => void;
-}) => {
- const { colors } = useThemeColors();
- return (
- {
- onSelect();
- }}
- type={"transparent"}
- style={{
- flexDirection: "row",
- width: "100%",
- paddingLeft: 35,
- justifyContent: "flex-start",
- minHeight: 45
- }}
- >
-
- {link.highlightedText.map((text) => (
-
- {text.map((slice) =>
- !slice.highlighted ? (
- slice.text
- ) : (
-
- {slice.text}
-
- )
- )}
-
- ))}
-
-
- );
-};
-
-const ListNoteItem = ({
- id,
- items,
- onSelect,
- reference,
- internalLinks,
- listType
-}: {
- id: number;
- items: VirtualizedGrouping | undefined;
- onSelect: (item: Note, blockId?: string) => void;
- reference: Note;
- internalLinks: MutableRefObject;
- listType: "linkedNotes" | "referencedIn";
-}) => {
- const { colors } = useThemeColors();
- const [item] = useDBItem(id, "note", items);
- const expanded = useExpandedStore((state) =>
- !item ? false : state.expanded[item.id]
- );
- const locked = useNoteLocked(item?.id);
- const [linkedBlocks, setLinkedBlocks] = useState([]);
- const [noteInternalLinks, setNoteInternalLinks] = useState<
- {
- blockId: string;
- highlightedText: [TextSlice, TextSlice, TextSlice][];
- }[]
- >([]);
-
- const [loading, setLoading] = useState(false);
-
- useEffect(() => {
- if (item?.id && expanded) {
- (async () => {
- if (listType === "linkedNotes") {
- if (linkedBlocks.length) return;
- setLoading(true);
- if (!internalLinks.current) {
- internalLinks.current = await db.notes.internalLinks(reference.id);
- }
- const noteLinks = internalLinks.current.filter(
- (link) =>
- link.id === item.id &&
- link.type === "note" &&
- link.params?.blockId
- );
-
- if (noteLinks.length) {
- const blocks = await db.notes.contentBlocks(item.id);
-
- setLinkedBlocks(
- blocks.filter((block) =>
- noteLinks.find(
- (link) =>
- link.type === "note" && block.id === link.params?.blockId
- )
- )
- );
- }
- } else {
- if (noteInternalLinks.length) return;
- setLoading(true);
-
- const blocks = await db.notes.contentBlocksWithLinks(item.id);
- setNoteInternalLinks(
- blocks
- .filter((block) =>
- block.content.includes(createInternalLink("note", reference.id))
- )
- .map((block) => {
- return {
- blockId: block?.id as string,
- highlightedText: highlightInternalLinks(
- block as ContentBlock,
- reference.id
- )
- };
- })
- );
- }
-
- setLoading(false);
- })();
- }
- }, [
- item?.id,
- expanded,
- linkedBlocks.length,
- internalLinks,
- reference.id,
- listType,
- noteInternalLinks.length
- ]);
-
- const renderBlock = React.useCallback(
- (block: ContentBlock) => (
- {
- if (!item) return;
- onSelect(item, block.id);
- }}
- />
- ),
- [item, onSelect]
- );
-
- const renderInternalLink = React.useCallback(
- (link: {
- blockId: string;
- highlightedText: [TextSlice, TextSlice, TextSlice][];
- }) => (
- {
- if (!item) return;
- onSelect(item, link.blockId);
- }}
- />
- ),
- [item, onSelect]
- );
-
- return (
-
- {
- if (!item) return;
- onSelect(item as Note);
- }}
- style={{
- flexDirection: "row",
- alignItems: "center",
- justifyContent: "flex-start",
- width: "100%",
- height: 45
- }}
- >
- {
- if (!item?.id) return;
- useExpandedStore.getState().setExpanded(item?.id);
- }}
- top={0}
- left={0}
- bottom={0}
- right={0}
- style={{
- width: 35,
- height: 35
- }}
- name={expanded ? "chevron-down" : "chevron-right"}
- />
- {item?.title}
-
-
- {expanded && !locked ? (
-
- {loading ? (
-
- ) : (
- <>
- {listType === "linkedNotes" ? (
- <>
- {linkedBlocks.length === 0 ? (
-
- {strings.noBlocksLinked()}
-
- ) : (
- linkedBlocks.map(renderBlock)
- )}
- >
- ) : (
- <>
- {noteInternalLinks.length === 0 ? (
-
- {strings.noReferencesFound()}
-
- ) : (
- noteInternalLinks.map(renderInternalLink)
- )}
- >
- )}
- >
- )}
-
- ) : null}
-
- );
-};
-
-type ReferencesListProps = {
- item: { id: string; type: string };
- close?: (ctx?: any) => void;
-};
-
-export const ReferencesList = ({ item, close }: ReferencesListProps) => {
- const [tab, setTab] = useState(0);
- const updater = useRelationStore((state) => state.updater);
- const { colors } = useThemeColors();
- const [items, setItems] = useState>();
- const hasNoRelations = !items || items?.placeholders?.length === 0;
- const internalLinks = useRef([]);
-
- useEffect(() => {
- db.relations?.[tab === 0 ? "from" : "to"]?.(
- { id: item?.id, type: item?.type } as ItemReference,
- "note"
- )
- .selector.sorted({
- sortBy: "dateEdited",
- sortDirection: "desc"
- })
- .then((items) => {
- setItems(items);
- });
- }, [item?.id, item?.type, tab]);
-
- const renderNote = React.useCallback(
- ({ index }: any) => (
- {
- eSendEvent(eOnLoadNote, {
- item: note,
- blockId: blockId
- });
- fluidTabsRef.current?.goToPage("editor");
- close?.();
- }}
- reference={item as Note}
- internalLinks={internalLinks}
- listType={tab === 0 ? "linkedNotes" : "referencedIn"}
- />
- ),
- [items, item, tab, close]
- );
-
- return (
-
-
-
-
-
-
- {hasNoRelations ? (
-
-
- {tab === 1 ? strings.notReferenced() : strings.notLinked()}
-
-
- ) : (
-
- }
- bounces={false}
- data={items.placeholders || []}
- extraData={items}
- renderItem={renderNote}
- />
-
- )}
-
- );
-};
-
-ReferencesList.present = ({
- reference
-}: {
- reference: { id: string; type: string };
-}) => {
- presentSheet({
- component: (ref, close, update) => (
-
- ),
- onClose: () => {
- useExpandedStore.setState({
- expanded: {}
- });
- }
- });
-};
diff --git a/apps/mobile/app/components/ui/input/form-input.tsx b/apps/mobile/app/components/ui/input/form-input.tsx
index f5738344b..e768b1a73 100644
--- a/apps/mobile/app/components/ui/input/form-input.tsx
+++ b/apps/mobile/app/components/ui/input/form-input.tsx
@@ -303,10 +303,6 @@ export function FormInput({
justifyContent: "space-between",
alignItems: "center",
paddingHorizontal: Spacing.LEVEL_2,
- paddingRight:
- buttons || button || secureTextEntry || error
- ? Spacing.LEVEL_3
- : Spacing.LEVEL_3,
...containerStyle
};
@@ -317,6 +313,7 @@ export function FormInput({
onPress && loading ? colors.primary.accent : colors.primary.paragraph,
paddingTop: Spacing.LEVEL_3,
paddingBottom: Spacing.LEVEL_3,
+ lineHeight: fontSize + fontSize * 0.3,
flexGrow: 1,
flexShrink: 1,
fontFamily: "Inter-Regular",
@@ -388,7 +385,7 @@ export function FormInput({
{
@@ -396,7 +393,6 @@ export function FormInput({
setSecureEntry(!secureEntry);
}}
style={{
- width: 25,
marginLeft: 5
}}
color={colors.primary.icon}
diff --git a/apps/mobile/app/components/ui/pressable/use-button.ts b/apps/mobile/app/components/ui/pressable/use-button.ts
index 164ca79c4..60cecf4c5 100644
--- a/apps/mobile/app/components/ui/pressable/use-button.ts
+++ b/apps/mobile/app/components/ui/pressable/use-button.ts
@@ -35,6 +35,7 @@ export type ButtonTypes =
| "white"
| "error"
| "errorShade"
+ | "error-outline"
| "warn"
| "selected"
| "accent-outline"
@@ -233,6 +234,14 @@ const buttonTypes = (
isDark
)
},
+ "error-outline": {
+ primary: "transparent",
+ text: colors.error.paragraph,
+ selected: "transparent",
+ borderWidth: 0.8,
+ borderColor: colors.error.border,
+ borderSelectedColor: getColorLinearShade(colors.error.border, 0.07, isDark)
+ },
errorShade: {
primary: "transparent",
text: colors.error.buttonForeground,
diff --git a/apps/mobile/app/hooks/use-actions.tsx b/apps/mobile/app/hooks/use-actions.tsx
index 5e8dd0c6b..6a67889fa 100644
--- a/apps/mobile/app/hooks/use-actions.tsx
+++ b/apps/mobile/app/hooks/use-actions.tsx
@@ -36,15 +36,12 @@ import React, { useEffect, useRef, useState } from "react";
import { InteractionManager, Platform } from "react-native";
import Share from "react-native-share";
import { DatabaseLogger, db } from "../common/database";
-import { AttachmentDialog } from "../components/attachments";
import { AuthMode } from "../components/auth/common";
import { presentDialog } from "../components/dialog/functions";
-import NoteHistory from "../components/note-history";
import { AddNotebookSheet } from "../components/sheets/add-notebook";
import ExportNotesSheet from "../components/sheets/export-notes";
import PaywallSheet from "../components/sheets/paywall";
import PublishNoteSheet from "../components/sheets/publish-note";
-import { ReferencesList } from "../components/sheets/references";
import { useSideBarDraggingStore } from "../components/side-menu/dragging-store";
import { ButtonProps } from "../components/ui/button";
import AddReminder from "../screens/add-reminder";
@@ -54,7 +51,6 @@ import {
eSendEvent,
eSubscribeEvent,
openVault,
- presentSheet,
ToastManager,
VaultRequestType
} from "../services/event-manager";
@@ -756,13 +752,11 @@ export const useActions = ({
if (item.type === "note") {
async function openHistory() {
- presentSheet({
- component: (ref) =>
- });
+ Navigation.navigate("NoteHistory", { note: item as Note });
}
async function showAttachments() {
- AttachmentDialog.present(item as Note);
+ Navigation.navigate("Attachments", { note: item as Note });
}
async function exportNote() {
@@ -1080,6 +1074,8 @@ export const useActions = ({
referenceType: "reminder",
relationType: "from",
title: strings.dataTypesPluralCamelCase.reminder(),
+ listEmptyTitle: strings.noRemindersFound(),
+ listEmptyParagraph: strings.reminderPlaceholder(),
onAdd: async () => {
if (features && !features.activeReminders.isAllowed) {
ToastManager.show({
@@ -1152,7 +1148,7 @@ export const useActions = ({
{
id: "publish",
title: isPublished ? strings.published() : strings.publish(),
- icon: "cloud-upload-outline",
+ icon: "cloud-upload",
checked: isPublished,
onPress: publishNote
},
@@ -1167,7 +1163,7 @@ export const useActions = ({
{
id: "notebooks",
title: strings.addToNotebook(),
- icon: "book-outline",
+ icon: "bookmark",
onPress: addTo
},
// {
@@ -1181,7 +1177,7 @@ export const useActions = ({
title: strings.references(),
icon: "link-alt",
onPress: () => {
- ReferencesList.present({
+ Navigation.navigate("References", {
reference: item as ItemReference
});
}
diff --git a/apps/mobile/app/navigation/navigation-stack.tsx b/apps/mobile/app/navigation/navigation-stack.tsx
index 570b7e1c8..bc43331d0 100644
--- a/apps/mobile/app/navigation/navigation-stack.tsx
+++ b/apps/mobile/app/navigation/navigation-stack.tsx
@@ -296,6 +296,10 @@ let AddReminder: any = null;
let RelationsList: any = null;
let PayWall: any = null;
let Wrapped: any = null;
+let Attachments: any = null;
+let References: any = null;
+let NoteHistory: any = null;
+let NotePreview: any = null;
export const RootNavigation = () => {
const introCompleted = useSettingStore(
(state) => state.settings.introCompleted
@@ -424,6 +428,41 @@ export const RootNavigation = () => {
return Wrapped;
}}
/>
+
+ {
+ Attachments =
+ Attachments || require("../screens/attachments").default;
+ return Attachments;
+ }}
+ />
+
+ {
+ References = References || require("../screens/references").default;
+ return References;
+ }}
+ />
+
+ {
+ NoteHistory =
+ NoteHistory || require("../screens/note-history").default;
+ return NoteHistory;
+ }}
+ />
+
+ {
+ NotePreview =
+ NotePreview || require("../screens/note-preview").default;
+ return NotePreview;
+ }}
+ />
);
diff --git a/apps/mobile/app/components/attachments/index.tsx b/apps/mobile/app/screens/attachments/index.tsx
similarity index 63%
rename from apps/mobile/app/components/attachments/index.tsx
rename to apps/mobile/app/screens/attachments/index.tsx
index cd4da9d02..3e14991c5 100644
--- a/apps/mobile/app/components/attachments/index.tsx
+++ b/apps/mobile/app/screens/attachments/index.tsx
@@ -27,32 +27,32 @@ import {
import { strings } from "@notesnook/intl";
import { useThemeColors } from "@notesnook/theme";
import React, { useEffect, useRef, useState } from "react";
-import { ActivityIndicator, FlatList, View } from "react-native";
-import { ScrollView } from "react-native-actions-sheet";
-import Icon from "react-native-vector-icons/MaterialCommunityIcons";
+import { ActivityIndicator, FlatList, ScrollView, View } from "react-native";
+import { SafeAreaView } from "react-native-safe-area-context";
import create from "zustand";
import { db } from "../../common/database";
+import { FontSizes } from "../../common/design/font";
+import { Radius, Spacing } from "../../common/design/spacing";
import filesystem from "../../common/filesystem";
import { downloadAttachments } from "../../common/filesystem/download-attachment";
-import { AttachmentGroupProgress } from "../../screens/settings/components/attachment-group-progress";
-import { presentSheet, ToastManager } from "../../services/event-manager";
+import { AttachmentItem } from "../../components/attachments/attachment-item";
+import { presentDialog } from "../../components/dialog/functions";
+import { Header } from "../../components/header";
+import AppIcon from "../../components/ui/AppIcon";
+import { Button } from "../../components/ui/button";
+import { IconButton } from "../../components/ui/icon-button";
+import Input from "../../components/ui/input";
+import { Pressable } from "../../components/ui/pressable";
+import LineSeparator from "../../components/ui/seperator/line-separator";
+import Heading from "../../components/ui/typography/heading";
+import Paragraph from "../../components/ui/typography/paragraph";
+import { ToastManager } from "../../services/event-manager";
+import { NavigationProps } from "../../services/navigation";
import { useAttachmentStore } from "../../stores/use-attachment-store";
-import { AppFontSize } from "../../utils/size";
-import { DefaultAppStyles } from "../../utils/styles";
-import { Dialog } from "../dialog";
-import { presentDialog } from "../dialog/functions";
-import { Header } from "../header";
-import SheetProvider from "../sheet-provider";
-import { Button } from "../ui/button";
-import { IconButton } from "../ui/icon-button";
-import Input from "../ui/input";
-import Seperator from "../ui/seperator";
-import Heading from "../ui/typography/heading";
-import Paragraph from "../ui/typography/paragraph";
-import { AttachmentItem } from "./attachment-item";
+import { AttachmentGroupProgress } from "../settings/components/attachment-group-progress";
const DEFAULT_SORTING: SortOptions = {
- sortBy: "dateEdited",
+ sortBy: "dateModified",
sortDirection: "desc"
};
@@ -124,17 +124,13 @@ const attachmentTypes = [
}
];
-export const AttachmentDialog = ({
- note,
- isSheet
-}: {
- note?: Note;
- isSheet: boolean;
-}) => {
+const Attachments = (props: NavigationProps<"Attachments">) => {
+ const note = props.route.params?.note;
const { colors } = useThemeColors();
const [attachments, setAttachments] =
useState>();
const attachmentSearchValue = useRef(undefined);
+ const [searchVisible, setSearchVisible] = useState(false);
const [loading, setLoading] = useState(true);
const searchTimer = useRef(undefined);
const [currentFilter, setCurrentFilter] = useState("all");
@@ -154,24 +150,16 @@ export const AttachmentDialog = ({
if (note) {
db.attachments
.ofNote(note.id, "all")
- .sorted({
- ...DEFAULT_SORTING,
- sortBy: "dateModified"
- })
+ .sorted(DEFAULT_SORTING)
.then((attachments) => {
setLoading(false);
setAttachments(attachments);
});
} else {
- db.attachments.all
- .sorted({
- ...DEFAULT_SORTING,
- sortBy: "dateModified"
- })
- .then((attachments) => {
- setAttachments(attachments);
- setLoading(false);
- });
+ db.attachments.all.sorted(DEFAULT_SORTING).then((attachments) => {
+ setAttachments(attachments);
+ setLoading(false);
+ });
}
}, [note]);
@@ -206,7 +194,7 @@ export const AttachmentDialog = ({
errorOnly={currentFilter === "errors"}
attachments={attachments}
id={index}
- context={!isSheet ? "global" : "attachments-list"}
+ context="global"
/>
);
@@ -237,7 +225,7 @@ export const AttachmentDialog = ({
ToastManager.show({
message: strings.attachmentRecheckCancelled(),
type: "info",
- context: isSheet ? "local" : "global"
+ context: "global"
});
return;
}
@@ -283,7 +271,7 @@ export const AttachmentDialog = ({
: db.attachments.images;
break;
case "video":
- items = items = note
+ items = note
? db.attachments.ofNote(note.id, "videos")
: db.attachments.videos;
break;
@@ -301,198 +289,99 @@ export const AttachmentDialog = ({
items = db.attachments.orphaned;
break;
case "errors":
- items = items = note
+ items = note
? db.attachments.ofNote(note.id, "all")
: db.attachments.all;
}
- return await items.sorted({
- ...DEFAULT_SORTING,
- sortBy: "dateModified"
+ return await items.sorted(DEFAULT_SORTING);
+ };
+
+ const downloadAll = () => {
+ if (!attachments) return;
+ presentDialog({
+ title: strings.doActions.download.attachment(
+ attachments.placeholders.length
+ ),
+ positiveText: strings.network.download(),
+ positivePress: async () => {
+ downloadAttachments(await attachments.ids());
+ },
+ negativeText: strings.cancel()
});
};
- db.attachments.orphaned.items().then((r) => {
- console.log(r);
- });
+ const currentType = attachmentTypes.find(
+ (item) => item.filterBy === currentFilter
+ );
+ const sectionTitle =
+ currentFilter === "all"
+ ? strings.allAttachments()
+ : currentType?.title || strings.allAttachments();
return (
- <>
- {isSheet ? (
- <>
-
-
- >
- ) : null}
- {!isSheet ? (
-
- ) : (
-
- {strings.dataTypesPluralCamelCase.attachment()}
-
-
-
-
- {
- if (!attachments) return;
- presentDialog({
- title: strings.doActions.download.attachment(
- attachments.placeholders.length
- ),
- positiveText: strings.network.download(),
- positivePress: async () => {
- downloadAttachments(await attachments.ids());
- },
- negativeText: strings.cancel()
- });
- }}
- size={AppFontSize.lg}
- />
-
-
- )}
+
+
-
{
onChangeText(attachmentSearchValue.current as string);
}}
+ button={{
+ icon: "search",
+ iconFamily: "notesnook",
+ color: colors.primary.icon,
+ size: 16,
+ onPress: () => {}
+ }}
/>
- {rechecker.shown ? (
-
-
- {rechecker.isWorking ? (
-
- ) : (
-
- )}
-
-
-
- {rechecker.isWorking
- ? note
- ? strings.checkingNoteAttachments()
- : strings.checkingAllAttachments()
- : strings.attachmentRecheckComplete()}
-
-
- {`${
- rechecker.isWorking ? `${strings.pleaseWait()} ` : ""
- }${strings.passed()}: ${
- rechecker.passed
- }, ${strings.failed()}: ${rechecker.failed}`}
-
-
-
-
- {
- useRechecker.getState().setProgress(note?.id || "all", {
- ...useRechecker.getState().progress[note?.id || "all"],
- shown: false,
- isWorking: false
- });
- }}
- />
-
- ) : null}
+
{attachmentTypes.map((item) =>
item.filterBy === "orphaned" && note ? null : (
- {
+ onPress={() => {
const filterBy = item.filterBy;
setCurrentFilter(filterBy);
setLoading(true);
@@ -506,52 +395,168 @@ export const AttachmentDialog = ({
/* empty */
});
}}
- />
+ style={{
+ borderRadius: Radius.XXL,
+ borderWidth: currentFilter === item.filterBy ? 0 : 1,
+ borderColor: colors.primary.border,
+ paddingHorizontal: Spacing.LEVEL_3,
+ paddingVertical: Spacing.LEVEL_1,
+ width: "auto"
+ }}
+ >
+
+ {item.title}
+
+
)
)}
+ {rechecker.shown ? (
+
+
+
+
+
+
+
+
+ {rechecker.isWorking
+ ? note
+ ? strings.checkingNoteAttachments()
+ : strings.checkingAllAttachments()
+ : strings.attachmentRecheckComplete()}
+
+
+ {`${
+ rechecker.isWorking ? `${strings.pleaseWait()} ` : ""
+ }${strings.passed()}: ${
+ rechecker.passed
+ }, ${strings.failed()}: ${rechecker.failed}`}
+
+
+
+
+ {
+ useRechecker.getState().setProgress(note?.id || "all", {
+ ...useRechecker.getState().progress[note?.id || "all"],
+ shown: false,
+ isWorking: false
+ });
+ }}
+ />
+
+ ) : null}
+
+
+ {sectionTitle}
+
+
+
+
}
+ style={{ flex: 1 }}
keyboardDismissMode="none"
keyboardShouldPersistTaps="always"
ListEmptyComponent={
{loading ? (
) : (
<>
-
- {strings.noAttachments()}
+
+ {strings.noAttachments()}
+
>
)}
}
ListHeaderComponent={}
- ListFooterComponent={
-
- }
+ ListFooterComponent={}
data={loading ? [] : attachments?.placeholders || []}
extraData={attachments}
renderItem={renderItem}
/>
- >
+
);
};
@@ -572,7 +577,7 @@ const AllProgress = ({ note }: { note?: Note }) => {
return (
@@ -587,9 +592,4 @@ const AllProgress = ({ note }: { note?: Note }) => {
);
};
-AttachmentDialog.present = (note?: Note) => {
- presentSheet({
- component: () => ,
- keyboardHandlerDisabled: true
- });
-};
+export default Attachments;
diff --git a/apps/mobile/app/screens/note-history/index.tsx b/apps/mobile/app/screens/note-history/index.tsx
new file mode 100644
index 000000000..1ff33056d
--- /dev/null
+++ b/apps/mobile/app/screens/note-history/index.tsx
@@ -0,0 +1,247 @@
+/*
+This file is part of the Notesnook project (https://notesnook.com/)
+
+Copyright (C) 2023 Streetwriters (Private) Limited
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see .
+*/
+
+import { LegendList } from "@legendapp/list";
+import { getFormattedDate, getTimeAgo } from "@notesnook/common";
+import { HistorySession, Note, VirtualizedGrouping } from "@notesnook/core";
+import { strings } from "@notesnook/intl";
+import { useThemeColors } from "@notesnook/theme";
+import React, { useCallback, useEffect, useState } from "react";
+import { ActivityIndicator, Text, View } from "react-native";
+import { SafeAreaView } from "react-native-safe-area-context";
+import { Radius, Spacing } from "../../common/design/spacing";
+import { db } from "../../common/database";
+import { Header } from "../../components/header";
+import AppIcon from "../../components/ui/AppIcon";
+import { Pressable } from "../../components/ui/pressable";
+import Paragraph from "../../components/ui/typography/paragraph";
+import { useDBItem } from "../../hooks/use-db-item";
+import Navigation, { NavigationProps } from "../../services/navigation";
+import { openLinkInBrowser } from "../../utils/functions";
+
+const getDate = (start: number, end: number) => {
+ const _start_date = getFormattedDate(start, "date");
+ const _end_date = getFormattedDate(end + 60000, "date");
+
+ const _start_time = getFormattedDate(start, "time");
+ const _end_time = getFormattedDate(end + 60000, "time");
+
+ return `${_start_date} ${_start_time} - ${
+ _end_date === _start_date ? " " : _end_date + " "
+ }${_end_time}`;
+};
+
+const HistoryItem = ({
+ index,
+ items,
+ note
+}: {
+ index: number;
+ items?: VirtualizedGrouping;
+ note: Note;
+}) => {
+ const [item] = useDBItem(index, "noteHistory", items);
+ const { colors } = useThemeColors();
+ const selected = index === 0;
+
+ const preview = useCallback(
+ (item: HistorySession) => {
+ Navigation.navigate("NotePreview", {
+ note,
+ session: {
+ ...item,
+ session: getDate(item.dateCreated, item.dateModified)
+ }
+ });
+ },
+ [note]
+ );
+
+ return (
+ {
+ if (!item) return;
+ preview(item);
+ }}
+ customSelectedColor={colors.primary.shade}
+ style={{
+ flexDirection: "row",
+ alignItems: "center",
+ gap: Spacing.LEVEL_1,
+ padding: Spacing.LEVEL_2,
+ borderRadius: Radius.XS,
+ borderWidth: 1,
+ borderColor: colors.secondary.border,
+ marginBottom: Spacing.LEVEL_2
+ }}
+ >
+ {!item ? null : (
+ <>
+
+
+ {getDate(item.dateCreated, item.dateModified)}
+
+
+ {getTimeAgo(item.dateModified)}
+
+
+ >
+ )}
+
+ );
+};
+
+const NoteHistory = (props: NavigationProps<"NoteHistory">) => {
+ const note = props.route.params.note;
+ const { colors } = useThemeColors();
+ const [history, setHistory] = useState>();
+ const [loading, setLoading] = useState(true);
+
+ useEffect(() => {
+ db.noteHistory
+ .get(note.id)
+ .sorted({
+ sortBy: "dateModified",
+ sortDirection: "desc"
+ })
+ .then((result) => {
+ setHistory(result);
+ setLoading(false);
+ })
+ .catch(() => {
+ setLoading(false);
+ });
+ }, [note.id]);
+
+ const renderItem = useCallback(
+ ({ index }: { index: number }) => (
+
+ ),
+ [history, note]
+ );
+
+ const hasHistory = !!history?.placeholders.length;
+
+ return (
+
+
+
+
+ {hasHistory ? (
+
+ {strings.recentHistory()}
+
+ ) : null}
+
+
+
+ {loading ? (
+
+ ) : (
+ <>
+
+
+ {strings.noteHistoryPlaceholder()}
+
+ >
+ )}
+
+ }
+ renderItem={renderItem}
+ />
+
+
+
+ {strings.noteHistoryNotice[0]()}{" "}
+ {
+ openLinkInBrowser(
+ "https://help.notesnook.com/note-version-history"
+ );
+ }}
+ style={{
+ color: colors.primary.accent,
+ textDecorationLine: "underline"
+ }}
+ >
+ {strings.noteHistoryNotice[1]()}
+
+
+
+
+ );
+};
+
+export default NoteHistory;
diff --git a/apps/mobile/app/screens/note-preview/index.tsx b/apps/mobile/app/screens/note-preview/index.tsx
new file mode 100644
index 000000000..61aaa61c3
--- /dev/null
+++ b/apps/mobile/app/screens/note-preview/index.tsx
@@ -0,0 +1,298 @@
+/*
+This file is part of the Notesnook project (https://notesnook.com/)
+
+Copyright (C) 2023 Streetwriters (Private) Limited
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see .
+*/
+
+import { getFormattedDate, getTimeAgo } from "@notesnook/common";
+import { NoteContent, isEncryptedContent } from "@notesnook/core";
+import { strings } from "@notesnook/intl";
+import { useThemeColors } from "@notesnook/theme";
+import { diff } from "diffblazer";
+import React, { useEffect, useState } from "react";
+import { View } from "react-native";
+import { SafeAreaView } from "react-native-safe-area-context";
+import { Radius, Spacing } from "../../common/design/spacing";
+import { db } from "../../common/database";
+import { Dialog } from "../../components/dialog";
+import { presentDialog } from "../../components/dialog/functions";
+import { Header } from "../../components/header";
+import AppIcon from "../../components/ui/AppIcon";
+import { Button } from "../../components/ui/button";
+import Paragraph from "../../components/ui/typography/paragraph";
+import { ToastManager, eSendEvent } from "../../services/event-manager";
+import Navigation, { NavigationProps } from "../../services/navigation";
+import { useSelectionStore } from "../../stores/use-selection-store";
+import { useTrashStore } from "../../stores/use-trash-store";
+import { eCloseSheet, eOnLoadNote } from "../../utils/events";
+import { ReadonlyEditor } from "../editor/readonly-editor";
+import { useTabStore } from "../editor/tiptap/use-tab-store";
+import { editorController } from "../editor/tiptap/utils";
+
+const NotePreview = (props: NavigationProps<"NotePreview">) => {
+ const { note, session } = props.route.params;
+ const { colors } = useThemeColors();
+ const [locked, setLocked] = useState(false);
+ const [content, setContent] = useState<
+ Partial & { title: string }> | undefined
+ >();
+ const [loading, setLoading] = useState(true);
+
+ useEffect(() => {
+ db.vaults.itemExists(note).then((locked) => setLocked(locked));
+ }, [note]);
+
+ useEffect(() => {
+ (async () => {
+ try {
+ if (session) {
+ setContent(await db.noteHistory.content(session.id));
+ } else if (note.contentId) {
+ setContent(await db.content.get(note.contentId));
+ }
+ } finally {
+ setLoading(false);
+ }
+ })();
+ }, [note.contentId, session]);
+
+ async function restore() {
+ if (note && note.type === "trash") {
+ await db.trash.restore(note.id);
+ Navigation.queueRoutesForUpdate();
+ useSelectionStore.getState().setSelectionMode();
+ ToastManager.show({
+ heading: strings.noteRestored(),
+ type: "success"
+ });
+ Navigation.goBack();
+ return;
+ }
+ if (session) {
+ await db.noteHistory.restore(session.id);
+ if (useTabStore.getState().hasTabForNote(session?.noteId)) {
+ const note = editorController.current.note.current[session?.noteId];
+ if (note) {
+ eSendEvent(eOnLoadNote, {
+ item: note,
+ forced: true
+ });
+ }
+ }
+ eSendEvent(eCloseSheet, "note_history");
+ Navigation.queueRoutesForUpdate();
+
+ ToastManager.show({
+ heading: strings.noteRestoredFromHistory(),
+ type: "success"
+ });
+ Navigation.goBack();
+ }
+ }
+
+ const deleteNote = async () => {
+ presentDialog({
+ title: strings.deleteNote(),
+ paragraph: strings.deleteNoteConfirmation(),
+ positiveText: strings.delete(),
+ negativeText: strings.cancel(),
+ context: "local",
+ positivePress: async () => {
+ if (note) {
+ await db.trash.delete(note.id);
+ useTrashStore.getState().refresh();
+ useSelectionStore.getState().setSelectionMode();
+ ToastManager.show({
+ heading: strings.noteDeleted(),
+ type: "success",
+ context: "local"
+ });
+ Navigation.goBack();
+ }
+ },
+ positiveType: "error"
+ });
+ };
+
+ const canPreview = !session?.locked && !locked && !!content?.data;
+
+ return (
+
+
+
+
+
+ {session ? (
+
+
+
+
+ {getFormattedDate(session.dateCreated, "date")}
+
+
+ {`${getFormattedDate(
+ session.dateCreated,
+ "time"
+ )} - ${getFormattedDate(session.dateModified + 60000, "time")}`}
+
+
+
+
+ {getTimeAgo(session.dateModified)}
+
+
+
+ ) : null}
+
+
+ {strings.noteContent()}
+
+
+
+ {canPreview ? (
+ {
+ try {
+ if (content?.data) {
+ const currentContent = note?.contentId
+ ? await db.content.get(note.contentId)
+ : undefined;
+
+ if (
+ currentContent?.data &&
+ !isEncryptedContent(currentContent)
+ ) {
+ loadContent({
+ data: diff(
+ currentContent?.data || "",
+ content.data as string
+ ),
+ id: session?.noteId || note.id
+ });
+ }
+ }
+ } catch (e) {
+ ToastManager.error(
+ e as Error,
+ "Failed to load history preview",
+ "local"
+ );
+ }
+ }}
+ />
+ ) : (
+
+
+ {loading
+ ? ""
+ : !content?.data
+ ? strings.noContent()
+ : strings.encryptedNoteHistoryNotice()}
+
+
+ )}
+
+
+
+
+
+
+
+ {strings.deletedVersionsCannotBeRecovered()}
+
+
+
+ );
+};
+
+export default NotePreview;
diff --git a/apps/mobile/app/screens/references/index.tsx b/apps/mobile/app/screens/references/index.tsx
new file mode 100644
index 000000000..aff09d1b8
--- /dev/null
+++ b/apps/mobile/app/screens/references/index.tsx
@@ -0,0 +1,426 @@
+/*
+This file is part of the Notesnook project (https://notesnook.com/)
+
+Copyright (C) 2023 Streetwriters (Private) Limited
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see .
+*/
+import { LegendList } from "@legendapp/list";
+import {
+ ItemReference,
+ Note,
+ TextSlice,
+ createInternalLink,
+ highlightInternalLinks
+} from "@notesnook/core";
+import { strings } from "@notesnook/intl";
+import { useThemeColors } from "@notesnook/theme";
+import React, { useCallback, useEffect, useRef, useState } from "react";
+import { View } from "react-native";
+import { Radius, Spacing } from "../../common/design/spacing";
+import { db } from "../../common/database";
+import { Header } from "../../components/header";
+import AppIcon from "../../components/ui/AppIcon";
+import { Pressable } from "../../components/ui/pressable";
+import { TimeSince } from "../../components/ui/time-since";
+import Heading from "../../components/ui/typography/heading";
+import Paragraph from "../../components/ui/typography/paragraph";
+import { eSendEvent } from "../../services/event-manager";
+import Navigation, { NavigationProps } from "../../services/navigation";
+import { useRelationStore } from "../../stores/use-relation-store";
+import { getElevationStyle } from "../../utils/elevation";
+import { eOnLoadNote } from "../../utils/events";
+import { fluidTabsRef } from "../../utils/global-refs";
+import { AppFontSize } from "../../utils/size";
+import { SafeAreaView } from "react-native-safe-area-context";
+import CirclesBackground from "../../components/ui/circles-background";
+import LineSeparator from "../../components/ui/seperator/line-separator";
+import Input from "../../components/ui/input";
+
+type ListType = "linkedNotes" | "referencedIn";
+type ReferenceItem = {
+ note: Note;
+ blockId?: string;
+ highlightedText?: [TextSlice, TextSlice, TextSlice][];
+ searchText: string;
+};
+
+const ReferenceNoteCard = ({
+ item: { note, blockId, highlightedText },
+ listType,
+ onSelect
+}: {
+ item: ReferenceItem;
+ listType: ListType;
+ onSelect: (item: Note, blockId?: string) => void;
+}) => {
+ const { colors } = useThemeColors();
+
+ return (
+
+ onSelect(note, listType === "referencedIn" ? blockId : undefined)
+ }
+ style={{
+ alignItems: "flex-start",
+ borderWidth: 1,
+ borderColor: colors.primary.border,
+ borderRadius: Radius.S,
+ padding: Spacing.LEVEL_3,
+ gap: Spacing.LEVEL_2,
+ marginBottom: Spacing.LEVEL_2
+ }}
+ >
+ {listType === "linkedNotes" ? (
+
+
+
+ {strings.linked()}
+
+
+ ) : null}
+
+
+ {note.title}
+
+
+ {listType === "referencedIn" && highlightedText ? (
+
+ {highlightedText[0]?.map((slice, index) =>
+ slice.highlighted ? (
+
+ {slice.text}
+
+ ) : (
+ slice.text
+ )
+ )}
+
+ ) : null}
+
+
+
+ {listType === "referencedIn" ? (
+ onSelect(note, blockId)}
+ style={{
+ flexDirection: "row",
+ alignItems: "center",
+ alignSelf: "flex-start",
+ gap: Spacing.LEVEL_1,
+ borderWidth: 1,
+ borderColor: colors.primary.border,
+ borderRadius: Radius.S,
+ paddingHorizontal: Spacing.LEVEL_2,
+ paddingVertical: Spacing.LEVEL_1,
+ flexShrink: 1,
+ width: "auto"
+ }}
+ >
+
+ {strings.jumpToReference()}
+
+
+
+ ) : null}
+
+ );
+};
+
+const References = (props: NavigationProps<"References">) => {
+ const reference = props.route.params.reference;
+ const [tab, setTab] = useState(0);
+ const updater = useRelationStore((state) => state.updater);
+ const { colors } = useThemeColors();
+ const [items, setItems] = useState();
+ const [query, setQuery] = useState("");
+ const [searchQuery, setSearchQuery] = useState("");
+ const isSearching = searchQuery.length > 0;
+ const hasNoRelations = !items || items.length === 0;
+ const cache = useRef>({});
+
+ useEffect(() => {
+ cache.current = {};
+ }, [reference.id, reference.type, updater]);
+
+ useEffect(() => {
+ const timeout = setTimeout(() => setSearchQuery(query.trim()), 300);
+ return () => clearTimeout(timeout);
+ }, [query]);
+
+ useEffect(() => {
+ let cancelled = false;
+ const listType: ListType = tab === 0 ? "linkedNotes" : "referencedIn";
+
+ const build = async (): Promise => {
+ const notes = await db.relations[tab === 0 ? "from" : "to"](
+ { id: reference.id, type: reference.type } as ItemReference,
+ "note"
+ ).selector.items(undefined, {
+ sortBy: "dateEdited",
+ sortDirection: "desc"
+ });
+
+ if (listType === "linkedNotes") {
+ return notes.map((note) => ({
+ note,
+ searchText: note.title.toLowerCase()
+ }));
+ }
+
+ const link = createInternalLink("note", reference.id);
+ return Promise.all(
+ notes.map(async (note) => {
+ const blocks = await db.notes.contentBlocksWithLinks(note.id);
+ const linkedBlocks = blocks.filter((block) =>
+ block.content.includes(link)
+ );
+ const excerpt = linkedBlocks[0];
+ return {
+ note,
+ blockId: excerpt?.id,
+ highlightedText: excerpt
+ ? highlightInternalLinks(excerpt, reference.id)
+ : undefined,
+ searchText: `${note.title} ${linkedBlocks
+ .map((block) => block.content)
+ .join(" ")}`.toLowerCase()
+ };
+ })
+ );
+ };
+
+ (async () => {
+ const resolved = cache.current[tab] || (await build());
+ cache.current[tab] = resolved;
+ if (cancelled) return;
+
+ const q = searchQuery.toLowerCase();
+ setItems(
+ q ? resolved.filter((item) => item.searchText.includes(q)) : resolved
+ );
+ })();
+
+ return () => {
+ cancelled = true;
+ };
+ }, [reference.id, reference.type, tab, updater, searchQuery]);
+
+ const onSelect = useCallback((note: Note, blockId?: string) => {
+ eSendEvent(eOnLoadNote, {
+ item: note,
+ blockId: blockId
+ });
+ fluidTabsRef.current?.goToPage("editor");
+ Navigation.goBack();
+ }, []);
+
+ const renderNote = useCallback(
+ ({ item }: { item: ReferenceItem }) => (
+
+ ),
+ [tab, onSelect]
+ );
+
+ return (
+
+
+
+
+ {}
+ }}
+ />
+
+
+
+
+
+
+ {[strings.linkedNotes(), strings.usedIn()].map((label, index) => {
+ const active = tab === index;
+ return (
+ setTab(index)}
+ style={{
+ flex: 1,
+ paddingVertical: Spacing.LEVEL_3,
+ paddingHorizontal: Spacing.LEVEL_1,
+ borderRadius: Radius.XS,
+ backgroundColor: active
+ ? colors.primary.background
+ : "transparent",
+ ...(active ? getElevationStyle(2) : {})
+ }}
+ >
+
+ {label}
+
+
+ );
+ })}
+
+
+ {!hasNoRelations ? (
+
+
+
+
+
+
+
+ {isSearching
+ ? strings.noResultsFound(searchQuery)
+ : tab === 1
+ ? strings.notReferenced()
+ : strings.notLinked()}
+
+ {isSearching ? null : (
+
+ {tab === 1
+ ? strings.emptyReferences()
+ : strings.linkedNotes()}
+
+ )}
+
+
+ ) : (
+ item.note.id}
+ renderItem={renderNote}
+ />
+ )}
+
+
+ );
+};
+
+export default References;
diff --git a/apps/mobile/app/screens/relations-list/index.tsx b/apps/mobile/app/screens/relations-list/index.tsx
index 5604e9e13..25c12101e 100644
--- a/apps/mobile/app/screens/relations-list/index.tsx
+++ b/apps/mobile/app/screens/relations-list/index.tsx
@@ -22,7 +22,6 @@ import { useThemeColors } from "@notesnook/theme";
import React, { useEffect, useState } from "react";
import { View } from "react-native";
import { SafeAreaView } from "react-native-safe-area-context";
-import Icon from "react-native-vector-icons/MaterialCommunityIcons";
import { db } from "../../common/database";
import { Header } from "../../components/header";
import List from "../../components/list";
@@ -31,12 +30,18 @@ import Paragraph from "../../components/ui/typography/paragraph";
import Navigation, { NavigationProps } from "../../services/navigation";
import { useRelationStore } from "../../stores/use-relation-store";
import { AppFontSize } from "../../utils/size";
+import AppIcon from "../../components/ui/AppIcon";
+import CirclesBackground from "../../components/ui/circles-background";
+import Heading from "../../components/ui/typography/heading";
+import { Spacing } from "../../common/design/spacing";
type RelationsListProps = {
item: Item;
referenceType: "notebook" | "tag" | "reminder" | "note";
relationType: "to" | "from";
title: string;
+ listEmptyTitle?: string;
+ listEmptyParagraph?: string;
onAdd?: () => void;
};
@@ -45,12 +50,20 @@ const IconsByType = {
};
function RelationsList(props: NavigationProps<"RelationsList">) {
- const { item, referenceType, relationType, title, onAdd } = props.route
- .params as RelationsListProps;
+ const {
+ item,
+ referenceType,
+ relationType,
+ title,
+ onAdd,
+ listEmptyTitle,
+ listEmptyParagraph
+ } = props.route.params as RelationsListProps;
const updater = useRelationStore((state) => state.updater);
const { colors } = useThemeColors();
const [items, setItems] = useState>();
const hasNoRelations = !items || items?.placeholders?.length === 0;
+ console.log(listEmptyTitle, listEmptyParagraph);
useEffect(() => {
db.relations?.[relationType]?.(
@@ -76,27 +89,58 @@ function RelationsList(props: NavigationProps<"RelationsList">) {
width: "100%"
}}
>
-
+
{hasNoRelations ? (
-
- {strings.noLinksFound()}
+
+
+
+
+
+ {listEmptyTitle}
+
+ {listEmptyParagraph}
+
+
@@ -128,12 +172,16 @@ RelationsList.present = ({
relationType,
referenceType,
title,
+ listEmptyTitle,
+ listEmptyParagraph,
onAdd
}: RelationsListProps) => {
Navigation.navigate("RelationsList", {
item,
relationType,
referenceType,
+ listEmptyTitle,
+ listEmptyParagraph,
title,
onAdd
});
diff --git a/apps/mobile/app/screens/settings/components/components.tsx b/apps/mobile/app/screens/settings/components/components.tsx
index 5aed74f52..414856fb7 100644
--- a/apps/mobile/app/screens/settings/components/components.tsx
+++ b/apps/mobile/app/screens/settings/components/components.tsx
@@ -19,7 +19,6 @@ along with this program. If not, see .
import React, { ReactElement } from "react";
import { View } from "react-native";
-import { AttachmentDialog } from "../../../components/attachments";
import { ChangePassword } from "../../../components/auth/change-password";
import { DefaultAppStyles } from "../../../utils/styles";
import { AttachmentGroupProgress } from "./attachment-group-progress";
@@ -69,7 +68,6 @@ export const components: { [name: string]: ReactElement } = {
autobackupsattachments: ,
backuprestore: ,
"server-config": ,
- "attachments-manager": ,
"offline-mode-progress": (
diff --git a/apps/mobile/app/screens/settings/groups/account.ts b/apps/mobile/app/screens/settings/groups/account.ts
index 60492e7f7..4b411d542 100644
--- a/apps/mobile/app/screens/settings/groups/account.ts
+++ b/apps/mobile/app/screens/settings/groups/account.ts
@@ -452,10 +452,10 @@ export const accountGroup: SettingSection = {
name: strings.manageAttachments(),
icon: "paperclip",
iconFamily: "notesnook",
- type: "screen",
- component: "attachments-manager",
description: strings.manageAttachmentsDesc(),
- hideHeader: true
+ modifer: () => {
+ Navigation.navigate("Attachments");
+ }
},
{
id: "clear-cache",
diff --git a/apps/mobile/app/services/navigation.ts b/apps/mobile/app/services/navigation.ts
index f3b4114d0..6dbe0a35a 100755
--- a/apps/mobile/app/services/navigation.ts
+++ b/apps/mobile/app/services/navigation.ts
@@ -73,7 +73,11 @@ const routeNames = {
AddReminder: "AddReminder",
RelationsList: "RelationsList",
PayWall: "PayWall",
- Wrapped: "Wrapped"
+ Wrapped: "Wrapped",
+ Attachments: "Attachments",
+ References: "References",
+ NoteHistory: "NoteHistory",
+ NotePreview: "NotePreview"
};
export type NavigationProps = NativeStackScreenProps<
diff --git a/apps/mobile/app/stores/use-navigation-store.ts b/apps/mobile/app/stores/use-navigation-store.ts
index e3b1ff5c6..85764998f 100644
--- a/apps/mobile/app/stores/use-navigation-store.ts
+++ b/apps/mobile/app/stores/use-navigation-store.ts
@@ -20,12 +20,15 @@ along with this program. If not, see .
import {
Color,
FilteredSelector,
+ HistorySession,
Item,
+ ItemReference,
ItemType,
Note,
Notebook,
Reminder,
- Tag
+ Tag,
+ TrashOrItem
} from "@notesnook/core";
import { ParamListBase } from "@react-navigation/core";
import { create } from "zustand";
@@ -113,6 +116,8 @@ export interface RouteParams extends ParamListBase {
referenceType: "notebook" | "tag" | "reminder" | "note";
relationType: "to" | "from";
title: string;
+ listEmptyTitle?: string;
+ listEmptyParagraph?: string;
onAdd?: () => void;
};
Intro: GenericRouteParam;
@@ -122,6 +127,19 @@ export interface RouteParams extends ParamListBase {
state?: BillingState;
};
Wrapped: GenericRouteParam;
+ Attachments: {
+ note?: Note;
+ };
+ References: {
+ reference: ItemReference;
+ };
+ NoteHistory: {
+ note: Note;
+ };
+ NotePreview: {
+ note: TrashOrItem;
+ session?: HistorySession & { session: string };
+ };
}
export type RouteName = keyof RouteParams;
diff --git a/apps/mobile/fonts/notesnook-icons.glyphmap.json b/apps/mobile/fonts/notesnook-icons.glyphmap.json
index e307391d3..992035187 100644
--- a/apps/mobile/fonts/notesnook-icons.glyphmap.json
+++ b/apps/mobile/fonts/notesnook-icons.glyphmap.json
@@ -1 +1 @@
-{"m":{"f":"notesnook-icons","u":1024,"z":1020,"s":59648,"h":"25f25ad70bd419ff91fe49bb7b9d002d64462809aa5b1fd96ff6130cae259b5a"},"i":{"archive":[1024,[[59648,"#666666"]]],"arrow-back":[1024,[[59649,"rgba(255,255,255,0.7)"]]],"arrow-clockwise":[1024,[[59650,"#181818"]]],"arrow-counter-clockwise":[1024,[[59651,"#181818"]]],"arrow-fat-up":[1024,[[59652,"var(--fill-0, #181818)"]]],"arrow-right":[1024,[[59653,"#008836"]]],"arrow-square-out":[1024,[[59654,"#666666"]]],"arrow-u-up-left":[1024,[[59655,"var(--fill-0, #181818)"]]],"arrows-clockwise":[1024,[[59656,"var(--fill-0, #181818)"]]],"backspace":[1024,[[59657,"#181818"]]],"bag-simple":[1024,[[59658,"var(--fill-0, #181818)"]]],"bell-z":[1024,[[59659,"#181818"]]],"bell":[1024,[[59660,"#666666"]]],"bomb-off":[1024,[[59661,"currentColor"]]],"bomb":[1024,[[59662,"#666666"]]],"book-open":[1024,[[59663,"#666666"]]],"bookmark":[1024,[[59664,"#666666"]]],"box-empty":[1024,[[59665,"#B0B0B1"]]],"bug-droid":[1024,[[59666,"var(--fill-0, #181818)"]]],"calendar-check":[946,[[59667,"var(--fill-0, #181818)"]]],"calendar-day":[1024,[[59668,"#181818"]]],"calendar-dots":[946,[[59669,"var(--fill-0, #181818)"]]],"calendar":[1024,[[59670,"rgba(102,102,102,0.8)"]]],"chart-donut":[1024,[[59671,"#181818"]]],"chart-line-up":[1024,[[59672,"var(--fill-0, #181818)"]]],"chat":[1024,[[59673,"white"]]],"check-small":[951,[[59674,"#008836"]]],"check-square":[1024,[[59675,"#181818"]]],"check":[1024,[[59676,"#008836"]]],"checkbox-intermediate":[1024,[[59677,"currentColor"]]],"checkbox":[1024,[[59678,"#008836"],[59679,"white"]]],"checks":[1024,[[59680,"#181818"]]],"chevron-down":[1024,[[59681,"#181818"]]],"chevron-right":[1024,[[59682,"#181818"]]],"chevron-up":[1024,[[59683,"#181818"]]],"clock-counter-clockwise":[1024,[[59684,"var(--fill-0, #181818)"]]],"clock":[1024,[[59685,"#181818"]]],"close":[1024,[[59686,"#666666"]]],"cloud-check":[1024,[[59687,"var(--fill-0, #181818)"]]],"cloud":[1024,[[59688,"white"]]],"copy":[1024,[[59689,"#008836"]]],"crown-simple":[1024,[[59690,"#E0B637"]]],"dark-mode-outline":[1024,[[59691,"currentColor"]]],"delete-restore":[1024,[[59692,"currentColor"]]],"device-mobile-camera":[1024,[[59693,"var(--fill-0, #181818)"]]],"discord-logo":[1024,[[59694,"var(--fill-0, #181818)"]]],"dots-three":[1024,[[59695,"#202020"]]],"download-simple":[1024,[[59696,"var(--fill-0, #181818)"]]],"drive-file-move":[1088,[[59697,"#666666"]]],"duplicate":[1024,[[59698,"currentColor"]]],"edit-pencil":[1024,[[59699,"#181818"]]],"ellipse":[1024,[[59700,"#A6A6A6"]]],"envelope-simple":[1024,[[59701,"white"]]],"export":[1024,[[59702,"var(--fill-0, #181818)"]]],"eye-closed":[1024,[[59703,"white"]]],"eye-filled":[1024,[[59704,"#666666"]]],"eye-open":[1024,[[59705,"#666666"]]],"eye-slash":[1024,[[59706,"var(--fill-0, #181818)"]]],"file-cloud":[1024,[[59707,"#181818"]]],"file-dashed":[1024,[[59708,"var(--fill-0, #181818)"]]],"file-html":[1024,[[59709,"#181818"]]],"file-pdf":[1024,[[59710,"#181818"]]],"file-text":[1024,[[59711,"var(--fill-0, #181818)"]]],"file":[1024,[[59712,"white"]]],"fingerprint-simple":[1024,[[59713,"#181818"]]],"folder":[1024,[[59714,"#181818"]]],"funnel":[1024,[[59715,"#666666"]]],"gift":[1024,[[59716,"#181818"]]],"git-pull-request":[1024,[[59717,"var(--fill-0, #181818)"]]],"github-logo":[1024,[[59718,"var(--fill-0, #181818)"]]],"hard-drives":[1024,[[59719,"var(--fill-0, #181818)"]]],"home":[1024,[[59720,"#181818"]]],"house":[1024,[[59721,"#6F6F6F"]]],"identifier":[1024,[[59722,"currentColor"]]],"image-outline":[1024,[[59723,"white"]]],"key":[1024,[[59724,"var(--fill-0, #181818)"]]],"link-alt":[1024,[[59725,"#666666"]]],"link":[560,[[59726,"#666666"]]],"list":[2190,[[59727,"#181818"]]],"lock-simple":[1024,[[59728,"white"]]],"lock":[1024,[[59729,"#181818"]]],"markdown":[1024,[[59730,"#181818"]]],"mastodon-logo":[1024,[[59731,"var(--fill-0, #181818)"]]],"menu":[1024,[[59732,"#181818"]]],"message-badge-outline":[1024,[[59733,"currentColor"]]],"minus":[1024,[[59734,"#181818"]]],"mode-edit":[1024,[[59735,"#181818"]]],"moon":[1024,[[59736,"var(--fill-0, #181818)"]]],"network":[1024,[[59737,"var(--fill-0, #181818)"]]],"note":[1024,[[59738,"#181818"]]],"notification":[1024,[[59739,"var(--fill-0, #181818)"]]],"numpad":[1024,[[59740,"#181818"]]],"nut":[1024,[[59741,"#181818"]]],"paint-brush-household":[1024,[[59742,"#181818"]]],"paint-roller":[1024,[[59743,"var(--fill-0, #181818)"]]],"palette":[1024,[[59744,"#666666"]]],"paperclip":[1024,[[59745,"#666666"]]],"pause":[1024,[[59746,"var(--fill-0, #181818)"]]],"pencil-ruler":[1024,[[59747,"#181818"]]],"pencil-simple-line":[1024,[[59748,"var(--fill-0, #181818)"]]],"pencil-simple-slash":[1024,[[59749,"#858585"]]],"pencil-simple":[1024,[[59750,"#181818"]]],"pin":[939,[[59751,"#666666"]]],"plus":[1024,[[59752,"#181818"]]],"radio-button":[1024,[[59753,"#008836"]]],"recovery-key-cloud-arrow-down":[1024,[[59754,"var(--fill-0, #181818)"]]],"recovery-key-copy":[1024,[[59755,"var(--stroke-0, #008836)"]]],"recovery-key-file":[1024,[[59756,"var(--fill-0, #181818)"]]],"recovery-key-key":[1024,[[59757,"var(--fill-0, #181818)"]]],"recovery-key-qr-code":[1024,[[59758,"var(--fill-0, #181818)"]]],"recovery-key-shield-check":[1024,[[59759,"var(--fill-0, #008836)"]]],"search":[1024,[[59760,"#181818"]]],"share":[1024,[[59761,"#666666"]]],"shield-check":[1024,[[59762,"#181818"]]],"shield-plus":[1024,[[59763,"#181818"]]],"shield":[1024,[[59764,"var(--fill-0, #181818)"]]],"shopping-mode":[1024,[[59765,"#666666"]]],"sliders-horizontal":[1024,[[59766,"var(--fill-0, #181818)"]]],"sliders":[1024,[[59767,"#181818"]]],"sort-ascending":[1024,[[59768,"#666666"]]],"sort-descending":[1024,[[59769,"currentColor"]]],"speaker-high":[1024,[[59770,"#181818"]]],"spellcheck":[1067,[[59771,"currentColor"]]],"square-out":[1024,[[59772,"#181818"]]],"squares-four":[1024,[[59773,"var(--fill-0, #181818)"]]],"star-filled":[1024,[[59774,"#E5C131"]]],"star":[1024,[[59775,"#666666"]]],"sun":[1024,[[59776,"#666666"]]],"swatches":[1024,[[59777,"var(--fill-0, #181818)"]]],"sync-disabled":[911,[[59778,"#858585"]]],"table":[1024,[[59779,"#181818"]]],"telegram-logo":[1024,[[59780,"var(--fill-0, #181818)"]]],"text-aa":[1024,[[59781,"#181818"]]],"toggle-off":[1725,[[59782,"#DADADA"]]],"toggle-on":[1725,[[59783,"#008836"]]],"trash-alt":[1024,[[59784,"#FB2C36"]]],"trash":[1024,[[59785,"#666666"]]],"tray-arrow-down":[1024,[[59786,"#181818"]]],"user-circle-minus":[1024,[[59787,"var(--fill-0, #FF242E)"]]],"user-sheet-docs":[1024,[[59788,"var(--fill-0, #181818)"]]],"user-sheet-logout":[1024,[[59789,"var(--fill-0, #FB2C36)"]]],"user-sheet-settings":[1024,[[59790,"var(--fill-0, #181818)"]]],"user-sheet-support":[1024,[[59791,"var(--fill-0, #181818)"]]],"user-sheet-sync":[1024,[[59792,"var(--fill-0, #181818)"]]],"user":[1024,[[59793,"var(--fill-0, #181818)"]]],"users-three":[1024,[[59794,"var(--fill-0, #181818)"]]],"view-list":[1024,[[59795,"#181818"]]],"warning-circle":[1024,[[59796,"#BB3431"]]],"warning":[1024,[[59797,"#FF242E"]]],"wifi-slash":[1024,[[59798,"var(--fill-0, #181818)"]]],"x-logo":[1024,[[59799,"var(--fill-0, #181818)"]]]}}
\ No newline at end of file
+{"m":{"f":"notesnook-icons","u":1024,"z":1020,"s":59648,"h":"f9f9d57db8a96806b7df29f6ed7a6dde8ca7df45eec0427cfa848b3c2d69a577"},"i":{"archive":[1024,[[59648,"#666666"]]],"arrow-back":[1024,[[59649,"rgba(255,255,255,0.7)"]]],"arrow-clockwise":[1024,[[59650,"#181818"]]],"arrow-counter-clockwise":[1024,[[59651,"#181818"]]],"arrow-fat-up":[1024,[[59652,"var(--fill-0, #181818)"]]],"arrow-right":[1024,[[59653,"#008836"]]],"arrow-square-out":[1024,[[59654,"#666666"]]],"arrow-u-up-left":[1024,[[59655,"var(--fill-0, #181818)"]]],"arrows-clockwise":[1024,[[59656,"var(--fill-0, #181818)"]]],"backspace":[1024,[[59657,"#181818"]]],"bag-simple":[1024,[[59658,"var(--fill-0, #181818)"]]],"bell-z":[1024,[[59659,"#181818"]]],"bell":[1024,[[59660,"#666666"]]],"bomb-off":[1024,[[59661,"currentColor"]]],"bomb":[1024,[[59662,"#666666"]]],"book-open":[1024,[[59663,"#666666"]]],"bookmark":[1024,[[59664,"#666666"]]],"box-empty":[1024,[[59665,"#B0B0B1"]]],"bug-droid":[1024,[[59666,"var(--fill-0, #181818)"]]],"calendar-check":[946,[[59667,"var(--fill-0, #181818)"]]],"calendar-day":[1024,[[59668,"#181818"]]],"calendar-dots":[946,[[59669,"var(--fill-0, #181818)"]]],"calendar":[1024,[[59670,"rgba(102,102,102,0.8)"]]],"chart-donut":[1024,[[59671,"#181818"]]],"chart-line-up":[1024,[[59672,"var(--fill-0, #181818)"]]],"chat":[1024,[[59673,"white"]]],"check-circle":[1024,[[59674,"#008836"]]],"check-small":[951,[[59675,"#008836"]]],"check-square":[1024,[[59676,"#181818"]]],"check":[1024,[[59677,"#008836"]]],"checkbox-intermediate":[1024,[[59678,"currentColor"]]],"checkbox":[1024,[[59679,"#008836"],[59680,"white"]]],"checks":[1024,[[59681,"#181818"]]],"chevron-down":[1024,[[59682,"#181818"]]],"chevron-right":[1024,[[59683,"#181818"]]],"chevron-up":[1024,[[59684,"#181818"]]],"clock-counter-clockwise":[1024,[[59685,"var(--fill-0, #181818)"]]],"clock":[1024,[[59686,"#181818"]]],"close":[1024,[[59687,"#666666"]]],"cloud-check":[1024,[[59688,"var(--fill-0, #181818)"]]],"cloud-upload":[1024,[[59689,"#858585"]]],"cloud":[1024,[[59690,"white"]]],"copy":[1024,[[59691,"#008836"]]],"crown-simple":[1024,[[59692,"#E0B637"]]],"dark-mode-outline":[1024,[[59693,"currentColor"]]],"delete-restore":[1024,[[59694,"currentColor"]]],"device-mobile-camera":[1024,[[59695,"var(--fill-0, #181818)"]]],"discord-logo":[1024,[[59696,"var(--fill-0, #181818)"]]],"dots-three":[1024,[[59697,"#202020"]]],"download-simple":[1024,[[59698,"var(--fill-0, #181818)"]]],"drive-file-move":[1088,[[59699,"#666666"]]],"duplicate":[1024,[[59700,"currentColor"]]],"edit-pencil":[1024,[[59701,"#181818"]]],"ellipse":[1024,[[59702,"#A6A6A6"]]],"envelope-simple":[1024,[[59703,"white"]]],"export":[1024,[[59704,"var(--fill-0, #181818)"]]],"eye-closed":[1024,[[59705,"white"]]],"eye-filled":[1024,[[59706,"#666666"]]],"eye-open":[1024,[[59707,"#666666"]]],"eye-slash":[1024,[[59708,"var(--fill-0, #181818)"]]],"file-cloud":[1024,[[59709,"#181818"]]],"file-dashed":[1024,[[59710,"var(--fill-0, #181818)"]]],"file-html":[1024,[[59711,"#181818"]]],"file-pdf":[1024,[[59712,"#181818"]]],"file-text":[1024,[[59713,"var(--fill-0, #181818)"]]],"file":[1024,[[59714,"white"]]],"fingerprint-simple":[1024,[[59715,"#181818"]]],"folder":[1024,[[59716,"#181818"]]],"funnel":[1024,[[59717,"#666666"]]],"gift":[1024,[[59718,"#181818"]]],"git-pull-request":[1024,[[59719,"var(--fill-0, #181818)"]]],"github-logo":[1024,[[59720,"var(--fill-0, #181818)"]]],"hard-drives":[1024,[[59721,"var(--fill-0, #181818)"]]],"home":[1024,[[59722,"#181818"]]],"house":[1024,[[59723,"#6F6F6F"]]],"identifier":[1024,[[59724,"currentColor"]]],"image-outline":[1024,[[59725,"white"]]],"image":[1024,[[59726,"#181818"]]],"key":[1024,[[59727,"var(--fill-0, #181818)"]]],"link-alt":[1024,[[59728,"#666666"]]],"link-simple":[1024,[[59729,"white"]]],"link":[560,[[59730,"#666666"]]],"list":[2190,[[59731,"#181818"]]],"lock-simple":[1024,[[59732,"white"]]],"lock":[1024,[[59733,"#181818"]]],"markdown":[1024,[[59734,"#181818"]]],"mastodon-logo":[1024,[[59735,"var(--fill-0, #181818)"]]],"menu":[1024,[[59736,"#181818"]]],"message-badge-outline":[1024,[[59737,"currentColor"]]],"minus":[1024,[[59738,"#181818"]]],"mode-edit":[1024,[[59739,"#181818"]]],"moon":[1024,[[59740,"var(--fill-0, #181818)"]]],"music-notes":[1024,[[59741,"#181818"]]],"network":[1024,[[59742,"var(--fill-0, #181818)"]]],"note":[1024,[[59743,"#181818"]]],"notification":[1024,[[59744,"var(--fill-0, #181818)"]]],"numpad":[1024,[[59745,"#181818"]]],"nut":[1024,[[59746,"#181818"]]],"paint-brush-household":[1024,[[59747,"#181818"]]],"paint-roller":[1024,[[59748,"var(--fill-0, #181818)"]]],"palette":[1024,[[59749,"#666666"]]],"paperclip":[1024,[[59750,"#666666"]]],"pause":[1024,[[59751,"var(--fill-0, #181818)"]]],"pencil-ruler":[1024,[[59752,"#181818"]]],"pencil-simple-line":[1024,[[59753,"var(--fill-0, #181818)"]]],"pencil-simple-slash":[1024,[[59754,"#858585"]]],"pencil-simple":[1024,[[59755,"#181818"]]],"pin":[939,[[59756,"#666666"]]],"plus":[1024,[[59757,"#181818"]]],"radio-button":[1024,[[59758,"#008836"]]],"recovery-key-cloud-arrow-down":[1024,[[59759,"var(--fill-0, #181818)"]]],"recovery-key-copy":[1024,[[59760,"var(--stroke-0, #008836)"]]],"recovery-key-file":[1024,[[59761,"var(--fill-0, #181818)"]]],"recovery-key-key":[1024,[[59762,"var(--fill-0, #181818)"]]],"recovery-key-qr-code":[1024,[[59763,"var(--fill-0, #181818)"]]],"recovery-key-shield-check":[1024,[[59764,"var(--fill-0, #008836)"]]],"search":[1024,[[59765,"#181818"]]],"share":[1024,[[59766,"#666666"]]],"shield-check":[1024,[[59767,"#181818"]]],"shield-plus":[1024,[[59768,"#181818"]]],"shield":[1024,[[59769,"var(--fill-0, #181818)"]]],"shopping-mode":[1024,[[59770,"#666666"]]],"sliders-horizontal":[1024,[[59771,"var(--fill-0, #181818)"]]],"sliders":[1024,[[59772,"#181818"]]],"sort-ascending":[1024,[[59773,"#666666"]]],"sort-descending":[1024,[[59774,"currentColor"]]],"speaker-high":[1024,[[59775,"#181818"]]],"spellcheck":[1067,[[59776,"currentColor"]]],"square-out":[1024,[[59777,"#181818"]]],"squares-four":[1024,[[59778,"var(--fill-0, #181818)"]]],"star-filled":[1024,[[59779,"#E5C131"]]],"star":[1024,[[59780,"#666666"]]],"sun":[1024,[[59781,"#666666"]]],"swatches":[1024,[[59782,"var(--fill-0, #181818)"]]],"sync-disabled":[911,[[59783,"#858585"]]],"table":[1024,[[59784,"#181818"]]],"telegram-logo":[1024,[[59785,"var(--fill-0, #181818)"]]],"text-aa":[1024,[[59786,"#181818"]]],"toggle-off":[1725,[[59787,"#DADADA"]]],"toggle-on":[1725,[[59788,"#008836"]]],"trash-alt":[1024,[[59789,"#FB2C36"]]],"trash":[1024,[[59790,"#666666"]]],"tray-arrow-down":[1024,[[59791,"#181818"]]],"upload":[1024,[[59792,"#181818"]]],"user-circle-minus":[1024,[[59793,"var(--fill-0, #FF242E)"]]],"user-sheet-docs":[1024,[[59794,"var(--fill-0, #181818)"]]],"user-sheet-logout":[1024,[[59795,"var(--fill-0, #FB2C36)"]]],"user-sheet-settings":[1024,[[59796,"var(--fill-0, #181818)"]]],"user-sheet-support":[1024,[[59797,"var(--fill-0, #181818)"]]],"user-sheet-sync":[1024,[[59798,"var(--fill-0, #181818)"]]],"user":[1024,[[59799,"var(--fill-0, #181818)"]]],"users-three":[1024,[[59800,"var(--fill-0, #181818)"]]],"video-camera":[1024,[[59801,"#181818"]]],"view-list":[1024,[[59802,"#181818"]]],"warning-circle":[1024,[[59803,"#BB3431"]]],"warning":[1024,[[59804,"#FF242E"]]],"wifi-slash":[1024,[[59805,"var(--fill-0, #181818)"]]],"x-logo":[1024,[[59806,"var(--fill-0, #181818)"]]]}}
\ No newline at end of file
diff --git a/apps/mobile/fonts/notesnook-icons.ttf b/apps/mobile/fonts/notesnook-icons.ttf
index 64f173cbd..33f2f8142 100644
Binary files a/apps/mobile/fonts/notesnook-icons.ttf and b/apps/mobile/fonts/notesnook-icons.ttf differ
diff --git a/apps/mobile/ios/nanoicons-fonts/notesnook-icons.ttf b/apps/mobile/ios/nanoicons-fonts/notesnook-icons.ttf
index 64f173cbd..33f2f8142 100644
Binary files a/apps/mobile/ios/nanoicons-fonts/notesnook-icons.ttf and b/apps/mobile/ios/nanoicons-fonts/notesnook-icons.ttf differ
diff --git a/packages/editor/package-lock.json b/packages/editor/package-lock.json
index 933cfca34..675dd244d 100644
--- a/packages/editor/package-lock.json
+++ b/packages/editor/package-lock.json
@@ -1540,6 +1540,39 @@
"@styled-system/css": "^5.1.5"
}
},
+ "node_modules/@theme-ui/color-modes": {
+ "version": "0.16.2",
+ "resolved": "https://registry.npmjs.org/@theme-ui/color-modes/-/color-modes-0.16.2.tgz",
+ "integrity": "sha512-jWEWx53lxNgWCT38i/kwLV2rsvJz8lVZgi5oImnVwYba9VejXD23q1ckbNFJHosQ8KKXY87ht0KPC6BQFIiHtQ==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@theme-ui/core": "^0.16.2",
+ "@theme-ui/css": "^0.16.2",
+ "deepmerge": "^4.2.2"
+ },
+ "peerDependencies": {
+ "@emotion/react": "^11.11.1",
+ "react": ">=18"
+ }
+ },
+ "node_modules/@theme-ui/color-modes/node_modules/@theme-ui/core": {
+ "version": "0.16.2",
+ "resolved": "https://registry.npmjs.org/@theme-ui/core/-/core-0.16.2.tgz",
+ "integrity": "sha512-bBd/ltbwO9vIUjF1jtlOX6XN0IIOdf1vzBp2JCKsSOqdfn84m+XL8OogIe/zOhQ+aM94Nrq4+32tFJc8sFav4Q==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@theme-ui/css": "^0.16.2",
+ "deepmerge": "^4.2.2"
+ },
+ "peerDependencies": {
+ "@emotion/react": "^11.11.1",
+ "react": ">=18"
+ }
+ },
"node_modules/@theme-ui/components": {
"version": "0.16.1",
"resolved": "https://registry.npmjs.org/@theme-ui/components/-/components-0.16.1.tgz",
@@ -1585,6 +1618,39 @@
"@emotion/react": "^11.11.1"
}
},
+ "node_modules/@theme-ui/theme-provider": {
+ "version": "0.16.2",
+ "resolved": "https://registry.npmjs.org/@theme-ui/theme-provider/-/theme-provider-0.16.2.tgz",
+ "integrity": "sha512-LRnVevODcGqO0JyLJ3wht+PV3ZoZcJ7XXLJAJWDoGeII4vZcPQKwVy4Lpz/juHsZppQxKcB3U+sQDGBnP25irQ==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@theme-ui/color-modes": "^0.16.2",
+ "@theme-ui/core": "^0.16.2",
+ "@theme-ui/css": "^0.16.2"
+ },
+ "peerDependencies": {
+ "@emotion/react": "^11.11.1",
+ "react": ">=18"
+ }
+ },
+ "node_modules/@theme-ui/theme-provider/node_modules/@theme-ui/core": {
+ "version": "0.16.2",
+ "resolved": "https://registry.npmjs.org/@theme-ui/core/-/core-0.16.2.tgz",
+ "integrity": "sha512-bBd/ltbwO9vIUjF1jtlOX6XN0IIOdf1vzBp2JCKsSOqdfn84m+XL8OogIe/zOhQ+aM94Nrq4+32tFJc8sFav4Q==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@theme-ui/css": "^0.16.2",
+ "deepmerge": "^4.2.2"
+ },
+ "peerDependencies": {
+ "@emotion/react": "^11.11.1",
+ "react": ">=18"
+ }
+ },
"node_modules/@tiptap/core": {
"version": "2.6.6",
"resolved": "https://registry.npmjs.org/@tiptap/core/-/core-2.6.6.tgz",
@@ -3432,8 +3498,7 @@
"node_modules/js-tokens": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
- "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
- "dev": true
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
},
"node_modules/js-yaml": {
"version": "3.14.1",
@@ -3542,7 +3607,6 @@
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
"integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
- "dev": true,
"dependencies": {
"js-tokens": "^3.0.0 || ^4.0.0"
},
@@ -5075,7 +5139,6 @@
"version": "18.3.1",
"resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
"integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
- "dev": true,
"dependencies": {
"loose-envify": "^1.1.0"
},
@@ -5096,7 +5159,6 @@
"version": "18.3.1",
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz",
"integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==",
- "dev": true,
"dependencies": {
"loose-envify": "^1.1.0",
"scheduler": "^0.23.2"
@@ -5411,7 +5473,6 @@
"version": "0.23.2",
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz",
"integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==",
- "dev": true,
"dependencies": {
"loose-envify": "^1.1.0"
}
diff --git a/packages/icons/svgs/check-circle.svg b/packages/icons/svgs/check-circle.svg
new file mode 100755
index 000000000..6c282eb71
--- /dev/null
+++ b/packages/icons/svgs/check-circle.svg
@@ -0,0 +1,10 @@
+
diff --git a/packages/icons/svgs/cloud-upload.svg b/packages/icons/svgs/cloud-upload.svg
new file mode 100644
index 000000000..b837c6d89
--- /dev/null
+++ b/packages/icons/svgs/cloud-upload.svg
@@ -0,0 +1,10 @@
+
diff --git a/packages/icons/svgs/image.svg b/packages/icons/svgs/image.svg
new file mode 100755
index 000000000..f24268b26
--- /dev/null
+++ b/packages/icons/svgs/image.svg
@@ -0,0 +1,3 @@
+
diff --git a/packages/icons/svgs/link-simple.svg b/packages/icons/svgs/link-simple.svg
new file mode 100644
index 000000000..34e7544bd
--- /dev/null
+++ b/packages/icons/svgs/link-simple.svg
@@ -0,0 +1,3 @@
+
diff --git a/packages/icons/svgs/music-notes.svg b/packages/icons/svgs/music-notes.svg
new file mode 100755
index 000000000..c548b33d6
--- /dev/null
+++ b/packages/icons/svgs/music-notes.svg
@@ -0,0 +1,3 @@
+
diff --git a/packages/icons/svgs/upload.svg b/packages/icons/svgs/upload.svg
new file mode 100755
index 000000000..614d39594
--- /dev/null
+++ b/packages/icons/svgs/upload.svg
@@ -0,0 +1,3 @@
+
diff --git a/packages/icons/svgs/video-camera.svg b/packages/icons/svgs/video-camera.svg
new file mode 100755
index 000000000..a3ad151b9
--- /dev/null
+++ b/packages/icons/svgs/video-camera.svg
@@ -0,0 +1,3 @@
+
diff --git a/packages/intl/locale/en.po b/packages/intl/locale/en.po
index df9546353..bfa564310 100644
--- a/packages/intl/locale/en.po
+++ b/packages/intl/locale/en.po
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
-"POT-Creation-Date: 2026-07-23 08:52+0500\n"
+"POT-Creation-Date: 2026-07-23 08:53+0500\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -13,7 +13,7 @@ msgstr ""
"Language-Team: \n"
"Plural-Forms: \n"
-#: src/strings.ts:2448
+#: src/strings.ts:2472
msgid " \"Notebook > Notes\""
msgstr " \"Notebook > Notes\""
@@ -21,27 +21,27 @@ msgstr " \"Notebook > Notes\""
msgid " Unlock with password once to enable biometric access."
msgstr " Unlock with password once to enable biometric access."
-#: src/strings.ts:1968
+#: src/strings.ts:1992
msgid " Upgrade to Notesnook Pro to add more notebooks."
msgstr " Upgrade to Notesnook Pro to add more notebooks."
-#: src/strings.ts:1971
+#: src/strings.ts:1995
msgid " Upgrade to Notesnook Pro to customize the toolbar."
msgstr " Upgrade to Notesnook Pro to customize the toolbar."
-#: src/strings.ts:1970
+#: src/strings.ts:1994
msgid " Upgrade to Notesnook Pro to use custom toolbar presets."
msgstr " Upgrade to Notesnook Pro to use custom toolbar presets."
-#: src/strings.ts:1969
+#: src/strings.ts:1993
msgid " Upgrade to Notesnook Pro to use the notes vault."
msgstr " Upgrade to Notesnook Pro to use the notes vault."
-#: src/strings.ts:1972
+#: src/strings.ts:1996
msgid " Upgrade to Notesnook Pro to use this feature."
msgstr " Upgrade to Notesnook Pro to use this feature."
-#: src/strings.ts:844
+#: src/strings.ts:866
msgid "— not just the privileged few"
msgstr "— not just the privileged few"
@@ -59,29 +59,29 @@ msgid "{0}"
msgstr "{0}"
#. placeholder {0}: name || "File"
-#: src/strings.ts:517
+#: src/strings.ts:539
msgid "{0} downloaded"
msgstr "{0} downloaded"
#. placeholder {0}: version ? `v${version} ` : "New version"
-#: src/strings.ts:535
+#: src/strings.ts:557
msgid "{0} Highlights 🎉"
msgstr "{0} Highlights 🎉"
#. placeholder {0}: platform === "ios" ? "Apple" : "Google"
-#: src/strings.ts:2614
+#: src/strings.ts:2638
msgid "{0} will remind you before your trial ends"
msgstr "{0} will remind you before your trial ends"
-#: src/strings.ts:1780
+#: src/strings.ts:1804
msgid "{count, plural, one {# error occured} other {# errors occured}}"
msgstr "{count, plural, one {# error occured} other {# errors occured}}"
-#: src/strings.ts:1786
+#: src/strings.ts:1810
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:1741
+#: src/strings.ts:1765
msgid "{count, plural, one {# file} other {# files}}"
msgstr "{count, plural, one {# file} other {# files}}"
@@ -89,15 +89,15 @@ msgstr "{count, plural, one {# file} other {# files}}"
msgid "{count, plural, one {# note} other {# notes}}"
msgstr "{count, plural, one {# note} other {# notes}}"
-#: src/strings.ts:1605
+#: src/strings.ts:1629
msgid "{count, plural, one {1 hour} other {# hours}}"
msgstr "{count, plural, one {1 hour} other {# hours}}"
-#: src/strings.ts:1600
+#: src/strings.ts:1624
msgid "{count, plural, one {1 minute} other {# minutes}}"
msgstr "{count, plural, one {1 minute} other {# minutes}}"
-#: src/strings.ts:411
+#: src/strings.ts:428
msgid "{count, plural, one {1 result} other {# results}}"
msgstr "{count, plural, one {1 result} other {# results}}"
@@ -134,7 +134,7 @@ msgstr "{count, plural, one {Are you sure you want to delete this tag?} other {A
msgid "{count, plural, one {Are you sure you want to download all attachments of this note?} other {Are you sure you want to download all attachments?}}"
msgstr "{count, plural, one {Are you sure you want to download all attachments of this note?} other {Are you sure you want to download all attachments?}}"
-#: src/strings.ts:879
+#: src/strings.ts:901
msgid "{count, plural, one {Are you sure you want to move this notebook to {selectedNotebookTitle}?} other {Are you sure you want to move these # notebooks {selectedNotebookTitle}?}}"
msgstr "{count, plural, one {Are you sure you want to move this notebook to {selectedNotebookTitle}?} other {Are you sure you want to move these # notebooks {selectedNotebookTitle}?}}"
@@ -301,15 +301,15 @@ 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:2465
+#: src/strings.ts:2489
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}}"
-#: src/strings.ts:877
+#: src/strings.ts:899
msgid "{count, plural, one {Move notebook} other {Move # notebooks}}"
msgstr "{count, plural, one {Move notebook} other {Move # notebooks}}"
-#: src/strings.ts:483
+#: src/strings.ts:505
msgid "{count, plural, one {Moving {title}} other {Moving # notebooks}}"
msgstr "{count, plural, one {Moving {title}} other {Moving # notebooks}}"
@@ -349,7 +349,7 @@ msgstr "{count, plural, one {Note restored} other {# notes restored}}"
msgid "{count, plural, one {Note unpublished} other {# notes unpublished}}"
msgstr "{count, plural, one {Note unpublished} other {# notes unpublished}}"
-#: src/strings.ts:938
+#: src/strings.ts:960
msgid "{count, plural, one {Note will be automatically deleted from all other devices & any future changes won't get synced. Are you sure you want to continue?} other {# notes will be automatically deleted from all other devices & any future changes won't get synced. Are you sure you want to continue?}}"
msgstr "{count, plural, one {Note will be automatically deleted from all other devices & any future changes won't get synced. Are you sure you want to continue?} other {# notes will be automatically deleted from all other devices & any future changes won't get synced. Are you sure you want to continue?}}"
@@ -403,7 +403,7 @@ msgstr "{count, plural, one {Pin note} other {Pin # notes}}"
msgid "{count, plural, one {Pin notebook} other {Pin # notebooks}}"
msgstr "{count, plural, one {Pin notebook} other {Pin # notebooks}}"
-#: src/strings.ts:933
+#: src/strings.ts:955
msgid "{count, plural, one {Prevent note from syncing} other {Prevent # notes from syncing}}"
msgstr "{count, plural, one {Prevent note from syncing} other {Prevent # notes from syncing}}"
@@ -508,39 +508,39 @@ msgstr "{count, plural, one {Unpublish note} other {Unpublish # notes}}"
msgid "{count, plural, one {Version deleted} other {# versions deleted}}"
msgstr "{count, plural, one {Version deleted} other {# versions deleted}}"
-#: src/strings.ts:2535
+#: src/strings.ts:2559
msgid "{count} characters"
msgstr "{count} characters"
-#: src/strings.ts:1591
+#: src/strings.ts:1615
msgid "{days, plural, one {1 day} other {# days}}"
msgstr "{days, plural, one {1 day} other {# days}}"
-#: src/strings.ts:2605
+#: src/strings.ts:2629
msgid "{days} days free"
msgstr "{days} days free"
-#: src/strings.ts:2878
+#: src/strings.ts:2902
msgid "{duration} days free trial includes all features"
msgstr "{duration} days free trial includes all features"
-#: src/strings.ts:350
+#: src/strings.ts:364
msgid "{freq, plural, one {Repeats every day on {selectedDays} at {date}} other {Repeats every # day every {selectedDays} at {date}}}"
msgstr "{freq, plural, one {Repeats every day on {selectedDays} at {date}} other {Repeats every # day every {selectedDays} at {date}}}"
-#: src/strings.ts:358
+#: src/strings.ts:372
msgid "{freq, plural, one {Repeats every month on {selectedDays} at {date}} other {Repeats every # month every {selectedDays} at {date}}}"
msgstr "{freq, plural, one {Repeats every month on {selectedDays} at {date}} other {Repeats every # month every {selectedDays} at {date}}}"
-#: src/strings.ts:354
+#: src/strings.ts:368
msgid "{freq, plural, one {Repeats every week on {selectedDays} at {date}} other {Repeats every # week every {selectedDays} at {date}}}"
msgstr "{freq, plural, one {Repeats every week on {selectedDays} at {date}} other {Repeats every # week every {selectedDays} at {date}}}"
-#: src/strings.ts:362
+#: src/strings.ts:376
msgid "{freq, plural, one {Repeats every year on {selectedDays} at {date}} other {Repeats every # year every {selectedDays} at {date}}}"
msgstr "{freq, plural, one {Repeats every year on {selectedDays} at {date}} other {Repeats every # year every {selectedDays} at {date}}}"
-#: src/strings.ts:326
+#: src/strings.ts:340
msgid "{itemType, select, tag {Add a tag} notebook {Add a notebook} reminder {Add a reminder} note {Add a note} other {Add an item}}"
msgstr "{itemType, select, tag {Add a tag} notebook {Add a notebook} reminder {Add a reminder} note {Add a note} other {Add an item}}"
@@ -548,59 +548,59 @@ msgstr "{itemType, select, tag {Add a tag} notebook {Add a notebook} reminder {A
msgid "{key, select, dateCreated {Created at} dateEdited {Last edited at} dateModified {Last modified at} dateUploaded {Uploaded at} dateDeleted {Deleted at} other {{key}}}"
msgstr "{key, select, dateCreated {Created at} dateEdited {Last edited at} dateModified {Last modified at} dateUploaded {Uploaded at} dateDeleted {Deleted at} other {{key}}}"
-#: src/strings.ts:443
+#: src/strings.ts:460
msgid "{mode, select, create {Create app lock {keyboardType}} change {Change app lock {keyboardType}} remove {Remove app lock {keyboardType}} other {}}"
msgstr "{mode, select, create {Create app lock {keyboardType}} change {Change app lock {keyboardType}} remove {Remove app lock {keyboardType}} other {}}"
-#: src/strings.ts:607
+#: src/strings.ts:629
msgid "{mode, select, day {Daily} week {Weekly} month {Monthly} year {Yearly} other {Unknown mode}}"
msgstr "{mode, select, day {Daily} week {Weekly} month {Monthly} year {Yearly} other {Unknown mode}}"
-#: src/strings.ts:600
+#: src/strings.ts:622
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:2003
+#: src/strings.ts:2027
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:1998
+#: src/strings.ts:2022
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:1993
+#: src/strings.ts:2017
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:1988
+#: src/strings.ts:2012
msgid "{notes, plural, one {1 note} other {# notes}}"
msgstr "{notes, plural, one {1 note} other {# notes}}"
-#: src/strings.ts:474
+#: src/strings.ts:496
msgid "{notes, plural, one {Export note} other {Export # notes}}"
msgstr "{notes, plural, one {Export note} other {Export # notes}}"
-#: src/strings.ts:1733
+#: src/strings.ts:1757
msgid "{percentage}% updating..."
msgstr "{percentage}% updating..."
-#: src/strings.ts:2589
+#: src/strings.ts:2613
msgid "{plan} plan"
msgstr "{plan} plan"
-#: src/strings.ts:745
+#: src/strings.ts:767
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:1359
+#: src/strings.ts:1383
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:2395
+#: src/strings.ts:2419
msgid "{selected} selected"
msgstr "{selected} selected"
-#: src/strings.ts:382
+#: src/strings.ts:399
msgid "{type, select, github {v{version} has been released on GitHub} other {v{version} has been released}}"
msgstr "{type, select, github {v{version} has been released on GitHub} other {v{version} has been released}}"
@@ -612,296 +612,300 @@ msgstr "{type, select, other {This list is empty} notebook {No notebooks} tag {N
msgid "{type, select, upload {Uploading} download {Downloading} sync {Syncing} other {Loading}}"
msgstr "{type, select, upload {Uploading} download {Downloading} sync {Syncing} other {Loading}}"
-#: src/strings.ts:787
+#: src/strings.ts:809
msgid "{type} does not match"
msgstr "{type} does not match"
-#: src/strings.ts:1626
+#: src/strings.ts:1650
msgid "{words, plural, one {# word} other {# words}}"
msgstr "{words, plural, one {# word} other {# words}}"
-#: src/strings.ts:1689
+#: src/strings.ts:1713
msgid "{words, plural, other {# selected}}"
msgstr "{words, plural, other {# selected}}"
-#: src/strings.ts:1817
+#: src/strings.ts:1841
msgid "#notesnook"
msgstr "#notesnook"
-#: src/strings.ts:2718
+#: src/strings.ts:2742
msgid "1 day"
msgstr "1 day"
-#: src/strings.ts:2720
+#: src/strings.ts:2744
msgid "1 month"
msgstr "1 month"
-#: src/strings.ts:2719
+#: src/strings.ts:2743
msgid "1 week"
msgstr "1 week"
-#: src/strings.ts:2721
+#: src/strings.ts:2745
msgid "1 year"
msgstr "1 year"
-#: src/strings.ts:1610
+#: src/strings.ts:1634
msgid "12-hour"
msgstr "12-hour"
-#: src/strings.ts:1611
+#: src/strings.ts:1635
msgid "24-hour"
msgstr "24-hour"
-#: src/strings.ts:1931
+#: src/strings.ts:1955
msgid "2FA code is required()"
msgstr "2FA code is required()"
-#: src/strings.ts:1026
+#: src/strings.ts:1048
msgid "2FA code sent via {method}"
msgstr "2FA code sent via {method}"
-#: src/strings.ts:2634
+#: src/strings.ts:2658
msgid "5 year plan"
msgstr "5 year plan"
-#: src/strings.ts:1872
+#: src/strings.ts:1896
msgid "6 digit code"
msgstr "6 digit code"
-#: src/strings.ts:2587
+#: src/strings.ts:2611
msgid "7-day free trial"
msgstr "7-day free trial"
-#: src/strings.ts:1453
+#: src/strings.ts:1477
msgid "A notebook can have unlimited topics with unlimited notes."
msgstr "A notebook can have unlimited topics with unlimited notes."
-#: src/strings.ts:649
+#: src/strings.ts:671
msgid "A to Z"
msgstr "A to Z"
-#: src/strings.ts:451
+#: src/strings.ts:468
msgid "A vault stores your notes in an encrypted storage."
msgstr "A vault stores your notes in an encrypted storage."
-#: src/strings.ts:664
+#: src/strings.ts:686
msgid "Abc"
msgstr "Abc"
-#: src/strings.ts:1311
+#: src/strings.ts:1335
msgid "About"
msgstr "About"
-#: src/strings.ts:2897
+#: src/strings.ts:2921
msgid "Access on all devices"
msgstr "Access on all devices"
-#: src/strings.ts:2872
+#: src/strings.ts:2896
msgid "Access on all your devices"
msgstr "Access on all your devices"
-#: src/strings.ts:1042
+#: src/strings.ts:1064
msgid "Account"
msgstr "Account"
-#: src/strings.ts:2915
+#: src/strings.ts:2939
msgid "Account actions"
msgstr "Account actions"
-#: src/strings.ts:1874
+#: src/strings.ts:1898
msgid "Account password"
msgstr "Account password"
-#: src/strings.ts:1136
+#: src/strings.ts:1160
msgid "Actions"
msgstr "Actions"
-#: src/strings.ts:2490
+#: src/strings.ts:2514
msgid "Actions for note: {title}"
msgstr "Actions for note: {title}"
-#: src/strings.ts:2491
+#: src/strings.ts:2515
msgid "Actions for notebook: {title}"
msgstr "Actions for notebook: {title}"
-#: src/strings.ts:2492
+#: src/strings.ts:2516
msgid "Actions for tag: {title}"
msgstr "Actions for tag: {title}"
-#: src/strings.ts:2064
+#: src/strings.ts:2088
msgid "Activate"
msgstr "Activate"
-#: src/strings.ts:1850
+#: src/strings.ts:1874
msgid "Activating trial"
msgstr "Activating trial"
-#: src/strings.ts:532
+#: src/strings.ts:554
msgid "Add"
msgstr "Add"
-#: src/strings.ts:1074
+#: src/strings.ts:1098
msgid "Add 2FA fallback method"
msgstr "Add 2FA fallback method"
-#: src/strings.ts:1531
+#: src/strings.ts:1555
msgid "Add a short note"
msgstr "Add a short note"
-#: src/strings.ts:1627
+#: src/strings.ts:1651
msgid "Add a tag"
msgstr "Add a tag"
-#: src/strings.ts:559
+#: src/strings.ts:581
msgid "Add color"
msgstr "Add color"
-#: src/strings.ts:2704
+#: src/strings.ts:2728
msgid "Add key"
msgstr "Add key"
-#: src/strings.ts:911
+#: src/strings.ts:933
msgid "Add notebook"
msgstr "Add notebook"
-#: src/strings.ts:2517
+#: src/strings.ts:2541
msgid "Add notes"
msgstr "Add notes"
-#: src/strings.ts:487
+#: src/strings.ts:509
msgid "Add notes to {title}"
msgstr "Add notes to {title}"
-#: src/strings.ts:910
+#: src/strings.ts:932
msgid "Add shortcut"
msgstr "Add shortcut"
-#: src/strings.ts:739
+#: src/strings.ts:761
msgid "Add shortcuts for notebooks and tags here."
msgstr "Add shortcuts for notebooks and tags here."
-#: src/strings.ts:574
+#: src/strings.ts:596
msgid "Add tag"
msgstr "Add tag"
-#: src/strings.ts:951
+#: src/strings.ts:973
msgid "Add tags"
msgstr "Add tags"
-#: src/strings.ts:952
+#: src/strings.ts:974
msgid "Add tags to multiple notes at once"
msgstr "Add tags to multiple notes at once"
-#: src/strings.ts:2282
+#: src/strings.ts:2306
msgid "Add to dictionary"
msgstr "Add to dictionary"
-#: src/strings.ts:2667
+#: src/strings.ts:2691
msgid "Add to home"
msgstr "Add to home"
-#: src/strings.ts:2515
+#: src/strings.ts:2539
msgid "Add to notebook"
msgstr "Add to notebook"
-#: src/strings.ts:992
-#: src/strings.ts:2888
+#: src/strings.ts:1014
+#: src/strings.ts:2912
msgid "Add your first note"
msgstr "Add your first note"
-#: src/strings.ts:993
+#: src/strings.ts:1015
msgid "Add your first notebook"
msgstr "Add your first notebook"
-#: src/strings.ts:2670
+#: src/strings.ts:2694
msgid "Adjust the line height of the editor"
msgstr "Adjust the line height of the editor"
-#: src/strings.ts:2208
+#: src/strings.ts:2232
msgid "Advanced"
msgstr "Advanced"
-#: src/strings.ts:2585
+#: src/strings.ts:2609
msgid "Advanced note elements"
msgstr "Advanced note elements"
-#: src/strings.ts:1104
+#: src/strings.ts:1128
msgid "Advanced settings"
msgstr "Advanced settings"
-#: src/strings.ts:1753
+#: src/strings.ts:1777
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:2347
+#: src/strings.ts:2371
msgid "Align left"
msgstr "Align left"
-#: src/strings.ts:2348
+#: src/strings.ts:2372
msgid "Align right"
msgstr "Align right"
-#: src/strings.ts:2317
+#: src/strings.ts:2341
msgid "Alignment"
msgstr "Alignment"
-#: src/strings.ts:728
+#: src/strings.ts:750
msgid "All"
msgstr "All"
+#: src/strings.ts:1093
+msgid "All attachments"
+msgstr "All attachments"
+
#: src/strings.ts:91
msgid "All attachments are end-to-end encrypted."
msgstr "All attachments are end-to-end encrypted."
-#: src/strings.ts:2442
+#: src/strings.ts:2466
msgid "All cached attachments have been cleared."
msgstr "All cached attachments have been cleared."
-#: src/strings.ts:769
+#: src/strings.ts:791
msgid "All fields are required"
msgstr "All fields are required"
-#: src/strings.ts:756
+#: src/strings.ts:778
msgid "All files"
msgstr "All files"
-#: src/strings.ts:2808
+#: src/strings.ts:2832
msgid "All items deleted"
msgstr "All items deleted"
-#: src/strings.ts:1196
+#: src/strings.ts:1220
msgid "All locked notes will be re-encrypted with the new password."
msgstr "All locked notes will be re-encrypted with the new password."
-#: src/strings.ts:741
+#: src/strings.ts:763
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:1664
+#: src/strings.ts:1688
msgid "All server urls are required."
msgstr "All server urls are required."
-#: src/strings.ts:1933
+#: src/strings.ts:1957
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:2188
+#: src/strings.ts:2212
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."
-#: src/strings.ts:433
+#: src/strings.ts:450
msgid "All tools are grouped"
msgstr "All tools are grouped"
-#: src/strings.ts:1343
+#: src/strings.ts:1367
msgid "All tools in the collapsed section will be removed"
msgstr "All tools in the collapsed section will be removed"
-#: src/strings.ts:1338
+#: src/strings.ts:1362
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:1368
+#: src/strings.ts:1392
msgid "All your backups are stored in 'Phone Storage/Notesnook/backups/' folder"
msgstr "All your backups are stored in 'Phone Storage/Notesnook/backups/' folder"
@@ -909,11 +913,11 @@ msgstr "All your backups are stored in 'Phone Storage/Notesnook/backups/' folder
msgid "Already have an account?"
msgstr "Already have an account?"
-#: src/strings.ts:2923
+#: src/strings.ts:2947
msgid "Always ask"
msgstr "Always ask"
-#: src/strings.ts:2258
+#: src/strings.ts:2282
msgid "Amount"
msgstr "Amount"
@@ -921,7 +925,7 @@ msgstr "Amount"
msgid "An error occurred while migrating your data. You can logout of your account and try to relogin. However this is not recommended as it may result in some data loss if your data was not synced."
msgstr "An error occurred while migrating your data. You can logout of your account and try to relogin. However this is not recommended as it may result in some data loss if your data was not synced."
-#: src/strings.ts:2626
+#: src/strings.ts:2650
msgid "and"
msgstr "and"
@@ -929,39 +933,39 @@ msgstr "and"
msgid "and "
msgstr "and "
-#: src/strings.ts:1818
+#: src/strings.ts:1842
msgid "and get a chance to win free promo codes."
msgstr "and get a chance to win free promo codes."
-#: src/strings.ts:2572
+#: src/strings.ts:2596
msgid "and much more."
msgstr "and much more."
-#: src/strings.ts:1419
+#: src/strings.ts:1443
msgid "and we will manually confirm your account."
msgstr "and we will manually confirm your account."
-#: src/strings.ts:2645
+#: src/strings.ts:2669
msgid "ANNOUNCEMENT"
msgstr "ANNOUNCEMENT"
-#: src/strings.ts:2736
+#: src/strings.ts:2760
msgid "API key copied to clipboard"
msgstr "API key copied to clipboard"
-#: src/strings.ts:2713
+#: src/strings.ts:2737
msgid "API key created successfully"
msgstr "API key created successfully"
-#: src/strings.ts:2741
+#: src/strings.ts:2765
msgid "API key revoked"
msgstr "API key revoked"
-#: src/strings.ts:2705
+#: src/strings.ts:2729
msgid "API Keys"
msgstr "API Keys"
-#: src/strings.ts:2728
+#: src/strings.ts:2752
msgid "API Keys Limit Reached"
msgstr "API Keys Limit Reached"
@@ -969,465 +973,469 @@ msgstr "API Keys Limit Reached"
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:1205
-#: src/strings.ts:1720
+#: src/strings.ts:1229
+#: src/strings.ts:1744
msgid "App lock"
msgstr "App lock"
-#: src/strings.ts:2583
+#: src/strings.ts:2607
msgid "App lock & security"
msgstr "App lock & security"
-#: src/strings.ts:783
-#: src/strings.ts:1231
+#: src/strings.ts:805
+#: src/strings.ts:1255
msgid "App lock disabled"
msgstr "App lock disabled"
-#: src/strings.ts:1211
+#: src/strings.ts:1235
msgid "App lock timeout"
msgstr "App lock timeout"
-#: src/strings.ts:1322
+#: src/strings.ts:1346
msgid "App version"
msgstr "App version"
-#: src/strings.ts:1801
+#: src/strings.ts:1825
msgid "App will reload in {sec} seconds"
msgstr "App will reload in {sec} seconds"
-#: src/strings.ts:1134
+#: src/strings.ts:1158
msgid "Appearance"
msgstr "Appearance"
-#: src/strings.ts:541
+#: src/strings.ts:563
msgid "Applied as dark theme"
msgstr "Applied as dark theme"
-#: src/strings.ts:542
+#: src/strings.ts:564
msgid "Applied as light theme"
msgstr "Applied as light theme"
-#: src/strings.ts:460
+#: src/strings.ts:477
msgid "Apply changes"
msgstr "Apply changes"
-#: src/strings.ts:2071
+#: src/strings.ts:2095
msgid "Applying changes"
msgstr "Applying changes"
-#: src/strings.ts:1557
-#: src/strings.ts:2522
+#: src/strings.ts:1581
+#: src/strings.ts:2546
msgid "Archive"
msgstr "Archive"
-#: src/strings.ts:1467
+#: src/strings.ts:1491
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."
-#: src/strings.ts:1034
+#: src/strings.ts:1056
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:1346
+#: src/strings.ts:1370
msgid "Are you sure you want to clear trash?"
msgstr "Are you sure you want to clear trash?"
-#: src/strings.ts:2807
+#: src/strings.ts:2831
msgid "Are you sure you want to delete all failed inbox items?"
msgstr "Are you sure you want to delete all failed inbox items?"
-#: src/strings.ts:2775
+#: src/strings.ts:2799
msgid "Are you sure you want to delete this attachment?"
msgstr "Are you sure you want to delete this attachment?"
-#: src/strings.ts:1569
+#: src/strings.ts:1593
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?"
-#: src/strings.ts:777
+#: src/strings.ts:799
msgid "Are you sure you want to logout from this device? Any unsynced changes will be lost."
msgstr "Are you sure you want to logout from this device? Any unsynced changes will be lost."
-#: src/strings.ts:2818
+#: src/strings.ts:2842
msgid "Are you sure you want to open this file: {filePath}?"
msgstr "Are you sure you want to open this file: {filePath}?"
-#: src/strings.ts:1064
+#: src/strings.ts:1086
msgid "Are you sure you want to remove your name?"
msgstr "Are you sure you want to remove your name?"
-#: src/strings.ts:1061
+#: src/strings.ts:1083
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:2740
+#: src/strings.ts:2764
msgid "Are you sure you want to revoke the key \"{name}\"? All inbox actions using this key will stop working immediately."
msgstr "Are you sure you want to revoke the key \"{name}\"? All inbox actions using this key will stop working immediately."
-#: src/strings.ts:1345
+#: src/strings.ts:284
+msgid "Are you sure you want to unpublish this note? It will no longer be accessible via the public link."
+msgstr "Are you sure you want to unpublish this note? It will no longer be accessible via the public link."
+
+#: src/strings.ts:1369
msgid "Are you sure?"
msgstr "Are you sure?"
-#: src/strings.ts:1152
+#: src/strings.ts:1176
msgid "Ask every time"
msgstr "Ask every time"
-#: src/strings.ts:2060
+#: src/strings.ts:2084
msgid "Assign color"
msgstr "Assign color"
-#: src/strings.ts:950
+#: src/strings.ts:972
msgid "Assign to..."
msgstr "Assign to..."
-#: src/strings.ts:436
+#: src/strings.ts:453
msgid "Atleast 8 characters required"
msgstr "Atleast 8 characters required"
-#: src/strings.ts:2384
+#: src/strings.ts:2408
msgid "Attach image from URL"
msgstr "Attach image from URL"
-#: src/strings.ts:924
+#: src/strings.ts:946
msgid "Attached files"
msgstr "Attached files"
-#: src/strings.ts:2809
+#: src/strings.ts:2833
msgid "Attaching files"
msgstr "Attaching files"
-#: src/strings.ts:289
+#: src/strings.ts:303
msgid "attachment"
msgstr "attachment"
-#: src/strings.ts:299
-#: src/strings.ts:2381
+#: src/strings.ts:313
+#: src/strings.ts:2405
msgid "Attachment"
msgstr "Attachment"
-#: src/strings.ts:2776
+#: src/strings.ts:2800
msgid "Attachment deleted"
msgstr "Attachment deleted"
-#: src/strings.ts:2485
+#: src/strings.ts:2509
msgid "Attachment manager"
msgstr "Attachment manager"
-#: src/strings.ts:1962
+#: src/strings.ts:1986
msgid "Attachment preview failed"
msgstr "Attachment preview failed"
-#: src/strings.ts:2435
+#: src/strings.ts:2459
msgid "Attachment recheck cancelled"
msgstr "Attachment recheck cancelled"
-#: src/strings.ts:2352
+#: src/strings.ts:2376
msgid "Attachment settings"
msgstr "Attachment settings"
-#: src/strings.ts:309
+#: src/strings.ts:323
msgid "attachments"
msgstr "attachments"
-#: src/strings.ts:319
-#: src/strings.ts:923
+#: src/strings.ts:333
+#: src/strings.ts:945
msgid "Attachments"
msgstr "Attachments"
-#: src/strings.ts:1911
+#: src/strings.ts:1935
msgid "Attachments cache cleared!"
msgstr "Attachments cache cleared!"
-#: src/strings.ts:2437
+#: src/strings.ts:2461
msgid "Attachments recheck complete"
msgstr "Attachments recheck complete"
-#: src/strings.ts:762
+#: src/strings.ts:784
msgid "Audios"
msgstr "Audios"
-#: src/strings.ts:1653
+#: src/strings.ts:1677
msgid "Auth server"
msgstr "Auth server"
-#: src/strings.ts:2734
+#: src/strings.ts:2758
msgid "Authenticate"
msgstr "Authenticate"
-#: src/strings.ts:2731
+#: src/strings.ts:2755
msgid "Authenticate to view API key"
msgstr "Authenticate to view API key"
-#: src/strings.ts:1822
+#: src/strings.ts:1846
msgid "Authenticated as {email}"
msgstr "Authenticated as {email}"
-#: src/strings.ts:1925
+#: src/strings.ts:1949
msgid "Authenticating user"
msgstr "Authenticating user"
-#: src/strings.ts:2171
+#: src/strings.ts:2195
msgid "Authentication"
msgstr "Authentication"
-#: src/strings.ts:1757
+#: src/strings.ts:1781
msgid "authentication app"
msgstr "authentication app"
-#: src/strings.ts:1373
+#: src/strings.ts:1397
msgid "Authentication cancelled by user"
msgstr "Authentication cancelled by user"
-#: src/strings.ts:1374
+#: src/strings.ts:1398
msgid "Authentication failed"
msgstr "Authentication failed"
-#: src/strings.ts:2134
+#: src/strings.ts:2158
msgid "Auto"
msgstr "Auto"
-#: src/strings.ts:1688
+#: src/strings.ts:1712
msgid "Auto save: off"
msgstr "Auto save: off"
-#: src/strings.ts:2148
+#: src/strings.ts:2172
msgid "Auto start on system startup"
msgstr "Auto start on system startup"
-#: src/strings.ts:1106
+#: src/strings.ts:1130
msgid "Auto sync"
msgstr "Auto sync"
-#: src/strings.ts:2791
+#: src/strings.ts:2815
msgid "Auto-generate keys"
msgstr "Auto-generate keys"
-#: src/strings.ts:1240
-#: src/strings.ts:1716
+#: src/strings.ts:1264
+#: src/strings.ts:1740
msgid "Automatic backups"
msgstr "Automatic backups"
-#: src/strings.ts:1387
+#: src/strings.ts:1411
msgid "Automatic backups are off"
msgstr "Automatic backups are off"
-#: src/strings.ts:2032
+#: src/strings.ts:2056
msgid "Automatic backups disabled"
msgstr "Automatic backups disabled"
-#: src/strings.ts:1243
+#: src/strings.ts:1267
msgid "Automatic backups with attachments"
msgstr "Automatic backups with attachments"
-#: src/strings.ts:2939
+#: src/strings.ts:2963
msgid "Automatic full backup"
msgstr "Automatic full backup"
-#: src/strings.ts:2144
+#: src/strings.ts:2168
msgid "Automatic updates"
msgstr "Automatic updates"
-#: src/strings.ts:1160
+#: src/strings.ts:1184
msgid "Automatically clear trash after a certain period of time"
msgstr "Automatically clear trash after a certain period of time"
-#: src/strings.ts:2146
+#: src/strings.ts:2170
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:1213
+#: src/strings.ts:1237
msgid "Automatically lock the app after a certain period"
msgstr "Automatically lock the app after a certain period"
-#: src/strings.ts:1143
+#: src/strings.ts:1167
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:2191
+#: src/strings.ts:2215
msgid "Available on iOS"
msgstr "Available on iOS"
-#: src/strings.ts:2192
+#: src/strings.ts:2216
msgid "Available on iOS & Android"
msgstr "Available on iOS & Android"
-#: src/strings.ts:2761
+#: src/strings.ts:2785
msgid "Back"
msgstr "Back"
-#: src/strings.ts:2340
+#: src/strings.ts:2364
msgid "Background color"
msgstr "Background color"
-#: src/strings.ts:1113
+#: src/strings.ts:1137
msgid "Background sync (experimental)"
msgstr "Background sync (experimental)"
-#: src/strings.ts:2140
+#: src/strings.ts:2164
msgid "Backup"
msgstr "Backup"
-#: src/strings.ts:2178
+#: src/strings.ts:2202
msgid "Backup & export"
msgstr "Backup & export"
-#: src/strings.ts:1232
+#: src/strings.ts:1256
msgid "Backup & restore"
msgstr "Backup & restore"
-#: src/strings.ts:2936
+#: src/strings.ts:2960
msgid "Backup actions"
msgstr "Backup actions"
-#: src/strings.ts:1357
+#: src/strings.ts:1381
msgid "Backup complete"
msgstr "Backup complete"
-#: src/strings.ts:1588
+#: src/strings.ts:1612
msgid "Backup directory not selected"
msgstr "Backup directory not selected"
-#: src/strings.ts:1255
+#: src/strings.ts:1279
msgid "Backup encryption"
msgstr "Backup encryption"
-#: src/strings.ts:1885
+#: src/strings.ts:1909
msgid "Backup files have .nnbackup extension"
msgstr "Backup files have .nnbackup extension"
-#: src/strings.ts:898
+#: src/strings.ts:920
msgid "Backup is encrypted"
msgstr "Backup is encrypted"
-#: src/strings.ts:1641
+#: src/strings.ts:1665
msgid "Backup is encrypted, decrypting..."
msgstr "Backup is encrypted, decrypting..."
-#: src/strings.ts:1248
+#: src/strings.ts:1272
msgid "Backup location"
msgstr "Backup location"
-#: src/strings.ts:1234
+#: src/strings.ts:1258
msgid "Backup now"
msgstr "Backup now"
-#: src/strings.ts:1235
+#: src/strings.ts:1259
msgid "Backup now with attachments"
msgstr "Backup now with attachments"
-#: src/strings.ts:905
+#: src/strings.ts:927
msgid "Backup restored"
msgstr "Backup restored"
-#: src/strings.ts:1946
+#: src/strings.ts:1970
msgid "Backup saved at {path}"
msgstr "Backup saved at {path}"
-#: src/strings.ts:1369
+#: src/strings.ts:1393
msgid "Backup successful"
msgstr "Backup successful"
-#: src/strings.ts:2141
+#: src/strings.ts:2165
msgid "Backup with attachments"
msgstr "Backup with attachments"
-#: src/strings.ts:495
+#: src/strings.ts:517
msgid "Backups"
msgstr "Backups"
-#: src/strings.ts:543
+#: src/strings.ts:565
msgid "Basic"
msgstr "Basic"
-#: src/strings.ts:1820
+#: src/strings.ts:1844
msgid "Because where's the fun in nookin' alone?"
msgstr "Because where's the fun in nookin' alone?"
-#: src/strings.ts:1146
+#: src/strings.ts:1170
msgid "Behavior"
msgstr "Behavior"
-#: src/strings.ts:2173
+#: src/strings.ts:2197
msgid "Behaviour"
msgstr "Behaviour"
-#: src/strings.ts:2509
+#: src/strings.ts:2533
msgid "Believer plan"
msgstr "Believer plan"
-#: src/strings.ts:2629
+#: src/strings.ts:2653
msgid "Best value"
msgstr "Best value"
-#: src/strings.ts:2498
+#: src/strings.ts:2522
msgid "Beta"
msgstr "Beta"
-#: src/strings.ts:2298
+#: src/strings.ts:2322
msgid "Bi-directional note link"
msgstr "Bi-directional note link"
-#: src/strings.ts:2863
+#: src/strings.ts:2887
msgid "Billed annually"
msgstr "Billed annually"
-#: src/strings.ts:2602
+#: src/strings.ts:2626
msgid "billed annually at {price}"
msgstr "billed annually at {price}"
-#: src/strings.ts:2864
+#: src/strings.ts:2888
msgid "Billed monthly"
msgstr "Billed monthly"
-#: src/strings.ts:2603
+#: src/strings.ts:2627
msgid "billed monthly at {price}"
msgstr "billed monthly at {price}"
-#: src/strings.ts:2239
+#: src/strings.ts:2263
msgid "Billing history"
msgstr "Billing history"
-#: src/strings.ts:1199
+#: src/strings.ts:1223
msgid "Biometric unlocking"
msgstr "Biometric unlocking"
-#: src/strings.ts:814
+#: src/strings.ts:836
msgid "Biometric unlocking disabled"
msgstr "Biometric unlocking disabled"
-#: src/strings.ts:813
+#: src/strings.ts:835
msgid "Biometric unlocking enabled"
msgstr "Biometric unlocking enabled"
-#: src/strings.ts:1371
+#: src/strings.ts:1395
msgid "Biometrics authentication failed. Please try again."
msgstr "Biometrics authentication failed. Please try again."
-#: src/strings.ts:1208
+#: src/strings.ts:1232
msgid "Biometrics not enrolled"
msgstr "Biometrics not enrolled"
-#: src/strings.ts:2294
+#: src/strings.ts:2318
msgid "Bold"
msgstr "Bold"
-#: src/strings.ts:2447
+#: src/strings.ts:2471
msgid "Boost your productivity with Notebooks and organize your notes."
msgstr "Boost your productivity with Notebooks and organize your notes."
-#: src/strings.ts:1836
+#: src/strings.ts:1860
msgid "Browse"
msgstr "Browse"
-#: src/strings.ts:2311
+#: src/strings.ts:2335
msgid "Bullet list"
msgstr "Bullet list"
-#: src/strings.ts:408
+#: src/strings.ts:425
msgid "By"
msgstr "By"
-#: src/strings.ts:2624
+#: src/strings.ts:2648
msgid "By joining you agree to our"
msgstr "By joining you agree to our"
@@ -1435,68 +1443,68 @@ msgstr "By joining you agree to our"
msgid "By signing up, you agree to our "
msgstr "By signing up, you agree to our "
-#: src/strings.ts:2372
+#: src/strings.ts:2396
msgid "Callout"
msgstr "Callout"
-#: src/strings.ts:2552
+#: src/strings.ts:2576
msgid "Can I cancel my free trial anytime?"
msgstr "Can I cancel my free trial anytime?"
-#: src/strings.ts:551
+#: src/strings.ts:573
msgid "Cancel"
msgstr "Cancel"
-#: src/strings.ts:2575
+#: src/strings.ts:2599
msgid "Cancel anytime"
msgstr "Cancel anytime"
-#: src/strings.ts:2622
+#: src/strings.ts:2646
msgid "Cancel anytime, Subscription auto-renews."
msgstr "Cancel anytime, Subscription auto-renews."
-#: src/strings.ts:2574
+#: src/strings.ts:2598
msgid "Cancel anytime."
msgstr "Cancel anytime."
-#: src/strings.ts:519
+#: src/strings.ts:541
msgid "Cancel download"
msgstr "Cancel download"
-#: src/strings.ts:556
+#: src/strings.ts:578
msgid "Cancel login"
msgstr "Cancel login"
-#: src/strings.ts:1853
+#: src/strings.ts:1877
msgid "Cancel subscription"
msgstr "Cancel subscription"
-#: src/strings.ts:520
+#: src/strings.ts:542
msgid "Cancel upload"
msgstr "Cancel upload"
-#: src/strings.ts:2730
+#: src/strings.ts:2754
msgid "Cannot create more than 10 api keys at a time. Please revoke some existing keys before creating new ones."
msgstr "Cannot create more than 10 api keys at a time. Please revoke some existing keys before creating new ones."
-#: src/strings.ts:2339
+#: src/strings.ts:2363
msgid "Cell background color"
msgstr "Cell background color"
-#: src/strings.ts:2341
+#: src/strings.ts:2365
msgid "Cell border color"
msgstr "Cell border color"
-#: src/strings.ts:2343
-#: src/strings.ts:2344
+#: src/strings.ts:2367
+#: src/strings.ts:2368
msgid "Cell border width"
msgstr "Cell border width"
-#: src/strings.ts:2325
+#: src/strings.ts:2349
msgid "Cell properties"
msgstr "Cell properties"
-#: src/strings.ts:2342
+#: src/strings.ts:2366
msgid "Cell text color"
msgstr "Cell text color"
@@ -1504,135 +1512,135 @@ msgstr "Cell text color"
msgid "Change"
msgstr "Change"
-#: src/strings.ts:1077
+#: src/strings.ts:1101
msgid "Change 2FA fallback method"
msgstr "Change 2FA fallback method"
-#: src/strings.ts:680
+#: src/strings.ts:702
msgid "Change 2FA method"
msgstr "Change 2FA method"
-#: src/strings.ts:1220
+#: src/strings.ts:1244
msgid "Change app lock password"
msgstr "Change app lock password"
-#: src/strings.ts:1219
+#: src/strings.ts:1243
msgid "Change app lock pin"
msgstr "Change app lock pin"
-#: src/strings.ts:1254
+#: src/strings.ts:1278
msgid "Change backup location"
msgstr "Change backup location"
-#: src/strings.ts:468
+#: src/strings.ts:490
msgid "Change email address"
msgstr "Change email address"
-#: src/strings.ts:1147
+#: src/strings.ts:1171
msgid "Change how the app behaves in different situations"
msgstr "Change how the app behaves in different situations"
-#: src/strings.ts:2390
+#: src/strings.ts:2414
msgid "Change language"
msgstr "Change language"
-#: src/strings.ts:1275
+#: src/strings.ts:1299
msgid "Change notification sound"
msgstr "Change notification sound"
-#: src/strings.ts:437
+#: src/strings.ts:454
msgid "Change password"
msgstr "Change password"
-#: src/strings.ts:2638
+#: src/strings.ts:2662
msgid "Change plan"
msgstr "Change plan"
-#: src/strings.ts:1845
+#: src/strings.ts:1869
msgid "Change profile picture"
msgstr "Change profile picture"
-#: src/strings.ts:2913
+#: src/strings.ts:2937
msgid "Change profile picture, full name and email"
msgstr "Change profile picture, full name and email"
-#: src/strings.ts:2217
+#: src/strings.ts:2241
msgid "Change proxy"
msgstr "Change proxy"
-#: src/strings.ts:2238
+#: src/strings.ts:2262
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:1277
+#: src/strings.ts:1301
msgid "Change the sound that plays when you receive a notification"
msgstr "Change the sound that plays when you receive a notification"
-#: src/strings.ts:454
+#: src/strings.ts:471
msgid "Change vault password"
msgstr "Change vault password"
-#: src/strings.ts:1071
+#: src/strings.ts:1095
msgid "Change your account password"
msgstr "Change your account password"
-#: src/strings.ts:1073
+#: src/strings.ts:1097
msgid "Change your primary two-factor authentication method"
msgstr "Change your primary two-factor authentication method"
-#: src/strings.ts:2752
+#: src/strings.ts:2776
msgid "Changing Inbox PGP keys will delete all your unsynced inbox items."
msgstr "Changing Inbox PGP keys will delete all your unsynced inbox items."
-#: src/strings.ts:736
+#: src/strings.ts:758
msgid "Changing your password is irreversible process. Once your password is changed please make sure to save the new account recovery key."
msgstr "Changing your password is irreversible process. Once your password is changed please make sure to save the new account recovery key."
-#: src/strings.ts:2528
+#: src/strings.ts:2552
msgid "Characters"
msgstr "Characters"
-#: src/strings.ts:1318
+#: src/strings.ts:1342
msgid "Check for new version of Notesnook"
msgstr "Check for new version of Notesnook"
-#: src/strings.ts:1321
+#: src/strings.ts:1345
msgid "Check for new version of the app available on app launch"
msgstr "Check for new version of the app available on app launch"
-#: src/strings.ts:1317
+#: src/strings.ts:1341
msgid "Check for updates"
msgstr "Check for updates"
-#: src/strings.ts:1319
+#: src/strings.ts:1343
msgid "Check for updates automatically"
msgstr "Check for updates automatically"
-#: src/strings.ts:2190
+#: src/strings.ts:2214
msgid "Check roadmap"
msgstr "Check roadmap"
-#: src/strings.ts:686
+#: src/strings.ts:708
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:2439
+#: src/strings.ts:2463
msgid "Checking all attachments"
msgstr "Checking all attachments"
-#: src/strings.ts:377
+#: src/strings.ts:394
msgid "Checking for new version"
msgstr "Checking for new version"
-#: src/strings.ts:1732
+#: src/strings.ts:1756
msgid "Checking for updates"
msgstr "Checking for updates"
-#: src/strings.ts:2438
+#: src/strings.ts:2462
msgid "Checking note attachments"
msgstr "Checking note attachments"
-#: src/strings.ts:2313
+#: src/strings.ts:2337
msgid "Checklist"
msgstr "Checklist"
@@ -1640,119 +1648,119 @@ msgstr "Checklist"
msgid "Choose 2FA Method"
msgstr "Choose 2FA Method"
-#: src/strings.ts:2367
+#: src/strings.ts:2391
msgid "Choose a block to insert"
msgstr "Choose a block to insert"
-#: src/strings.ts:1824
+#: src/strings.ts:1848
msgid "Choose a recovery method"
msgstr "Choose a recovery method"
-#: src/strings.ts:2139
+#: src/strings.ts:2163
msgid "Choose backup format"
msgstr "Choose backup format"
-#: src/strings.ts:2403
+#: src/strings.ts:2427
msgid "Choose custom color"
msgstr "Choose custom color"
-#: src/strings.ts:1140
+#: src/strings.ts:1164
msgid "Choose from pre-built themes or create your own"
msgstr "Choose from pre-built themes or create your own"
-#: src/strings.ts:1155
+#: src/strings.ts:1179
msgid "Choose how dates are displayed in the app"
msgstr "Choose how dates are displayed in the app"
-#: src/strings.ts:2673
+#: src/strings.ts:2697
msgid "Choose how day is displayed in the app"
msgstr "Choose how day is displayed in the app"
-#: src/strings.ts:1180
+#: src/strings.ts:1204
msgid "Choose how the new note titles are formatted"
msgstr "Choose how the new note titles are formatted"
-#: src/strings.ts:1157
+#: src/strings.ts:1181
msgid "Choose how time is displayed in the app"
msgstr "Choose how time is displayed in the app"
-#: src/strings.ts:405
+#: src/strings.ts:422
msgid "Choose how you want to secure your notes locally."
msgstr "Choose how you want to secure your notes locally."
-#: src/strings.ts:2790
+#: src/strings.ts:2814
msgid "Choose how you want to set up your Inbox PGP keys:"
msgstr "Choose how you want to set up your Inbox PGP keys:"
-#: src/strings.ts:2678
+#: src/strings.ts:2702
msgid "Choose what day to display as the first day of the week"
msgstr "Choose what day to display as the first day of the week"
-#: src/strings.ts:1250
+#: src/strings.ts:1274
msgid "Choose where to save your backups"
msgstr "Choose where to save your backups"
-#: src/strings.ts:2099
+#: src/strings.ts:2123
msgid "Choose your style"
msgstr "Choose your style"
-#: src/strings.ts:2947
+#: src/strings.ts:2971
msgid "Choosing storage location..."
msgstr "Choosing storage location..."
-#: src/strings.ts:1644
+#: src/strings.ts:1668
msgid "cleaningUp"
msgstr "cleaningUp"
-#: src/strings.ts:1032
+#: src/strings.ts:1054
msgid "Clear"
msgstr "Clear"
-#: src/strings.ts:1897
+#: src/strings.ts:1921
msgid "Clear all cached attachments. Size: {cacheSize}"
msgstr "Clear all cached attachments. Size: {cacheSize}"
-#: src/strings.ts:2307
+#: src/strings.ts:2331
msgid "Clear all formatting"
msgstr "Clear all formatting"
-#: src/strings.ts:1898
+#: src/strings.ts:1922
msgid "Clear attachments cache?"
msgstr "Clear attachments cache?"
-#: src/strings.ts:1895
+#: src/strings.ts:1919
msgid "Clear cache"
msgstr "Clear cache"
-#: src/strings.ts:2401
+#: src/strings.ts:2425
msgid "Clear completed tasks"
msgstr "Clear completed tasks"
-#: src/strings.ts:1832
+#: src/strings.ts:1856
msgid "Clear data & reset account"
msgstr "Clear data & reset account"
-#: src/strings.ts:1161
+#: src/strings.ts:1185
msgid "Clear default notebook"
msgstr "Clear default notebook"
-#: src/strings.ts:2849
+#: src/strings.ts:2873
msgid "Clear history"
msgstr "Clear history"
-#: src/strings.ts:1031
+#: src/strings.ts:1053
msgid "Clear logs"
msgstr "Clear logs"
-#: src/strings.ts:2233
+#: src/strings.ts:2257
msgid "clear sessions"
msgstr "clear sessions"
-#: src/strings.ts:1344
+#: src/strings.ts:1368
msgid "Clear trash"
msgstr "Clear trash"
-#: src/strings.ts:1158
+#: src/strings.ts:1182
msgid "Clear trash interval"
msgstr "Clear trash interval"
@@ -1760,7 +1768,7 @@ msgstr "Clear trash interval"
msgid "Clear vault"
msgstr "Clear vault"
-#: src/strings.ts:1900
+#: src/strings.ts:1924
msgid ""
"Clearing attachments cache will perform the following actions:\n"
"\n"
@@ -1786,15 +1794,15 @@ msgstr ""
"\n"
"**Only use this for troubleshooting purposes. If you are having persistent issues, it is recommended that you reach out to us via support@streetwriters.co so we can help you resolve it permanently.**"
-#: src/strings.ts:2266
+#: src/strings.ts:2290
msgid "Clearing trash will permanently delete all the items in your trash. This action is IRREVERSIBLE."
msgstr "Clearing trash will permanently delete all the items in your trash. This action is IRREVERSIBLE."
-#: src/strings.ts:2918
+#: src/strings.ts:2942
msgid "Click here"
msgstr "Click here"
-#: src/strings.ts:2660
+#: src/strings.ts:2684
msgid "Click here to directly claim the promotion."
msgstr "Click here to directly claim the promotion."
@@ -1802,132 +1810,132 @@ msgstr "Click here to directly claim the promotion."
msgid "Click to deselect"
msgstr "Click to deselect"
-#: src/strings.ts:1894
+#: src/strings.ts:1918
msgid "Click to preview"
msgstr "Click to preview"
-#: src/strings.ts:1799
+#: src/strings.ts:1823
msgid "Click to remove"
msgstr "Click to remove"
-#: src/strings.ts:2430
+#: src/strings.ts:2454
msgid "Click to reset {title}"
msgstr "Click to reset {title}"
-#: src/strings.ts:2668
+#: src/strings.ts:2692
msgid "Click to save"
msgstr "Click to save"
-#: src/strings.ts:2664
+#: src/strings.ts:2688
msgid "Click to update"
msgstr "Click to update"
-#: src/strings.ts:1403
+#: src/strings.ts:1427
msgid "Close"
msgstr "Close"
-#: src/strings.ts:2810
+#: src/strings.ts:2834
msgid "Close ({seconds})"
msgstr "Close ({seconds})"
-#: src/strings.ts:2046
+#: src/strings.ts:2070
msgid "Close all"
msgstr "Close all"
-#: src/strings.ts:2488
+#: src/strings.ts:2512
msgid "Close all tabs"
msgstr "Close all tabs"
-#: src/strings.ts:2487
+#: src/strings.ts:2511
msgid "Close current tab"
msgstr "Close current tab"
-#: src/strings.ts:2043
+#: src/strings.ts:2067
msgid "Close others"
msgstr "Close others"
-#: src/strings.ts:2157
+#: src/strings.ts:2181
msgid "Close to system tray"
msgstr "Close to system tray"
-#: src/strings.ts:2045
+#: src/strings.ts:2069
msgid "Close to the left"
msgstr "Close to the left"
-#: src/strings.ts:2044
+#: src/strings.ts:2068
msgid "Close to the right"
msgstr "Close to the right"
-#: src/strings.ts:2581
+#: src/strings.ts:2605
msgid "cloud storage"
msgstr "cloud storage"
-#: src/strings.ts:2566
+#: src/strings.ts:2590
msgid "cloud storage space for storing images and files."
msgstr "cloud storage space for storing images and files."
-#: src/strings.ts:2305
+#: src/strings.ts:2329
msgid "Code"
msgstr "Code"
-#: src/strings.ts:2369
+#: src/strings.ts:2393
msgid "Code block"
msgstr "Code block"
-#: src/strings.ts:2306
+#: src/strings.ts:2330
msgid "Code remove"
msgstr "Code remove"
-#: src/strings.ts:434
+#: src/strings.ts:451
msgid "COLLAPSED"
msgstr "COLLAPSED"
-#: src/strings.ts:288
+#: src/strings.ts:302
msgid "color"
msgstr "color"
-#: src/strings.ts:298
-#: src/strings.ts:1871
+#: src/strings.ts:312
+#: src/strings.ts:1895
msgid "Color"
msgstr "Color"
-#: src/strings.ts:789
+#: src/strings.ts:811
msgid "Color #{color} already exists"
msgstr "Color #{color} already exists"
-#: src/strings.ts:2132
+#: src/strings.ts:2156
msgid "Color scheme"
msgstr "Color scheme"
-#: src/strings.ts:1513
+#: src/strings.ts:1537
msgid "Color title"
msgstr "Color title"
-#: src/strings.ts:2842
+#: src/strings.ts:2866
msgid "Colornote password for {filename}"
msgstr "Colornote password for {filename}"
-#: src/strings.ts:308
+#: src/strings.ts:322
msgid "colors"
msgstr "colors"
-#: src/strings.ts:318
+#: src/strings.ts:332
msgid "Colors"
msgstr "Colors"
-#: src/strings.ts:2323
+#: src/strings.ts:2347
msgid "Column properties"
msgstr "Column properties"
-#: src/strings.ts:2479
+#: src/strings.ts:2503
msgid "Command palette"
msgstr "Command palette"
-#: src/strings.ts:1293
+#: src/strings.ts:1317
msgid "Community"
msgstr "Community"
-#: src/strings.ts:2596
+#: src/strings.ts:2620
msgid "Compare Plans"
msgstr "Compare Plans"
@@ -1939,7 +1947,7 @@ msgstr "Completed"
msgid "Compress"
msgstr "Compress"
-#: src/strings.ts:1151
+#: src/strings.ts:1175
msgid "Compress images before uploading"
msgstr "Compress images before uploading"
@@ -1947,172 +1955,172 @@ 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:2811
+#: src/strings.ts:2835
msgid "Compressing"
msgstr "Compressing"
-#: src/strings.ts:2949
+#: src/strings.ts:2973
msgid "Compressing logs into an archive..."
msgstr "Compressing logs into an archive..."
-#: src/strings.ts:2815
+#: src/strings.ts:2839
msgid "Compression failed"
msgstr "Compression failed"
-#: src/strings.ts:2289
+#: src/strings.ts:2313
msgid "Configure"
msgstr "Configure"
-#: src/strings.ts:2444
+#: src/strings.ts:2468
msgid "Configure server URLs for Notesnook"
msgstr "Configure server URLs for Notesnook"
-#: src/strings.ts:684
+#: src/strings.ts:706
msgid "Confirm email"
msgstr "Confirm email"
-#: src/strings.ts:919
+#: src/strings.ts:941
msgid "Confirm email to publish note"
msgstr "Confirm email to publish note"
-#: src/strings.ts:1512
+#: src/strings.ts:1536
msgid "Confirm new password"
msgstr "Confirm new password"
-#: src/strings.ts:1507
+#: src/strings.ts:1531
msgid "Confirm password"
msgstr "Confirm password"
-#: src/strings.ts:2770
+#: src/strings.ts:2794
msgid "Confirm password required"
msgstr "Confirm password required"
-#: src/strings.ts:1511
+#: src/strings.ts:1535
msgid "Confirm pin"
msgstr "Confirm pin"
-#: src/strings.ts:1386
+#: src/strings.ts:1410
msgid "Confirm your email to sync notes"
msgstr "Confirm your email to sync notes"
-#: src/strings.ts:2692
+#: src/strings.ts:2716
msgid "Confirmation email sent"
msgstr "Confirmation email sent"
-#: src/strings.ts:2117
+#: src/strings.ts:2141
msgid "Congratulations!"
msgstr "Congratulations!"
-#: src/strings.ts:1663
+#: src/strings.ts:1687
msgid "Connected to all servers sucessfully."
msgstr "Connected to all servers sucessfully."
-#: src/strings.ts:2948
+#: src/strings.ts:2972
msgid "Consolidating network sync logs..."
msgstr "Consolidating network sync logs..."
-#: src/strings.ts:1698
+#: src/strings.ts:1722
msgid "Contact support"
msgstr "Contact support"
-#: src/strings.ts:1284
+#: src/strings.ts:1308
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"
-#: src/strings.ts:545
+#: src/strings.ts:567
msgid "Continue"
msgstr "Continue"
-#: src/strings.ts:1186
+#: src/strings.ts:1210
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:1270
+#: src/strings.ts:1294
msgid "Controls whether this device should receive reminder notifications."
msgstr "Controls whether this device should receive reminder notifications."
-#: src/strings.ts:2017
+#: src/strings.ts:2041
msgid "Copied"
msgstr "Copied"
-#: src/strings.ts:677
+#: src/strings.ts:699
msgid "Copy"
msgstr "Copy"
#. placeholder {0}: format ? " " + format : ""
-#: src/strings.ts:2063
+#: src/strings.ts:2087
msgid "Copy as{0}"
msgstr "Copy as{0}"
-#: src/strings.ts:681
+#: src/strings.ts:703
msgid "Copy codes"
msgstr "Copy codes"
-#: src/strings.ts:928
+#: src/strings.ts:950
msgid "Copy ID"
msgstr "Copy ID"
-#: src/strings.ts:2285
+#: src/strings.ts:2309
msgid "Copy image"
msgstr "Copy image"
-#: src/strings.ts:926
+#: src/strings.ts:948
msgid "Copy link"
msgstr "Copy link"
-#: src/strings.ts:2284
+#: src/strings.ts:2308
msgid "Copy link text"
msgstr "Copy link text"
-#: src/strings.ts:2834
+#: src/strings.ts:2858
msgid "Copy logs"
msgstr "Copy logs"
-#: src/strings.ts:457
+#: src/strings.ts:474
msgid "Copy note"
msgstr "Copy note"
-#: src/strings.ts:593
+#: src/strings.ts:615
msgid "Copy to clipboard"
msgstr "Copy to clipboard"
-#: src/strings.ts:2714
+#: src/strings.ts:2738
msgid "Copy your API key and store it somewhere safe."
msgstr "Copy your API key and store it somewhere safe."
-#: src/strings.ts:1646
+#: src/strings.ts:1670
msgid "Copying backup files to cache"
msgstr "Copying backup files to cache"
-#: src/strings.ts:1190
+#: src/strings.ts:1214
msgid "CORS bypass"
msgstr "CORS bypass"
-#: src/strings.ts:2013
+#: src/strings.ts:2037
msgid "Could not activate trial. Please try again later."
msgstr "Could not activate trial. Please try again later."
-#: src/strings.ts:2031
+#: src/strings.ts:2055
msgid "Could not clear trash."
msgstr "Could not clear trash."
-#: src/strings.ts:1666
+#: src/strings.ts:1690
msgid "Could not connect to {server}."
msgstr "Could not connect to {server}."
-#: src/strings.ts:1978
+#: src/strings.ts:2002
msgid "Could not convert note to {format}."
msgstr "Could not convert note to {format}."
-#: src/strings.ts:771
+#: src/strings.ts:793
msgid "Could not create backup"
msgstr "Could not create backup"
-#: src/strings.ts:561
+#: src/strings.ts:583
msgid "Could not unlock"
msgstr "Could not unlock"
-#: src/strings.ts:2954
+#: src/strings.ts:2978
msgid "Couldn't download logs"
msgstr "Couldn't download logs"
@@ -2120,327 +2128,327 @@ msgstr "Couldn't download logs"
msgid "Create"
msgstr "Create"
-#: src/strings.ts:732
+#: src/strings.ts:754
msgid "Create a group"
msgstr "Create a group"
-#: src/strings.ts:956
+#: src/strings.ts:978
msgid "Create a new note"
msgstr "Create a new note"
-#: src/strings.ts:969
+#: src/strings.ts:991
msgid "Create a note first"
msgstr "Create a note first"
-#: src/strings.ts:672
+#: src/strings.ts:694
msgid "Create a shortcut"
msgstr "Create a shortcut"
-#: src/strings.ts:575
+#: src/strings.ts:597
msgid "Create a tag to group related notes together."
msgstr "Create a tag to group related notes together."
-#: src/strings.ts:1876
+#: src/strings.ts:1900
msgid "Create account"
msgstr "Create account"
-#: src/strings.ts:2707
+#: src/strings.ts:2731
msgid "Create API Key"
msgstr "Create API Key"
-#: src/strings.ts:583
+#: src/strings.ts:605
msgid "Create link"
msgstr "Create link"
-#: src/strings.ts:2726
+#: src/strings.ts:2750
msgid "Create new key"
msgstr "Create new key"
-#: src/strings.ts:1538
+#: src/strings.ts:1562
msgid "Create notebook"
msgstr "Create notebook"
-#: src/strings.ts:1495
+#: src/strings.ts:1519
msgid "Create shortcut of this notebook in side menu"
msgstr "Create shortcut of this notebook in side menu"
-#: src/strings.ts:2959
+#: src/strings.ts:2983
msgid "Create sub-notebook"
msgstr "Create sub-notebook"
-#: src/strings.ts:1409
+#: src/strings.ts:1433
msgid "Create unlimited notebooks with Notesnook Pro"
msgstr "Create unlimited notebooks with Notesnook Pro"
-#: src/strings.ts:1408
+#: src/strings.ts:1432
msgid "Create unlimited tags with Notesnook Pro"
msgstr "Create unlimited tags with Notesnook Pro"
-#: src/strings.ts:1410
+#: src/strings.ts:1434
msgid "Create unlimited vaults with Notesnook Pro"
msgstr "Create unlimited vaults with Notesnook Pro"
-#: src/strings.ts:450
+#: src/strings.ts:467
msgid "Create vault"
msgstr "Create vault"
-#: src/strings.ts:524
+#: src/strings.ts:546
msgid "Create your account"
msgstr "Create your account"
-#: src/strings.ts:2708
+#: src/strings.ts:2732
msgid "Create your API key"
msgstr "Create your API key"
-#: src/strings.ts:2725
+#: src/strings.ts:2749
msgid "Create your first api key to get started."
msgstr "Create your first api key to get started."
-#: src/strings.ts:2881
+#: src/strings.ts:2905
msgid "Create your first tag to start organizing your workspace."
msgstr "Create your first tag to start organizing your workspace."
-#: src/strings.ts:2746
+#: src/strings.ts:2770
msgid "Created"
msgstr "Created"
-#: src/strings.ts:2267
+#: src/strings.ts:2291
msgid "Created at"
msgstr "Created at"
-#: src/strings.ts:2745
+#: src/strings.ts:2769
msgid "Created on"
msgstr "Created on"
#. placeholder {0}: type === "full" ? " full" : ""
-#: src/strings.ts:1366
+#: src/strings.ts:1390
msgid "Creating a{0} backup"
msgstr "Creating a{0} backup"
-#: src/strings.ts:2717
+#: src/strings.ts:2741
msgid "Creating..."
msgstr "Creating..."
-#: src/strings.ts:2826
+#: src/strings.ts:2850
msgid "Creation date cannot be after last edited date"
msgstr "Creation date cannot be after last edited date"
-#: src/strings.ts:2076
+#: src/strings.ts:2100
msgid "Credentials"
msgstr "Credentials"
-#: src/strings.ts:2102
+#: src/strings.ts:2126
msgid "Cross platform & 100% encrypted"
msgstr "Cross platform & 100% encrypted"
-#: src/strings.ts:743
+#: src/strings.ts:765
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:2930
+#: src/strings.ts:2954
msgid "Current date"
msgstr "Current date"
-#: src/strings.ts:2932
+#: src/strings.ts:2956
msgid "Current day"
msgstr "Current day"
-#: src/strings.ts:1863
+#: src/strings.ts:1887
msgid "Current note"
msgstr "Current note"
-#: src/strings.ts:1501
-#: src/strings.ts:1509
+#: src/strings.ts:1525
+#: src/strings.ts:1533
msgid "Current password"
msgstr "Current password"
-#: src/strings.ts:2779
+#: src/strings.ts:2803
msgid "Current password required"
msgstr "Current password required"
-#: src/strings.ts:1251
+#: src/strings.ts:1275
msgid "Current path: {path}"
msgstr "Current path: {path}"
-#: src/strings.ts:1508
+#: src/strings.ts:1532
msgid "Current pin"
msgstr "Current pin"
-#: src/strings.ts:1800
+#: src/strings.ts:1824
msgid "Current Plan"
msgstr "Current Plan"
-#: src/strings.ts:2931
+#: src/strings.ts:2955
msgid "Current time"
msgstr "Current time"
-#: src/strings.ts:2037
+#: src/strings.ts:2061
msgid "Custom"
msgstr "Custom"
-#: src/strings.ts:2168
+#: src/strings.ts:2192
msgid "Custom dictionary words"
msgstr "Custom dictionary words"
-#: src/strings.ts:1133
+#: src/strings.ts:1157
msgid "Customization"
msgstr "Customization"
-#: src/strings.ts:1138
+#: src/strings.ts:1162
msgid "Customize the appearance of the app with custom themes"
msgstr "Customize the appearance of the app with custom themes"
-#: src/strings.ts:1165
+#: src/strings.ts:1189
msgid "Customize the note editor"
msgstr "Customize the note editor"
-#: src/strings.ts:1167
+#: src/strings.ts:1191
msgid "Customize the toolbar in the note editor"
msgstr "Customize the toolbar in the note editor"
-#: src/strings.ts:1166
+#: src/strings.ts:1190
msgid "Customize toolbar"
msgstr "Customize toolbar"
-#: src/strings.ts:2283
+#: src/strings.ts:2307
msgid "Cut"
msgstr "Cut"
#: src/strings.ts:167
-#: src/strings.ts:1595
+#: src/strings.ts:1619
msgid "Daily"
msgstr "Daily"
-#: src/strings.ts:726
+#: src/strings.ts:748
msgid "Dark"
msgstr "Dark"
-#: src/strings.ts:1144
+#: src/strings.ts:1168
msgid "Dark mode"
msgstr "Dark mode"
-#: src/strings.ts:2133
+#: src/strings.ts:2157
msgid "Dark or light, we won't judge."
msgstr "Dark or light, we won't judge."
-#: src/strings.ts:2914
+#: src/strings.ts:2938
msgid "Data and storage"
msgstr "Data and storage"
-#: src/strings.ts:1574
+#: src/strings.ts:1598
msgid "Database setup failed, could not get database key"
msgstr "Database setup failed, could not get database key"
-#: src/strings.ts:1866
+#: src/strings.ts:1890
msgid "Date"
msgstr "Date"
-#: src/strings.ts:2142
+#: src/strings.ts:2166
msgid "Date & time"
msgstr "Date & time"
-#: src/strings.ts:655
+#: src/strings.ts:677
msgid "Date created"
msgstr "Date created"
-#: src/strings.ts:658
+#: src/strings.ts:680
msgid "Date deleted"
msgstr "Date deleted"
-#: src/strings.ts:654
+#: src/strings.ts:676
msgid "Date edited"
msgstr "Date edited"
-#: src/strings.ts:1154
+#: src/strings.ts:1178
msgid "Date format"
msgstr "Date format"
-#: src/strings.ts:653
+#: src/strings.ts:675
msgid "Date modified"
msgstr "Date modified"
-#: src/strings.ts:2798
+#: src/strings.ts:2822
msgid "Date synced"
msgstr "Date synced"
-#: src/strings.ts:2069
+#: src/strings.ts:2093
msgid "Date uploaded"
msgstr "Date uploaded"
-#: src/strings.ts:1868
+#: src/strings.ts:1892
msgid "Day"
msgstr "Day"
-#: src/strings.ts:2672
+#: src/strings.ts:2696
msgid "Day format"
msgstr "Day format"
-#: src/strings.ts:2065
+#: src/strings.ts:2089
msgid "Deactivate"
msgstr "Deactivate"
-#: src/strings.ts:1029
+#: src/strings.ts:1051
msgid "Debug log copied!"
msgstr "Debug log copied!"
-#: src/strings.ts:1291
+#: src/strings.ts:1315
msgid "Debug logs"
msgstr "Debug logs"
-#: src/strings.ts:1030
+#: src/strings.ts:1052
msgid "Debug logs downloaded"
msgstr "Debug logs downloaded"
-#: src/strings.ts:2951
+#: src/strings.ts:2975
msgid "Debug logs downloaded!"
msgstr "Debug logs downloaded!"
-#: src/strings.ts:1288
+#: src/strings.ts:1312
msgid "Debugging"
msgstr "Debugging"
-#: src/strings.ts:2432
+#: src/strings.ts:2456
msgid "Decrease {title}"
msgstr "Decrease {title}"
-#: src/strings.ts:662
-#: src/strings.ts:2035
+#: src/strings.ts:684
+#: src/strings.ts:2059
msgid "Default"
msgstr "Default"
-#: src/strings.ts:1177
+#: src/strings.ts:1201
msgid "Default font family"
msgstr "Default font family"
-#: src/strings.ts:1178
+#: src/strings.ts:1202
msgid "Default font family in editor"
msgstr "Default font family in editor"
-#: src/strings.ts:1175
+#: src/strings.ts:1199
msgid "Default font size"
msgstr "Default font size"
-#: src/strings.ts:1176
+#: src/strings.ts:1200
msgid "Default font size in editor"
msgstr "Default font size in editor"
-#: src/strings.ts:1163
+#: src/strings.ts:1187
msgid "Default notebook cleared"
msgstr "Default notebook cleared"
-#: src/strings.ts:1149
+#: src/strings.ts:1173
msgid "Default screen to open on app launch"
msgstr "Default screen to open on app launch"
-#: src/strings.ts:2519
+#: src/strings.ts:2543
msgid "Default sidebar tab"
msgstr "Default sidebar tab"
-#: src/strings.ts:1271
+#: src/strings.ts:1295
msgid "Default snooze time"
msgstr "Default snooze time"
-#: src/strings.ts:1323
+#: src/strings.ts:1347
msgid "Default sound"
msgstr "Default sound"
@@ -2448,59 +2456,63 @@ msgstr "Default sound"
msgid "Delete"
msgstr "Delete"
-#: src/strings.ts:1094
+#: src/strings.ts:1118
msgid "Delete account"
msgstr "Delete account"
-#: src/strings.ts:2805
+#: src/strings.ts:271
+msgid "Delete after viewing"
+msgstr "Delete after viewing"
+
+#: src/strings.ts:2829
msgid "Delete all"
msgstr "Delete all"
-#: src/strings.ts:2851
+#: src/strings.ts:2875
msgid "Delete all version history for this note?"
msgstr "Delete all version history for this note?"
-#: src/strings.ts:2773
+#: src/strings.ts:2797
msgid "Delete attachment"
msgstr "Delete attachment"
-#: src/strings.ts:1341
+#: src/strings.ts:1365
msgid "Delete collapsed section"
msgstr "Delete collapsed section"
-#: src/strings.ts:2330
+#: src/strings.ts:2354
msgid "Delete column"
msgstr "Delete column"
-#: src/strings.ts:2689
+#: src/strings.ts:2713
msgid "Delete data"
msgstr "Delete data"
-#: src/strings.ts:1336
+#: src/strings.ts:1360
msgid "Delete group"
msgstr "Delete group"
-#: src/strings.ts:2845
+#: src/strings.ts:2869
msgid "Delete item"
msgstr "Delete item"
-#: src/strings.ts:2404
+#: src/strings.ts:2428
msgid "Delete mode"
msgstr "Delete mode"
-#: src/strings.ts:564
+#: src/strings.ts:586
msgid "Delete notes in this vault permanently"
msgstr "Delete notes in this vault permanently"
-#: src/strings.ts:571
+#: src/strings.ts:593
msgid "Delete permanently"
msgstr "Delete permanently"
-#: src/strings.ts:2337
+#: src/strings.ts:2361
msgid "Delete row"
msgstr "Delete row"
-#: src/strings.ts:2338
+#: src/strings.ts:2362
msgid "Delete table"
msgstr "Delete table"
@@ -2508,7 +2520,7 @@ msgstr "Delete table"
msgid "Delete vault"
msgstr "Delete vault"
-#: src/strings.ts:1198
+#: src/strings.ts:1222
msgid "Delete vault (and optionally remove all notes)."
msgstr "Delete vault (and optionally remove all notes)."
@@ -2516,39 +2528,39 @@ msgstr "Delete vault (and optionally remove all notes)."
msgid "Deleted on {date}"
msgstr "Deleted on {date}"
-#: src/strings.ts:1955
+#: src/strings.ts:1979
msgid "Deleting"
msgstr "Deleting"
-#: src/strings.ts:1865
+#: src/strings.ts:1889
msgid "Description"
msgstr "Description"
-#: src/strings.ts:2143
+#: src/strings.ts:2167
msgid "Desktop app"
msgstr "Desktop app"
-#: src/strings.ts:2147
+#: src/strings.ts:2171
msgid "Desktop integration"
msgstr "Desktop integration"
-#: src/strings.ts:2797
+#: src/strings.ts:2821
msgid "Details"
msgstr "Details"
-#: src/strings.ts:887
+#: src/strings.ts:909
msgid "Did you save recovery key?"
msgstr "Did you save recovery key?"
-#: src/strings.ts:1398
+#: src/strings.ts:1422
msgid "Disable"
msgstr "Disable"
-#: src/strings.ts:2038
+#: src/strings.ts:2062
msgid "Disable editor margins"
msgstr "Disable editor margins"
-#: src/strings.ts:2701
+#: src/strings.ts:2725
msgid "Disable Inbox API"
msgstr "Disable Inbox API"
@@ -2556,11 +2568,11 @@ msgstr "Disable Inbox API"
msgid "Disabled"
msgstr "Disabled"
-#: src/strings.ts:2703
+#: src/strings.ts:2727
msgid "Disabling will delete all your unsynced inbox items. Additionally, disabling will revoke all existing API keys, they will no longer work. Are you sure?"
msgstr "Disabling will delete all your unsynced inbox items. Additionally, disabling will revoke all existing API keys, they will no longer work. Are you sure?"
-#: src/strings.ts:567
+#: src/strings.ts:589
msgid "Discard"
msgstr "Discard"
@@ -2568,11 +2580,11 @@ msgstr "Discard"
msgid "Discord."
msgstr "Discord."
-#: src/strings.ts:1624
+#: src/strings.ts:1648
msgid "Dismiss"
msgstr "Dismiss"
-#: src/strings.ts:1677
+#: src/strings.ts:1701
msgid "Dismiss announcement"
msgstr "Dismiss announcement"
@@ -2580,27 +2592,27 @@ msgstr "Dismiss announcement"
msgid "Disputed"
msgstr "Disputed"
-#: src/strings.ts:272
+#: src/strings.ts:286
msgid "Do you enjoy using Notesnook?"
msgstr "Do you enjoy using Notesnook?"
-#: src/strings.ts:1285
+#: src/strings.ts:1309
msgid "Documentation"
msgstr "Documentation"
-#: src/strings.ts:759
+#: src/strings.ts:781
msgid "Documents"
msgstr "Documents"
-#: src/strings.ts:1002
+#: src/strings.ts:1024
msgid "Don't have access to your authenticator app?"
msgstr "Don't have access to your authenticator app?"
-#: src/strings.ts:1009
+#: src/strings.ts:1031
msgid "Don't have access to your email address?"
msgstr "Don't have access to your email address?"
-#: src/strings.ts:1018
+#: src/strings.ts:1040
msgid "Don't have access to your phone number?"
msgstr "Don't have access to your phone number?"
@@ -2608,23 +2620,23 @@ msgstr "Don't have access to your phone number?"
msgid "Don't have an account?"
msgstr "Don't have an account?"
-#: src/strings.ts:1859
+#: src/strings.ts:1883
msgid "Don't have backup file?"
msgstr "Don't have backup file?"
-#: src/strings.ts:1858
+#: src/strings.ts:1882
msgid "Don't have your account recovery key?"
msgstr "Don't have your account recovery key?"
-#: src/strings.ts:1021
+#: src/strings.ts:1043
msgid "Don't have your recovery codes?"
msgstr "Don't have your recovery codes?"
-#: src/strings.ts:1837
+#: src/strings.ts:1861
msgid "Don't show again"
msgstr "Don't show again"
-#: src/strings.ts:1838
+#: src/strings.ts:1862
msgid "Don't show again on this device?"
msgstr "Don't show again on this device?"
@@ -2632,68 +2644,68 @@ msgstr "Don't show again on this device?"
msgid "Done"
msgstr "Done"
-#: src/strings.ts:1171
+#: src/strings.ts:1195
msgid "Double spaced lines"
msgstr "Double spaced lines"
-#: src/strings.ts:511
+#: src/strings.ts:533
msgid "Download"
msgstr "Download"
-#: src/strings.ts:1843
+#: src/strings.ts:1867
msgid "Download all attachments"
msgstr "Download all attachments"
-#: src/strings.ts:2945
+#: src/strings.ts:2969
msgid "Download and share debug logs from the app"
msgstr "Download and share debug logs from the app"
-#: src/strings.ts:2353
+#: src/strings.ts:2377
msgid "Download attachment"
msgstr "Download attachment"
-#: src/strings.ts:1887
+#: src/strings.ts:1911
msgid "Download backup file"
msgstr "Download backup file"
-#: src/strings.ts:518
+#: src/strings.ts:540
msgid "Download cancelled"
msgstr "Download cancelled"
-#: src/strings.ts:2944
+#: src/strings.ts:2968
msgid "Download debug logs"
msgstr "Download debug logs"
-#: src/strings.ts:2245
+#: src/strings.ts:2269
msgid "Download everything including attachments on sync"
msgstr "Download everything including attachments on sync"
-#: src/strings.ts:1312
+#: src/strings.ts:1336
msgid "Download on desktop"
msgstr "Download on desktop"
-#: src/strings.ts:808
+#: src/strings.ts:830
msgid "Download started... Please wait"
msgstr "Download started... Please wait"
-#: src/strings.ts:516
+#: src/strings.ts:538
msgid "Download successful"
msgstr "Download successful"
-#: src/strings.ts:669
+#: src/strings.ts:691
msgid "Download update"
msgstr "Download update"
-#: src/strings.ts:510
+#: src/strings.ts:532
msgid "Downloaded"
msgstr "Downloaded"
#: src/strings.ts:64
-#: src/strings.ts:509
+#: src/strings.ts:531
msgid "Downloading"
msgstr "Downloading"
-#: src/strings.ts:509
+#: src/strings.ts:531
msgid "Downloading ({progress})"
msgstr "Downloading ({progress})"
@@ -2701,125 +2713,129 @@ msgstr "Downloading ({progress})"
msgid "Downloading attachments"
msgstr "Downloading attachments"
-#: src/strings.ts:1731
+#: src/strings.ts:1755
msgid "Downloading images"
msgstr "Downloading images"
-#: src/strings.ts:1797
+#: src/strings.ts:1821
msgid "Drag & drop files here, or click to select files"
msgstr "Drag & drop files here, or click to select files"
-#: src/strings.ts:1796
+#: src/strings.ts:1820
msgid "Drop the files here"
msgstr "Drop the files here"
-#: src/strings.ts:1690
+#: src/strings.ts:1714
msgid "Drop your files here to attach"
msgstr "Drop your files here to attach"
-#: src/strings.ts:2606
+#: src/strings.ts:2630
msgid "Due {date}"
msgstr "Due {date}"
-#: src/strings.ts:657
+#: src/strings.ts:679
msgid "Due date"
msgstr "Due date"
-#: src/strings.ts:2604
+#: src/strings.ts:2628
msgid "Due today"
msgstr "Due today"
-#: src/strings.ts:942
+#: src/strings.ts:964
msgid "Duplicate"
msgstr "Duplicate"
-#: src/strings.ts:2710
+#: src/strings.ts:2734
msgid "e.g., Todo integration"
msgstr "e.g., Todo integration"
-#: src/strings.ts:646
+#: src/strings.ts:668
msgid "Earliest first"
msgstr "Earliest first"
-#: src/strings.ts:2456
+#: src/strings.ts:2480
msgid "Easy access"
msgstr "Easy access"
-#: src/strings.ts:1804
+#: src/strings.ts:1828
msgid "Edit"
msgstr "Edit"
-#: src/strings.ts:2679
+#: src/strings.ts:2703
msgid "Edit creation date"
msgstr "Edit creation date"
-#: src/strings.ts:529
+#: src/strings.ts:551
msgid "Edit internal link"
msgstr "Edit internal link"
-#: src/strings.ts:2272
-#: src/strings.ts:2300
+#: src/strings.ts:2296
+#: src/strings.ts:2324
msgid "Edit link"
msgstr "Edit link"
-#: src/strings.ts:2512
+#: src/strings.ts:2536
msgid "Edit profile"
msgstr "Edit profile"
-#: src/strings.ts:1329
+#: src/strings.ts:1353
msgid "Edit profile picture"
msgstr "Edit profile picture"
-#: src/strings.ts:1846
+#: src/strings.ts:278
+msgid "Edit published monograph"
+msgstr "Edit published monograph"
+
+#: src/strings.ts:1870
msgid "Edit your full name"
msgstr "Edit your full name"
-#: src/strings.ts:1164
-#: src/strings.ts:1553
+#: src/strings.ts:1188
+#: src/strings.ts:1577
msgid "Editor"
msgstr "Editor"
-#: src/strings.ts:2635
+#: src/strings.ts:2659
msgid "Education plan"
msgstr "Education plan"
-#: src/strings.ts:1505
+#: src/strings.ts:1529
msgid "Email"
msgstr "Email"
-#: src/strings.ts:2469
+#: src/strings.ts:2493
msgid "Email copied"
msgstr "Email copied"
-#: src/strings.ts:774
+#: src/strings.ts:796
msgid "Email is required"
msgstr "Email is required"
-#: src/strings.ts:766
+#: src/strings.ts:788
msgid "Email not confirmed"
msgstr "Email not confirmed"
-#: src/strings.ts:1580
+#: src/strings.ts:1604
msgid "Email or password incorrect"
msgstr "Email or password incorrect"
-#: src/strings.ts:1282
+#: src/strings.ts:1306
msgid "Email support"
msgstr "Email support"
-#: src/strings.ts:873
+#: src/strings.ts:895
msgid "Email updated to {email}"
msgstr "Email updated to {email}"
-#: src/strings.ts:2379
+#: src/strings.ts:2403
msgid "Embed"
msgstr "Embed"
-#: src/strings.ts:2359
+#: src/strings.ts:2383
msgid "Embed properties"
msgstr "Embed properties"
-#: src/strings.ts:2355
+#: src/strings.ts:2379
msgid "Embed settings"
msgstr "Embed settings"
@@ -2827,47 +2843,47 @@ msgstr "Embed settings"
msgid "Enable"
msgstr "Enable"
-#: src/strings.ts:1153
+#: src/strings.ts:1177
msgid "Enable (Recommended)"
msgstr "Enable (Recommended)"
-#: src/strings.ts:1207
+#: src/strings.ts:1231
msgid "Enable app lock"
msgstr "Enable app lock"
-#: src/strings.ts:2943
+#: src/strings.ts:2967
msgid "Enable biometric unlock"
msgstr "Enable biometric unlock"
-#: src/strings.ts:2039
+#: src/strings.ts:2063
msgid "Enable editor margins"
msgstr "Enable editor margins"
-#: src/strings.ts:2696
+#: src/strings.ts:2720
msgid "Enable Inbox API"
msgstr "Enable Inbox API"
-#: src/strings.ts:2503
+#: src/strings.ts:2527
msgid "Enable ligatures for common symbols like →, ←, etc"
msgstr "Enable ligatures for common symbols like →, ←, etc"
-#: src/strings.ts:2419
+#: src/strings.ts:2443
msgid "Enable regex"
msgstr "Enable regex"
-#: src/strings.ts:2164
+#: src/strings.ts:2188
msgid "Enable spell checker"
msgstr "Enable spell checker"
-#: src/strings.ts:498
+#: src/strings.ts:520
msgid "Enable two-factor authentication to secure your account."
msgstr "Enable two-factor authentication to secure your account."
-#: src/strings.ts:2697
+#: src/strings.ts:2721
msgid "Enable/Disable Inbox API"
msgstr "Enable/Disable Inbox API"
-#: src/strings.ts:1256
+#: src/strings.ts:1280
msgid "Encrypt your backups for added security"
msgstr "Encrypt your backups for added security"
@@ -2875,55 +2891,55 @@ msgstr "Encrypt your backups for added security"
msgid "Encrypted and synced"
msgstr "Encrypted and synced"
-#: src/strings.ts:2279
+#: src/strings.ts:2303
msgid "Encrypted backup"
msgstr "Encrypted backup"
-#: src/strings.ts:1684
+#: src/strings.ts:1708
msgid "Encrypted, private, secure."
msgstr "Encrypted, private, secure."
-#: src/strings.ts:2812
+#: src/strings.ts:2836
msgid "Encrypting"
msgstr "Encrypting"
-#: src/strings.ts:958
+#: src/strings.ts:980
msgid "Encrypting attachment"
msgstr "Encrypting attachment"
-#: src/strings.ts:1870
+#: src/strings.ts:1894
msgid "Encryption key"
msgstr "Encryption key"
-#: src/strings.ts:827
+#: src/strings.ts:849
msgid "End-to-end encrypted."
msgstr "End-to-end encrypted."
-#: src/strings.ts:2871
+#: src/strings.ts:2895
msgid "End-to-end encryption (XChaCha20)"
msgstr "End-to-end encryption (XChaCha20)"
-#: src/strings.ts:402
+#: src/strings.ts:419
msgid "Enter 6 digit code"
msgstr "Enter 6 digit code"
-#: src/strings.ts:1097
+#: src/strings.ts:1121
msgid "Enter account password"
msgstr "Enter account password"
-#: src/strings.ts:1098
+#: src/strings.ts:1122
msgid "Enter account password to proceed."
msgstr "Enter account password to proceed."
-#: src/strings.ts:1879
+#: src/strings.ts:1903
msgid "Enter account recovery key"
msgstr "Enter account recovery key"
-#: src/strings.ts:1037
+#: src/strings.ts:1059
msgid "Enter app lock password"
msgstr "Enter app lock password"
-#: src/strings.ts:1040
+#: src/strings.ts:1062
msgid "Enter app lock pin"
msgstr "Enter app lock pin"
@@ -2931,39 +2947,43 @@ msgstr "Enter app lock pin"
msgid "Enter code from authenticator app"
msgstr "Enter code from authenticator app"
-#: src/strings.ts:1535
+#: src/strings.ts:1559
msgid "Enter email address"
msgstr "Enter email address"
-#: src/strings.ts:2407
+#: src/strings.ts:2431
msgid "Enter embed source URL"
msgstr "Enter embed source URL"
-#: src/strings.ts:1335
+#: src/strings.ts:1359
msgid "Enter full name"
msgstr "Enter full name"
-#: src/strings.ts:1728
+#: src/strings.ts:1752
msgid "Enter fullscreen"
msgstr "Enter fullscreen"
-#: src/strings.ts:1514
+#: src/strings.ts:282
+msgid "Enter new password"
+msgstr "Enter new password"
+
+#: src/strings.ts:1538
msgid "Enter notebook description"
msgstr "Enter notebook description"
-#: src/strings.ts:872
+#: src/strings.ts:894
msgid "Enter notebook title"
msgstr "Enter notebook title"
-#: src/strings.ts:793
+#: src/strings.ts:815
msgid "Enter password"
msgstr "Enter password"
-#: src/strings.ts:2125
+#: src/strings.ts:2149
msgid "Enter pin or password to enable app lock."
msgstr "Enter pin or password to enable app lock."
-#: src/strings.ts:1022
+#: src/strings.ts:1044
msgid "Enter recovery code"
msgstr "Enter recovery code"
@@ -2979,31 +2999,31 @@ 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:2471
+#: src/strings.ts:2495
msgid "Enter the gift code to redeem your subscription."
msgstr "Enter the gift code to redeem your subscription."
-#: src/strings.ts:2671
+#: src/strings.ts:2695
msgid "Enter title"
msgstr "Enter title"
-#: src/strings.ts:1517
+#: src/strings.ts:1541
msgid "Enter verification code sent to your new email"
msgstr "Enter verification code sent to your new email"
-#: src/strings.ts:1516
+#: src/strings.ts:1540
msgid "Enter your new email"
msgstr "Enter your new email"
-#: src/strings.ts:2901
+#: src/strings.ts:2925
msgid "Enter your password"
msgstr "Enter your password"
-#: src/strings.ts:2839
+#: src/strings.ts:2863
msgid "Enter your PGP private key"
msgstr "Enter your PGP private key"
-#: src/strings.ts:2838
+#: src/strings.ts:2862
msgid "Enter your PGP public key"
msgstr "Enter your PGP public key"
@@ -3011,156 +3031,156 @@ msgstr "Enter your PGP public key"
msgid "Enter your recovery code."
msgstr "Enter your recovery code."
-#: src/strings.ts:2126
+#: src/strings.ts:2150
msgid "Enter your username"
msgstr "Enter your username"
-#: src/strings.ts:2463
+#: src/strings.ts:2487
msgid "Error"
msgstr "Error"
-#: src/strings.ts:1581
+#: src/strings.ts:1605
msgid "Error applying promo code"
msgstr "Error applying promo code"
-#: src/strings.ts:749
+#: src/strings.ts:771
msgid "Error downloading file: {message}"
msgstr "Error downloading file: {message}"
-#: src/strings.ts:1541
+#: src/strings.ts:1565
msgid "Error getting codes"
msgstr "Error getting codes"
-#: src/strings.ts:416
+#: src/strings.ts:433
msgid "Error loading themes"
msgstr "Error loading themes"
-#: src/strings.ts:1093
+#: src/strings.ts:1117
msgid "Error logging out"
msgstr "Error logging out"
-#: src/strings.ts:1027
+#: src/strings.ts:1049
msgid "Error sending 2FA code"
msgstr "Error sending 2FA code"
-#: src/strings.ts:761
+#: src/strings.ts:783
msgid "Errors"
msgstr "Errors"
-#: src/strings.ts:1723
+#: src/strings.ts:1747
msgid "Errors in {count} attachments"
msgstr "Errors in {count} attachments"
-#: src/strings.ts:2508
+#: src/strings.ts:2532
msgid "Essential plan"
msgstr "Essential plan"
-#: src/strings.ts:1655
+#: src/strings.ts:1679
msgid "Events server"
msgstr "Events server"
-#: src/strings.ts:2449
+#: src/strings.ts:2473
msgid "Every Notebook can have notes and sub notebooks."
msgstr "Every Notebook can have notes and sub notebooks."
-#: src/strings.ts:2451
+#: src/strings.ts:2475
msgid "Everything related to my job in one place."
msgstr "Everything related to my job in one place."
-#: src/strings.ts:2460
+#: src/strings.ts:2484
msgid "Everything related to my school in one place."
msgstr "Everything related to my school in one place."
-#: src/strings.ts:2477
+#: src/strings.ts:2501
msgid "Execute"
msgstr "Execute"
-#: src/strings.ts:2476
+#: src/strings.ts:2500
msgid "Execute a command..."
msgstr "Execute a command..."
-#: src/strings.ts:2040
+#: src/strings.ts:2064
msgid "Exit fullscreen"
msgstr "Exit fullscreen"
-#: src/strings.ts:2411
+#: src/strings.ts:2435
msgid "Expand"
msgstr "Expand"
-#: src/strings.ts:2504
+#: src/strings.ts:2528
msgid "Expand sidebar"
msgstr "Expand sidebar"
-#: src/strings.ts:2109
+#: src/strings.ts:2133
msgid "Experience the next level of private note taking\""
msgstr "Experience the next level of private note taking\""
-#: src/strings.ts:2749
+#: src/strings.ts:2773
msgid "Expired"
msgstr "Expired"
-#: src/strings.ts:2747
+#: src/strings.ts:2771
msgid "Expires"
msgstr "Expires"
-#: src/strings.ts:2711
+#: src/strings.ts:2735
msgid "Expires in"
msgstr "Expires in"
-#: src/strings.ts:2750
+#: src/strings.ts:2774
msgid "Expires on"
msgstr "Expires on"
-#: src/strings.ts:2685
+#: src/strings.ts:2709
msgid "Expiry date"
msgstr "Expiry date"
-#: src/strings.ts:2823
+#: src/strings.ts:2847
msgid "Expiry date cannot be more than 1 year in the future"
msgstr "Expiry date cannot be more than 1 year in the future"
-#: src/strings.ts:2821
+#: src/strings.ts:2845
msgid "Expiry date must be in the future"
msgstr "Expiry date must be in the future"
-#: src/strings.ts:2840
+#: src/strings.ts:2864
msgid "Expiry date removed"
msgstr "Expiry date removed"
-#: src/strings.ts:2824
+#: src/strings.ts:2848
msgid "Expiry date set"
msgstr "Expiry date set"
-#: src/strings.ts:2578
+#: src/strings.ts:2602
msgid "Explore all plans"
msgstr "Explore all plans"
-#: src/strings.ts:472
+#: src/strings.ts:494
msgid "Export"
msgstr "Export"
-#: src/strings.ts:580
+#: src/strings.ts:602
msgid "Export again"
msgstr "Export again"
-#: src/strings.ts:1259
+#: src/strings.ts:1283
msgid "Export all notes"
msgstr "Export all notes"
-#: src/strings.ts:1261
+#: src/strings.ts:1285
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:2062
+#: src/strings.ts:2086
msgid "Export as{0}"
msgstr "Export as{0}"
-#: src/strings.ts:2686
+#: src/strings.ts:2710
msgid "Export CSV"
msgstr "Export CSV"
-#: src/strings.ts:1407
+#: src/strings.ts:1431
msgid "Export notes as PDF, Markdown and HTML with Notesnook Pro"
msgstr "Export notes as PDF, Markdown and HTML with Notesnook Pro"
@@ -3168,253 +3188,253 @@ msgstr "Export notes as PDF, Markdown and HTML with Notesnook Pro"
msgid "Exporting \"{title}\""
msgstr "Exporting \"{title}\""
-#: src/strings.ts:1645
+#: src/strings.ts:1669
msgid "Extracting files..."
msgstr "Extracting files..."
-#: src/strings.ts:1834
+#: src/strings.ts:1858
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:1281
+#: src/strings.ts:1305
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:2441
+#: src/strings.ts:2465
msgid "Failed"
msgstr "Failed"
-#: src/strings.ts:2799
+#: src/strings.ts:2823
msgid "Failed inbox items"
msgstr "Failed inbox items"
-#: src/strings.ts:2690
+#: src/strings.ts:2714
msgid "Failed to attach file"
msgstr "Failed to attach file"
-#: src/strings.ts:1963
+#: src/strings.ts:1987
msgid "Failed to copy note"
msgstr "Failed to copy note"
-#: src/strings.ts:2737
+#: src/strings.ts:2761
msgid "Failed to copy to clipboard"
msgstr "Failed to copy to clipboard"
#. placeholder {0}: message ? `: ${message}` : ""
-#: src/strings.ts:2716
+#: src/strings.ts:2740
msgid "Failed to create API key{0}"
msgstr "Failed to create API key{0}"
-#: src/strings.ts:1587
+#: src/strings.ts:1611
msgid "Failed to decrypt backup"
msgstr "Failed to decrypt backup"
-#: src/strings.ts:2029
+#: src/strings.ts:2053
msgid "Failed to delete"
msgstr "Failed to delete"
-#: src/strings.ts:1099
+#: src/strings.ts:1123
msgid "Failed to delete account"
msgstr "Failed to delete account"
-#: src/strings.ts:794
+#: src/strings.ts:816
msgid "Failed to download file"
msgstr "Failed to download file"
-#: src/strings.ts:2025
+#: src/strings.ts:2049
msgid "Failed to install theme."
msgstr "Failed to install theme."
-#: src/strings.ts:2723
+#: src/strings.ts:2747
msgid "Failed to load API keys. Please try again."
msgstr "Failed to load API keys. Please try again."
-#: src/strings.ts:966
+#: src/strings.ts:988
msgid "Failed to open"
msgstr "Failed to open"
-#: src/strings.ts:883
+#: src/strings.ts:905
msgid "Failed to publish note"
msgstr "Failed to publish note"
-#: src/strings.ts:2030
+#: src/strings.ts:2054
msgid "Failed to register task"
msgstr "Failed to register task"
-#: src/strings.ts:806
+#: src/strings.ts:828
msgid "Failed to resolve download url"
msgstr "Failed to resolve download url"
-#: src/strings.ts:2742
+#: src/strings.ts:2766
msgid "Failed to revoke API key"
msgstr "Failed to revoke API key"
-#: src/strings.ts:775
+#: src/strings.ts:797
msgid "Failed to send recovery email"
msgstr "Failed to send recovery email"
-#: src/strings.ts:1423
+#: src/strings.ts:1447
msgid "Failed to send verification email"
msgstr "Failed to send verification email"
-#: src/strings.ts:955
+#: src/strings.ts:977
msgid "Failed to subscribe"
msgstr "Failed to subscribe"
-#: src/strings.ts:2240
+#: src/strings.ts:2264
msgid "Failed to take backup"
msgstr "Failed to take backup"
-#: src/strings.ts:2242
+#: src/strings.ts:2266
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?"
-#: src/strings.ts:884
+#: src/strings.ts:906
msgid "Failed to unpublish note"
msgstr "Failed to unpublish note"
-#: src/strings.ts:800
+#: src/strings.ts:822
msgid "Failed to zip files"
msgstr "Failed to zip files"
-#: src/strings.ts:502
+#: src/strings.ts:524
msgid "Fallback method for 2FA enabled"
msgstr "Fallback method for 2FA enabled"
-#: src/strings.ts:2597
+#: src/strings.ts:2621
msgid "FAQs"
msgstr "FAQs"
-#: src/strings.ts:2059
+#: src/strings.ts:2083
msgid "Favorite"
msgstr "Favorite"
-#: src/strings.ts:320
-#: src/strings.ts:1548
+#: src/strings.ts:334
+#: src/strings.ts:1572
msgid "Favorites"
msgstr "Favorites"
-#: src/strings.ts:2595
+#: src/strings.ts:2619
msgid "Featured on"
msgstr "Featured on"
-#: src/strings.ts:2453
+#: src/strings.ts:2477
msgid "February 2022 Week 2"
msgstr "February 2022 Week 2"
-#: src/strings.ts:2454
+#: src/strings.ts:2478
msgid "February 2022 Week 3"
msgstr "February 2022 Week 3"
-#: src/strings.ts:734
+#: src/strings.ts:756
msgid "File check failed: {reason} Try reuploading the file to fix the issue."
msgstr "File check failed: {reason} Try reuploading the file to fix the issue."
-#: src/strings.ts:752
+#: src/strings.ts:774
msgid "File check passed"
msgstr "File check passed"
-#: src/strings.ts:803
+#: src/strings.ts:825
msgid "File length is 0. Please upload this file again from the attachment manager."
msgstr "File length is 0. Please upload this file again from the attachment manager."
-#: src/strings.ts:805
+#: src/strings.ts:827
msgid "File length mismatch. Expected {expectedSize} but got {currentSize} bytes. Please upload this file again from the attachment manager."
msgstr "File length mismatch. Expected {expectedSize} but got {currentSize} bytes. Please upload this file again from the attachment manager."
-#: src/strings.ts:2820
+#: src/strings.ts:2844
msgid "File links cannot be opened in browsers. Please use the Notesnook desktop app."
msgstr "File links cannot be opened in browsers. Please use the Notesnook desktop app."
-#: src/strings.ts:967
+#: src/strings.ts:989
msgid "File mismatch"
msgstr "File mismatch"
-#: src/strings.ts:2814
+#: src/strings.ts:2838
msgid "File size limit exceeded. Please upgrade your plan."
msgstr "File size limit exceeded. Please upgrade your plan."
-#: src/strings.ts:963
+#: src/strings.ts:985
msgid "File size should be less than {sizeInMB}"
msgstr "File size should be less than {sizeInMB}"
-#: src/strings.ts:961
+#: src/strings.ts:983
msgid "File too big"
msgstr "File too big"
-#: src/strings.ts:1500
+#: src/strings.ts:1524
msgid "Filter attachments by filename, type or hash"
msgstr "Filter attachments by filename, type or hash"
-#: src/strings.ts:1860
+#: src/strings.ts:1884
msgid "Filter languages"
msgstr "Filter languages"
-#: src/strings.ts:1502
+#: src/strings.ts:1526
msgid "Filter notebooks..."
msgstr "Filter notebooks..."
-#: src/strings.ts:1503
+#: src/strings.ts:1527
msgid "Filter tags..."
msgstr "Filter tags..."
-#: src/strings.ts:2657
+#: src/strings.ts:2681
msgid "Finish your purchase in the browser."
msgstr "Finish your purchase in the browser."
-#: src/strings.ts:1696
+#: src/strings.ts:1720
msgid "Fix it"
msgstr "Fix it"
-#: src/strings.ts:2042
+#: src/strings.ts:2066
msgid "Focus mode"
msgstr "Focus mode"
-#: src/strings.ts:2200
+#: src/strings.ts:2224
msgid "Follow"
msgstr "Follow"
-#: src/strings.ts:1297
+#: src/strings.ts:1321
msgid "Follow us on Mastodon"
msgstr "Follow us on Mastodon"
-#: src/strings.ts:1299
+#: src/strings.ts:1323
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:1300
+#: src/strings.ts:1324
msgid "Follow us on X"
msgstr "Follow us on X"
-#: src/strings.ts:1301
+#: src/strings.ts:1325
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:2314
+#: src/strings.ts:2338
msgid "Font family"
msgstr "Font family"
-#: src/strings.ts:2501
+#: src/strings.ts:2525
msgid "Font ligatures"
msgstr "Font ligatures"
-#: src/strings.ts:2315
+#: src/strings.ts:2339
msgid "Font size"
msgstr "Font size"
-#: src/strings.ts:2559
+#: src/strings.ts:2583
msgid "For a monthly subscription, you can get a refund within 7 days of purchase. For a yearly subscription, we offer a full refund within 14 days of purchase. For a 5 year subscription, you can request a refund within 30 days of purchase."
msgstr "For a monthly subscription, you can get a refund within 7 days of purchase. For a yearly subscription, we offer a full refund within 14 days of purchase. For a 5 year subscription, you can request a refund within 30 days of purchase."
-#: src/strings.ts:1713
+#: src/strings.ts:1737
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:1794
+#: src/strings.ts:1818
msgid "for help regarding how to use the Notesnook Importer."
msgstr "for help regarding how to use the Notesnook Importer."
-#: src/strings.ts:2568
+#: src/strings.ts:2592
msgid "for locking your notes as soon as app enters background"
msgstr "for locking your notes as soon as app enters background"
@@ -3422,27 +3442,27 @@ msgstr "for locking your notes as soon as app enters background"
msgid "For support or questions, chat with our community on"
msgstr "For support or questions, chat with our community on"
-#: src/strings.ts:2232
+#: src/strings.ts:2256
msgid "Force logout from all your other logged in devices."
msgstr "Force logout from all your other logged in devices."
-#: src/strings.ts:2903
+#: src/strings.ts:2927
msgid "Force Pull"
msgstr "Force Pull"
-#: src/strings.ts:1116
+#: src/strings.ts:1140
msgid "Force pull changes"
msgstr "Force pull changes"
-#: src/strings.ts:2904
+#: src/strings.ts:2928
msgid "Force Push"
msgstr "Force Push"
-#: src/strings.ts:1125
+#: src/strings.ts:1149
msgid "Force push changes"
msgstr "Force push changes"
-#: src/strings.ts:2249
+#: src/strings.ts:2273
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"
@@ -3460,224 +3480,224 @@ msgstr ""
"\n"
"**These must only be used for troubleshooting. Using them 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:555
+#: src/strings.ts:577
msgid "Forgot Password?"
msgstr "Forgot Password?"
-#: src/strings.ts:2928
+#: src/strings.ts:2952
msgid "Formatting"
msgstr "Formatting"
-#: src/strings.ts:2873
-#: src/strings.ts:2898
+#: src/strings.ts:2897
+#: src/strings.ts:2922
msgid "Free {days} days trial, cancel anytime"
msgstr "Free {days} days trial, cancel anytime"
-#: src/strings.ts:2612
+#: src/strings.ts:2636
msgid "Free {duration} day trial, cancel any time"
msgstr "Free {duration} day trial, cancel any time"
-#: src/strings.ts:2506
+#: src/strings.ts:2530
msgid "Free plan"
msgstr "Free plan"
-#: src/strings.ts:2860
+#: src/strings.ts:2884
msgid "Frequently Asked Questions"
msgstr "Frequently Asked Questions"
-#: src/strings.ts:629
+#: src/strings.ts:651
msgid "Fri"
msgstr "Fri"
-#: src/strings.ts:620
+#: src/strings.ts:642
msgid "Friday"
msgstr "Friday"
-#: src/strings.ts:2409
+#: src/strings.ts:2433
msgid "From code"
msgstr "From code"
-#: src/strings.ts:2406
+#: src/strings.ts:2430
msgid "From URL"
msgstr "From URL"
-#: src/strings.ts:2938
+#: src/strings.ts:2962
msgid "Full backup"
msgstr "Full backup"
-#: src/strings.ts:2026
+#: src/strings.ts:2050
msgid "Full name updated"
msgstr "Full name updated"
-#: src/strings.ts:2243
+#: src/strings.ts:2267
msgid "Full offline mode"
msgstr "Full offline mode"
-#: src/strings.ts:2361
+#: src/strings.ts:2385
msgid "Full screen"
msgstr "Full screen"
-#: src/strings.ts:2129
+#: src/strings.ts:2153
msgid "General"
msgstr "General"
-#: src/strings.ts:1290
+#: src/strings.ts:1314
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:1314
+#: src/strings.ts:1338
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:2194
+#: src/strings.ts:2218
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:2196
+#: src/strings.ts:2220
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:1404
+#: src/strings.ts:1428
msgid "Get Notesnook Pro"
msgstr "Get Notesnook Pro"
-#: src/strings.ts:1389
+#: src/strings.ts:1413
msgid "Get Notesnook Pro to enable automatic backups"
msgstr "Get Notesnook Pro to enable automatic backups"
-#: src/strings.ts:2445
+#: src/strings.ts:2469
msgid "Get Priority support"
msgstr "Get Priority support"
-#: src/strings.ts:690
+#: src/strings.ts:712
msgid "Get Pro"
msgstr "Get Pro"
-#: src/strings.ts:565
+#: src/strings.ts:587
msgid "Get started"
msgstr "Get started"
-#: src/strings.ts:2565
+#: src/strings.ts:2589
msgid "Get this and so much more:"
msgstr "Get this and so much more:"
-#: src/strings.ts:1912
+#: src/strings.ts:1936
msgid "Getting encryption key..."
msgstr "Getting encryption key..."
-#: src/strings.ts:401
+#: src/strings.ts:418
msgid "Getting information"
msgstr "Getting information"
-#: src/strings.ts:403
+#: src/strings.ts:420
msgid "Getting recovery codes"
msgstr "Getting recovery codes"
-#: src/strings.ts:2772
+#: src/strings.ts:2796
msgid "Gift code required"
msgstr "Gift code required"
-#: src/strings.ts:388
+#: src/strings.ts:405
msgid "Github"
msgstr "Github"
-#: src/strings.ts:2199
+#: src/strings.ts:2223
msgid "GNU GENERAL PUBLIC LICENSE Version 3"
msgstr "GNU GENERAL PUBLIC LICENSE Version 3"
-#: src/strings.ts:2658
+#: src/strings.ts:2682
msgid "Go back"
msgstr "Go back"
-#: src/strings.ts:2484
+#: src/strings.ts:2508
msgid "Go back in tab"
msgstr "Go back in tab"
-#: src/strings.ts:2262
+#: src/strings.ts:2286
msgid "Go back to notebooks"
msgstr "Go back to notebooks"
-#: src/strings.ts:2263
+#: src/strings.ts:2287
msgid "Go back to tags"
msgstr "Go back to tags"
-#: src/strings.ts:2483
+#: src/strings.ts:2507
msgid "Go forward in tab"
msgstr "Go forward in tab"
-#: src/strings.ts:1840
+#: src/strings.ts:1864
msgid "Go to"
msgstr "Go to"
-#: src/strings.ts:1841
+#: src/strings.ts:1865
msgid "Go to #{tag}"
msgstr "Go to #{tag}"
-#: src/strings.ts:1724
+#: src/strings.ts:1748
msgid "Go to next page"
msgstr "Go to next page"
-#: src/strings.ts:1725
+#: src/strings.ts:1749
msgid "Go to previous page"
msgstr "Go to previous page"
-#: src/strings.ts:1326
+#: src/strings.ts:1350
msgid "Go to web app"
msgstr "Go to web app"
-#: src/strings.ts:2577
+#: src/strings.ts:2601
msgid "Google will remind you 2 days before your trial ends."
msgstr "Google will remind you 2 days before your trial ends."
-#: src/strings.ts:588
+#: src/strings.ts:610
msgid "Got it"
msgstr "Got it"
-#: src/strings.ts:432
+#: src/strings.ts:449
msgid "GROUP"
msgstr "GROUP"
-#: src/strings.ts:1914
+#: src/strings.ts:1938
msgid "Group added successfully"
msgstr "Group added successfully"
-#: src/strings.ts:539
+#: src/strings.ts:561
msgid "Group by"
msgstr "Group by"
-#: src/strings.ts:754
+#: src/strings.ts:776
msgid "Hash copied"
msgstr "Hash copied"
-#: src/strings.ts:2911
+#: src/strings.ts:2935
msgid "Having issues? Contact"
msgstr "Having issues? Contact"
-#: src/strings.ts:2246
+#: src/strings.ts:2270
msgid "Having problems with sync?"
msgstr "Having problems with sync?"
-#: src/strings.ts:2601
+#: src/strings.ts:2625
msgid "HD Images"
msgstr "HD Images"
-#: src/strings.ts:2387
+#: src/strings.ts:2411
msgid "Heading {level}"
msgstr "Heading {level}"
-#: src/strings.ts:2316
+#: src/strings.ts:2340
msgid "Headings"
msgstr "Headings"
-#: src/strings.ts:2935
+#: src/strings.ts:2959
msgid "Headline"
msgstr "Headline"
-#: src/strings.ts:2422
+#: src/strings.ts:2446
msgid "Height"
msgstr "Height"
-#: src/strings.ts:1278
+#: src/strings.ts:1302
msgid "Help and support"
msgstr "Help and support"
@@ -3685,59 +3705,63 @@ msgstr "Help and support"
msgid "Help improve Notesnook by sending completely anonymized"
msgstr "Help improve Notesnook by sending completely anonymized"
-#: src/strings.ts:478
+#: src/strings.ts:500
msgid "Help us make Notesnook better for everyone."
msgstr "Help us make Notesnook better for everyone."
-#: src/strings.ts:1397
+#: src/strings.ts:1421
msgid "Hide"
msgstr "Hide"
-#: src/strings.ts:1204
+#: src/strings.ts:1228
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:2205
+#: src/strings.ts:2229
msgid "Hide note title"
msgstr "Hide note title"
-#: src/strings.ts:2319
+#: src/strings.ts:2343
msgid "Highlight"
msgstr "Highlight"
-#: src/strings.ts:925
+#: src/strings.ts:947
msgid "History"
msgstr "History"
-#: src/strings.ts:1554
+#: src/strings.ts:480
+msgid "History detail"
+msgstr "History detail"
+
+#: src/strings.ts:1578
msgid "Home"
msgstr "Home"
-#: src/strings.ts:1148
+#: src/strings.ts:1172
msgid "Homepage"
msgstr "Homepage"
-#: src/strings.ts:1339
+#: src/strings.ts:1363
msgid "Homepage changed to {name}"
msgstr "Homepage changed to {name}"
-#: src/strings.ts:2368
+#: src/strings.ts:2392
msgid "Horizontal rule"
msgstr "Horizontal rule"
-#: src/strings.ts:1825
+#: src/strings.ts:1849
msgid "How do you want to recover your account?"
msgstr "How do you want to recover your account?"
-#: src/strings.ts:1695
+#: src/strings.ts:1719
msgid "How to fix it?"
msgstr "How to fix it?"
-#: src/strings.ts:896
+#: src/strings.ts:918
msgid "hr"
msgstr "hr"
-#: src/strings.ts:2536
+#: src/strings.ts:2560
msgid "I already have an account"
msgstr "I already have an account"
@@ -3761,31 +3785,31 @@ msgstr "I don't have recovery codes"
msgid "I have a recovery code"
msgstr "I have a recovery code"
-#: src/strings.ts:1913
+#: src/strings.ts:1937
msgid "I have saved my key"
msgstr "I have saved my key"
-#: src/strings.ts:2462
+#: src/strings.ts:2486
msgid "I love cooking and collecting recipes."
msgstr "I love cooking and collecting recipes."
-#: src/strings.ts:2247
+#: src/strings.ts:2271
msgid "I understand"
msgstr "I understand"
-#: src/strings.ts:2912
+#: src/strings.ts:2936
msgid "I understand the risks"
msgstr "I understand the risks"
-#: src/strings.ts:553
+#: src/strings.ts:575
msgid "I understand, change my password"
msgstr "I understand, change my password"
-#: src/strings.ts:929
+#: src/strings.ts:951
msgid "ID copied"
msgstr "ID copied"
-#: src/strings.ts:400
+#: src/strings.ts:417
msgid "If the editor fails to load even after reloading. Try restarting the app."
msgstr "If the editor fails to load even after reloading. Try restarting the app."
@@ -3793,19 +3817,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:2150
+#: src/strings.ts:2174
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:2153
+#: src/strings.ts:2177
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:1751
+#: src/strings.ts:1775
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:1416
+#: src/strings.ts:1440
msgid ""
"If you didn't get an email from us or the confirmation link isn't\n"
" working,"
@@ -3813,35 +3837,35 @@ msgstr ""
"If you didn't get an email from us or the confirmation link isn't\n"
" working,"
-#: src/strings.ts:1831
+#: src/strings.ts:1855
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:2114
+#: src/strings.ts:2138
msgid "If you face any issue, you can reach out to us anytime."
msgstr "If you face any issue, you can reach out to us anytime."
-#: src/strings.ts:2373
+#: src/strings.ts:2397
msgid "Image"
msgstr "Image"
-#: src/strings.ts:1150
+#: src/strings.ts:1174
msgid "Image Compression"
msgstr "Image Compression"
-#: src/strings.ts:2349
+#: src/strings.ts:2373
msgid "Image properties"
msgstr "Image properties"
-#: src/strings.ts:2345
+#: src/strings.ts:2369
msgid "Image settings"
msgstr "Image settings"
-#: src/strings.ts:965
+#: src/strings.ts:987
msgid "Image size should be less than {sizeInMB}"
msgstr "Image size should be less than {sizeInMB}"
-#: src/strings.ts:757
+#: src/strings.ts:779
msgid "Images"
msgstr "Images"
@@ -3849,35 +3873,35 @@ 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:1609
+#: src/strings.ts:1633
msgid "Immediately"
msgstr "Immediately"
-#: src/strings.ts:2177
+#: src/strings.ts:2201
msgid "Import & export"
msgstr "Import & export"
-#: src/strings.ts:1778
+#: src/strings.ts:1802
msgid "Import completed"
msgstr "Import completed"
-#: src/strings.ts:2687
+#: src/strings.ts:2711
msgid "Import CSV"
msgstr "Import CSV"
-#: src/strings.ts:1793
+#: src/strings.ts:1817
msgid "import guide"
msgstr "import guide"
-#: src/strings.ts:2693
+#: src/strings.ts:2717
msgid "Inbox API"
msgstr "Inbox API"
-#: src/strings.ts:2757
+#: src/strings.ts:2781
msgid "Inbox keys saved"
msgstr "Inbox keys saved"
-#: src/strings.ts:2698
+#: src/strings.ts:2722
msgid "Inbox PGP Keys"
msgstr "Inbox PGP Keys"
@@ -3885,91 +3909,91 @@ msgstr "Inbox PGP Keys"
msgid "Incoming"
msgstr "Incoming"
-#: src/strings.ts:1864
+#: src/strings.ts:1888
msgid "Incoming note"
msgstr "Incoming note"
-#: src/strings.ts:786
+#: src/strings.ts:808
msgid "Incorrect {type}"
msgstr "Incorrect {type}"
-#: src/strings.ts:2431
+#: src/strings.ts:2455
msgid "Increase {title}"
msgstr "Increase {title}"
-#: src/strings.ts:2273
+#: src/strings.ts:2297
msgid "Insert"
msgstr "Insert"
-#: src/strings.ts:2428
+#: src/strings.ts:2452
msgid "Insert a {rows}x{columns} table"
msgstr "Insert a {rows}x{columns} table"
-#: src/strings.ts:2378
+#: src/strings.ts:2402
msgid "Insert a table"
msgstr "Insert a table"
-#: src/strings.ts:2380
+#: src/strings.ts:2404
msgid "Insert an embed"
msgstr "Insert an embed"
-#: src/strings.ts:2374
+#: src/strings.ts:2398
msgid "Insert an image"
msgstr "Insert an image"
-#: src/strings.ts:2326
+#: src/strings.ts:2350
msgid "Insert column left"
msgstr "Insert column left"
-#: src/strings.ts:2327
+#: src/strings.ts:2351
msgid "Insert column right"
msgstr "Insert column right"
-#: src/strings.ts:2271
+#: src/strings.ts:2295
msgid "Insert link"
msgstr "Insert link"
-#: src/strings.ts:2333
+#: src/strings.ts:2357
msgid "Insert row above"
msgstr "Insert row above"
-#: src/strings.ts:2334
+#: src/strings.ts:2358
msgid "Insert row below"
msgstr "Insert row below"
-#: src/strings.ts:1711
+#: src/strings.ts:1735
msgid "Install Notesnook"
msgstr "Install Notesnook"
-#: src/strings.ts:2185
+#: src/strings.ts:2209
msgid "Install update"
msgstr "Install update"
-#: src/strings.ts:1746
+#: src/strings.ts:1770
msgid "installs"
msgstr "installs"
-#: src/strings.ts:750
+#: src/strings.ts:772
msgid "Invalid {type}"
msgstr "Invalid {type}"
-#: src/strings.ts:2018
+#: src/strings.ts:2042
msgid "Invalid CORS proxy url"
msgstr "Invalid CORS proxy url"
-#: src/strings.ts:1506
+#: src/strings.ts:1530
msgid "Invalid email"
msgstr "Invalid email"
-#: src/strings.ts:2735
+#: src/strings.ts:2759
msgid "Invalid password"
msgstr "Invalid password"
-#: src/strings.ts:2756
+#: src/strings.ts:2780
msgid "Invalid PGP key pair. Please check your keys and try again."
msgstr "Invalid PGP key pair. Please check your keys and try again."
-#: src/strings.ts:2763
+#: src/strings.ts:2787
msgid "Invalid recovery key. Make sure to input your account recovery key, not a 2FA recovery code."
msgstr "Invalid recovery key. Make sure to input your account recovery key, not a 2FA recovery code."
@@ -3977,7 +4001,7 @@ msgstr "Invalid recovery key. Make sure to input your account recovery key, not
msgid "Issue created"
msgstr "Issue created"
-#: src/strings.ts:2942
+#: src/strings.ts:2966
msgid "Issue summary"
msgstr "Issue summary"
@@ -3985,113 +4009,117 @@ msgstr "Issue summary"
msgid "Issues reported here are public on"
msgstr "Issues reported here are public on"
-#: src/strings.ts:1008
-#: src/strings.ts:1017
+#: src/strings.ts:1030
+#: src/strings.ts:1039
msgid "It may take a minute to receive your code."
msgstr "It may take a minute to receive your code."
-#: src/strings.ts:1617
+#: src/strings.ts:1641
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:"
-#: src/strings.ts:274
+#: src/strings.ts:288
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:2295
+#: src/strings.ts:2319
msgid "Italic"
msgstr "Italic"
-#: src/strings.ts:290
+#: src/strings.ts:304
msgid "item"
msgstr "item"
-#: src/strings.ts:300
+#: src/strings.ts:314
msgid "Item"
msgstr "Item"
-#: src/strings.ts:2804
+#: src/strings.ts:2828
msgid "Item deleted"
msgstr "Item deleted"
-#: src/strings.ts:310
-#: src/strings.ts:1730
+#: src/strings.ts:324
+#: src/strings.ts:1754
msgid "items"
msgstr "items"
-#: src/strings.ts:322
+#: src/strings.ts:336
msgid "Items"
msgstr "Items"
-#: src/strings.ts:2197
+#: src/strings.ts:2221
msgid "Join community"
msgstr "Join community"
-#: src/strings.ts:1302
+#: src/strings.ts:1326
msgid "Join our Discord server"
msgstr "Join our Discord server"
-#: src/strings.ts:1304
+#: src/strings.ts:1328
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:1294
+#: src/strings.ts:1318
msgid "Join our Telegram group"
msgstr "Join our Telegram group"
-#: src/strings.ts:1296
+#: src/strings.ts:1320
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:2105
+#: src/strings.ts:2129
msgid "Join the cause"
msgstr "Join the cause"
-#: src/strings.ts:2053
+#: src/strings.ts:2077
msgid "Jump to group"
msgstr "Jump to group"
-#: src/strings.ts:569
+#: src/strings.ts:388
+msgid "Jump to Reference"
+msgstr "Jump to Reference"
+
+#: src/strings.ts:591
msgid "Keep"
msgstr "Keep"
-#: src/strings.ts:2048
+#: src/strings.ts:2072
msgid "Keep open"
msgstr "Keep open"
-#: src/strings.ts:2846
+#: src/strings.ts:2870
msgid "Keep screen on"
msgstr "Keep screen on"
-#: src/strings.ts:1381
+#: src/strings.ts:1405
msgid "Keep your data safe"
msgstr "Keep your data safe"
-#: src/strings.ts:1107
+#: src/strings.ts:1131
msgid "Keep your notes updated automatically"
msgstr "Keep your notes updated automatically"
-#: src/strings.ts:2709
+#: src/strings.ts:2733
msgid "Key name"
msgstr "Key name"
-#: src/strings.ts:2165
+#: src/strings.ts:2189
msgid "Languages"
msgstr "Languages"
-#: src/strings.ts:2268
+#: src/strings.ts:2292
msgid "Last edited at"
msgstr "Last edited at"
-#: src/strings.ts:2743
+#: src/strings.ts:2767
msgid "Last used on"
msgstr "Last used on"
-#: src/strings.ts:592
+#: src/strings.ts:614
msgid "Later"
msgstr "Later"
-#: src/strings.ts:645
+#: src/strings.ts:667
msgid "Latest first"
msgstr "Latest first"
@@ -4099,75 +4127,75 @@ msgstr "Latest first"
msgid "Learn how this works."
msgstr "Learn how this works."
-#: src/strings.ts:573
+#: src/strings.ts:595
msgid "Learn more"
msgstr "Learn more"
-#: src/strings.ts:995
+#: src/strings.ts:1017
msgid "Learn more about Monographs"
msgstr "Learn more about Monographs"
-#: src/strings.ts:271
-msgid "Learn more about Notesnook Monograph"
-msgstr "Learn more about Notesnook Monograph"
+#: src/strings.ts:275
+msgid "Learn more about Notesnook"
+msgstr "Learn more about Notesnook"
-#: src/strings.ts:648
+#: src/strings.ts:670
msgid "Least relevant first"
msgstr "Least relevant first"
-#: src/strings.ts:1589
+#: src/strings.ts:1613
msgid "Legal"
msgstr "Legal"
-#: src/strings.ts:2198
+#: src/strings.ts:2222
msgid "License"
msgstr "License"
-#: src/strings.ts:1747
+#: src/strings.ts:1771
msgid "Licensed under {license}"
msgstr "Licensed under {license}"
-#: src/strings.ts:2364
+#: src/strings.ts:2388
msgid "Lift list item"
msgstr "Lift list item"
-#: src/strings.ts:727
+#: src/strings.ts:749
msgid "Light"
msgstr "Light"
-#: src/strings.ts:2394
+#: src/strings.ts:2418
msgid "Line {line}, Column {column}"
msgstr "Line {line}, Column {column}"
-#: src/strings.ts:2669
+#: src/strings.ts:2693
msgid "Line height"
msgstr "Line height"
-#: src/strings.ts:1174
+#: src/strings.ts:1198
msgid "Line spacing changed"
msgstr "Line spacing changed"
-#: src/strings.ts:2299
+#: src/strings.ts:2323
msgid "Link"
msgstr "Link"
-#: src/strings.ts:927
+#: src/strings.ts:949
msgid "Link copied"
msgstr "Link copied"
-#: src/strings.ts:947
+#: src/strings.ts:969
msgid "Link notebooks"
msgstr "Link notebooks"
-#: src/strings.ts:2513
+#: src/strings.ts:2537
msgid "Link notes"
msgstr "Link notes"
-#: src/strings.ts:2304
+#: src/strings.ts:2328
msgid "Link settings"
msgstr "Link settings"
-#: src/strings.ts:2424
+#: src/strings.ts:2448
msgid "Link text"
msgstr "Link text"
@@ -4175,31 +4203,43 @@ msgstr "Link text"
msgid "LINK TO A SECTION"
msgstr "LINK TO A SECTION"
-#: src/strings.ts:528
+#: src/strings.ts:550
msgid "Link to note"
msgstr "Link to note"
-#: src/strings.ts:867
+#: src/strings.ts:889
msgid "Link to notebook"
msgstr "Link to notebook"
-#: src/strings.ts:597
+#: src/strings.ts:387
+msgid "Linked"
+msgstr "Linked"
+
+#: src/strings.ts:619
msgid "Linked notes"
msgstr "Linked notes"
-#: src/strings.ts:1623
+#: src/strings.ts:1647
msgid "Linking to a specific block is not available for locked notes."
msgstr "Linking to a specific block is not available for locked notes."
-#: src/strings.ts:506
+#: src/strings.ts:2988
+msgid "Links of notes that are references in this note."
+msgstr "Links of notes that are references in this note."
+
+#: src/strings.ts:2989
+msgid "Links of notes where this note is referenced."
+msgstr "Links of notes where this note is referenced."
+
+#: src/strings.ts:528
msgid "List of"
msgstr "List of"
-#: src/strings.ts:729
+#: src/strings.ts:751
msgid "Load from file"
msgstr "Load from file"
-#: src/strings.ts:1722
+#: src/strings.ts:1746
msgid "Loading"
msgstr "Loading"
@@ -4208,51 +4248,51 @@ msgstr "Loading"
msgid "Loading {0}, please wait..."
msgstr "Loading {0}, please wait..."
-#: src/strings.ts:2722
+#: src/strings.ts:2746
msgid "Loading API keys..."
msgstr "Loading API keys..."
-#: src/strings.ts:1691
+#: src/strings.ts:1715
msgid "Loading editor. Please wait..."
msgstr "Loading editor. Please wait..."
-#: src/strings.ts:1082
+#: src/strings.ts:1106
msgid "Loading subscription details"
msgstr "Loading subscription details"
-#: src/strings.ts:417
+#: src/strings.ts:434
msgid "Loading themes..."
msgstr "Loading themes..."
-#: src/strings.ts:1349
+#: src/strings.ts:1373
msgid "Loading trash"
msgstr "Loading trash"
-#: src/strings.ts:991
+#: src/strings.ts:1013
msgid "Loading your archive"
msgstr "Loading your archive"
-#: src/strings.ts:985
+#: src/strings.ts:1007
msgid "Loading your favorites"
msgstr "Loading your favorites"
-#: src/strings.ts:990
+#: src/strings.ts:1012
msgid "Loading your monographs"
msgstr "Loading your monographs"
-#: src/strings.ts:988
+#: src/strings.ts:1010
msgid "Loading your notebooks"
msgstr "Loading your notebooks"
-#: src/strings.ts:986
+#: src/strings.ts:1008
msgid "Loading your notes"
msgstr "Loading your notes"
-#: src/strings.ts:989
+#: src/strings.ts:1011
msgid "Loading your reminders"
msgstr "Loading your reminders"
-#: src/strings.ts:987
+#: src/strings.ts:1009
msgid "Loading your tags"
msgstr "Loading your tags"
@@ -4260,39 +4300,39 @@ msgstr "Loading your tags"
msgid "Lock"
msgstr "Lock"
-#: src/strings.ts:459
+#: src/strings.ts:476
msgid "Lock note"
msgstr "Lock note"
-#: src/strings.ts:1206
+#: src/strings.ts:1230
msgid "Lock the app with a password or pin"
msgstr "Lock the app with a password or pin"
-#: src/strings.ts:2758
+#: src/strings.ts:2782
msgid "Lock vault timer"
msgstr "Lock vault timer"
-#: src/strings.ts:917
+#: src/strings.ts:939
msgid "Locked notes cannot be pinned"
msgstr "Locked notes cannot be pinned"
-#: src/strings.ts:920
+#: src/strings.ts:942
msgid "Locked notes cannot be published"
msgstr "Locked notes cannot be published"
-#: src/strings.ts:2230
+#: src/strings.ts:2254
msgid "Log out from all other devices"
msgstr "Log out from all other devices"
-#: src/strings.ts:392
+#: src/strings.ts:409
msgid "Logged in as {email}"
msgstr "Logged in as {email}"
-#: src/strings.ts:406
+#: src/strings.ts:423
msgid "Logging out. Please wait..."
msgstr "Logging out. Please wait..."
-#: src/strings.ts:1809
+#: src/strings.ts:1833
msgid "Logging you in"
msgstr "Logging you in"
@@ -4300,139 +4340,139 @@ msgstr "Logging you in"
msgid "Login"
msgstr "Login"
-#: src/strings.ts:780
+#: src/strings.ts:802
msgid "Login failed"
msgstr "Login failed"
-#: src/strings.ts:918
+#: src/strings.ts:940
msgid "Login required"
msgstr "Login required"
-#: src/strings.ts:2780
+#: src/strings.ts:2804
msgid "Login required to restore attachments"
msgstr "Login required to restore attachments"
-#: src/strings.ts:781
+#: src/strings.ts:803
msgid "Login successful"
msgstr "Login successful"
-#: src/strings.ts:1384
+#: src/strings.ts:1408
msgid "Login to encrypt and sync notes"
msgstr "Login to encrypt and sync notes"
-#: src/strings.ts:2662
+#: src/strings.ts:2686
msgid "Login to upload attachments. [Read more](https://help.notesnook.com/faqs/login-to-upload-attachments)"
msgstr "Login to upload attachments. [Read more](https://help.notesnook.com/faqs/login-to-upload-attachments)"
-#: src/strings.ts:544
+#: src/strings.ts:566
msgid "Login to your account"
msgstr "Login to your account"
-#: src/strings.ts:778
+#: src/strings.ts:800
msgid "Logout"
msgstr "Logout"
-#: src/strings.ts:584
+#: src/strings.ts:606
msgid "Logout and clear data"
msgstr "Logout and clear data"
-#: src/strings.ts:557
+#: src/strings.ts:579
msgid "Logout from this device"
msgstr "Logout from this device"
-#: src/strings.ts:1434
+#: src/strings.ts:1458
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:2399
+#: src/strings.ts:2423
msgid "Make task list readonly"
msgstr "Make task list readonly"
-#: src/strings.ts:1056
+#: src/strings.ts:1078
msgid "Manage account"
msgstr "Manage account"
-#: src/strings.ts:1069
+#: src/strings.ts:1091
msgid "Manage attachments"
msgstr "Manage attachments"
-#: src/strings.ts:687
+#: src/strings.ts:709
msgid "Manage subscription on desktop"
msgstr "Manage subscription on desktop"
-#: src/strings.ts:866
+#: src/strings.ts:888
msgid "Manage tags"
msgstr "Manage tags"
-#: src/strings.ts:1057
+#: src/strings.ts:1079
msgid "Manage your account related settings here"
msgstr "Manage your account related settings here"
-#: src/strings.ts:1070
+#: src/strings.ts:1092
msgid "Manage your attachments in one place"
msgstr "Manage your attachments in one place"
-#: src/strings.ts:1233
+#: src/strings.ts:1257
msgid "Manage your backups and restore data"
msgstr "Manage your backups and restore data"
-#: src/strings.ts:1267
+#: src/strings.ts:1291
msgid "Manage your reminders"
msgstr "Manage your reminders"
-#: src/strings.ts:1101
+#: src/strings.ts:1125
msgid "Manage your sync settings here"
msgstr "Manage your sync settings here"
-#: src/strings.ts:1462
+#: src/strings.ts:1486
msgid "Mark important notes by adding them to favorites."
msgstr "Mark important notes by adding them to favorites."
-#: src/strings.ts:1181
+#: src/strings.ts:1205
msgid "Markdown shortcuts"
msgstr "Markdown shortcuts"
-#: src/strings.ts:1187
+#: src/strings.ts:1211
msgid "Marketing emails"
msgstr "Marketing emails"
-#: src/strings.ts:2412
+#: src/strings.ts:2436
msgid "Match case"
msgstr "Match case"
-#: src/strings.ts:2413
+#: src/strings.ts:2437
msgid "Match whole word"
msgstr "Match whole word"
-#: src/strings.ts:2321
+#: src/strings.ts:2345
msgid "Math (inline)"
msgstr "Math (inline)"
-#: src/strings.ts:2371
+#: src/strings.ts:2395
msgid "Math & formulas"
msgstr "Math & formulas"
-#: src/strings.ts:2067
+#: src/strings.ts:2091
msgid "Maximize"
msgstr "Maximize"
-#: src/strings.ts:2829
+#: src/strings.ts:2853
msgid "Maximum reminder date is {maxDate}"
msgstr "Maximum reminder date is {maxDate}"
-#: src/strings.ts:2107
+#: src/strings.ts:2131
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:2455
+#: src/strings.ts:2479
msgid "Meetings"
msgstr "Meetings"
-#: src/strings.ts:1806
+#: src/strings.ts:1830
msgid "Member since {date}"
msgstr "Member since {date}"
-#: src/strings.ts:2332
+#: src/strings.ts:2356
msgid "Merge cells"
msgstr "Merge cells"
@@ -4446,183 +4486,188 @@ msgstr "Migrating {0} {1}... please wait"
msgid "Migration failed"
msgstr "Migration failed"
-#: src/strings.ts:895
+#: src/strings.ts:917
msgid "min"
msgstr "min"
-#: src/strings.ts:2036
+#: src/strings.ts:2060
msgid "Minimal"
msgstr "Minimal"
-#: src/strings.ts:2066
+#: src/strings.ts:2090
msgid "Minimize"
msgstr "Minimize"
-#: src/strings.ts:2154
+#: src/strings.ts:2178
msgid "Minimize to system tray"
msgstr "Minimize to system tray"
-#: src/strings.ts:2926
+#: src/strings.ts:2950
msgid "Miscellaneous"
msgstr "Miscellaneous"
-#: src/strings.ts:691
+#: src/strings.ts:713
msgid "mo"
msgstr "mo"
-#: src/strings.ts:625
+#: src/strings.ts:647
msgid "Mon"
msgstr "Mon"
-#: src/strings.ts:616
+#: src/strings.ts:638
msgid "Monday"
msgstr "Monday"
-#: src/strings.ts:1658
+#: src/strings.ts:1682
msgid "Monograph server"
msgstr "Monograph server"
-#: src/strings.ts:886
+#: src/strings.ts:908
msgid "Monograph URL copied"
msgstr "Monograph URL copied"
-#: src/strings.ts:321
-#: src/strings.ts:957
-#: src/strings.ts:1556
+#: src/strings.ts:276
+#: src/strings.ts:335
+#: src/strings.ts:979
+#: src/strings.ts:1580
msgid "Monographs"
msgstr "Monographs"
-#: src/strings.ts:1444
+#: src/strings.ts:1468
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:1439
+#: src/strings.ts:1463
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:667
-#: src/strings.ts:1867
+#: src/strings.ts:689
+#: src/strings.ts:1891
msgid "Month"
msgstr "Month"
#: src/strings.ts:169
-#: src/strings.ts:1597
+#: src/strings.ts:1621
msgid "Monthly"
msgstr "Monthly"
-#: src/strings.ts:2351
+#: src/strings.ts:2375
msgid "More"
msgstr "More"
-#: src/strings.ts:647
+#: src/strings.ts:669
msgid "Most relevant first"
msgstr "Most relevant first"
-#: src/strings.ts:868
+#: src/strings.ts:890
msgid "Move"
msgstr "Move"
-#: src/strings.ts:2400
+#: src/strings.ts:2424
msgid "Move all checked tasks to bottom"
msgstr "Move all checked tasks to bottom"
-#: src/strings.ts:2328
+#: src/strings.ts:2352
msgid "Move column left"
msgstr "Move column left"
-#: src/strings.ts:2329
+#: src/strings.ts:2353
msgid "Move column right"
msgstr "Move column right"
-#: src/strings.ts:954
+#: src/strings.ts:976
msgid "Move notebook"
msgstr "Move notebook"
-#: src/strings.ts:914
+#: src/strings.ts:936
msgid "Move notes"
msgstr "Move notes"
-#: src/strings.ts:2336
+#: src/strings.ts:2360
msgid "Move row down"
msgstr "Move row down"
-#: src/strings.ts:2335
+#: src/strings.ts:2359
msgid "Move row up"
msgstr "Move row up"
-#: src/strings.ts:587
+#: src/strings.ts:609
msgid "Move selected notes"
msgstr "Move selected notes"
-#: src/strings.ts:586
+#: src/strings.ts:608
msgid "Move to top"
msgstr "Move to top"
-#: src/strings.ts:871
+#: src/strings.ts:893
msgid "Move to trash"
msgstr "Move to trash"
-#: src/strings.ts:1194
+#: src/strings.ts:1218
msgid "Multi-layer encryption to most important notes"
msgstr "Multi-layer encryption to most important notes"
-#: src/strings.ts:903
+#: src/strings.ts:925
msgid "Name"
msgstr "Name"
-#: src/strings.ts:2778
+#: src/strings.ts:2802
msgid "Name is required."
msgstr "Name is required."
-#: src/strings.ts:1715
+#: src/strings.ts:1739
msgid "Native high-performance encryption"
msgstr "Native high-performance encryption"
-#: src/strings.ts:2480
+#: src/strings.ts:2504
msgid "Navigate"
msgstr "Navigate"
-#: src/strings.ts:2921
+#: src/strings.ts:2945
msgid "Navigation"
msgstr "Navigation"
-#: src/strings.ts:393
+#: src/strings.ts:410
msgid "Never"
msgstr "Never"
-#: src/strings.ts:1364
+#: src/strings.ts:1388
msgid "Never ask again"
msgstr "Never ask again"
-#: src/strings.ts:2748
+#: src/strings.ts:2772
msgid "Never expires"
msgstr "Never expires"
-#: src/strings.ts:1055
+#: src/strings.ts:1077
msgid "Never hesitate to choose privacy"
msgstr "Never hesitate to choose privacy"
-#: src/strings.ts:674
+#: src/strings.ts:2987
+msgid "Never miss a task. Set your first reminder now."
+msgstr "Never miss a task. Set your first reminder now."
+
+#: src/strings.ts:696
msgid "Never show again"
msgstr "Never show again"
-#: src/strings.ts:2744
+#: src/strings.ts:2768
msgid "Never used"
msgstr "Never used"
-#: src/strings.ts:644
+#: src/strings.ts:666
msgid "New - old"
msgstr "New - old"
-#: src/strings.ts:530
+#: src/strings.ts:552
msgid "New color"
msgstr "New color"
-#: src/strings.ts:1873
+#: src/strings.ts:1897
msgid "New Email"
msgstr "New Email"
-#: src/strings.ts:1173
+#: src/strings.ts:1197
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)."
@@ -4630,75 +4675,75 @@ msgstr "New lines will be double spaced (old ones won't be affected)."
msgid "New note"
msgstr "New note"
-#: src/strings.ts:2929
+#: src/strings.ts:2953
msgid "New note title"
msgstr "New note title"
-#: src/strings.ts:527
+#: src/strings.ts:549
msgid "New notebook"
msgstr "New notebook"
-#: src/strings.ts:1504
+#: src/strings.ts:1528
msgid "New password"
msgstr "New password"
-#: src/strings.ts:1510
+#: src/strings.ts:1534
msgid "New pin"
msgstr "New pin"
-#: src/strings.ts:537
+#: src/strings.ts:559
msgid "New reminder"
msgstr "New reminder"
-#: src/strings.ts:578
+#: src/strings.ts:600
msgid "New tab"
msgstr "New tab"
-#: src/strings.ts:2486
+#: src/strings.ts:2510
msgid "New tag"
msgstr "New tag"
-#: src/strings.ts:1390
+#: src/strings.ts:1414
msgid "New update available"
msgstr "New update available"
-#: src/strings.ts:533
+#: src/strings.ts:555
msgid "New version"
msgstr "New version"
-#: src/strings.ts:2051
+#: src/strings.ts:2075
msgid "Newest - oldest"
msgstr "Newest - oldest"
-#: src/strings.ts:2882
+#: src/strings.ts:2906
msgid "Newest first"
msgstr "Newest first"
-#: src/strings.ts:1162
+#: src/strings.ts:1186
msgid "Newly created notes will be uncategorized"
msgstr "Newly created notes will be uncategorized"
-#: src/strings.ts:554
+#: src/strings.ts:576
msgid "Next"
msgstr "Next"
-#: src/strings.ts:2876
+#: src/strings.ts:2900
msgid "Next billing date"
msgstr "Next billing date"
-#: src/strings.ts:2416
+#: src/strings.ts:2440
msgid "Next match"
msgstr "Next match"
-#: src/strings.ts:2481
+#: src/strings.ts:2505
msgid "Next tab"
msgstr "Next tab"
-#: src/strings.ts:549
+#: src/strings.ts:571
msgid "No"
msgstr "No"
-#: src/strings.ts:875
+#: src/strings.ts:897
msgid "No application found to open {fileToOpen}"
msgstr "No application found to open {fileToOpen}"
@@ -4706,19 +4751,19 @@ msgstr "No application found to open {fileToOpen}"
msgid "No attachments."
msgstr "No attachments."
-#: src/strings.ts:374
+#: src/strings.ts:391
msgid "No backups found"
msgstr "No backups found"
-#: src/strings.ts:277
+#: src/strings.ts:291
msgid "No blocks linked"
msgstr "No blocks linked"
-#: src/strings.ts:788
+#: src/strings.ts:810
msgid "No color selected"
msgstr "No color selected"
-#: src/strings.ts:1253
+#: src/strings.ts:1277
msgid "No directory selected"
msgstr "No directory selected"
@@ -4726,23 +4771,24 @@ msgstr "No directory selected"
msgid "No downloads in progress."
msgstr "No downloads in progress."
-#: src/strings.ts:2011
+#: src/strings.ts:2035
msgid "No encryption key found"
msgstr "No encryption key found"
-#: src/strings.ts:2802
+#: src/strings.ts:2826
msgid "No failed inbox items"
msgstr "No failed inbox items"
-#: src/strings.ts:1692
+#: src/strings.ts:1716
msgid "No headings found"
msgstr "No headings found"
-#: src/strings.ts:598
+#: src/strings.ts:620
msgid "No linked notes"
msgstr "No linked notes"
-#: src/strings.ts:281
+#: src/strings.ts:294
+#: src/strings.ts:295
msgid "No links found"
msgstr "No links found"
@@ -4750,15 +4796,15 @@ msgstr "No links found"
msgid "No note history available for this device."
msgstr "No note history available for this device."
-#: src/strings.ts:2530
+#: src/strings.ts:2554
msgid "No notebooks selected to move"
msgstr "No notebooks selected to move"
-#: src/strings.ts:1536
+#: src/strings.ts:1560
msgid "No notebooks yet"
msgstr "No notebooks yet"
-#: src/strings.ts:2885
+#: src/strings.ts:2909
msgid "No notes yet"
msgstr "No notes yet"
@@ -4766,140 +4812,160 @@ msgstr "No notes yet"
msgid "No one can view this {type} except you."
msgstr "No one can view this {type} except you."
-#: src/strings.ts:2665
+#: src/strings.ts:2689
msgid "No password"
msgstr "No password"
-#: src/strings.ts:278
+#: src/strings.ts:292
msgid "No references found of this note"
msgstr "No references found of this note"
-#: src/strings.ts:1543
+#: src/strings.ts:293
+msgid "No references yet"
+msgstr "No references yet"
+
+#: src/strings.ts:2986
+msgid "No reminders found"
+msgstr "No reminders found"
+
+#: src/strings.ts:1567
msgid "No results found"
msgstr "No results found"
-#: src/strings.ts:409
+#: src/strings.ts:426
msgid "No results found for \"{query}\""
msgstr "No results found for \"{query}\""
-#: src/strings.ts:1543
+#: src/strings.ts:1567
msgid "No results found for {query}"
msgstr "No results found for {query}"
-#: src/strings.ts:2879
+#: src/strings.ts:2903
msgid "No tags yet"
msgstr "No tags yet"
-#: src/strings.ts:415
+#: src/strings.ts:432
msgid "No themes found"
msgstr "No themes found"
-#: src/strings.ts:378
+#: src/strings.ts:395
msgid "No updates available"
msgstr "No updates available"
-#: src/strings.ts:663
+#: src/strings.ts:685
msgid "None"
msgstr "None"
-#: src/strings.ts:2041
+#: src/strings.ts:2065
msgid "Normal mode"
msgstr "Normal mode"
-#: src/strings.ts:391
+#: src/strings.ts:408
msgid "Not logged in"
msgstr "Not logged in"
-#: src/strings.ts:284
+#: src/strings.ts:298
msgid "note"
msgstr "note"
#: src/strings.ts:58
-#: src/strings.ts:294
+#: src/strings.ts:308
msgid "Note"
msgstr "Note"
-#: src/strings.ts:817
+#: src/strings.ts:481
+msgid "Note content"
+msgstr "Note content"
+
+#: src/strings.ts:839
msgid "Note copied to clipboard"
msgstr "Note copied to clipboard"
-#: src/strings.ts:2934
+#: src/strings.ts:2958
msgid "Note count"
msgstr "Note count"
-#: src/strings.ts:1976
+#: src/strings.ts:2000
msgid "Note does not exist"
msgstr "Note does not exist"
-#: src/strings.ts:2827
+#: src/strings.ts:2851
msgid "Note duplicated"
msgstr "Note duplicated"
-#: src/strings.ts:461
+#: src/strings.ts:478
msgid "Note history"
msgstr "Note history"
-#: src/strings.ts:812
+#: src/strings.ts:834
msgid "Note locked"
msgstr "Note locked"
-#: src/strings.ts:861
+#: src/strings.ts:883
msgid "Note restored from history"
msgstr "Note restored from history"
-#: src/strings.ts:1612
+#: src/strings.ts:1636
msgid "Note title"
msgstr "Note title"
-#: src/strings.ts:816
+#: src/strings.ts:838
msgid "Note unlocked"
msgstr "Note unlocked"
+#: src/strings.ts:2985
+msgid "Note unpublished"
+msgstr "Note unpublished"
+
#: src/strings.ts:178
msgid "Note version history is local only."
msgstr "Note version history is local only."
-#: src/strings.ts:1246
+#: src/strings.ts:1270
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."
-#: src/strings.ts:285
+#: src/strings.ts:483
+msgid "Note: Deleted versions cannot be recovered."
+msgstr "Note: Deleted versions cannot be recovered."
+
+#: src/strings.ts:299
msgid "notebook"
msgstr "notebook"
-#: src/strings.ts:295
-#: src/strings.ts:1547
+#: src/strings.ts:309
+#: src/strings.ts:1571
msgid "Notebook"
msgstr "Notebook"
-#: src/strings.ts:2516
+#: src/strings.ts:2540
msgid "Notebook added"
msgstr "Notebook added"
-#: src/strings.ts:305
+#: src/strings.ts:319
msgid "notebooks"
msgstr "notebooks"
#: src/strings.ts:257
-#: src/strings.ts:315
-#: src/strings.ts:1546
+#: src/strings.ts:329
+#: src/strings.ts:1570
msgid "Notebooks"
msgstr "Notebooks"
-#: src/strings.ts:1821
+#: src/strings.ts:1845
msgid "NOTEBOOKS"
msgstr "NOTEBOOKS"
-#: src/strings.ts:2278
+#: src/strings.ts:2302
msgid "Notebooks are the best way to organize your notes."
msgstr "Notebooks are the best way to organize your notes."
-#: src/strings.ts:304
+#: src/strings.ts:318
msgid "notes"
msgstr "notes"
-#: src/strings.ts:314
-#: src/strings.ts:1545
+#: src/strings.ts:328
+#: src/strings.ts:1569
msgid "Notes"
msgstr "Notes"
@@ -4907,35 +4973,35 @@ msgstr "Notes"
msgid "Notes exported as {path} successfully"
msgstr "Notes exported as {path} successfully"
-#: src/strings.ts:1777
+#: src/strings.ts:1801
msgid "notes imported"
msgstr "notes imported"
-#: src/strings.ts:2590
+#: src/strings.ts:2614
msgid "Notesnook"
msgstr "Notesnook"
-#: src/strings.ts:2650
+#: src/strings.ts:2674
msgid "Notesnook Circle"
msgstr "Notesnook Circle"
-#: src/strings.ts:2656
+#: src/strings.ts:2680
msgid "Notesnook Circle is exclusively available to subscribed users."
msgstr "Notesnook Circle is exclusively available to subscribed users."
-#: src/strings.ts:2104
+#: src/strings.ts:2128
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:2179
+#: src/strings.ts:2203
msgid "Notesnook Importer"
msgstr "Notesnook Importer"
-#: src/strings.ts:1084
+#: src/strings.ts:1108
msgid "Notesnook Pro"
msgstr "Notesnook Pro"
-#: src/strings.ts:2211
+#: src/strings.ts:2235
msgid ""
"Notesnook uses the following DNS providers:\n"
"\n"
@@ -4951,83 +5017,83 @@ msgstr ""
"\n"
"This can sometimes bypass local ISP blockages on Notesnook traffic. Disable this if you want the app to use system's DNS settings."
-#: src/strings.ts:1005
+#: src/strings.ts:1027
msgid "Notesnook will send you a 2FA code on your email when prompted"
msgstr "Notesnook will send you a 2FA code on your email when prompted"
-#: src/strings.ts:1012
+#: src/strings.ts:1034
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:2174
+#: src/strings.ts:2198
msgid "Notifications"
msgstr "Notifications"
-#: src/strings.ts:1399
+#: src/strings.ts:1423
msgid "Notifications disabled"
msgstr "Notifications disabled"
-#: src/strings.ts:2312
+#: src/strings.ts:2336
msgid "Numbered list"
msgstr "Numbered list"
-#: src/strings.ts:1745
+#: src/strings.ts:1769
msgid "of"
msgstr "of"
-#: src/strings.ts:1629
+#: src/strings.ts:1653
msgid "Off"
msgstr "Off"
-#: src/strings.ts:398
+#: src/strings.ts:415
msgid "Offline"
msgstr "Offline"
-#: src/strings.ts:1103
+#: src/strings.ts:1127
msgid "Offline & storage"
msgstr "Offline & storage"
-#: src/strings.ts:2856
+#: src/strings.ts:2880
msgid "Offline mode"
msgstr "Offline mode"
-#: src/strings.ts:2727
+#: src/strings.ts:2751
msgid "OK"
msgstr "OK"
-#: src/strings.ts:2264
+#: src/strings.ts:2288
msgid "Okay"
msgstr "Okay"
-#: src/strings.ts:643
+#: src/strings.ts:665
msgid "Old - new"
msgstr "Old - new"
-#: src/strings.ts:1862
+#: src/strings.ts:1886
msgid "Older version"
msgstr "Older version"
-#: src/strings.ts:2050
+#: src/strings.ts:2074
msgid "Oldest - newest"
msgstr "Oldest - newest"
-#: src/strings.ts:2883
+#: src/strings.ts:2907
msgid "Oldest first"
msgstr "Oldest first"
-#: src/strings.ts:738
+#: src/strings.ts:760
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:2865
+#: src/strings.ts:2889
msgid "One time purchase"
msgstr "One time purchase"
-#: src/strings.ts:2608
+#: src/strings.ts:2632
msgid "One time purchase, no auto-renewal"
msgstr "One time purchase, no auto-renewal"
-#: src/strings.ts:1798
+#: src/strings.ts:1822
msgid "Only .zip files are supported."
msgstr "Only .zip files are supported."
@@ -5035,7 +5101,7 @@ msgstr "Only .zip files are supported."
msgid "Open"
msgstr "Open"
-#: src/strings.ts:579
+#: src/strings.ts:601
msgid "Open file location"
msgstr "Open file location"
@@ -5043,55 +5109,55 @@ msgstr "Open file location"
msgid "Open in browser"
msgstr "Open in browser"
-#: src/strings.ts:1328
+#: src/strings.ts:1352
msgid "Open in browser to manage subscription"
msgstr "Open in browser to manage subscription"
-#: src/strings.ts:2362
+#: src/strings.ts:2386
msgid "Open in new tab"
msgstr "Open in new tab"
-#: src/strings.ts:581
+#: src/strings.ts:603
msgid "Open issue"
msgstr "Open issue"
-#: src/strings.ts:2302
+#: src/strings.ts:2326
msgid "Open link"
msgstr "Open link"
-#: src/strings.ts:1890
+#: src/strings.ts:1914
msgid "Open note"
msgstr "Open note"
-#: src/strings.ts:1402
+#: src/strings.ts:1426
msgid "Open settings"
msgstr "Open settings"
-#: src/strings.ts:2363
+#: src/strings.ts:2387
msgid "Open source"
msgstr "Open source"
-#: src/strings.ts:1310
+#: src/strings.ts:1334
msgid "Open source libraries used in Notesnook"
msgstr "Open source libraries used in Notesnook"
-#: src/strings.ts:1309
+#: src/strings.ts:1333
msgid "Open source licenses"
msgstr "Open source licenses"
-#: src/strings.ts:823
+#: src/strings.ts:845
msgid "Open source."
msgstr "Open source."
-#: src/strings.ts:1001
+#: src/strings.ts:1023
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:2816
+#: src/strings.ts:2840
msgid "Opening local file"
msgstr "Opening local file"
-#: src/strings.ts:1884
+#: src/strings.ts:1908
msgid "Optional"
msgstr "Optional"
@@ -5099,44 +5165,44 @@ msgstr "Optional"
msgid "or email us at"
msgstr "or email us at"
-#: src/strings.ts:2049
+#: src/strings.ts:2073
msgid "Order by"
msgstr "Order by"
-#: src/strings.ts:2257
+#: src/strings.ts:2281
msgid "Order ID"
msgstr "Order ID"
-#: src/strings.ts:2925
+#: src/strings.ts:2949
msgid "Organization"
msgstr "Organization"
-#: src/strings.ts:760
-#: src/strings.ts:764
+#: src/strings.ts:782
+#: src/strings.ts:786
msgid "Orphaned"
msgstr "Orphaned"
-#: src/strings.ts:2182
+#: src/strings.ts:2206
msgid "Other"
msgstr "Other"
-#: src/strings.ts:2383
+#: src/strings.ts:2407
msgid "Outline list"
msgstr "Outline list"
-#: src/strings.ts:2586
+#: src/strings.ts:2610
msgid "Outlines, note linking, and more"
msgstr "Outlines, note linking, and more"
-#: src/strings.ts:2386
+#: src/strings.ts:2410
msgid "Paragraph"
msgstr "Paragraph"
-#: src/strings.ts:2529
+#: src/strings.ts:2553
msgid "Paragraphs"
msgstr "Paragraphs"
-#: src/strings.ts:2138
+#: src/strings.ts:2162
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."
@@ -5144,31 +5210,31 @@ msgstr "Partial backups contain all your data except attachments. They are creat
msgid "Partially refunded"
msgstr "Partially refunded"
-#: src/strings.ts:2440
+#: src/strings.ts:2464
msgid "Passed"
msgstr "Passed"
-#: src/strings.ts:899
+#: src/strings.ts:921
msgid "Password"
msgstr "Password"
-#: src/strings.ts:773
+#: src/strings.ts:795
msgid "Password change failed"
msgstr "Password change failed"
-#: src/strings.ts:772
+#: src/strings.ts:794
msgid "Password changed successfully"
msgstr "Password changed successfully"
-#: src/strings.ts:810
+#: src/strings.ts:832
msgid "Password does not match"
msgstr "Password does not match"
-#: src/strings.ts:785
+#: src/strings.ts:807
msgid "Password incorrect"
msgstr "Password incorrect"
-#: src/strings.ts:809
+#: src/strings.ts:831
msgid "Password not entered"
msgstr "Password not entered"
@@ -5176,202 +5242,207 @@ msgstr "Password not entered"
msgid "Password protection"
msgstr "Password protection"
-#: src/strings.ts:2769
+#: src/strings.ts:266
+#: src/strings.ts:2990
+msgid "Password protection (optional)"
+msgstr "Password protection (optional)"
+
+#: src/strings.ts:2793
msgid "Password required"
msgstr "Password required"
-#: src/strings.ts:811
+#: src/strings.ts:833
msgid "Password updated"
msgstr "Password updated"
-#: src/strings.ts:2118
+#: src/strings.ts:2142
msgid "Password/pin"
msgstr "Password/pin"
-#: src/strings.ts:2286
+#: src/strings.ts:2310
msgid "Paste"
msgstr "Paste"
-#: src/strings.ts:2287
+#: src/strings.ts:2311
msgid "Paste and match style"
msgstr "Paste and match style"
-#: src/strings.ts:2408
+#: src/strings.ts:2432
msgid "Paste embed code here. Only iframes are supported."
msgstr "Paste embed code here. Only iframes are supported."
-#: src/strings.ts:2423
+#: src/strings.ts:2447
msgid "Paste image URL here"
msgstr "Paste image URL here"
-#: src/strings.ts:2288
+#: src/strings.ts:2312
msgid "Paste without formatting"
msgstr "Paste without formatting"
-#: src/strings.ts:1110
+#: src/strings.ts:1134
msgid "Pause sync"
msgstr "Pause sync"
-#: src/strings.ts:2609
+#: src/strings.ts:2633
msgid "Pay once and use for 5 years"
msgstr "Pay once and use for 5 years"
-#: src/strings.ts:2801
+#: src/strings.ts:2825
msgid "Payload data"
msgstr "Payload data"
-#: src/strings.ts:2236
+#: src/strings.ts:2260
msgid "Payment method"
msgstr "Payment method"
-#: src/strings.ts:2868
+#: src/strings.ts:2892
msgid "Payment summary"
msgstr "Payment summary"
-#: src/strings.ts:790
+#: src/strings.ts:812
msgid "PDF is password protected"
msgstr "PDF is password protected"
-#: src/strings.ts:2836
+#: src/strings.ts:2860
msgid "Permission required to save QR-Code to Gallery"
msgstr "Permission required to save QR-Code to Gallery"
-#: src/strings.ts:1756
+#: src/strings.ts:1780
msgid "phone number"
msgstr "phone number"
-#: src/strings.ts:1875
+#: src/strings.ts:1899
msgid "Phone number"
msgstr "Phone number"
-#: src/strings.ts:1025
+#: src/strings.ts:1047
msgid "Phone number not entered"
msgstr "Phone number not entered"
-#: src/strings.ts:916
+#: src/strings.ts:938
msgid "Pin"
msgstr "Pin"
-#: src/strings.ts:1717
+#: src/strings.ts:1741
msgid "Pin notes in notifications drawer"
msgstr "Pin notes in notifications drawer"
-#: src/strings.ts:946
+#: src/strings.ts:968
msgid "Pin notification"
msgstr "Pin notification"
-#: src/strings.ts:525
+#: src/strings.ts:547
msgid "Pinned"
msgstr "Pinned"
-#: src/strings.ts:2630
+#: src/strings.ts:2654
msgid "Plan limits"
msgstr "Plan limits"
-#: src/strings.ts:2590
+#: src/strings.ts:2614
msgid "Plans"
msgstr "Plans"
-#: src/strings.ts:1020
+#: src/strings.ts:1042
msgid "Please confirm your identity by entering a recovery code."
msgstr "Please confirm your identity by entering a recovery code."
-#: src/strings.ts:999
-#: src/strings.ts:2270
+#: src/strings.ts:1021
+#: src/strings.ts:2294
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."
#. placeholder {0}: phoneNumber ? phoneNumber : "your registered phone number."
-#: src/strings.ts:1014
+#: src/strings.ts:1036
msgid "Please confirm your identity by entering the authentication code sent to {0}."
msgstr "Please confirm your identity by entering the authentication code sent to {0}."
-#: src/strings.ts:1007
+#: src/strings.ts:1029
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:1936
+#: src/strings.ts:1960
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:2034
+#: src/strings.ts:2058
msgid "Please enable automatic backups to avoid losing important data."
msgstr "Please enable automatic backups to avoid losing important data."
-#: src/strings.ts:2712
+#: src/strings.ts:2736
msgid "Please enter a key name"
msgstr "Please enter a key name"
-#: src/strings.ts:1539
-#: src/strings.ts:2771
+#: src/strings.ts:1563
+#: src/strings.ts:2795
msgid "Please enter a valid email address"
msgstr "Please enter a valid email address"
-#: src/strings.ts:1981
+#: src/strings.ts:2005
msgid "Please enter a valid hex color (e.g. #ffffff)"
msgstr "Please enter a valid hex color (e.g. #ffffff)"
-#: src/strings.ts:1540
+#: src/strings.ts:1564
msgid "Please enter a valid phone number with country code"
msgstr "Please enter a valid phone number with country code"
-#: src/strings.ts:1662
+#: src/strings.ts:1686
msgid "Please enter a valid URL"
msgstr "Please enter a valid URL"
-#: src/strings.ts:1647
+#: src/strings.ts:1671
msgid "Please enter password of this backup file"
msgstr "Please enter password of this backup file"
-#: src/strings.ts:2281
+#: src/strings.ts:2305
msgid "Please enter the password to decrypt and restore this backup."
msgstr "Please enter the password to decrypt and restore this backup."
-#: src/strings.ts:792
+#: src/strings.ts:814
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:1892
+#: src/strings.ts:1916
msgid "Please enter the password to unlock this note"
msgstr "Please enter the password to unlock this note"
-#: src/strings.ts:1889
+#: src/strings.ts:1913
msgid "Please enter the password to view this version"
msgstr "Please enter the password to view this version"
-#: src/strings.ts:2733
+#: src/strings.ts:2757
msgid "Please enter your account password to view this API key."
msgstr "Please enter your account password to view this API key."
-#: src/strings.ts:1039
+#: src/strings.ts:1061
msgid "Please enter your app lock password to continue"
msgstr "Please enter your app lock password to continue"
-#: src/strings.ts:1041
+#: src/strings.ts:1063
msgid "Please enter your app lock pin to continue"
msgstr "Please enter your app lock pin to continue"
-#: src/strings.ts:1035
+#: src/strings.ts:1057
msgid "Please enter your password to continue"
msgstr "Please enter your password to continue"
-#: src/strings.ts:1960
+#: src/strings.ts:1984
msgid "Please enter your vault password to continue"
msgstr "Please enter your vault password to continue"
-#: src/strings.ts:770
+#: src/strings.ts:792
msgid "Please fill all the fields to continue."
msgstr "Please fill all the fields to continue."
-#: src/strings.ts:1583
+#: src/strings.ts:1607
msgid "Please grant notifications permission to add new reminders."
msgstr "Please grant notifications permission to add new reminders."
-#: src/strings.ts:2786
+#: src/strings.ts:2810
msgid "Please login to download attachments."
msgstr "Please login to download attachments."
-#: src/strings.ts:889
+#: src/strings.ts:911
msgid "Please make sure you have saved the recovery key. Tap one more time to confirm."
msgstr "Please make sure you have saved the recovery key. Tap one more time to confirm."
@@ -5379,35 +5450,35 @@ 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:2896
+#: src/strings.ts:2920
msgid "Please provide a valid multi factor authentication code."
msgstr "Please provide a valid multi factor authentication code."
-#: src/strings.ts:2894
+#: src/strings.ts:2918
msgid "Please provide a valid multi factor authentication recovery code."
msgstr "Please provide a valid multi factor authentication recovery code."
-#: src/strings.ts:1792
+#: src/strings.ts:1816
msgid "Please refer to the"
msgstr "Please refer to the"
-#: src/strings.ts:1584
+#: src/strings.ts:1608
msgid "Please select the day to repeat the reminder on"
msgstr "Please select the day to repeat the reminder on"
-#: src/strings.ts:1418
+#: src/strings.ts:1442
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:2429
+#: src/strings.ts:2453
msgid "Please set a table size"
msgstr "Please set a table size"
-#: src/strings.ts:1585
+#: src/strings.ts:1609
msgid "Please set title of the reminder"
msgstr "Please set title of the reminder"
-#: src/strings.ts:2014
+#: src/strings.ts:2038
msgid "Please try again"
msgstr "Please try again"
@@ -5419,16 +5490,16 @@ msgstr "Please verify it's you"
msgid "Please wait"
msgstr "Please wait"
-#: src/strings.ts:1024
+#: src/strings.ts:1046
msgid "Please wait before requesting a new code"
msgstr "Please wait before requesting a new code"
-#: src/strings.ts:1421
-#: src/strings.ts:1578
+#: src/strings.ts:1445
+#: src/strings.ts:1602
msgid "Please wait before requesting another email"
msgstr "Please wait before requesting another email"
-#: src/strings.ts:960
+#: src/strings.ts:982
msgid "Please wait while we encrypt {name} for upload."
msgstr "Please wait while we encrypt {name} for upload."
@@ -5440,27 +5511,27 @@ 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:1921
+#: src/strings.ts:1945
msgid "Please wait while we finalize your account."
msgstr "Please wait while we finalize your account."
-#: src/strings.ts:1083
+#: src/strings.ts:1107
msgid "Please wait while we load your subscription"
msgstr "Please wait while we load your subscription"
-#: src/strings.ts:407
+#: src/strings.ts:424
msgid "Please wait while we log you out."
msgstr "Please wait while we log you out."
-#: src/strings.ts:1942
+#: src/strings.ts:1966
msgid "Please wait while we reset your account password."
msgstr "Please wait while we reset your account password."
-#: src/strings.ts:1640
+#: src/strings.ts:1664
msgid "Please wait while we restore your backup..."
msgstr "Please wait while we restore your backup..."
-#: src/strings.ts:1924
+#: src/strings.ts:1948
msgid "Please wait while we send you recovery instructions"
msgstr "Please wait while we send you recovery instructions"
@@ -5468,56 +5539,56 @@ msgstr "Please wait while we send you recovery instructions"
msgid "Please wait while we sync all your data."
msgstr "Please wait while we sync all your data."
-#: src/strings.ts:1089
+#: src/strings.ts:1113
msgid "Please wait while we verify your subscription"
msgstr "Please wait while we verify your subscription"
-#: src/strings.ts:1810
-#: src/strings.ts:1917
+#: src/strings.ts:1834
+#: src/strings.ts:1941
msgid "Please wait while you are authenticated."
msgstr "Please wait while you are authenticated."
-#: src/strings.ts:1929
+#: src/strings.ts:1953
msgid "Please wait while your data is downloaded & decrypted."
msgstr "Please wait while your data is downloaded & decrypted."
-#: src/strings.ts:1135
+#: src/strings.ts:1159
msgid "Preferences"
msgstr "Preferences"
-#: src/strings.ts:2946
+#: src/strings.ts:2970
msgid "Preparing logs.."
msgstr "Preparing logs.."
-#: src/strings.ts:921
+#: src/strings.ts:943
msgid "Preparing note for share"
msgstr "Preparing note for share"
-#: src/strings.ts:1642
+#: src/strings.ts:1666
msgid "Preparing to restore backup file..."
msgstr "Preparing to restore backup file..."
-#: src/strings.ts:431
+#: src/strings.ts:448
msgid "PRESETS"
msgstr "PRESETS"
-#: src/strings.ts:2156
+#: src/strings.ts:2180
msgid "Pressing \"—\" will hide the app in your system tray."
msgstr "Pressing \"—\" will hide the app in your system tray."
-#: src/strings.ts:2159
+#: src/strings.ts:2183
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:2207
+#: src/strings.ts:2231
msgid "Prevent note title from appearing in tab/window title."
msgstr "Prevent note title from appearing in tab/window title."
-#: src/strings.ts:2848
+#: src/strings.ts:2872
msgid "Prevent the screen from turning off while the editor is focused."
msgstr "Prevent the screen from turning off while the editor is focused."
-#: src/strings.ts:2350
+#: src/strings.ts:2374
msgid "Preview attachment"
msgstr "Preview attachment"
@@ -5525,43 +5596,43 @@ msgstr "Preview attachment"
msgid "Preview not available, content is encrypted."
msgstr "Preview not available, content is encrypted."
-#: src/strings.ts:2417
+#: src/strings.ts:2441
msgid "Previous match"
msgstr "Previous match"
-#: src/strings.ts:2482
+#: src/strings.ts:2506
msgid "Previous tab"
msgstr "Previous tab"
-#: src/strings.ts:2061
+#: src/strings.ts:2085
msgid "Print"
msgstr "Print"
-#: src/strings.ts:2181
+#: src/strings.ts:2205
msgid "Privacy"
msgstr "Privacy"
-#: src/strings.ts:1183
+#: src/strings.ts:1207
msgid "Privacy & security"
msgstr "Privacy & security"
-#: src/strings.ts:1682
+#: src/strings.ts:1706
msgid "Privacy comes first."
msgstr "Privacy comes first."
-#: src/strings.ts:840
+#: src/strings.ts:862
msgid "Privacy for everyone"
msgstr "Privacy for everyone"
-#: src/strings.ts:1202
+#: src/strings.ts:1226
msgid "Privacy mode"
msgstr "Privacy mode"
-#: src/strings.ts:1307
+#: src/strings.ts:1331
msgid "Privacy policy"
msgstr "Privacy policy"
-#: src/strings.ts:2627
+#: src/strings.ts:2651
msgid "Privacy Policy."
msgstr "Privacy Policy."
@@ -5573,99 +5644,99 @@ msgstr "Privacy Policy. "
msgid "private analytics and bug reports."
msgstr "private analytics and bug reports."
-#: src/strings.ts:2768
+#: src/strings.ts:2792
msgid "Private key is passphrase-protected. Please provide the decrypted key or a key without a passphrase."
msgstr "Private key is passphrase-protected. Please provide the decrypted key or a key without a passphrase."
-#: src/strings.ts:2788
+#: src/strings.ts:2812
msgid "Private key required"
msgstr "Private key required"
-#: src/strings.ts:2754
+#: src/strings.ts:2778
msgid "Private key:"
msgstr "Private key:"
-#: src/strings.ts:831
+#: src/strings.ts:853
msgid "Private."
msgstr "Private."
-#: src/strings.ts:1748
+#: src/strings.ts:1772
msgid "Pro"
msgstr "Pro"
-#: src/strings.ts:2507
+#: src/strings.ts:2531
msgid "Pro plan"
msgstr "Pro plan"
-#: src/strings.ts:2074
+#: src/strings.ts:2098
msgid "Processing {collection}..."
msgstr "Processing {collection}..."
-#: src/strings.ts:2073
+#: src/strings.ts:2097
msgid "Processing..."
msgstr "Processing..."
-#: src/strings.ts:1262
+#: src/strings.ts:1286
msgid "Productivity"
msgstr "Productivity"
-#: src/strings.ts:2170
+#: src/strings.ts:2194
msgid "Profile"
msgstr "Profile"
-#: src/strings.ts:1982
+#: src/strings.ts:2006
msgid "Profile updated"
msgstr "Profile updated"
-#: src/strings.ts:1893
+#: src/strings.ts:1917
msgid "Properties"
msgstr "Properties"
-#: src/strings.ts:2796
+#: src/strings.ts:2820
msgid "Protect incoming messages so only you can read them"
msgstr "Protect incoming messages so only you can read them"
-#: src/strings.ts:2584
+#: src/strings.ts:2608
msgid "Protect notes with app-level security"
msgstr "Protect notes with app-level security"
-#: src/strings.ts:404
+#: src/strings.ts:421
msgid "Protect your notes"
msgstr "Protect your notes"
-#: src/strings.ts:2793
+#: src/strings.ts:2817
msgid "Provide your own keys"
msgstr "Provide your own keys"
-#: src/strings.ts:2218
+#: src/strings.ts:2242
msgid "Proxy"
msgstr "Proxy"
-#: src/strings.ts:2787
+#: src/strings.ts:2811
msgid "Public key required"
msgstr "Public key required"
-#: src/strings.ts:2753
+#: src/strings.ts:2777
msgid "Public key:"
msgstr "Public key:"
-#: src/strings.ts:488
+#: src/strings.ts:510
msgid "Publish"
msgstr "Publish"
-#: src/strings.ts:489
+#: src/strings.ts:511
msgid "Publish note"
msgstr "Publish note"
-#: src/strings.ts:2666
+#: src/strings.ts:2690
msgid "Publish to the web"
msgstr "Publish to the web"
-#: src/strings.ts:491
+#: src/strings.ts:513
msgid "Publish your note to share it with others. You can set a password to protect it."
msgstr "Publish your note to share it with others. You can set a password to protect it."
-#: src/strings.ts:944
+#: src/strings.ts:966
msgid "Published"
msgstr "Published"
@@ -5673,107 +5744,115 @@ msgstr "Published"
msgid "Published at"
msgstr "Published at"
-#: src/strings.ts:267
+#: src/strings.ts:268
msgid "Published note can only be viewed by someone with the password."
msgstr "Published note can only be viewed by someone with the password."
-#: src/strings.ts:270
+#: src/strings.ts:279
+msgid "Published note link"
+msgstr "Published note link"
+
+#: src/strings.ts:273
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:2618
+#: src/strings.ts:2642
msgid "Purchase"
msgstr "Purchase"
-#: src/strings.ts:1393
+#: src/strings.ts:1417
msgid "Quick note"
msgstr "Quick note"
-#: src/strings.ts:1263
+#: src/strings.ts:1287
msgid "Quick note notification"
msgstr "Quick note notification"
-#: src/strings.ts:1719
+#: src/strings.ts:1743
msgid "Quick note widgets"
msgstr "Quick note widgets"
-#: src/strings.ts:2478
+#: src/strings.ts:2502
msgid "Quick open"
msgstr "Quick open"
-#: src/strings.ts:1265
+#: src/strings.ts:1289
msgid "Quickly create a note from the notification"
msgstr "Quickly create a note from the notification"
-#: src/strings.ts:2370
+#: src/strings.ts:2394
msgid "Quote"
msgstr "Quote"
-#: src/strings.ts:1379
+#: src/strings.ts:1403
msgid "Rate Notesnook on App Store"
msgstr "Rate Notesnook on App Store"
-#: src/strings.ts:1380
+#: src/strings.ts:1404
msgid "Rate Notesnook on Play Store"
msgstr "Rate Notesnook on Play Store"
-#: src/strings.ts:591
+#: src/strings.ts:613
msgid "Rate now (It takes only a second)"
msgstr "Rate now (It takes only a second)"
-#: src/strings.ts:387
+#: src/strings.ts:404
msgid "Read full release notes on "
msgstr "Read full release notes on "
-#: src/strings.ts:930
+#: src/strings.ts:952
msgid "Read only"
msgstr "Read only"
-#: src/strings.ts:1287
+#: src/strings.ts:1311
msgid "Read the documentation to learn more about Notesnook"
msgstr "Read the documentation to learn more about Notesnook"
-#: src/strings.ts:1308
+#: src/strings.ts:1332
msgid "Read the privacy policy"
msgstr "Read the privacy policy"
-#: src/strings.ts:1306
+#: src/strings.ts:1330
msgid "Read the terms of service"
msgstr "Read the terms of service"
-#: src/strings.ts:1643
+#: src/strings.ts:1667
msgid "Reading backup file..."
msgstr "Reading backup file..."
-#: src/strings.ts:2592
+#: src/strings.ts:2616
msgid "Ready to take the next step on your private note taking journey?"
msgstr "Ready to take the next step on your private note taking journey?"
-#: src/strings.ts:1108
+#: src/strings.ts:1132
msgid "Real-time sync"
msgstr "Real-time sync"
-#: src/strings.ts:2260
+#: src/strings.ts:2284
msgid "Receipt"
msgstr "Receipt"
-#: src/strings.ts:1638
+#: src/strings.ts:1662
msgid "Recent backups"
msgstr "Recent backups"
-#: src/strings.ts:2493
+#: src/strings.ts:479
+msgid "Recent history"
+msgstr "Recent history"
+
+#: src/strings.ts:2517
msgid "Recents"
msgstr "Recents"
-#: src/strings.ts:2436
+#: src/strings.ts:2460
msgid "Recheck all"
msgstr "Recheck all"
-#: src/strings.ts:2028
+#: src/strings.ts:2052
msgid "Rechecking failed"
msgstr "Rechecking failed"
-#: src/strings.ts:2461
+#: src/strings.ts:2485
msgid "Recipes"
msgstr "Recipes"
@@ -5781,23 +5860,23 @@ msgstr "Recipes"
msgid "Recommended"
msgstr "Recommended"
-#: src/strings.ts:2594
+#: src/strings.ts:2618
msgid "Recommended by Privacy Guides"
msgstr "Recommended by Privacy Guides"
-#: src/strings.ts:438
+#: src/strings.ts:455
msgid "Recover your account"
msgstr "Recover your account"
-#: src/strings.ts:2892
+#: src/strings.ts:2916
msgid "Recovery code"
msgstr "Recovery code"
-#: src/strings.ts:1023
+#: src/strings.ts:1045
msgid "Recovery codes copied!"
msgstr "Recovery codes copied!"
-#: src/strings.ts:1028
+#: src/strings.ts:1050
msgid "Recovery codes saved!"
msgstr "Recovery codes saved!"
@@ -5809,234 +5888,234 @@ msgstr "Recovery email has been sent to your email address. Please check your in
msgid "Recovery email sent!"
msgstr "Recovery email sent!"
-#: src/strings.ts:892
+#: src/strings.ts:914
msgid "Recovery key copied"
msgstr "Recovery key copied"
-#: src/strings.ts:1068
+#: src/strings.ts:1090
msgid "Recovery key helps you recover your data if you forget your password."
msgstr "Recovery key helps you recover your data if you forget your password."
-#: src/strings.ts:890
+#: src/strings.ts:912
msgid "Recovery key QR code saved"
msgstr "Recovery key QR code saved"
-#: src/strings.ts:891
+#: src/strings.ts:913
msgid "Recovery key text file saved"
msgstr "Recovery key text file saved"
-#: src/strings.ts:1943
+#: src/strings.ts:1967
msgid "Recovery successful!"
msgstr "Recovery successful!"
-#: src/strings.ts:2473
+#: src/strings.ts:2497
msgid "Redeem"
msgstr "Redeem"
-#: src/strings.ts:2649
+#: src/strings.ts:2673
msgid "Redeem code"
msgstr "Redeem code"
-#: src/strings.ts:2470
+#: src/strings.ts:2494
msgid "Redeem gift code"
msgstr "Redeem gift code"
-#: src/strings.ts:2472
+#: src/strings.ts:2496
msgid "Redeeming gift code"
msgstr "Redeeming gift code"
-#: src/strings.ts:523
+#: src/strings.ts:545
msgid "Redo"
msgstr "Redo"
-#: src/strings.ts:371
+#: src/strings.ts:385
msgid "Referenced in"
msgstr "Referenced in"
-#: src/strings.ts:953
+#: src/strings.ts:975
msgid "References"
msgstr "References"
-#: src/strings.ts:522
+#: src/strings.ts:544
msgid "Regenerate"
msgstr "Regenerate"
-#: src/strings.ts:2124
+#: src/strings.ts:2148
msgid "Register"
msgstr "Register"
-#: src/strings.ts:435
+#: src/strings.ts:452
msgid "Release notes"
msgstr "Release notes"
-#: src/strings.ts:2495
+#: src/strings.ts:2519
msgid "Release track"
msgstr "Release track"
-#: src/strings.ts:659
+#: src/strings.ts:681
msgid "Relevance"
msgstr "Relevance"
-#: src/strings.ts:1697
+#: src/strings.ts:1721
msgid "Reload app"
msgstr "Reload app"
-#: src/strings.ts:1855
+#: src/strings.ts:1879
msgid "Relogin to your account"
msgstr "Relogin to your account"
-#: src/strings.ts:1823
+#: src/strings.ts:1847
msgid "Remembered your password?"
msgstr "Remembered your password?"
-#: src/strings.ts:2874
-#: src/strings.ts:2899
+#: src/strings.ts:2898
+#: src/strings.ts:2923
msgid "Remind before your trial ends"
msgstr "Remind before your trial ends"
-#: src/strings.ts:943
+#: src/strings.ts:965
msgid "Remind me"
msgstr "Remind me"
-#: src/strings.ts:370
+#: src/strings.ts:384
msgid "Remind me in"
msgstr "Remind me in"
-#: src/strings.ts:1530
+#: src/strings.ts:1554
msgid "Remind me of..."
msgstr "Remind me of..."
-#: src/strings.ts:287
+#: src/strings.ts:301
msgid "reminder"
msgstr "reminder"
-#: src/strings.ts:297
+#: src/strings.ts:311
msgid "Reminder"
msgstr "Reminder"
-#: src/strings.ts:1268
+#: src/strings.ts:1292
msgid "Reminder notifications"
msgstr "Reminder notifications"
-#: src/strings.ts:1586
+#: src/strings.ts:1610
msgid "Reminder time cannot be earlier than the current time."
msgstr "Reminder time cannot be earlier than the current time."
-#: src/strings.ts:307
+#: src/strings.ts:321
msgid "reminders"
msgstr "reminders"
-#: src/strings.ts:317
-#: src/strings.ts:1266
-#: src/strings.ts:1549
+#: src/strings.ts:331
+#: src/strings.ts:1290
+#: src/strings.ts:1573
msgid "Reminders"
msgstr "Reminders"
-#: src/strings.ts:1401
+#: src/strings.ts:1425
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:1980
+#: src/strings.ts:2004
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."
-#: src/strings.ts:784
+#: src/strings.ts:806
msgid "Remove"
msgstr "Remove"
-#: src/strings.ts:1197
+#: src/strings.ts:1221
msgid "Remove all notes from the vault."
msgstr "Remove all notes from the vault."
-#: src/strings.ts:1224
+#: src/strings.ts:1248
msgid "Remove app lock password"
msgstr "Remove app lock password"
-#: src/strings.ts:1228
+#: src/strings.ts:1252
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:1223
+#: src/strings.ts:1247
msgid "Remove app lock pin"
msgstr "Remove app lock pin"
-#: src/strings.ts:1226
+#: src/strings.ts:1250
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."
-#: src/strings.ts:912
+#: src/strings.ts:934
msgid "Remove as default"
msgstr "Remove as default"
-#: src/strings.ts:2354
+#: src/strings.ts:2378
msgid "Remove attachment"
msgstr "Remove attachment"
-#: src/strings.ts:949
+#: src/strings.ts:971
msgid "Remove from all"
msgstr "Remove from all"
-#: src/strings.ts:922
+#: src/strings.ts:944
msgid "Remove from notebook"
msgstr "Remove from notebook"
-#: src/strings.ts:2494
+#: src/strings.ts:2518
msgid "Remove from recents"
msgstr "Remove from recents"
-#: src/strings.ts:1062
+#: src/strings.ts:1084
msgid "Remove full name"
msgstr "Remove full name"
-#: src/strings.ts:2301
+#: src/strings.ts:2325
msgid "Remove link"
msgstr "Remove link"
-#: src/strings.ts:1058
+#: src/strings.ts:1080
msgid "Remove profile picture"
msgstr "Remove profile picture"
-#: src/strings.ts:1065
+#: src/strings.ts:1087
msgid "Remove your full name from profile"
msgstr "Remove your full name from profile"
-#: src/strings.ts:1059
+#: src/strings.ts:1081
msgid "Remove your profile picture"
msgstr "Remove your profile picture"
-#: src/strings.ts:548
+#: src/strings.ts:570
msgid "Rename"
msgstr "Rename"
-#: src/strings.ts:753
+#: src/strings.ts:775
msgid "Rename file"
msgstr "Rename file"
-#: src/strings.ts:907
+#: src/strings.ts:929
msgid "Reorder"
msgstr "Reorder"
-#: src/strings.ts:334
+#: src/strings.ts:348
msgid "Repeats daily at {date}"
msgstr "Repeats daily at {date}"
-#: src/strings.ts:2414
+#: src/strings.ts:2438
msgid "Replace"
msgstr "Replace"
-#: src/strings.ts:2415
+#: src/strings.ts:2439
msgid "Replace all"
msgstr "Replace all"
-#: src/strings.ts:2201
+#: src/strings.ts:2225
msgid "Report"
msgstr "Report"
-#: src/strings.ts:1279
+#: src/strings.ts:1303
msgid "Report an issue"
msgstr "Report an issue"
-#: src/strings.ts:475
+#: src/strings.ts:497
msgid "Report issue"
msgstr "Report issue"
@@ -6045,135 +6124,135 @@ msgid "Resend code in {seconds}s"
msgstr "Resend code in {seconds}s"
#. placeholder {0}: seconds ? ` in ${seconds}` : ""
-#: src/strings.ts:679
+#: src/strings.ts:701
msgid "Resend code{0}"
msgstr "Resend code{0}"
-#: src/strings.ts:1424
+#: src/strings.ts:1448
msgid "Resend email"
msgstr "Resend email"
-#: src/strings.ts:1847
+#: src/strings.ts:1871
msgid "Reset"
msgstr "Reset"
-#: src/strings.ts:1939
+#: src/strings.ts:1963
msgid "Reset account password"
msgstr "Reset account password"
-#: src/strings.ts:2521
+#: src/strings.ts:2545
msgid "Reset home"
msgstr "Reset home"
-#: src/strings.ts:1848
+#: src/strings.ts:1872
msgid "Reset selection"
msgstr "Reset selection"
-#: src/strings.ts:1675
+#: src/strings.ts:1699
msgid "Reset server urls"
msgstr "Reset server urls"
-#: src/strings.ts:2057
+#: src/strings.ts:2081
msgid "Reset sidebar"
msgstr "Reset sidebar"
-#: src/strings.ts:1169
+#: src/strings.ts:1193
msgid "Reset the toolbar to default settings"
msgstr "Reset the toolbar to default settings"
-#: src/strings.ts:1168
+#: src/strings.ts:1192
msgid "Reset toolbar"
msgstr "Reset toolbar"
-#: src/strings.ts:1941
+#: src/strings.ts:1965
msgid "Resetting account password ({progress})"
msgstr "Resetting account password ({progress})"
-#: src/strings.ts:2016
+#: src/strings.ts:2040
msgid "Restart now"
msgstr "Restart now"
-#: src/strings.ts:1674
+#: src/strings.ts:1698
msgid "Restart the app for changes to take effect."
msgstr "Restart the app for changes to take effect."
-#: src/strings.ts:1340
+#: src/strings.ts:1364
msgid "Restart the app to apply the changes"
msgstr "Restart the app to apply the changes"
-#: src/strings.ts:1620
+#: src/strings.ts:1644
msgid "Restart the app."
msgstr "Restart the app."
-#: src/strings.ts:570
+#: src/strings.ts:592
msgid "Restore"
msgstr "Restore"
-#: src/strings.ts:2941
+#: src/strings.ts:2965
msgid "Restore actions"
msgstr "Restore actions"
-#: src/strings.ts:1257
+#: src/strings.ts:1281
msgid "Restore backup"
msgstr "Restore backup"
-#: src/strings.ts:2443
+#: src/strings.ts:2467
msgid "Restore backup?"
msgstr "Restore backup?"
-#: src/strings.ts:906
+#: src/strings.ts:928
msgid "Restore failed"
msgstr "Restore failed"
-#: src/strings.ts:1637
+#: src/strings.ts:1661
msgid "Restore from files"
msgstr "Restore from files"
-#: src/strings.ts:1687
+#: src/strings.ts:1711
msgid "Restore this version"
msgstr "Restore this version"
-#: src/strings.ts:1258
+#: src/strings.ts:1282
msgid "Restore your data from a backup"
msgstr "Restore your data from a backup"
-#: src/strings.ts:865
+#: src/strings.ts:887
msgid "Restored successfully"
msgstr "Restored successfully"
-#: src/strings.ts:375
+#: src/strings.ts:392
msgid "Restoring"
msgstr "Restoring"
-#: src/strings.ts:376
+#: src/strings.ts:393
msgid "Restoring {collection}..."
msgstr "Restoring {collection}..."
-#: src/strings.ts:1639
+#: src/strings.ts:1663
msgid "Restoring backup..."
msgstr "Restoring backup..."
-#: src/strings.ts:688
+#: src/strings.ts:710
msgid "Resubscribe from Playstore"
msgstr "Resubscribe from Playstore"
-#: src/strings.ts:689
+#: src/strings.ts:711
msgid "Resubscribe to Pro"
msgstr "Resubscribe to Pro"
-#: src/strings.ts:2724
+#: src/strings.ts:2748
msgid "Retry"
msgstr "Retry"
-#: src/strings.ts:515
+#: src/strings.ts:537
msgid "Reupload"
msgstr "Reupload"
-#: src/strings.ts:2047
+#: src/strings.ts:2071
msgid "Reveal in list"
msgstr "Reveal in list"
-#: src/strings.ts:2632
+#: src/strings.ts:2656
msgid "Review your current limits and unlock more with premium"
msgstr "Review your current limits and unlock more with premium"
@@ -6181,172 +6260,172 @@ msgstr "Review your current limits and unlock more with premium"
msgid "Revoke"
msgstr "Revoke"
-#: src/strings.ts:1201
+#: src/strings.ts:1225
msgid "Revoke biometric unlocking"
msgstr "Revoke biometric unlocking"
-#: src/strings.ts:2738
+#: src/strings.ts:2762
msgid "Revoke Inbox API Key - {name}"
msgstr "Revoke Inbox API Key - {name}"
-#: src/strings.ts:453
+#: src/strings.ts:470
msgid "Revoke vault fingerprint unlock"
msgstr "Revoke vault fingerprint unlock"
-#: src/strings.ts:1315
+#: src/strings.ts:1339
msgid "Roadmap"
msgstr "Roadmap"
-#: src/strings.ts:2075
+#: src/strings.ts:2099
msgid "Root"
msgstr "Root"
-#: src/strings.ts:2054
+#: src/strings.ts:2078
msgid "Rotate left"
msgstr "Rotate left"
-#: src/strings.ts:2055
+#: src/strings.ts:2079
msgid "Rotate right"
msgstr "Rotate right"
-#: src/strings.ts:2324
+#: src/strings.ts:2348
msgid "Row properties"
msgstr "Row properties"
-#: src/strings.ts:547
+#: src/strings.ts:569
msgid "Run file check"
msgstr "Run file check"
-#: src/strings.ts:2096
+#: src/strings.ts:2120
msgid "Safe & encrypted notes"
msgstr "Safe & encrypted notes"
-#: src/strings.ts:630
+#: src/strings.ts:652
msgid "Sat"
msgstr "Sat"
-#: src/strings.ts:621
+#: src/strings.ts:643
msgid "Saturday"
msgstr "Saturday"
-#: src/strings.ts:576
+#: src/strings.ts:598
msgid "Save"
msgstr "Save"
-#: src/strings.ts:479
+#: src/strings.ts:501
msgid "Save a backup of your notes"
msgstr "Save a backup of your notes"
-#: src/strings.ts:566
+#: src/strings.ts:588
msgid "Save a copy"
msgstr "Save a copy"
-#: src/strings.ts:492
+#: src/strings.ts:514
msgid "Save account recovery key"
msgstr "Save account recovery key"
-#: src/strings.ts:585
+#: src/strings.ts:607
msgid "Save and continue"
msgstr "Save and continue"
-#: src/strings.ts:2942
+#: src/strings.ts:2984
msgid "Save changes"
msgstr "Save changes"
-#: src/strings.ts:1066
+#: src/strings.ts:1088
msgid "Save data recovery key"
msgstr "Save data recovery key"
-#: src/strings.ts:971
+#: src/strings.ts:993
msgid "Save failed. Vault is locked"
msgstr "Save failed. Vault is locked"
-#: src/strings.ts:594
+#: src/strings.ts:616
msgid "Save QR code to gallery"
msgstr "Save QR code to gallery"
-#: src/strings.ts:499
+#: src/strings.ts:521
msgid "Save recovery codes"
msgstr "Save recovery codes"
-#: src/strings.ts:682
+#: src/strings.ts:704
msgid "Save to file"
msgstr "Save to file"
-#: src/strings.ts:595
+#: src/strings.ts:617
msgid "Save to text file"
msgstr "Save to text file"
-#: src/strings.ts:1382
+#: src/strings.ts:1406
msgid "Save your account recovery key"
msgstr "Save your account recovery key"
-#: src/strings.ts:494
+#: src/strings.ts:516
msgid "Save your account recovery key in a safe place. You will need it to recover your account in case you forget your password."
msgstr "Save your account recovery key in a safe place. You will need it to recover your account in case you forget your password."
-#: src/strings.ts:501
+#: src/strings.ts:523
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:2433
+#: src/strings.ts:2457
msgid "Saved"
msgstr "Saved"
-#: src/strings.ts:2434
+#: src/strings.ts:2458
msgid "Saving"
msgstr "Saving"
-#: src/strings.ts:2950
+#: src/strings.ts:2974
msgid "Saving logs to your storage..."
msgstr "Saving logs to your storage..."
-#: src/strings.ts:1615
+#: src/strings.ts:1639
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."
-#: src/strings.ts:798
+#: src/strings.ts:820
msgid "Saving zip file ({progress}%). Please wait..."
msgstr "Saving zip file ({progress}%). Please wait..."
-#: src/strings.ts:799
+#: src/strings.ts:821
msgid "Saving zip file. Please wait..."
msgstr "Saving zip file. Please wait..."
-#: src/strings.ts:1749
+#: src/strings.ts:1773
msgid "Scan the QR code with your authenticator app"
msgstr "Scan the QR code with your authenticator app"
-#: src/strings.ts:2459
+#: src/strings.ts:2483
msgid "School work"
msgstr "School work"
-#: src/strings.ts:2532
+#: src/strings.ts:2556
msgid "Scroll to bottom"
msgstr "Scroll to bottom"
-#: src/strings.ts:2531
+#: src/strings.ts:2555
msgid "Scroll to top"
msgstr "Scroll to top"
-#: src/strings.ts:1534
-#: src/strings.ts:1555
+#: src/strings.ts:1558
+#: src/strings.ts:1579
msgid "Search"
msgstr "Search"
-#: src/strings.ts:1529
+#: src/strings.ts:1553
msgid "Search a note"
msgstr "Search a note"
-#: src/strings.ts:1527
+#: src/strings.ts:1551
msgid "Search a note to link to"
msgstr "Search a note to link to"
-#: src/strings.ts:2475
+#: src/strings.ts:2499
msgid "Search for notes, notebooks, and tags..."
msgstr "Search for notes, notebooks, and tags..."
-#: src/strings.ts:1565
+#: src/strings.ts:1589
msgid "Search in {routeName}"
msgstr "Search in {routeName}"
@@ -6398,99 +6477,103 @@ msgstr "Search in Tags"
msgid "Search in Trash"
msgstr "Search in Trash"
-#: src/strings.ts:2396
+#: src/strings.ts:2420
msgid "Search languages"
msgstr "Search languages"
-#: src/strings.ts:1515
+#: src/strings.ts:1539
msgid "Search notebooks"
msgstr "Search notebooks"
-#: src/strings.ts:1528
+#: src/strings.ts:1552
msgid "Search or add a tag"
msgstr "Search or add a tag"
-#: src/strings.ts:1861
+#: src/strings.ts:1885
msgid "Search themes"
msgstr "Search themes"
-#: src/strings.ts:1532
+#: src/strings.ts:1556
msgid "Searching for {query}..."
msgstr "Searching for {query}..."
-#: src/strings.ts:894
+#: src/strings.ts:916
msgid "sec"
msgstr "sec"
-#: src/strings.ts:2582
+#: src/strings.ts:2606
msgid "Secure backup space for files and images."
msgstr "Secure backup space for files and images."
-#: src/strings.ts:2940
+#: src/strings.ts:269
+msgid "Secure your note"
+msgstr "Secure your note"
+
+#: src/strings.ts:2964
msgid "Security"
msgstr "Security"
-#: src/strings.ts:2180
+#: src/strings.ts:2204
msgid "Security & privacy"
msgstr "Security & privacy"
-#: src/strings.ts:2120
+#: src/strings.ts:2144
msgid "Security key"
msgstr "Security key"
-#: src/strings.ts:2015
+#: src/strings.ts:2039
msgid "Security key successfully registered."
msgstr "Security key successfully registered."
-#: src/strings.ts:1109
+#: src/strings.ts:1133
msgid "See changes in editor instantly across devices."
msgstr "See changes in editor instantly across devices."
-#: src/strings.ts:1316
+#: src/strings.ts:1340
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:1356
+#: src/strings.ts:1380
msgid "Select"
msgstr "Select"
-#: src/strings.ts:1636
+#: src/strings.ts:1660
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:2526
+#: src/strings.ts:2550
msgid "Select a notebook to move this notebook into, or unselect to move it to the root level."
msgstr "Select a notebook to move this notebook into, or unselect to move it to the root level."
-#: src/strings.ts:2135
+#: src/strings.ts:2159
msgid "Select a theme"
msgstr "Select a theme"
-#: src/strings.ts:1882
+#: src/strings.ts:1906
msgid "Select backup file"
msgstr "Select backup file"
-#: src/strings.ts:642
+#: src/strings.ts:664
msgid "Select backups folder"
msgstr "Select backups folder"
-#: src/strings.ts:632
+#: src/strings.ts:654
msgid "Select date"
msgstr "Select date"
-#: src/strings.ts:337
+#: src/strings.ts:351
msgid "Select day of the week to repeat the reminder."
msgstr "Select day of the week to repeat the reminder."
-#: src/strings.ts:1790
+#: src/strings.ts:1814
msgid "Select files to import"
msgstr "Select files to import"
-#: src/strings.ts:1633
+#: src/strings.ts:1657
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:1634
+#: src/strings.ts:1658
msgid "Select folder with backup files"
msgstr "Select folder with backup files"
@@ -6498,47 +6581,47 @@ 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:2391
+#: src/strings.ts:2415
msgid "Select language"
msgstr "Select language"
-#: src/strings.ts:462
+#: src/strings.ts:484
msgid "Select notebooks"
msgstr "Select notebooks"
-#: src/strings.ts:463
+#: src/strings.ts:485
msgid "Select notebooks you want to add note(s) to."
msgstr "Select notebooks you want to add note(s) to."
-#: src/strings.ts:2514
+#: src/strings.ts:2538
msgid "Select notes to link to \"{title}\""
msgstr "Select notes to link to \"{title}\""
-#: src/strings.ts:341
+#: src/strings.ts:355
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:2859
+#: src/strings.ts:2883
msgid "Select Plan"
msgstr "Select Plan"
-#: src/strings.ts:1844
+#: src/strings.ts:1868
msgid "Select profile picture"
msgstr "Select profile picture"
-#: src/strings.ts:2520
+#: src/strings.ts:2544
msgid "Select the default sidebar tab"
msgstr "Select the default sidebar tab"
-#: src/strings.ts:373
+#: src/strings.ts:390
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:2167
+#: src/strings.ts:2191
msgid "Select the languages the spell checker should check in."
msgstr "Select the languages the spell checker should check in."
-#: src/strings.ts:2496
+#: src/strings.ts:2520
msgid "Select the release track for Notesnook."
msgstr "Select the release track for Notesnook."
@@ -6546,11 +6629,11 @@ msgstr "Select the release track for Notesnook."
msgid "SELECTED NOTE"
msgstr "SELECTED NOTE"
-#: src/strings.ts:268
+#: src/strings.ts:270
msgid "Self destruct"
msgstr "Self destruct"
-#: src/strings.ts:2202
+#: src/strings.ts:2226
msgid "Send"
msgstr "Send"
@@ -6566,47 +6649,47 @@ msgstr "Send code via email"
msgid "Send code via SMS"
msgstr "Send code via SMS"
-#: src/strings.ts:1886
+#: src/strings.ts:1910
msgid "Send recovery email"
msgstr "Send recovery email"
-#: src/strings.ts:1922
+#: src/strings.ts:1946
msgid "Sending recovery email"
msgstr "Sending recovery email"
-#: src/strings.ts:1673
+#: src/strings.ts:1697
msgid "Server url changed"
msgstr "Server url changed"
-#: src/strings.ts:1676
+#: src/strings.ts:1700
msgid "Server urls reset"
msgstr "Server urls reset"
-#: src/strings.ts:1654
+#: src/strings.ts:1678
msgid "Server used for login/sign up and authentication."
msgstr "Server used for login/sign up and authentication."
-#: src/strings.ts:1659
+#: src/strings.ts:1683
msgid "Server used to host your published notes."
msgstr "Server used to host your published notes."
-#: src/strings.ts:1657
+#: src/strings.ts:1681
msgid "Server used to receive important notifications & events."
msgstr "Server used to receive important notifications & events."
-#: src/strings.ts:1652
+#: src/strings.ts:1676
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:1665
+#: src/strings.ts:1689
msgid "Server with host {host} not found."
msgstr "Server with host {host} not found."
-#: src/strings.ts:2175
+#: src/strings.ts:2199
msgid "Servers"
msgstr "Servers"
-#: src/strings.ts:2176
+#: src/strings.ts:2200
msgid "Servers configuration"
msgstr "Servers configuration"
@@ -6614,85 +6697,85 @@ msgstr "Servers configuration"
msgid "Session expired"
msgstr "Session expired"
-#: src/strings.ts:2228
+#: src/strings.ts:2252
msgid "Sessions"
msgstr "Sessions"
-#: src/strings.ts:994
+#: src/strings.ts:1016
msgid "Set a reminder"
msgstr "Set a reminder"
-#: src/strings.ts:730
+#: src/strings.ts:752
msgid "Set as dark theme"
msgstr "Set as dark theme"
-#: src/strings.ts:913
+#: src/strings.ts:935
msgid "Set as default"
msgstr "Set as default"
-#: src/strings.ts:2518
+#: src/strings.ts:2542
msgid "Set as home"
msgstr "Set as home"
-#: src/strings.ts:731
+#: src/strings.ts:753
msgid "Set as light theme"
msgstr "Set as light theme"
-#: src/strings.ts:1355
+#: src/strings.ts:1379
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:2683
+#: src/strings.ts:2707
msgid "Set expiry"
msgstr "Set expiry"
-#: src/strings.ts:1332
+#: src/strings.ts:1356
msgid "Set full name"
msgstr "Set full name"
-#: src/strings.ts:1274
+#: src/strings.ts:1298
msgid "Set snooze time in minutes"
msgstr "Set snooze time in minutes"
-#: src/strings.ts:1273
+#: src/strings.ts:1297
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:1245
+#: src/strings.ts:1269
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:1242
+#: src/strings.ts:1266
msgid "Set the interval to create a partial backup (without attachments) automatically."
msgstr "Set the interval to create a partial backup (without attachments) automatically."
-#: src/strings.ts:430
+#: src/strings.ts:447
msgid "Set your name"
msgstr "Set your name"
-#: src/strings.ts:2890
+#: src/strings.ts:2914
msgid "Setting up your account..."
msgstr "Setting up your account..."
-#: src/strings.ts:390
-#: src/strings.ts:1551
+#: src/strings.ts:407
+#: src/strings.ts:1575
msgid "Settings"
msgstr "Settings"
-#: src/strings.ts:1221
-#: src/strings.ts:1222
+#: src/strings.ts:1245
+#: src/strings.ts:1246
msgid "Setup a new password for app lock"
msgstr "Setup a new password for app lock"
-#: src/strings.ts:1218
+#: src/strings.ts:1242
msgid "Setup a password to lock the app"
msgstr "Setup a password to lock the app"
-#: src/strings.ts:1216
+#: src/strings.ts:1240
msgid "Setup a pin to lock the app"
msgstr "Setup a pin to lock the app"
-#: src/strings.ts:2220
+#: src/strings.ts:2244
msgid ""
"Setup an HTTP/HTTPS/SOCKS proxy.\n"
"\n"
@@ -6712,31 +6795,31 @@ msgstr ""
"\n"
"To remove the proxy, simply erase everything in the input."
-#: src/strings.ts:1217
+#: src/strings.ts:1241
msgid "Setup app lock password"
msgstr "Setup app lock password"
-#: src/strings.ts:1215
+#: src/strings.ts:1239
msgid "Setup app lock pin"
msgstr "Setup app lock pin"
-#: src/strings.ts:2837
+#: src/strings.ts:2861
msgid "Setup inbox keys"
msgstr "Setup inbox keys"
-#: src/strings.ts:683
+#: src/strings.ts:705
msgid "Setup secondary 2FA method"
msgstr "Setup secondary 2FA method"
-#: src/strings.ts:996
+#: src/strings.ts:1018
msgid "Setup using an Authenticator app"
msgstr "Setup using an Authenticator app"
-#: src/strings.ts:1003
+#: src/strings.ts:1025
msgid "Setup using email"
msgstr "Setup using email"
-#: src/strings.ts:1010
+#: src/strings.ts:1032
msgid "Setup using SMS"
msgstr "Setup using SMS"
@@ -6744,55 +6827,55 @@ msgstr "Setup using SMS"
msgid "Share"
msgstr "Share"
-#: src/strings.ts:1718
+#: src/strings.ts:1742
msgid "Share & append to notes from anywhere"
msgstr "Share & append to notes from anywhere"
-#: src/strings.ts:1363
+#: src/strings.ts:1387
msgid "Share backup"
msgstr "Share backup"
-#: src/strings.ts:456
+#: src/strings.ts:473
msgid "Share note"
msgstr "Share note"
-#: src/strings.ts:1814
+#: src/strings.ts:1838
msgid "Share Notesnook with friends!"
msgstr "Share Notesnook with friends!"
-#: src/strings.ts:2695
+#: src/strings.ts:2719
msgid "Share things to Notesnook from anywhere using the Inbox API"
msgstr "Share things to Notesnook from anywhere using the Inbox API"
-#: src/strings.ts:596
+#: src/strings.ts:618
msgid "Share to cloud"
msgstr "Share to cloud"
-#: src/strings.ts:2957
+#: src/strings.ts:2981
msgid "Share ZIP"
msgstr "Share ZIP"
-#: src/strings.ts:291
+#: src/strings.ts:305
msgid "shortcut"
msgstr "shortcut"
-#: src/strings.ts:301
+#: src/strings.ts:315
msgid "Shortcut"
msgstr "Shortcut"
-#: src/strings.ts:2027
+#: src/strings.ts:2051
msgid "Shortcut removed"
msgstr "Shortcut removed"
-#: src/strings.ts:311
+#: src/strings.ts:325
msgid "shortcuts"
msgstr "shortcuts"
-#: src/strings.ts:323
+#: src/strings.ts:337
msgid "Shortcuts"
msgstr "Shortcuts"
-#: src/strings.ts:2803
+#: src/strings.ts:2827
msgid "Show"
msgstr "Show"
@@ -6800,11 +6883,11 @@ msgstr "Show"
msgid "Sign up"
msgstr "Sign up"
-#: src/strings.ts:1048
+#: src/strings.ts:1070
msgid "Signed up on {date}"
msgstr "Signed up on {date}"
-#: src/strings.ts:779
+#: src/strings.ts:801
msgid "Signup failed"
msgstr "Signup failed"
@@ -6812,99 +6895,99 @@ msgstr "Signup failed"
msgid "Silent"
msgstr "Silent"
-#: src/strings.ts:2365
+#: src/strings.ts:2389
msgid "Sink list item"
msgstr "Sink list item"
-#: src/strings.ts:2068
+#: src/strings.ts:2092
msgid "Size"
msgstr "Size"
-#: src/strings.ts:552
+#: src/strings.ts:574
msgid "Skip"
msgstr "Skip"
-#: src/strings.ts:675
+#: src/strings.ts:697
msgid "Skip introduction"
msgstr "Skip introduction"
-#: src/strings.ts:1631
+#: src/strings.ts:1655
msgid "Some exported notes are locked, Unlock to export them"
msgstr "Some exported notes are locked, Unlock to export them"
-#: src/strings.ts:1498
+#: src/strings.ts:1522
msgid "Some notes are published"
msgstr "Some notes are published"
-#: src/strings.ts:1693
+#: src/strings.ts:1717
msgid "Something went wrong"
msgstr "Something went wrong"
-#: src/strings.ts:2956
+#: src/strings.ts:2980
msgid "Something went wrong while preparing your debug logs. This can happen if no storage location was selected."
msgstr "Something went wrong while preparing your debug logs. This can happen if no storage location was selected."
-#: src/strings.ts:2052
+#: src/strings.ts:2076
msgid "Sort"
msgstr "Sort"
-#: src/strings.ts:538
+#: src/strings.ts:560
msgid "Sort by"
msgstr "Sort by"
-#: src/strings.ts:2186
+#: src/strings.ts:2210
msgid "Source code"
msgstr "Source code"
-#: src/strings.ts:2392
+#: src/strings.ts:2416
msgid "Spaces"
msgstr "Spaces"
-#: src/strings.ts:2642
+#: src/strings.ts:2666
msgid "Special Offer"
msgstr "Special Offer"
-#: src/strings.ts:2163
+#: src/strings.ts:2187
msgid "Spell check"
msgstr "Spell check"
-#: src/strings.ts:2331
+#: src/strings.ts:2355
msgid "Split cells"
msgstr "Split cells"
-#: src/strings.ts:2497
+#: src/strings.ts:2521
msgid "Stable"
msgstr "Stable"
-#: src/strings.ts:1132
+#: src/strings.ts:1156
msgid "Start"
msgstr "Start"
-#: src/strings.ts:1857
+#: src/strings.ts:1881
msgid "Start account recovery"
msgstr "Start account recovery"
-#: src/strings.ts:1852
+#: src/strings.ts:1876
msgid "Start import"
msgstr "Start import"
-#: src/strings.ts:1849
+#: src/strings.ts:1873
msgid "Start importing now"
msgstr "Start importing now"
-#: src/strings.ts:2151
+#: src/strings.ts:2175
msgid "Start minimized"
msgstr "Start minimized"
-#: src/strings.ts:1537
+#: src/strings.ts:1561
msgid "Start organizing your ideas, notes and thoughts"
msgstr "Start organizing your ideas, notes and thoughts"
-#: src/strings.ts:1784
+#: src/strings.ts:1808
msgid "Start over"
msgstr "Start over"
-#: src/strings.ts:968
+#: src/strings.ts:990
msgid "Start writing to create a new note"
msgstr "Start writing to create a new note"
@@ -6912,155 +6995,155 @@ 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:1628
+#: src/strings.ts:1652
msgid "Start writing your note..."
msgstr "Start writing your note..."
-#: src/strings.ts:2259
+#: src/strings.ts:2283
msgid "Status"
msgstr "Status"
-#: src/strings.ts:2510
+#: src/strings.ts:2534
msgid "Storage"
msgstr "Storage"
-#: src/strings.ts:2922
+#: src/strings.ts:2946
msgid "Storage & cleanup"
msgstr "Storage & cleanup"
-#: src/strings.ts:2937
+#: src/strings.ts:2961
msgid "Storage & location"
msgstr "Storage & location"
-#: src/strings.ts:1575
+#: src/strings.ts:1599
msgid "Streaming not supported"
msgstr "Streaming not supported"
-#: src/strings.ts:2297
+#: src/strings.ts:2321
msgid "Strikethrough"
msgstr "Strikethrough"
-#: src/strings.ts:2261
+#: src/strings.ts:2285
msgid "Subgroup 1"
msgstr "Subgroup 1"
-#: src/strings.ts:2021
+#: src/strings.ts:2045
msgid "Subgroup added"
msgstr "Subgroup added"
-#: src/strings.ts:582
+#: src/strings.ts:604
msgid "Submit"
msgstr "Submit"
-#: src/strings.ts:2619
+#: src/strings.ts:2643
msgid "Subscribe"
msgstr "Subscribe"
-#: src/strings.ts:2620
+#: src/strings.ts:2644
msgid "Subscribe & Start Your Free Trial"
msgstr "Subscribe & Start Your Free Trial"
-#: src/strings.ts:1043
+#: src/strings.ts:1065
msgid "Subscribe to Pro"
msgstr "Subscribe to Pro"
-#: src/strings.ts:709
+#: src/strings.ts:731
msgid "Subscribed on Android"
msgstr "Subscribed on Android"
-#: src/strings.ts:702
+#: src/strings.ts:724
msgid "Subscribed on iOS"
msgstr "Subscribed on iOS"
-#: src/strings.ts:1327
+#: src/strings.ts:1351
msgid "Subscribed on web"
msgstr "Subscribed on web"
-#: src/strings.ts:716
+#: src/strings.ts:738
msgid "Subscribed on Web"
msgstr "Subscribed on Web"
-#: src/strings.ts:722
+#: src/strings.ts:744
msgid "Subscribed using gift card"
msgstr "Subscribed using gift card"
-#: src/strings.ts:2308
+#: src/strings.ts:2332
msgid "Subscript"
msgstr "Subscript"
-#: src/strings.ts:696
+#: src/strings.ts:718
msgid "Subscription awarded from Streetwriters"
msgstr "Subscription awarded from Streetwriters"
-#: src/strings.ts:1047
+#: src/strings.ts:1069
msgid "Subscription details"
msgstr "Subscription details"
-#: src/strings.ts:1081
+#: src/strings.ts:1105
msgid "Subscription not activated?"
msgstr "Subscription not activated?"
-#: src/strings.ts:2916
+#: src/strings.ts:2940
msgid "Subscription required"
msgstr "Subscription required"
-#: src/strings.ts:624
+#: src/strings.ts:646
msgid "Sun"
msgstr "Sun"
-#: src/strings.ts:615
+#: src/strings.ts:637
msgid "Sunday"
msgstr "Sunday"
-#: src/strings.ts:2309
+#: src/strings.ts:2333
msgid "Superscript"
msgstr "Superscript"
-#: src/strings.ts:1491
+#: src/strings.ts:1515
msgid "Switch to search/replace mode"
msgstr "Switch to search/replace mode"
-#: src/strings.ts:2172
+#: src/strings.ts:2196
msgid "Sync"
msgstr "Sync"
-#: src/strings.ts:1102
+#: src/strings.ts:1126
msgid "Sync behavior"
msgstr "Sync behavior"
-#: src/strings.ts:396
+#: src/strings.ts:413
msgid "Sync failed"
msgstr "Sync failed"
-#: src/strings.ts:1385
+#: src/strings.ts:1409
msgid "Sync is disabled"
msgstr "Sync is disabled"
-#: src/strings.ts:395
+#: src/strings.ts:412
msgid "Sync now"
msgstr "Sync now"
-#: src/strings.ts:931
+#: src/strings.ts:953
msgid "Sync off"
msgstr "Sync off"
-#: src/strings.ts:1650
+#: src/strings.ts:1674
msgid "Sync server"
msgstr "Sync server"
-#: src/strings.ts:1100
+#: src/strings.ts:1124
msgid "Sync settings"
msgstr "Sync settings"
-#: src/strings.ts:1115
+#: src/strings.ts:1139
msgid "Sync your notes in the background even when the app is closed. This is an experimental feature. If you face any issues, please turn it off."
msgstr "Sync your notes in the background even when the app is closed. This is an experimental feature. If you face any issues, please turn it off."
-#: src/strings.ts:397
+#: src/strings.ts:414
msgid "Synced"
msgstr "Synced"
-#: src/strings.ts:394
+#: src/strings.ts:411
msgid "Syncing"
msgstr "Syncing"
@@ -7068,96 +7151,96 @@ msgstr "Syncing"
msgid "Syncing your data"
msgstr "Syncing your data"
-#: src/strings.ts:1729
+#: src/strings.ts:1753
msgid "Syncing your notes"
msgstr "Syncing your notes"
-#: src/strings.ts:2377
+#: src/strings.ts:2401
msgid "Table"
msgstr "Table"
-#: src/strings.ts:540
+#: src/strings.ts:562
msgid "Table of contents"
msgstr "Table of contents"
-#: src/strings.ts:2322
+#: src/strings.ts:2346
msgid "Table settings"
msgstr "Table settings"
-#: src/strings.ts:2571
+#: src/strings.ts:2595
msgid "tables, outlines, block level note linking"
msgstr "tables, outlines, block level note linking"
-#: src/strings.ts:531
+#: src/strings.ts:553
msgid "Tabs"
msgstr "Tabs"
-#: src/strings.ts:286
+#: src/strings.ts:300
msgid "tag"
msgstr "tag"
-#: src/strings.ts:296
+#: src/strings.ts:310
msgid "Tag"
msgstr "Tag"
-#: src/strings.ts:306
+#: src/strings.ts:320
msgid "tags"
msgstr "tags"
-#: src/strings.ts:316
-#: src/strings.ts:1552
+#: src/strings.ts:330
+#: src/strings.ts:1576
msgid "Tags"
msgstr "Tags"
-#: src/strings.ts:1570
+#: src/strings.ts:1594
msgid "Take a backup before logging out"
msgstr "Take a backup before logging out"
-#: src/strings.ts:1237
+#: src/strings.ts:1261
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:1239
+#: src/strings.ts:1263
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:2376
+#: src/strings.ts:2400
msgid "Take a photo using camera"
msgstr "Take a photo using camera"
-#: src/strings.ts:1395
+#: src/strings.ts:1419
msgid "Take note"
msgstr "Take note"
-#: src/strings.ts:1683
+#: src/strings.ts:1707
msgid "Take notes privately."
msgstr "Take notes privately."
-#: src/strings.ts:676
+#: src/strings.ts:698
msgid "Taking too long? Reload editor"
msgstr "Taking too long? Reload editor"
-#: src/strings.ts:1479
+#: src/strings.ts:1503
msgid "Tap here to change sorting"
msgstr "Tap here to change sorting"
-#: src/strings.ts:1483
+#: src/strings.ts:1507
msgid "Tap here to jump to a section"
msgstr "Tap here to jump to a section"
-#: src/strings.ts:1391
+#: src/strings.ts:1415
msgid "Tap here to update to the latest version"
msgstr "Tap here to update to the latest version"
-#: src/strings.ts:1619
+#: src/strings.ts:1643
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:1394
+#: src/strings.ts:1418
msgid "Tap on \"Take note\" to add a note."
msgstr "Tap on \"Take note\" to add a note."
-#: src/strings.ts:420
+#: src/strings.ts:437
msgid "Tap to apply again"
msgstr "Tap to apply again"
@@ -7169,31 +7252,31 @@ msgstr "Tap to cancel"
msgid "Tap to deselect"
msgstr "Tap to deselect"
-#: src/strings.ts:670
+#: src/strings.ts:692
msgid "Tap to stop reordering"
msgstr "Tap to stop reordering"
-#: src/strings.ts:1375
+#: src/strings.ts:1399
msgid "Tap to try again"
msgstr "Tap to try again"
-#: src/strings.ts:276
+#: src/strings.ts:290
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:2382
+#: src/strings.ts:2406
msgid "Task list"
msgstr "Task list"
-#: src/strings.ts:2452
+#: src/strings.ts:2476
msgid "Tasks"
msgstr "Tasks"
-#: src/strings.ts:1184
+#: src/strings.ts:1208
msgid "Telemetry"
msgstr "Telemetry"
-#: src/strings.ts:1519
+#: src/strings.ts:1543
msgid ""
"Tell us more about the issue you are facing.\n"
"\n"
@@ -7211,15 +7294,15 @@ msgstr ""
"- Steps to reproduce the issue\n"
"- Things you have tried etc."
-#: src/strings.ts:1518
+#: src/strings.ts:1542
msgid "Tell us what happened"
msgstr "Tell us what happened"
-#: src/strings.ts:1305
+#: src/strings.ts:1329
msgid "Terms of service"
msgstr "Terms of service"
-#: src/strings.ts:2625
+#: src/strings.ts:2649
msgid "Terms of Service"
msgstr "Terms of Service"
@@ -7227,111 +7310,111 @@ msgstr "Terms of Service"
msgid "Terms of Service "
msgstr "Terms of Service "
-#: src/strings.ts:1649
+#: src/strings.ts:1673
msgid "Test connection"
msgstr "Test connection"
-#: src/strings.ts:1672
+#: src/strings.ts:1696
msgid "Test connection before changing server urls"
msgstr "Test connection before changing server urls"
-#: src/strings.ts:2861
+#: src/strings.ts:2885
msgid "Testimonials"
msgstr "Testimonials"
-#: src/strings.ts:2320
+#: src/strings.ts:2344
msgid "Text color"
msgstr "Text color"
-#: src/strings.ts:2318
+#: src/strings.ts:2342
msgid "Text direction"
msgstr "Text direction"
-#: src/strings.ts:1813
+#: src/strings.ts:1837
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:2077
+#: src/strings.ts:2101
msgid "Thank you for reporting!"
msgstr "Thank you for reporting!"
-#: src/strings.ts:2598
+#: src/strings.ts:2622
msgid "Thank you for subscribing"
msgstr "Thank you for subscribing"
-#: src/strings.ts:2637
+#: src/strings.ts:2661
msgid "Thank you for the purchase"
msgstr "Thank you for the purchase"
-#: src/strings.ts:481
+#: src/strings.ts:503
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:2078
+#: src/strings.ts:2102
msgid "Thank you for your feedback!"
msgstr "Thank you for your feedback!"
-#: src/strings.ts:2112
+#: src/strings.ts:2136
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:1670
+#: src/strings.ts:1694
msgid "The {title} at {url} is not compatible with this client."
msgstr "The {title} at {url} is not compatible with this client."
-#: src/strings.ts:2953
+#: src/strings.ts:2977
msgid "The encrypted archive is available in your default local storage structure and can be safely sent to the Notesnook customer care team."
msgstr "The encrypted archive is available in your default local storage structure and can be safely sent to the Notesnook customer care team."
-#: src/strings.ts:2682
+#: src/strings.ts:2706
msgid "The incoming note could not be unlocked with the provided password. Enter the correct password for the incoming note"
msgstr "The incoming note could not be unlocked with the provided password. Enter the correct password for the incoming note"
-#: src/strings.ts:2844
+#: src/strings.ts:2868
msgid "The password for decrypting the Colornote backup file."
msgstr "The password for decrypting the Colornote backup file."
-#: src/strings.ts:2119
+#: src/strings.ts:2143
msgid "The password/pin for unlocking the app."
msgstr "The password/pin for unlocking the app."
-#: src/strings.ts:336
+#: src/strings.ts:350
msgid "The reminder will repeat daily at {date}."
msgstr "The reminder will repeat daily at {date}."
-#: src/strings.ts:339
+#: src/strings.ts:353
msgid "The reminder will repeat every year on {date}."
msgstr "The reminder will repeat every year on {date}."
-#: src/strings.ts:1739
+#: src/strings.ts:1763
msgid "The reminder will start on {date} at {time}."
msgstr "The reminder will start on {date} at {time}."
-#: src/strings.ts:2122
+#: src/strings.ts:2146
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:1668
+#: src/strings.ts:1692
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}."
-#: src/strings.ts:1139
+#: src/strings.ts:1163
msgid "Themes"
msgstr "Themes"
-#: src/strings.ts:282
+#: src/strings.ts:296
msgid "There are no blocks in this note."
msgstr "There are no blocks in this note."
-#: src/strings.ts:379
+#: src/strings.ts:396
msgid "There are no new updates at the moment."
msgstr "There are no new updates at the moment."
-#: src/strings.ts:2275
+#: src/strings.ts:2299
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:1947
+#: src/strings.ts:1971
msgid "This action is IRREVERSIBLE."
msgstr "This action is IRREVERSIBLE."
@@ -7339,230 +7422,226 @@ msgstr "This action is IRREVERSIBLE."
msgid "This device"
msgstr "This device"
-#: src/strings.ts:1710
+#: src/strings.ts:1734
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:1702
+#: src/strings.ts:1726
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:1706
+#: src/strings.ts:1730
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:1704
+#: src/strings.ts:1728
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:1700
+#: src/strings.ts:1724
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:1708
+#: src/strings.ts:1732
msgid "This error usually means the search index is corrupted."
msgstr "This error usually means the search index is corrupted."
-#: src/strings.ts:2764
+#: src/strings.ts:2788
msgid "This feature is not available on this plan."
msgstr "This feature is not available on this plan."
-#: src/strings.ts:1961
+#: src/strings.ts:1985
msgid "This image cannot be previewed"
msgstr "This image cannot be previewed"
-#: src/strings.ts:2621
+#: src/strings.ts:2645
msgid "This is a one time purchase, no subscription."
msgstr "This is a one time purchase, no subscription."
-#: src/strings.ts:2072
+#: src/strings.ts:2096
msgid "This may take a while"
msgstr "This may take a while"
-#: src/strings.ts:1121
-#: src/strings.ts:1130
+#: src/strings.ts:1145
+#: src/strings.ts:1154
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:2688
+#: src/strings.ts:2712
msgid "This note is empty"
msgstr "This note is empty"
-#: src/strings.ts:1621
+#: src/strings.ts:1645
msgid "This note is locked"
msgstr "This note is locked"
-#: src/strings.ts:970
+#: src/strings.ts:992
msgid "This note is locked. Unlock note to save changes"
msgstr "This note is locked. Unlock note to save changes"
-#: src/strings.ts:280
-msgid "This note is not linked to any other note."
-msgstr "This note is not linked to any other note."
-
-#: src/strings.ts:279
-msgid "This note is not referenced in other notes."
-msgstr "This note is not referenced in other notes."
-
#: src/strings.ts:263
msgid "This note will be published to a public URL."
msgstr "This note will be published to a public URL."
-#: src/strings.ts:2128
+#: src/strings.ts:2152
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:1325
+#: src/strings.ts:1349
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."
-#: src/strings.ts:1092
+#: src/strings.ts:1116
msgid "This will clear all data stored on THIS DEVICE. Make sure to run sync before logging out."
msgstr "This will clear all data stored on THIS DEVICE. Make sure to run sync before logging out."
-#: src/strings.ts:2908
+#: src/strings.ts:2932
msgid "This will overwrite all data on the server with the data from this device."
msgstr "This will overwrite all data on the server with the data from this device."
-#: src/strings.ts:2906
+#: src/strings.ts:2930
msgid "This will overwrite all data on this device with the data from the server."
msgstr "This will overwrite all data on this device with the data from the server."
-#: src/strings.ts:628
+#: src/strings.ts:650
msgid "Thu"
msgstr "Thu"
-#: src/strings.ts:619
+#: src/strings.ts:641
msgid "Thursday"
msgstr "Thursday"
-#: src/strings.ts:1869
+#: src/strings.ts:1893
msgid "Time"
msgstr "Time"
-#: src/strings.ts:1156
+#: src/strings.ts:1180
msgid "Time format"
msgstr "Time format"
-#: src/strings.ts:2933
+#: src/strings.ts:2957
msgid "Timestamp"
msgstr "Timestamp"
-#: src/strings.ts:673
+#: src/strings.ts:695
msgid "TIP"
msgstr "TIP"
-#: src/strings.ts:651
-#: src/strings.ts:656
+#: src/strings.ts:673
+#: src/strings.ts:678
msgid "Title"
msgstr "Title"
-#: src/strings.ts:1179
+#: src/strings.ts:1203
msgid "Title format"
msgstr "Title format"
-#: src/strings.ts:2777
+#: src/strings.ts:2801
msgid "Title is required"
msgstr "Title is required"
-#: src/strings.ts:2919
+#: src/strings.ts:2943
msgid "to claim the promotion directly."
msgstr "to claim the promotion directly."
-#: src/strings.ts:1210
+#: src/strings.ts:1234
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:1839
+#: src/strings.ts:1863
msgid "Toggle dark/light mode"
msgstr "Toggle dark/light mode"
-#: src/strings.ts:2500
+#: src/strings.ts:2524
msgid "Toggle focus mode"
msgstr "Toggle focus mode"
-#: src/strings.ts:2389
+#: src/strings.ts:2413
msgid "Toggle indentation mode"
msgstr "Toggle indentation mode"
-#: src/strings.ts:2418
+#: src/strings.ts:2442
msgid "Toggle replace"
msgstr "Toggle replace"
-#: src/strings.ts:2489
+#: src/strings.ts:2513
msgid "Toggle theme"
msgstr "Toggle theme"
-#: src/strings.ts:2169
+#: src/strings.ts:2193
msgid "Toolbar"
msgstr "Toolbar"
-#: src/strings.ts:1170
+#: src/strings.ts:1194
msgid "Toolbar reset to default preset"
msgstr "Toolbar reset to default preset"
-#: src/strings.ts:1348
-#: src/strings.ts:1550
+#: src/strings.ts:280
+msgid "Total views"
+msgstr "Total views"
+
+#: src/strings.ts:1372
+#: src/strings.ts:1574
msgid "Trash"
msgstr "Trash"
-#: src/strings.ts:1347
+#: src/strings.ts:1371
msgid "Trash cleared successfully!"
msgstr "Trash cleared successfully!"
-#: src/strings.ts:1353
+#: src/strings.ts:1377
msgid "Trash gets automatically cleaned up after {days} days"
msgstr "Trash gets automatically cleaned up after {days} days"
-#: src/strings.ts:1351
+#: src/strings.ts:1375
msgid "Trash gets automatically cleaned up daily"
msgstr "Trash gets automatically cleaned up daily"
-#: src/strings.ts:1105
+#: src/strings.ts:1129
msgid "Troubleshooting"
msgstr "Troubleshooting"
-#: src/strings.ts:2652
+#: src/strings.ts:2676
msgid "Trusted partners who share our commitment to privacy, transparency, and user freedom."
msgstr "Trusted partners who share our commitment to privacy, transparency, and user freedom."
-#: src/strings.ts:2588
+#: src/strings.ts:2612
msgid "Try {plan} for free"
msgstr "Try {plan} for free"
-#: src/strings.ts:2958
+#: src/strings.ts:2982
msgid "Try again"
msgstr "Try again"
-#: src/strings.ts:1487
+#: src/strings.ts:1511
msgid "Try compact mode to fit more items on screen"
msgstr "Try compact mode to fit more items on screen"
-#: src/strings.ts:1851
+#: src/strings.ts:1875
msgid "Try free for 14 days"
msgstr "Try free for 14 days"
-#: src/strings.ts:2564
+#: src/strings.ts:2588
msgid "Try it for free"
msgstr "Try it for free"
-#: src/strings.ts:626
+#: src/strings.ts:648
msgid "Tue"
msgstr "Tue"
-#: src/strings.ts:617
+#: src/strings.ts:639
msgid "Tuesday"
msgstr "Tuesday"
-#: src/strings.ts:908
+#: src/strings.ts:930
msgid "Turn off reminder"
msgstr "Turn off reminder"
-#: src/strings.ts:909
+#: src/strings.ts:931
msgid "Turn on reminder"
msgstr "Turn on reminder"
-#: src/strings.ts:1112
+#: src/strings.ts:1136
msgid "Turns off syncing completely on this device. Any changes made will remain local only and new changes from your other devices won't sync to this device."
msgstr "Turns off syncing completely on this device. Any changes made will remain local only and new changes from your other devices won't sync to this device."
@@ -7570,63 +7649,63 @@ msgstr "Turns off syncing completely on this device. Any changes made will remai
msgid "Two factor authentication"
msgstr "Two factor authentication"
-#: src/strings.ts:496
+#: src/strings.ts:518
msgid "Two-factor authentication"
msgstr "Two-factor authentication"
-#: src/strings.ts:505
+#: src/strings.ts:527
msgid "Two-factor authentication enabled"
msgstr "Two-factor authentication enabled"
-#: src/strings.ts:1526
+#: src/strings.ts:1550
msgid "Type # to search for headings"
msgstr "Type # to search for headings"
-#: src/strings.ts:1533
+#: src/strings.ts:1557
msgid "Type a keyword"
msgstr "Type a keyword"
-#: src/strings.ts:2927
+#: src/strings.ts:2951
msgid "Typography"
msgstr "Typography"
-#: src/strings.ts:1576
+#: src/strings.ts:1600
msgid "Unable to resolve download url"
msgstr "Unable to resolve download url"
-#: src/strings.ts:1579
+#: src/strings.ts:1603
msgid "Unable to send 2FA code"
msgstr "Unable to send 2FA code"
-#: src/strings.ts:2524
+#: src/strings.ts:2548
msgid "Unarchive"
msgstr "Unarchive"
-#: src/strings.ts:2296
+#: src/strings.ts:2320
msgid "Underline"
msgstr "Underline"
-#: src/strings.ts:568
+#: src/strings.ts:590
msgid "Undo"
msgstr "Undo"
-#: src/strings.ts:870
+#: src/strings.ts:892
msgid "Unfavorite"
msgstr "Unfavorite"
-#: src/strings.ts:2633
+#: src/strings.ts:2657
msgid "Unlimited"
msgstr "Unlimited"
-#: src/strings.ts:2870
+#: src/strings.ts:2894
msgid "Unlimited notes and attachments"
msgstr "Unlimited notes and attachments"
-#: src/strings.ts:948
+#: src/strings.ts:970
msgid "Unlink from all"
msgstr "Unlink from all"
-#: src/strings.ts:869
+#: src/strings.ts:891
msgid "Unlink notebook"
msgstr "Unlink notebook"
@@ -7634,44 +7713,44 @@ msgstr "Unlink notebook"
msgid "Unlock"
msgstr "Unlock"
-#: src/strings.ts:2680
+#: src/strings.ts:2704
msgid "Unlock incoming note"
msgstr "Unlock incoming note"
-#: src/strings.ts:1405
+#: src/strings.ts:1429
msgid "Unlock more colors with Notesnook Pro"
msgstr "Unlock more colors with Notesnook Pro"
-#: src/strings.ts:458
-#: src/strings.ts:560
+#: src/strings.ts:475
+#: src/strings.ts:582
msgid "Unlock note"
msgstr "Unlock note"
-#: src/strings.ts:904
+#: src/strings.ts:926
msgid "Unlock note to delete it"
msgstr "Unlock note to delete it"
-#: src/strings.ts:2691
+#: src/strings.ts:2715
msgid "Unlock note to merge conflicts"
msgstr "Unlock note to merge conflicts"
-#: src/strings.ts:2580
+#: src/strings.ts:2604
msgid "Unlock premium features and extra storage"
msgstr "Unlock premium features and extra storage"
-#: src/strings.ts:1230
+#: src/strings.ts:1254
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:1959
+#: src/strings.ts:1983
msgid "Unlock vault"
msgstr "Unlock vault"
-#: src/strings.ts:546
+#: src/strings.ts:568
msgid "Unlock with biometrics"
msgstr "Unlock with biometrics"
-#: src/strings.ts:1854
+#: src/strings.ts:1878
msgid "Unlock with security key"
msgstr "Unlock with security key"
@@ -7679,114 +7758,114 @@ msgstr "Unlock with security key"
msgid "Unlock your notes"
msgstr "Unlock your notes"
-#: src/strings.ts:1200
+#: src/strings.ts:1224
msgid "Unlock your vault with biometric authentication"
msgstr "Unlock your vault with biometric authentication"
-#: src/strings.ts:1737
+#: src/strings.ts:1761
msgid "Unlocking"
msgstr "Unlocking"
-#: src/strings.ts:915
+#: src/strings.ts:937
msgid "Unpin"
msgstr "Unpin"
-#: src/strings.ts:945
+#: src/strings.ts:967
msgid "Unpin notification"
msgstr "Unpin notification"
-#: src/strings.ts:589
+#: src/strings.ts:611
msgid "Unpublish"
msgstr "Unpublish"
-#: src/strings.ts:1499
+#: src/strings.ts:1523
msgid "Unpublish notes to delete them"
msgstr "Unpublish notes to delete them"
-#: src/strings.ts:2123
+#: src/strings.ts:2147
msgid "Unregister"
msgstr "Unregister"
-#: src/strings.ts:2684
+#: src/strings.ts:2708
msgid "Unset expiry"
msgstr "Unset expiry"
#: src/strings.ts:210
-#: src/strings.ts:2398
+#: src/strings.ts:2422
msgid "Untitled"
msgstr "Untitled"
-#: src/strings.ts:590
+#: src/strings.ts:612
msgid "Update"
msgstr "Update"
-#: src/strings.ts:380
+#: src/strings.ts:397
msgid "Update available"
msgstr "Update available"
-#: src/strings.ts:1392
+#: src/strings.ts:1416
msgid "Update now"
msgstr "Update now"
-#: src/strings.ts:2924
+#: src/strings.ts:2948
msgid "Updates"
msgstr "Updates"
-#: src/strings.ts:2538
+#: src/strings.ts:2562
msgid "Upgrade"
msgstr "Upgrade"
-#: src/strings.ts:1945
+#: src/strings.ts:1969
msgid "Upgrade now"
msgstr "Upgrade now"
-#: src/strings.ts:2537
+#: src/strings.ts:2561
msgid "Upgrade plan"
msgstr "Upgrade plan"
-#: src/strings.ts:2563
+#: src/strings.ts:2587
msgid "Upgrade plan to {plan} to use this feature."
msgstr "Upgrade plan to {plan} to use this feature."
-#: src/strings.ts:1966
+#: src/strings.ts:1990
msgid "Upgrade to Notesnook Pro to add colors."
msgstr "Upgrade to Notesnook Pro to add colors."
-#: src/strings.ts:1967
+#: src/strings.ts:1991
msgid "Upgrade to Notesnook Pro to create more tags."
msgstr "Upgrade to Notesnook Pro to create more tags."
-#: src/strings.ts:751
+#: src/strings.ts:773
msgid "Upgrade to Pro"
msgstr "Upgrade to Pro"
-#: src/strings.ts:2648
+#: src/strings.ts:2672
msgid "Upgrade to redeem"
msgstr "Upgrade to redeem"
-#: src/strings.ts:512
+#: src/strings.ts:534
msgid "Upload"
msgstr "Upload"
-#: src/strings.ts:2375
+#: src/strings.ts:2399
msgid "Upload from disk"
msgstr "Upload from disk"
-#: src/strings.ts:513
-#: src/strings.ts:1678
+#: src/strings.ts:535
+#: src/strings.ts:1702
msgid "Uploaded"
msgstr "Uploaded"
-#: src/strings.ts:801
+#: src/strings.ts:823
msgid "Uploaded file verification failed."
msgstr "Uploaded file verification failed."
#: src/strings.ts:65
-#: src/strings.ts:514
+#: src/strings.ts:536
msgid "Uploading"
msgstr "Uploading"
-#: src/strings.ts:765
+#: src/strings.ts:787
msgid "Uploads"
msgstr "Uploads"
@@ -7794,79 +7873,79 @@ msgstr "Uploads"
msgid "Urgent"
msgstr "Urgent"
-#: src/strings.ts:2425
+#: src/strings.ts:2449
msgid "URL"
msgstr "URL"
-#: src/strings.ts:1816
+#: src/strings.ts:1840
msgid "Use"
msgstr "Use"
-#: src/strings.ts:465
+#: src/strings.ts:487
msgid "Use {keyboardShortcut}+click to select multiple notebooks"
msgstr "Use {keyboardShortcut}+click to select multiple notebooks"
-#: src/strings.ts:1829
+#: src/strings.ts:1853
msgid "Use a backup file"
msgstr "Use a backup file"
-#: src/strings.ts:1927
+#: src/strings.ts:1951
msgid "Use a data recovery key to reset your account password."
msgstr "Use a data recovery key to reset your account password."
-#: src/strings.ts:558
+#: src/strings.ts:580
msgid "Use account password"
msgstr "Use account password"
-#: src/strings.ts:2570
+#: src/strings.ts:2594
msgid "Use advanced note taking features like"
msgstr "Use advanced note taking features like"
-#: src/strings.ts:997
+#: src/strings.ts:1019
msgid "Use an authenticator app to generate 2FA codes."
msgstr "Use an authenticator app to generate 2FA codes."
-#: src/strings.ts:2209
+#: src/strings.ts:2233
msgid "Use custom DNS"
msgstr "Use custom DNS"
-#: src/strings.ts:1145
+#: src/strings.ts:1169
msgid "Use dark mode for the app"
msgstr "Use dark mode for the app"
-#: src/strings.ts:1648
+#: src/strings.ts:1672
msgid "Use encryption key"
msgstr "Use encryption key"
-#: src/strings.ts:2794
+#: src/strings.ts:2818
msgid "Use existing PGP keys if you already have them"
msgstr "Use existing PGP keys if you already have them"
-#: src/strings.ts:1182
+#: src/strings.ts:1206
msgid "Use markdown shortcuts in the editor"
msgstr "Use markdown shortcuts in the editor"
-#: src/strings.ts:2162
+#: src/strings.ts:2186
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:2160
+#: src/strings.ts:2184
msgid "Use native titlebar"
msgstr "Use native titlebar"
-#: src/strings.ts:1856
+#: src/strings.ts:1880
msgid "Use offline"
msgstr "Use offline"
-#: src/strings.ts:1826
+#: src/strings.ts:1850
msgid "Use recovery key"
msgstr "Use recovery key"
-#: src/strings.ts:1141
+#: src/strings.ts:1165
msgid "Use system theme"
msgstr "Use system theme"
-#: src/strings.ts:421
+#: src/strings.ts:438
msgid ""
"Use the following key to format the title:\n"
"\n"
@@ -7888,103 +7967,111 @@ msgstr ""
"$headline$: Use starting line of the note as title.\n"
"$day$: Current day (eg. Monday)"
-#: src/strings.ts:1119
+#: src/strings.ts:1143
msgid "Use this if changes from other devices are not appearing on this device. This will overwrite the data on this device with the latest data from the server."
msgstr "Use this if changes from other devices are not appearing on this device. This will overwrite the data on this device with the latest data from the server."
-#: src/strings.ts:1128
+#: src/strings.ts:1152
msgid "Use this if changes made on this device are not appearing on other devices. This will overwrite the data on the server with the data from this device."
msgstr "Use this if changes made on this device are not appearing on other devices. This will overwrite the data on the server with the data from this device."
-#: src/strings.ts:2910
+#: src/strings.ts:2934
msgid "Use this only for troubleshooting sync issues. Regular use may lead to data loss or conflicts."
msgstr "Use this only for troubleshooting sync issues. Regular use may lead to data loss or conflicts."
-#: src/strings.ts:2511
+#: src/strings.ts:2535
msgid "used"
msgstr "used"
-#: src/strings.ts:1036
+#: src/strings.ts:386
+msgid "Used in"
+msgstr "Used in"
+
+#: src/strings.ts:1058
msgid "User verification failed"
msgstr "User verification failed"
-#: src/strings.ts:2292
+#: src/strings.ts:2316
msgid "Using {instance} (v{version})"
msgstr "Using {instance} (v{version})"
-#: src/strings.ts:2858
+#: src/strings.ts:2882
msgid "Using Notesnook without an account will **NOT** sync your notes across devices and could result in data loss if you lose access to your device or uninstall the app. Make sure to backup your notes regularly."
msgstr "Using Notesnook without an account will **NOT** sync your notes across devices and could result in data loss if you lose access to your device or uninstall the app. Make sure to backup your notes regularly."
-#: src/strings.ts:2290
+#: src/strings.ts:2314
msgid "Using official Notesnook instance"
msgstr "Using official Notesnook instance"
-#: src/strings.ts:1736
+#: src/strings.ts:1760
msgid "v{version} available"
msgstr "v{version} available"
-#: src/strings.ts:2766
+#: src/strings.ts:2790
msgid "Value must be between {min} and {max}"
msgstr "Value must be between {min} and {max}"
-#: src/strings.ts:1193
+#: src/strings.ts:1217
msgid "Vault"
msgstr "Vault"
-#: src/strings.ts:2019
+#: src/strings.ts:2043
msgid "Vault cleared"
msgstr "Vault cleared"
-#: src/strings.ts:815
+#: src/strings.ts:837
msgid "Vault created"
msgstr "Vault created"
-#: src/strings.ts:2020
+#: src/strings.ts:2044
msgid "Vault deleted"
msgstr "Vault deleted"
-#: src/strings.ts:452
+#: src/strings.ts:469
msgid "Vault fingerprint unlock"
msgstr "Vault fingerprint unlock"
-#: src/strings.ts:1958
+#: src/strings.ts:1982
msgid "Vault locked"
msgstr "Vault locked"
-#: src/strings.ts:1957
+#: src/strings.ts:1981
msgid "Vault unlocked"
msgstr "Vault unlocked"
-#: src/strings.ts:1422
+#: src/strings.ts:1446
msgid "Verification email sent"
msgstr "Verification email sent"
-#: src/strings.ts:577
+#: src/strings.ts:599
msgid "Verify"
msgstr "Verify"
-#: src/strings.ts:1087
+#: src/strings.ts:1094
+msgid "Verify Files"
+msgstr "Verify Files"
+
+#: src/strings.ts:1111
msgid "Verify subscription"
msgstr "Verify subscription"
-#: src/strings.ts:1090
+#: src/strings.ts:1114
msgid "Verify your subscription to Notesnook Pro"
msgstr "Verify your subscription to Notesnook Pro"
-#: src/strings.ts:1930
+#: src/strings.ts:1954
msgid "Verifying 2FA code"
msgstr "Verifying 2FA code"
-#: src/strings.ts:1916
+#: src/strings.ts:1940
msgid "Verifying your email"
msgstr "Verifying your email"
-#: src/strings.ts:418
+#: src/strings.ts:435
msgid "Version"
msgstr "Version"
-#: src/strings.ts:2850
+#: src/strings.ts:2874
msgid "Version history cleared"
msgstr "Version history cleared"
@@ -7992,221 +8079,229 @@ msgstr "Version history cleared"
msgid "Vibrate"
msgstr "Vibrate"
-#: src/strings.ts:758
+#: src/strings.ts:780
msgid "Videos"
msgstr "Videos"
-#: src/strings.ts:572
+#: src/strings.ts:594
msgid "View all linked notebooks"
msgstr "View all linked notebooks"
-#: src/strings.ts:2700
+#: src/strings.ts:2724
msgid "View and edit your inbox public/private key pair"
msgstr "View and edit your inbox public/private key pair"
-#: src/strings.ts:2706
+#: src/strings.ts:2730
msgid "View and manage inbox API keys"
msgstr "View and manage inbox API keys"
-#: src/strings.ts:1292
+#: src/strings.ts:1316
msgid "View and share debug logs"
msgstr "View and share debug logs"
-#: src/strings.ts:2800
+#: src/strings.ts:2824
msgid "View failed inbox items and error contexts"
msgstr "View failed inbox items and error contexts"
-#: src/strings.ts:2579
+#: src/strings.ts:2603
msgid "View plans"
msgstr "View plans"
-#: src/strings.ts:1774
+#: src/strings.ts:1798
msgid "View receipt"
msgstr "View receipt"
-#: src/strings.ts:1078
+#: src/strings.ts:1102
msgid "View recovery codes"
msgstr "View recovery codes"
-#: src/strings.ts:2189
+#: src/strings.ts:2213
msgid "View source code"
msgstr "View source code"
-#: src/strings.ts:1080
+#: src/strings.ts:1104
msgid "View your recovery codes to recover your account in case you lose access to your two-factor authentication methods."
msgstr "View your recovery codes to recover your account in case you lose access to your two-factor authentication methods."
-#: src/strings.ts:2663
+#: src/strings.ts:2687
msgid "Views"
msgstr "Views"
-#: src/strings.ts:419
+#: src/strings.ts:281
+msgid "Views on your published note"
+msgstr "Views on your published note"
+
+#: src/strings.ts:436
msgid "Visit homepage"
msgstr "Visit homepage"
-#: src/strings.ts:1372
+#: src/strings.ts:1396
msgid "Wait 30 seconds to try again"
msgstr "Wait 30 seconds to try again"
-#: src/strings.ts:1679
+#: src/strings.ts:1703
msgid "Waiting for upload"
msgstr "Waiting for upload"
-#: src/strings.ts:1938
+#: src/strings.ts:1962
msgid "We are creating a backup of your data. Please wait..."
msgstr "We are creating a backup of your data. Please wait..."
-#: src/strings.ts:477
+#: src/strings.ts:499
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:2831
+#: src/strings.ts:2855
msgid "We couldn't load this theme. Please make sure the file is a valid JSON theme file."
msgstr "We couldn't load this theme. Please make sure the file is a valid JSON theme file."
-#: src/strings.ts:2833
+#: src/strings.ts:2857
msgid "We couldn't load this theme. The file appears to be incomplete or missing required theme properties."
msgstr "We couldn't load this theme. The file appears to be incomplete or missing required theme properties."
-#: src/strings.ts:1412
+#: src/strings.ts:1436
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:2549
+#: src/strings.ts:2573
msgid "We require credit card details to fight abuse and to make it seamless for you to upgrade. Your credit card is NOT charged until your free trial ends and your subscription starts. You will be notified via email of the upcoming charge before your trial ends."
msgstr "We require credit card details to fight abuse and to make it seamless for you to upgrade. Your credit card is NOT charged until your free trial ends and your subscription starts. You will be notified via email of the upcoming charge before your trial ends."
-#: src/strings.ts:2204
+#: src/strings.ts:2228
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:1189
+#: src/strings.ts:1213
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:1376
+#: src/strings.ts:1400
msgid "We would love to know what you think!"
msgstr "We would love to know what you think!"
-#: src/strings.ts:2792
+#: src/strings.ts:2816
msgid "We'll create secure keys for you automatically"
msgstr "We'll create secure keys for you automatically"
-#: src/strings.ts:2600
+#: src/strings.ts:2624
msgid "We’re setting up your plan right now. We’ll notify you as soon as everything is ready."
msgstr "We’re setting up your plan right now. We’ll notify you as soon as everything is ready."
-#: src/strings.ts:2360
+#: src/strings.ts:2384
msgid "Web clip settings"
msgstr "Web clip settings"
-#: src/strings.ts:2056
+#: src/strings.ts:2080
msgid "Website"
msgstr "Website"
-#: src/strings.ts:627
+#: src/strings.ts:649
msgid "Wed"
msgstr "Wed"
-#: src/strings.ts:618
+#: src/strings.ts:640
msgid "Wednesday"
msgstr "Wednesday"
-#: src/strings.ts:666
+#: src/strings.ts:688
msgid "Week"
msgstr "Week"
-#: src/strings.ts:2676
+#: src/strings.ts:2700
msgid "Week format"
msgstr "Week format"
#: src/strings.ts:168
-#: src/strings.ts:1596
+#: src/strings.ts:1620
msgid "Weekly"
msgstr "Weekly"
-#: src/strings.ts:782
+#: src/strings.ts:804
msgid "Welcome back, {email}"
msgstr "Welcome back, {email}"
-#: src/strings.ts:1915
+#: src/strings.ts:1939
msgid "Welcome back!"
msgstr "Welcome back!"
-#: src/strings.ts:2636
+#: src/strings.ts:2660
msgid "Welcome to Notesnook {plan}"
msgstr "Welcome to Notesnook {plan}"
-#: src/strings.ts:2110
+#: src/strings.ts:2134
msgid "Welcome to Notesnook Pro"
msgstr "Welcome to Notesnook Pro"
-#: src/strings.ts:1414
+#: src/strings.ts:1438
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:2541
+#: src/strings.ts:2565
msgid "What happens to my data if I switch plans?"
msgstr "What happens to my data if I switch plans?"
-#: src/strings.ts:2557
+#: src/strings.ts:2581
msgid "What is your refund policy?"
msgstr "What is your refund policy?"
-#: src/strings.ts:1694
+#: src/strings.ts:1718
msgid "What went wrong?"
msgstr "What went wrong?"
-#: src/strings.ts:2867
+#: src/strings.ts:2891
msgid "What's included"
msgstr "What's included"
-#: src/strings.ts:2547
+#: src/strings.ts:2571
msgid "Why do you need my credit card details for a free trial?"
msgstr "Why do you need my credit card details for a free trial?"
-#: src/strings.ts:2421
+#: src/strings.ts:2445
msgid "Width"
msgstr "Width"
-#: src/strings.ts:2527
+#: src/strings.ts:2551
msgid "Words"
msgstr "Words"
-#: src/strings.ts:2450
+#: src/strings.ts:2474
msgid "Work & Office"
msgstr "Work & Office"
-#: src/strings.ts:834
+#: src/strings.ts:856
msgid "Write notes with freedom, no spying, no tracking."
msgstr "Write notes with freedom, no spying, no tracking."
-#: src/strings.ts:1396
+#: src/strings.ts:1420
msgid "Write something..."
msgstr "Write something..."
-#: src/strings.ts:1681
+#: src/strings.ts:1705
msgid "Write with freedom."
msgstr "Write with freedom."
-#: src/strings.ts:2098
+#: src/strings.ts:2122
msgid "Write with freedom. Never compromise on privacy again."
msgstr "Write with freedom. Never compromise on privacy again."
-#: src/strings.ts:665
+#: src/strings.ts:687
msgid "Year"
msgstr "Year"
#: src/strings.ts:170
-#: src/strings.ts:1598
+#: src/strings.ts:1622
msgid "Yearly"
msgstr "Yearly"
-#: src/strings.ts:550
+#: src/strings.ts:572
msgid "Yes"
msgstr "Yes"
-#: src/strings.ts:2554
+#: src/strings.ts:285
+msgid "Yes, Unpublish"
+msgstr "Yes, Unpublish"
+
+#: src/strings.ts:2578
msgid "Yes, you can cancel your trial anytime. No questions asked."
msgstr "Yes, you can cancel your trial anytime. No questions asked."
@@ -8214,67 +8309,67 @@ msgstr "Yes, you can cancel your trial anytime. No questions asked."
msgid "You also agree to receive marketing emails from us which you can opt-out of from app settings."
msgstr "You also agree to receive marketing emails from us which you can opt-out of from app settings."
-#: src/strings.ts:2641
+#: src/strings.ts:2665
msgid "You are already subscribed to this plan."
msgstr "You are already subscribed to this plan."
-#: src/strings.ts:2277
+#: src/strings.ts:2301
msgid "You are editing \"{notebookTitle}\"."
msgstr "You are editing \"{notebookTitle}\"."
-#: src/strings.ts:2070
+#: src/strings.ts:2094
msgid "You are editing #{tag}"
msgstr "You are editing #{tag}"
-#: src/strings.ts:1808
+#: src/strings.ts:1832
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:1383
+#: src/strings.ts:1407
msgid "You are not logged in"
msgstr "You are not logged in"
-#: src/strings.ts:902
+#: src/strings.ts:924
msgid "You are renaming color {color}"
msgstr "You are renaming color {color}"
-#: src/strings.ts:467
+#: src/strings.ts:489
msgid "You can also link a note to multiple Notebooks. Tap and hold any notebook to enable multi-select."
msgstr "You can also link a note to multiple Notebooks. Tap and hold any notebook to enable multi-select."
-#: src/strings.ts:2101
+#: src/strings.ts:2125
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:2644
+#: src/strings.ts:2668
msgid "You can change your subscription plan from the web app"
msgstr "You can change your subscription plan from the web app"
-#: src/strings.ts:2458
+#: src/strings.ts:2482
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:2116
+#: src/strings.ts:2140
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:1458
+#: src/strings.ts:1482
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:1449
+#: src/strings.ts:1473
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:1192
+#: src/strings.ts:1216
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:1430
+#: src/strings.ts:1454
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:2083
+#: src/strings.ts:2107
msgid ""
"You can track your bug report at [{url}]({url}).\n"
"\n"
@@ -8288,7 +8383,7 @@ msgstr ""
"\n"
"If your issue is critical (e.g. notes not syncing, crashes etc.), please [join our Discord community](https://go.notesnook.com/discord) for one-to-one support."
-#: src/strings.ts:2092
+#: src/strings.ts:2116
msgid ""
"You can track your feature request at [{url}]({url}).\n"
"\n"
@@ -8302,67 +8397,67 @@ msgstr ""
msgid "You can track your issue at "
msgstr "You can track your issue at "
-#: src/strings.ts:1046
+#: src/strings.ts:1068
msgid "You can use all premium features for free for the next 14 days"
msgstr "You can use all premium features for free for the next 14 days"
-#: src/strings.ts:1076
+#: src/strings.ts:1100
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:1472
+#: src/strings.ts:1496
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:1776
+#: src/strings.ts:1800
msgid "You have {count} custom dictionary words."
msgstr "You have {count} custom dictionary words."
-#: src/strings.ts:2235
+#: src/strings.ts:2259
msgid "You have been logged out from all other devices."
msgstr "You have been logged out from all other devices."
-#: src/strings.ts:2229
+#: src/strings.ts:2253
msgid "You have been logged out."
msgstr "You have been logged out."
-#: src/strings.ts:2640
+#: src/strings.ts:2664
msgid "You have made a one time purchase. To change your plan please contact support."
msgstr "You have made a one time purchase. To change your plan please contact support."
-#: src/strings.ts:982
+#: src/strings.ts:1004
msgid "You have not added any notebooks yet"
msgstr "You have not added any notebooks yet"
-#: src/strings.ts:981
+#: src/strings.ts:1003
msgid "You have not added any tags yet"
msgstr "You have not added any tags yet"
-#: src/strings.ts:980
+#: src/strings.ts:1002
msgid "You have not created any notes yet"
msgstr "You have not created any notes yet"
-#: src/strings.ts:979
+#: src/strings.ts:1001
msgid "You have not favorited any notes yet"
msgstr "You have not favorited any notes yet"
-#: src/strings.ts:984
+#: src/strings.ts:1006
msgid "You have not published any monographs yet"
msgstr "You have not published any monographs yet"
-#: src/strings.ts:983
+#: src/strings.ts:1005
msgid "You have not set any reminders yet"
msgstr "You have not set any reminders yet"
-#: src/strings.ts:1572
+#: src/strings.ts:1596
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:1661
+#: src/strings.ts:1685
msgid "You must log out in order to change/reset server URLs."
msgstr "You must log out in order to change/reset server URLs."
-#: src/strings.ts:2782
+#: src/strings.ts:2806
msgid ""
"You need to login to restore attachments from a backup file. [Read more](https://help.notesnook.com/faqs/login-to-restore-attachments-in-backup).\n"
" \n"
@@ -8372,192 +8467,192 @@ msgstr ""
" \n"
"Continue without attachments?"
-#: src/strings.ts:852
+#: src/strings.ts:874
msgid "You simply cannot get any better of a note taking app than @notesnook. The UI is clean and slick, it is feature rich, encrypted, reasonably priced (esp. for students & educators) & open source"
msgstr "You simply cannot get any better of a note taking app than @notesnook. The UI is clean and slick, it is feature rich, encrypted, reasonably priced (esp. for students & educators) & open source"
-#: src/strings.ts:1086
+#: src/strings.ts:1110
msgid "You subscribed to Notesnook Pro on {date}. Verify this subscription?"
msgstr "You subscribed to Notesnook Pro on {date}. Verify this subscription?"
-#: src/strings.ts:711
+#: src/strings.ts:733
msgid "You subscribed to Notesnook Pro on Android Phone/Tablet using Google In App Purchase."
msgstr "You subscribed to Notesnook Pro on Android Phone/Tablet using Google In App Purchase."
-#: src/strings.ts:704
+#: src/strings.ts:726
msgid "You subscribed to Notesnook Pro on iOS using Apple In App Purchase. You can cancel anytime with your iTunes Account settings."
msgstr "You subscribed to Notesnook Pro on iOS using Apple In App Purchase. You can cancel anytime with your iTunes Account settings."
-#: src/strings.ts:717
+#: src/strings.ts:739
msgid "You subscribed to Notesnook Pro on the Web/Desktop App."
msgstr "You subscribed to Notesnook Pro on the Web/Desktop App."
-#: src/strings.ts:723
+#: src/strings.ts:745
msgid "You subscribed to Notesnook Pro using a gift card."
msgstr "You subscribed to Notesnook Pro using a gift card."
-#: src/strings.ts:698
+#: src/strings.ts:720
msgid "You were awarded a subscription to Notesnook Pro by Streetwriters."
msgstr "You were awarded a subscription to Notesnook Pro by Streetwriters."
-#: src/strings.ts:471
+#: src/strings.ts:493
msgid "You will be logged out from all your devices"
msgstr "You will be logged out from all your devices"
-#: src/strings.ts:1878
+#: src/strings.ts:1902
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"
-#: src/strings.ts:470
+#: src/strings.ts:492
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:1944
+#: src/strings.ts:1968
msgid "Your account has been recovered."
msgstr "Your account has been recovered."
-#: src/strings.ts:2891
+#: src/strings.ts:2915
msgid "Your account is almost ready, please wait."
msgstr "Your account is almost ready, please wait."
-#: src/strings.ts:504
-#: src/strings.ts:1755
+#: src/strings.ts:526
+#: src/strings.ts:1779
msgid "Your account is now 100% secure against unauthorized logins."
msgstr "Your account is now 100% secure against unauthorized logins."
-#: src/strings.ts:1883
+#: src/strings.ts:1907
msgid "Your account password must be strong & unique."
msgstr "Your account password must be strong & unique."
-#: src/strings.ts:1052
+#: src/strings.ts:1074
msgid "Your account will be downgraded in {days} days"
msgstr "Your account will be downgraded in {days} days"
-#: src/strings.ts:1096
+#: src/strings.ts:1120
msgid "Your account will be permanently deleted along with all your data, login credentials, and subscription information. This action is IRREVERSIBLE. Make sure to save a backup of your notes before proceeding."
msgstr "Your account will be permanently deleted along with all your data, login credentials, and subscription information. This action is IRREVERSIBLE. Make sure to save a backup of your notes before proceeding."
-#: src/strings.ts:978
+#: src/strings.ts:1000
msgid "Your archive"
msgstr "Your archive"
-#: src/strings.ts:2523
+#: src/strings.ts:2547
msgid "Your archive is empty"
msgstr "Your archive is empty"
-#: src/strings.ts:1956
+#: src/strings.ts:1980
msgid "Your backup is ready to download"
msgstr "Your backup is ready to download"
-#: src/strings.ts:1613
+#: src/strings.ts:1637
msgid "Your changes could not be saved"
msgstr "Your changes could not be saved"
-#: src/strings.ts:1803
+#: src/strings.ts:1827
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:2136
+#: src/strings.ts:2160
msgid "Your current 2FA method is {method}"
msgstr "Your current 2FA method is {method}"
-#: src/strings.ts:2647
+#: src/strings.ts:2671
msgid "Your current subscription does not allow changing plans"
msgstr "Your current subscription does not allow changing plans"
-#: src/strings.ts:1828
+#: src/strings.ts:1852
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:1881
+#: src/strings.ts:1905
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:2543
+#: src/strings.ts:2567
msgid "Your data remains 100% accessible regardless of what plan you are on. That includes your notes, notebooks, attachments, and anything else you might have created."
msgstr "Your data remains 100% accessible regardless of what plan you are on. That includes your notes, notebooks, attachments, and anything else you might have created."
-#: src/strings.ts:1811
+#: src/strings.ts:1835
msgid "Your email has been confirmed."
msgstr "Your email has been confirmed."
-#: src/strings.ts:2534
+#: src/strings.ts:2558
msgid "Your email has been confirmed. You can now securely sync your encrypted notes across all devices."
msgstr "Your email has been confirmed. You can now securely sync your encrypted notes across all devices."
-#: src/strings.ts:768
+#: src/strings.ts:790
msgid "Your email is not confirmed. Please confirm your email address to change account password."
msgstr "Your email is not confirmed. Please confirm your email address to change account password."
-#: src/strings.ts:972
+#: src/strings.ts:994
msgid "Your favorites"
msgstr "Your favorites"
-#: src/strings.ts:1049
+#: src/strings.ts:1071
msgid "Your free trial ends on {date}"
msgstr "Your free trial ends on {date}"
-#: src/strings.ts:1426
+#: src/strings.ts:1450
msgid "Your free trial has expired"
msgstr "Your free trial has expired"
-#: src/strings.ts:1044
+#: src/strings.ts:1066
msgid "Your free trial has started"
msgstr "Your free trial has started"
-#: src/strings.ts:1425
+#: src/strings.ts:1449
msgid "Your free trial is ending soon"
msgstr "Your free trial is ending soon"
-#: src/strings.ts:2675
+#: src/strings.ts:2699
msgid "Your free trial is on-going. Your subscription will start on {trialExpiryDate}"
msgstr "Your free trial is on-going. Your subscription will start on {trialExpiryDate}"
-#: src/strings.ts:1805
+#: src/strings.ts:1829
msgid "Your full name"
msgstr "Your full name"
-#: src/strings.ts:977
+#: src/strings.ts:999
msgid "Your monographs"
msgstr "Your monographs"
-#: src/strings.ts:1334
+#: src/strings.ts:1358
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."
-#: src/strings.ts:563
+#: src/strings.ts:585
msgid "Your note will be unencrypted and removed from the vault."
msgstr "Your note will be unencrypted and removed from the vault."
-#: src/strings.ts:975
+#: src/strings.ts:997
msgid "Your notebooks"
msgstr "Your notebooks"
-#: src/strings.ts:973
+#: src/strings.ts:995
msgid "Your notes"
msgstr "Your notes"
-#: src/strings.ts:1919
+#: src/strings.ts:1943
msgid "Your password is always hashed before leaving this device."
msgstr "Your password is always hashed before leaving this device."
-#: src/strings.ts:848
+#: src/strings.ts:870
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:1331
+#: src/strings.ts:1355
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:2902
+#: src/strings.ts:2926
msgid "Your recovery key"
msgstr "Your recovery key"
-#: src/strings.ts:2024
+#: src/strings.ts:2048
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."
-#: src/strings.ts:976
+#: src/strings.ts:998
msgid "Your reminders"
msgstr "Your reminders"
@@ -8565,66 +8660,66 @@ msgstr "Your reminders"
msgid "Your session has expired. Please enter password for {obfuscatedEmail} to continue."
msgstr "Your session has expired. Please enter password for {obfuscatedEmail} to continue."
-#: src/strings.ts:1053
+#: src/strings.ts:1075
msgid "Your subscription ends on {date}"
msgstr "Your subscription ends on {date}"
-#: src/strings.ts:2022
+#: src/strings.ts:2046
msgid "Your subscription has been canceled."
msgstr "Your subscription has been canceled."
-#: src/strings.ts:1050
+#: src/strings.ts:1072
msgid "Your subscription has ended"
msgstr "Your subscription has ended"
-#: src/strings.ts:1054
+#: src/strings.ts:1076
msgid "Your subscription renews on {date}"
msgstr "Your subscription renews on {date}"
-#: src/strings.ts:2080
+#: src/strings.ts:2104
msgid "Your support request has been forwarded"
msgstr "Your support request has been forwarded"
-#: src/strings.ts:2089
+#: src/strings.ts:2113
msgid "Your support request has been forwarded to our support team. We will get back to you via email as soon as possible. If you don't receive an email from us within 24-48 hours, please send us an email directly at support@notesnook.com."
msgstr "Your support request has been forwarded to our support team. We will get back to you via email as soon as possible. If you don't receive an email from us within 24-48 hours, please send us an email directly at support@notesnook.com."
-#: src/strings.ts:974
+#: src/strings.ts:996
msgid "Your tags"
msgstr "Your tags"
-#: src/strings.ts:2887
+#: src/strings.ts:2911
msgid "Your thoughts deserve a home. Create your first note and start organizing your life today."
msgstr "Your thoughts deserve a home. Create your first note and start organizing your life today."
-#: src/strings.ts:692
+#: src/strings.ts:714
msgid "yr"
msgstr "yr"
-#: src/strings.ts:650
+#: src/strings.ts:672
msgid "Z to A"
msgstr "Z to A"
-#: src/strings.ts:795
+#: src/strings.ts:817
msgid "Zipping"
msgstr "Zipping"
-#: src/strings.ts:2499
+#: src/strings.ts:2523
msgid "Zoom"
msgstr "Zoom"
-#: src/strings.ts:2130
+#: src/strings.ts:2154
msgid "Zoom factor"
msgstr "Zoom factor"
-#: src/strings.ts:1727
+#: src/strings.ts:1751
msgid "Zoom in"
msgstr "Zoom in"
-#: src/strings.ts:2131
+#: src/strings.ts:2155
msgid "Zoom in or out the app content."
msgstr "Zoom in or out the app content."
-#: src/strings.ts:1726
+#: src/strings.ts:1750
msgid "Zoom out"
msgstr "Zoom out"
diff --git a/packages/intl/locale/pseudo-LOCALE.po b/packages/intl/locale/pseudo-LOCALE.po
index 75058e1a8..d89d46b72 100644
--- a/packages/intl/locale/pseudo-LOCALE.po
+++ b/packages/intl/locale/pseudo-LOCALE.po
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
-"POT-Creation-Date: 2026-07-23 08:52+0500\n"
+"POT-Creation-Date: 2026-07-23 08:53+0500\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -13,7 +13,7 @@ msgstr ""
"Language-Team: \n"
"Plural-Forms: \n"
-#: src/strings.ts:2448
+#: src/strings.ts:2472
msgid " \"Notebook > Notes\""
msgstr ""
@@ -21,27 +21,27 @@ msgstr ""
msgid " Unlock with password once to enable biometric access."
msgstr ""
-#: src/strings.ts:1968
+#: src/strings.ts:1992
msgid " Upgrade to Notesnook Pro to add more notebooks."
msgstr ""
-#: src/strings.ts:1971
+#: src/strings.ts:1995
msgid " Upgrade to Notesnook Pro to customize the toolbar."
msgstr ""
-#: src/strings.ts:1970
+#: src/strings.ts:1994
msgid " Upgrade to Notesnook Pro to use custom toolbar presets."
msgstr ""
-#: src/strings.ts:1969
+#: src/strings.ts:1993
msgid " Upgrade to Notesnook Pro to use the notes vault."
msgstr ""
-#: src/strings.ts:1972
+#: src/strings.ts:1996
msgid " Upgrade to Notesnook Pro to use this feature."
msgstr ""
-#: src/strings.ts:844
+#: src/strings.ts:866
msgid "— not just the privileged few"
msgstr ""
@@ -59,29 +59,29 @@ msgid "{0}"
msgstr ""
#. placeholder {0}: name || "File"
-#: src/strings.ts:517
+#: src/strings.ts:539
msgid "{0} downloaded"
msgstr ""
#. placeholder {0}: version ? `v${version} ` : "New version"
-#: src/strings.ts:535
+#: src/strings.ts:557
msgid "{0} Highlights 🎉"
msgstr ""
#. placeholder {0}: platform === "ios" ? "Apple" : "Google"
-#: src/strings.ts:2614
+#: src/strings.ts:2638
msgid "{0} will remind you before your trial ends"
msgstr ""
-#: src/strings.ts:1780
+#: src/strings.ts:1804
msgid "{count, plural, one {# error occured} other {# errors occured}}"
msgstr ""
-#: src/strings.ts:1786
+#: src/strings.ts:1810
msgid "{count, plural, one {# file ready for import} other {# files ready for import}}"
msgstr ""
-#: src/strings.ts:1741
+#: src/strings.ts:1765
msgid "{count, plural, one {# file} other {# files}}"
msgstr ""
@@ -89,15 +89,15 @@ msgstr ""
msgid "{count, plural, one {# note} other {# notes}}"
msgstr ""
-#: src/strings.ts:1605
+#: src/strings.ts:1629
msgid "{count, plural, one {1 hour} other {# hours}}"
msgstr ""
-#: src/strings.ts:1600
+#: src/strings.ts:1624
msgid "{count, plural, one {1 minute} other {# minutes}}"
msgstr ""
-#: src/strings.ts:411
+#: src/strings.ts:428
msgid "{count, plural, one {1 result} other {# results}}"
msgstr ""
@@ -134,7 +134,7 @@ msgstr ""
msgid "{count, plural, one {Are you sure you want to download all attachments of this note?} other {Are you sure you want to download all attachments?}}"
msgstr ""
-#: src/strings.ts:879
+#: src/strings.ts:901
msgid "{count, plural, one {Are you sure you want to move this notebook to {selectedNotebookTitle}?} other {Are you sure you want to move these # notebooks {selectedNotebookTitle}?}}"
msgstr ""
@@ -301,15 +301,15 @@ msgstr ""
msgid "{count, plural, one {Item unpublished} other {# items unpublished}}"
msgstr ""
-#: src/strings.ts:2465
+#: src/strings.ts:2489
msgid "{count, plural, one {Move all notes in this notebook to trash} other {Move all notes in these notebooks to trash}}"
msgstr ""
-#: src/strings.ts:877
+#: src/strings.ts:899
msgid "{count, plural, one {Move notebook} other {Move # notebooks}}"
msgstr ""
-#: src/strings.ts:483
+#: src/strings.ts:505
msgid "{count, plural, one {Moving {title}} other {Moving # notebooks}}"
msgstr ""
@@ -349,7 +349,7 @@ msgstr ""
msgid "{count, plural, one {Note unpublished} other {# notes unpublished}}"
msgstr ""
-#: src/strings.ts:938
+#: src/strings.ts:960
msgid "{count, plural, one {Note will be automatically deleted from all other devices & any future changes won't get synced. Are you sure you want to continue?} other {# notes will be automatically deleted from all other devices & any future changes won't get synced. Are you sure you want to continue?}}"
msgstr ""
@@ -403,7 +403,7 @@ msgstr ""
msgid "{count, plural, one {Pin notebook} other {Pin # notebooks}}"
msgstr ""
-#: src/strings.ts:933
+#: src/strings.ts:955
msgid "{count, plural, one {Prevent note from syncing} other {Prevent # notes from syncing}}"
msgstr ""
@@ -508,39 +508,39 @@ msgstr "<<<<<<< HEAD"
msgid "{count, plural, one {Version deleted} other {# versions deleted}}"
msgstr ""
-#: src/strings.ts:2535
+#: src/strings.ts:2559
msgid "{count} characters"
msgstr ""
-#: src/strings.ts:1591
+#: src/strings.ts:1615
msgid "{days, plural, one {1 day} other {# days}}"
msgstr ""
-#: src/strings.ts:2605
+#: src/strings.ts:2629
msgid "{days} days free"
-msgstr "<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2878
+#: src/strings.ts:2902
msgid "{duration} days free trial includes all features"
msgstr ""
-#: src/strings.ts:350
+#: src/strings.ts:364
msgid "{freq, plural, one {Repeats every day on {selectedDays} at {date}} other {Repeats every # day every {selectedDays} at {date}}}"
msgstr ""
-#: src/strings.ts:358
+#: src/strings.ts:372
msgid "{freq, plural, one {Repeats every month on {selectedDays} at {date}} other {Repeats every # month every {selectedDays} at {date}}}"
msgstr ""
-#: src/strings.ts:354
+#: src/strings.ts:368
msgid "{freq, plural, one {Repeats every week on {selectedDays} at {date}} other {Repeats every # week every {selectedDays} at {date}}}"
msgstr ""
-#: src/strings.ts:362
+#: src/strings.ts:376
msgid "{freq, plural, one {Repeats every year on {selectedDays} at {date}} other {Repeats every # year every {selectedDays} at {date}}}"
msgstr ""
-#: src/strings.ts:326
+#: src/strings.ts:340
msgid "{itemType, select, tag {Add a tag} notebook {Add a notebook} reminder {Add a reminder} note {Add a note} other {Add an item}}"
msgstr ""
@@ -548,59 +548,59 @@ msgstr ""
msgid "{key, select, dateCreated {Created at} dateEdited {Last edited at} dateModified {Last modified at} dateUploaded {Uploaded at} dateDeleted {Deleted at} other {{key}}}"
msgstr ""
-#: src/strings.ts:443
+#: src/strings.ts:460
msgid "{mode, select, create {Create app lock {keyboardType}} change {Change app lock {keyboardType}} remove {Remove app lock {keyboardType}} other {}}"
msgstr ""
-#: src/strings.ts:607
+#: src/strings.ts:629
msgid "{mode, select, day {Daily} week {Weekly} month {Monthly} year {Yearly} other {Unknown mode}}"
msgstr ""
-#: src/strings.ts:600
+#: src/strings.ts:622
msgid "{mode, select, repeat {Repeat} once {Once} permanent {Permanent} other {Unknown mode}}"
msgstr ""
-#: src/strings.ts:2003
+#: src/strings.ts:2027
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:1998
+#: src/strings.ts:2022
msgid "{n} {added, plural, one {added to 1 notebook} other {added to # notebooks}}."
msgstr ""
-#: src/strings.ts:1993
+#: src/strings.ts:2017
msgid "{n} {removed, plural, one {removed from 1 notebook} other {removed from # notebooks}}."
msgstr ""
-#: src/strings.ts:1988
+#: src/strings.ts:2012
msgid "{notes, plural, one {1 note} other {# notes}}"
msgstr ""
-#: src/strings.ts:474
+#: src/strings.ts:496
msgid "{notes, plural, one {Export note} other {Export # notes}}"
msgstr ""
-#: src/strings.ts:1733
+#: src/strings.ts:1757
msgid "{percentage}% updating..."
msgstr ""
-#: src/strings.ts:2589
+#: src/strings.ts:2613
msgid "{plan} plan"
msgstr ""
-#: src/strings.ts:745
+#: src/strings.ts:767
msgid "{platform, select, android {{name} saved to selected path} other {{name} saved to File Manager/Notesnook/downloads}}"
msgstr ""
-#: src/strings.ts:1359
+#: src/strings.ts:1383
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:2395
+#: src/strings.ts:2419
msgid "{selected} selected"
msgstr ""
-#: src/strings.ts:382
+#: src/strings.ts:399
msgid "{type, select, github {v{version} has been released on GitHub} other {v{version} has been released}}"
msgstr ""
@@ -612,308 +612,312 @@ msgstr ""
msgid "{type, select, upload {Uploading} download {Downloading} sync {Syncing} other {Loading}}"
msgstr ""
-#: src/strings.ts:787
+#: src/strings.ts:809
msgid "{type} does not match"
msgstr ""
-#: src/strings.ts:1626
+#: src/strings.ts:1650
msgid "{words, plural, one {# word} other {# words}}"
msgstr ""
-#: src/strings.ts:1689
+#: src/strings.ts:1713
msgid "{words, plural, other {# selected}}"
msgstr ""
-#: src/strings.ts:1817
+#: src/strings.ts:1841
msgid "#notesnook"
msgstr ""
-#: src/strings.ts:2718
+#: src/strings.ts:2742
msgid "1 day"
msgstr ""
-#: src/strings.ts:2720
+#: src/strings.ts:2744
msgid "1 month"
msgstr ""
-#: src/strings.ts:2719
+#: src/strings.ts:2743
msgid "1 week"
msgstr ""
-#: src/strings.ts:2721
+#: src/strings.ts:2745
msgid "1 year"
msgstr ""
-#: src/strings.ts:1610
+#: src/strings.ts:1634
msgid "12-hour"
msgstr ""
-#: src/strings.ts:1611
+#: src/strings.ts:1635
msgid "24-hour"
msgstr ""
-#: src/strings.ts:1931
+#: src/strings.ts:1955
msgid "2FA code is required()"
msgstr ""
-#: src/strings.ts:1026
+#: src/strings.ts:1048
msgid "2FA code sent via {method}"
msgstr ""
-#: src/strings.ts:2634
+#: src/strings.ts:2658
msgid "5 year plan"
msgstr ""
-#: src/strings.ts:1872
+#: src/strings.ts:1896
msgid "6 digit code"
msgstr ""
-#: src/strings.ts:2587
+#: src/strings.ts:2611
msgid "7-day free trial"
msgstr ""
-#: src/strings.ts:1453
+#: src/strings.ts:1477
msgid "A notebook can have unlimited topics with unlimited notes."
msgstr ""
-#: src/strings.ts:649
+#: src/strings.ts:671
msgid "A to Z"
msgstr ""
-#: src/strings.ts:451
+#: src/strings.ts:468
msgid "A vault stores your notes in an encrypted storage."
msgstr ""
-#: src/strings.ts:664
+#: src/strings.ts:686
msgid "Abc"
msgstr ""
-#: src/strings.ts:1311
+#: src/strings.ts:1335
msgid "About"
-msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2897
+#: src/strings.ts:2921
msgid "Access on all devices"
msgstr ""
-#: src/strings.ts:2872
+#: src/strings.ts:2896
msgid "Access on all your devices"
msgstr ""
-#: src/strings.ts:1042
+#: src/strings.ts:1064
msgid "Account"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2915
+#: src/strings.ts:2939
msgid "Account actions"
msgstr ""
-#: src/strings.ts:1874
+#: src/strings.ts:1898
msgid "Account password"
msgstr ""
-#: src/strings.ts:1136
+#: src/strings.ts:1160
msgid "Actions"
msgstr ""
-#: src/strings.ts:2490
+#: src/strings.ts:2514
msgid "Actions for note: {title}"
msgstr ""
-#: src/strings.ts:2491
+#: src/strings.ts:2515
msgid "Actions for notebook: {title}"
msgstr ""
-#: src/strings.ts:2492
+#: src/strings.ts:2516
msgid "Actions for tag: {title}"
msgstr ""
-#: src/strings.ts:2064
+#: src/strings.ts:2088
msgid "Activate"
msgstr ""
-#: src/strings.ts:1850
+#: src/strings.ts:1874
msgid "Activating trial"
msgstr ""
-#: src/strings.ts:532
+#: src/strings.ts:554
msgid "Add"
msgstr ""
-#: src/strings.ts:1074
+#: src/strings.ts:1098
msgid "Add 2FA fallback method"
msgstr ""
-#: src/strings.ts:1531
+#: src/strings.ts:1555
msgid "Add a short note"
msgstr ""
-#: src/strings.ts:1627
+#: src/strings.ts:1651
msgid "Add a tag"
msgstr ""
-#: src/strings.ts:559
+#: src/strings.ts:581
msgid "Add color"
msgstr ""
-#: src/strings.ts:2704
+#: src/strings.ts:2728
msgid "Add key"
msgstr ""
-#: src/strings.ts:911
+#: src/strings.ts:933
msgid "Add notebook"
msgstr ""
-#: src/strings.ts:2517
+#: src/strings.ts:2541
msgid "Add notes"
msgstr ""
-#: src/strings.ts:487
+#: src/strings.ts:509
msgid "Add notes to {title}"
msgstr ""
-#: src/strings.ts:910
+#: src/strings.ts:932
msgid "Add shortcut"
msgstr ""
-#: src/strings.ts:739
+#: src/strings.ts:761
msgid "Add shortcuts for notebooks and tags here."
msgstr ""
-#: src/strings.ts:574
+#: src/strings.ts:596
msgid "Add tag"
msgstr ""
-#: src/strings.ts:951
+#: src/strings.ts:973
msgid "Add tags"
msgstr ""
-#: src/strings.ts:952
+#: src/strings.ts:974
msgid "Add tags to multiple notes at once"
msgstr ""
-#: src/strings.ts:2282
+#: src/strings.ts:2306
msgid "Add to dictionary"
msgstr ""
-#: src/strings.ts:2667
+#: src/strings.ts:2691
msgid "Add to home"
msgstr ""
-#: src/strings.ts:2515
+#: src/strings.ts:2539
msgid "Add to notebook"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:992
-#: src/strings.ts:2888
+#: src/strings.ts:1014
+#: src/strings.ts:2912
msgid "Add your first note"
msgstr ""
-#: src/strings.ts:993
+#: src/strings.ts:1015
msgid "Add your first notebook"
msgstr ""
-#: src/strings.ts:2670
+#: src/strings.ts:2694
msgid "Adjust the line height of the editor"
msgstr ""
-#: src/strings.ts:2208
+#: src/strings.ts:2232
msgid "Advanced"
msgstr ""
-#: src/strings.ts:2585
+#: src/strings.ts:2609
msgid "Advanced note elements"
msgstr ""
-#: src/strings.ts:1104
+#: src/strings.ts:1128
msgid "Advanced settings"
msgstr ""
-#: src/strings.ts:1753
+#: src/strings.ts:1777
msgid "After scanning the QR code image, the app will display a code that you can enter below."
msgstr ""
-#: src/strings.ts:2347
+#: src/strings.ts:2371
msgid "Align left"
msgstr ""
-#: src/strings.ts:2348
+#: src/strings.ts:2372
msgid "Align right"
msgstr ""
-#: src/strings.ts:2317
+#: src/strings.ts:2341
msgid "Alignment"
msgstr ""
-#: src/strings.ts:728
+#: src/strings.ts:750
msgid "All"
msgstr ""
+#: src/strings.ts:1093
+msgid "All attachments"
+msgstr ""
+
#: src/strings.ts:91
msgid "All attachments are end-to-end encrypted."
msgstr ""
-#: src/strings.ts:2442
+#: src/strings.ts:2466
msgid "All cached attachments have been cleared."
msgstr ""
-#: src/strings.ts:769
+#: src/strings.ts:791
msgid "All fields are required"
msgstr ""
-#: src/strings.ts:756
+#: src/strings.ts:778
msgid "All files"
msgstr ""
-#: src/strings.ts:2808
+#: src/strings.ts:2832
msgid "All items deleted"
msgstr ""
-#: src/strings.ts:1196
+#: src/strings.ts:1220
msgid "All locked notes will be re-encrypted with the new password."
msgstr ""
-#: src/strings.ts:741
+#: src/strings.ts:763
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:1664
+#: src/strings.ts:1688
msgid "All server urls are required."
msgstr ""
-#: src/strings.ts:1933
+#: src/strings.ts:1957
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:2188
+#: src/strings.ts:2212
msgid "All the source code for Notesnook is available & open for everyone on GitHub."
msgstr ""
-#: src/strings.ts:433
+#: src/strings.ts:450
msgid "All tools are grouped"
msgstr ""
-#: src/strings.ts:1343
+#: src/strings.ts:1367
msgid "All tools in the collapsed section will be removed"
msgstr ""
-#: src/strings.ts:1338
+#: src/strings.ts:1362
msgid "All tools in this group will be removed from the toolbar."
msgstr ""
-#: src/strings.ts:1368
+#: src/strings.ts:1392
msgid "All your backups are stored in 'Phone Storage/Notesnook/backups/' folder"
msgstr ""
#: src/strings.ts:108
msgid "Already have an account?"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2923
+#: src/strings.ts:2947
msgid "Always ask"
msgstr ""
-#: src/strings.ts:2258
+#: src/strings.ts:2282
msgid "Amount"
msgstr ""
@@ -921,7 +925,7 @@ msgstr ""
msgid "An error occurred while migrating your data. You can logout of your account and try to relogin. However this is not recommended as it may result in some data loss if your data was not synced."
msgstr ""
-#: src/strings.ts:2626
+#: src/strings.ts:2650
msgid "and"
msgstr ""
@@ -929,39 +933,39 @@ msgstr ""
msgid "and "
msgstr ""
-#: src/strings.ts:1818
+#: src/strings.ts:1842
msgid "and get a chance to win free promo codes."
msgstr ""
-#: src/strings.ts:2572
+#: src/strings.ts:2596
msgid "and much more."
msgstr ""
-#: src/strings.ts:1419
+#: src/strings.ts:1443
msgid "and we will manually confirm your account."
msgstr ""
-#: src/strings.ts:2645
+#: src/strings.ts:2669
msgid "ANNOUNCEMENT"
msgstr ""
-#: src/strings.ts:2736
+#: src/strings.ts:2760
msgid "API key copied to clipboard"
msgstr ""
-#: src/strings.ts:2713
+#: src/strings.ts:2737
msgid "API key created successfully"
msgstr ""
-#: src/strings.ts:2741
+#: src/strings.ts:2765
msgid "API key revoked"
msgstr ""
-#: src/strings.ts:2705
+#: src/strings.ts:2729
msgid "API Keys"
msgstr ""
-#: src/strings.ts:2728
+#: src/strings.ts:2752
msgid "API Keys Limit Reached"
msgstr ""
@@ -969,465 +973,469 @@ msgstr ""
msgid "App data has been cleared. Kindly relaunch the app to login again."
msgstr ""
-#: src/strings.ts:1205
-#: src/strings.ts:1720
+#: src/strings.ts:1229
+#: src/strings.ts:1744
msgid "App lock"
msgstr ""
-#: src/strings.ts:2583
+#: src/strings.ts:2607
msgid "App lock & security"
msgstr ""
-#: src/strings.ts:783
-#: src/strings.ts:1231
+#: src/strings.ts:805
+#: src/strings.ts:1255
msgid "App lock disabled"
msgstr ""
-#: src/strings.ts:1211
+#: src/strings.ts:1235
msgid "App lock timeout"
msgstr ""
-#: src/strings.ts:1322
+#: src/strings.ts:1346
msgid "App version"
msgstr ""
-#: src/strings.ts:1801
+#: src/strings.ts:1825
msgid "App will reload in {sec} seconds"
msgstr ""
-#: src/strings.ts:1134
+#: src/strings.ts:1158
msgid "Appearance"
msgstr ""
-#: src/strings.ts:541
+#: src/strings.ts:563
msgid "Applied as dark theme"
msgstr ""
-#: src/strings.ts:542
+#: src/strings.ts:564
msgid "Applied as light theme"
msgstr ""
-#: src/strings.ts:460
+#: src/strings.ts:477
msgid "Apply changes"
msgstr ""
-#: src/strings.ts:2071
+#: src/strings.ts:2095
msgid "Applying changes"
msgstr ""
-#: src/strings.ts:1557
-#: src/strings.ts:2522
+#: src/strings.ts:1581
+#: src/strings.ts:2546
msgid "Archive"
msgstr ""
-#: src/strings.ts:1467
+#: src/strings.ts:1491
msgid "Are you scrolling a lot to find a specific note? Pin it to the top from Note properties."
msgstr ""
-#: src/strings.ts:1034
+#: src/strings.ts:1056
msgid "Are you sure you want to clear all logs from {key}?"
msgstr ""
-#: src/strings.ts:1346
+#: src/strings.ts:1370
msgid "Are you sure you want to clear trash?"
msgstr ""
-#: src/strings.ts:2807
+#: src/strings.ts:2831
msgid "Are you sure you want to delete all failed inbox items?"
msgstr ""
-#: src/strings.ts:2775
+#: src/strings.ts:2799
msgid "Are you sure you want to delete this attachment?"
msgstr ""
-#: src/strings.ts:1569
+#: src/strings.ts:1593
msgid "Are you sure you want to logout and clear all data stored on THIS DEVICE?"
msgstr ""
-#: src/strings.ts:777
+#: src/strings.ts:799
msgid "Are you sure you want to logout from this device? Any unsynced changes will be lost."
msgstr ""
-#: src/strings.ts:2818
+#: src/strings.ts:2842
msgid "Are you sure you want to open this file: {filePath}?"
msgstr ""
-#: src/strings.ts:1064
+#: src/strings.ts:1086
msgid "Are you sure you want to remove your name?"
msgstr ""
-#: src/strings.ts:1061
+#: src/strings.ts:1083
msgid "Are you sure you want to remove your profile picture?"
msgstr ""
-#: src/strings.ts:2740
+#: src/strings.ts:2764
msgid "Are you sure you want to revoke the key \"{name}\"? All inbox actions using this key will stop working immediately."
-msgstr ""
-
-#: src/strings.ts:1345
-msgid "Are you sure?"
-msgstr ""
-
-#: src/strings.ts:1152
-msgid "Ask every time"
-msgstr ""
-
-#: src/strings.ts:2060
-msgid "Assign color"
-msgstr ""
-
-#: src/strings.ts:950
-msgid "Assign to..."
-msgstr ""
-
-#: src/strings.ts:436
-msgid "Atleast 8 characters required"
-msgstr ""
-
-#: src/strings.ts:2384
-msgid "Attach image from URL"
-msgstr ""
-
-#: src/strings.ts:924
-msgid "Attached files"
-msgstr ""
-
-#: src/strings.ts:2809
-msgid "Attaching files"
-msgstr ""
-
-#: src/strings.ts:289
-msgid "attachment"
-msgstr ""
-
-#: src/strings.ts:299
-#: src/strings.ts:2381
-msgid "Attachment"
-msgstr ""
-
-#: src/strings.ts:2776
-msgid "Attachment deleted"
-msgstr ""
-
-#: src/strings.ts:2485
-msgid "Attachment manager"
-msgstr ""
-
-#: src/strings.ts:1962
-msgid "Attachment preview failed"
-msgstr ""
-
-#: src/strings.ts:2435
-msgid "Attachment recheck cancelled"
-msgstr ""
-
-#: src/strings.ts:2352
-msgid "Attachment settings"
-msgstr ""
-
-#: src/strings.ts:309
-msgid "attachments"
-msgstr ""
-
-#: src/strings.ts:319
-#: src/strings.ts:923
-msgid "Attachments"
-msgstr ""
-
-#: src/strings.ts:1911
-msgid "Attachments cache cleared!"
-msgstr ""
-
-#: src/strings.ts:2437
-msgid "Attachments recheck complete"
-msgstr ""
-
-#: src/strings.ts:762
-msgid "Audios"
-msgstr ""
-
-#: src/strings.ts:1653
-msgid "Auth server"
-msgstr ""
-
-#: src/strings.ts:2734
-msgid "Authenticate"
-msgstr ""
-
-#: src/strings.ts:2731
-msgid "Authenticate to view API key"
-msgstr ""
-
-#: src/strings.ts:1822
-msgid "Authenticated as {email}"
-msgstr ""
-
-#: src/strings.ts:1925
-msgid "Authenticating user"
-msgstr ""
-
-#: src/strings.ts:2171
-msgid "Authentication"
-msgstr ""
-
-#: src/strings.ts:1757
-msgid "authentication app"
-msgstr ""
-
-#: src/strings.ts:1373
-msgid "Authentication cancelled by user"
-msgstr ""
-
-#: src/strings.ts:1374
-msgid "Authentication failed"
-msgstr ""
-
-#: src/strings.ts:2134
-msgid "Auto"
-msgstr ""
-
-#: src/strings.ts:1688
-msgid "Auto save: off"
-msgstr ""
-
-#: src/strings.ts:2148
-msgid "Auto start on system startup"
-msgstr ""
-
-#: src/strings.ts:1106
-msgid "Auto sync"
-msgstr ""
-
-#: src/strings.ts:2791
-msgid "Auto-generate keys"
-msgstr ""
-
-#: src/strings.ts:1240
-#: src/strings.ts:1716
-msgid "Automatic backups"
-msgstr ""
-
-#: src/strings.ts:1387
-msgid "Automatic backups are off"
-msgstr ""
-
-#: src/strings.ts:2032
-msgid "Automatic backups disabled"
-msgstr ""
-
-#: src/strings.ts:1243
-msgid "Automatic backups with attachments"
msgstr "<<<<<<< HEAD"
-#: src/strings.ts:2939
-msgid "Automatic full backup"
-msgstr ""
-
-#: src/strings.ts:2144
-msgid "Automatic updates"
-msgstr ""
-
-#: src/strings.ts:1160
-msgid "Automatically clear trash after a certain period of time"
-msgstr ""
-
-#: src/strings.ts:2146
-msgid "Automatically download & install updates in the background without prompting first."
-msgstr ""
-
-#: src/strings.ts:1213
-msgid "Automatically lock the app after a certain period"
-msgstr ""
-
-#: src/strings.ts:1143
-msgid "Automatically switch between light and dark themes based on your system settings"
-msgstr ""
-
-#: src/strings.ts:2191
-msgid "Available on iOS"
-msgstr ""
-
-#: src/strings.ts:2192
-msgid "Available on iOS & Android"
-msgstr ""
-
-#: src/strings.ts:2761
-msgid "Back"
-msgstr ""
-
-#: src/strings.ts:2340
-msgid "Background color"
-msgstr ""
-
-#: src/strings.ts:1113
-msgid "Background sync (experimental)"
-msgstr ""
-
-#: src/strings.ts:2140
-msgid "Backup"
-msgstr ""
-
-#: src/strings.ts:2178
-msgid "Backup & export"
-msgstr ""
-
-#: src/strings.ts:1232
-msgid "Backup & restore"
-msgstr "<<<<<<< HEAD"
-
-#: src/strings.ts:2936
-msgid "Backup actions"
-msgstr ""
-
-#: src/strings.ts:1357
-msgid "Backup complete"
-msgstr ""
-
-#: src/strings.ts:1588
-msgid "Backup directory not selected"
-msgstr ""
-
-#: src/strings.ts:1255
-msgid "Backup encryption"
-msgstr ""
-
-#: src/strings.ts:1885
-msgid "Backup files have .nnbackup extension"
-msgstr ""
-
-#: src/strings.ts:898
-msgid "Backup is encrypted"
-msgstr ""
-
-#: src/strings.ts:1641
-msgid "Backup is encrypted, decrypting..."
-msgstr ""
-
-#: src/strings.ts:1248
-msgid "Backup location"
-msgstr ""
-
-#: src/strings.ts:1234
-msgid "Backup now"
-msgstr ""
-
-#: src/strings.ts:1235
-msgid "Backup now with attachments"
-msgstr ""
-
-#: src/strings.ts:905
-msgid "Backup restored"
-msgstr ""
-
-#: src/strings.ts:1946
-msgid "Backup saved at {path}"
+#: src/strings.ts:284
+msgid "Are you sure you want to unpublish this note? It will no longer be accessible via the public link."
msgstr ""
#: src/strings.ts:1369
-msgid "Backup successful"
+msgid "Are you sure?"
msgstr ""
-#: src/strings.ts:2141
-msgid "Backup with attachments"
+#: src/strings.ts:1176
+msgid "Ask every time"
msgstr ""
-#: src/strings.ts:495
-msgid "Backups"
+#: src/strings.ts:2084
+msgid "Assign color"
msgstr ""
-#: src/strings.ts:543
-msgid "Basic"
+#: src/strings.ts:972
+msgid "Assign to..."
msgstr ""
-#: src/strings.ts:1820
-msgid "Because where's the fun in nookin' alone?"
+#: src/strings.ts:453
+msgid "Atleast 8 characters required"
msgstr ""
-#: src/strings.ts:1146
-msgid "Behavior"
+#: src/strings.ts:2408
+msgid "Attach image from URL"
msgstr ""
-#: src/strings.ts:2173
-msgid "Behaviour"
+#: src/strings.ts:946
+msgid "Attached files"
+msgstr ""
+
+#: src/strings.ts:2833
+msgid "Attaching files"
+msgstr ""
+
+#: src/strings.ts:303
+msgid "attachment"
+msgstr ""
+
+#: src/strings.ts:313
+#: src/strings.ts:2405
+msgid "Attachment"
+msgstr ""
+
+#: src/strings.ts:2800
+msgid "Attachment deleted"
msgstr ""
#: src/strings.ts:2509
+msgid "Attachment manager"
+msgstr ""
+
+#: src/strings.ts:1986
+msgid "Attachment preview failed"
+msgstr ""
+
+#: src/strings.ts:2459
+msgid "Attachment recheck cancelled"
+msgstr ""
+
+#: src/strings.ts:2376
+msgid "Attachment settings"
+msgstr ""
+
+#: src/strings.ts:323
+msgid "attachments"
+msgstr ""
+
+#: src/strings.ts:333
+#: src/strings.ts:945
+msgid "Attachments"
+msgstr ""
+
+#: src/strings.ts:1935
+msgid "Attachments cache cleared!"
+msgstr ""
+
+#: src/strings.ts:2461
+msgid "Attachments recheck complete"
+msgstr ""
+
+#: src/strings.ts:784
+msgid "Audios"
+msgstr ""
+
+#: src/strings.ts:1677
+msgid "Auth server"
+msgstr ""
+
+#: src/strings.ts:2758
+msgid "Authenticate"
+msgstr ""
+
+#: src/strings.ts:2755
+msgid "Authenticate to view API key"
+msgstr ""
+
+#: src/strings.ts:1846
+msgid "Authenticated as {email}"
+msgstr ""
+
+#: src/strings.ts:1949
+msgid "Authenticating user"
+msgstr ""
+
+#: src/strings.ts:2195
+msgid "Authentication"
+msgstr ""
+
+#: src/strings.ts:1781
+msgid "authentication app"
+msgstr ""
+
+#: src/strings.ts:1397
+msgid "Authentication cancelled by user"
+msgstr ""
+
+#: src/strings.ts:1398
+msgid "Authentication failed"
+msgstr ""
+
+#: src/strings.ts:2158
+msgid "Auto"
+msgstr ""
+
+#: src/strings.ts:1712
+msgid "Auto save: off"
+msgstr ""
+
+#: src/strings.ts:2172
+msgid "Auto start on system startup"
+msgstr ""
+
+#: src/strings.ts:1130
+msgid "Auto sync"
+msgstr ""
+
+#: src/strings.ts:2815
+msgid "Auto-generate keys"
+msgstr ""
+
+#: src/strings.ts:1264
+#: src/strings.ts:1740
+msgid "Automatic backups"
+msgstr ""
+
+#: src/strings.ts:1411
+msgid "Automatic backups are off"
+msgstr ""
+
+#: src/strings.ts:2056
+msgid "Automatic backups disabled"
+msgstr ""
+
+#: src/strings.ts:1267
+msgid "Automatic backups with attachments"
+msgstr ""
+
+#: src/strings.ts:2963
+msgid "Automatic full backup"
+msgstr ""
+
+#: src/strings.ts:2168
+msgid "Automatic updates"
+msgstr ""
+
+#: src/strings.ts:1184
+msgid "Automatically clear trash after a certain period of time"
+msgstr ""
+
+#: src/strings.ts:2170
+msgid "Automatically download & install updates in the background without prompting first."
+msgstr ""
+
+#: src/strings.ts:1237
+msgid "Automatically lock the app after a certain period"
+msgstr ""
+
+#: src/strings.ts:1167
+msgid "Automatically switch between light and dark themes based on your system settings"
+msgstr ""
+
+#: src/strings.ts:2215
+msgid "Available on iOS"
+msgstr ""
+
+#: src/strings.ts:2216
+msgid "Available on iOS & Android"
+msgstr ""
+
+#: src/strings.ts:2785
+msgid "Back"
+msgstr ""
+
+#: src/strings.ts:2364
+msgid "Background color"
+msgstr ""
+
+#: src/strings.ts:1137
+msgid "Background sync (experimental)"
+msgstr ""
+
+#: src/strings.ts:2164
+msgid "Backup"
+msgstr ""
+
+#: src/strings.ts:2202
+msgid "Backup & export"
+msgstr ""
+
+#: src/strings.ts:1256
+msgid "Backup & restore"
+msgstr ""
+
+#: src/strings.ts:2960
+msgid "Backup actions"
+msgstr ""
+
+#: src/strings.ts:1381
+msgid "Backup complete"
+msgstr ""
+
+#: src/strings.ts:1612
+msgid "Backup directory not selected"
+msgstr ""
+
+#: src/strings.ts:1279
+msgid "Backup encryption"
+msgstr ""
+
+#: src/strings.ts:1909
+msgid "Backup files have .nnbackup extension"
+msgstr ""
+
+#: src/strings.ts:920
+msgid "Backup is encrypted"
+msgstr ""
+
+#: src/strings.ts:1665
+msgid "Backup is encrypted, decrypting..."
+msgstr ""
+
+#: src/strings.ts:1272
+msgid "Backup location"
+msgstr ""
+
+#: src/strings.ts:1258
+msgid "Backup now"
+msgstr ""
+
+#: src/strings.ts:1259
+msgid "Backup now with attachments"
+msgstr ""
+
+#: src/strings.ts:927
+msgid "Backup restored"
+msgstr ""
+
+#: src/strings.ts:1970
+msgid "Backup saved at {path}"
+msgstr ""
+
+#: src/strings.ts:1393
+msgid "Backup successful"
+msgstr ""
+
+#: src/strings.ts:2165
+msgid "Backup with attachments"
+msgstr ""
+
+#: src/strings.ts:517
+msgid "Backups"
+msgstr ""
+
+#: src/strings.ts:565
+msgid "Basic"
+msgstr ""
+
+#: src/strings.ts:1844
+msgid "Because where's the fun in nookin' alone?"
+msgstr ""
+
+#: src/strings.ts:1170
+msgid "Behavior"
+msgstr ""
+
+#: src/strings.ts:2197
+msgid "Behaviour"
+msgstr ""
+
+#: src/strings.ts:2533
msgid "Believer plan"
msgstr ""
-#: src/strings.ts:2629
+#: src/strings.ts:2653
msgid "Best value"
msgstr ""
-#: src/strings.ts:2498
+#: src/strings.ts:2522
msgid "Beta"
msgstr ""
-#: src/strings.ts:2298
+#: src/strings.ts:2322
msgid "Bi-directional note link"
-msgstr "<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2863
+#: src/strings.ts:2887
msgid "Billed annually"
msgstr ""
-#: src/strings.ts:2602
+#: src/strings.ts:2626
msgid "billed annually at {price}"
-msgstr "<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2864
+#: src/strings.ts:2888
msgid "Billed monthly"
msgstr ""
-#: src/strings.ts:2603
+#: src/strings.ts:2627
msgid "billed monthly at {price}"
msgstr ""
-#: src/strings.ts:2239
+#: src/strings.ts:2263
msgid "Billing history"
msgstr ""
-#: src/strings.ts:1199
+#: src/strings.ts:1223
msgid "Biometric unlocking"
msgstr ""
-#: src/strings.ts:814
+#: src/strings.ts:836
msgid "Biometric unlocking disabled"
msgstr ""
-#: src/strings.ts:813
+#: src/strings.ts:835
msgid "Biometric unlocking enabled"
msgstr ""
-#: src/strings.ts:1371
+#: src/strings.ts:1395
msgid "Biometrics authentication failed. Please try again."
msgstr ""
-#: src/strings.ts:1208
+#: src/strings.ts:1232
msgid "Biometrics not enrolled"
msgstr ""
-#: src/strings.ts:2294
+#: src/strings.ts:2318
msgid "Bold"
msgstr ""
-#: src/strings.ts:2447
+#: src/strings.ts:2471
msgid "Boost your productivity with Notebooks and organize your notes."
msgstr ""
-#: src/strings.ts:1836
+#: src/strings.ts:1860
msgid "Browse"
msgstr ""
-#: src/strings.ts:2311
+#: src/strings.ts:2335
msgid "Bullet list"
msgstr ""
-#: src/strings.ts:408
+#: src/strings.ts:425
msgid "By"
msgstr ""
-#: src/strings.ts:2624
+#: src/strings.ts:2648
msgid "By joining you agree to our"
msgstr ""
@@ -1435,68 +1443,68 @@ msgstr ""
msgid "By signing up, you agree to our "
msgstr ""
-#: src/strings.ts:2372
+#: src/strings.ts:2396
msgid "Callout"
msgstr ""
-#: src/strings.ts:2552
+#: src/strings.ts:2576
msgid "Can I cancel my free trial anytime?"
msgstr ""
-#: src/strings.ts:551
+#: src/strings.ts:573
msgid "Cancel"
msgstr ""
-#: src/strings.ts:2575
+#: src/strings.ts:2599
msgid "Cancel anytime"
msgstr ""
-#: src/strings.ts:2622
+#: src/strings.ts:2646
msgid "Cancel anytime, Subscription auto-renews."
msgstr ""
-#: src/strings.ts:2574
+#: src/strings.ts:2598
msgid "Cancel anytime."
msgstr ""
-#: src/strings.ts:519
+#: src/strings.ts:541
msgid "Cancel download"
msgstr ""
-#: src/strings.ts:556
+#: src/strings.ts:578
msgid "Cancel login"
msgstr ""
-#: src/strings.ts:1853
+#: src/strings.ts:1877
msgid "Cancel subscription"
msgstr ""
-#: src/strings.ts:520
+#: src/strings.ts:542
msgid "Cancel upload"
msgstr ""
-#: src/strings.ts:2730
+#: src/strings.ts:2754
msgid "Cannot create more than 10 api keys at a time. Please revoke some existing keys before creating new ones."
msgstr ""
-#: src/strings.ts:2339
+#: src/strings.ts:2363
msgid "Cell background color"
msgstr ""
-#: src/strings.ts:2341
+#: src/strings.ts:2365
msgid "Cell border color"
msgstr ""
-#: src/strings.ts:2343
-#: src/strings.ts:2344
+#: src/strings.ts:2367
+#: src/strings.ts:2368
msgid "Cell border width"
msgstr ""
-#: src/strings.ts:2325
+#: src/strings.ts:2349
msgid "Cell properties"
msgstr ""
-#: src/strings.ts:2342
+#: src/strings.ts:2366
msgid "Cell text color"
msgstr ""
@@ -1504,135 +1512,135 @@ msgstr ""
msgid "Change"
msgstr ""
-#: src/strings.ts:1077
+#: src/strings.ts:1101
msgid "Change 2FA fallback method"
msgstr ""
-#: src/strings.ts:680
+#: src/strings.ts:702
msgid "Change 2FA method"
msgstr ""
-#: src/strings.ts:1220
+#: src/strings.ts:1244
msgid "Change app lock password"
msgstr ""
-#: src/strings.ts:1219
+#: src/strings.ts:1243
msgid "Change app lock pin"
msgstr ""
-#: src/strings.ts:1254
+#: src/strings.ts:1278
msgid "Change backup location"
msgstr ""
-#: src/strings.ts:468
+#: src/strings.ts:490
msgid "Change email address"
msgstr ""
-#: src/strings.ts:1147
+#: src/strings.ts:1171
msgid "Change how the app behaves in different situations"
msgstr ""
-#: src/strings.ts:2390
+#: src/strings.ts:2414
msgid "Change language"
msgstr ""
-#: src/strings.ts:1275
+#: src/strings.ts:1299
msgid "Change notification sound"
msgstr ""
-#: src/strings.ts:437
+#: src/strings.ts:454
msgid "Change password"
msgstr ""
-#: src/strings.ts:2638
+#: src/strings.ts:2662
msgid "Change plan"
msgstr ""
-#: src/strings.ts:1845
+#: src/strings.ts:1869
msgid "Change profile picture"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2913
+#: src/strings.ts:2937
msgid "Change profile picture, full name and email"
msgstr ""
-#: src/strings.ts:2217
+#: src/strings.ts:2241
msgid "Change proxy"
msgstr ""
-#: src/strings.ts:2238
+#: src/strings.ts:2262
msgid "Change the payment method you used to purchase this subscription."
msgstr ""
-#: src/strings.ts:1277
+#: src/strings.ts:1301
msgid "Change the sound that plays when you receive a notification"
msgstr ""
-#: src/strings.ts:454
+#: src/strings.ts:471
msgid "Change vault password"
msgstr ""
-#: src/strings.ts:1071
+#: src/strings.ts:1095
msgid "Change your account password"
msgstr ""
-#: src/strings.ts:1073
+#: src/strings.ts:1097
msgid "Change your primary two-factor authentication method"
msgstr ""
-#: src/strings.ts:2752
+#: src/strings.ts:2776
msgid "Changing Inbox PGP keys will delete all your unsynced inbox items."
msgstr ""
-#: src/strings.ts:736
+#: src/strings.ts:758
msgid "Changing your password is irreversible process. Once your password is changed please make sure to save the new account recovery key."
msgstr ""
-#: src/strings.ts:2528
+#: src/strings.ts:2552
msgid "Characters"
msgstr ""
-#: src/strings.ts:1318
+#: src/strings.ts:1342
msgid "Check for new version of Notesnook"
msgstr ""
-#: src/strings.ts:1321
+#: src/strings.ts:1345
msgid "Check for new version of the app available on app launch"
msgstr ""
-#: src/strings.ts:1317
+#: src/strings.ts:1341
msgid "Check for updates"
msgstr ""
-#: src/strings.ts:1319
+#: src/strings.ts:1343
msgid "Check for updates automatically"
msgstr ""
-#: src/strings.ts:2190
+#: src/strings.ts:2214
msgid "Check roadmap"
msgstr ""
-#: src/strings.ts:686
+#: src/strings.ts:708
msgid "Check your spam folder if you haven't received an email yet."
msgstr ""
-#: src/strings.ts:2439
+#: src/strings.ts:2463
msgid "Checking all attachments"
msgstr ""
-#: src/strings.ts:377
+#: src/strings.ts:394
msgid "Checking for new version"
msgstr ""
-#: src/strings.ts:1732
+#: src/strings.ts:1756
msgid "Checking for updates"
msgstr ""
-#: src/strings.ts:2438
+#: src/strings.ts:2462
msgid "Checking note attachments"
msgstr ""
-#: src/strings.ts:2313
+#: src/strings.ts:2337
msgid "Checklist"
msgstr ""
@@ -1640,119 +1648,119 @@ msgstr ""
msgid "Choose 2FA Method"
msgstr ""
-#: src/strings.ts:2367
+#: src/strings.ts:2391
msgid "Choose a block to insert"
msgstr ""
-#: src/strings.ts:1824
+#: src/strings.ts:1848
msgid "Choose a recovery method"
msgstr ""
-#: src/strings.ts:2139
+#: src/strings.ts:2163
msgid "Choose backup format"
msgstr ""
-#: src/strings.ts:2403
+#: src/strings.ts:2427
msgid "Choose custom color"
msgstr ""
-#: src/strings.ts:1140
+#: src/strings.ts:1164
msgid "Choose from pre-built themes or create your own"
msgstr ""
-#: src/strings.ts:1155
+#: src/strings.ts:1179
msgid "Choose how dates are displayed in the app"
msgstr ""
-#: src/strings.ts:2673
+#: src/strings.ts:2697
msgid "Choose how day is displayed in the app"
msgstr ""
-#: src/strings.ts:1180
+#: src/strings.ts:1204
msgid "Choose how the new note titles are formatted"
msgstr ""
-#: src/strings.ts:1157
+#: src/strings.ts:1181
msgid "Choose how time is displayed in the app"
msgstr ""
-#: src/strings.ts:405
+#: src/strings.ts:422
msgid "Choose how you want to secure your notes locally."
msgstr ""
-#: src/strings.ts:2790
+#: src/strings.ts:2814
msgid "Choose how you want to set up your Inbox PGP keys:"
msgstr ""
-#: src/strings.ts:2678
+#: src/strings.ts:2702
msgid "Choose what day to display as the first day of the week"
msgstr ""
-#: src/strings.ts:1250
+#: src/strings.ts:1274
msgid "Choose where to save your backups"
msgstr ""
-#: src/strings.ts:2099
+#: src/strings.ts:2123
msgid "Choose your style"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2947
+#: src/strings.ts:2971
msgid "Choosing storage location..."
msgstr ""
-#: src/strings.ts:1644
+#: src/strings.ts:1668
msgid "cleaningUp"
msgstr ""
-#: src/strings.ts:1032
+#: src/strings.ts:1054
msgid "Clear"
msgstr ""
-#: src/strings.ts:1897
+#: src/strings.ts:1921
msgid "Clear all cached attachments. Size: {cacheSize}"
msgstr ""
-#: src/strings.ts:2307
+#: src/strings.ts:2331
msgid "Clear all formatting"
msgstr ""
-#: src/strings.ts:1898
+#: src/strings.ts:1922
msgid "Clear attachments cache?"
msgstr ""
-#: src/strings.ts:1895
+#: src/strings.ts:1919
msgid "Clear cache"
msgstr ""
-#: src/strings.ts:2401
+#: src/strings.ts:2425
msgid "Clear completed tasks"
msgstr ""
-#: src/strings.ts:1832
+#: src/strings.ts:1856
msgid "Clear data & reset account"
msgstr ""
-#: src/strings.ts:1161
+#: src/strings.ts:1185
msgid "Clear default notebook"
msgstr "<<<<<<< HEAD"
-#: src/strings.ts:2849
+#: src/strings.ts:2873
msgid "Clear history"
msgstr ""
-#: src/strings.ts:1031
+#: src/strings.ts:1053
msgid "Clear logs"
msgstr ""
-#: src/strings.ts:2233
+#: src/strings.ts:2257
msgid "clear sessions"
msgstr ""
-#: src/strings.ts:1344
+#: src/strings.ts:1368
msgid "Clear trash"
msgstr ""
-#: src/strings.ts:1158
+#: src/strings.ts:1182
msgid "Clear trash interval"
msgstr ""
@@ -1760,7 +1768,7 @@ msgstr ""
msgid "Clear vault"
msgstr ""
-#: src/strings.ts:1900
+#: src/strings.ts:1924
msgid ""
"Clearing attachments cache will perform the following actions:\n"
"\n"
@@ -1775,15 +1783,15 @@ msgid ""
"**Only use this for troubleshooting purposes. If you are having persistent issues, it is recommended that you reach out to us via support@streetwriters.co so we can help you resolve it permanently.**"
msgstr ""
-#: src/strings.ts:2266
+#: src/strings.ts:2290
msgid "Clearing trash will permanently delete all the items in your trash. This action is IRREVERSIBLE."
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2918
+#: src/strings.ts:2942
msgid "Click here"
msgstr ""
-#: src/strings.ts:2660
+#: src/strings.ts:2684
msgid "Click here to directly claim the promotion."
msgstr ""
@@ -1791,132 +1799,132 @@ msgstr ""
msgid "Click to deselect"
msgstr ""
-#: src/strings.ts:1894
+#: src/strings.ts:1918
msgid "Click to preview"
msgstr ""
-#: src/strings.ts:1799
+#: src/strings.ts:1823
msgid "Click to remove"
msgstr ""
-#: src/strings.ts:2430
+#: src/strings.ts:2454
msgid "Click to reset {title}"
msgstr ""
-#: src/strings.ts:2668
+#: src/strings.ts:2692
msgid "Click to save"
msgstr ""
-#: src/strings.ts:2664
+#: src/strings.ts:2688
msgid "Click to update"
msgstr ""
-#: src/strings.ts:1403
+#: src/strings.ts:1427
msgid "Close"
msgstr ""
-#: src/strings.ts:2810
+#: src/strings.ts:2834
msgid "Close ({seconds})"
msgstr ""
-#: src/strings.ts:2046
+#: src/strings.ts:2070
msgid "Close all"
msgstr ""
-#: src/strings.ts:2488
+#: src/strings.ts:2512
msgid "Close all tabs"
msgstr ""
-#: src/strings.ts:2487
+#: src/strings.ts:2511
msgid "Close current tab"
msgstr ""
-#: src/strings.ts:2043
+#: src/strings.ts:2067
msgid "Close others"
msgstr ""
-#: src/strings.ts:2157
+#: src/strings.ts:2181
msgid "Close to system tray"
msgstr ""
-#: src/strings.ts:2045
+#: src/strings.ts:2069
msgid "Close to the left"
msgstr ""
-#: src/strings.ts:2044
+#: src/strings.ts:2068
msgid "Close to the right"
msgstr ""
-#: src/strings.ts:2581
+#: src/strings.ts:2605
msgid "cloud storage"
msgstr ""
-#: src/strings.ts:2566
+#: src/strings.ts:2590
msgid "cloud storage space for storing images and files."
msgstr ""
-#: src/strings.ts:2305
+#: src/strings.ts:2329
msgid "Code"
msgstr ""
-#: src/strings.ts:2369
+#: src/strings.ts:2393
msgid "Code block"
msgstr ""
-#: src/strings.ts:2306
+#: src/strings.ts:2330
msgid "Code remove"
msgstr ""
-#: src/strings.ts:434
+#: src/strings.ts:451
msgid "COLLAPSED"
msgstr ""
-#: src/strings.ts:288
+#: src/strings.ts:302
msgid "color"
msgstr ""
-#: src/strings.ts:298
-#: src/strings.ts:1871
+#: src/strings.ts:312
+#: src/strings.ts:1895
msgid "Color"
msgstr ""
-#: src/strings.ts:789
+#: src/strings.ts:811
msgid "Color #{color} already exists"
msgstr ""
-#: src/strings.ts:2132
+#: src/strings.ts:2156
msgid "Color scheme"
msgstr ""
-#: src/strings.ts:1513
+#: src/strings.ts:1537
msgid "Color title"
msgstr ""
-#: src/strings.ts:2842
+#: src/strings.ts:2866
msgid "Colornote password for {filename}"
msgstr ""
-#: src/strings.ts:308
+#: src/strings.ts:322
msgid "colors"
msgstr ""
-#: src/strings.ts:318
+#: src/strings.ts:332
msgid "Colors"
msgstr ""
-#: src/strings.ts:2323
+#: src/strings.ts:2347
msgid "Column properties"
msgstr ""
-#: src/strings.ts:2479
+#: src/strings.ts:2503
msgid "Command palette"
msgstr ""
-#: src/strings.ts:1293
+#: src/strings.ts:1317
msgid "Community"
msgstr ""
-#: src/strings.ts:2596
+#: src/strings.ts:2620
msgid "Compare Plans"
msgstr ""
@@ -1928,7 +1936,7 @@ msgstr ""
msgid "Compress"
msgstr ""
-#: src/strings.ts:1151
+#: src/strings.ts:1175
msgid "Compress images before uploading"
msgstr ""
@@ -1936,172 +1944,172 @@ msgstr ""
msgid "Compressed images are uploaded in Full HD resolution and usually are good enough for most use cases."
msgstr ""
-#: src/strings.ts:2811
+#: src/strings.ts:2835
msgid "Compressing"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2949
+#: src/strings.ts:2973
msgid "Compressing logs into an archive..."
msgstr ""
-#: src/strings.ts:2815
+#: src/strings.ts:2839
msgid "Compression failed"
msgstr ""
-#: src/strings.ts:2289
+#: src/strings.ts:2313
msgid "Configure"
msgstr ""
-#: src/strings.ts:2444
+#: src/strings.ts:2468
msgid "Configure server URLs for Notesnook"
msgstr ""
-#: src/strings.ts:684
+#: src/strings.ts:706
msgid "Confirm email"
msgstr ""
-#: src/strings.ts:919
+#: src/strings.ts:941
msgid "Confirm email to publish note"
msgstr ""
-#: src/strings.ts:1512
+#: src/strings.ts:1536
msgid "Confirm new password"
msgstr ""
-#: src/strings.ts:1507
+#: src/strings.ts:1531
msgid "Confirm password"
msgstr ""
-#: src/strings.ts:2770
+#: src/strings.ts:2794
msgid "Confirm password required"
msgstr ""
-#: src/strings.ts:1511
+#: src/strings.ts:1535
msgid "Confirm pin"
msgstr ""
-#: src/strings.ts:1386
+#: src/strings.ts:1410
msgid "Confirm your email to sync notes"
msgstr ""
-#: src/strings.ts:2692
+#: src/strings.ts:2716
msgid "Confirmation email sent"
msgstr ""
-#: src/strings.ts:2117
+#: src/strings.ts:2141
msgid "Congratulations!"
msgstr ""
-#: src/strings.ts:1663
+#: src/strings.ts:1687
msgid "Connected to all servers sucessfully."
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2948
+#: src/strings.ts:2972
msgid "Consolidating network sync logs..."
msgstr ""
-#: src/strings.ts:1698
+#: src/strings.ts:1722
msgid "Contact support"
msgstr ""
-#: src/strings.ts:1284
+#: src/strings.ts:1308
msgid "Contact us directly via support@streetwriters.co for any help or support"
msgstr ""
-#: src/strings.ts:545
+#: src/strings.ts:567
msgid "Continue"
msgstr ""
-#: src/strings.ts:1186
+#: src/strings.ts:1210
msgid "Contribute towards a better Notesnook. All tracking information is anonymous."
msgstr ""
-#: src/strings.ts:1270
+#: src/strings.ts:1294
msgid "Controls whether this device should receive reminder notifications."
msgstr ""
-#: src/strings.ts:2017
+#: src/strings.ts:2041
msgid "Copied"
msgstr ""
-#: src/strings.ts:677
+#: src/strings.ts:699
msgid "Copy"
msgstr ""
#. placeholder {0}: format ? " " + format : ""
-#: src/strings.ts:2063
+#: src/strings.ts:2087
msgid "Copy as{0}"
msgstr ""
-#: src/strings.ts:681
+#: src/strings.ts:703
msgid "Copy codes"
msgstr ""
-#: src/strings.ts:928
+#: src/strings.ts:950
msgid "Copy ID"
msgstr ""
-#: src/strings.ts:2285
+#: src/strings.ts:2309
msgid "Copy image"
msgstr ""
-#: src/strings.ts:926
+#: src/strings.ts:948
msgid "Copy link"
msgstr ""
-#: src/strings.ts:2284
+#: src/strings.ts:2308
msgid "Copy link text"
msgstr ""
-#: src/strings.ts:2834
+#: src/strings.ts:2858
msgid "Copy logs"
msgstr ""
-#: src/strings.ts:457
+#: src/strings.ts:474
msgid "Copy note"
msgstr ""
-#: src/strings.ts:593
+#: src/strings.ts:615
msgid "Copy to clipboard"
msgstr ""
-#: src/strings.ts:2714
+#: src/strings.ts:2738
msgid "Copy your API key and store it somewhere safe."
msgstr ""
-#: src/strings.ts:1646
+#: src/strings.ts:1670
msgid "Copying backup files to cache"
msgstr ""
-#: src/strings.ts:1190
+#: src/strings.ts:1214
msgid "CORS bypass"
msgstr ""
-#: src/strings.ts:2013
+#: src/strings.ts:2037
msgid "Could not activate trial. Please try again later."
msgstr ""
-#: src/strings.ts:2031
+#: src/strings.ts:2055
msgid "Could not clear trash."
msgstr ""
-#: src/strings.ts:1666
+#: src/strings.ts:1690
msgid "Could not connect to {server}."
msgstr ""
-#: src/strings.ts:1978
+#: src/strings.ts:2002
msgid "Could not convert note to {format}."
msgstr ""
-#: src/strings.ts:771
+#: src/strings.ts:793
msgid "Could not create backup"
msgstr ""
-#: src/strings.ts:561
+#: src/strings.ts:583
msgid "Could not unlock"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2954
+#: src/strings.ts:2978
msgid "Couldn't download logs"
msgstr ""
@@ -2109,327 +2117,327 @@ msgstr ""
msgid "Create"
msgstr ""
-#: src/strings.ts:732
+#: src/strings.ts:754
msgid "Create a group"
msgstr ""
-#: src/strings.ts:956
+#: src/strings.ts:978
msgid "Create a new note"
msgstr ""
-#: src/strings.ts:969
+#: src/strings.ts:991
msgid "Create a note first"
msgstr ""
-#: src/strings.ts:672
+#: src/strings.ts:694
msgid "Create a shortcut"
msgstr ""
-#: src/strings.ts:575
+#: src/strings.ts:597
msgid "Create a tag to group related notes together."
msgstr ""
-#: src/strings.ts:1876
+#: src/strings.ts:1900
msgid "Create account"
msgstr ""
-#: src/strings.ts:2707
+#: src/strings.ts:2731
msgid "Create API Key"
msgstr ""
-#: src/strings.ts:583
+#: src/strings.ts:605
msgid "Create link"
msgstr ""
-#: src/strings.ts:2726
+#: src/strings.ts:2750
msgid "Create new key"
msgstr ""
-#: src/strings.ts:1538
+#: src/strings.ts:1562
msgid "Create notebook"
msgstr ""
-#: src/strings.ts:1495
+#: src/strings.ts:1519
msgid "Create shortcut of this notebook in side menu"
-msgstr ""
+msgstr "<<<<<<< HEAD"
-#: src/strings.ts:2959
+#: src/strings.ts:2983
msgid "Create sub-notebook"
msgstr ""
-#: src/strings.ts:1409
+#: src/strings.ts:1433
msgid "Create unlimited notebooks with Notesnook Pro"
msgstr ""
-#: src/strings.ts:1408
+#: src/strings.ts:1432
msgid "Create unlimited tags with Notesnook Pro"
msgstr ""
-#: src/strings.ts:1410
+#: src/strings.ts:1434
msgid "Create unlimited vaults with Notesnook Pro"
msgstr ""
-#: src/strings.ts:450
+#: src/strings.ts:467
msgid "Create vault"
msgstr ""
-#: src/strings.ts:524
+#: src/strings.ts:546
msgid "Create your account"
msgstr ""
-#: src/strings.ts:2708
+#: src/strings.ts:2732
msgid "Create your API key"
msgstr ""
-#: src/strings.ts:2725
+#: src/strings.ts:2749
msgid "Create your first api key to get started."
-msgstr "<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2881
+#: src/strings.ts:2905
msgid "Create your first tag to start organizing your workspace."
msgstr ""
-#: src/strings.ts:2746
+#: src/strings.ts:2770
msgid "Created"
msgstr ""
-#: src/strings.ts:2267
+#: src/strings.ts:2291
msgid "Created at"
msgstr ""
-#: src/strings.ts:2745
+#: src/strings.ts:2769
msgid "Created on"
msgstr ""
#. placeholder {0}: type === "full" ? " full" : ""
-#: src/strings.ts:1366
+#: src/strings.ts:1390
msgid "Creating a{0} backup"
msgstr ""
-#: src/strings.ts:2717
+#: src/strings.ts:2741
msgid "Creating..."
msgstr ""
-#: src/strings.ts:2826
+#: src/strings.ts:2850
msgid "Creation date cannot be after last edited date"
msgstr ""
-#: src/strings.ts:2076
+#: src/strings.ts:2100
msgid "Credentials"
msgstr ""
-#: src/strings.ts:2102
+#: src/strings.ts:2126
msgid "Cross platform & 100% encrypted"
msgstr ""
-#: src/strings.ts:743
+#: src/strings.ts:765
msgid "Curate the toolbar that fits your needs and matches your personality."
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2930
+#: src/strings.ts:2954
msgid "Current date"
msgstr ""
-#: src/strings.ts:2932
+#: src/strings.ts:2956
msgid "Current day"
msgstr ""
-#: src/strings.ts:1863
+#: src/strings.ts:1887
msgid "Current note"
msgstr ""
-#: src/strings.ts:1501
-#: src/strings.ts:1509
+#: src/strings.ts:1525
+#: src/strings.ts:1533
msgid "Current password"
msgstr ""
-#: src/strings.ts:2779
+#: src/strings.ts:2803
msgid "Current password required"
msgstr ""
-#: src/strings.ts:1251
+#: src/strings.ts:1275
msgid "Current path: {path}"
msgstr ""
-#: src/strings.ts:1508
+#: src/strings.ts:1532
msgid "Current pin"
msgstr ""
-#: src/strings.ts:1800
+#: src/strings.ts:1824
msgid "Current Plan"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2931
+#: src/strings.ts:2955
msgid "Current time"
msgstr ""
-#: src/strings.ts:2037
+#: src/strings.ts:2061
msgid "Custom"
msgstr ""
-#: src/strings.ts:2168
+#: src/strings.ts:2192
msgid "Custom dictionary words"
msgstr ""
-#: src/strings.ts:1133
+#: src/strings.ts:1157
msgid "Customization"
msgstr ""
-#: src/strings.ts:1138
+#: src/strings.ts:1162
msgid "Customize the appearance of the app with custom themes"
msgstr ""
-#: src/strings.ts:1165
+#: src/strings.ts:1189
msgid "Customize the note editor"
msgstr ""
-#: src/strings.ts:1167
+#: src/strings.ts:1191
msgid "Customize the toolbar in the note editor"
msgstr ""
-#: src/strings.ts:1166
+#: src/strings.ts:1190
msgid "Customize toolbar"
msgstr ""
-#: src/strings.ts:2283
+#: src/strings.ts:2307
msgid "Cut"
msgstr ""
#: src/strings.ts:167
-#: src/strings.ts:1595
+#: src/strings.ts:1619
msgid "Daily"
msgstr ""
-#: src/strings.ts:726
+#: src/strings.ts:748
msgid "Dark"
msgstr ""
-#: src/strings.ts:1144
+#: src/strings.ts:1168
msgid "Dark mode"
msgstr ""
-#: src/strings.ts:2133
+#: src/strings.ts:2157
msgid "Dark or light, we won't judge."
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2914
+#: src/strings.ts:2938
msgid "Data and storage"
msgstr ""
-#: src/strings.ts:1574
+#: src/strings.ts:1598
msgid "Database setup failed, could not get database key"
msgstr ""
-#: src/strings.ts:1866
+#: src/strings.ts:1890
msgid "Date"
msgstr ""
-#: src/strings.ts:2142
+#: src/strings.ts:2166
msgid "Date & time"
msgstr ""
-#: src/strings.ts:655
+#: src/strings.ts:677
msgid "Date created"
msgstr ""
-#: src/strings.ts:658
+#: src/strings.ts:680
msgid "Date deleted"
msgstr ""
-#: src/strings.ts:654
+#: src/strings.ts:676
msgid "Date edited"
msgstr ""
-#: src/strings.ts:1154
+#: src/strings.ts:1178
msgid "Date format"
msgstr ""
-#: src/strings.ts:653
+#: src/strings.ts:675
msgid "Date modified"
msgstr ""
-#: src/strings.ts:2798
+#: src/strings.ts:2822
msgid "Date synced"
msgstr ""
-#: src/strings.ts:2069
+#: src/strings.ts:2093
msgid "Date uploaded"
msgstr ""
-#: src/strings.ts:1868
+#: src/strings.ts:1892
msgid "Day"
msgstr ""
-#: src/strings.ts:2672
+#: src/strings.ts:2696
msgid "Day format"
msgstr ""
-#: src/strings.ts:2065
+#: src/strings.ts:2089
msgid "Deactivate"
msgstr ""
-#: src/strings.ts:1029
+#: src/strings.ts:1051
msgid "Debug log copied!"
msgstr ""
-#: src/strings.ts:1291
+#: src/strings.ts:1315
msgid "Debug logs"
msgstr ""
-#: src/strings.ts:1030
+#: src/strings.ts:1052
msgid "Debug logs downloaded"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2951
+#: src/strings.ts:2975
msgid "Debug logs downloaded!"
msgstr ""
-#: src/strings.ts:1288
+#: src/strings.ts:1312
msgid "Debugging"
msgstr ""
-#: src/strings.ts:2432
+#: src/strings.ts:2456
msgid "Decrease {title}"
msgstr ""
-#: src/strings.ts:662
-#: src/strings.ts:2035
+#: src/strings.ts:684
+#: src/strings.ts:2059
msgid "Default"
msgstr ""
-#: src/strings.ts:1177
+#: src/strings.ts:1201
msgid "Default font family"
msgstr ""
-#: src/strings.ts:1178
+#: src/strings.ts:1202
msgid "Default font family in editor"
msgstr ""
-#: src/strings.ts:1175
+#: src/strings.ts:1199
msgid "Default font size"
msgstr ""
-#: src/strings.ts:1176
+#: src/strings.ts:1200
msgid "Default font size in editor"
msgstr ""
-#: src/strings.ts:1163
+#: src/strings.ts:1187
msgid "Default notebook cleared"
msgstr ""
-#: src/strings.ts:1149
+#: src/strings.ts:1173
msgid "Default screen to open on app launch"
msgstr ""
-#: src/strings.ts:2519
+#: src/strings.ts:2543
msgid "Default sidebar tab"
msgstr ""
-#: src/strings.ts:1271
+#: src/strings.ts:1295
msgid "Default snooze time"
msgstr ""
-#: src/strings.ts:1323
+#: src/strings.ts:1347
msgid "Default sound"
msgstr ""
@@ -2437,59 +2445,63 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: src/strings.ts:1094
+#: src/strings.ts:1118
msgid "Delete account"
msgstr ""
-#: src/strings.ts:2805
+#: src/strings.ts:271
+msgid "Delete after viewing"
+msgstr ""
+
+#: src/strings.ts:2829
msgid "Delete all"
msgstr "<<<<<<< HEAD"
-#: src/strings.ts:2851
+#: src/strings.ts:2875
msgid "Delete all version history for this note?"
msgstr ""
-#: src/strings.ts:2773
+#: src/strings.ts:2797
msgid "Delete attachment"
msgstr ""
-#: src/strings.ts:1341
+#: src/strings.ts:1365
msgid "Delete collapsed section"
msgstr ""
-#: src/strings.ts:2330
+#: src/strings.ts:2354
msgid "Delete column"
msgstr ""
-#: src/strings.ts:2689
+#: src/strings.ts:2713
msgid "Delete data"
msgstr ""
-#: src/strings.ts:1336
+#: src/strings.ts:1360
msgid "Delete group"
msgstr "<<<<<<< HEAD"
-#: src/strings.ts:2845
+#: src/strings.ts:2869
msgid "Delete item"
msgstr ""
-#: src/strings.ts:2404
+#: src/strings.ts:2428
msgid "Delete mode"
msgstr ""
-#: src/strings.ts:564
+#: src/strings.ts:586
msgid "Delete notes in this vault permanently"
msgstr ""
-#: src/strings.ts:571
+#: src/strings.ts:593
msgid "Delete permanently"
msgstr ""
-#: src/strings.ts:2337
+#: src/strings.ts:2361
msgid "Delete row"
msgstr ""
-#: src/strings.ts:2338
+#: src/strings.ts:2362
msgid "Delete table"
msgstr ""
@@ -2497,7 +2509,7 @@ msgstr ""
msgid "Delete vault"
msgstr ""
-#: src/strings.ts:1198
+#: src/strings.ts:1222
msgid "Delete vault (and optionally remove all notes)."
msgstr ""
@@ -2505,39 +2517,39 @@ msgstr ""
msgid "Deleted on {date}"
msgstr ""
-#: src/strings.ts:1955
+#: src/strings.ts:1979
msgid "Deleting"
msgstr ""
-#: src/strings.ts:1865
+#: src/strings.ts:1889
msgid "Description"
msgstr ""
-#: src/strings.ts:2143
+#: src/strings.ts:2167
msgid "Desktop app"
msgstr ""
-#: src/strings.ts:2147
+#: src/strings.ts:2171
msgid "Desktop integration"
msgstr ""
-#: src/strings.ts:2797
+#: src/strings.ts:2821
msgid "Details"
msgstr ""
-#: src/strings.ts:887
+#: src/strings.ts:909
msgid "Did you save recovery key?"
msgstr ""
-#: src/strings.ts:1398
+#: src/strings.ts:1422
msgid "Disable"
msgstr ""
-#: src/strings.ts:2038
+#: src/strings.ts:2062
msgid "Disable editor margins"
msgstr ""
-#: src/strings.ts:2701
+#: src/strings.ts:2725
msgid "Disable Inbox API"
msgstr ""
@@ -2545,11 +2557,11 @@ msgstr ""
msgid "Disabled"
msgstr ""
-#: src/strings.ts:2703
+#: src/strings.ts:2727
msgid "Disabling will delete all your unsynced inbox items. Additionally, disabling will revoke all existing API keys, they will no longer work. Are you sure?"
msgstr ""
-#: src/strings.ts:567
+#: src/strings.ts:589
msgid "Discard"
msgstr ""
@@ -2557,11 +2569,11 @@ msgstr ""
msgid "Discord."
msgstr ""
-#: src/strings.ts:1624
+#: src/strings.ts:1648
msgid "Dismiss"
msgstr ""
-#: src/strings.ts:1677
+#: src/strings.ts:1701
msgid "Dismiss announcement"
msgstr ""
@@ -2569,27 +2581,27 @@ msgstr ""
msgid "Disputed"
msgstr ""
-#: src/strings.ts:272
+#: src/strings.ts:286
msgid "Do you enjoy using Notesnook?"
msgstr ""
-#: src/strings.ts:1285
+#: src/strings.ts:1309
msgid "Documentation"
msgstr ""
-#: src/strings.ts:759
+#: src/strings.ts:781
msgid "Documents"
msgstr ""
-#: src/strings.ts:1002
+#: src/strings.ts:1024
msgid "Don't have access to your authenticator app?"
msgstr ""
-#: src/strings.ts:1009
+#: src/strings.ts:1031
msgid "Don't have access to your email address?"
msgstr ""
-#: src/strings.ts:1018
+#: src/strings.ts:1040
msgid "Don't have access to your phone number?"
msgstr ""
@@ -2597,23 +2609,23 @@ msgstr ""
msgid "Don't have an account?"
msgstr ""
-#: src/strings.ts:1859
+#: src/strings.ts:1883
msgid "Don't have backup file?"
msgstr ""
-#: src/strings.ts:1858
+#: src/strings.ts:1882
msgid "Don't have your account recovery key?"
msgstr ""
-#: src/strings.ts:1021
+#: src/strings.ts:1043
msgid "Don't have your recovery codes?"
msgstr ""
-#: src/strings.ts:1837
+#: src/strings.ts:1861
msgid "Don't show again"
msgstr ""
-#: src/strings.ts:1838
+#: src/strings.ts:1862
msgid "Don't show again on this device?"
msgstr ""
@@ -2621,68 +2633,68 @@ msgstr ""
msgid "Done"
msgstr ""
-#: src/strings.ts:1171
+#: src/strings.ts:1195
msgid "Double spaced lines"
msgstr ""
-#: src/strings.ts:511
+#: src/strings.ts:533
msgid "Download"
msgstr ""
-#: src/strings.ts:1843
+#: src/strings.ts:1867
msgid "Download all attachments"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2945
+#: src/strings.ts:2969
msgid "Download and share debug logs from the app"
msgstr ""
-#: src/strings.ts:2353
+#: src/strings.ts:2377
msgid "Download attachment"
msgstr ""
-#: src/strings.ts:1887
+#: src/strings.ts:1911
msgid "Download backup file"
msgstr ""
-#: src/strings.ts:518
+#: src/strings.ts:540
msgid "Download cancelled"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2944
+#: src/strings.ts:2968
msgid "Download debug logs"
msgstr ""
-#: src/strings.ts:2245
+#: src/strings.ts:2269
msgid "Download everything including attachments on sync"
msgstr ""
-#: src/strings.ts:1312
+#: src/strings.ts:1336
msgid "Download on desktop"
msgstr ""
-#: src/strings.ts:808
+#: src/strings.ts:830
msgid "Download started... Please wait"
msgstr ""
-#: src/strings.ts:516
+#: src/strings.ts:538
msgid "Download successful"
msgstr ""
-#: src/strings.ts:669
+#: src/strings.ts:691
msgid "Download update"
msgstr ""
-#: src/strings.ts:510
+#: src/strings.ts:532
msgid "Downloaded"
msgstr ""
#: src/strings.ts:64
-#: src/strings.ts:509
+#: src/strings.ts:531
msgid "Downloading"
msgstr ""
-#: src/strings.ts:509
+#: src/strings.ts:531
msgid "Downloading ({progress})"
msgstr ""
@@ -2690,125 +2702,129 @@ msgstr ""
msgid "Downloading attachments"
msgstr ""
-#: src/strings.ts:1731
+#: src/strings.ts:1755
msgid "Downloading images"
msgstr ""
-#: src/strings.ts:1797
+#: src/strings.ts:1821
msgid "Drag & drop files here, or click to select files"
msgstr ""
-#: src/strings.ts:1796
+#: src/strings.ts:1820
msgid "Drop the files here"
msgstr ""
-#: src/strings.ts:1690
+#: src/strings.ts:1714
msgid "Drop your files here to attach"
msgstr ""
-#: src/strings.ts:2606
+#: src/strings.ts:2630
msgid "Due {date}"
msgstr ""
-#: src/strings.ts:657
+#: src/strings.ts:679
msgid "Due date"
msgstr ""
-#: src/strings.ts:2604
+#: src/strings.ts:2628
msgid "Due today"
msgstr ""
-#: src/strings.ts:942
+#: src/strings.ts:964
msgid "Duplicate"
msgstr ""
-#: src/strings.ts:2710
+#: src/strings.ts:2734
msgid "e.g., Todo integration"
msgstr ""
-#: src/strings.ts:646
+#: src/strings.ts:668
msgid "Earliest first"
msgstr ""
-#: src/strings.ts:2456
+#: src/strings.ts:2480
msgid "Easy access"
msgstr ""
-#: src/strings.ts:1804
+#: src/strings.ts:1828
msgid "Edit"
msgstr ""
-#: src/strings.ts:2679
+#: src/strings.ts:2703
msgid "Edit creation date"
msgstr ""
-#: src/strings.ts:529
+#: src/strings.ts:551
msgid "Edit internal link"
msgstr ""
-#: src/strings.ts:2272
-#: src/strings.ts:2300
+#: src/strings.ts:2296
+#: src/strings.ts:2324
msgid "Edit link"
msgstr ""
-#: src/strings.ts:2512
+#: src/strings.ts:2536
msgid "Edit profile"
msgstr ""
-#: src/strings.ts:1329
+#: src/strings.ts:1353
msgid "Edit profile picture"
msgstr ""
-#: src/strings.ts:1846
+#: src/strings.ts:278
+msgid "Edit published monograph"
+msgstr ""
+
+#: src/strings.ts:1870
msgid "Edit your full name"
msgstr ""
-#: src/strings.ts:1164
-#: src/strings.ts:1553
+#: src/strings.ts:1188
+#: src/strings.ts:1577
msgid "Editor"
msgstr ""
-#: src/strings.ts:2635
+#: src/strings.ts:2659
msgid "Education plan"
msgstr ""
-#: src/strings.ts:1505
+#: src/strings.ts:1529
msgid "Email"
msgstr ""
-#: src/strings.ts:2469
+#: src/strings.ts:2493
msgid "Email copied"
msgstr ""
-#: src/strings.ts:774
+#: src/strings.ts:796
msgid "Email is required"
msgstr ""
-#: src/strings.ts:766
+#: src/strings.ts:788
msgid "Email not confirmed"
msgstr ""
-#: src/strings.ts:1580
+#: src/strings.ts:1604
msgid "Email or password incorrect"
msgstr ""
-#: src/strings.ts:1282
+#: src/strings.ts:1306
msgid "Email support"
msgstr ""
-#: src/strings.ts:873
+#: src/strings.ts:895
msgid "Email updated to {email}"
msgstr ""
-#: src/strings.ts:2379
+#: src/strings.ts:2403
msgid "Embed"
msgstr ""
-#: src/strings.ts:2359
+#: src/strings.ts:2383
msgid "Embed properties"
msgstr ""
-#: src/strings.ts:2355
+#: src/strings.ts:2379
msgid "Embed settings"
msgstr ""
@@ -2816,47 +2832,47 @@ msgstr ""
msgid "Enable"
msgstr ""
-#: src/strings.ts:1153
+#: src/strings.ts:1177
msgid "Enable (Recommended)"
msgstr ""
-#: src/strings.ts:1207
+#: src/strings.ts:1231
msgid "Enable app lock"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2943
+#: src/strings.ts:2967
msgid "Enable biometric unlock"
msgstr ""
-#: src/strings.ts:2039
+#: src/strings.ts:2063
msgid "Enable editor margins"
msgstr ""
-#: src/strings.ts:2696
+#: src/strings.ts:2720
msgid "Enable Inbox API"
msgstr ""
-#: src/strings.ts:2503
+#: src/strings.ts:2527
msgid "Enable ligatures for common symbols like →, ←, etc"
msgstr ""
-#: src/strings.ts:2419
+#: src/strings.ts:2443
msgid "Enable regex"
msgstr ""
-#: src/strings.ts:2164
+#: src/strings.ts:2188
msgid "Enable spell checker"
msgstr ""
-#: src/strings.ts:498
+#: src/strings.ts:520
msgid "Enable two-factor authentication to secure your account."
msgstr ""
-#: src/strings.ts:2697
+#: src/strings.ts:2721
msgid "Enable/Disable Inbox API"
msgstr ""
-#: src/strings.ts:1256
+#: src/strings.ts:1280
msgid "Encrypt your backups for added security"
msgstr ""
@@ -2864,55 +2880,55 @@ msgstr ""
msgid "Encrypted and synced"
msgstr ""
-#: src/strings.ts:2279
+#: src/strings.ts:2303
msgid "Encrypted backup"
msgstr ""
-#: src/strings.ts:1684
+#: src/strings.ts:1708
msgid "Encrypted, private, secure."
msgstr ""
-#: src/strings.ts:2812
+#: src/strings.ts:2836
msgid "Encrypting"
msgstr ""
-#: src/strings.ts:958
+#: src/strings.ts:980
msgid "Encrypting attachment"
msgstr ""
-#: src/strings.ts:1870
+#: src/strings.ts:1894
msgid "Encryption key"
msgstr ""
-#: src/strings.ts:827
+#: src/strings.ts:849
msgid "End-to-end encrypted."
-msgstr "<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2871
+#: src/strings.ts:2895
msgid "End-to-end encryption (XChaCha20)"
msgstr ""
-#: src/strings.ts:402
+#: src/strings.ts:419
msgid "Enter 6 digit code"
msgstr ""
-#: src/strings.ts:1097
+#: src/strings.ts:1121
msgid "Enter account password"
msgstr ""
-#: src/strings.ts:1098
+#: src/strings.ts:1122
msgid "Enter account password to proceed."
msgstr ""
-#: src/strings.ts:1879
+#: src/strings.ts:1903
msgid "Enter account recovery key"
msgstr ""
-#: src/strings.ts:1037
+#: src/strings.ts:1059
msgid "Enter app lock password"
msgstr ""
-#: src/strings.ts:1040
+#: src/strings.ts:1062
msgid "Enter app lock pin"
msgstr ""
@@ -2920,39 +2936,43 @@ msgstr ""
msgid "Enter code from authenticator app"
msgstr ""
-#: src/strings.ts:1535
+#: src/strings.ts:1559
msgid "Enter email address"
msgstr ""
-#: src/strings.ts:2407
+#: src/strings.ts:2431
msgid "Enter embed source URL"
msgstr ""
-#: src/strings.ts:1335
+#: src/strings.ts:1359
msgid "Enter full name"
msgstr ""
-#: src/strings.ts:1728
+#: src/strings.ts:1752
msgid "Enter fullscreen"
msgstr ""
-#: src/strings.ts:1514
+#: src/strings.ts:282
+msgid "Enter new password"
+msgstr ""
+
+#: src/strings.ts:1538
msgid "Enter notebook description"
msgstr ""
-#: src/strings.ts:872
+#: src/strings.ts:894
msgid "Enter notebook title"
msgstr ""
-#: src/strings.ts:793
+#: src/strings.ts:815
msgid "Enter password"
msgstr ""
-#: src/strings.ts:2125
+#: src/strings.ts:2149
msgid "Enter pin or password to enable app lock."
msgstr ""
-#: src/strings.ts:1022
+#: src/strings.ts:1044
msgid "Enter recovery code"
msgstr ""
@@ -2968,31 +2988,31 @@ msgstr ""
msgid "Enter the 6 digit code sent to your phone number to continue logging in."
msgstr ""
-#: src/strings.ts:2471
+#: src/strings.ts:2495
msgid "Enter the gift code to redeem your subscription."
msgstr ""
-#: src/strings.ts:2671
+#: src/strings.ts:2695
msgid "Enter title"
msgstr ""
-#: src/strings.ts:1517
+#: src/strings.ts:1541
msgid "Enter verification code sent to your new email"
msgstr ""
-#: src/strings.ts:1516
+#: src/strings.ts:1540
msgid "Enter your new email"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2901
+#: src/strings.ts:2925
msgid "Enter your password"
msgstr ""
-#: src/strings.ts:2839
+#: src/strings.ts:2863
msgid "Enter your PGP private key"
msgstr ""
-#: src/strings.ts:2838
+#: src/strings.ts:2862
msgid "Enter your PGP public key"
msgstr ""
@@ -3000,156 +3020,156 @@ msgstr ""
msgid "Enter your recovery code."
msgstr ""
-#: src/strings.ts:2126
+#: src/strings.ts:2150
msgid "Enter your username"
msgstr ""
-#: src/strings.ts:2463
+#: src/strings.ts:2487
msgid "Error"
msgstr ""
-#: src/strings.ts:1581
+#: src/strings.ts:1605
msgid "Error applying promo code"
msgstr ""
-#: src/strings.ts:749
+#: src/strings.ts:771
msgid "Error downloading file: {message}"
msgstr ""
-#: src/strings.ts:1541
+#: src/strings.ts:1565
msgid "Error getting codes"
msgstr ""
-#: src/strings.ts:416
+#: src/strings.ts:433
msgid "Error loading themes"
msgstr ""
-#: src/strings.ts:1093
+#: src/strings.ts:1117
msgid "Error logging out"
msgstr ""
-#: src/strings.ts:1027
+#: src/strings.ts:1049
msgid "Error sending 2FA code"
msgstr ""
-#: src/strings.ts:761
+#: src/strings.ts:783
msgid "Errors"
msgstr ""
-#: src/strings.ts:1723
+#: src/strings.ts:1747
msgid "Errors in {count} attachments"
msgstr ""
-#: src/strings.ts:2508
+#: src/strings.ts:2532
msgid "Essential plan"
msgstr ""
-#: src/strings.ts:1655
+#: src/strings.ts:1679
msgid "Events server"
msgstr ""
-#: src/strings.ts:2449
+#: src/strings.ts:2473
msgid "Every Notebook can have notes and sub notebooks."
msgstr ""
-#: src/strings.ts:2451
+#: src/strings.ts:2475
msgid "Everything related to my job in one place."
msgstr ""
-#: src/strings.ts:2460
+#: src/strings.ts:2484
msgid "Everything related to my school in one place."
msgstr ""
-#: src/strings.ts:2477
+#: src/strings.ts:2501
msgid "Execute"
msgstr ""
-#: src/strings.ts:2476
+#: src/strings.ts:2500
msgid "Execute a command..."
msgstr ""
-#: src/strings.ts:2040
+#: src/strings.ts:2064
msgid "Exit fullscreen"
msgstr ""
-#: src/strings.ts:2411
+#: src/strings.ts:2435
msgid "Expand"
msgstr ""
-#: src/strings.ts:2504
+#: src/strings.ts:2528
msgid "Expand sidebar"
msgstr ""
-#: src/strings.ts:2109
+#: src/strings.ts:2133
msgid "Experience the next level of private note taking\""
msgstr ""
-#: src/strings.ts:2749
+#: src/strings.ts:2773
msgid "Expired"
msgstr ""
-#: src/strings.ts:2747
+#: src/strings.ts:2771
msgid "Expires"
msgstr ""
-#: src/strings.ts:2711
+#: src/strings.ts:2735
msgid "Expires in"
msgstr ""
-#: src/strings.ts:2750
+#: src/strings.ts:2774
msgid "Expires on"
msgstr ""
-#: src/strings.ts:2685
+#: src/strings.ts:2709
msgid "Expiry date"
msgstr ""
-#: src/strings.ts:2823
+#: src/strings.ts:2847
msgid "Expiry date cannot be more than 1 year in the future"
msgstr ""
-#: src/strings.ts:2821
+#: src/strings.ts:2845
msgid "Expiry date must be in the future"
msgstr ""
-#: src/strings.ts:2840
+#: src/strings.ts:2864
msgid "Expiry date removed"
msgstr ""
-#: src/strings.ts:2824
+#: src/strings.ts:2848
msgid "Expiry date set"
msgstr ""
-#: src/strings.ts:2578
+#: src/strings.ts:2602
msgid "Explore all plans"
msgstr ""
-#: src/strings.ts:472
+#: src/strings.ts:494
msgid "Export"
msgstr ""
-#: src/strings.ts:580
+#: src/strings.ts:602
msgid "Export again"
msgstr ""
-#: src/strings.ts:1259
+#: src/strings.ts:1283
msgid "Export all notes"
msgstr ""
-#: src/strings.ts:1261
+#: src/strings.ts:1285
msgid "Export all notes as pdf, markdown, html or text in a single zip file"
msgstr ""
#. placeholder {0}: format ? " " + format : ""
-#: src/strings.ts:2062
+#: src/strings.ts:2086
msgid "Export as{0}"
msgstr ""
-#: src/strings.ts:2686
+#: src/strings.ts:2710
msgid "Export CSV"
msgstr ""
-#: src/strings.ts:1407
+#: src/strings.ts:1431
msgid "Export notes as PDF, Markdown and HTML with Notesnook Pro"
msgstr ""
@@ -3157,253 +3177,253 @@ msgstr ""
msgid "Exporting \"{title}\""
msgstr ""
-#: src/strings.ts:1645
+#: src/strings.ts:1669
msgid "Extracting files..."
msgstr ""
-#: src/strings.ts:1834
+#: src/strings.ts:1858
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:1281
+#: src/strings.ts:1305
msgid "Faced an issue or have a suggestion? Click here to create a bug report"
msgstr ""
-#: src/strings.ts:2441
+#: src/strings.ts:2465
msgid "Failed"
msgstr ""
-#: src/strings.ts:2799
+#: src/strings.ts:2823
msgid "Failed inbox items"
msgstr ""
-#: src/strings.ts:2690
+#: src/strings.ts:2714
msgid "Failed to attach file"
msgstr ""
-#: src/strings.ts:1963
+#: src/strings.ts:1987
msgid "Failed to copy note"
msgstr ""
-#: src/strings.ts:2737
+#: src/strings.ts:2761
msgid "Failed to copy to clipboard"
msgstr ""
#. placeholder {0}: message ? `: ${message}` : ""
-#: src/strings.ts:2716
+#: src/strings.ts:2740
msgid "Failed to create API key{0}"
msgstr ""
-#: src/strings.ts:1587
+#: src/strings.ts:1611
msgid "Failed to decrypt backup"
msgstr ""
-#: src/strings.ts:2029
+#: src/strings.ts:2053
msgid "Failed to delete"
msgstr ""
-#: src/strings.ts:1099
+#: src/strings.ts:1123
msgid "Failed to delete account"
msgstr ""
-#: src/strings.ts:794
+#: src/strings.ts:816
msgid "Failed to download file"
msgstr ""
-#: src/strings.ts:2025
+#: src/strings.ts:2049
msgid "Failed to install theme."
msgstr ""
-#: src/strings.ts:2723
+#: src/strings.ts:2747
msgid "Failed to load API keys. Please try again."
msgstr ""
-#: src/strings.ts:966
+#: src/strings.ts:988
msgid "Failed to open"
msgstr ""
-#: src/strings.ts:883
+#: src/strings.ts:905
msgid "Failed to publish note"
msgstr ""
-#: src/strings.ts:2030
+#: src/strings.ts:2054
msgid "Failed to register task"
msgstr ""
-#: src/strings.ts:806
+#: src/strings.ts:828
msgid "Failed to resolve download url"
msgstr ""
-#: src/strings.ts:2742
+#: src/strings.ts:2766
msgid "Failed to revoke API key"
msgstr ""
-#: src/strings.ts:775
+#: src/strings.ts:797
msgid "Failed to send recovery email"
msgstr ""
-#: src/strings.ts:1423
+#: src/strings.ts:1447
msgid "Failed to send verification email"
msgstr ""
-#: src/strings.ts:955
+#: src/strings.ts:977
msgid "Failed to subscribe"
msgstr ""
-#: src/strings.ts:2240
+#: src/strings.ts:2264
msgid "Failed to take backup"
msgstr ""
-#: src/strings.ts:2242
+#: src/strings.ts:2266
msgid "Failed to take backup of your data. Do you want to continue logging out?"
msgstr ""
-#: src/strings.ts:884
+#: src/strings.ts:906
msgid "Failed to unpublish note"
msgstr ""
-#: src/strings.ts:800
+#: src/strings.ts:822
msgid "Failed to zip files"
msgstr ""
-#: src/strings.ts:502
+#: src/strings.ts:524
msgid "Fallback method for 2FA enabled"
msgstr ""
-#: src/strings.ts:2597
+#: src/strings.ts:2621
msgid "FAQs"
msgstr ""
-#: src/strings.ts:2059
+#: src/strings.ts:2083
msgid "Favorite"
msgstr ""
-#: src/strings.ts:320
-#: src/strings.ts:1548
+#: src/strings.ts:334
+#: src/strings.ts:1572
msgid "Favorites"
msgstr ""
-#: src/strings.ts:2595
+#: src/strings.ts:2619
msgid "Featured on"
msgstr ""
-#: src/strings.ts:2453
+#: src/strings.ts:2477
msgid "February 2022 Week 2"
msgstr ""
-#: src/strings.ts:2454
+#: src/strings.ts:2478
msgid "February 2022 Week 3"
msgstr ""
-#: src/strings.ts:734
+#: src/strings.ts:756
msgid "File check failed: {reason} Try reuploading the file to fix the issue."
msgstr ""
-#: src/strings.ts:752
+#: src/strings.ts:774
msgid "File check passed"
msgstr ""
-#: src/strings.ts:803
+#: src/strings.ts:825
msgid "File length is 0. Please upload this file again from the attachment manager."
msgstr ""
-#: src/strings.ts:805
+#: src/strings.ts:827
msgid "File length mismatch. Expected {expectedSize} but got {currentSize} bytes. Please upload this file again from the attachment manager."
msgstr ""
-#: src/strings.ts:2820
+#: src/strings.ts:2844
msgid "File links cannot be opened in browsers. Please use the Notesnook desktop app."
msgstr ""
-#: src/strings.ts:967
+#: src/strings.ts:989
msgid "File mismatch"
msgstr ""
-#: src/strings.ts:2814
+#: src/strings.ts:2838
msgid "File size limit exceeded. Please upgrade your plan."
msgstr ""
-#: src/strings.ts:963
+#: src/strings.ts:985
msgid "File size should be less than {sizeInMB}"
msgstr ""
-#: src/strings.ts:961
+#: src/strings.ts:983
msgid "File too big"
msgstr ""
-#: src/strings.ts:1500
+#: src/strings.ts:1524
msgid "Filter attachments by filename, type or hash"
msgstr ""
-#: src/strings.ts:1860
+#: src/strings.ts:1884
msgid "Filter languages"
msgstr ""
-#: src/strings.ts:1502
+#: src/strings.ts:1526
msgid "Filter notebooks..."
msgstr ""
-#: src/strings.ts:1503
+#: src/strings.ts:1527
msgid "Filter tags..."
msgstr ""
-#: src/strings.ts:2657
+#: src/strings.ts:2681
msgid "Finish your purchase in the browser."
msgstr ""
-#: src/strings.ts:1696
+#: src/strings.ts:1720
msgid "Fix it"
msgstr ""
-#: src/strings.ts:2042
+#: src/strings.ts:2066
msgid "Focus mode"
msgstr ""
-#: src/strings.ts:2200
+#: src/strings.ts:2224
msgid "Follow"
msgstr ""
-#: src/strings.ts:1297
+#: src/strings.ts:1321
msgid "Follow us on Mastodon"
msgstr ""
-#: src/strings.ts:1299
+#: src/strings.ts:1323
msgid "Follow us on Mastodon for updates and news about Notesnook"
msgstr ""
-#: src/strings.ts:1300
+#: src/strings.ts:1324
msgid "Follow us on X"
msgstr ""
-#: src/strings.ts:1301
+#: src/strings.ts:1325
msgid "Follow us on X for updates and news about Notesnook"
msgstr ""
-#: src/strings.ts:2314
+#: src/strings.ts:2338
msgid "Font family"
msgstr ""
-#: src/strings.ts:2501
+#: src/strings.ts:2525
msgid "Font ligatures"
msgstr ""
-#: src/strings.ts:2315
+#: src/strings.ts:2339
msgid "Font size"
msgstr ""
-#: src/strings.ts:2559
+#: src/strings.ts:2583
msgid "For a monthly subscription, you can get a refund within 7 days of purchase. For a yearly subscription, we offer a full refund within 14 days of purchase. For a 5 year subscription, you can request a refund within 30 days of purchase."
msgstr ""
-#: src/strings.ts:1713
+#: src/strings.ts:1737
msgid "For a more integrated user experience, try out Notesnook for {platform}"
msgstr ""
-#: src/strings.ts:1794
+#: src/strings.ts:1818
msgid "for help regarding how to use the Notesnook Importer."
msgstr ""
-#: src/strings.ts:2568
+#: src/strings.ts:2592
msgid "for locking your notes as soon as app enters background"
msgstr ""
@@ -3411,27 +3431,27 @@ msgstr ""
msgid "For support or questions, chat with our community on"
msgstr ""
-#: src/strings.ts:2232
+#: src/strings.ts:2256
msgid "Force logout from all your other logged in devices."
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2903
+#: src/strings.ts:2927
msgid "Force Pull"
msgstr ""
-#: src/strings.ts:1116
+#: src/strings.ts:1140
msgid "Force pull changes"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2904
+#: src/strings.ts:2928
msgid "Force Push"
msgstr ""
-#: src/strings.ts:1125
+#: src/strings.ts:1149
msgid "Force push changes"
msgstr ""
-#: src/strings.ts:2249
+#: src/strings.ts:2273
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"
@@ -3442,224 +3462,224 @@ msgid ""
"**These must only be used for troubleshooting. Using them 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:555
+#: src/strings.ts:577
msgid "Forgot Password?"
-msgstr "<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2928
+#: src/strings.ts:2952
msgid "Formatting"
msgstr ""
-#: src/strings.ts:2873
-#: src/strings.ts:2898
+#: src/strings.ts:2897
+#: src/strings.ts:2922
msgid "Free {days} days trial, cancel anytime"
msgstr ""
-#: src/strings.ts:2612
+#: src/strings.ts:2636
msgid "Free {duration} day trial, cancel any time"
msgstr ""
-#: src/strings.ts:2506
+#: src/strings.ts:2530
msgid "Free plan"
-msgstr "<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2860
+#: src/strings.ts:2884
msgid "Frequently Asked Questions"
msgstr ""
-#: src/strings.ts:629
+#: src/strings.ts:651
msgid "Fri"
msgstr ""
-#: src/strings.ts:620
+#: src/strings.ts:642
msgid "Friday"
msgstr ""
-#: src/strings.ts:2409
+#: src/strings.ts:2433
msgid "From code"
msgstr ""
-#: src/strings.ts:2406
+#: src/strings.ts:2430
msgid "From URL"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2938
+#: src/strings.ts:2962
msgid "Full backup"
msgstr ""
-#: src/strings.ts:2026
+#: src/strings.ts:2050
msgid "Full name updated"
msgstr ""
-#: src/strings.ts:2243
+#: src/strings.ts:2267
msgid "Full offline mode"
msgstr ""
-#: src/strings.ts:2361
+#: src/strings.ts:2385
msgid "Full screen"
msgstr ""
-#: src/strings.ts:2129
+#: src/strings.ts:2153
msgid "General"
msgstr ""
-#: src/strings.ts:1290
+#: src/strings.ts:1314
msgid "Get helpful debug info about the app to help us find bugs."
msgstr ""
-#: src/strings.ts:1314
+#: src/strings.ts:1338
msgid "Get Notesnook app on your desktop and access all notes"
msgstr ""
-#: src/strings.ts:2194
+#: src/strings.ts:2218
msgid "Get Notesnook app on your iPhone and access all your notes on the go."
msgstr ""
-#: src/strings.ts:2196
+#: src/strings.ts:2220
msgid "Get Notesnook app on your iPhone or Android device and access all your notes on the go."
msgstr ""
-#: src/strings.ts:1404
+#: src/strings.ts:1428
msgid "Get Notesnook Pro"
msgstr ""
-#: src/strings.ts:1389
+#: src/strings.ts:1413
msgid "Get Notesnook Pro to enable automatic backups"
msgstr ""
-#: src/strings.ts:2445
+#: src/strings.ts:2469
msgid "Get Priority support"
msgstr ""
-#: src/strings.ts:690
+#: src/strings.ts:712
msgid "Get Pro"
msgstr ""
-#: src/strings.ts:565
+#: src/strings.ts:587
msgid "Get started"
msgstr ""
-#: src/strings.ts:2565
+#: src/strings.ts:2589
msgid "Get this and so much more:"
msgstr ""
-#: src/strings.ts:1912
+#: src/strings.ts:1936
msgid "Getting encryption key..."
msgstr ""
-#: src/strings.ts:401
+#: src/strings.ts:418
msgid "Getting information"
msgstr ""
-#: src/strings.ts:403
+#: src/strings.ts:420
msgid "Getting recovery codes"
msgstr ""
-#: src/strings.ts:2772
+#: src/strings.ts:2796
msgid "Gift code required"
msgstr ""
-#: src/strings.ts:388
+#: src/strings.ts:405
msgid "Github"
msgstr ""
-#: src/strings.ts:2199
+#: src/strings.ts:2223
msgid "GNU GENERAL PUBLIC LICENSE Version 3"
msgstr ""
-#: src/strings.ts:2658
+#: src/strings.ts:2682
msgid "Go back"
msgstr ""
-#: src/strings.ts:2484
+#: src/strings.ts:2508
msgid "Go back in tab"
msgstr ""
-#: src/strings.ts:2262
+#: src/strings.ts:2286
msgid "Go back to notebooks"
msgstr ""
-#: src/strings.ts:2263
+#: src/strings.ts:2287
msgid "Go back to tags"
msgstr ""
-#: src/strings.ts:2483
+#: src/strings.ts:2507
msgid "Go forward in tab"
msgstr ""
-#: src/strings.ts:1840
+#: src/strings.ts:1864
msgid "Go to"
msgstr ""
-#: src/strings.ts:1841
+#: src/strings.ts:1865
msgid "Go to #{tag}"
msgstr ""
-#: src/strings.ts:1724
+#: src/strings.ts:1748
msgid "Go to next page"
msgstr ""
-#: src/strings.ts:1725
+#: src/strings.ts:1749
msgid "Go to previous page"
msgstr ""
-#: src/strings.ts:1326
+#: src/strings.ts:1350
msgid "Go to web app"
msgstr ""
-#: src/strings.ts:2577
+#: src/strings.ts:2601
msgid "Google will remind you 2 days before your trial ends."
msgstr ""
-#: src/strings.ts:588
+#: src/strings.ts:610
msgid "Got it"
msgstr ""
-#: src/strings.ts:432
+#: src/strings.ts:449
msgid "GROUP"
msgstr ""
-#: src/strings.ts:1914
+#: src/strings.ts:1938
msgid "Group added successfully"
msgstr ""
-#: src/strings.ts:539
+#: src/strings.ts:561
msgid "Group by"
msgstr ""
-#: src/strings.ts:754
+#: src/strings.ts:776
msgid "Hash copied"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2911
+#: src/strings.ts:2935
msgid "Having issues? Contact"
msgstr ""
-#: src/strings.ts:2246
+#: src/strings.ts:2270
msgid "Having problems with sync?"
msgstr ""
-#: src/strings.ts:2601
+#: src/strings.ts:2625
msgid "HD Images"
msgstr ""
-#: src/strings.ts:2387
+#: src/strings.ts:2411
msgid "Heading {level}"
msgstr ""
-#: src/strings.ts:2316
+#: src/strings.ts:2340
msgid "Headings"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2935
+#: src/strings.ts:2959
msgid "Headline"
msgstr ""
-#: src/strings.ts:2422
+#: src/strings.ts:2446
msgid "Height"
msgstr ""
-#: src/strings.ts:1278
+#: src/strings.ts:1302
msgid "Help and support"
msgstr ""
@@ -3667,59 +3687,63 @@ msgstr ""
msgid "Help improve Notesnook by sending completely anonymized"
msgstr ""
-#: src/strings.ts:478
+#: src/strings.ts:500
msgid "Help us make Notesnook better for everyone."
msgstr ""
-#: src/strings.ts:1397
+#: src/strings.ts:1421
msgid "Hide"
msgstr ""
-#: src/strings.ts:1204
+#: src/strings.ts:1228
msgid "Hide app contents when you switch to other apps. This will also disable screenshot taking in the app."
msgstr ""
-#: src/strings.ts:2205
+#: src/strings.ts:2229
msgid "Hide note title"
msgstr ""
-#: src/strings.ts:2319
+#: src/strings.ts:2343
msgid "Highlight"
msgstr ""
-#: src/strings.ts:925
+#: src/strings.ts:947
msgid "History"
msgstr ""
-#: src/strings.ts:1554
+#: src/strings.ts:480
+msgid "History detail"
+msgstr ""
+
+#: src/strings.ts:1578
msgid "Home"
msgstr ""
-#: src/strings.ts:1148
+#: src/strings.ts:1172
msgid "Homepage"
msgstr ""
-#: src/strings.ts:1339
+#: src/strings.ts:1363
msgid "Homepage changed to {name}"
msgstr ""
-#: src/strings.ts:2368
+#: src/strings.ts:2392
msgid "Horizontal rule"
msgstr ""
-#: src/strings.ts:1825
+#: src/strings.ts:1849
msgid "How do you want to recover your account?"
msgstr ""
-#: src/strings.ts:1695
+#: src/strings.ts:1719
msgid "How to fix it?"
msgstr ""
-#: src/strings.ts:896
+#: src/strings.ts:918
msgid "hr"
msgstr ""
-#: src/strings.ts:2536
+#: src/strings.ts:2560
msgid "I already have an account"
msgstr ""
@@ -3743,31 +3767,31 @@ msgstr ""
msgid "I have a recovery code"
msgstr ""
-#: src/strings.ts:1913
+#: src/strings.ts:1937
msgid "I have saved my key"
msgstr ""
-#: src/strings.ts:2462
+#: src/strings.ts:2486
msgid "I love cooking and collecting recipes."
msgstr ""
-#: src/strings.ts:2247
+#: src/strings.ts:2271
msgid "I understand"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2912
+#: src/strings.ts:2936
msgid "I understand the risks"
msgstr ""
-#: src/strings.ts:553
+#: src/strings.ts:575
msgid "I understand, change my password"
msgstr ""
-#: src/strings.ts:929
+#: src/strings.ts:951
msgid "ID copied"
msgstr ""
-#: src/strings.ts:400
+#: src/strings.ts:417
msgid "If the editor fails to load even after reloading. Try restarting the app."
msgstr ""
@@ -3775,53 +3799,53 @@ msgstr ""
msgid "If this continues to happen, please reach out to us via"
msgstr ""
-#: src/strings.ts:2150
+#: src/strings.ts:2174
msgid "If true, Notesnook will automatically start up when you turn on & login to your system."
msgstr ""
-#: src/strings.ts:2153
+#: src/strings.ts:2177
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:1751
+#: src/strings.ts:1775
msgid "If you can't scan the QR code above, enter this text instead (spaces don't matter)"
msgstr ""
-#: src/strings.ts:1416
+#: src/strings.ts:1440
msgid ""
"If you didn't get an email from us or the confirmation link isn't\n"
" working,"
msgstr ""
-#: src/strings.ts:1831
+#: src/strings.ts:1855
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:2114
+#: src/strings.ts:2138
msgid "If you face any issue, you can reach out to us anytime."
msgstr ""
-#: src/strings.ts:2373
+#: src/strings.ts:2397
msgid "Image"
msgstr ""
-#: src/strings.ts:1150
+#: src/strings.ts:1174
msgid "Image Compression"
msgstr ""
-#: src/strings.ts:2349
+#: src/strings.ts:2373
msgid "Image properties"
msgstr ""
-#: src/strings.ts:2345
+#: src/strings.ts:2369
msgid "Image settings"
msgstr ""
-#: src/strings.ts:965
+#: src/strings.ts:987
msgid "Image size should be less than {sizeInMB}"
msgstr ""
-#: src/strings.ts:757
+#: src/strings.ts:779
msgid "Images"
msgstr ""
@@ -3829,35 +3853,35 @@ 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:1609
+#: src/strings.ts:1633
msgid "Immediately"
msgstr ""
-#: src/strings.ts:2177
+#: src/strings.ts:2201
msgid "Import & export"
msgstr ""
-#: src/strings.ts:1778
+#: src/strings.ts:1802
msgid "Import completed"
msgstr ""
-#: src/strings.ts:2687
+#: src/strings.ts:2711
msgid "Import CSV"
msgstr ""
-#: src/strings.ts:1793
+#: src/strings.ts:1817
msgid "import guide"
msgstr ""
-#: src/strings.ts:2693
+#: src/strings.ts:2717
msgid "Inbox API"
msgstr ""
-#: src/strings.ts:2757
+#: src/strings.ts:2781
msgid "Inbox keys saved"
msgstr ""
-#: src/strings.ts:2698
+#: src/strings.ts:2722
msgid "Inbox PGP Keys"
msgstr ""
@@ -3865,99 +3889,99 @@ msgstr ""
msgid "Incoming"
msgstr ""
-#: src/strings.ts:1864
+#: src/strings.ts:1888
msgid "Incoming note"
msgstr ""
-#: src/strings.ts:786
+#: src/strings.ts:808
msgid "Incorrect {type}"
msgstr ""
-#: src/strings.ts:2431
+#: src/strings.ts:2455
msgid "Increase {title}"
msgstr ""
-#: src/strings.ts:2273
+#: src/strings.ts:2297
msgid "Insert"
msgstr ""
-#: src/strings.ts:2428
+#: src/strings.ts:2452
msgid "Insert a {rows}x{columns} table"
msgstr ""
-#: src/strings.ts:2378
+#: src/strings.ts:2402
msgid "Insert a table"
msgstr ""
-#: src/strings.ts:2380
+#: src/strings.ts:2404
msgid "Insert an embed"
msgstr ""
-#: src/strings.ts:2374
+#: src/strings.ts:2398
msgid "Insert an image"
msgstr ""
-#: src/strings.ts:2326
+#: src/strings.ts:2350
msgid "Insert column left"
msgstr ""
-#: src/strings.ts:2327
+#: src/strings.ts:2351
msgid "Insert column right"
msgstr ""
-#: src/strings.ts:2271
+#: src/strings.ts:2295
msgid "Insert link"
msgstr ""
-#: src/strings.ts:2333
+#: src/strings.ts:2357
msgid "Insert row above"
msgstr ""
-#: src/strings.ts:2334
+#: src/strings.ts:2358
msgid "Insert row below"
msgstr ""
-#: src/strings.ts:1711
+#: src/strings.ts:1735
msgid "Install Notesnook"
msgstr ""
-#: src/strings.ts:2185
+#: src/strings.ts:2209
msgid "Install update"
msgstr ""
-#: src/strings.ts:1746
+#: src/strings.ts:1770
msgid "installs"
msgstr ""
-#: src/strings.ts:750
+#: src/strings.ts:772
msgid "Invalid {type}"
msgstr ""
-#: src/strings.ts:2018
+#: src/strings.ts:2042
msgid "Invalid CORS proxy url"
msgstr ""
-#: src/strings.ts:1506
+#: src/strings.ts:1530
msgid "Invalid email"
msgstr ""
-#: src/strings.ts:2735
+#: src/strings.ts:2759
msgid "Invalid password"
msgstr ""
-#: src/strings.ts:2756
+#: src/strings.ts:2780
msgid "Invalid PGP key pair. Please check your keys and try again."
msgstr ""
-#: src/strings.ts:2763
+#: src/strings.ts:2787
msgid "Invalid recovery key. Make sure to input your account recovery key, not a 2FA recovery code."
msgstr ""
#: src/strings.ts:224
msgid "Issue created"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2942
+#: src/strings.ts:2966
msgid "Issue summary"
msgstr ""
@@ -3965,113 +3989,117 @@ msgstr ""
msgid "Issues reported here are public on"
msgstr ""
-#: src/strings.ts:1008
-#: src/strings.ts:1017
+#: src/strings.ts:1030
+#: src/strings.ts:1039
msgid "It may take a minute to receive your code."
msgstr ""
-#: src/strings.ts:1617
+#: src/strings.ts:1641
msgid "It seems that your changes could not be saved. What to do next:"
msgstr ""
-#: src/strings.ts:274
+#: src/strings.ts:288
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:2295
+#: src/strings.ts:2319
msgid "Italic"
msgstr ""
-#: src/strings.ts:290
+#: src/strings.ts:304
msgid "item"
msgstr ""
-#: src/strings.ts:300
+#: src/strings.ts:314
msgid "Item"
msgstr ""
-#: src/strings.ts:2804
+#: src/strings.ts:2828
msgid "Item deleted"
msgstr ""
-#: src/strings.ts:310
-#: src/strings.ts:1730
+#: src/strings.ts:324
+#: src/strings.ts:1754
msgid "items"
msgstr ""
-#: src/strings.ts:322
+#: src/strings.ts:336
msgid "Items"
msgstr ""
-#: src/strings.ts:2197
+#: src/strings.ts:2221
msgid "Join community"
msgstr ""
-#: src/strings.ts:1302
+#: src/strings.ts:1326
msgid "Join our Discord server"
msgstr ""
-#: src/strings.ts:1304
+#: src/strings.ts:1328
msgid "Join our Discord server to chat with other users and the team"
msgstr ""
-#: src/strings.ts:1294
+#: src/strings.ts:1318
msgid "Join our Telegram group"
msgstr ""
-#: src/strings.ts:1296
+#: src/strings.ts:1320
msgid "Join our Telegram group to chat with other users and the team"
msgstr ""
-#: src/strings.ts:2105
+#: src/strings.ts:2129
msgid "Join the cause"
msgstr ""
-#: src/strings.ts:2053
+#: src/strings.ts:2077
msgid "Jump to group"
msgstr ""
-#: src/strings.ts:569
+#: src/strings.ts:388
+msgid "Jump to Reference"
+msgstr ""
+
+#: src/strings.ts:591
msgid "Keep"
msgstr ""
-#: src/strings.ts:2048
+#: src/strings.ts:2072
msgid "Keep open"
msgstr "<<<<<<< HEAD"
-#: src/strings.ts:2846
+#: src/strings.ts:2870
msgid "Keep screen on"
msgstr ""
-#: src/strings.ts:1381
+#: src/strings.ts:1405
msgid "Keep your data safe"
msgstr ""
-#: src/strings.ts:1107
+#: src/strings.ts:1131
msgid "Keep your notes updated automatically"
msgstr ""
-#: src/strings.ts:2709
+#: src/strings.ts:2733
msgid "Key name"
msgstr ""
-#: src/strings.ts:2165
+#: src/strings.ts:2189
msgid "Languages"
msgstr ""
-#: src/strings.ts:2268
+#: src/strings.ts:2292
msgid "Last edited at"
msgstr ""
-#: src/strings.ts:2743
+#: src/strings.ts:2767
msgid "Last used on"
msgstr ""
-#: src/strings.ts:592
+#: src/strings.ts:614
msgid "Later"
msgstr ""
-#: src/strings.ts:645
+#: src/strings.ts:667
msgid "Latest first"
msgstr ""
@@ -4079,75 +4107,75 @@ msgstr ""
msgid "Learn how this works."
msgstr ""
-#: src/strings.ts:573
+#: src/strings.ts:595
msgid "Learn more"
msgstr ""
-#: src/strings.ts:995
+#: src/strings.ts:1017
msgid "Learn more about Monographs"
msgstr ""
-#: src/strings.ts:271
-msgid "Learn more about Notesnook Monograph"
+#: src/strings.ts:275
+msgid "Learn more about Notesnook"
msgstr ""
-#: src/strings.ts:648
+#: src/strings.ts:670
msgid "Least relevant first"
msgstr ""
-#: src/strings.ts:1589
+#: src/strings.ts:1613
msgid "Legal"
msgstr ""
-#: src/strings.ts:2198
+#: src/strings.ts:2222
msgid "License"
msgstr ""
-#: src/strings.ts:1747
+#: src/strings.ts:1771
msgid "Licensed under {license}"
msgstr ""
-#: src/strings.ts:2364
+#: src/strings.ts:2388
msgid "Lift list item"
msgstr ""
-#: src/strings.ts:727
+#: src/strings.ts:749
msgid "Light"
msgstr ""
-#: src/strings.ts:2394
+#: src/strings.ts:2418
msgid "Line {line}, Column {column}"
msgstr ""
-#: src/strings.ts:2669
+#: src/strings.ts:2693
msgid "Line height"
msgstr ""
-#: src/strings.ts:1174
+#: src/strings.ts:1198
msgid "Line spacing changed"
msgstr ""
-#: src/strings.ts:2299
+#: src/strings.ts:2323
msgid "Link"
msgstr ""
-#: src/strings.ts:927
+#: src/strings.ts:949
msgid "Link copied"
msgstr ""
-#: src/strings.ts:947
+#: src/strings.ts:969
msgid "Link notebooks"
msgstr ""
-#: src/strings.ts:2513
+#: src/strings.ts:2537
msgid "Link notes"
msgstr ""
-#: src/strings.ts:2304
+#: src/strings.ts:2328
msgid "Link settings"
msgstr ""
-#: src/strings.ts:2424
+#: src/strings.ts:2448
msgid "Link text"
msgstr ""
@@ -4155,31 +4183,43 @@ msgstr ""
msgid "LINK TO A SECTION"
msgstr ""
-#: src/strings.ts:528
+#: src/strings.ts:550
msgid "Link to note"
msgstr ""
-#: src/strings.ts:867
+#: src/strings.ts:889
msgid "Link to notebook"
msgstr ""
-#: src/strings.ts:597
+#: src/strings.ts:387
+msgid "Linked"
+msgstr ""
+
+#: src/strings.ts:619
msgid "Linked notes"
msgstr ""
-#: src/strings.ts:1623
+#: src/strings.ts:1647
msgid "Linking to a specific block is not available for locked notes."
msgstr ""
-#: src/strings.ts:506
+#: src/strings.ts:2988
+msgid "Links of notes that are references in this note."
+msgstr ""
+
+#: src/strings.ts:2989
+msgid "Links of notes where this note is referenced."
+msgstr ""
+
+#: src/strings.ts:528
msgid "List of"
msgstr ""
-#: src/strings.ts:729
+#: src/strings.ts:751
msgid "Load from file"
msgstr ""
-#: src/strings.ts:1722
+#: src/strings.ts:1746
msgid "Loading"
msgstr ""
@@ -4188,51 +4228,51 @@ msgstr ""
msgid "Loading {0}, please wait..."
msgstr ""
-#: src/strings.ts:2722
+#: src/strings.ts:2746
msgid "Loading API keys..."
msgstr ""
-#: src/strings.ts:1691
+#: src/strings.ts:1715
msgid "Loading editor. Please wait..."
msgstr ""
-#: src/strings.ts:1082
+#: src/strings.ts:1106
msgid "Loading subscription details"
msgstr ""
-#: src/strings.ts:417
+#: src/strings.ts:434
msgid "Loading themes..."
msgstr ""
-#: src/strings.ts:1349
+#: src/strings.ts:1373
msgid "Loading trash"
msgstr ""
-#: src/strings.ts:991
+#: src/strings.ts:1013
msgid "Loading your archive"
msgstr ""
-#: src/strings.ts:985
+#: src/strings.ts:1007
msgid "Loading your favorites"
msgstr ""
-#: src/strings.ts:990
+#: src/strings.ts:1012
msgid "Loading your monographs"
msgstr ""
-#: src/strings.ts:988
+#: src/strings.ts:1010
msgid "Loading your notebooks"
msgstr ""
-#: src/strings.ts:986
+#: src/strings.ts:1008
msgid "Loading your notes"
msgstr ""
-#: src/strings.ts:989
+#: src/strings.ts:1011
msgid "Loading your reminders"
msgstr ""
-#: src/strings.ts:987
+#: src/strings.ts:1009
msgid "Loading your tags"
msgstr ""
@@ -4240,39 +4280,39 @@ msgstr ""
msgid "Lock"
msgstr ""
-#: src/strings.ts:459
+#: src/strings.ts:476
msgid "Lock note"
msgstr ""
-#: src/strings.ts:1206
+#: src/strings.ts:1230
msgid "Lock the app with a password or pin"
msgstr ""
-#: src/strings.ts:2758
+#: src/strings.ts:2782
msgid "Lock vault timer"
msgstr ""
-#: src/strings.ts:917
+#: src/strings.ts:939
msgid "Locked notes cannot be pinned"
msgstr ""
-#: src/strings.ts:920
+#: src/strings.ts:942
msgid "Locked notes cannot be published"
msgstr ""
-#: src/strings.ts:2230
+#: src/strings.ts:2254
msgid "Log out from all other devices"
msgstr ""
-#: src/strings.ts:392
+#: src/strings.ts:409
msgid "Logged in as {email}"
msgstr ""
-#: src/strings.ts:406
+#: src/strings.ts:423
msgid "Logging out. Please wait..."
msgstr ""
-#: src/strings.ts:1809
+#: src/strings.ts:1833
msgid "Logging you in"
msgstr ""
@@ -4280,139 +4320,139 @@ msgstr ""
msgid "Login"
msgstr ""
-#: src/strings.ts:780
+#: src/strings.ts:802
msgid "Login failed"
msgstr ""
-#: src/strings.ts:918
+#: src/strings.ts:940
msgid "Login required"
msgstr ""
-#: src/strings.ts:2780
+#: src/strings.ts:2804
msgid "Login required to restore attachments"
msgstr ""
-#: src/strings.ts:781
+#: src/strings.ts:803
msgid "Login successful"
msgstr ""
-#: src/strings.ts:1384
+#: src/strings.ts:1408
msgid "Login to encrypt and sync notes"
msgstr ""
-#: src/strings.ts:2662
+#: src/strings.ts:2686
msgid "Login to upload attachments. [Read more](https://help.notesnook.com/faqs/login-to-upload-attachments)"
msgstr ""
-#: src/strings.ts:544
+#: src/strings.ts:566
msgid "Login to your account"
msgstr ""
-#: src/strings.ts:778
+#: src/strings.ts:800
msgid "Logout"
msgstr ""
-#: src/strings.ts:584
+#: src/strings.ts:606
msgid "Logout and clear data"
msgstr ""
-#: src/strings.ts:557
+#: src/strings.ts:579
msgid "Logout from this device"
msgstr ""
-#: src/strings.ts:1434
+#: src/strings.ts:1458
msgid "Long press on any item in list to enter multi-select mode."
msgstr ""
-#: src/strings.ts:2399
+#: src/strings.ts:2423
msgid "Make task list readonly"
msgstr ""
-#: src/strings.ts:1056
+#: src/strings.ts:1078
msgid "Manage account"
msgstr ""
-#: src/strings.ts:1069
+#: src/strings.ts:1091
msgid "Manage attachments"
msgstr ""
-#: src/strings.ts:687
+#: src/strings.ts:709
msgid "Manage subscription on desktop"
msgstr ""
-#: src/strings.ts:866
+#: src/strings.ts:888
msgid "Manage tags"
msgstr ""
-#: src/strings.ts:1057
+#: src/strings.ts:1079
msgid "Manage your account related settings here"
msgstr ""
-#: src/strings.ts:1070
+#: src/strings.ts:1092
msgid "Manage your attachments in one place"
msgstr ""
-#: src/strings.ts:1233
+#: src/strings.ts:1257
msgid "Manage your backups and restore data"
msgstr ""
-#: src/strings.ts:1267
+#: src/strings.ts:1291
msgid "Manage your reminders"
msgstr ""
-#: src/strings.ts:1101
+#: src/strings.ts:1125
msgid "Manage your sync settings here"
msgstr ""
-#: src/strings.ts:1462
+#: src/strings.ts:1486
msgid "Mark important notes by adding them to favorites."
msgstr ""
-#: src/strings.ts:1181
+#: src/strings.ts:1205
msgid "Markdown shortcuts"
msgstr ""
-#: src/strings.ts:1187
+#: src/strings.ts:1211
msgid "Marketing emails"
msgstr ""
-#: src/strings.ts:2412
+#: src/strings.ts:2436
msgid "Match case"
msgstr ""
-#: src/strings.ts:2413
+#: src/strings.ts:2437
msgid "Match whole word"
msgstr ""
-#: src/strings.ts:2321
+#: src/strings.ts:2345
msgid "Math (inline)"
msgstr ""
-#: src/strings.ts:2371
+#: src/strings.ts:2395
msgid "Math & formulas"
msgstr ""
-#: src/strings.ts:2067
+#: src/strings.ts:2091
msgid "Maximize"
msgstr ""
-#: src/strings.ts:2829
+#: src/strings.ts:2853
msgid "Maximum reminder date is {maxDate}"
msgstr ""
-#: src/strings.ts:2107
+#: src/strings.ts:2131
msgid "Meet other privacy-minded people & talk to us directly about your concerns, issues and suggestions."
msgstr ""
-#: src/strings.ts:2455
+#: src/strings.ts:2479
msgid "Meetings"
msgstr ""
-#: src/strings.ts:1806
+#: src/strings.ts:1830
msgid "Member since {date}"
msgstr ""
-#: src/strings.ts:2332
+#: src/strings.ts:2356
msgid "Merge cells"
msgstr ""
@@ -4426,259 +4466,264 @@ msgstr ""
msgid "Migration failed"
msgstr ""
-#: src/strings.ts:895
+#: src/strings.ts:917
msgid "min"
msgstr ""
-#: src/strings.ts:2036
+#: src/strings.ts:2060
msgid "Minimal"
msgstr ""
-#: src/strings.ts:2066
+#: src/strings.ts:2090
msgid "Minimize"
msgstr ""
-#: src/strings.ts:2154
+#: src/strings.ts:2178
msgid "Minimize to system tray"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2926
+#: src/strings.ts:2950
msgid "Miscellaneous"
msgstr ""
-#: src/strings.ts:691
+#: src/strings.ts:713
msgid "mo"
msgstr ""
-#: src/strings.ts:625
+#: src/strings.ts:647
msgid "Mon"
msgstr ""
-#: src/strings.ts:616
+#: src/strings.ts:638
msgid "Monday"
msgstr ""
-#: src/strings.ts:1658
+#: src/strings.ts:1682
msgid "Monograph server"
msgstr ""
-#: src/strings.ts:886
+#: src/strings.ts:908
msgid "Monograph URL copied"
msgstr ""
-#: src/strings.ts:321
-#: src/strings.ts:957
-#: src/strings.ts:1556
+#: src/strings.ts:276
+#: src/strings.ts:335
+#: src/strings.ts:979
+#: src/strings.ts:1580
msgid "Monographs"
msgstr ""
-#: src/strings.ts:1444
+#: src/strings.ts:1468
msgid "Monographs can be encrypted with a secret key and shared with anyone."
msgstr ""
-#: src/strings.ts:1439
+#: src/strings.ts:1463
msgid "Monographs enable you to share your notes in a secure and private way."
msgstr ""
-#: src/strings.ts:667
-#: src/strings.ts:1867
+#: src/strings.ts:689
+#: src/strings.ts:1891
msgid "Month"
msgstr ""
#: src/strings.ts:169
-#: src/strings.ts:1597
+#: src/strings.ts:1621
msgid "Monthly"
msgstr ""
-#: src/strings.ts:2351
+#: src/strings.ts:2375
msgid "More"
msgstr ""
-#: src/strings.ts:647
+#: src/strings.ts:669
msgid "Most relevant first"
msgstr ""
-#: src/strings.ts:868
+#: src/strings.ts:890
msgid "Move"
msgstr ""
-#: src/strings.ts:2400
+#: src/strings.ts:2424
msgid "Move all checked tasks to bottom"
msgstr ""
-#: src/strings.ts:2328
+#: src/strings.ts:2352
msgid "Move column left"
msgstr ""
-#: src/strings.ts:2329
+#: src/strings.ts:2353
msgid "Move column right"
msgstr ""
-#: src/strings.ts:954
+#: src/strings.ts:976
msgid "Move notebook"
msgstr ""
-#: src/strings.ts:914
+#: src/strings.ts:936
msgid "Move notes"
msgstr ""
-#: src/strings.ts:2336
+#: src/strings.ts:2360
msgid "Move row down"
msgstr ""
-#: src/strings.ts:2335
+#: src/strings.ts:2359
msgid "Move row up"
msgstr ""
-#: src/strings.ts:587
+#: src/strings.ts:609
msgid "Move selected notes"
msgstr ""
-#: src/strings.ts:586
+#: src/strings.ts:608
msgid "Move to top"
msgstr ""
-#: src/strings.ts:871
+#: src/strings.ts:893
msgid "Move to trash"
msgstr ""
-#: src/strings.ts:1194
+#: src/strings.ts:1218
msgid "Multi-layer encryption to most important notes"
msgstr ""
-#: src/strings.ts:903
+#: src/strings.ts:925
msgid "Name"
msgstr ""
-#: src/strings.ts:2778
+#: src/strings.ts:2802
msgid "Name is required."
msgstr ""
-#: src/strings.ts:1715
+#: src/strings.ts:1739
msgid "Native high-performance encryption"
msgstr ""
-#: src/strings.ts:2480
+#: src/strings.ts:2504
msgid "Navigate"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2921
+#: src/strings.ts:2945
msgid "Navigation"
msgstr ""
-#: src/strings.ts:393
+#: src/strings.ts:410
msgid "Never"
msgstr ""
-#: src/strings.ts:1364
+#: src/strings.ts:1388
msgid "Never ask again"
msgstr ""
-#: src/strings.ts:2748
+#: src/strings.ts:2772
msgid "Never expires"
msgstr ""
-#: src/strings.ts:1055
+#: src/strings.ts:1077
msgid "Never hesitate to choose privacy"
msgstr ""
-#: src/strings.ts:674
+#: src/strings.ts:2987
+msgid "Never miss a task. Set your first reminder now."
+msgstr ""
+
+#: src/strings.ts:696
msgid "Never show again"
msgstr ""
-#: src/strings.ts:2744
+#: src/strings.ts:2768
msgid "Never used"
msgstr ""
-#: src/strings.ts:644
+#: src/strings.ts:666
msgid "New - old"
msgstr ""
-#: src/strings.ts:530
+#: src/strings.ts:552
msgid "New color"
msgstr ""
-#: src/strings.ts:1873
+#: src/strings.ts:1897
msgid "New Email"
msgstr ""
-#: src/strings.ts:1173
+#: src/strings.ts:1197
msgid "New lines will be double spaced (old ones won't be affected)."
msgstr ""
#: src/strings.ts:211
msgid "New note"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2929
+#: src/strings.ts:2953
msgid "New note title"
msgstr ""
-#: src/strings.ts:527
+#: src/strings.ts:549
msgid "New notebook"
msgstr ""
-#: src/strings.ts:1504
+#: src/strings.ts:1528
msgid "New password"
msgstr ""
-#: src/strings.ts:1510
+#: src/strings.ts:1534
msgid "New pin"
msgstr ""
-#: src/strings.ts:537
+#: src/strings.ts:559
msgid "New reminder"
msgstr ""
-#: src/strings.ts:578
+#: src/strings.ts:600
msgid "New tab"
msgstr ""
-#: src/strings.ts:2486
+#: src/strings.ts:2510
msgid "New tag"
msgstr ""
-#: src/strings.ts:1390
+#: src/strings.ts:1414
msgid "New update available"
msgstr ""
-#: src/strings.ts:533
+#: src/strings.ts:555
msgid "New version"
msgstr ""
-#: src/strings.ts:2051
+#: src/strings.ts:2075
msgid "Newest - oldest"
-msgstr "<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2882
+#: src/strings.ts:2906
msgid "Newest first"
msgstr ""
-#: src/strings.ts:1162
+#: src/strings.ts:1186
msgid "Newly created notes will be uncategorized"
msgstr ""
-#: src/strings.ts:554
+#: src/strings.ts:576
msgid "Next"
-msgstr "<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2876
+#: src/strings.ts:2900
msgid "Next billing date"
msgstr ""
-#: src/strings.ts:2416
+#: src/strings.ts:2440
msgid "Next match"
msgstr ""
-#: src/strings.ts:2481
+#: src/strings.ts:2505
msgid "Next tab"
msgstr ""
-#: src/strings.ts:549
+#: src/strings.ts:571
msgid "No"
msgstr ""
-#: src/strings.ts:875
+#: src/strings.ts:897
msgid "No application found to open {fileToOpen}"
msgstr ""
@@ -4686,19 +4731,19 @@ msgstr ""
msgid "No attachments."
msgstr ""
-#: src/strings.ts:374
+#: src/strings.ts:391
msgid "No backups found"
msgstr ""
-#: src/strings.ts:277
+#: src/strings.ts:291
msgid "No blocks linked"
msgstr ""
-#: src/strings.ts:788
+#: src/strings.ts:810
msgid "No color selected"
msgstr ""
-#: src/strings.ts:1253
+#: src/strings.ts:1277
msgid "No directory selected"
msgstr ""
@@ -4706,23 +4751,24 @@ msgstr ""
msgid "No downloads in progress."
msgstr ""
-#: src/strings.ts:2011
+#: src/strings.ts:2035
msgid "No encryption key found"
msgstr ""
-#: src/strings.ts:2802
+#: src/strings.ts:2826
msgid "No failed inbox items"
msgstr ""
-#: src/strings.ts:1692
+#: src/strings.ts:1716
msgid "No headings found"
msgstr ""
-#: src/strings.ts:598
+#: src/strings.ts:620
msgid "No linked notes"
msgstr ""
-#: src/strings.ts:281
+#: src/strings.ts:294
+#: src/strings.ts:295
msgid "No links found"
msgstr ""
@@ -4730,15 +4776,15 @@ msgstr ""
msgid "No note history available for this device."
msgstr ""
-#: src/strings.ts:2530
+#: src/strings.ts:2554
msgid "No notebooks selected to move"
msgstr ""
-#: src/strings.ts:1536
+#: src/strings.ts:1560
msgid "No notebooks yet"
-msgstr "<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2885
+#: src/strings.ts:2909
msgid "No notes yet"
msgstr ""
@@ -4746,140 +4792,160 @@ msgstr ""
msgid "No one can view this {type} except you."
msgstr ""
-#: src/strings.ts:2665
+#: src/strings.ts:2689
msgid "No password"
msgstr ""
-#: src/strings.ts:278
+#: src/strings.ts:292
msgid "No references found of this note"
msgstr ""
-#: src/strings.ts:1543
+#: src/strings.ts:293
+msgid "No references yet"
+msgstr ""
+
+#: src/strings.ts:2986
+msgid "No reminders found"
+msgstr ""
+
+#: src/strings.ts:1567
msgid "No results found"
msgstr ""
-#: src/strings.ts:409
+#: src/strings.ts:426
msgid "No results found for \"{query}\""
msgstr ""
-#: src/strings.ts:1543
+#: src/strings.ts:1567
msgid "No results found for {query}"
-msgstr "<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2879
+#: src/strings.ts:2903
msgid "No tags yet"
msgstr ""
-#: src/strings.ts:415
+#: src/strings.ts:432
msgid "No themes found"
msgstr ""
-#: src/strings.ts:378
+#: src/strings.ts:395
msgid "No updates available"
msgstr ""
-#: src/strings.ts:663
+#: src/strings.ts:685
msgid "None"
msgstr ""
-#: src/strings.ts:2041
+#: src/strings.ts:2065
msgid "Normal mode"
msgstr ""
-#: src/strings.ts:391
+#: src/strings.ts:408
msgid "Not logged in"
msgstr ""
-#: src/strings.ts:284
+#: src/strings.ts:298
msgid "note"
msgstr ""
#: src/strings.ts:58
-#: src/strings.ts:294
+#: src/strings.ts:308
msgid "Note"
msgstr ""
-#: src/strings.ts:817
-msgid "Note copied to clipboard"
-msgstr "<<<<<<< HEAD"
+#: src/strings.ts:481
+msgid "Note content"
+msgstr ""
-#: src/strings.ts:2934
+#: src/strings.ts:839
+msgid "Note copied to clipboard"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
+
+#: src/strings.ts:2958
msgid "Note count"
msgstr ""
-#: src/strings.ts:1976
+#: src/strings.ts:2000
msgid "Note does not exist"
msgstr ""
-#: src/strings.ts:2827
+#: src/strings.ts:2851
msgid "Note duplicated"
msgstr ""
-#: src/strings.ts:461
+#: src/strings.ts:478
msgid "Note history"
msgstr ""
-#: src/strings.ts:812
+#: src/strings.ts:834
msgid "Note locked"
msgstr ""
-#: src/strings.ts:861
+#: src/strings.ts:883
msgid "Note restored from history"
msgstr ""
-#: src/strings.ts:1612
+#: src/strings.ts:1636
msgid "Note title"
msgstr ""
-#: src/strings.ts:816
+#: src/strings.ts:838
msgid "Note unlocked"
msgstr ""
+#: src/strings.ts:2985
+msgid "Note unpublished"
+msgstr ""
+
#: src/strings.ts:178
msgid "Note version history is local only."
msgstr ""
-#: src/strings.ts:1246
+#: src/strings.ts:1270
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 ""
-#: src/strings.ts:285
+#: src/strings.ts:483
+msgid "Note: Deleted versions cannot be recovered."
+msgstr ""
+
+#: src/strings.ts:299
msgid "notebook"
msgstr ""
-#: src/strings.ts:295
-#: src/strings.ts:1547
+#: src/strings.ts:309
+#: src/strings.ts:1571
msgid "Notebook"
msgstr ""
-#: src/strings.ts:2516
+#: src/strings.ts:2540
msgid "Notebook added"
msgstr ""
-#: src/strings.ts:305
+#: src/strings.ts:319
msgid "notebooks"
msgstr ""
#: src/strings.ts:257
-#: src/strings.ts:315
-#: src/strings.ts:1546
+#: src/strings.ts:329
+#: src/strings.ts:1570
msgid "Notebooks"
msgstr ""
-#: src/strings.ts:1821
+#: src/strings.ts:1845
msgid "NOTEBOOKS"
msgstr ""
-#: src/strings.ts:2278
+#: src/strings.ts:2302
msgid "Notebooks are the best way to organize your notes."
msgstr ""
-#: src/strings.ts:304
+#: src/strings.ts:318
msgid "notes"
msgstr ""
-#: src/strings.ts:314
-#: src/strings.ts:1545
+#: src/strings.ts:328
+#: src/strings.ts:1569
msgid "Notes"
msgstr ""
@@ -4887,35 +4953,35 @@ msgstr ""
msgid "Notes exported as {path} successfully"
msgstr ""
-#: src/strings.ts:1777
+#: src/strings.ts:1801
msgid "notes imported"
msgstr ""
-#: src/strings.ts:2590
+#: src/strings.ts:2614
msgid "Notesnook"
msgstr ""
-#: src/strings.ts:2650
+#: src/strings.ts:2674
msgid "Notesnook Circle"
msgstr ""
-#: src/strings.ts:2656
+#: src/strings.ts:2680
msgid "Notesnook Circle is exclusively available to subscribed users."
msgstr ""
-#: src/strings.ts:2104
+#: src/strings.ts:2128
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:2179
+#: src/strings.ts:2203
msgid "Notesnook Importer"
msgstr ""
-#: src/strings.ts:1084
+#: src/strings.ts:1108
msgid "Notesnook Pro"
msgstr ""
-#: src/strings.ts:2211
+#: src/strings.ts:2235
msgid ""
"Notesnook uses the following DNS providers:\n"
"\n"
@@ -4925,83 +4991,83 @@ msgid ""
"This can sometimes bypass local ISP blockages on Notesnook traffic. Disable this if you want the app to use system's DNS settings."
msgstr ""
-#: src/strings.ts:1005
+#: src/strings.ts:1027
msgid "Notesnook will send you a 2FA code on your email when prompted"
msgstr ""
-#: src/strings.ts:1012
+#: src/strings.ts:1034
msgid "Notesnook will send you an SMS with a 2FA code when prompted"
msgstr ""
-#: src/strings.ts:2174
+#: src/strings.ts:2198
msgid "Notifications"
msgstr ""
-#: src/strings.ts:1399
+#: src/strings.ts:1423
msgid "Notifications disabled"
msgstr ""
-#: src/strings.ts:2312
+#: src/strings.ts:2336
msgid "Numbered list"
msgstr ""
-#: src/strings.ts:1745
+#: src/strings.ts:1769
msgid "of"
msgstr ""
-#: src/strings.ts:1629
+#: src/strings.ts:1653
msgid "Off"
msgstr ""
-#: src/strings.ts:398
+#: src/strings.ts:415
msgid "Offline"
msgstr "<<<<<<< HEAD"
-#: src/strings.ts:1103
+#: src/strings.ts:1127
msgid "Offline & storage"
msgstr "<<<<<<< HEAD"
-#: src/strings.ts:2856
+#: src/strings.ts:2880
msgid "Offline mode"
msgstr ""
-#: src/strings.ts:2727
+#: src/strings.ts:2751
msgid "OK"
msgstr ""
-#: src/strings.ts:2264
+#: src/strings.ts:2288
msgid "Okay"
msgstr ""
-#: src/strings.ts:643
+#: src/strings.ts:665
msgid "Old - new"
msgstr ""
-#: src/strings.ts:1862
+#: src/strings.ts:1886
msgid "Older version"
msgstr ""
-#: src/strings.ts:2050
+#: src/strings.ts:2074
msgid "Oldest - newest"
-msgstr "<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2883
+#: src/strings.ts:2907
msgid "Oldest first"
msgstr ""
-#: src/strings.ts:738
+#: src/strings.ts:760
msgid "Once your password is changed, please make sure to save the new account recovery key"
-msgstr "<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2865
+#: src/strings.ts:2889
msgid "One time purchase"
msgstr ""
-#: src/strings.ts:2608
+#: src/strings.ts:2632
msgid "One time purchase, no auto-renewal"
msgstr ""
-#: src/strings.ts:1798
+#: src/strings.ts:1822
msgid "Only .zip files are supported."
msgstr ""
@@ -5009,7 +5075,7 @@ msgstr ""
msgid "Open"
msgstr ""
-#: src/strings.ts:579
+#: src/strings.ts:601
msgid "Open file location"
msgstr ""
@@ -5017,55 +5083,55 @@ msgstr ""
msgid "Open in browser"
msgstr ""
-#: src/strings.ts:1328
+#: src/strings.ts:1352
msgid "Open in browser to manage subscription"
msgstr ""
-#: src/strings.ts:2362
+#: src/strings.ts:2386
msgid "Open in new tab"
msgstr ""
-#: src/strings.ts:581
+#: src/strings.ts:603
msgid "Open issue"
msgstr ""
-#: src/strings.ts:2302
+#: src/strings.ts:2326
msgid "Open link"
msgstr ""
-#: src/strings.ts:1890
+#: src/strings.ts:1914
msgid "Open note"
msgstr ""
-#: src/strings.ts:1402
+#: src/strings.ts:1426
msgid "Open settings"
msgstr ""
-#: src/strings.ts:2363
+#: src/strings.ts:2387
msgid "Open source"
msgstr ""
-#: src/strings.ts:1310
+#: src/strings.ts:1334
msgid "Open source libraries used in Notesnook"
msgstr ""
-#: src/strings.ts:1309
+#: src/strings.ts:1333
msgid "Open source licenses"
msgstr ""
-#: src/strings.ts:823
+#: src/strings.ts:845
msgid "Open source."
msgstr ""
-#: src/strings.ts:1001
+#: src/strings.ts:1023
msgid "Open the two-factor authentication (TOTP) app to view your authentication code."
msgstr ""
-#: src/strings.ts:2816
+#: src/strings.ts:2840
msgid "Opening local file"
msgstr ""
-#: src/strings.ts:1884
+#: src/strings.ts:1908
msgid "Optional"
msgstr ""
@@ -5073,44 +5139,44 @@ msgstr ""
msgid "or email us at"
msgstr ""
-#: src/strings.ts:2049
+#: src/strings.ts:2073
msgid "Order by"
msgstr ""
-#: src/strings.ts:2257
+#: src/strings.ts:2281
msgid "Order ID"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2925
+#: src/strings.ts:2949
msgid "Organization"
msgstr ""
-#: src/strings.ts:760
-#: src/strings.ts:764
+#: src/strings.ts:782
+#: src/strings.ts:786
msgid "Orphaned"
msgstr ""
-#: src/strings.ts:2182
+#: src/strings.ts:2206
msgid "Other"
msgstr ""
-#: src/strings.ts:2383
+#: src/strings.ts:2407
msgid "Outline list"
msgstr ""
-#: src/strings.ts:2586
+#: src/strings.ts:2610
msgid "Outlines, note linking, and more"
msgstr ""
-#: src/strings.ts:2386
+#: src/strings.ts:2410
msgid "Paragraph"
msgstr ""
-#: src/strings.ts:2529
+#: src/strings.ts:2553
msgid "Paragraphs"
msgstr ""
-#: src/strings.ts:2138
+#: src/strings.ts:2162
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 ""
@@ -5118,31 +5184,31 @@ msgstr ""
msgid "Partially refunded"
msgstr ""
-#: src/strings.ts:2440
+#: src/strings.ts:2464
msgid "Passed"
msgstr ""
-#: src/strings.ts:899
+#: src/strings.ts:921
msgid "Password"
msgstr ""
-#: src/strings.ts:773
+#: src/strings.ts:795
msgid "Password change failed"
msgstr ""
-#: src/strings.ts:772
+#: src/strings.ts:794
msgid "Password changed successfully"
msgstr ""
-#: src/strings.ts:810
+#: src/strings.ts:832
msgid "Password does not match"
msgstr ""
-#: src/strings.ts:785
+#: src/strings.ts:807
msgid "Password incorrect"
msgstr ""
-#: src/strings.ts:809
+#: src/strings.ts:831
msgid "Password not entered"
msgstr ""
@@ -5150,238 +5216,243 @@ msgstr ""
msgid "Password protection"
msgstr ""
-#: src/strings.ts:2769
+#: src/strings.ts:266
+#: src/strings.ts:2990
+msgid "Password protection (optional)"
+msgstr ""
+
+#: src/strings.ts:2793
msgid "Password required"
msgstr ""
-#: src/strings.ts:811
+#: src/strings.ts:833
msgid "Password updated"
msgstr ""
-#: src/strings.ts:2118
+#: src/strings.ts:2142
msgid "Password/pin"
msgstr ""
-#: src/strings.ts:2286
+#: src/strings.ts:2310
msgid "Paste"
msgstr ""
-#: src/strings.ts:2287
+#: src/strings.ts:2311
msgid "Paste and match style"
msgstr ""
-#: src/strings.ts:2408
+#: src/strings.ts:2432
msgid "Paste embed code here. Only iframes are supported."
msgstr ""
-#: src/strings.ts:2423
+#: src/strings.ts:2447
msgid "Paste image URL here"
msgstr ""
-#: src/strings.ts:2288
+#: src/strings.ts:2312
msgid "Paste without formatting"
msgstr ""
-#: src/strings.ts:1110
+#: src/strings.ts:1134
msgid "Pause sync"
msgstr ""
-#: src/strings.ts:2609
+#: src/strings.ts:2633
msgid "Pay once and use for 5 years"
msgstr ""
-#: src/strings.ts:2801
+#: src/strings.ts:2825
msgid "Payload data"
msgstr ""
-#: src/strings.ts:2236
+#: src/strings.ts:2260
msgid "Payment method"
-msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2868
+#: src/strings.ts:2892
msgid "Payment summary"
msgstr ""
-#: src/strings.ts:790
+#: src/strings.ts:812
msgid "PDF is password protected"
msgstr ""
-#: src/strings.ts:2836
+#: src/strings.ts:2860
msgid "Permission required to save QR-Code to Gallery"
msgstr ""
-#: src/strings.ts:1756
+#: src/strings.ts:1780
msgid "phone number"
msgstr ""
-#: src/strings.ts:1875
+#: src/strings.ts:1899
msgid "Phone number"
msgstr ""
-#: src/strings.ts:1025
+#: src/strings.ts:1047
msgid "Phone number not entered"
msgstr ""
-#: src/strings.ts:916
+#: src/strings.ts:938
msgid "Pin"
msgstr ""
-#: src/strings.ts:1717
+#: src/strings.ts:1741
msgid "Pin notes in notifications drawer"
msgstr ""
-#: src/strings.ts:946
+#: src/strings.ts:968
msgid "Pin notification"
msgstr ""
-#: src/strings.ts:525
+#: src/strings.ts:547
msgid "Pinned"
msgstr ""
-#: src/strings.ts:2630
+#: src/strings.ts:2654
msgid "Plan limits"
msgstr ""
-#: src/strings.ts:2590
+#: src/strings.ts:2614
msgid "Plans"
msgstr ""
-#: src/strings.ts:1020
+#: src/strings.ts:1042
msgid "Please confirm your identity by entering a recovery code."
msgstr ""
-#: src/strings.ts:999
-#: src/strings.ts:2270
+#: src/strings.ts:1021
+#: src/strings.ts:2294
msgid "Please confirm your identity by entering the authentication code from your authenticator app."
msgstr ""
#. placeholder {0}: phoneNumber ? phoneNumber : "your registered phone number."
-#: src/strings.ts:1014
+#: src/strings.ts:1036
msgid "Please confirm your identity by entering the authentication code sent to {0}."
msgstr ""
-#: src/strings.ts:1007
+#: src/strings.ts:1029
msgid "Please confirm your identity by entering the authentication code sent to your email address."
msgstr ""
-#: src/strings.ts:1936
+#: src/strings.ts:1960
msgid "Please download a backup of your data as your account will be cleared before recovery."
msgstr ""
-#: src/strings.ts:2034
+#: src/strings.ts:2058
msgid "Please enable automatic backups to avoid losing important data."
msgstr ""
-#: src/strings.ts:2712
+#: src/strings.ts:2736
msgid "Please enter a key name"
msgstr ""
-#: src/strings.ts:1539
-#: src/strings.ts:2771
+#: src/strings.ts:1563
+#: src/strings.ts:2795
msgid "Please enter a valid email address"
msgstr ""
-#: src/strings.ts:1981
+#: src/strings.ts:2005
msgid "Please enter a valid hex color (e.g. #ffffff)"
msgstr ""
-#: src/strings.ts:1540
+#: src/strings.ts:1564
msgid "Please enter a valid phone number with country code"
msgstr ""
-#: src/strings.ts:1662
+#: src/strings.ts:1686
msgid "Please enter a valid URL"
msgstr ""
-#: src/strings.ts:1647
+#: src/strings.ts:1671
msgid "Please enter password of this backup file"
msgstr ""
-#: src/strings.ts:2281
+#: src/strings.ts:2305
msgid "Please enter the password to decrypt and restore this backup."
msgstr ""
-#: src/strings.ts:792
+#: src/strings.ts:814
msgid "Please enter the password to unlock the PDF and view the content."
msgstr ""
-#: src/strings.ts:1892
+#: src/strings.ts:1916
msgid "Please enter the password to unlock this note"
msgstr ""
-#: src/strings.ts:1889
+#: src/strings.ts:1913
msgid "Please enter the password to view this version"
msgstr ""
-#: src/strings.ts:2733
+#: src/strings.ts:2757
msgid "Please enter your account password to view this API key."
msgstr ""
-#: src/strings.ts:1039
+#: src/strings.ts:1061
msgid "Please enter your app lock password to continue"
msgstr ""
-#: src/strings.ts:1041
+#: src/strings.ts:1063
msgid "Please enter your app lock pin to continue"
msgstr ""
-#: src/strings.ts:1035
+#: src/strings.ts:1057
msgid "Please enter your password to continue"
msgstr ""
-#: src/strings.ts:1960
+#: src/strings.ts:1984
msgid "Please enter your vault password to continue"
msgstr ""
-#: src/strings.ts:770
+#: src/strings.ts:792
msgid "Please fill all the fields to continue."
msgstr ""
-#: src/strings.ts:1583
+#: src/strings.ts:1607
msgid "Please grant notifications permission to add new reminders."
msgstr ""
-#: src/strings.ts:2786
+#: src/strings.ts:2810
msgid "Please login to download attachments."
msgstr ""
-#: src/strings.ts:889
+#: src/strings.ts:911
msgid "Please make sure you have saved the recovery key. Tap one more time to confirm."
msgstr ""
#: src/strings.ts:228
msgid "Please note that we will respond to your issue on the given link. We recommend that you save it."
-msgstr "<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2896
+#: src/strings.ts:2920
msgid "Please provide a valid multi factor authentication code."
msgstr ""
-#: src/strings.ts:2894
+#: src/strings.ts:2918
msgid "Please provide a valid multi factor authentication recovery code."
msgstr ""
-#: src/strings.ts:1792
+#: src/strings.ts:1816
msgid "Please refer to the"
msgstr ""
-#: src/strings.ts:1584
+#: src/strings.ts:1608
msgid "Please select the day to repeat the reminder on"
msgstr ""
-#: src/strings.ts:1418
+#: src/strings.ts:1442
msgid "please send us an email from your registered email address"
msgstr ""
-#: src/strings.ts:2429
+#: src/strings.ts:2453
msgid "Please set a table size"
msgstr ""
-#: src/strings.ts:1585
+#: src/strings.ts:1609
msgid "Please set title of the reminder"
msgstr ""
-#: src/strings.ts:2014
+#: src/strings.ts:2038
msgid "Please try again"
msgstr ""
@@ -5393,16 +5464,16 @@ msgstr ""
msgid "Please wait"
msgstr ""
-#: src/strings.ts:1024
+#: src/strings.ts:1046
msgid "Please wait before requesting a new code"
msgstr ""
-#: src/strings.ts:1421
-#: src/strings.ts:1578
+#: src/strings.ts:1445
+#: src/strings.ts:1602
msgid "Please wait before requesting another email"
msgstr ""
-#: src/strings.ts:960
+#: src/strings.ts:982
msgid "Please wait while we encrypt {name} for upload."
msgstr ""
@@ -5414,27 +5485,27 @@ msgstr ""
msgid "Please wait while we export your notes."
msgstr ""
-#: src/strings.ts:1921
+#: src/strings.ts:1945
msgid "Please wait while we finalize your account."
msgstr ""
-#: src/strings.ts:1083
+#: src/strings.ts:1107
msgid "Please wait while we load your subscription"
msgstr ""
-#: src/strings.ts:407
+#: src/strings.ts:424
msgid "Please wait while we log you out."
msgstr ""
-#: src/strings.ts:1942
+#: src/strings.ts:1966
msgid "Please wait while we reset your account password."
msgstr ""
-#: src/strings.ts:1640
+#: src/strings.ts:1664
msgid "Please wait while we restore your backup..."
msgstr ""
-#: src/strings.ts:1924
+#: src/strings.ts:1948
msgid "Please wait while we send you recovery instructions"
msgstr ""
@@ -5442,56 +5513,56 @@ msgstr ""
msgid "Please wait while we sync all your data."
msgstr ""
-#: src/strings.ts:1089
+#: src/strings.ts:1113
msgid "Please wait while we verify your subscription"
msgstr ""
-#: src/strings.ts:1810
-#: src/strings.ts:1917
+#: src/strings.ts:1834
+#: src/strings.ts:1941
msgid "Please wait while you are authenticated."
msgstr ""
-#: src/strings.ts:1929
+#: src/strings.ts:1953
msgid "Please wait while your data is downloaded & decrypted."
msgstr "<<<<<<< HEAD"
-#: src/strings.ts:1135
+#: src/strings.ts:1159
msgid "Preferences"
-msgstr ""
+msgstr "<<<<<<< HEAD"
-#: src/strings.ts:2946
+#: src/strings.ts:2970
msgid "Preparing logs.."
msgstr ""
-#: src/strings.ts:921
+#: src/strings.ts:943
msgid "Preparing note for share"
msgstr ""
-#: src/strings.ts:1642
+#: src/strings.ts:1666
msgid "Preparing to restore backup file..."
msgstr ""
-#: src/strings.ts:431
+#: src/strings.ts:448
msgid "PRESETS"
msgstr ""
-#: src/strings.ts:2156
+#: src/strings.ts:2180
msgid "Pressing \"—\" will hide the app in your system tray."
msgstr ""
-#: src/strings.ts:2159
+#: src/strings.ts:2183
msgid "Pressing \"X\" will hide the app in your system tray."
msgstr ""
-#: src/strings.ts:2207
+#: src/strings.ts:2231
msgid "Prevent note title from appearing in tab/window title."
msgstr "<<<<<<< HEAD"
-#: src/strings.ts:2848
+#: src/strings.ts:2872
msgid "Prevent the screen from turning off while the editor is focused."
msgstr ""
-#: src/strings.ts:2350
+#: src/strings.ts:2374
msgid "Preview attachment"
msgstr ""
@@ -5499,43 +5570,43 @@ msgstr ""
msgid "Preview not available, content is encrypted."
msgstr ""
-#: src/strings.ts:2417
+#: src/strings.ts:2441
msgid "Previous match"
msgstr ""
-#: src/strings.ts:2482
+#: src/strings.ts:2506
msgid "Previous tab"
msgstr ""
-#: src/strings.ts:2061
+#: src/strings.ts:2085
msgid "Print"
msgstr ""
-#: src/strings.ts:2181
+#: src/strings.ts:2205
msgid "Privacy"
msgstr ""
-#: src/strings.ts:1183
+#: src/strings.ts:1207
msgid "Privacy & security"
msgstr ""
-#: src/strings.ts:1682
+#: src/strings.ts:1706
msgid "Privacy comes first."
msgstr ""
-#: src/strings.ts:840
+#: src/strings.ts:862
msgid "Privacy for everyone"
msgstr ""
-#: src/strings.ts:1202
+#: src/strings.ts:1226
msgid "Privacy mode"
msgstr ""
-#: src/strings.ts:1307
+#: src/strings.ts:1331
msgid "Privacy policy"
msgstr ""
-#: src/strings.ts:2627
+#: src/strings.ts:2651
msgid "Privacy Policy."
msgstr ""
@@ -5547,99 +5618,99 @@ msgstr ""
msgid "private analytics and bug reports."
msgstr ""
-#: src/strings.ts:2768
+#: src/strings.ts:2792
msgid "Private key is passphrase-protected. Please provide the decrypted key or a key without a passphrase."
msgstr ""
-#: src/strings.ts:2788
+#: src/strings.ts:2812
msgid "Private key required"
msgstr ""
-#: src/strings.ts:2754
+#: src/strings.ts:2778
msgid "Private key:"
msgstr ""
-#: src/strings.ts:831
+#: src/strings.ts:853
msgid "Private."
msgstr ""
-#: src/strings.ts:1748
+#: src/strings.ts:1772
msgid "Pro"
msgstr ""
-#: src/strings.ts:2507
+#: src/strings.ts:2531
msgid "Pro plan"
msgstr ""
-#: src/strings.ts:2074
+#: src/strings.ts:2098
msgid "Processing {collection}..."
msgstr ""
-#: src/strings.ts:2073
+#: src/strings.ts:2097
msgid "Processing..."
msgstr ""
-#: src/strings.ts:1262
+#: src/strings.ts:1286
msgid "Productivity"
msgstr ""
-#: src/strings.ts:2170
+#: src/strings.ts:2194
msgid "Profile"
msgstr ""
-#: src/strings.ts:1982
+#: src/strings.ts:2006
msgid "Profile updated"
msgstr ""
-#: src/strings.ts:1893
+#: src/strings.ts:1917
msgid "Properties"
msgstr ""
-#: src/strings.ts:2796
+#: src/strings.ts:2820
msgid "Protect incoming messages so only you can read them"
msgstr ""
-#: src/strings.ts:2584
+#: src/strings.ts:2608
msgid "Protect notes with app-level security"
msgstr ""
-#: src/strings.ts:404
+#: src/strings.ts:421
msgid "Protect your notes"
msgstr ""
-#: src/strings.ts:2793
+#: src/strings.ts:2817
msgid "Provide your own keys"
msgstr ""
-#: src/strings.ts:2218
+#: src/strings.ts:2242
msgid "Proxy"
msgstr ""
-#: src/strings.ts:2787
+#: src/strings.ts:2811
msgid "Public key required"
msgstr ""
-#: src/strings.ts:2753
+#: src/strings.ts:2777
msgid "Public key:"
msgstr ""
-#: src/strings.ts:488
+#: src/strings.ts:510
msgid "Publish"
msgstr ""
-#: src/strings.ts:489
+#: src/strings.ts:511
msgid "Publish note"
msgstr ""
-#: src/strings.ts:2666
+#: src/strings.ts:2690
msgid "Publish to the web"
msgstr ""
-#: src/strings.ts:491
+#: src/strings.ts:513
msgid "Publish your note to share it with others. You can set a password to protect it."
msgstr ""
-#: src/strings.ts:944
+#: src/strings.ts:966
msgid "Published"
msgstr ""
@@ -5647,107 +5718,115 @@ msgstr ""
msgid "Published at"
msgstr ""
-#: src/strings.ts:267
+#: src/strings.ts:268
msgid "Published note can only be viewed by someone with the password."
msgstr ""
-#: src/strings.ts:270
+#: src/strings.ts:279
+msgid "Published note link"
+msgstr ""
+
+#: src/strings.ts:273
msgid "Published note link will be automatically deleted once it is viewed by someone."
msgstr ""
-#: src/strings.ts:2618
+#: src/strings.ts:2642
msgid "Purchase"
msgstr ""
-#: src/strings.ts:1393
+#: src/strings.ts:1417
msgid "Quick note"
msgstr ""
-#: src/strings.ts:1263
+#: src/strings.ts:1287
msgid "Quick note notification"
msgstr ""
-#: src/strings.ts:1719
+#: src/strings.ts:1743
msgid "Quick note widgets"
msgstr ""
-#: src/strings.ts:2478
+#: src/strings.ts:2502
msgid "Quick open"
msgstr ""
-#: src/strings.ts:1265
+#: src/strings.ts:1289
msgid "Quickly create a note from the notification"
msgstr ""
-#: src/strings.ts:2370
+#: src/strings.ts:2394
msgid "Quote"
msgstr ""
-#: src/strings.ts:1379
+#: src/strings.ts:1403
msgid "Rate Notesnook on App Store"
msgstr ""
-#: src/strings.ts:1380
+#: src/strings.ts:1404
msgid "Rate Notesnook on Play Store"
msgstr ""
-#: src/strings.ts:591
+#: src/strings.ts:613
msgid "Rate now (It takes only a second)"
msgstr ""
-#: src/strings.ts:387
+#: src/strings.ts:404
msgid "Read full release notes on "
msgstr ""
-#: src/strings.ts:930
+#: src/strings.ts:952
msgid "Read only"
msgstr ""
-#: src/strings.ts:1287
+#: src/strings.ts:1311
msgid "Read the documentation to learn more about Notesnook"
msgstr ""
-#: src/strings.ts:1308
+#: src/strings.ts:1332
msgid "Read the privacy policy"
msgstr ""
-#: src/strings.ts:1306
+#: src/strings.ts:1330
msgid "Read the terms of service"
msgstr ""
-#: src/strings.ts:1643
+#: src/strings.ts:1667
msgid "Reading backup file..."
msgstr ""
-#: src/strings.ts:2592
+#: src/strings.ts:2616
msgid "Ready to take the next step on your private note taking journey?"
msgstr ""
-#: src/strings.ts:1108
+#: src/strings.ts:1132
msgid "Real-time sync"
msgstr ""
-#: src/strings.ts:2260
+#: src/strings.ts:2284
msgid "Receipt"
msgstr ""
-#: src/strings.ts:1638
+#: src/strings.ts:1662
msgid "Recent backups"
msgstr ""
-#: src/strings.ts:2493
+#: src/strings.ts:479
+msgid "Recent history"
+msgstr ""
+
+#: src/strings.ts:2517
msgid "Recents"
msgstr ""
-#: src/strings.ts:2436
+#: src/strings.ts:2460
msgid "Recheck all"
msgstr ""
-#: src/strings.ts:2028
+#: src/strings.ts:2052
msgid "Rechecking failed"
msgstr ""
-#: src/strings.ts:2461
+#: src/strings.ts:2485
msgid "Recipes"
msgstr ""
@@ -5755,23 +5834,23 @@ msgstr ""
msgid "Recommended"
msgstr ""
-#: src/strings.ts:2594
+#: src/strings.ts:2618
msgid "Recommended by Privacy Guides"
msgstr ""
-#: src/strings.ts:438
+#: src/strings.ts:455
msgid "Recover your account"
-msgstr "<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2892
+#: src/strings.ts:2916
msgid "Recovery code"
msgstr ""
-#: src/strings.ts:1023
+#: src/strings.ts:1045
msgid "Recovery codes copied!"
msgstr ""
-#: src/strings.ts:1028
+#: src/strings.ts:1050
msgid "Recovery codes saved!"
msgstr ""
@@ -5783,234 +5862,234 @@ msgstr ""
msgid "Recovery email sent!"
msgstr ""
-#: src/strings.ts:892
+#: src/strings.ts:914
msgid "Recovery key copied"
msgstr ""
-#: src/strings.ts:1068
+#: src/strings.ts:1090
msgid "Recovery key helps you recover your data if you forget your password."
msgstr ""
-#: src/strings.ts:890
+#: src/strings.ts:912
msgid "Recovery key QR code saved"
msgstr ""
-#: src/strings.ts:891
+#: src/strings.ts:913
msgid "Recovery key text file saved"
msgstr ""
-#: src/strings.ts:1943
+#: src/strings.ts:1967
msgid "Recovery successful!"
msgstr ""
-#: src/strings.ts:2473
+#: src/strings.ts:2497
msgid "Redeem"
msgstr ""
-#: src/strings.ts:2649
+#: src/strings.ts:2673
msgid "Redeem code"
msgstr ""
-#: src/strings.ts:2470
+#: src/strings.ts:2494
msgid "Redeem gift code"
msgstr ""
-#: src/strings.ts:2472
+#: src/strings.ts:2496
msgid "Redeeming gift code"
msgstr ""
-#: src/strings.ts:523
+#: src/strings.ts:545
msgid "Redo"
msgstr ""
-#: src/strings.ts:371
+#: src/strings.ts:385
msgid "Referenced in"
msgstr ""
-#: src/strings.ts:953
+#: src/strings.ts:975
msgid "References"
msgstr ""
-#: src/strings.ts:522
+#: src/strings.ts:544
msgid "Regenerate"
msgstr ""
-#: src/strings.ts:2124
+#: src/strings.ts:2148
msgid "Register"
msgstr ""
-#: src/strings.ts:435
+#: src/strings.ts:452
msgid "Release notes"
msgstr ""
-#: src/strings.ts:2495
+#: src/strings.ts:2519
msgid "Release track"
msgstr ""
-#: src/strings.ts:659
+#: src/strings.ts:681
msgid "Relevance"
msgstr ""
-#: src/strings.ts:1697
+#: src/strings.ts:1721
msgid "Reload app"
-msgstr "<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:1855
+#: src/strings.ts:1879
msgid "Relogin to your account"
msgstr ""
-#: src/strings.ts:1823
+#: src/strings.ts:1847
msgid "Remembered your password?"
-msgstr "<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2874
-#: src/strings.ts:2899
+#: src/strings.ts:2898
+#: src/strings.ts:2923
msgid "Remind before your trial ends"
msgstr ""
-#: src/strings.ts:943
+#: src/strings.ts:965
msgid "Remind me"
msgstr ""
-#: src/strings.ts:370
+#: src/strings.ts:384
msgid "Remind me in"
msgstr ""
-#: src/strings.ts:1530
+#: src/strings.ts:1554
msgid "Remind me of..."
msgstr ""
-#: src/strings.ts:287
+#: src/strings.ts:301
msgid "reminder"
msgstr ""
-#: src/strings.ts:297
+#: src/strings.ts:311
msgid "Reminder"
msgstr ""
-#: src/strings.ts:1268
+#: src/strings.ts:1292
msgid "Reminder notifications"
msgstr ""
-#: src/strings.ts:1586
+#: src/strings.ts:1610
msgid "Reminder time cannot be earlier than the current time."
msgstr ""
-#: src/strings.ts:307
+#: src/strings.ts:321
msgid "reminders"
msgstr ""
-#: src/strings.ts:317
-#: src/strings.ts:1266
-#: src/strings.ts:1549
+#: src/strings.ts:331
+#: src/strings.ts:1290
+#: src/strings.ts:1573
msgid "Reminders"
msgstr ""
-#: src/strings.ts:1401
+#: src/strings.ts:1425
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:1980
+#: src/strings.ts:2004
msgid "Reminders will not be active on this device as it does not support notifications."
msgstr ""
-#: src/strings.ts:784
+#: src/strings.ts:806
msgid "Remove"
msgstr ""
-#: src/strings.ts:1197
+#: src/strings.ts:1221
msgid "Remove all notes from the vault."
msgstr ""
-#: src/strings.ts:1224
+#: src/strings.ts:1248
msgid "Remove app lock password"
msgstr ""
-#: src/strings.ts:1228
+#: src/strings.ts:1252
msgid "Remove app lock password, app lock will be disabled if no other security method is enabled."
msgstr ""
-#: src/strings.ts:1223
+#: src/strings.ts:1247
msgid "Remove app lock pin"
msgstr ""
-#: src/strings.ts:1226
+#: src/strings.ts:1250
msgid "Remove app lock pin, app lock will be disabled if no other security method is enabled."
msgstr ""
-#: src/strings.ts:912
+#: src/strings.ts:934
msgid "Remove as default"
msgstr ""
-#: src/strings.ts:2354
+#: src/strings.ts:2378
msgid "Remove attachment"
msgstr ""
-#: src/strings.ts:949
+#: src/strings.ts:971
msgid "Remove from all"
msgstr ""
-#: src/strings.ts:922
+#: src/strings.ts:944
msgid "Remove from notebook"
msgstr ""
-#: src/strings.ts:2494
+#: src/strings.ts:2518
msgid "Remove from recents"
msgstr ""
-#: src/strings.ts:1062
+#: src/strings.ts:1084
msgid "Remove full name"
msgstr ""
-#: src/strings.ts:2301
+#: src/strings.ts:2325
msgid "Remove link"
msgstr ""
-#: src/strings.ts:1058
+#: src/strings.ts:1080
msgid "Remove profile picture"
msgstr ""
-#: src/strings.ts:1065
+#: src/strings.ts:1087
msgid "Remove your full name from profile"
msgstr ""
-#: src/strings.ts:1059
+#: src/strings.ts:1081
msgid "Remove your profile picture"
msgstr ""
-#: src/strings.ts:548
+#: src/strings.ts:570
msgid "Rename"
msgstr ""
-#: src/strings.ts:753
+#: src/strings.ts:775
msgid "Rename file"
msgstr ""
-#: src/strings.ts:907
+#: src/strings.ts:929
msgid "Reorder"
msgstr ""
-#: src/strings.ts:334
+#: src/strings.ts:348
msgid "Repeats daily at {date}"
msgstr ""
-#: src/strings.ts:2414
+#: src/strings.ts:2438
msgid "Replace"
msgstr ""
-#: src/strings.ts:2415
+#: src/strings.ts:2439
msgid "Replace all"
msgstr ""
-#: src/strings.ts:2201
+#: src/strings.ts:2225
msgid "Report"
msgstr ""
-#: src/strings.ts:1279
+#: src/strings.ts:1303
msgid "Report an issue"
msgstr ""
-#: src/strings.ts:475
+#: src/strings.ts:497
msgid "Report issue"
msgstr ""
@@ -6019,135 +6098,135 @@ msgid "Resend code in {seconds}s"
msgstr ""
#. placeholder {0}: seconds ? ` in ${seconds}` : ""
-#: src/strings.ts:679
+#: src/strings.ts:701
msgid "Resend code{0}"
msgstr ""
-#: src/strings.ts:1424
+#: src/strings.ts:1448
msgid "Resend email"
msgstr ""
-#: src/strings.ts:1847
+#: src/strings.ts:1871
msgid "Reset"
msgstr ""
-#: src/strings.ts:1939
+#: src/strings.ts:1963
msgid "Reset account password"
msgstr ""
-#: src/strings.ts:2521
+#: src/strings.ts:2545
msgid "Reset home"
msgstr ""
-#: src/strings.ts:1848
+#: src/strings.ts:1872
msgid "Reset selection"
msgstr ""
-#: src/strings.ts:1675
+#: src/strings.ts:1699
msgid "Reset server urls"
msgstr ""
-#: src/strings.ts:2057
+#: src/strings.ts:2081
msgid "Reset sidebar"
msgstr ""
-#: src/strings.ts:1169
+#: src/strings.ts:1193
msgid "Reset the toolbar to default settings"
msgstr ""
-#: src/strings.ts:1168
+#: src/strings.ts:1192
msgid "Reset toolbar"
msgstr ""
-#: src/strings.ts:1941
+#: src/strings.ts:1965
msgid "Resetting account password ({progress})"
msgstr ""
-#: src/strings.ts:2016
+#: src/strings.ts:2040
msgid "Restart now"
msgstr ""
-#: src/strings.ts:1674
+#: src/strings.ts:1698
msgid "Restart the app for changes to take effect."
msgstr ""
-#: src/strings.ts:1340
+#: src/strings.ts:1364
msgid "Restart the app to apply the changes"
msgstr ""
-#: src/strings.ts:1620
+#: src/strings.ts:1644
msgid "Restart the app."
msgstr ""
-#: src/strings.ts:570
+#: src/strings.ts:592
msgid "Restore"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2941
+#: src/strings.ts:2965
msgid "Restore actions"
msgstr ""
-#: src/strings.ts:1257
+#: src/strings.ts:1281
msgid "Restore backup"
msgstr ""
-#: src/strings.ts:2443
+#: src/strings.ts:2467
msgid "Restore backup?"
msgstr ""
-#: src/strings.ts:906
+#: src/strings.ts:928
msgid "Restore failed"
msgstr ""
-#: src/strings.ts:1637
+#: src/strings.ts:1661
msgid "Restore from files"
msgstr ""
-#: src/strings.ts:1687
+#: src/strings.ts:1711
msgid "Restore this version"
msgstr ""
-#: src/strings.ts:1258
+#: src/strings.ts:1282
msgid "Restore your data from a backup"
msgstr ""
-#: src/strings.ts:865
+#: src/strings.ts:887
msgid "Restored successfully"
msgstr ""
-#: src/strings.ts:375
+#: src/strings.ts:392
msgid "Restoring"
msgstr ""
-#: src/strings.ts:376
+#: src/strings.ts:393
msgid "Restoring {collection}..."
msgstr ""
-#: src/strings.ts:1639
+#: src/strings.ts:1663
msgid "Restoring backup..."
msgstr ""
-#: src/strings.ts:688
+#: src/strings.ts:710
msgid "Resubscribe from Playstore"
msgstr ""
-#: src/strings.ts:689
+#: src/strings.ts:711
msgid "Resubscribe to Pro"
msgstr ""
-#: src/strings.ts:2724
+#: src/strings.ts:2748
msgid "Retry"
msgstr ""
-#: src/strings.ts:515
+#: src/strings.ts:537
msgid "Reupload"
msgstr ""
-#: src/strings.ts:2047
+#: src/strings.ts:2071
msgid "Reveal in list"
msgstr ""
-#: src/strings.ts:2632
+#: src/strings.ts:2656
msgid "Review your current limits and unlock more with premium"
msgstr ""
@@ -6155,172 +6234,172 @@ msgstr ""
msgid "Revoke"
msgstr ""
-#: src/strings.ts:1201
+#: src/strings.ts:1225
msgid "Revoke biometric unlocking"
msgstr ""
-#: src/strings.ts:2738
+#: src/strings.ts:2762
msgid "Revoke Inbox API Key - {name}"
msgstr ""
-#: src/strings.ts:453
+#: src/strings.ts:470
msgid "Revoke vault fingerprint unlock"
msgstr ""
-#: src/strings.ts:1315
+#: src/strings.ts:1339
msgid "Roadmap"
msgstr ""
-#: src/strings.ts:2075
+#: src/strings.ts:2099
msgid "Root"
msgstr ""
-#: src/strings.ts:2054
+#: src/strings.ts:2078
msgid "Rotate left"
msgstr ""
-#: src/strings.ts:2055
+#: src/strings.ts:2079
msgid "Rotate right"
msgstr ""
-#: src/strings.ts:2324
+#: src/strings.ts:2348
msgid "Row properties"
msgstr ""
-#: src/strings.ts:547
+#: src/strings.ts:569
msgid "Run file check"
msgstr ""
-#: src/strings.ts:2096
+#: src/strings.ts:2120
msgid "Safe & encrypted notes"
msgstr ""
-#: src/strings.ts:630
+#: src/strings.ts:652
msgid "Sat"
msgstr ""
-#: src/strings.ts:621
+#: src/strings.ts:643
msgid "Saturday"
msgstr ""
-#: src/strings.ts:576
+#: src/strings.ts:598
msgid "Save"
msgstr ""
-#: src/strings.ts:479
+#: src/strings.ts:501
msgid "Save a backup of your notes"
msgstr ""
-#: src/strings.ts:566
+#: src/strings.ts:588
msgid "Save a copy"
msgstr ""
-#: src/strings.ts:492
+#: src/strings.ts:514
msgid "Save account recovery key"
msgstr ""
-#: src/strings.ts:585
+#: src/strings.ts:607
msgid "Save and continue"
msgstr ""
-#: src/strings.ts:2942
+#: src/strings.ts:2984
msgid "Save changes"
msgstr ""
-#: src/strings.ts:1066
+#: src/strings.ts:1088
msgid "Save data recovery key"
msgstr ""
-#: src/strings.ts:971
+#: src/strings.ts:993
msgid "Save failed. Vault is locked"
msgstr ""
-#: src/strings.ts:594
+#: src/strings.ts:616
msgid "Save QR code to gallery"
msgstr ""
-#: src/strings.ts:499
+#: src/strings.ts:521
msgid "Save recovery codes"
msgstr ""
-#: src/strings.ts:682
+#: src/strings.ts:704
msgid "Save to file"
msgstr ""
-#: src/strings.ts:595
+#: src/strings.ts:617
msgid "Save to text file"
msgstr ""
-#: src/strings.ts:1382
+#: src/strings.ts:1406
msgid "Save your account recovery key"
msgstr ""
-#: src/strings.ts:494
+#: src/strings.ts:516
msgid "Save your account recovery key in a safe place. You will need it to recover your account in case you forget your password."
msgstr ""
-#: src/strings.ts:501
+#: src/strings.ts:523
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:2433
+#: src/strings.ts:2457
msgid "Saved"
msgstr ""
-#: src/strings.ts:2434
+#: src/strings.ts:2458
msgid "Saving"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2950
+#: src/strings.ts:2974
msgid "Saving logs to your storage..."
msgstr ""
-#: src/strings.ts:1615
+#: src/strings.ts:1639
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 ""
-#: src/strings.ts:798
+#: src/strings.ts:820
msgid "Saving zip file ({progress}%). Please wait..."
msgstr ""
-#: src/strings.ts:799
+#: src/strings.ts:821
msgid "Saving zip file. Please wait..."
msgstr ""
-#: src/strings.ts:1749
+#: src/strings.ts:1773
msgid "Scan the QR code with your authenticator app"
msgstr ""
-#: src/strings.ts:2459
+#: src/strings.ts:2483
msgid "School work"
msgstr ""
-#: src/strings.ts:2532
+#: src/strings.ts:2556
msgid "Scroll to bottom"
msgstr ""
-#: src/strings.ts:2531
+#: src/strings.ts:2555
msgid "Scroll to top"
msgstr ""
-#: src/strings.ts:1534
-#: src/strings.ts:1555
+#: src/strings.ts:1558
+#: src/strings.ts:1579
msgid "Search"
msgstr ""
-#: src/strings.ts:1529
+#: src/strings.ts:1553
msgid "Search a note"
msgstr ""
-#: src/strings.ts:1527
+#: src/strings.ts:1551
msgid "Search a note to link to"
msgstr ""
-#: src/strings.ts:2475
+#: src/strings.ts:2499
msgid "Search for notes, notebooks, and tags..."
msgstr ""
-#: src/strings.ts:1565
+#: src/strings.ts:1589
msgid "Search in {routeName}"
msgstr ""
@@ -6372,99 +6451,103 @@ msgstr ""
msgid "Search in Trash"
msgstr ""
-#: src/strings.ts:2396
+#: src/strings.ts:2420
msgid "Search languages"
msgstr ""
-#: src/strings.ts:1515
+#: src/strings.ts:1539
msgid "Search notebooks"
msgstr ""
-#: src/strings.ts:1528
+#: src/strings.ts:1552
msgid "Search or add a tag"
msgstr ""
-#: src/strings.ts:1861
+#: src/strings.ts:1885
msgid "Search themes"
msgstr ""
-#: src/strings.ts:1532
+#: src/strings.ts:1556
msgid "Searching for {query}..."
msgstr ""
-#: src/strings.ts:894
+#: src/strings.ts:916
msgid "sec"
msgstr ""
-#: src/strings.ts:2582
+#: src/strings.ts:2606
msgid "Secure backup space for files and images."
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2940
+#: src/strings.ts:269
+msgid "Secure your note"
+msgstr ""
+
+#: src/strings.ts:2964
msgid "Security"
msgstr ""
-#: src/strings.ts:2180
+#: src/strings.ts:2204
msgid "Security & privacy"
msgstr ""
-#: src/strings.ts:2120
+#: src/strings.ts:2144
msgid "Security key"
msgstr ""
-#: src/strings.ts:2015
+#: src/strings.ts:2039
msgid "Security key successfully registered."
msgstr ""
-#: src/strings.ts:1109
+#: src/strings.ts:1133
msgid "See changes in editor instantly across devices."
msgstr ""
-#: src/strings.ts:1316
+#: src/strings.ts:1340
msgid "See what the future of Notesnook is going to be like."
msgstr ""
-#: src/strings.ts:1356
+#: src/strings.ts:1380
msgid "Select"
msgstr ""
-#: src/strings.ts:1636
+#: src/strings.ts:1660
msgid "Select a backup file from your device to restore backup"
msgstr ""
-#: src/strings.ts:2526
+#: src/strings.ts:2550
msgid "Select a notebook to move this notebook into, or unselect to move it to the root level."
msgstr ""
-#: src/strings.ts:2135
+#: src/strings.ts:2159
msgid "Select a theme"
msgstr ""
-#: src/strings.ts:1882
+#: src/strings.ts:1906
msgid "Select backup file"
msgstr ""
-#: src/strings.ts:642
+#: src/strings.ts:664
msgid "Select backups folder"
msgstr ""
-#: src/strings.ts:632
+#: src/strings.ts:654
msgid "Select date"
msgstr ""
-#: src/strings.ts:337
+#: src/strings.ts:351
msgid "Select day of the week to repeat the reminder."
msgstr ""
-#: src/strings.ts:1790
+#: src/strings.ts:1814
msgid "Select files to import"
msgstr ""
-#: src/strings.ts:1633
+#: src/strings.ts:1657
msgid "Select folder where Notesnook backup files are stored to view and restore them from the app"
msgstr ""
-#: src/strings.ts:1634
+#: src/strings.ts:1658
msgid "Select folder with backup files"
msgstr ""
@@ -6472,47 +6555,47 @@ msgstr ""
msgid "Select how you would like to recieve the code"
msgstr ""
-#: src/strings.ts:2391
+#: src/strings.ts:2415
msgid "Select language"
msgstr ""
-#: src/strings.ts:462
+#: src/strings.ts:484
msgid "Select notebooks"
msgstr ""
-#: src/strings.ts:463
+#: src/strings.ts:485
msgid "Select notebooks you want to add note(s) to."
msgstr ""
-#: src/strings.ts:2514
+#: src/strings.ts:2538
msgid "Select notes to link to \"{title}\""
msgstr ""
-#: src/strings.ts:341
+#: src/strings.ts:355
msgid "Select nth day of the month to repeat the reminder."
-msgstr "<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2859
+#: src/strings.ts:2883
msgid "Select Plan"
msgstr ""
-#: src/strings.ts:1844
+#: src/strings.ts:1868
msgid "Select profile picture"
msgstr ""
-#: src/strings.ts:2520
+#: src/strings.ts:2544
msgid "Select the default sidebar tab"
msgstr ""
-#: src/strings.ts:373
+#: src/strings.ts:390
msgid "Select the folder that includes your backup files to list them here."
msgstr ""
-#: src/strings.ts:2167
+#: src/strings.ts:2191
msgid "Select the languages the spell checker should check in."
msgstr ""
-#: src/strings.ts:2496
+#: src/strings.ts:2520
msgid "Select the release track for Notesnook."
msgstr ""
@@ -6520,11 +6603,11 @@ msgstr ""
msgid "SELECTED NOTE"
msgstr ""
-#: src/strings.ts:268
+#: src/strings.ts:270
msgid "Self destruct"
msgstr ""
-#: src/strings.ts:2202
+#: src/strings.ts:2226
msgid "Send"
msgstr ""
@@ -6540,47 +6623,47 @@ msgstr ""
msgid "Send code via SMS"
msgstr ""
-#: src/strings.ts:1886
+#: src/strings.ts:1910
msgid "Send recovery email"
msgstr ""
-#: src/strings.ts:1922
+#: src/strings.ts:1946
msgid "Sending recovery email"
msgstr ""
-#: src/strings.ts:1673
+#: src/strings.ts:1697
msgid "Server url changed"
msgstr ""
-#: src/strings.ts:1676
+#: src/strings.ts:1700
msgid "Server urls reset"
msgstr ""
-#: src/strings.ts:1654
+#: src/strings.ts:1678
msgid "Server used for login/sign up and authentication."
msgstr ""
-#: src/strings.ts:1659
+#: src/strings.ts:1683
msgid "Server used to host your published notes."
msgstr ""
-#: src/strings.ts:1657
+#: src/strings.ts:1681
msgid "Server used to receive important notifications & events."
msgstr ""
-#: src/strings.ts:1652
+#: src/strings.ts:1676
msgid "Server used to sync your notes & other data between devices."
msgstr ""
-#: src/strings.ts:1665
+#: src/strings.ts:1689
msgid "Server with host {host} not found."
msgstr ""
-#: src/strings.ts:2175
+#: src/strings.ts:2199
msgid "Servers"
msgstr ""
-#: src/strings.ts:2176
+#: src/strings.ts:2200
msgid "Servers configuration"
msgstr ""
@@ -6588,85 +6671,85 @@ msgstr ""
msgid "Session expired"
msgstr ""
-#: src/strings.ts:2228
+#: src/strings.ts:2252
msgid "Sessions"
msgstr ""
-#: src/strings.ts:994
+#: src/strings.ts:1016
msgid "Set a reminder"
msgstr ""
-#: src/strings.ts:730
+#: src/strings.ts:752
msgid "Set as dark theme"
msgstr ""
-#: src/strings.ts:913
+#: src/strings.ts:935
msgid "Set as default"
msgstr ""
-#: src/strings.ts:2518
+#: src/strings.ts:2542
msgid "Set as home"
msgstr ""
-#: src/strings.ts:731
+#: src/strings.ts:753
msgid "Set as light theme"
msgstr ""
-#: src/strings.ts:1355
+#: src/strings.ts:1379
msgid "Set automatic trash cleanup interval from Settings > Behaviour > Clean trash interval."
msgstr ""
-#: src/strings.ts:2683
+#: src/strings.ts:2707
msgid "Set expiry"
msgstr ""
-#: src/strings.ts:1332
+#: src/strings.ts:1356
msgid "Set full name"
msgstr ""
-#: src/strings.ts:1274
+#: src/strings.ts:1298
msgid "Set snooze time in minutes"
msgstr ""
-#: src/strings.ts:1273
+#: src/strings.ts:1297
msgid "Set the default time to snooze a reminder to when you press the snooze button on a notification."
msgstr ""
-#: src/strings.ts:1245
+#: src/strings.ts:1269
msgid "Set the interval to create a backup (with attachments) automatically."
msgstr ""
-#: src/strings.ts:1242
+#: src/strings.ts:1266
msgid "Set the interval to create a partial backup (without attachments) automatically."
msgstr ""
-#: src/strings.ts:430
+#: src/strings.ts:447
msgid "Set your name"
-msgstr "<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2890
+#: src/strings.ts:2914
msgid "Setting up your account..."
msgstr ""
-#: src/strings.ts:390
-#: src/strings.ts:1551
+#: src/strings.ts:407
+#: src/strings.ts:1575
msgid "Settings"
msgstr ""
-#: src/strings.ts:1221
-#: src/strings.ts:1222
+#: src/strings.ts:1245
+#: src/strings.ts:1246
msgid "Setup a new password for app lock"
msgstr ""
-#: src/strings.ts:1218
+#: src/strings.ts:1242
msgid "Setup a password to lock the app"
msgstr ""
-#: src/strings.ts:1216
+#: src/strings.ts:1240
msgid "Setup a pin to lock the app"
msgstr ""
-#: src/strings.ts:2220
+#: src/strings.ts:2244
msgid ""
"Setup an HTTP/HTTPS/SOCKS proxy.\n"
"\n"
@@ -6678,31 +6761,31 @@ msgid ""
"To remove the proxy, simply erase everything in the input."
msgstr ""
-#: src/strings.ts:1217
+#: src/strings.ts:1241
msgid "Setup app lock password"
msgstr ""
-#: src/strings.ts:1215
+#: src/strings.ts:1239
msgid "Setup app lock pin"
msgstr ""
-#: src/strings.ts:2837
+#: src/strings.ts:2861
msgid "Setup inbox keys"
msgstr ""
-#: src/strings.ts:683
+#: src/strings.ts:705
msgid "Setup secondary 2FA method"
msgstr ""
-#: src/strings.ts:996
+#: src/strings.ts:1018
msgid "Setup using an Authenticator app"
msgstr ""
-#: src/strings.ts:1003
+#: src/strings.ts:1025
msgid "Setup using email"
msgstr ""
-#: src/strings.ts:1010
+#: src/strings.ts:1032
msgid "Setup using SMS"
msgstr ""
@@ -6710,55 +6793,55 @@ msgstr ""
msgid "Share"
msgstr ""
-#: src/strings.ts:1718
+#: src/strings.ts:1742
msgid "Share & append to notes from anywhere"
msgstr ""
-#: src/strings.ts:1363
+#: src/strings.ts:1387
msgid "Share backup"
msgstr ""
-#: src/strings.ts:456
+#: src/strings.ts:473
msgid "Share note"
msgstr ""
-#: src/strings.ts:1814
+#: src/strings.ts:1838
msgid "Share Notesnook with friends!"
msgstr ""
-#: src/strings.ts:2695
+#: src/strings.ts:2719
msgid "Share things to Notesnook from anywhere using the Inbox API"
msgstr ""
-#: src/strings.ts:596
+#: src/strings.ts:618
msgid "Share to cloud"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2957
+#: src/strings.ts:2981
msgid "Share ZIP"
msgstr ""
-#: src/strings.ts:291
+#: src/strings.ts:305
msgid "shortcut"
msgstr ""
-#: src/strings.ts:301
+#: src/strings.ts:315
msgid "Shortcut"
msgstr ""
-#: src/strings.ts:2027
+#: src/strings.ts:2051
msgid "Shortcut removed"
msgstr ""
-#: src/strings.ts:311
+#: src/strings.ts:325
msgid "shortcuts"
msgstr ""
-#: src/strings.ts:323
+#: src/strings.ts:337
msgid "Shortcuts"
msgstr ""
-#: src/strings.ts:2803
+#: src/strings.ts:2827
msgid "Show"
msgstr ""
@@ -6766,11 +6849,11 @@ msgstr ""
msgid "Sign up"
msgstr ""
-#: src/strings.ts:1048
+#: src/strings.ts:1070
msgid "Signed up on {date}"
msgstr ""
-#: src/strings.ts:779
+#: src/strings.ts:801
msgid "Signup failed"
msgstr ""
@@ -6778,99 +6861,99 @@ msgstr ""
msgid "Silent"
msgstr ""
-#: src/strings.ts:2365
+#: src/strings.ts:2389
msgid "Sink list item"
msgstr ""
-#: src/strings.ts:2068
+#: src/strings.ts:2092
msgid "Size"
msgstr ""
-#: src/strings.ts:552
+#: src/strings.ts:574
msgid "Skip"
-msgstr ""
+msgstr "<<<<<<< HEAD"
-#: src/strings.ts:675
+#: src/strings.ts:697
msgid "Skip introduction"
msgstr ""
-#: src/strings.ts:1631
+#: src/strings.ts:1655
msgid "Some exported notes are locked, Unlock to export them"
msgstr ""
-#: src/strings.ts:1498
+#: src/strings.ts:1522
msgid "Some notes are published"
msgstr ""
-#: src/strings.ts:1693
+#: src/strings.ts:1717
msgid "Something went wrong"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2956
+#: src/strings.ts:2980
msgid "Something went wrong while preparing your debug logs. This can happen if no storage location was selected."
msgstr ""
-#: src/strings.ts:2052
+#: src/strings.ts:2076
msgid "Sort"
msgstr ""
-#: src/strings.ts:538
+#: src/strings.ts:560
msgid "Sort by"
msgstr ""
-#: src/strings.ts:2186
+#: src/strings.ts:2210
msgid "Source code"
msgstr ""
-#: src/strings.ts:2392
+#: src/strings.ts:2416
msgid "Spaces"
msgstr ""
-#: src/strings.ts:2642
+#: src/strings.ts:2666
msgid "Special Offer"
msgstr ""
-#: src/strings.ts:2163
+#: src/strings.ts:2187
msgid "Spell check"
msgstr ""
-#: src/strings.ts:2331
+#: src/strings.ts:2355
msgid "Split cells"
msgstr ""
-#: src/strings.ts:2497
+#: src/strings.ts:2521
msgid "Stable"
msgstr ""
-#: src/strings.ts:1132
+#: src/strings.ts:1156
msgid "Start"
msgstr ""
-#: src/strings.ts:1857
+#: src/strings.ts:1881
msgid "Start account recovery"
msgstr ""
-#: src/strings.ts:1852
+#: src/strings.ts:1876
msgid "Start import"
msgstr ""
-#: src/strings.ts:1849
+#: src/strings.ts:1873
msgid "Start importing now"
msgstr ""
-#: src/strings.ts:2151
+#: src/strings.ts:2175
msgid "Start minimized"
msgstr ""
-#: src/strings.ts:1537
+#: src/strings.ts:1561
msgid "Start organizing your ideas, notes and thoughts"
msgstr ""
-#: src/strings.ts:1784
+#: src/strings.ts:1808
msgid "Start over"
msgstr ""
-#: src/strings.ts:968
+#: src/strings.ts:990
msgid "Start writing to create a new note"
msgstr ""
@@ -6878,155 +6961,155 @@ msgstr ""
msgid "Start writing to save your note."
msgstr ""
-#: src/strings.ts:1628
+#: src/strings.ts:1652
msgid "Start writing your note..."
msgstr ""
-#: src/strings.ts:2259
+#: src/strings.ts:2283
msgid "Status"
msgstr ""
-#: src/strings.ts:2510
+#: src/strings.ts:2534
msgid "Storage"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2922
+#: src/strings.ts:2946
msgid "Storage & cleanup"
msgstr ""
-#: src/strings.ts:2937
+#: src/strings.ts:2961
msgid "Storage & location"
msgstr ""
-#: src/strings.ts:1575
+#: src/strings.ts:1599
msgid "Streaming not supported"
msgstr ""
-#: src/strings.ts:2297
+#: src/strings.ts:2321
msgid "Strikethrough"
msgstr ""
-#: src/strings.ts:2261
+#: src/strings.ts:2285
msgid "Subgroup 1"
msgstr ""
-#: src/strings.ts:2021
+#: src/strings.ts:2045
msgid "Subgroup added"
msgstr ""
-#: src/strings.ts:582
+#: src/strings.ts:604
msgid "Submit"
msgstr ""
-#: src/strings.ts:2619
+#: src/strings.ts:2643
msgid "Subscribe"
msgstr ""
-#: src/strings.ts:2620
+#: src/strings.ts:2644
msgid "Subscribe & Start Your Free Trial"
msgstr ""
-#: src/strings.ts:1043
+#: src/strings.ts:1065
msgid "Subscribe to Pro"
msgstr ""
-#: src/strings.ts:709
+#: src/strings.ts:731
msgid "Subscribed on Android"
msgstr ""
-#: src/strings.ts:702
+#: src/strings.ts:724
msgid "Subscribed on iOS"
msgstr ""
-#: src/strings.ts:1327
+#: src/strings.ts:1351
msgid "Subscribed on web"
msgstr ""
-#: src/strings.ts:716
+#: src/strings.ts:738
msgid "Subscribed on Web"
msgstr ""
-#: src/strings.ts:722
+#: src/strings.ts:744
msgid "Subscribed using gift card"
msgstr ""
-#: src/strings.ts:2308
+#: src/strings.ts:2332
msgid "Subscript"
msgstr ""
-#: src/strings.ts:696
+#: src/strings.ts:718
msgid "Subscription awarded from Streetwriters"
msgstr ""
-#: src/strings.ts:1047
+#: src/strings.ts:1069
msgid "Subscription details"
msgstr ""
-#: src/strings.ts:1081
+#: src/strings.ts:1105
msgid "Subscription not activated?"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2916
+#: src/strings.ts:2940
msgid "Subscription required"
msgstr ""
-#: src/strings.ts:624
+#: src/strings.ts:646
msgid "Sun"
msgstr ""
-#: src/strings.ts:615
+#: src/strings.ts:637
msgid "Sunday"
msgstr ""
-#: src/strings.ts:2309
+#: src/strings.ts:2333
msgid "Superscript"
msgstr ""
-#: src/strings.ts:1491
+#: src/strings.ts:1515
msgid "Switch to search/replace mode"
msgstr ""
-#: src/strings.ts:2172
+#: src/strings.ts:2196
msgid "Sync"
msgstr ""
-#: src/strings.ts:1102
+#: src/strings.ts:1126
msgid "Sync behavior"
msgstr ""
-#: src/strings.ts:396
+#: src/strings.ts:413
msgid "Sync failed"
msgstr ""
-#: src/strings.ts:1385
+#: src/strings.ts:1409
msgid "Sync is disabled"
msgstr ""
-#: src/strings.ts:395
+#: src/strings.ts:412
msgid "Sync now"
msgstr ""
-#: src/strings.ts:931
+#: src/strings.ts:953
msgid "Sync off"
msgstr ""
-#: src/strings.ts:1650
+#: src/strings.ts:1674
msgid "Sync server"
msgstr ""
-#: src/strings.ts:1100
+#: src/strings.ts:1124
msgid "Sync settings"
msgstr ""
-#: src/strings.ts:1115
+#: src/strings.ts:1139
msgid "Sync your notes in the background even when the app is closed. This is an experimental feature. If you face any issues, please turn it off."
msgstr ""
-#: src/strings.ts:397
+#: src/strings.ts:414
msgid "Synced"
msgstr ""
-#: src/strings.ts:394
+#: src/strings.ts:411
msgid "Syncing"
msgstr ""
@@ -7034,96 +7117,96 @@ msgstr ""
msgid "Syncing your data"
msgstr ""
-#: src/strings.ts:1729
+#: src/strings.ts:1753
msgid "Syncing your notes"
msgstr ""
-#: src/strings.ts:2377
+#: src/strings.ts:2401
msgid "Table"
msgstr ""
-#: src/strings.ts:540
+#: src/strings.ts:562
msgid "Table of contents"
msgstr ""
-#: src/strings.ts:2322
+#: src/strings.ts:2346
msgid "Table settings"
msgstr ""
-#: src/strings.ts:2571
+#: src/strings.ts:2595
msgid "tables, outlines, block level note linking"
msgstr ""
-#: src/strings.ts:531
+#: src/strings.ts:553
msgid "Tabs"
msgstr ""
-#: src/strings.ts:286
+#: src/strings.ts:300
msgid "tag"
msgstr ""
-#: src/strings.ts:296
+#: src/strings.ts:310
msgid "Tag"
msgstr ""
-#: src/strings.ts:306
+#: src/strings.ts:320
msgid "tags"
msgstr ""
-#: src/strings.ts:316
-#: src/strings.ts:1552
+#: src/strings.ts:330
+#: src/strings.ts:1576
msgid "Tags"
msgstr ""
-#: src/strings.ts:1570
+#: src/strings.ts:1594
msgid "Take a backup before logging out"
msgstr ""
-#: src/strings.ts:1237
+#: src/strings.ts:1261
msgid "Take a full backup of your data with all attachments"
msgstr ""
-#: src/strings.ts:1239
+#: src/strings.ts:1263
msgid "Take a partial backup of your data that does not include attachments"
msgstr ""
-#: src/strings.ts:2376
+#: src/strings.ts:2400
msgid "Take a photo using camera"
msgstr ""
-#: src/strings.ts:1395
+#: src/strings.ts:1419
msgid "Take note"
msgstr ""
-#: src/strings.ts:1683
+#: src/strings.ts:1707
msgid "Take notes privately."
msgstr ""
-#: src/strings.ts:676
+#: src/strings.ts:698
msgid "Taking too long? Reload editor"
msgstr ""
-#: src/strings.ts:1479
+#: src/strings.ts:1503
msgid "Tap here to change sorting"
msgstr ""
-#: src/strings.ts:1483
+#: src/strings.ts:1507
msgid "Tap here to jump to a section"
msgstr ""
-#: src/strings.ts:1391
+#: src/strings.ts:1415
msgid "Tap here to update to the latest version"
msgstr ""
-#: src/strings.ts:1619
+#: src/strings.ts:1643
msgid "Tap on \"Dismiss\" and copy the contents of your note so they are not lost."
msgstr ""
-#: src/strings.ts:1394
+#: src/strings.ts:1418
msgid "Tap on \"Take note\" to add a note."
msgstr ""
-#: src/strings.ts:420
+#: src/strings.ts:437
msgid "Tap to apply again"
msgstr ""
@@ -7135,31 +7218,31 @@ msgstr ""
msgid "Tap to deselect"
msgstr ""
-#: src/strings.ts:670
+#: src/strings.ts:692
msgid "Tap to stop reordering"
msgstr ""
-#: src/strings.ts:1375
+#: src/strings.ts:1399
msgid "Tap to try again"
msgstr ""
-#: src/strings.ts:276
+#: src/strings.ts:290
msgid "Tap twice to confirm you have saved the recovery key."
msgstr ""
-#: src/strings.ts:2382
+#: src/strings.ts:2406
msgid "Task list"
msgstr ""
-#: src/strings.ts:2452
+#: src/strings.ts:2476
msgid "Tasks"
msgstr ""
-#: src/strings.ts:1184
+#: src/strings.ts:1208
msgid "Telemetry"
msgstr ""
-#: src/strings.ts:1519
+#: src/strings.ts:1543
msgid ""
"Tell us more about the issue you are facing.\n"
"\n"
@@ -7170,15 +7253,15 @@ msgid ""
"- Things you have tried etc."
msgstr ""
-#: src/strings.ts:1518
+#: src/strings.ts:1542
msgid "Tell us what happened"
msgstr ""
-#: src/strings.ts:1305
+#: src/strings.ts:1329
msgid "Terms of service"
msgstr ""
-#: src/strings.ts:2625
+#: src/strings.ts:2649
msgid "Terms of Service"
msgstr ""
@@ -7186,111 +7269,111 @@ msgstr ""
msgid "Terms of Service "
msgstr ""
-#: src/strings.ts:1649
+#: src/strings.ts:1673
msgid "Test connection"
msgstr ""
-#: src/strings.ts:1672
+#: src/strings.ts:1696
msgid "Test connection before changing server urls"
-msgstr "<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2861
+#: src/strings.ts:2885
msgid "Testimonials"
msgstr ""
-#: src/strings.ts:2320
+#: src/strings.ts:2344
msgid "Text color"
msgstr ""
-#: src/strings.ts:2318
+#: src/strings.ts:2342
msgid "Text direction"
msgstr ""
-#: src/strings.ts:1813
+#: src/strings.ts:1837
msgid "Thank you for choosing end-to-end encrypted note taking. Now you can sync your notes to unlimited devices."
msgstr ""
-#: src/strings.ts:2077
+#: src/strings.ts:2101
msgid "Thank you for reporting!"
msgstr ""
-#: src/strings.ts:2598
+#: src/strings.ts:2622
msgid "Thank you for subscribing"
msgstr ""
-#: src/strings.ts:2637
+#: src/strings.ts:2661
msgid "Thank you for the purchase"
msgstr ""
-#: src/strings.ts:481
+#: src/strings.ts:503
msgid "Thank you for updating Notesnook! We will be applying some minor changes for a better note taking experience."
msgstr ""
-#: src/strings.ts:2078
+#: src/strings.ts:2102
msgid "Thank you for your feedback!"
msgstr ""
-#: src/strings.ts:2112
+#: src/strings.ts:2136
msgid "Thank you. You are the proof that privacy always comes first."
msgstr ""
-#: src/strings.ts:1670
+#: src/strings.ts:1694
msgid "The {title} at {url} is not compatible with this client."
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2953
+#: src/strings.ts:2977
msgid "The encrypted archive is available in your default local storage structure and can be safely sent to the Notesnook customer care team."
msgstr ""
-#: src/strings.ts:2682
+#: src/strings.ts:2706
msgid "The incoming note could not be unlocked with the provided password. Enter the correct password for the incoming note"
msgstr ""
-#: src/strings.ts:2844
+#: src/strings.ts:2868
msgid "The password for decrypting the Colornote backup file."
msgstr ""
-#: src/strings.ts:2119
+#: src/strings.ts:2143
msgid "The password/pin for unlocking the app."
msgstr ""
-#: src/strings.ts:336
+#: src/strings.ts:350
msgid "The reminder will repeat daily at {date}."
msgstr ""
-#: src/strings.ts:339
+#: src/strings.ts:353
msgid "The reminder will repeat every year on {date}."
msgstr ""
-#: src/strings.ts:1739
+#: src/strings.ts:1763
msgid "The reminder will start on {date} at {time}."
msgstr ""
-#: src/strings.ts:2122
+#: src/strings.ts:2146
msgid "The security key for unlocking the app. This is the most secure method."
msgstr ""
-#: src/strings.ts:1668
+#: src/strings.ts:1692
msgid "The URL you have given ({url}) does not point to the {server}."
msgstr ""
-#: src/strings.ts:1139
+#: src/strings.ts:1163
msgid "Themes"
msgstr ""
-#: src/strings.ts:282
+#: src/strings.ts:296
msgid "There are no blocks in this note."
msgstr ""
-#: src/strings.ts:379
+#: src/strings.ts:396
msgid "There are no new updates at the moment."
msgstr ""
-#: src/strings.ts:2275
+#: src/strings.ts:2299
msgid "These items will be **kept in your Trash for {interval} days** after which they will be permanently deleted."
msgstr ""
-#: src/strings.ts:1947
+#: src/strings.ts:1971
msgid "This action is IRREVERSIBLE."
msgstr ""
@@ -7298,230 +7381,226 @@ msgstr ""
msgid "This device"
msgstr ""
-#: src/strings.ts:1710
+#: src/strings.ts:1734
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:1702
+#: src/strings.ts:1726
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:1706
+#: src/strings.ts:1730
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:1704
+#: src/strings.ts:1728
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:1700
+#: src/strings.ts:1724
msgid "This error usually means the database file is either corrupt or it could not be decrypted."
msgstr ""
-#: src/strings.ts:1708
+#: src/strings.ts:1732
msgid "This error usually means the search index is corrupted."
msgstr ""
-#: src/strings.ts:2764
+#: src/strings.ts:2788
msgid "This feature is not available on this plan."
msgstr ""
-#: src/strings.ts:1961
+#: src/strings.ts:1985
msgid "This image cannot be previewed"
msgstr ""
-#: src/strings.ts:2621
+#: src/strings.ts:2645
msgid "This is a one time purchase, no subscription."
msgstr ""
-#: src/strings.ts:2072
+#: src/strings.ts:2096
msgid "This may take a while"
msgstr ""
-#: src/strings.ts:1121
-#: src/strings.ts:1130
+#: src/strings.ts:1145
+#: src/strings.ts:1154
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:2688
+#: src/strings.ts:2712
msgid "This note is empty"
msgstr ""
-#: src/strings.ts:1621
+#: src/strings.ts:1645
msgid "This note is locked"
msgstr ""
-#: src/strings.ts:970
+#: src/strings.ts:992
msgid "This note is locked. Unlock note to save changes"
msgstr ""
-#: src/strings.ts:280
-msgid "This note is not linked to any other note."
-msgstr ""
-
-#: src/strings.ts:279
-msgid "This note is not referenced in other notes."
-msgstr ""
-
#: src/strings.ts:263
msgid "This note will be published to a public URL."
msgstr ""
-#: src/strings.ts:2128
+#: src/strings.ts:2152
msgid "This username will be used to distinguish between different credentials in your security key. Make sure it is unique."
msgstr ""
-#: src/strings.ts:1325
+#: src/strings.ts:1349
msgid "This version of Notesnook app does not support in-app purchases. Kindly login on the Notesnook web app to make the purchase."
msgstr ""
-#: src/strings.ts:1092
+#: src/strings.ts:1116
msgid "This will clear all data stored on THIS DEVICE. Make sure to run sync before logging out."
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2908
+#: src/strings.ts:2932
msgid "This will overwrite all data on the server with the data from this device."
msgstr ""
-#: src/strings.ts:2906
+#: src/strings.ts:2930
msgid "This will overwrite all data on this device with the data from the server."
msgstr ""
-#: src/strings.ts:628
+#: src/strings.ts:650
msgid "Thu"
msgstr ""
-#: src/strings.ts:619
+#: src/strings.ts:641
msgid "Thursday"
msgstr ""
-#: src/strings.ts:1869
+#: src/strings.ts:1893
msgid "Time"
msgstr ""
-#: src/strings.ts:1156
+#: src/strings.ts:1180
msgid "Time format"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2933
+#: src/strings.ts:2957
msgid "Timestamp"
msgstr ""
-#: src/strings.ts:673
+#: src/strings.ts:695
msgid "TIP"
msgstr ""
-#: src/strings.ts:651
-#: src/strings.ts:656
+#: src/strings.ts:673
+#: src/strings.ts:678
msgid "Title"
msgstr ""
-#: src/strings.ts:1179
+#: src/strings.ts:1203
msgid "Title format"
msgstr ""
-#: src/strings.ts:2777
+#: src/strings.ts:2801
msgid "Title is required"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2919
+#: src/strings.ts:2943
msgid "to claim the promotion directly."
msgstr ""
-#: src/strings.ts:1210
+#: src/strings.ts:1234
msgid "To use app lock, you must enable biometrics such as Fingerprint lock or Face ID on your phone."
msgstr ""
-#: src/strings.ts:1839
+#: src/strings.ts:1863
msgid "Toggle dark/light mode"
msgstr ""
-#: src/strings.ts:2500
+#: src/strings.ts:2524
msgid "Toggle focus mode"
msgstr ""
-#: src/strings.ts:2389
+#: src/strings.ts:2413
msgid "Toggle indentation mode"
msgstr ""
-#: src/strings.ts:2418
+#: src/strings.ts:2442
msgid "Toggle replace"
msgstr ""
-#: src/strings.ts:2489
+#: src/strings.ts:2513
msgid "Toggle theme"
msgstr ""
-#: src/strings.ts:2169
+#: src/strings.ts:2193
msgid "Toolbar"
msgstr ""
-#: src/strings.ts:1170
+#: src/strings.ts:1194
msgid "Toolbar reset to default preset"
msgstr ""
-#: src/strings.ts:1348
-#: src/strings.ts:1550
+#: src/strings.ts:280
+msgid "Total views"
+msgstr ""
+
+#: src/strings.ts:1372
+#: src/strings.ts:1574
msgid "Trash"
msgstr ""
-#: src/strings.ts:1347
+#: src/strings.ts:1371
msgid "Trash cleared successfully!"
msgstr ""
-#: src/strings.ts:1353
+#: src/strings.ts:1377
msgid "Trash gets automatically cleaned up after {days} days"
msgstr ""
-#: src/strings.ts:1351
+#: src/strings.ts:1375
msgid "Trash gets automatically cleaned up daily"
msgstr ""
-#: src/strings.ts:1105
+#: src/strings.ts:1129
msgid "Troubleshooting"
msgstr ""
-#: src/strings.ts:2652
+#: src/strings.ts:2676
msgid "Trusted partners who share our commitment to privacy, transparency, and user freedom."
msgstr ""
-#: src/strings.ts:2588
+#: src/strings.ts:2612
msgid "Try {plan} for free"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2958
+#: src/strings.ts:2982
msgid "Try again"
msgstr ""
-#: src/strings.ts:1487
+#: src/strings.ts:1511
msgid "Try compact mode to fit more items on screen"
msgstr ""
-#: src/strings.ts:1851
+#: src/strings.ts:1875
msgid "Try free for 14 days"
msgstr ""
-#: src/strings.ts:2564
+#: src/strings.ts:2588
msgid "Try it for free"
msgstr ""
-#: src/strings.ts:626
+#: src/strings.ts:648
msgid "Tue"
msgstr ""
-#: src/strings.ts:617
+#: src/strings.ts:639
msgid "Tuesday"
msgstr ""
-#: src/strings.ts:908
+#: src/strings.ts:930
msgid "Turn off reminder"
msgstr ""
-#: src/strings.ts:909
+#: src/strings.ts:931
msgid "Turn on reminder"
msgstr ""
-#: src/strings.ts:1112
+#: src/strings.ts:1136
msgid "Turns off syncing completely on this device. Any changes made will remain local only and new changes from your other devices won't sync to this device."
msgstr ""
@@ -7529,63 +7608,63 @@ msgstr ""
msgid "Two factor authentication"
msgstr ""
-#: src/strings.ts:496
+#: src/strings.ts:518
msgid "Two-factor authentication"
msgstr ""
-#: src/strings.ts:505
+#: src/strings.ts:527
msgid "Two-factor authentication enabled"
msgstr ""
-#: src/strings.ts:1526
+#: src/strings.ts:1550
msgid "Type # to search for headings"
msgstr ""
-#: src/strings.ts:1533
+#: src/strings.ts:1557
msgid "Type a keyword"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2927
+#: src/strings.ts:2951
msgid "Typography"
msgstr ""
-#: src/strings.ts:1576
+#: src/strings.ts:1600
msgid "Unable to resolve download url"
msgstr ""
-#: src/strings.ts:1579
+#: src/strings.ts:1603
msgid "Unable to send 2FA code"
msgstr ""
-#: src/strings.ts:2524
+#: src/strings.ts:2548
msgid "Unarchive"
msgstr ""
-#: src/strings.ts:2296
+#: src/strings.ts:2320
msgid "Underline"
msgstr ""
-#: src/strings.ts:568
+#: src/strings.ts:590
msgid "Undo"
msgstr ""
-#: src/strings.ts:870
+#: src/strings.ts:892
msgid "Unfavorite"
msgstr ""
-#: src/strings.ts:2633
+#: src/strings.ts:2657
msgid "Unlimited"
-msgstr "<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2870
+#: src/strings.ts:2894
msgid "Unlimited notes and attachments"
msgstr ""
-#: src/strings.ts:948
+#: src/strings.ts:970
msgid "Unlink from all"
msgstr ""
-#: src/strings.ts:869
+#: src/strings.ts:891
msgid "Unlink notebook"
msgstr ""
@@ -7593,44 +7672,44 @@ msgstr ""
msgid "Unlock"
msgstr ""
-#: src/strings.ts:2680
+#: src/strings.ts:2704
msgid "Unlock incoming note"
msgstr ""
-#: src/strings.ts:1405
+#: src/strings.ts:1429
msgid "Unlock more colors with Notesnook Pro"
msgstr ""
-#: src/strings.ts:458
-#: src/strings.ts:560
+#: src/strings.ts:475
+#: src/strings.ts:582
msgid "Unlock note"
msgstr ""
-#: src/strings.ts:904
+#: src/strings.ts:926
msgid "Unlock note to delete it"
msgstr ""
-#: src/strings.ts:2691
+#: src/strings.ts:2715
msgid "Unlock note to merge conflicts"
msgstr ""
-#: src/strings.ts:2580
+#: src/strings.ts:2604
msgid "Unlock premium features and extra storage"
msgstr ""
-#: src/strings.ts:1230
+#: src/strings.ts:1254
msgid "Unlock the app with biometric authentication. This requires biometrics to be enabled on your device."
msgstr ""
-#: src/strings.ts:1959
+#: src/strings.ts:1983
msgid "Unlock vault"
msgstr ""
-#: src/strings.ts:546
+#: src/strings.ts:568
msgid "Unlock with biometrics"
msgstr ""
-#: src/strings.ts:1854
+#: src/strings.ts:1878
msgid "Unlock with security key"
msgstr ""
@@ -7638,114 +7717,114 @@ msgstr ""
msgid "Unlock your notes"
msgstr ""
-#: src/strings.ts:1200
+#: src/strings.ts:1224
msgid "Unlock your vault with biometric authentication"
msgstr ""
-#: src/strings.ts:1737
+#: src/strings.ts:1761
msgid "Unlocking"
msgstr ""
-#: src/strings.ts:915
+#: src/strings.ts:937
msgid "Unpin"
msgstr ""
-#: src/strings.ts:945
+#: src/strings.ts:967
msgid "Unpin notification"
msgstr ""
-#: src/strings.ts:589
+#: src/strings.ts:611
msgid "Unpublish"
msgstr ""
-#: src/strings.ts:1499
+#: src/strings.ts:1523
msgid "Unpublish notes to delete them"
msgstr ""
-#: src/strings.ts:2123
+#: src/strings.ts:2147
msgid "Unregister"
msgstr ""
-#: src/strings.ts:2684
+#: src/strings.ts:2708
msgid "Unset expiry"
msgstr ""
#: src/strings.ts:210
-#: src/strings.ts:2398
+#: src/strings.ts:2422
msgid "Untitled"
msgstr ""
-#: src/strings.ts:590
+#: src/strings.ts:612
msgid "Update"
msgstr ""
-#: src/strings.ts:380
+#: src/strings.ts:397
msgid "Update available"
msgstr ""
-#: src/strings.ts:1392
+#: src/strings.ts:1416
msgid "Update now"
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2924
+#: src/strings.ts:2948
msgid "Updates"
msgstr ""
-#: src/strings.ts:2538
+#: src/strings.ts:2562
msgid "Upgrade"
msgstr ""
-#: src/strings.ts:1945
+#: src/strings.ts:1969
msgid "Upgrade now"
msgstr ""
-#: src/strings.ts:2537
+#: src/strings.ts:2561
msgid "Upgrade plan"
msgstr ""
-#: src/strings.ts:2563
+#: src/strings.ts:2587
msgid "Upgrade plan to {plan} to use this feature."
msgstr ""
-#: src/strings.ts:1966
+#: src/strings.ts:1990
msgid "Upgrade to Notesnook Pro to add colors."
msgstr ""
-#: src/strings.ts:1967
+#: src/strings.ts:1991
msgid "Upgrade to Notesnook Pro to create more tags."
msgstr ""
-#: src/strings.ts:751
+#: src/strings.ts:773
msgid "Upgrade to Pro"
msgstr ""
-#: src/strings.ts:2648
+#: src/strings.ts:2672
msgid "Upgrade to redeem"
msgstr ""
-#: src/strings.ts:512
+#: src/strings.ts:534
msgid "Upload"
msgstr ""
-#: src/strings.ts:2375
+#: src/strings.ts:2399
msgid "Upload from disk"
msgstr ""
-#: src/strings.ts:513
-#: src/strings.ts:1678
+#: src/strings.ts:535
+#: src/strings.ts:1702
msgid "Uploaded"
msgstr ""
-#: src/strings.ts:801
+#: src/strings.ts:823
msgid "Uploaded file verification failed."
msgstr ""
#: src/strings.ts:65
-#: src/strings.ts:514
+#: src/strings.ts:536
msgid "Uploading"
msgstr ""
-#: src/strings.ts:765
+#: src/strings.ts:787
msgid "Uploads"
msgstr ""
@@ -7753,79 +7832,79 @@ msgstr ""
msgid "Urgent"
msgstr ""
-#: src/strings.ts:2425
+#: src/strings.ts:2449
msgid "URL"
msgstr ""
-#: src/strings.ts:1816
+#: src/strings.ts:1840
msgid "Use"
msgstr ""
-#: src/strings.ts:465
+#: src/strings.ts:487
msgid "Use {keyboardShortcut}+click to select multiple notebooks"
msgstr ""
-#: src/strings.ts:1829
+#: src/strings.ts:1853
msgid "Use a backup file"
msgstr ""
-#: src/strings.ts:1927
+#: src/strings.ts:1951
msgid "Use a data recovery key to reset your account password."
msgstr ""
-#: src/strings.ts:558
+#: src/strings.ts:580
msgid "Use account password"
msgstr ""
-#: src/strings.ts:2570
+#: src/strings.ts:2594
msgid "Use advanced note taking features like"
msgstr ""
-#: src/strings.ts:997
+#: src/strings.ts:1019
msgid "Use an authenticator app to generate 2FA codes."
msgstr ""
-#: src/strings.ts:2209
+#: src/strings.ts:2233
msgid "Use custom DNS"
msgstr ""
-#: src/strings.ts:1145
+#: src/strings.ts:1169
msgid "Use dark mode for the app"
msgstr ""
-#: src/strings.ts:1648
+#: src/strings.ts:1672
msgid "Use encryption key"
msgstr ""
-#: src/strings.ts:2794
+#: src/strings.ts:2818
msgid "Use existing PGP keys if you already have them"
msgstr ""
-#: src/strings.ts:1182
+#: src/strings.ts:1206
msgid "Use markdown shortcuts in the editor"
msgstr ""
-#: src/strings.ts:2162
+#: src/strings.ts:2186
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:2160
+#: src/strings.ts:2184
msgid "Use native titlebar"
msgstr "<<<<<<< HEAD"
-#: src/strings.ts:1856
+#: src/strings.ts:1880
msgid "Use offline"
msgstr ""
-#: src/strings.ts:1826
+#: src/strings.ts:1850
msgid "Use recovery key"
msgstr ""
-#: src/strings.ts:1141
+#: src/strings.ts:1165
msgid "Use system theme"
msgstr ""
-#: src/strings.ts:421
+#: src/strings.ts:438
msgid ""
"Use the following key to format the title:\n"
"\n"
@@ -7838,103 +7917,111 @@ msgid ""
"$day$: Current day (eg. Monday)"
msgstr ""
-#: src/strings.ts:1119
+#: src/strings.ts:1143
msgid "Use this if changes from other devices are not appearing on this device. This will overwrite the data on this device with the latest data from the server."
msgstr ""
-#: src/strings.ts:1128
+#: src/strings.ts:1152
msgid "Use this if changes made on this device are not appearing on other devices. This will overwrite the data on the server with the data from this device."
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2910
+#: src/strings.ts:2934
msgid "Use this only for troubleshooting sync issues. Regular use may lead to data loss or conflicts."
msgstr ""
-#: src/strings.ts:2511
+#: src/strings.ts:2535
msgid "used"
msgstr ""
-#: src/strings.ts:1036
+#: src/strings.ts:386
+msgid "Used in"
+msgstr ""
+
+#: src/strings.ts:1058
msgid "User verification failed"
msgstr ""
-#: src/strings.ts:2292
+#: src/strings.ts:2316
msgid "Using {instance} (v{version})"
msgstr "<<<<<<< HEAD"
-#: src/strings.ts:2858
+#: src/strings.ts:2882
msgid "Using Notesnook without an account will **NOT** sync your notes across devices and could result in data loss if you lose access to your device or uninstall the app. Make sure to backup your notes regularly."
msgstr ""
-#: src/strings.ts:2290
+#: src/strings.ts:2314
msgid "Using official Notesnook instance"
msgstr ""
-#: src/strings.ts:1736
+#: src/strings.ts:1760
msgid "v{version} available"
msgstr ""
-#: src/strings.ts:2766
+#: src/strings.ts:2790
msgid "Value must be between {min} and {max}"
msgstr ""
-#: src/strings.ts:1193
+#: src/strings.ts:1217
msgid "Vault"
msgstr ""
-#: src/strings.ts:2019
+#: src/strings.ts:2043
msgid "Vault cleared"
msgstr ""
-#: src/strings.ts:815
+#: src/strings.ts:837
msgid "Vault created"
msgstr ""
-#: src/strings.ts:2020
+#: src/strings.ts:2044
msgid "Vault deleted"
msgstr ""
-#: src/strings.ts:452
+#: src/strings.ts:469
msgid "Vault fingerprint unlock"
msgstr ""
-#: src/strings.ts:1958
+#: src/strings.ts:1982
msgid "Vault locked"
msgstr ""
-#: src/strings.ts:1957
+#: src/strings.ts:1981
msgid "Vault unlocked"
msgstr ""
-#: src/strings.ts:1422
+#: src/strings.ts:1446
msgid "Verification email sent"
msgstr ""
-#: src/strings.ts:577
+#: src/strings.ts:599
msgid "Verify"
msgstr ""
-#: src/strings.ts:1087
+#: src/strings.ts:1094
+msgid "Verify Files"
+msgstr ""
+
+#: src/strings.ts:1111
msgid "Verify subscription"
msgstr ""
-#: src/strings.ts:1090
+#: src/strings.ts:1114
msgid "Verify your subscription to Notesnook Pro"
msgstr ""
-#: src/strings.ts:1930
+#: src/strings.ts:1954
msgid "Verifying 2FA code"
msgstr ""
-#: src/strings.ts:1916
+#: src/strings.ts:1940
msgid "Verifying your email"
msgstr ""
-#: src/strings.ts:418
+#: src/strings.ts:435
msgid "Version"
msgstr ""
-#: src/strings.ts:2850
+#: src/strings.ts:2874
msgid "Version history cleared"
msgstr ""
@@ -7942,221 +8029,229 @@ msgstr ""
msgid "Vibrate"
msgstr ""
-#: src/strings.ts:758
+#: src/strings.ts:780
msgid "Videos"
msgstr ""
-#: src/strings.ts:572
+#: src/strings.ts:594
msgid "View all linked notebooks"
msgstr ""
-#: src/strings.ts:2700
+#: src/strings.ts:2724
msgid "View and edit your inbox public/private key pair"
msgstr ""
-#: src/strings.ts:2706
+#: src/strings.ts:2730
msgid "View and manage inbox API keys"
msgstr ""
-#: src/strings.ts:1292
+#: src/strings.ts:1316
msgid "View and share debug logs"
msgstr ""
-#: src/strings.ts:2800
+#: src/strings.ts:2824
msgid "View failed inbox items and error contexts"
msgstr ""
-#: src/strings.ts:2579
+#: src/strings.ts:2603
msgid "View plans"
msgstr ""
-#: src/strings.ts:1774
+#: src/strings.ts:1798
msgid "View receipt"
msgstr ""
-#: src/strings.ts:1078
+#: src/strings.ts:1102
msgid "View recovery codes"
msgstr ""
-#: src/strings.ts:2189
+#: src/strings.ts:2213
msgid "View source code"
msgstr ""
-#: src/strings.ts:1080
+#: src/strings.ts:1104
msgid "View your recovery codes to recover your account in case you lose access to your two-factor authentication methods."
msgstr ""
-#: src/strings.ts:2663
+#: src/strings.ts:2687
msgid "Views"
msgstr ""
-#: src/strings.ts:419
+#: src/strings.ts:281
+msgid "Views on your published note"
+msgstr ""
+
+#: src/strings.ts:436
msgid "Visit homepage"
msgstr ""
-#: src/strings.ts:1372
+#: src/strings.ts:1396
msgid "Wait 30 seconds to try again"
msgstr ""
-#: src/strings.ts:1679
+#: src/strings.ts:1703
msgid "Waiting for upload"
msgstr ""
-#: src/strings.ts:1938
+#: src/strings.ts:1962
msgid "We are creating a backup of your data. Please wait..."
msgstr ""
-#: src/strings.ts:477
+#: src/strings.ts:499
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:2831
+#: src/strings.ts:2855
msgid "We couldn't load this theme. Please make sure the file is a valid JSON theme file."
msgstr ""
-#: src/strings.ts:2833
+#: src/strings.ts:2857
msgid "We couldn't load this theme. The file appears to be incomplete or missing required theme properties."
msgstr ""
-#: src/strings.ts:1412
+#: src/strings.ts:1436
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:2549
+#: src/strings.ts:2573
msgid "We require credit card details to fight abuse and to make it seamless for you to upgrade. Your credit card is NOT charged until your free trial ends and your subscription starts. You will be notified via email of the upcoming charge before your trial ends."
msgstr ""
-#: src/strings.ts:2204
+#: src/strings.ts:2228
msgid "We send you occasional promotional offers & product updates on your email (once every month)."
msgstr ""
-#: src/strings.ts:1189
+#: src/strings.ts:1213
msgid "We will send you occasional promotional offers & product updates on your email (sent once every month)."
msgstr ""
-#: src/strings.ts:1376
+#: src/strings.ts:1400
msgid "We would love to know what you think!"
msgstr ""
-#: src/strings.ts:2792
+#: src/strings.ts:2816
msgid "We'll create secure keys for you automatically"
msgstr ""
-#: src/strings.ts:2600
+#: src/strings.ts:2624
msgid "We’re setting up your plan right now. We’ll notify you as soon as everything is ready."
msgstr ""
-#: src/strings.ts:2360
+#: src/strings.ts:2384
msgid "Web clip settings"
msgstr ""
-#: src/strings.ts:2056
+#: src/strings.ts:2080
msgid "Website"
msgstr ""
-#: src/strings.ts:627
+#: src/strings.ts:649
msgid "Wed"
msgstr ""
-#: src/strings.ts:618
+#: src/strings.ts:640
msgid "Wednesday"
msgstr ""
-#: src/strings.ts:666
+#: src/strings.ts:688
msgid "Week"
msgstr ""
-#: src/strings.ts:2676
+#: src/strings.ts:2700
msgid "Week format"
msgstr ""
#: src/strings.ts:168
-#: src/strings.ts:1596
+#: src/strings.ts:1620
msgid "Weekly"
msgstr ""
-#: src/strings.ts:782
+#: src/strings.ts:804
msgid "Welcome back, {email}"
msgstr ""
-#: src/strings.ts:1915
+#: src/strings.ts:1939
msgid "Welcome back!"
msgstr ""
-#: src/strings.ts:2636
+#: src/strings.ts:2660
msgid "Welcome to Notesnook {plan}"
msgstr ""
-#: src/strings.ts:2110
+#: src/strings.ts:2134
msgid "Welcome to Notesnook Pro"
msgstr ""
-#: src/strings.ts:1414
+#: src/strings.ts:1438
msgid "What do I do if I am not getting the email?"
msgstr ""
-#: src/strings.ts:2541
+#: src/strings.ts:2565
msgid "What happens to my data if I switch plans?"
msgstr ""
-#: src/strings.ts:2557
+#: src/strings.ts:2581
msgid "What is your refund policy?"
msgstr ""
-#: src/strings.ts:1694
+#: src/strings.ts:1718
msgid "What went wrong?"
-msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2867
+#: src/strings.ts:2891
msgid "What's included"
msgstr ""
-#: src/strings.ts:2547
+#: src/strings.ts:2571
msgid "Why do you need my credit card details for a free trial?"
msgstr ""
-#: src/strings.ts:2421
+#: src/strings.ts:2445
msgid "Width"
msgstr ""
-#: src/strings.ts:2527
+#: src/strings.ts:2551
msgid "Words"
msgstr ""
-#: src/strings.ts:2450
+#: src/strings.ts:2474
msgid "Work & Office"
msgstr ""
-#: src/strings.ts:834
+#: src/strings.ts:856
msgid "Write notes with freedom, no spying, no tracking."
msgstr ""
-#: src/strings.ts:1396
+#: src/strings.ts:1420
msgid "Write something..."
msgstr ""
-#: src/strings.ts:1681
+#: src/strings.ts:1705
msgid "Write with freedom."
msgstr ""
-#: src/strings.ts:2098
+#: src/strings.ts:2122
msgid "Write with freedom. Never compromise on privacy again."
msgstr ""
-#: src/strings.ts:665
+#: src/strings.ts:687
msgid "Year"
msgstr ""
#: src/strings.ts:170
-#: src/strings.ts:1598
+#: src/strings.ts:1622
msgid "Yearly"
msgstr ""
-#: src/strings.ts:550
+#: src/strings.ts:572
msgid "Yes"
msgstr ""
-#: src/strings.ts:2554
+#: src/strings.ts:285
+msgid "Yes, Unpublish"
+msgstr ""
+
+#: src/strings.ts:2578
msgid "Yes, you can cancel your trial anytime. No questions asked."
msgstr ""
@@ -8164,67 +8259,67 @@ msgstr ""
msgid "You also agree to receive marketing emails from us which you can opt-out of from app settings."
msgstr ""
-#: src/strings.ts:2641
+#: src/strings.ts:2665
msgid "You are already subscribed to this plan."
msgstr ""
-#: src/strings.ts:2277
+#: src/strings.ts:2301
msgid "You are editing \"{notebookTitle}\"."
msgstr ""
-#: src/strings.ts:2070
+#: src/strings.ts:2094
msgid "You are editing #{tag}"
msgstr ""
-#: src/strings.ts:1808
+#: src/strings.ts:1832
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:1383
+#: src/strings.ts:1407
msgid "You are not logged in"
msgstr ""
-#: src/strings.ts:902
+#: src/strings.ts:924
msgid "You are renaming color {color}"
msgstr ""
-#: src/strings.ts:467
+#: src/strings.ts:489
msgid "You can also link a note to multiple Notebooks. Tap and hold any notebook to enable multi-select."
msgstr ""
-#: src/strings.ts:2101
+#: src/strings.ts:2125
msgid "You can change the theme at any time from Settings or the side menu."
msgstr ""
-#: src/strings.ts:2644
+#: src/strings.ts:2668
msgid "You can change your subscription plan from the web app"
msgstr ""
-#: src/strings.ts:2458
+#: src/strings.ts:2482
msgid "You can create shortcuts of frequently accessed notebooks in the side menu"
msgstr ""
-#: src/strings.ts:2116
+#: src/strings.ts:2140
msgid "You can import your notes from most other note taking apps."
msgstr ""
-#: src/strings.ts:1458
+#: src/strings.ts:1482
msgid "You can multi-select notes and move them to a notebook at once"
msgstr ""
-#: src/strings.ts:1449
+#: src/strings.ts:1473
msgid "You can pin frequently used Notebooks to the Side Menu to quickly access them."
msgstr ""
-#: src/strings.ts:1192
+#: src/strings.ts:1216
msgid "You can set a custom proxy URL to increase your privacy."
msgstr ""
-#: src/strings.ts:1430
+#: src/strings.ts:1454
msgid "You can swipe left anywhere in the app to start a new note."
msgstr ""
-#: src/strings.ts:2083
+#: src/strings.ts:2107
msgid ""
"You can track your bug report at [{url}]({url}).\n"
"\n"
@@ -8233,7 +8328,7 @@ msgid ""
"If your issue is critical (e.g. notes not syncing, crashes etc.), please [join our Discord community](https://go.notesnook.com/discord) for one-to-one support."
msgstr ""
-#: src/strings.ts:2092
+#: src/strings.ts:2116
msgid ""
"You can track your feature request at [{url}]({url}).\n"
"\n"
@@ -8244,259 +8339,259 @@ msgstr ""
msgid "You can track your issue at "
msgstr ""
-#: src/strings.ts:1046
+#: src/strings.ts:1068
msgid "You can use all premium features for free for the next 14 days"
msgstr ""
-#: src/strings.ts:1076
+#: src/strings.ts:1100
msgid "You can use fallback 2FA method incase you are unable to login via primary method"
msgstr ""
-#: src/strings.ts:1472
+#: src/strings.ts:1496
msgid "You can view & restore older versions of any note by going to its properties -> History."
msgstr ""
-#: src/strings.ts:1776
+#: src/strings.ts:1800
msgid "You have {count} custom dictionary words."
msgstr ""
-#: src/strings.ts:2235
+#: src/strings.ts:2259
msgid "You have been logged out from all other devices."
msgstr ""
-#: src/strings.ts:2229
+#: src/strings.ts:2253
msgid "You have been logged out."
msgstr ""
-#: src/strings.ts:2640
+#: src/strings.ts:2664
msgid "You have made a one time purchase. To change your plan please contact support."
msgstr ""
-#: src/strings.ts:982
+#: src/strings.ts:1004
msgid "You have not added any notebooks yet"
msgstr ""
-#: src/strings.ts:981
+#: src/strings.ts:1003
msgid "You have not added any tags yet"
msgstr ""
-#: src/strings.ts:980
+#: src/strings.ts:1002
msgid "You have not created any notes yet"
msgstr ""
-#: src/strings.ts:979
+#: src/strings.ts:1001
msgid "You have not favorited any notes yet"
msgstr ""
-#: src/strings.ts:984
+#: src/strings.ts:1006
msgid "You have not published any monographs yet"
msgstr ""
-#: src/strings.ts:983
+#: src/strings.ts:1005
msgid "You have not set any reminders yet"
msgstr ""
-#: src/strings.ts:1572
+#: src/strings.ts:1596
msgid "You have unsynced notes. Take a backup or sync your notes to avoid losing your critical data."
msgstr ""
-#: src/strings.ts:1661
+#: src/strings.ts:1685
msgid "You must log out in order to change/reset server URLs."
msgstr ""
-#: src/strings.ts:2782
+#: src/strings.ts:2806
msgid ""
"You need to login to restore attachments from a backup file. [Read more](https://help.notesnook.com/faqs/login-to-restore-attachments-in-backup).\n"
" \n"
"Continue without attachments?"
msgstr ""
-#: src/strings.ts:852
+#: src/strings.ts:874
msgid "You simply cannot get any better of a note taking app than @notesnook. The UI is clean and slick, it is feature rich, encrypted, reasonably priced (esp. for students & educators) & open source"
msgstr ""
-#: src/strings.ts:1086
+#: src/strings.ts:1110
msgid "You subscribed to Notesnook Pro on {date}. Verify this subscription?"
msgstr ""
-#: src/strings.ts:711
+#: src/strings.ts:733
msgid "You subscribed to Notesnook Pro on Android Phone/Tablet using Google In App Purchase."
msgstr ""
-#: src/strings.ts:704
+#: src/strings.ts:726
msgid "You subscribed to Notesnook Pro on iOS using Apple In App Purchase. You can cancel anytime with your iTunes Account settings."
msgstr ""
-#: src/strings.ts:717
+#: src/strings.ts:739
msgid "You subscribed to Notesnook Pro on the Web/Desktop App."
msgstr ""
-#: src/strings.ts:723
+#: src/strings.ts:745
msgid "You subscribed to Notesnook Pro using a gift card."
msgstr ""
-#: src/strings.ts:698
+#: src/strings.ts:720
msgid "You were awarded a subscription to Notesnook Pro by Streetwriters."
msgstr ""
-#: src/strings.ts:471
+#: src/strings.ts:493
msgid "You will be logged out from all your devices"
msgstr ""
-#: src/strings.ts:1878
+#: src/strings.ts:1902
msgid "You will receive instructions on how to recover your account on this email"
msgstr ""
-#: src/strings.ts:470
+#: src/strings.ts:492
msgid "Your account email will be changed without affecting your subscription or any other settings."
msgstr ""
-#: src/strings.ts:1944
+#: src/strings.ts:1968
msgid "Your account has been recovered."
-msgstr "<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2891
+#: src/strings.ts:2915
msgid "Your account is almost ready, please wait."
msgstr ""
-#: src/strings.ts:504
-#: src/strings.ts:1755
+#: src/strings.ts:526
+#: src/strings.ts:1779
msgid "Your account is now 100% secure against unauthorized logins."
msgstr ""
-#: src/strings.ts:1883
+#: src/strings.ts:1907
msgid "Your account password must be strong & unique."
msgstr ""
-#: src/strings.ts:1052
+#: src/strings.ts:1074
msgid "Your account will be downgraded in {days} days"
msgstr ""
-#: src/strings.ts:1096
+#: src/strings.ts:1120
msgid "Your account will be permanently deleted along with all your data, login credentials, and subscription information. This action is IRREVERSIBLE. Make sure to save a backup of your notes before proceeding."
msgstr ""
-#: src/strings.ts:978
+#: src/strings.ts:1000
msgid "Your archive"
msgstr ""
-#: src/strings.ts:2523
+#: src/strings.ts:2547
msgid "Your archive is empty"
msgstr ""
-#: src/strings.ts:1956
+#: src/strings.ts:1980
msgid "Your backup is ready to download"
msgstr ""
-#: src/strings.ts:1613
+#: src/strings.ts:1637
msgid "Your changes could not be saved"
msgstr ""
-#: src/strings.ts:1803
+#: src/strings.ts:1827
msgid "Your changes have been saved and will be reflected after the app has refreshed."
msgstr ""
-#: src/strings.ts:2136
+#: src/strings.ts:2160
msgid "Your current 2FA method is {method}"
msgstr ""
-#: src/strings.ts:2647
+#: src/strings.ts:2671
msgid "Your current subscription does not allow changing plans"
msgstr ""
-#: src/strings.ts:1828
+#: src/strings.ts:1852
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:1881
+#: src/strings.ts:1905
msgid "Your data recovery key will be used to decrypt your data"
msgstr ""
-#: src/strings.ts:2543
+#: src/strings.ts:2567
msgid "Your data remains 100% accessible regardless of what plan you are on. That includes your notes, notebooks, attachments, and anything else you might have created."
msgstr ""
-#: src/strings.ts:1811
+#: src/strings.ts:1835
msgid "Your email has been confirmed."
msgstr ""
-#: src/strings.ts:2534
+#: src/strings.ts:2558
msgid "Your email has been confirmed. You can now securely sync your encrypted notes across all devices."
msgstr ""
-#: src/strings.ts:768
+#: src/strings.ts:790
msgid "Your email is not confirmed. Please confirm your email address to change account password."
msgstr ""
-#: src/strings.ts:972
+#: src/strings.ts:994
msgid "Your favorites"
msgstr ""
-#: src/strings.ts:1049
+#: src/strings.ts:1071
msgid "Your free trial ends on {date}"
msgstr ""
-#: src/strings.ts:1426
+#: src/strings.ts:1450
msgid "Your free trial has expired"
msgstr ""
-#: src/strings.ts:1044
+#: src/strings.ts:1066
msgid "Your free trial has started"
msgstr ""
-#: src/strings.ts:1425
+#: src/strings.ts:1449
msgid "Your free trial is ending soon"
msgstr ""
-#: src/strings.ts:2675
+#: src/strings.ts:2699
msgid "Your free trial is on-going. Your subscription will start on {trialExpiryDate}"
msgstr ""
-#: src/strings.ts:1805
+#: src/strings.ts:1829
msgid "Your full name"
msgstr ""
-#: src/strings.ts:977
+#: src/strings.ts:999
msgid "Your monographs"
msgstr ""
-#: src/strings.ts:1334
+#: src/strings.ts:1358
msgid "Your name is stored 100% end-to-end encrypted and only visible to you."
msgstr ""
-#: src/strings.ts:563
+#: src/strings.ts:585
msgid "Your note will be unencrypted and removed from the vault."
msgstr ""
-#: src/strings.ts:975
+#: src/strings.ts:997
msgid "Your notebooks"
msgstr ""
-#: src/strings.ts:973
+#: src/strings.ts:995
msgid "Your notes"
msgstr ""
-#: src/strings.ts:1919
+#: src/strings.ts:1943
msgid "Your password is always hashed before leaving this device."
msgstr ""
-#: src/strings.ts:848
+#: src/strings.ts:870
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:1331
+#: src/strings.ts:1355
msgid "Your profile pictrure is stored 100% end-to-end encrypted and only visible to you."
-msgstr "<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2902
+#: src/strings.ts:2926
msgid "Your recovery key"
msgstr ""
-#: src/strings.ts:2024
+#: src/strings.ts:2048
msgid "Your refund has been issued. Please wait 24 hours before reaching out to us in case you do not receive your funds."
msgstr ""
-#: src/strings.ts:976
+#: src/strings.ts:998
msgid "Your reminders"
msgstr ""
@@ -8504,66 +8599,66 @@ msgstr ""
msgid "Your session has expired. Please enter password for {obfuscatedEmail} to continue."
msgstr ""
-#: src/strings.ts:1053
+#: src/strings.ts:1075
msgid "Your subscription ends on {date}"
msgstr ""
-#: src/strings.ts:2022
+#: src/strings.ts:2046
msgid "Your subscription has been canceled."
msgstr ""
-#: src/strings.ts:1050
+#: src/strings.ts:1072
msgid "Your subscription has ended"
msgstr ""
-#: src/strings.ts:1054
+#: src/strings.ts:1076
msgid "Your subscription renews on {date}"
msgstr ""
-#: src/strings.ts:2080
+#: src/strings.ts:2104
msgid "Your support request has been forwarded"
msgstr ""
-#: src/strings.ts:2089
+#: src/strings.ts:2113
msgid "Your support request has been forwarded to our support team. We will get back to you via email as soon as possible. If you don't receive an email from us within 24-48 hours, please send us an email directly at support@notesnook.com."
msgstr ""
-#: src/strings.ts:974
+#: src/strings.ts:996
msgid "Your tags"
-msgstr "<<<<<<< HEAD<<<<<<< HEAD"
+msgstr "<<<<<<< HEAD<<<<<<< HEAD<<<<<<< HEAD"
-#: src/strings.ts:2887
+#: src/strings.ts:2911
msgid "Your thoughts deserve a home. Create your first note and start organizing your life today."
msgstr ""
-#: src/strings.ts:692
+#: src/strings.ts:714
msgid "yr"
msgstr ""
-#: src/strings.ts:650
+#: src/strings.ts:672
msgid "Z to A"
msgstr ""
-#: src/strings.ts:795
+#: src/strings.ts:817
msgid "Zipping"
msgstr ""
-#: src/strings.ts:2499
+#: src/strings.ts:2523
msgid "Zoom"
msgstr ""
-#: src/strings.ts:2130
+#: src/strings.ts:2154
msgid "Zoom factor"
msgstr ""
-#: src/strings.ts:1727
+#: src/strings.ts:1751
msgid "Zoom in"
msgstr ""
-#: src/strings.ts:2131
+#: src/strings.ts:2155
msgid "Zoom in or out the app content."
msgstr ""
-#: src/strings.ts:1726
+#: src/strings.ts:1750
msgid "Zoom out"
msgstr ""
diff --git a/packages/intl/src/strings.ts b/packages/intl/src/strings.ts
index da6977e6d..39278c6ec 100644
--- a/packages/intl/src/strings.ts
+++ b/packages/intl/src/strings.ts
@@ -263,12 +263,26 @@ export const strings = {
monographDesc: () => t`This note will be published to a public URL.`,
openInBrowser: () => t`Open in browser`,
monographPassHeading: () => t`Password protection`,
+ monographPassHeadingOptional: () => t`Password protection (optional)`,
monographPassDesc: () =>
t`Published note can only be viewed by someone with the password.`,
+ secureYourNote: () => t`Secure your note`,
monographSelfDestructHeading: () => t`Self destruct`,
+ deleteAfterViewing: () => t`Delete after viewing`,
monographSelfDestructDesc: () =>
t`Published note link will be automatically deleted once it is viewed by someone.`,
- monographLearnMore: () => t`Learn more about Notesnook Monograph`,
+ monographLearnMore: {
+ 0: () => t`Learn more about Notesnook`,
+ 1: () => t`Monographs`
+ },
+ editPublishedMonograph: () => t`Edit published monograph`,
+ publishedNoteLink: () => t`Published note link`,
+ totalViews: () => t`Total views`,
+ viewsOnPublishedNote: () => t`Views on your published note`,
+ enterNewPassword: () => t`Enter new password`,
+ unpublishNoteConfirm: () =>
+ t`Are you sure you want to unpublish this note? It will no longer be accessible via the public link.`,
+ yesUnpublish: () => t`Yes, Unpublish`,
rateAppHeading: () => t`Do you enjoy using Notesnook?`,
rateAppDesc: () =>
t`It took us a year to bring Notesnook to life. Share your experience and suggestions to help us improve it.`,
@@ -276,8 +290,8 @@ export const strings = {
t`Tap twice to confirm you have saved the recovery key.`,
noBlocksLinked: () => t`No blocks linked`,
noReferencesFound: () => t`No references found of this note`,
- notReferenced: () => t`This note is not referenced in other notes.`,
- notLinked: () => t`This note is not linked to any other note.`,
+ notReferenced: () => t`No references yet`,
+ notLinked: () => t`No links found`,
noLinksFound: () => t`No links found`,
noBlocksOnNote: () => t`There are no blocks in this note.`,
dataTypes: {
@@ -369,6 +383,9 @@ export const strings = {
},
remindMeIn: () => t`Remind me in`,
referencedIn: () => t`Referenced in`,
+ usedIn: () => t`Used in`,
+ linked: () => t`Linked`,
+ jumpToReference: () => t`Jump to Reference`,
restoreSelectFolder: () =>
t`Select the folder that includes your backup files to list them here.`,
noBackupsFound: () => t`No backups found`,
@@ -459,6 +476,11 @@ $day$: Current day (eg. Monday)`,
lockNote: () => t`Lock note`,
applyChanges: () => t`Apply changes`,
noteHistory: () => t`Note history`,
+ recentHistory: () => t`Recent history`,
+ historyDetail: () => t`History detail`,
+ noteContent: () => t`Note content`,
+ deletedVersionsCannotBeRecovered: () =>
+ t`Note: Deleted versions cannot be recovered.`,
selectNotebooks: () => t`Select notebooks`,
selectNotebooksDesc: () => t`Select notebooks you want to add note(s) to.`,
selectNotebooksDesktopDesc: (keyboardShortcut: string) =>
@@ -1068,6 +1090,8 @@ $day$: Current day (eg. Monday)`,
t`Recovery key helps you recover your data if you forget your password.`,
manageAttachments: () => t`Manage attachments`,
manageAttachmentsDesc: () => t`Manage your attachments in one place`,
+ allAttachments: () => t`All attachments`,
+ verifyFiles: () => t`Verify Files`,
changePasswordDesc: () => t`Change your account password`,
change2faMethodDesc: () =>
t`Change your primary two-factor authentication method`,
@@ -2957,5 +2981,11 @@ Continue without attachments?`,
shareZip: () => t`Share ZIP`,
tryDownloadLogsAgain: () => t`Try again`,
createSubnotebook: () => t`Create sub-notebook`,
- saveChanges: () => t`Save changes`
+ saveChanges: () => t`Save changes`,
+ noteUnpublished: () => t`Note unpublished`,
+ noRemindersFound: () => t`No reminders found`,
+ reminderPlaceholder: () => t`Never miss a task. Set your first reminder now.`,
+ emptyLinkedNotes: () => t`Links of notes that are references in this note.`,
+ emptyReferences: () => t`Links of notes where this note is referenced.`,
+ passwordProtection: () => t`Password protection (optional)`
};