save drawings with no toast

This commit is contained in:
Gamosoft 2026-04-21 16:34:34 +02:00
parent 5f98ed3d53
commit c83454ae2b
12 changed files with 12 additions and 390 deletions

View File

@ -2965,7 +2965,7 @@ function noteApp() {
return; return;
} }
this._drawingAutosaveTimeout = null; this._drawingAutosaveTimeout = null;
this.drawingSave({ silent: true }); this.drawingSave();
}; };
this._drawingAutosaveTimeout = setTimeout(attemptSave, CONFIG.AUTOSAVE_DELAY); this._drawingAutosaveTimeout = setTimeout(attemptSave, CONFIG.AUTOSAVE_DELAY);
}, },
@ -3186,8 +3186,12 @@ function noteApp() {
this._drawingScheduleAutosave(); this._drawingScheduleAutosave();
}, },
async drawingSave(options = {}) { /**
const { silent = false } = options; * Persist the flattened canvas to disk (Ctrl+S, toolbar, autosave). Same feedback as saveNote:
* header "Saved" only never clears stroke undo/redo or reloads the image; stacks reset when
* opening another drawing via initDrawingViewer().
*/
async drawingSave() {
if (!this.currentMedia || this.currentMediaType !== 'drawing') return; if (!this.currentMedia || this.currentMediaType !== 'drawing') return;
this._drawingCancelAutosave(); this._drawingCancelAutosave();
const canvas = this._drawingCanvasEl; const canvas = this._drawingCanvasEl;
@ -3218,23 +3222,10 @@ function noteApp() {
throw new Error(detail || res.statusText); throw new Error(detail || res.statusText);
} }
await this.loadNotes(); await this.loadNotes();
// Manual save: flatten to PNG on disk and reset canvas state from file (clears stroke undo/redo). this.lastSaved = true;
// Autosave: only persist the PNG; keep drawingOps / redo stacks like note undo after save. setTimeout(() => {
if (!silent) { this.lastSaved = false;
if (this._drawingObjectURL) { }, CONFIG.SAVE_INDICATOR_DURATION);
URL.revokeObjectURL(this._drawingObjectURL);
this._drawingObjectURL = null;
}
this.drawingOps = [];
this.drawingRedoStack = [];
await this.initDrawingViewer();
this.toast(this.t('drawing.saved'), { type: 'success' });
} else {
this.lastSaved = true;
setTimeout(() => {
this.lastSaved = false;
}, CONFIG.SAVE_INDICATOR_DURATION);
}
} catch (error) { } catch (error) {
ErrorHandler.handle('save drawing', error); ErrorHandler.handle('save drawing', error);
} finally { } finally {

View File

@ -4,11 +4,9 @@
"name": "Deutsch", "name": "Deutsch",
"flag": "🇩🇪" "flag": "🇩🇪"
}, },
"app": { "app": {
"tagline": "Deine selbstgehostete Wissensdatenbank" "tagline": "Deine selbstgehostete Wissensdatenbank"
}, },
"common": { "common": {
"save": "Speichern", "save": "Speichern",
"cancel": "Abbrechen", "cancel": "Abbrechen",
@ -28,12 +26,10 @@
"copy_to_clipboard": "In Zwischenablage kopieren", "copy_to_clipboard": "In Zwischenablage kopieren",
"failed": "{{action}} fehlgeschlagen. Bitte versuche es erneut." "failed": "{{action}} fehlgeschlagen. Bitte versuche es erneut."
}, },
"toast": { "toast": {
"region_label": "Benachrichtigungen", "region_label": "Benachrichtigungen",
"dismiss": "Schließen" "dismiss": "Schließen"
}, },
"sidebar": { "sidebar": {
"title": "DATEIEN", "title": "DATEIEN",
"favorites_title": "Favoriten", "favorites_title": "Favoriten",
@ -73,7 +69,6 @@
"settings_title": "EINSTELLUNGEN", "settings_title": "EINSTELLUNGEN",
"filtered_notes": "Gefilterte Notizen" "filtered_notes": "Gefilterte Notizen"
}, },
"editor": { "editor": {
"placeholder": "Schreibe in Markdown...", "placeholder": "Schreibe in Markdown...",
"drop_hint": "💡 Hier ablegen, um an Cursorposition einzufügen...", "drop_hint": "💡 Hier ablegen, um an Cursorposition einzufügen...",
@ -86,7 +81,6 @@
"hours_ago": "vor {{count}}h", "hours_ago": "vor {{count}}h",
"days_ago": "vor {{count}}T" "days_ago": "vor {{count}}T"
}, },
"notes": { "notes": {
"confirm_delete": "\"{{name}}\" löschen?", "confirm_delete": "\"{{name}}\" löschen?",
"already_exists": "Eine Notiz mit dem Namen \"{{name}}\" existiert bereits an diesem Ort.\nBitte wähle einen anderen Namen.", "already_exists": "Eine Notiz mit dem Namen \"{{name}}\" existiert bereits an diesem Ort.\nBitte wähle einen anderen Namen.",
@ -102,7 +96,6 @@
"no_content": "Kein Inhalt zum Exportieren", "no_content": "Kein Inhalt zum Exportieren",
"open_first": "Bitte öffne zuerst eine Notiz, bevor du Bilder hochlädst." "open_first": "Bitte öffne zuerst eine Notiz, bevor du Bilder hochlädst."
}, },
"folders": { "folders": {
"confirm_delete": "⚠️ WARNUNG ⚠️\n\nBist du sicher, dass du den Ordner \"{{name}}\" löschen möchtest?\n\nDies LÖSCHT DAUERHAFT:\n• Alle Notizen in diesem Ordner\n• Alle Unterordner und deren Inhalte\n\nDiese Aktion kann NICHT rückgängig gemacht werden!", "confirm_delete": "⚠️ WARNUNG ⚠️\n\nBist du sicher, dass du den Ordner \"{{name}}\" löschen möchtest?\n\nDies LÖSCHT DAUERHAFT:\n• Alle Notizen in diesem Ordner\n• Alle Unterordner und deren Inhalte\n\nDiese Aktion kann NICHT rückgängig gemacht werden!",
"already_exists": "Ein Ordner mit dem Namen \"{{name}}\" existiert bereits an diesem Ort.\nBitte wähle einen anderen Namen.", "already_exists": "Ein Ordner mit dem Namen \"{{name}}\" existiert bereits an diesem Ort.\nBitte wähle einen anderen Namen.",
@ -119,7 +112,6 @@
"cannot_move_into_self": "Ordner kann nicht in sich selbst oder einen Unterordner verschoben werden.", "cannot_move_into_self": "Ordner kann nicht in sich selbst oder einen Unterordner verschoben werden.",
"empty": "leer" "empty": "leer"
}, },
"toolbar": { "toolbar": {
"undo": "Rückgängig (Strg+Z)", "undo": "Rückgängig (Strg+Z)",
"redo": "Wiederholen (Strg+Y)", "redo": "Wiederholen (Strg+Y)",
@ -132,14 +124,12 @@
"add_favorite": "Zu Favoriten hinzufügen", "add_favorite": "Zu Favoriten hinzufügen",
"remove_favorite": "Aus Favoriten entfernen" "remove_favorite": "Aus Favoriten entfernen"
}, },
"zen_mode": { "zen_mode": {
"title": "Zen-Modus", "title": "Zen-Modus",
"tooltip": "Zen-Modus (Strg+Alt+Z)", "tooltip": "Zen-Modus (Strg+Alt+Z)",
"exit": "Zen-Modus beenden", "exit": "Zen-Modus beenden",
"exit_hint": "Zen-Modus beenden (Esc)" "exit_hint": "Zen-Modus beenden (Esc)"
}, },
"share": { "share": {
"button_tooltip": "Notiz teilen", "button_tooltip": "Notiz teilen",
"modal_title": "Notiz teilen", "modal_title": "Notiz teilen",
@ -154,7 +144,6 @@
"show_qr": "QR-Code anzeigen", "show_qr": "QR-Code anzeigen",
"hide_qr": "QR-Code ausblenden" "hide_qr": "QR-Code ausblenden"
}, },
"quick_switcher": { "quick_switcher": {
"placeholder": "Notizen suchen...", "placeholder": "Notizen suchen...",
"no_results": "Keine Ergebnisse", "no_results": "Keine Ergebnisse",
@ -163,7 +152,6 @@
"open": "öffnen", "open": "öffnen",
"close": "schließen" "close": "schließen"
}, },
"tags": { "tags": {
"title": "Tags", "title": "Tags",
"no_tags": "Keine Tags gefunden", "no_tags": "Keine Tags gefunden",
@ -172,13 +160,11 @@
"clear_all": "Tag-Filter löschen", "clear_all": "Tag-Filter löschen",
"filter_by": "Nach {{tag}} filtern ({{count}} Notizen)" "filter_by": "Nach {{tag}} filtern ({{count}} Notizen)"
}, },
"outline": { "outline": {
"title": "Gliederung", "title": "Gliederung",
"no_headings": "Keine Überschriften gefunden", "no_headings": "Keine Überschriften gefunden",
"hint": "Überschriften mit # hinzufügen" "hint": "Überschriften mit # hinzufügen"
}, },
"backlinks": { "backlinks": {
"title": "Rückverweise", "title": "Rückverweise",
"no_backlinks": "Keine Rückverweise gefunden", "no_backlinks": "Keine Rückverweise gefunden",
@ -186,21 +172,18 @@
"select_note": "Wählen Sie eine Notiz um Rückverweise zu sehen", "select_note": "Wählen Sie eine Notiz um Rückverweise zu sehen",
"more_refs": "mehr" "more_refs": "mehr"
}, },
"stats": { "stats": {
"words": "Wörter", "words": "Wörter",
"reading_time": "~{{minutes}} Min. Lesezeit", "reading_time": "~{{minutes}} Min. Lesezeit",
"links": "{{count}} Links", "links": "{{count}} Links",
"click_details": "▼ Klicken für Details" "click_details": "▼ Klicken für Details"
}, },
"graph": { "graph": {
"title": "Graphansicht", "title": "Graphansicht",
"empty": "Keine Verbindungen anzuzeigen", "empty": "Keine Verbindungen anzuzeigen",
"markdown_links": "Markdown-Links", "markdown_links": "Markdown-Links",
"click_hint": "Klick: auswählen • Doppelklick: öffnen" "click_hint": "Klick: auswählen • Doppelklick: öffnen"
}, },
"templates": { "templates": {
"title": "Vorlagen", "title": "Vorlagen",
"select": "Vorlage auswählen...", "select": "Vorlage auswählen...",
@ -214,11 +197,9 @@
"available_placeholders": "Verfügbare Platzhalter", "available_placeholders": "Verfügbare Platzhalter",
"create_note": "Notiz erstellen" "create_note": "Notiz erstellen"
}, },
"export": { "export": {
"failed": "HTML-Export fehlgeschlagen: {{error}}" "failed": "HTML-Export fehlgeschlagen: {{error}}"
}, },
"login": { "login": {
"title": "Anmelden", "title": "Anmelden",
"tagline": "Deine selbstgehostete Wissensdatenbank", "tagline": "Deine selbstgehostete Wissensdatenbank",
@ -227,7 +208,6 @@
"footer": "🔒 Sicher & Selbstgehostet", "footer": "🔒 Sicher & Selbstgehostet",
"error_incorrect_password": "Falsches Passwort. Bitte versuche es erneut." "error_incorrect_password": "Falsches Passwort. Bitte versuche es erneut."
}, },
"drawing": { "drawing": {
"tool_freehand": "Stift — Freihand", "tool_freehand": "Stift — Freihand",
"tool_line": "Gerade Linie", "tool_line": "Gerade Linie",
@ -235,23 +215,19 @@
"tool_ellipse": "Kreis", "tool_ellipse": "Kreis",
"color": "Farbe", "color": "Farbe",
"width": "Strichstärke", "width": "Strichstärke",
"saved": "Zeichnung gespeichert",
"save_hint": "Zeichnung speichern (Strg+S)" "save_hint": "Zeichnung speichern (Strg+S)"
}, },
"media": { "media": {
"confirm_delete": "\"{{name}}\" löschen?", "confirm_delete": "\"{{name}}\" löschen?",
"upload_failed": "Datei-Upload fehlgeschlagen", "upload_failed": "Datei-Upload fehlgeschlagen",
"no_valid_files": "Keine gültigen Dateien gefunden. Unterstützt: JPG, PNG, GIF, WebP, MP3, MP4, PDF", "no_valid_files": "Keine gültigen Dateien gefunden. Unterstützt: JPG, PNG, GIF, WebP, MP3, MP4, PDF",
"formats": "JPG, PNG, GIF, WebP, MP3, MP4, PDF" "formats": "JPG, PNG, GIF, WebP, MP3, MP4, PDF"
}, },
"move": { "move": {
"failed_note": "Verschieben der Notiz fehlgeschlagen.", "failed_note": "Verschieben der Notiz fehlgeschlagen.",
"failed_folder": "Verschieben des Ordners fehlgeschlagen.", "failed_folder": "Verschieben des Ordners fehlgeschlagen.",
"failed_media": "Verschieben der Mediendatei fehlgeschlagen." "failed_media": "Verschieben der Mediendatei fehlgeschlagen."
}, },
"search": { "search": {
"previous": "Vorheriger (Umschalt+F3)", "previous": "Vorheriger (Umschalt+F3)",
"next": "Nächster (F3)", "next": "Nächster (F3)",
@ -262,22 +238,18 @@
"no_results": "Keine Notizen enthalten \"{{query}}\"", "no_results": "Keine Notizen enthalten \"{{query}}\"",
"searching": "Suche nach \"{{query}}\"..." "searching": "Suche nach \"{{query}}\"..."
}, },
"theme": { "theme": {
"title": "Design" "title": "Design"
}, },
"language": { "language": {
"title": "Sprache" "title": "Sprache"
}, },
"syntax_highlight": { "syntax_highlight": {
"title": "Syntax-Highlighting", "title": "Syntax-Highlighting",
"description": "Markdown-Syntax im Editor einfärben", "description": "Markdown-Syntax im Editor einfärben",
"enable": "Syntax-Highlighting aktivieren", "enable": "Syntax-Highlighting aktivieren",
"disable": "Syntax-Highlighting deaktivieren" "disable": "Syntax-Highlighting deaktivieren"
}, },
"settings": { "settings": {
"account": "Konto", "account": "Konto",
"logout": "Abmelden", "logout": "Abmelden",
@ -288,7 +260,6 @@
"tab_inserts_tab": "Tab-Taste fügt Tab ein", "tab_inserts_tab": "Tab-Taste fügt Tab ein",
"tab_inserts_tab_desc": "Tab drücken, um ein Tabulatorzeichen einzufügen statt den Fokus zu wechseln" "tab_inserts_tab_desc": "Tab drücken, um ein Tabulatorzeichen einzufügen statt den Fokus zu wechseln"
}, },
"homepage": { "homepage": {
"title": "Startseite", "title": "Startseite",
"welcome": "Willkommen bei NoteDiscovery", "welcome": "Willkommen bei NoteDiscovery",
@ -301,7 +272,6 @@
"folder_singular": "Ordner", "folder_singular": "Ordner",
"folder_plural": "Ordner" "folder_plural": "Ordner"
}, },
"format": { "format": {
"bold": "Fett", "bold": "Fett",
"italic": "Kursiv", "italic": "Kursiv",
@ -317,23 +287,19 @@
"checkbox": "Kontrollkästchen", "checkbox": "Kontrollkästchen",
"table": "Tabelle" "table": "Tabelle"
}, },
"validation": { "validation": {
"forbidden_chars": "Der Name enthält unzulässige Zeichen: {{chars}}", "forbidden_chars": "Der Name enthält unzulässige Zeichen: {{chars}}",
"reserved_name": "Dieser Name ist vom Betriebssystem reserviert.", "reserved_name": "Dieser Name ist vom Betriebssystem reserviert.",
"invalid_dot": "Der Name darf nicht nur ein Punkt sein.", "invalid_dot": "Der Name darf nicht nur ein Punkt sein.",
"trailing_dot_space": "Der Name darf nicht mit einem Punkt oder Leerzeichen enden." "trailing_dot_space": "Der Name darf nicht mit einem Punkt oder Leerzeichen enden."
}, },
"support": { "support": {
"enjoying_demo": "Unterstütze dieses Projekt", "enjoying_demo": "Unterstütze dieses Projekt",
"deploy_own": "Eigene Instanz bereitstellen", "deploy_own": "Eigene Instanz bereitstellen",
"thank_you": "Danke für deine Unterstützung! 💚" "thank_you": "Danke für deine Unterstützung! 💚"
}, },
"demo": { "demo": {
"title": "DEMO-MODUS", "title": "DEMO-MODUS",
"warning": "Inhalte werden täglich zurückgesetzt. Änderungen können von anderen Benutzern überschrieben werden." "warning": "Inhalte werden täglich zurückgesetzt. Änderungen können von anderen Benutzern überschrieben werden."
} }
} }

View File

@ -4,11 +4,9 @@
"name": "English", "name": "English",
"flag": "🇬🇧" "flag": "🇬🇧"
}, },
"app": { "app": {
"tagline": "Your Self-Hosted Knowledge Base" "tagline": "Your Self-Hosted Knowledge Base"
}, },
"common": { "common": {
"save": "Save", "save": "Save",
"cancel": "Cancel", "cancel": "Cancel",
@ -28,12 +26,10 @@
"copy_to_clipboard": "Copy to clipboard", "copy_to_clipboard": "Copy to clipboard",
"failed": "Failed to {{action}}. Please try again." "failed": "Failed to {{action}}. Please try again."
}, },
"toast": { "toast": {
"region_label": "Notifications", "region_label": "Notifications",
"dismiss": "Dismiss" "dismiss": "Dismiss"
}, },
"sidebar": { "sidebar": {
"title": "FILES", "title": "FILES",
"favorites_title": "Favourites", "favorites_title": "Favourites",
@ -72,7 +68,6 @@
"settings_title": "SETTINGS", "settings_title": "SETTINGS",
"filtered_notes": "Filtered Notes" "filtered_notes": "Filtered Notes"
}, },
"editor": { "editor": {
"placeholder": "Start writing in markdown...", "placeholder": "Start writing in markdown...",
"drop_hint": "💡 Drop here to insert at cursor position...", "drop_hint": "💡 Drop here to insert at cursor position...",
@ -85,7 +80,6 @@
"hours_ago": "{{count}}h ago", "hours_ago": "{{count}}h ago",
"days_ago": "{{count}}d ago" "days_ago": "{{count}}d ago"
}, },
"notes": { "notes": {
"confirm_delete": "Delete \"{{name}}\"?", "confirm_delete": "Delete \"{{name}}\"?",
"already_exists": "A note named \"{{name}}\" already exists in this location.\nPlease choose a different name.", "already_exists": "A note named \"{{name}}\" already exists in this location.\nPlease choose a different name.",
@ -101,7 +95,6 @@
"no_content": "No note content to export", "no_content": "No note content to export",
"open_first": "Please open a note first before uploading images." "open_first": "Please open a note first before uploading images."
}, },
"folders": { "folders": {
"confirm_delete": "⚠️ WARNING ⚠️\n\nAre you sure you want to delete the folder \"{{name}}\"?\n\nThis will PERMANENTLY delete:\n• All notes inside this folder\n• All subfolders and their contents\n\nThis action CANNOT be undone!", "confirm_delete": "⚠️ WARNING ⚠️\n\nAre you sure you want to delete the folder \"{{name}}\"?\n\nThis will PERMANENTLY delete:\n• All notes inside this folder\n• All subfolders and their contents\n\nThis action CANNOT be undone!",
"already_exists": "A folder named \"{{name}}\" already exists in this location.\nPlease choose a different name.", "already_exists": "A folder named \"{{name}}\" already exists in this location.\nPlease choose a different name.",
@ -118,7 +111,6 @@
"cannot_move_into_self": "Cannot move folder into itself or its subfolder.", "cannot_move_into_self": "Cannot move folder into itself or its subfolder.",
"empty": "empty" "empty": "empty"
}, },
"toolbar": { "toolbar": {
"undo": "Undo (Ctrl+Z)", "undo": "Undo (Ctrl+Z)",
"redo": "Redo (Ctrl+Y)", "redo": "Redo (Ctrl+Y)",
@ -131,14 +123,12 @@
"add_favorite": "Add to favourites", "add_favorite": "Add to favourites",
"remove_favorite": "Remove from favourites" "remove_favorite": "Remove from favourites"
}, },
"zen_mode": { "zen_mode": {
"title": "Zen Mode", "title": "Zen Mode",
"tooltip": "Zen Mode (Ctrl+Alt+Z)", "tooltip": "Zen Mode (Ctrl+Alt+Z)",
"exit": "Exit Zen Mode", "exit": "Exit Zen Mode",
"exit_hint": "Exit Zen Mode (Esc)" "exit_hint": "Exit Zen Mode (Esc)"
}, },
"share": { "share": {
"button_tooltip": "Share note", "button_tooltip": "Share note",
"modal_title": "Share Note", "modal_title": "Share Note",
@ -153,7 +143,6 @@
"show_qr": "Show QR Code", "show_qr": "Show QR Code",
"hide_qr": "Hide QR Code" "hide_qr": "Hide QR Code"
}, },
"quick_switcher": { "quick_switcher": {
"placeholder": "Type to search notes...", "placeholder": "Type to search notes...",
"no_results": "No matching notes", "no_results": "No matching notes",
@ -162,7 +151,6 @@
"open": "open", "open": "open",
"close": "close" "close": "close"
}, },
"tags": { "tags": {
"title": "Tags", "title": "Tags",
"no_tags": "No tags found", "no_tags": "No tags found",
@ -171,13 +159,11 @@
"clear_all": "Clear tag filters", "clear_all": "Clear tag filters",
"filter_by": "Filter by {{tag}} ({{count}} notes)" "filter_by": "Filter by {{tag}} ({{count}} notes)"
}, },
"outline": { "outline": {
"title": "Outline", "title": "Outline",
"no_headings": "No headings found", "no_headings": "No headings found",
"hint": "Add headings using # syntax" "hint": "Add headings using # syntax"
}, },
"backlinks": { "backlinks": {
"title": "Backlinks", "title": "Backlinks",
"no_backlinks": "No backlinks found", "no_backlinks": "No backlinks found",
@ -185,21 +171,18 @@
"select_note": "Select a note to see backlinks", "select_note": "Select a note to see backlinks",
"more_refs": "more" "more_refs": "more"
}, },
"stats": { "stats": {
"words": "words", "words": "words",
"reading_time": "~{{minutes}}m read", "reading_time": "~{{minutes}}m read",
"links": "{{count}} links", "links": "{{count}} links",
"click_details": "▼ Click for details" "click_details": "▼ Click for details"
}, },
"graph": { "graph": {
"title": "Graph View", "title": "Graph View",
"empty": "No connections to display", "empty": "No connections to display",
"markdown_links": "Markdown links", "markdown_links": "Markdown links",
"click_hint": "Click: select • Double-click: open" "click_hint": "Click: select • Double-click: open"
}, },
"templates": { "templates": {
"title": "Templates", "title": "Templates",
"select": "Select a template...", "select": "Select a template...",
@ -213,11 +196,9 @@
"available_placeholders": "Available placeholders", "available_placeholders": "Available placeholders",
"create_note": "Create Note" "create_note": "Create Note"
}, },
"export": { "export": {
"failed": "Failed to export HTML: {{error}}" "failed": "Failed to export HTML: {{error}}"
}, },
"login": { "login": {
"title": "Login", "title": "Login",
"tagline": "Your Self-Hosted Knowledge Base", "tagline": "Your Self-Hosted Knowledge Base",
@ -226,7 +207,6 @@
"footer": "🔒 Secure & Self-Hosted", "footer": "🔒 Secure & Self-Hosted",
"error_incorrect_password": "Incorrect password. Please try again." "error_incorrect_password": "Incorrect password. Please try again."
}, },
"drawing": { "drawing": {
"tool_freehand": "Pencil — freehand drawing", "tool_freehand": "Pencil — freehand drawing",
"tool_line": "Straight line", "tool_line": "Straight line",
@ -234,23 +214,19 @@
"tool_ellipse": "Circle", "tool_ellipse": "Circle",
"color": "Colour", "color": "Colour",
"width": "Stroke width", "width": "Stroke width",
"saved": "Drawing saved",
"save_hint": "Save drawing (Ctrl+S)" "save_hint": "Save drawing (Ctrl+S)"
}, },
"media": { "media": {
"confirm_delete": "Delete \"{{name}}\"?", "confirm_delete": "Delete \"{{name}}\"?",
"upload_failed": "Failed to upload file", "upload_failed": "Failed to upload file",
"no_valid_files": "No valid files found. Supported: JPG, PNG, GIF, WebP, MP3, MP4, PDF", "no_valid_files": "No valid files found. Supported: JPG, PNG, GIF, WebP, MP3, MP4, PDF",
"formats": "JPG, PNG, GIF, WebP, MP3, MP4, PDF" "formats": "JPG, PNG, GIF, WebP, MP3, MP4, PDF"
}, },
"move": { "move": {
"failed_note": "Failed to move note.", "failed_note": "Failed to move note.",
"failed_folder": "Failed to move folder.", "failed_folder": "Failed to move folder.",
"failed_media": "Failed to move media file." "failed_media": "Failed to move media file."
}, },
"search": { "search": {
"previous": "Previous (Shift+F3)", "previous": "Previous (Shift+F3)",
"next": "Next (F3)", "next": "Next (F3)",
@ -261,22 +237,18 @@
"no_results": "No notes contain \"{{query}}\"", "no_results": "No notes contain \"{{query}}\"",
"searching": "Searching for \"{{query}}\"..." "searching": "Searching for \"{{query}}\"..."
}, },
"theme": { "theme": {
"title": "Theme" "title": "Theme"
}, },
"language": { "language": {
"title": "Language" "title": "Language"
}, },
"syntax_highlight": { "syntax_highlight": {
"title": "Editor Syntax Highlight", "title": "Editor Syntax Highlight",
"description": "Colourise markdown syntax in editor", "description": "Colourise markdown syntax in editor",
"enable": "Enable syntax highlighting", "enable": "Enable syntax highlighting",
"disable": "Disable syntax highlighting" "disable": "Disable syntax highlighting"
}, },
"settings": { "settings": {
"account": "Account", "account": "Account",
"logout": "Logout", "logout": "Logout",
@ -287,7 +259,6 @@
"tab_inserts_tab": "Tab key inserts tab", "tab_inserts_tab": "Tab key inserts tab",
"tab_inserts_tab_desc": "Press Tab to insert a tab character instead of changing focus" "tab_inserts_tab_desc": "Press Tab to insert a tab character instead of changing focus"
}, },
"homepage": { "homepage": {
"title": "Home", "title": "Home",
"welcome": "Welcome to NoteDiscovery", "welcome": "Welcome to NoteDiscovery",
@ -300,7 +271,6 @@
"folder_singular": "folder", "folder_singular": "folder",
"folder_plural": "folders" "folder_plural": "folders"
}, },
"format": { "format": {
"bold": "Bold", "bold": "Bold",
"italic": "Italic", "italic": "Italic",
@ -316,23 +286,19 @@
"checkbox": "Checkbox", "checkbox": "Checkbox",
"table": "Table" "table": "Table"
}, },
"validation": { "validation": {
"forbidden_chars": "Name contains forbidden characters: {{chars}}", "forbidden_chars": "Name contains forbidden characters: {{chars}}",
"reserved_name": "This name is reserved by the operating system.", "reserved_name": "This name is reserved by the operating system.",
"invalid_dot": "Name cannot be just a dot.", "invalid_dot": "Name cannot be just a dot.",
"trailing_dot_space": "Name cannot end with a dot or space." "trailing_dot_space": "Name cannot end with a dot or space."
}, },
"support": { "support": {
"enjoying_demo": "Support this project", "enjoying_demo": "Support this project",
"deploy_own": "Deploy your own instance", "deploy_own": "Deploy your own instance",
"thank_you": "Thank you for your support! 💚" "thank_you": "Thank you for your support! 💚"
}, },
"demo": { "demo": {
"title": "DEMO MODE", "title": "DEMO MODE",
"warning": "Contents reset daily. Changes may be overwritten by other users." "warning": "Contents reset daily. Changes may be overwritten by other users."
} }
} }

View File

@ -4,11 +4,9 @@
"name": "English", "name": "English",
"flag": "🇺🇸" "flag": "🇺🇸"
}, },
"app": { "app": {
"tagline": "Your Self-Hosted Knowledge Base" "tagline": "Your Self-Hosted Knowledge Base"
}, },
"common": { "common": {
"save": "Save", "save": "Save",
"cancel": "Cancel", "cancel": "Cancel",
@ -28,12 +26,10 @@
"copy_to_clipboard": "Copy to clipboard", "copy_to_clipboard": "Copy to clipboard",
"failed": "Failed to {{action}}. Please try again." "failed": "Failed to {{action}}. Please try again."
}, },
"toast": { "toast": {
"region_label": "Notifications", "region_label": "Notifications",
"dismiss": "Dismiss" "dismiss": "Dismiss"
}, },
"sidebar": { "sidebar": {
"title": "FILES", "title": "FILES",
"favorites_title": "Favorites", "favorites_title": "Favorites",
@ -73,7 +69,6 @@
"settings_title": "SETTINGS", "settings_title": "SETTINGS",
"filtered_notes": "Filtered Notes" "filtered_notes": "Filtered Notes"
}, },
"editor": { "editor": {
"placeholder": "Start writing in markdown...", "placeholder": "Start writing in markdown...",
"drop_hint": "💡 Drop here to insert at cursor position...", "drop_hint": "💡 Drop here to insert at cursor position...",
@ -86,7 +81,6 @@
"hours_ago": "{{count}}h ago", "hours_ago": "{{count}}h ago",
"days_ago": "{{count}}d ago" "days_ago": "{{count}}d ago"
}, },
"notes": { "notes": {
"confirm_delete": "Delete \"{{name}}\"?", "confirm_delete": "Delete \"{{name}}\"?",
"already_exists": "A note named \"{{name}}\" already exists in this location.\nPlease choose a different name.", "already_exists": "A note named \"{{name}}\" already exists in this location.\nPlease choose a different name.",
@ -102,7 +96,6 @@
"no_content": "No note content to export", "no_content": "No note content to export",
"open_first": "Please open a note first before uploading images." "open_first": "Please open a note first before uploading images."
}, },
"folders": { "folders": {
"confirm_delete": "⚠️ WARNING ⚠️\n\nAre you sure you want to delete the folder \"{{name}}\"?\n\nThis will PERMANENTLY delete:\n• All notes inside this folder\n• All subfolders and their contents\n\nThis action CANNOT be undone!", "confirm_delete": "⚠️ WARNING ⚠️\n\nAre you sure you want to delete the folder \"{{name}}\"?\n\nThis will PERMANENTLY delete:\n• All notes inside this folder\n• All subfolders and their contents\n\nThis action CANNOT be undone!",
"already_exists": "A folder named \"{{name}}\" already exists in this location.\nPlease choose a different name.", "already_exists": "A folder named \"{{name}}\" already exists in this location.\nPlease choose a different name.",
@ -119,7 +112,6 @@
"cannot_move_into_self": "Cannot move folder into itself or its subfolder.", "cannot_move_into_self": "Cannot move folder into itself or its subfolder.",
"empty": "empty" "empty": "empty"
}, },
"toolbar": { "toolbar": {
"undo": "Undo (Ctrl+Z)", "undo": "Undo (Ctrl+Z)",
"redo": "Redo (Ctrl+Y)", "redo": "Redo (Ctrl+Y)",
@ -132,14 +124,12 @@
"add_favorite": "Add to favorites", "add_favorite": "Add to favorites",
"remove_favorite": "Remove from favorites" "remove_favorite": "Remove from favorites"
}, },
"zen_mode": { "zen_mode": {
"title": "Zen Mode", "title": "Zen Mode",
"tooltip": "Zen Mode (Ctrl+Alt+Z)", "tooltip": "Zen Mode (Ctrl+Alt+Z)",
"exit": "Exit Zen Mode", "exit": "Exit Zen Mode",
"exit_hint": "Exit Zen Mode (Esc)" "exit_hint": "Exit Zen Mode (Esc)"
}, },
"share": { "share": {
"button_tooltip": "Share note", "button_tooltip": "Share note",
"modal_title": "Share Note", "modal_title": "Share Note",
@ -154,7 +144,6 @@
"show_qr": "Show QR Code", "show_qr": "Show QR Code",
"hide_qr": "Hide QR Code" "hide_qr": "Hide QR Code"
}, },
"quick_switcher": { "quick_switcher": {
"placeholder": "Type to search notes...", "placeholder": "Type to search notes...",
"no_results": "No matching notes", "no_results": "No matching notes",
@ -163,7 +152,6 @@
"open": "open", "open": "open",
"close": "close" "close": "close"
}, },
"tags": { "tags": {
"title": "Tags", "title": "Tags",
"no_tags": "No tags found", "no_tags": "No tags found",
@ -172,13 +160,11 @@
"clear_all": "Clear tag filters", "clear_all": "Clear tag filters",
"filter_by": "Filter by {{tag}} ({{count}} notes)" "filter_by": "Filter by {{tag}} ({{count}} notes)"
}, },
"outline": { "outline": {
"title": "Outline", "title": "Outline",
"no_headings": "No headings found", "no_headings": "No headings found",
"hint": "Add headings using # syntax" "hint": "Add headings using # syntax"
}, },
"backlinks": { "backlinks": {
"title": "Backlinks", "title": "Backlinks",
"no_backlinks": "No backlinks found", "no_backlinks": "No backlinks found",
@ -186,21 +172,18 @@
"select_note": "Select a note to see backlinks", "select_note": "Select a note to see backlinks",
"more_refs": "more" "more_refs": "more"
}, },
"stats": { "stats": {
"words": "words", "words": "words",
"reading_time": "~{{minutes}}m read", "reading_time": "~{{minutes}}m read",
"links": "{{count}} links", "links": "{{count}} links",
"click_details": "▼ Click for details" "click_details": "▼ Click for details"
}, },
"graph": { "graph": {
"title": "Graph View", "title": "Graph View",
"empty": "No connections to display", "empty": "No connections to display",
"markdown_links": "Markdown links", "markdown_links": "Markdown links",
"click_hint": "Click: select • Double-click: open" "click_hint": "Click: select • Double-click: open"
}, },
"templates": { "templates": {
"title": "Templates", "title": "Templates",
"select": "Select a template...", "select": "Select a template...",
@ -214,11 +197,9 @@
"available_placeholders": "Available placeholders", "available_placeholders": "Available placeholders",
"create_note": "Create Note" "create_note": "Create Note"
}, },
"export": { "export": {
"failed": "Failed to export HTML: {{error}}" "failed": "Failed to export HTML: {{error}}"
}, },
"login": { "login": {
"title": "Login", "title": "Login",
"tagline": "Your Self-Hosted Knowledge Base", "tagline": "Your Self-Hosted Knowledge Base",
@ -227,7 +208,6 @@
"footer": "🔒 Secure & Self-Hosted", "footer": "🔒 Secure & Self-Hosted",
"error_incorrect_password": "Incorrect password. Please try again." "error_incorrect_password": "Incorrect password. Please try again."
}, },
"drawing": { "drawing": {
"tool_freehand": "Pencil — freehand drawing", "tool_freehand": "Pencil — freehand drawing",
"tool_line": "Straight line", "tool_line": "Straight line",
@ -235,23 +215,19 @@
"tool_ellipse": "Circle", "tool_ellipse": "Circle",
"color": "Color", "color": "Color",
"width": "Stroke width", "width": "Stroke width",
"saved": "Drawing saved",
"save_hint": "Save drawing (Ctrl+S)" "save_hint": "Save drawing (Ctrl+S)"
}, },
"media": { "media": {
"confirm_delete": "Delete \"{{name}}\"?", "confirm_delete": "Delete \"{{name}}\"?",
"upload_failed": "Failed to upload file", "upload_failed": "Failed to upload file",
"no_valid_files": "No valid files found. Supported: JPG, PNG, GIF, WebP, MP3, MP4, PDF", "no_valid_files": "No valid files found. Supported: JPG, PNG, GIF, WebP, MP3, MP4, PDF",
"formats": "JPG, PNG, GIF, WebP, MP3, MP4, PDF" "formats": "JPG, PNG, GIF, WebP, MP3, MP4, PDF"
}, },
"move": { "move": {
"failed_note": "Failed to move note.", "failed_note": "Failed to move note.",
"failed_folder": "Failed to move folder.", "failed_folder": "Failed to move folder.",
"failed_media": "Failed to move media file." "failed_media": "Failed to move media file."
}, },
"search": { "search": {
"previous": "Previous (Shift+F3)", "previous": "Previous (Shift+F3)",
"next": "Next (F3)", "next": "Next (F3)",
@ -262,22 +238,18 @@
"no_results": "No notes contain \"{{query}}\"", "no_results": "No notes contain \"{{query}}\"",
"searching": "Searching for \"{{query}}\"..." "searching": "Searching for \"{{query}}\"..."
}, },
"theme": { "theme": {
"title": "Theme" "title": "Theme"
}, },
"language": { "language": {
"title": "Language" "title": "Language"
}, },
"syntax_highlight": { "syntax_highlight": {
"title": "Editor Syntax Highlight", "title": "Editor Syntax Highlight",
"description": "Colorize markdown syntax in editor", "description": "Colorize markdown syntax in editor",
"enable": "Enable syntax highlighting", "enable": "Enable syntax highlighting",
"disable": "Disable syntax highlighting" "disable": "Disable syntax highlighting"
}, },
"settings": { "settings": {
"account": "Account", "account": "Account",
"logout": "Logout", "logout": "Logout",
@ -288,7 +260,6 @@
"tab_inserts_tab": "Tab key inserts tab", "tab_inserts_tab": "Tab key inserts tab",
"tab_inserts_tab_desc": "Press Tab to insert a tab character instead of changing focus" "tab_inserts_tab_desc": "Press Tab to insert a tab character instead of changing focus"
}, },
"homepage": { "homepage": {
"title": "Home", "title": "Home",
"welcome": "Welcome to NoteDiscovery", "welcome": "Welcome to NoteDiscovery",
@ -301,7 +272,6 @@
"folder_singular": "folder", "folder_singular": "folder",
"folder_plural": "folders" "folder_plural": "folders"
}, },
"format": { "format": {
"bold": "Bold", "bold": "Bold",
"italic": "Italic", "italic": "Italic",
@ -317,23 +287,19 @@
"checkbox": "Checkbox", "checkbox": "Checkbox",
"table": "Table" "table": "Table"
}, },
"validation": { "validation": {
"forbidden_chars": "Name contains forbidden characters: {{chars}}", "forbidden_chars": "Name contains forbidden characters: {{chars}}",
"reserved_name": "This name is reserved by the operating system.", "reserved_name": "This name is reserved by the operating system.",
"invalid_dot": "Name cannot be just a dot.", "invalid_dot": "Name cannot be just a dot.",
"trailing_dot_space": "Name cannot end with a dot or space." "trailing_dot_space": "Name cannot end with a dot or space."
}, },
"support": { "support": {
"enjoying_demo": "Support this project", "enjoying_demo": "Support this project",
"deploy_own": "Deploy your own instance", "deploy_own": "Deploy your own instance",
"thank_you": "Thank you for your support! 💚" "thank_you": "Thank you for your support! 💚"
}, },
"demo": { "demo": {
"title": "DEMO MODE", "title": "DEMO MODE",
"warning": "Contents reset daily. Changes may be overwritten by other users." "warning": "Contents reset daily. Changes may be overwritten by other users."
} }
} }

View File

@ -4,11 +4,9 @@
"name": "Español", "name": "Español",
"flag": "🇪🇸" "flag": "🇪🇸"
}, },
"app": { "app": {
"tagline": "Tu Base de Conocimientos Autoalojada" "tagline": "Tu Base de Conocimientos Autoalojada"
}, },
"common": { "common": {
"save": "Guardar", "save": "Guardar",
"cancel": "Cancelar", "cancel": "Cancelar",
@ -28,12 +26,10 @@
"copy_to_clipboard": "Copiar al portapapeles", "copy_to_clipboard": "Copiar al portapapeles",
"failed": "Error al {{action}}. Por favor, inténtalo de nuevo." "failed": "Error al {{action}}. Por favor, inténtalo de nuevo."
}, },
"toast": { "toast": {
"region_label": "Notificaciones", "region_label": "Notificaciones",
"dismiss": "Cerrar" "dismiss": "Cerrar"
}, },
"sidebar": { "sidebar": {
"title": "ARCHIVOS", "title": "ARCHIVOS",
"favorites_title": "Favoritos", "favorites_title": "Favoritos",
@ -73,7 +69,6 @@
"settings_title": "CONFIGURACIÓN", "settings_title": "CONFIGURACIÓN",
"filtered_notes": "Notas Filtradas" "filtered_notes": "Notas Filtradas"
}, },
"editor": { "editor": {
"placeholder": "Empieza a escribir en markdown...", "placeholder": "Empieza a escribir en markdown...",
"drop_hint": "💡 Suelta aquí para insertar en la posición del cursor...", "drop_hint": "💡 Suelta aquí para insertar en la posición del cursor...",
@ -86,7 +81,6 @@
"hours_ago": "hace {{count}}h", "hours_ago": "hace {{count}}h",
"days_ago": "hace {{count}}d" "days_ago": "hace {{count}}d"
}, },
"notes": { "notes": {
"confirm_delete": "¿Eliminar \"{{name}}\"?", "confirm_delete": "¿Eliminar \"{{name}}\"?",
"already_exists": "Ya existe una nota llamada \"{{name}}\" en esta ubicación.\nPor favor, elige un nombre diferente.", "already_exists": "Ya existe una nota llamada \"{{name}}\" en esta ubicación.\nPor favor, elige un nombre diferente.",
@ -102,7 +96,6 @@
"no_content": "No hay contenido para exportar", "no_content": "No hay contenido para exportar",
"open_first": "Por favor, abre una nota antes de subir imágenes." "open_first": "Por favor, abre una nota antes de subir imágenes."
}, },
"folders": { "folders": {
"confirm_delete": "⚠️ ADVERTENCIA ⚠️\n\n¿Estás seguro de que quieres eliminar la carpeta \"{{name}}\"?\n\nEsto eliminará PERMANENTEMENTE:\n• Todas las notas dentro de esta carpeta\n• Todas las subcarpetas y su contenido\n\n¡Esta acción NO se puede deshacer!", "confirm_delete": "⚠️ ADVERTENCIA ⚠️\n\n¿Estás seguro de que quieres eliminar la carpeta \"{{name}}\"?\n\nEsto eliminará PERMANENTEMENTE:\n• Todas las notas dentro de esta carpeta\n• Todas las subcarpetas y su contenido\n\n¡Esta acción NO se puede deshacer!",
"already_exists": "Ya existe una carpeta llamada \"{{name}}\" en esta ubicación.\nPor favor, elige un nombre diferente.", "already_exists": "Ya existe una carpeta llamada \"{{name}}\" en esta ubicación.\nPor favor, elige un nombre diferente.",
@ -119,7 +112,6 @@
"cannot_move_into_self": "No se puede mover una carpeta dentro de sí misma o de una subcarpeta.", "cannot_move_into_self": "No se puede mover una carpeta dentro de sí misma o de una subcarpeta.",
"empty": "vacía" "empty": "vacía"
}, },
"toolbar": { "toolbar": {
"undo": "Deshacer (Ctrl+Z)", "undo": "Deshacer (Ctrl+Z)",
"redo": "Rehacer (Ctrl+Y)", "redo": "Rehacer (Ctrl+Y)",
@ -132,14 +124,12 @@
"add_favorite": "Añadir a favoritos", "add_favorite": "Añadir a favoritos",
"remove_favorite": "Quitar de favoritos" "remove_favorite": "Quitar de favoritos"
}, },
"zen_mode": { "zen_mode": {
"title": "Modo Zen", "title": "Modo Zen",
"tooltip": "Modo Zen (Ctrl+Alt+Z)", "tooltip": "Modo Zen (Ctrl+Alt+Z)",
"exit": "Salir del Modo Zen", "exit": "Salir del Modo Zen",
"exit_hint": "Salir del Modo Zen (Esc)" "exit_hint": "Salir del Modo Zen (Esc)"
}, },
"share": { "share": {
"button_tooltip": "Compartir nota", "button_tooltip": "Compartir nota",
"modal_title": "Compartir Nota", "modal_title": "Compartir Nota",
@ -154,7 +144,6 @@
"show_qr": "Mostrar código QR", "show_qr": "Mostrar código QR",
"hide_qr": "Ocultar código QR" "hide_qr": "Ocultar código QR"
}, },
"quick_switcher": { "quick_switcher": {
"placeholder": "Escribe para buscar notas...", "placeholder": "Escribe para buscar notas...",
"no_results": "Sin resultados", "no_results": "Sin resultados",
@ -163,7 +152,6 @@
"open": "abrir", "open": "abrir",
"close": "cerrar" "close": "cerrar"
}, },
"tags": { "tags": {
"title": "Etiquetas", "title": "Etiquetas",
"no_tags": "No se encontraron etiquetas", "no_tags": "No se encontraron etiquetas",
@ -172,13 +160,11 @@
"clear_all": "Limpiar filtros de etiquetas", "clear_all": "Limpiar filtros de etiquetas",
"filter_by": "Filtrar por {{tag}} ({{count}} notas)" "filter_by": "Filtrar por {{tag}} ({{count}} notas)"
}, },
"outline": { "outline": {
"title": "Esquema", "title": "Esquema",
"no_headings": "No se encontraron encabezados", "no_headings": "No se encontraron encabezados",
"hint": "Añade encabezados usando sintaxis #" "hint": "Añade encabezados usando sintaxis #"
}, },
"backlinks": { "backlinks": {
"title": "Backlinks", "title": "Backlinks",
"no_backlinks": "No se encontraron backlinks", "no_backlinks": "No se encontraron backlinks",
@ -186,21 +172,18 @@
"select_note": "Selecciona una nota para ver backlinks", "select_note": "Selecciona una nota para ver backlinks",
"more_refs": "más" "more_refs": "más"
}, },
"stats": { "stats": {
"words": "palabras", "words": "palabras",
"reading_time": "~{{minutes}}m de lectura", "reading_time": "~{{minutes}}m de lectura",
"links": "{{count}} enlaces", "links": "{{count}} enlaces",
"click_details": "▼ Clic para detalles" "click_details": "▼ Clic para detalles"
}, },
"graph": { "graph": {
"title": "Vista de Grafo", "title": "Vista de Grafo",
"empty": "No hay conexiones para mostrar", "empty": "No hay conexiones para mostrar",
"markdown_links": "Enlaces Markdown", "markdown_links": "Enlaces Markdown",
"click_hint": "Clic: seleccionar • Doble clic: abrir" "click_hint": "Clic: seleccionar • Doble clic: abrir"
}, },
"templates": { "templates": {
"title": "Plantillas", "title": "Plantillas",
"select": "Selecciona una plantilla...", "select": "Selecciona una plantilla...",
@ -214,11 +197,9 @@
"available_placeholders": "Marcadores disponibles", "available_placeholders": "Marcadores disponibles",
"create_note": "Crear Nota" "create_note": "Crear Nota"
}, },
"export": { "export": {
"failed": "Error al exportar HTML: {{error}}" "failed": "Error al exportar HTML: {{error}}"
}, },
"login": { "login": {
"title": "Iniciar sesión", "title": "Iniciar sesión",
"tagline": "Tu Base de Conocimientos Autoalojada", "tagline": "Tu Base de Conocimientos Autoalojada",
@ -227,7 +208,6 @@
"footer": "🔒 Seguro y Autoalojado", "footer": "🔒 Seguro y Autoalojado",
"error_incorrect_password": "Contraseña incorrecta. Por favor, inténtalo de nuevo." "error_incorrect_password": "Contraseña incorrecta. Por favor, inténtalo de nuevo."
}, },
"drawing": { "drawing": {
"tool_freehand": "Lápiz — trazo libre", "tool_freehand": "Lápiz — trazo libre",
"tool_line": "Línea recta", "tool_line": "Línea recta",
@ -235,23 +215,19 @@
"tool_ellipse": "Círculo", "tool_ellipse": "Círculo",
"color": "Color", "color": "Color",
"width": "Grosor del trazo", "width": "Grosor del trazo",
"saved": "Dibujo guardado",
"save_hint": "Guardar dibujo (Ctrl+S)" "save_hint": "Guardar dibujo (Ctrl+S)"
}, },
"media": { "media": {
"confirm_delete": "¿Eliminar \"{{name}}\"?", "confirm_delete": "¿Eliminar \"{{name}}\"?",
"upload_failed": "Error al subir archivo", "upload_failed": "Error al subir archivo",
"no_valid_files": "No se encontraron archivos válidos. Soporta: JPG, PNG, GIF, WebP, MP3, MP4, PDF", "no_valid_files": "No se encontraron archivos válidos. Soporta: JPG, PNG, GIF, WebP, MP3, MP4, PDF",
"formats": "JPG, PNG, GIF, WebP, MP3, MP4, PDF" "formats": "JPG, PNG, GIF, WebP, MP3, MP4, PDF"
}, },
"move": { "move": {
"failed_note": "Error al mover la nota.", "failed_note": "Error al mover la nota.",
"failed_folder": "Error al mover la carpeta.", "failed_folder": "Error al mover la carpeta.",
"failed_media": "Error al mover el archivo multimedia." "failed_media": "Error al mover el archivo multimedia."
}, },
"search": { "search": {
"previous": "Anterior (Shift+F3)", "previous": "Anterior (Shift+F3)",
"next": "Siguiente (F3)", "next": "Siguiente (F3)",
@ -262,22 +238,18 @@
"no_results": "Ninguna nota contiene \"{{query}}\"", "no_results": "Ninguna nota contiene \"{{query}}\"",
"searching": "Buscando \"{{query}}\"..." "searching": "Buscando \"{{query}}\"..."
}, },
"theme": { "theme": {
"title": "Tema" "title": "Tema"
}, },
"language": { "language": {
"title": "Idioma" "title": "Idioma"
}, },
"syntax_highlight": { "syntax_highlight": {
"title": "Resaltado de Sintaxis del Editor", "title": "Resaltado de Sintaxis del Editor",
"description": "Colorear sintaxis markdown en el editor", "description": "Colorear sintaxis markdown en el editor",
"enable": "Activar resaltado de sintaxis", "enable": "Activar resaltado de sintaxis",
"disable": "Desactivar resaltado de sintaxis" "disable": "Desactivar resaltado de sintaxis"
}, },
"settings": { "settings": {
"account": "Cuenta", "account": "Cuenta",
"logout": "Cerrar sesión", "logout": "Cerrar sesión",
@ -288,7 +260,6 @@
"tab_inserts_tab": "Tabulador inserta tabulación", "tab_inserts_tab": "Tabulador inserta tabulación",
"tab_inserts_tab_desc": "Pulsa Tab para insertar un tabulador en lugar de cambiar el foco" "tab_inserts_tab_desc": "Pulsa Tab para insertar un tabulador en lugar de cambiar el foco"
}, },
"homepage": { "homepage": {
"title": "Inicio", "title": "Inicio",
"welcome": "Bienvenido a NoteDiscovery", "welcome": "Bienvenido a NoteDiscovery",
@ -301,7 +272,6 @@
"folder_singular": "carpeta", "folder_singular": "carpeta",
"folder_plural": "carpetas" "folder_plural": "carpetas"
}, },
"format": { "format": {
"bold": "Negrita", "bold": "Negrita",
"italic": "Cursiva", "italic": "Cursiva",
@ -317,23 +287,19 @@
"checkbox": "Casilla de verificación", "checkbox": "Casilla de verificación",
"table": "Tabla" "table": "Tabla"
}, },
"validation": { "validation": {
"forbidden_chars": "El nombre contiene caracteres no permitidos: {{chars}}", "forbidden_chars": "El nombre contiene caracteres no permitidos: {{chars}}",
"reserved_name": "Este nombre está reservado por el sistema operativo.", "reserved_name": "Este nombre está reservado por el sistema operativo.",
"invalid_dot": "El nombre no puede ser solo un punto.", "invalid_dot": "El nombre no puede ser solo un punto.",
"trailing_dot_space": "El nombre no puede terminar con un punto o espacio." "trailing_dot_space": "El nombre no puede terminar con un punto o espacio."
}, },
"support": { "support": {
"enjoying_demo": "Apoya este proyecto", "enjoying_demo": "Apoya este proyecto",
"deploy_own": "Despliega tu propia instancia", "deploy_own": "Despliega tu propia instancia",
"thank_you": "¡Gracias por tu apoyo! 💚" "thank_you": "¡Gracias por tu apoyo! 💚"
}, },
"demo": { "demo": {
"title": "MODO DEMO", "title": "MODO DEMO",
"warning": "El contenido se reinicia diariamente. Los cambios pueden ser sobrescritos por otros usuarios." "warning": "El contenido se reinicia diariamente. Los cambios pueden ser sobrescritos por otros usuarios."
} }
} }

View File

@ -4,11 +4,9 @@
"name": "Français", "name": "Français",
"flag": "🇫🇷" "flag": "🇫🇷"
}, },
"app": { "app": {
"tagline": "Votre Base de Connaissances Auto-Hébergée" "tagline": "Votre Base de Connaissances Auto-Hébergée"
}, },
"common": { "common": {
"save": "Enregistrer", "save": "Enregistrer",
"cancel": "Annuler", "cancel": "Annuler",
@ -28,12 +26,10 @@
"copy_to_clipboard": "Copier dans le presse-papiers", "copy_to_clipboard": "Copier dans le presse-papiers",
"failed": "Échec de {{action}}. Veuillez réessayer." "failed": "Échec de {{action}}. Veuillez réessayer."
}, },
"toast": { "toast": {
"region_label": "Notifications", "region_label": "Notifications",
"dismiss": "Fermer" "dismiss": "Fermer"
}, },
"sidebar": { "sidebar": {
"title": "FICHIERS", "title": "FICHIERS",
"favorites_title": "Favoris", "favorites_title": "Favoris",
@ -73,7 +69,6 @@
"settings_title": "PARAMÈTRES", "settings_title": "PARAMÈTRES",
"filtered_notes": "Notes Filtrées" "filtered_notes": "Notes Filtrées"
}, },
"editor": { "editor": {
"placeholder": "Commencez à écrire en markdown...", "placeholder": "Commencez à écrire en markdown...",
"drop_hint": "💡 Déposez ici pour insérer à la position du curseur...", "drop_hint": "💡 Déposez ici pour insérer à la position du curseur...",
@ -86,7 +81,6 @@
"hours_ago": "il y a {{count}}h", "hours_ago": "il y a {{count}}h",
"days_ago": "il y a {{count}}j" "days_ago": "il y a {{count}}j"
}, },
"notes": { "notes": {
"confirm_delete": "Supprimer \"{{name}}\" ?", "confirm_delete": "Supprimer \"{{name}}\" ?",
"already_exists": "Une note nommée \"{{name}}\" existe déjà à cet emplacement.\nVeuillez choisir un autre nom.", "already_exists": "Une note nommée \"{{name}}\" existe déjà à cet emplacement.\nVeuillez choisir un autre nom.",
@ -102,7 +96,6 @@
"no_content": "Aucun contenu à exporter", "no_content": "Aucun contenu à exporter",
"open_first": "Veuillez d'abord ouvrir une note avant de télécharger des images." "open_first": "Veuillez d'abord ouvrir une note avant de télécharger des images."
}, },
"folders": { "folders": {
"confirm_delete": "⚠️ ATTENTION ⚠️\n\nÊtes-vous sûr de vouloir supprimer le dossier \"{{name}}\" ?\n\nCeci supprimera DÉFINITIVEMENT :\n• Toutes les notes dans ce dossier\n• Tous les sous-dossiers et leur contenu\n\nCette action est IRRÉVERSIBLE !", "confirm_delete": "⚠️ ATTENTION ⚠️\n\nÊtes-vous sûr de vouloir supprimer le dossier \"{{name}}\" ?\n\nCeci supprimera DÉFINITIVEMENT :\n• Toutes les notes dans ce dossier\n• Tous les sous-dossiers et leur contenu\n\nCette action est IRRÉVERSIBLE !",
"already_exists": "Un dossier nommé \"{{name}}\" existe déjà à cet emplacement.\nVeuillez choisir un autre nom.", "already_exists": "Un dossier nommé \"{{name}}\" existe déjà à cet emplacement.\nVeuillez choisir un autre nom.",
@ -119,7 +112,6 @@
"cannot_move_into_self": "Impossible de déplacer un dossier dans lui-même ou dans un sous-dossier.", "cannot_move_into_self": "Impossible de déplacer un dossier dans lui-même ou dans un sous-dossier.",
"empty": "vide" "empty": "vide"
}, },
"toolbar": { "toolbar": {
"undo": "Annuler (Ctrl+Z)", "undo": "Annuler (Ctrl+Z)",
"redo": "Rétablir (Ctrl+Y)", "redo": "Rétablir (Ctrl+Y)",
@ -132,14 +124,12 @@
"add_favorite": "Ajouter aux favoris", "add_favorite": "Ajouter aux favoris",
"remove_favorite": "Retirer des favoris" "remove_favorite": "Retirer des favoris"
}, },
"zen_mode": { "zen_mode": {
"title": "Mode Zen", "title": "Mode Zen",
"tooltip": "Mode Zen (Ctrl+Alt+Z)", "tooltip": "Mode Zen (Ctrl+Alt+Z)",
"exit": "Quitter le Mode Zen", "exit": "Quitter le Mode Zen",
"exit_hint": "Quitter le Mode Zen (Échap)" "exit_hint": "Quitter le Mode Zen (Échap)"
}, },
"share": { "share": {
"button_tooltip": "Partager la note", "button_tooltip": "Partager la note",
"modal_title": "Partager la Note", "modal_title": "Partager la Note",
@ -154,7 +144,6 @@
"show_qr": "Afficher le code QR", "show_qr": "Afficher le code QR",
"hide_qr": "Masquer le code QR" "hide_qr": "Masquer le code QR"
}, },
"quick_switcher": { "quick_switcher": {
"placeholder": "Rechercher des notes...", "placeholder": "Rechercher des notes...",
"no_results": "Aucun résultat", "no_results": "Aucun résultat",
@ -163,7 +152,6 @@
"open": "ouvrir", "open": "ouvrir",
"close": "fermer" "close": "fermer"
}, },
"tags": { "tags": {
"title": "Étiquettes", "title": "Étiquettes",
"no_tags": "Aucune étiquette trouvée", "no_tags": "Aucune étiquette trouvée",
@ -172,13 +160,11 @@
"clear_all": "Effacer les filtres d'étiquettes", "clear_all": "Effacer les filtres d'étiquettes",
"filter_by": "Filtrer par {{tag}} ({{count}} notes)" "filter_by": "Filtrer par {{tag}} ({{count}} notes)"
}, },
"outline": { "outline": {
"title": "Plan", "title": "Plan",
"no_headings": "Aucun titre trouvé", "no_headings": "Aucun titre trouvé",
"hint": "Ajoutez des titres avec la syntaxe #" "hint": "Ajoutez des titres avec la syntaxe #"
}, },
"backlinks": { "backlinks": {
"title": "Rétroliens", "title": "Rétroliens",
"no_backlinks": "Aucun rétrolien trouvé", "no_backlinks": "Aucun rétrolien trouvé",
@ -186,21 +172,18 @@
"select_note": "Sélectionnez une note pour voir les rétroliens", "select_note": "Sélectionnez une note pour voir les rétroliens",
"more_refs": "de plus" "more_refs": "de plus"
}, },
"stats": { "stats": {
"words": "mots", "words": "mots",
"reading_time": "~{{minutes}}m de lecture", "reading_time": "~{{minutes}}m de lecture",
"links": "{{count}} liens", "links": "{{count}} liens",
"click_details": "▼ Cliquez pour les détails" "click_details": "▼ Cliquez pour les détails"
}, },
"graph": { "graph": {
"title": "Vue Graphique", "title": "Vue Graphique",
"empty": "Aucune connexion à afficher", "empty": "Aucune connexion à afficher",
"markdown_links": "Liens Markdown", "markdown_links": "Liens Markdown",
"click_hint": "Clic : sélectionner • Double-clic : ouvrir" "click_hint": "Clic : sélectionner • Double-clic : ouvrir"
}, },
"templates": { "templates": {
"title": "Modèles", "title": "Modèles",
"select": "Sélectionner un modèle...", "select": "Sélectionner un modèle...",
@ -214,11 +197,9 @@
"available_placeholders": "Variables disponibles", "available_placeholders": "Variables disponibles",
"create_note": "Créer la Note" "create_note": "Créer la Note"
}, },
"export": { "export": {
"failed": "Échec de l'export HTML : {{error}}" "failed": "Échec de l'export HTML : {{error}}"
}, },
"login": { "login": {
"title": "Connexion", "title": "Connexion",
"tagline": "Votre Base de Connaissances Auto-Hébergée", "tagline": "Votre Base de Connaissances Auto-Hébergée",
@ -227,7 +208,6 @@
"footer": "🔒 Sécurisé et Auto-Hébergé", "footer": "🔒 Sécurisé et Auto-Hébergé",
"error_incorrect_password": "Mot de passe incorrect. Veuillez réessayer." "error_incorrect_password": "Mot de passe incorrect. Veuillez réessayer."
}, },
"drawing": { "drawing": {
"tool_freehand": "Crayon — main levée", "tool_freehand": "Crayon — main levée",
"tool_line": "Ligne droite", "tool_line": "Ligne droite",
@ -235,23 +215,19 @@
"tool_ellipse": "Cercle", "tool_ellipse": "Cercle",
"color": "Couleur", "color": "Couleur",
"width": "Épaisseur du trait", "width": "Épaisseur du trait",
"saved": "Dessin enregistré",
"save_hint": "Enregistrer le dessin (Ctrl+S)" "save_hint": "Enregistrer le dessin (Ctrl+S)"
}, },
"media": { "media": {
"confirm_delete": "Supprimer \"{{name}}\" ?", "confirm_delete": "Supprimer \"{{name}}\" ?",
"upload_failed": "Échec du téléchargement du fichier", "upload_failed": "Échec du téléchargement du fichier",
"no_valid_files": "Aucun fichier valide trouvé. Supporté : JPG, PNG, GIF, WebP, MP3, MP4, PDF", "no_valid_files": "Aucun fichier valide trouvé. Supporté : JPG, PNG, GIF, WebP, MP3, MP4, PDF",
"formats": "JPG, PNG, GIF, WebP, MP3, MP4, PDF" "formats": "JPG, PNG, GIF, WebP, MP3, MP4, PDF"
}, },
"move": { "move": {
"failed_note": "Échec du déplacement de la note.", "failed_note": "Échec du déplacement de la note.",
"failed_folder": "Échec du déplacement du dossier.", "failed_folder": "Échec du déplacement du dossier.",
"failed_media": "Échec du déplacement du fichier multimédia." "failed_media": "Échec du déplacement du fichier multimédia."
}, },
"search": { "search": {
"previous": "Précédent (Maj+F3)", "previous": "Précédent (Maj+F3)",
"next": "Suivant (F3)", "next": "Suivant (F3)",
@ -262,22 +238,18 @@
"no_results": "Aucune note ne contient \"{{query}}\"", "no_results": "Aucune note ne contient \"{{query}}\"",
"searching": "Recherche de \"{{query}}\"..." "searching": "Recherche de \"{{query}}\"..."
}, },
"theme": { "theme": {
"title": "Thème" "title": "Thème"
}, },
"language": { "language": {
"title": "Langue" "title": "Langue"
}, },
"syntax_highlight": { "syntax_highlight": {
"title": "Coloration Syntaxique de l'Éditeur", "title": "Coloration Syntaxique de l'Éditeur",
"description": "Coloriser la syntaxe markdown dans l'éditeur", "description": "Coloriser la syntaxe markdown dans l'éditeur",
"enable": "Activer la coloration syntaxique", "enable": "Activer la coloration syntaxique",
"disable": "Désactiver la coloration syntaxique" "disable": "Désactiver la coloration syntaxique"
}, },
"settings": { "settings": {
"account": "Compte", "account": "Compte",
"logout": "Déconnexion", "logout": "Déconnexion",
@ -288,7 +260,6 @@
"tab_inserts_tab": "Tab insère une tabulation", "tab_inserts_tab": "Tab insère une tabulation",
"tab_inserts_tab_desc": "Appuyez sur Tab pour insérer une tabulation au lieu de changer le focus" "tab_inserts_tab_desc": "Appuyez sur Tab pour insérer une tabulation au lieu de changer le focus"
}, },
"homepage": { "homepage": {
"title": "Accueil", "title": "Accueil",
"welcome": "Bienvenue sur NoteDiscovery", "welcome": "Bienvenue sur NoteDiscovery",
@ -301,7 +272,6 @@
"folder_singular": "dossier", "folder_singular": "dossier",
"folder_plural": "dossiers" "folder_plural": "dossiers"
}, },
"format": { "format": {
"bold": "Gras", "bold": "Gras",
"italic": "Italique", "italic": "Italique",
@ -317,23 +287,19 @@
"checkbox": "Case à cocher", "checkbox": "Case à cocher",
"table": "Tableau" "table": "Tableau"
}, },
"validation": { "validation": {
"forbidden_chars": "Le nom contient des caractères interdits : {{chars}}", "forbidden_chars": "Le nom contient des caractères interdits : {{chars}}",
"reserved_name": "Ce nom est réservé par le système d'exploitation.", "reserved_name": "Ce nom est réservé par le système d'exploitation.",
"invalid_dot": "Le nom ne peut pas être juste un point.", "invalid_dot": "Le nom ne peut pas être juste un point.",
"trailing_dot_space": "Le nom ne peut pas se terminer par un point ou un espace." "trailing_dot_space": "Le nom ne peut pas se terminer par un point ou un espace."
}, },
"support": { "support": {
"enjoying_demo": "Soutenez ce projet", "enjoying_demo": "Soutenez ce projet",
"deploy_own": "Déployez votre propre instance", "deploy_own": "Déployez votre propre instance",
"thank_you": "Merci pour votre soutien ! 💚" "thank_you": "Merci pour votre soutien ! 💚"
}, },
"demo": { "demo": {
"title": "MODE DÉMO", "title": "MODE DÉMO",
"warning": "Le contenu est réinitialisé quotidiennement. Les modifications peuvent être écrasées par d'autres utilisateurs." "warning": "Le contenu est réinitialisé quotidiennement. Les modifications peuvent être écrasées par d'autres utilisateurs."
} }
} }

View File

@ -4,11 +4,9 @@
"name": "Magyar", "name": "Magyar",
"flag": "🇭🇺" "flag": "🇭🇺"
}, },
"app": { "app": {
"tagline": "A Saját, Önálló Tudásbázisod" "tagline": "A Saját, Önálló Tudásbázisod"
}, },
"common": { "common": {
"save": "Mentés", "save": "Mentés",
"cancel": "Mégse", "cancel": "Mégse",
@ -28,12 +26,10 @@
"copy_to_clipboard": "Másolás", "copy_to_clipboard": "Másolás",
"failed": "Hiba a(z) {{action}} során. Kérlek, próbáld újra." "failed": "Hiba a(z) {{action}} során. Kérlek, próbáld újra."
}, },
"toast": { "toast": {
"region_label": "Értesítések", "region_label": "Értesítések",
"dismiss": "Bezárás" "dismiss": "Bezárás"
}, },
"sidebar": { "sidebar": {
"title": "FÁJLOK", "title": "FÁJLOK",
"favorites_title": "Kedvencek", "favorites_title": "Kedvencek",
@ -73,7 +69,6 @@
"settings_title": "BEÁLLÍTÁSOK", "settings_title": "BEÁLLÍTÁSOK",
"filtered_notes": "Szűrt jegyzetek" "filtered_notes": "Szűrt jegyzetek"
}, },
"editor": { "editor": {
"placeholder": "Kezdj el írni markdown-ban...", "placeholder": "Kezdj el írni markdown-ban...",
"drop_hint": "💡 Beszúrás ide...", "drop_hint": "💡 Beszúrás ide...",
@ -86,7 +81,6 @@
"hours_ago": "{{count}} órája", "hours_ago": "{{count}} órája",
"days_ago": "{{count}} napja" "days_ago": "{{count}} napja"
}, },
"notes": { "notes": {
"confirm_delete": "Biztos törlöd a következőt: \"{{name}}\"?", "confirm_delete": "Biztos törlöd a következőt: \"{{name}}\"?",
"already_exists": "A(z) \"{{name}}\" nevű jegyzet már létezik.\nKérlek válassz egy másik nevet.", "already_exists": "A(z) \"{{name}}\" nevű jegyzet már létezik.\nKérlek válassz egy másik nevet.",
@ -102,7 +96,6 @@
"no_content": "Nincs exportálható jegyzettartalom", "no_content": "Nincs exportálható jegyzettartalom",
"open_first": "Kérlek előbb nyiss meg egy jegyzetet, mielőtt képeket töltenél fel." "open_first": "Kérlek előbb nyiss meg egy jegyzetet, mielőtt képeket töltenél fel."
}, },
"folders": { "folders": {
"confirm_delete": "⚠️ FIGYELMEZTETÉS ⚠️\n\nBiztosan törölni szeretnéd a(z) \"{{name}}\" mappát?\n\nEz VÉGLEGESEN törli a következőket:\n• A mappában található összes jegyzet\n• Az összes almappa és azok tartalma \n\nEz a művelet NEM vonható vissza!", "confirm_delete": "⚠️ FIGYELMEZTETÉS ⚠️\n\nBiztosan törölni szeretnéd a(z) \"{{name}}\" mappát?\n\nEz VÉGLEGESEN törli a következőket:\n• A mappában található összes jegyzet\n• Az összes almappa és azok tartalma \n\nEz a művelet NEM vonható vissza!",
"already_exists": "A(z) \"{{name}}\" nevű mappa már létezik.\nKérlek válassz egy másik nevet.", "already_exists": "A(z) \"{{name}}\" nevű mappa már létezik.\nKérlek válassz egy másik nevet.",
@ -119,7 +112,6 @@
"cannot_move_into_self": "A mappa nem mozgatható saját magába vagy bármelyik almappájába.", "cannot_move_into_self": "A mappa nem mozgatható saját magába vagy bármelyik almappájába.",
"empty": "üres" "empty": "üres"
}, },
"toolbar": { "toolbar": {
"undo": "Visszavon (Ctrl+Z)", "undo": "Visszavon (Ctrl+Z)",
"redo": "Helyrehoz (Ctrl+Y)", "redo": "Helyrehoz (Ctrl+Y)",
@ -132,14 +124,12 @@
"add_favorite": "Hozzáadás a kedvencekhez", "add_favorite": "Hozzáadás a kedvencekhez",
"remove_favorite": "Eltávolítás a kedvencek közül" "remove_favorite": "Eltávolítás a kedvencek közül"
}, },
"zen_mode": { "zen_mode": {
"title": "Zen Mód", "title": "Zen Mód",
"tooltip": "Zen Mód (Ctrl+Alt+Z)", "tooltip": "Zen Mód (Ctrl+Alt+Z)",
"exit": "Kilépés a Zen Módból", "exit": "Kilépés a Zen Módból",
"exit_hint": "Kilépés a Zen Módból (Esc)" "exit_hint": "Kilépés a Zen Módból (Esc)"
}, },
"share": { "share": {
"button_tooltip": "Jegyzet megosztása", "button_tooltip": "Jegyzet megosztása",
"modal_title": "Jegyzet Megosztása", "modal_title": "Jegyzet Megosztása",
@ -154,7 +144,6 @@
"show_qr": "QR-Kód Megjelenítése", "show_qr": "QR-Kód Megjelenítése",
"hide_qr": "QR-Kód Elrejtése" "hide_qr": "QR-Kód Elrejtése"
}, },
"quick_switcher": { "quick_switcher": {
"placeholder": "Írj a jegyzetek kereséséhez...", "placeholder": "Írj a jegyzetek kereséséhez...",
"no_results": "Nincs találat", "no_results": "Nincs találat",
@ -163,7 +152,6 @@
"open": "nyit", "open": "nyit",
"close": "csuk" "close": "csuk"
}, },
"tags": { "tags": {
"title": "Címkék", "title": "Címkék",
"no_tags": "Nem találhatók címkék", "no_tags": "Nem találhatók címkék",
@ -172,13 +160,11 @@
"clear_all": "Szűrők törlése", "clear_all": "Szűrők törlése",
"filter_by": "Szűrés {{tag}} ({{count}} jegyzetek)" "filter_by": "Szűrés {{tag}} ({{count}} jegyzetek)"
}, },
"outline": { "outline": {
"title": "Fejlécek", "title": "Fejlécek",
"no_headings": "Nincsenek fejlécek", "no_headings": "Nincsenek fejlécek",
"hint": "Fejléc hozzáadása a következővel: # " "hint": "Fejléc hozzáadása a következővel: # "
}, },
"backlinks": { "backlinks": {
"title": "Bejövő linkek", "title": "Bejövő linkek",
"no_backlinks": "Nincsenek bejövő linkek", "no_backlinks": "Nincsenek bejövő linkek",
@ -186,21 +172,18 @@
"select_note": "Válassz ki egy jegyzetet a bejövő linkek megtekintéséhez", "select_note": "Válassz ki egy jegyzetet a bejövő linkek megtekintéséhez",
"more_refs": "továbbiak" "more_refs": "továbbiak"
}, },
"stats": { "stats": {
"words": "szavak", "words": "szavak",
"reading_time": "~{{minutes}} percnyi olvasás", "reading_time": "~{{minutes}} percnyi olvasás",
"links": "{{count}} hivatkozások", "links": "{{count}} hivatkozások",
"click_details": "▼ Kattints a részletekért" "click_details": "▼ Kattints a részletekért"
}, },
"graph": { "graph": {
"title": "Grafikon nézet", "title": "Grafikon nézet",
"empty": "Nincsenek megjeleníthető kapcsolatok", "empty": "Nincsenek megjeleníthető kapcsolatok",
"markdown_links": "Markdown hivatkozások", "markdown_links": "Markdown hivatkozások",
"click_hint": "Kattints: kiválasztás • Dupla kattintás: megnyitás" "click_hint": "Kattints: kiválasztás • Dupla kattintás: megnyitás"
}, },
"templates": { "templates": {
"title": "Sablonok", "title": "Sablonok",
"select": "Válassz egy sablont...", "select": "Válassz egy sablont...",
@ -214,11 +197,9 @@
"available_placeholders": "Elérhető helyőrzők", "available_placeholders": "Elérhető helyőrzők",
"create_note": "Jegyzet létrehozása" "create_note": "Jegyzet létrehozása"
}, },
"export": { "export": {
"failed": "Hiba a HTML exportálása során: {{error}}" "failed": "Hiba a HTML exportálása során: {{error}}"
}, },
"login": { "login": {
"title": "Bejelentkezés", "title": "Bejelentkezés",
"tagline": "A Saját, Önálló Tudásbázisod", "tagline": "A Saját, Önálló Tudásbázisod",
@ -227,7 +208,6 @@
"footer": "🔒 Biztonságos & Saját Kiszolgálású", "footer": "🔒 Biztonságos & Saját Kiszolgálású",
"error_incorrect_password": "Helytelen jelszó. Próbáld újra." "error_incorrect_password": "Helytelen jelszó. Próbáld újra."
}, },
"drawing": { "drawing": {
"tool_freehand": "Ceruza — szabadkézi", "tool_freehand": "Ceruza — szabadkézi",
"tool_line": "Egyenes vonal", "tool_line": "Egyenes vonal",
@ -235,23 +215,19 @@
"tool_ellipse": "Kör", "tool_ellipse": "Kör",
"color": "Szín", "color": "Szín",
"width": "Vonalvastagság", "width": "Vonalvastagság",
"saved": "Rajz elmentve",
"save_hint": "Rajz mentése (Ctrl+S)" "save_hint": "Rajz mentése (Ctrl+S)"
}, },
"media": { "media": {
"confirm_delete": "Biztos törlöd a következőt: \"{{name}}\"?", "confirm_delete": "Biztos törlöd a következőt: \"{{name}}\"?",
"upload_failed": "Hiba a fájl feltöltése során", "upload_failed": "Hiba a fájl feltöltése során",
"no_valid_files": "Nem található érvényes fájl. Támogatott formátumok: JPG, PNG, GIF, WebP, MP3, MP4, PDF", "no_valid_files": "Nem található érvényes fájl. Támogatott formátumok: JPG, PNG, GIF, WebP, MP3, MP4, PDF",
"formats": "JPG, PNG, GIF, WebP, MP3, MP4, PDF" "formats": "JPG, PNG, GIF, WebP, MP3, MP4, PDF"
}, },
"move": { "move": {
"failed_note": "Hiba a jegyzet mozgatásánál.", "failed_note": "Hiba a jegyzet mozgatásánál.",
"failed_folder": "Hiba a mappa mozgatásánál.", "failed_folder": "Hiba a mappa mozgatásánál.",
"failed_media": "Hiba a médiafájl mozgatásánál." "failed_media": "Hiba a médiafájl mozgatásánál."
}, },
"search": { "search": {
"previous": "Előző (Shift+F3)", "previous": "Előző (Shift+F3)",
"next": "Következő (F3)", "next": "Következő (F3)",
@ -262,22 +238,18 @@
"no_results": "Nincs jegyzet amely tartalmazza a következőt: \"{{query}}\"", "no_results": "Nincs jegyzet amely tartalmazza a következőt: \"{{query}}\"",
"searching": "\"{{query}}\" keresése..." "searching": "\"{{query}}\" keresése..."
}, },
"theme": { "theme": {
"title": "Téma" "title": "Téma"
}, },
"language": { "language": {
"title": "Nyelv" "title": "Nyelv"
}, },
"syntax_highlight": { "syntax_highlight": {
"title": "Szintaxisok kiemelése", "title": "Szintaxisok kiemelése",
"description": "Markdown szintaxisok színezése", "description": "Markdown szintaxisok színezése",
"enable": "Szintaxiskiemelések engedélyezése", "enable": "Szintaxiskiemelések engedélyezése",
"disable": "Szintaxiskiemelések letiltása" "disable": "Szintaxiskiemelések letiltása"
}, },
"settings": { "settings": {
"account": "Fiók", "account": "Fiók",
"logout": "Kijelentkezés", "logout": "Kijelentkezés",
@ -288,7 +260,6 @@
"tab_inserts_tab": "Tab billentyű több helyet hagy a szövegben", "tab_inserts_tab": "Tab billentyű több helyet hagy a szövegben",
"tab_inserts_tab_desc": "Nyomd meg a Tab-ot, hogy több helyet hagyj a szövegben a fókuszváltás helyett" "tab_inserts_tab_desc": "Nyomd meg a Tab-ot, hogy több helyet hagyj a szövegben a fókuszváltás helyett"
}, },
"homepage": { "homepage": {
"title": "Főoldal", "title": "Főoldal",
"welcome": "Üdvözöllek a NoteDiscovery-ben", "welcome": "Üdvözöllek a NoteDiscovery-ben",
@ -301,7 +272,6 @@
"folder_singular": "mappa", "folder_singular": "mappa",
"folder_plural": "mappa" "folder_plural": "mappa"
}, },
"format": { "format": {
"bold": "Félkövér", "bold": "Félkövér",
"italic": "Dőlt", "italic": "Dőlt",
@ -317,20 +287,17 @@
"checkbox": "Jelölőnégyzet", "checkbox": "Jelölőnégyzet",
"table": "Táblázat" "table": "Táblázat"
}, },
"validation": { "validation": {
"forbidden_chars": "A név tiltott karaktereket tartalmaz: {{chars}}", "forbidden_chars": "A név tiltott karaktereket tartalmaz: {{chars}}",
"reserved_name": "Ezt a nevet az operációs rendszer tartja fenn.", "reserved_name": "Ezt a nevet az operációs rendszer tartja fenn.",
"invalid_dot": "A név nem állhat csak egy pontból.", "invalid_dot": "A név nem állhat csak egy pontból.",
"trailing_dot_space": "A név nem végződhet ponttal vagy szóközzel." "trailing_dot_space": "A név nem végződhet ponttal vagy szóközzel."
}, },
"support": { "support": {
"enjoying_demo": "Támogasd ezt a projektet", "enjoying_demo": "Támogasd ezt a projektet",
"deploy_own": "Saját példány telepítése", "deploy_own": "Saját példány telepítése",
"thank_you": "Köszönjük a támogatásodat! 💚" "thank_you": "Köszönjük a támogatásodat! 💚"
}, },
"demo": { "demo": {
"title": "DEMÓ MÓD", "title": "DEMÓ MÓD",
"warning": "A tartalom naponta visszaáll. A módosításokat más felhasználók felülírhatják." "warning": "A tartalom naponta visszaáll. A módosításokat más felhasználók felülírhatják."

View File

@ -4,11 +4,9 @@
"name": "Italiano", "name": "Italiano",
"flag": "🇮🇹" "flag": "🇮🇹"
}, },
"app": { "app": {
"tagline": "La tua base di conoscenza personale" "tagline": "La tua base di conoscenza personale"
}, },
"common": { "common": {
"save": "Salva", "save": "Salva",
"cancel": "Annulla", "cancel": "Annulla",
@ -28,12 +26,10 @@
"copy_to_clipboard": "Copia negli appunti", "copy_to_clipboard": "Copia negli appunti",
"failed": "Impossibile {{action}}. Riprova." "failed": "Impossibile {{action}}. Riprova."
}, },
"toast": { "toast": {
"region_label": "Notifiche", "region_label": "Notifiche",
"dismiss": "Chiudi" "dismiss": "Chiudi"
}, },
"sidebar": { "sidebar": {
"title": "FILE", "title": "FILE",
"favorites_title": "Preferiti", "favorites_title": "Preferiti",
@ -72,7 +68,6 @@
"settings_title": "IMPOSTAZIONI", "settings_title": "IMPOSTAZIONI",
"filtered_notes": "Note Filtrate" "filtered_notes": "Note Filtrate"
}, },
"editor": { "editor": {
"placeholder": "Inizia a scrivere in markdown...", "placeholder": "Inizia a scrivere in markdown...",
"drop_hint": "💡 Rilascia qui per inserire alla posizione del cursore...", "drop_hint": "💡 Rilascia qui per inserire alla posizione del cursore...",
@ -85,7 +80,6 @@
"hours_ago": "{{count}}h fa", "hours_ago": "{{count}}h fa",
"days_ago": "{{count}}g fa" "days_ago": "{{count}}g fa"
}, },
"notes": { "notes": {
"confirm_delete": "Eliminare \"{{name}}\"?", "confirm_delete": "Eliminare \"{{name}}\"?",
"already_exists": "Una nota chiamata \"{{name}}\" esiste già in questa posizione.\nScegli un nome diverso.", "already_exists": "Una nota chiamata \"{{name}}\" esiste già in questa posizione.\nScegli un nome diverso.",
@ -101,7 +95,6 @@
"no_content": "Nessun contenuto da esportare", "no_content": "Nessun contenuto da esportare",
"open_first": "Apri prima una nota per caricare immagini." "open_first": "Apri prima una nota per caricare immagini."
}, },
"folders": { "folders": {
"confirm_delete": "⚠️ ATTENZIONE ⚠️\n\nSei sicuro di voler eliminare la cartella \"{{name}}\"?\n\nQuesto eliminerà PERMANENTEMENTE:\n• Tutte le note in questa cartella\n• Tutte le sottocartelle e i loro contenuti\n\nQuesta azione NON PUÒ essere annullata!", "confirm_delete": "⚠️ ATTENZIONE ⚠️\n\nSei sicuro di voler eliminare la cartella \"{{name}}\"?\n\nQuesto eliminerà PERMANENTEMENTE:\n• Tutte le note in questa cartella\n• Tutte le sottocartelle e i loro contenuti\n\nQuesta azione NON PUÒ essere annullata!",
"already_exists": "Una cartella chiamata \"{{name}}\" esiste già in questa posizione.\nScegli un nome diverso.", "already_exists": "Una cartella chiamata \"{{name}}\" esiste già in questa posizione.\nScegli un nome diverso.",
@ -118,7 +111,6 @@
"cannot_move_into_self": "Impossibile spostare la cartella in se stessa o in una sottocartella.", "cannot_move_into_self": "Impossibile spostare la cartella in se stessa o in una sottocartella.",
"empty": "vuota" "empty": "vuota"
}, },
"toolbar": { "toolbar": {
"undo": "Annulla (Ctrl+Z)", "undo": "Annulla (Ctrl+Z)",
"redo": "Ripeti (Ctrl+Y)", "redo": "Ripeti (Ctrl+Y)",
@ -131,14 +123,12 @@
"add_favorite": "Aggiungi ai preferiti", "add_favorite": "Aggiungi ai preferiti",
"remove_favorite": "Rimuovi dai preferiti" "remove_favorite": "Rimuovi dai preferiti"
}, },
"zen_mode": { "zen_mode": {
"title": "Modalità Zen", "title": "Modalità Zen",
"tooltip": "Modalità Zen (Ctrl+Alt+Z)", "tooltip": "Modalità Zen (Ctrl+Alt+Z)",
"exit": "Esci dalla Modalità Zen", "exit": "Esci dalla Modalità Zen",
"exit_hint": "Esci dalla Modalità Zen (Esc)" "exit_hint": "Esci dalla Modalità Zen (Esc)"
}, },
"share": { "share": {
"button_tooltip": "Condividi nota", "button_tooltip": "Condividi nota",
"modal_title": "Condividi Nota", "modal_title": "Condividi Nota",
@ -153,7 +143,6 @@
"show_qr": "Mostra codice QR", "show_qr": "Mostra codice QR",
"hide_qr": "Nascondi codice QR" "hide_qr": "Nascondi codice QR"
}, },
"quick_switcher": { "quick_switcher": {
"placeholder": "Cerca note...", "placeholder": "Cerca note...",
"no_results": "Nessun risultato", "no_results": "Nessun risultato",
@ -162,7 +151,6 @@
"open": "apri", "open": "apri",
"close": "chiudi" "close": "chiudi"
}, },
"tags": { "tags": {
"title": "Tag", "title": "Tag",
"no_tags": "Nessun tag trovato", "no_tags": "Nessun tag trovato",
@ -171,13 +159,11 @@
"clear_all": "Cancella filtri tag", "clear_all": "Cancella filtri tag",
"filter_by": "Filtra per {{tag}} ({{count}} note)" "filter_by": "Filtra per {{tag}} ({{count}} note)"
}, },
"outline": { "outline": {
"title": "Indice", "title": "Indice",
"no_headings": "Nessun titolo trovato", "no_headings": "Nessun titolo trovato",
"hint": "Aggiungi titoli usando la sintassi #" "hint": "Aggiungi titoli usando la sintassi #"
}, },
"backlinks": { "backlinks": {
"title": "Backlink", "title": "Backlink",
"no_backlinks": "Nessun backlink trovato", "no_backlinks": "Nessun backlink trovato",
@ -185,21 +171,18 @@
"select_note": "Seleziona una nota per vedere i backlink", "select_note": "Seleziona una nota per vedere i backlink",
"more_refs": "altri" "more_refs": "altri"
}, },
"stats": { "stats": {
"words": "parole", "words": "parole",
"reading_time": "~{{minutes}}m lettura", "reading_time": "~{{minutes}}m lettura",
"links": "{{count}} link", "links": "{{count}} link",
"click_details": "▼ Clicca per dettagli" "click_details": "▼ Clicca per dettagli"
}, },
"graph": { "graph": {
"title": "Grafo", "title": "Grafo",
"empty": "Nessuna connessione da visualizzare", "empty": "Nessuna connessione da visualizzare",
"markdown_links": "Link markdown", "markdown_links": "Link markdown",
"click_hint": "Clic: seleziona • Doppio clic: apri" "click_hint": "Clic: seleziona • Doppio clic: apri"
}, },
"templates": { "templates": {
"title": "Modelli", "title": "Modelli",
"select": "Seleziona un modello...", "select": "Seleziona un modello...",
@ -213,11 +196,9 @@
"available_placeholders": "Segnaposto disponibili", "available_placeholders": "Segnaposto disponibili",
"create_note": "Crea Nota" "create_note": "Crea Nota"
}, },
"export": { "export": {
"failed": "Esportazione HTML fallita: {{error}}" "failed": "Esportazione HTML fallita: {{error}}"
}, },
"login": { "login": {
"title": "Accesso", "title": "Accesso",
"tagline": "La tua base di conoscenza personale", "tagline": "La tua base di conoscenza personale",
@ -226,7 +207,6 @@
"footer": "🔒 Sicuro e ospitato localmente", "footer": "🔒 Sicuro e ospitato localmente",
"error_incorrect_password": "Password errata. Riprova." "error_incorrect_password": "Password errata. Riprova."
}, },
"drawing": { "drawing": {
"tool_freehand": "Matita — mano libera", "tool_freehand": "Matita — mano libera",
"tool_line": "Linea retta", "tool_line": "Linea retta",
@ -234,23 +214,19 @@
"tool_ellipse": "Cerchio", "tool_ellipse": "Cerchio",
"color": "Colore", "color": "Colore",
"width": "Spessore tratto", "width": "Spessore tratto",
"saved": "Disegno salvato",
"save_hint": "Salva disegno (Ctrl+S)" "save_hint": "Salva disegno (Ctrl+S)"
}, },
"media": { "media": {
"confirm_delete": "Eliminare \"{{name}}\"?", "confirm_delete": "Eliminare \"{{name}}\"?",
"upload_failed": "Caricamento file fallito", "upload_failed": "Caricamento file fallito",
"no_valid_files": "Nessun file valido trovato. Supportati: JPG, PNG, GIF, WebP, MP3, MP4, PDF", "no_valid_files": "Nessun file valido trovato. Supportati: JPG, PNG, GIF, WebP, MP3, MP4, PDF",
"formats": "JPG, PNG, GIF, WebP, MP3, MP4, PDF" "formats": "JPG, PNG, GIF, WebP, MP3, MP4, PDF"
}, },
"move": { "move": {
"failed_note": "Impossibile spostare la nota.", "failed_note": "Impossibile spostare la nota.",
"failed_folder": "Impossibile spostare la cartella.", "failed_folder": "Impossibile spostare la cartella.",
"failed_media": "Impossibile spostare il file multimediale." "failed_media": "Impossibile spostare il file multimediale."
}, },
"search": { "search": {
"previous": "Precedente (Shift+F3)", "previous": "Precedente (Shift+F3)",
"next": "Successivo (F3)", "next": "Successivo (F3)",
@ -261,22 +237,18 @@
"no_results": "Nessuna nota contiene \"{{query}}\"", "no_results": "Nessuna nota contiene \"{{query}}\"",
"searching": "Ricerca di \"{{query}}\"..." "searching": "Ricerca di \"{{query}}\"..."
}, },
"theme": { "theme": {
"title": "Tema" "title": "Tema"
}, },
"language": { "language": {
"title": "Lingua" "title": "Lingua"
}, },
"syntax_highlight": { "syntax_highlight": {
"title": "Evidenziazione Sintassi Editor", "title": "Evidenziazione Sintassi Editor",
"description": "Colora la sintassi markdown nell'editor", "description": "Colora la sintassi markdown nell'editor",
"enable": "Attiva evidenziazione sintassi", "enable": "Attiva evidenziazione sintassi",
"disable": "Disattiva evidenziazione sintassi" "disable": "Disattiva evidenziazione sintassi"
}, },
"settings": { "settings": {
"account": "Account", "account": "Account",
"logout": "Esci", "logout": "Esci",
@ -287,7 +259,6 @@
"tab_inserts_tab": "Tab inserisce tabulazione", "tab_inserts_tab": "Tab inserisce tabulazione",
"tab_inserts_tab_desc": "Premi Tab per inserire una tabulazione invece di cambiare focus" "tab_inserts_tab_desc": "Premi Tab per inserire una tabulazione invece di cambiare focus"
}, },
"homepage": { "homepage": {
"title": "Home", "title": "Home",
"welcome": "Benvenuto in NoteDiscovery", "welcome": "Benvenuto in NoteDiscovery",
@ -300,7 +271,6 @@
"folder_singular": "cartella", "folder_singular": "cartella",
"folder_plural": "cartelle" "folder_plural": "cartelle"
}, },
"format": { "format": {
"bold": "Grassetto", "bold": "Grassetto",
"italic": "Corsivo", "italic": "Corsivo",
@ -316,20 +286,17 @@
"checkbox": "Casella di controllo", "checkbox": "Casella di controllo",
"table": "Tabella" "table": "Tabella"
}, },
"validation": { "validation": {
"forbidden_chars": "Il nome contiene caratteri non consentiti: {{chars}}", "forbidden_chars": "Il nome contiene caratteri non consentiti: {{chars}}",
"reserved_name": "Questo nome è riservato dal sistema operativo.", "reserved_name": "Questo nome è riservato dal sistema operativo.",
"invalid_dot": "Il nome non può essere solo un punto.", "invalid_dot": "Il nome non può essere solo un punto.",
"trailing_dot_space": "Il nome non può terminare con un punto o uno spazio." "trailing_dot_space": "Il nome non può terminare con un punto o uno spazio."
}, },
"support": { "support": {
"enjoying_demo": "Supporta questo progetto", "enjoying_demo": "Supporta questo progetto",
"deploy_own": "Crea la tua istanza", "deploy_own": "Crea la tua istanza",
"thank_you": "Grazie per il tuo supporto! 💚" "thank_you": "Grazie per il tuo supporto! 💚"
}, },
"demo": { "demo": {
"title": "MODALITÀ DEMO", "title": "MODALITÀ DEMO",
"warning": "I contenuti vengono ripristinati ogni giorno. Le modifiche potrebbero essere sovrascritte da altri utenti." "warning": "I contenuti vengono ripristinati ogni giorno. Le modifiche potrebbero essere sovrascritte da altri utenti."

View File

@ -4,11 +4,9 @@
"name": "日本語", "name": "日本語",
"flag": "🇯🇵" "flag": "🇯🇵"
}, },
"app": { "app": {
"tagline": "セルフホスト型ナレッジベース" "tagline": "セルフホスト型ナレッジベース"
}, },
"common": { "common": {
"save": "保存", "save": "保存",
"cancel": "キャンセル", "cancel": "キャンセル",
@ -28,12 +26,10 @@
"copy_to_clipboard": "クリップボードにコピー", "copy_to_clipboard": "クリップボードにコピー",
"failed": "{{action}}に失敗しました。もう一度お試しください。" "failed": "{{action}}に失敗しました。もう一度お試しください。"
}, },
"toast": { "toast": {
"region_label": "通知", "region_label": "通知",
"dismiss": "閉じる" "dismiss": "閉じる"
}, },
"sidebar": { "sidebar": {
"title": "ファイル", "title": "ファイル",
"favorites_title": "お気に入り", "favorites_title": "お気に入り",
@ -72,7 +68,6 @@
"settings_title": "設定", "settings_title": "設定",
"filtered_notes": "フィルター済みノート" "filtered_notes": "フィルター済みノート"
}, },
"editor": { "editor": {
"placeholder": "マークダウンで書き始める...", "placeholder": "マークダウンで書き始める...",
"drop_hint": "💡 ここにドロップしてカーソル位置に挿入...", "drop_hint": "💡 ここにドロップしてカーソル位置に挿入...",
@ -85,7 +80,6 @@
"hours_ago": "{{count}}時間前", "hours_ago": "{{count}}時間前",
"days_ago": "{{count}}日前" "days_ago": "{{count}}日前"
}, },
"notes": { "notes": {
"confirm_delete": "「{{name}}」を削除しますか?", "confirm_delete": "「{{name}}」を削除しますか?",
"already_exists": "「{{name}}」という名前のノートは既に存在します。\n別の名前を選択してください。", "already_exists": "「{{name}}」という名前のノートは既に存在します。\n別の名前を選択してください。",
@ -101,7 +95,6 @@
"no_content": "エクスポートするノートの内容がありません", "no_content": "エクスポートするノートの内容がありません",
"open_first": "画像をアップロードする前にノートを開いてください。" "open_first": "画像をアップロードする前にノートを開いてください。"
}, },
"folders": { "folders": {
"confirm_delete": "⚠️ 警告 ⚠️\n\n本当にフォルダ「{{name}}」を削除しますか?\n\n以下が完全に削除されます:\n• このフォルダ内のすべてのノート\n• すべてのサブフォルダとその内容\n\nこの操作は元に戻せません", "confirm_delete": "⚠️ 警告 ⚠️\n\n本当にフォルダ「{{name}}」を削除しますか?\n\n以下が完全に削除されます:\n• このフォルダ内のすべてのノート\n• すべてのサブフォルダとその内容\n\nこの操作は元に戻せません",
"already_exists": "「{{name}}」という名前のフォルダは既に存在します。\n別の名前を選択してください。", "already_exists": "「{{name}}」という名前のフォルダは既に存在します。\n別の名前を選択してください。",
@ -118,7 +111,6 @@
"cannot_move_into_self": "フォルダを自身またはそのサブフォルダに移動できません。", "cannot_move_into_self": "フォルダを自身またはそのサブフォルダに移動できません。",
"empty": "空" "empty": "空"
}, },
"toolbar": { "toolbar": {
"undo": "元に戻す (Ctrl+Z)", "undo": "元に戻す (Ctrl+Z)",
"redo": "やり直す (Ctrl+Y)", "redo": "やり直す (Ctrl+Y)",
@ -131,14 +123,12 @@
"add_favorite": "お気に入りに追加", "add_favorite": "お気に入りに追加",
"remove_favorite": "お気に入りから削除" "remove_favorite": "お気に入りから削除"
}, },
"zen_mode": { "zen_mode": {
"title": "集中モード", "title": "集中モード",
"tooltip": "集中モード (Ctrl+Alt+Z)", "tooltip": "集中モード (Ctrl+Alt+Z)",
"exit": "集中モードを終了", "exit": "集中モードを終了",
"exit_hint": "集中モードを終了 (Esc)" "exit_hint": "集中モードを終了 (Esc)"
}, },
"share": { "share": {
"button_tooltip": "ノートを共有", "button_tooltip": "ノートを共有",
"modal_title": "ノートを共有", "modal_title": "ノートを共有",
@ -153,7 +143,6 @@
"show_qr": "QRコードを表示", "show_qr": "QRコードを表示",
"hide_qr": "QRコードを非表示" "hide_qr": "QRコードを非表示"
}, },
"quick_switcher": { "quick_switcher": {
"placeholder": "ノートを検索...", "placeholder": "ノートを検索...",
"no_results": "結果なし", "no_results": "結果なし",
@ -162,7 +151,6 @@
"open": "開く", "open": "開く",
"close": "閉じる" "close": "閉じる"
}, },
"tags": { "tags": {
"title": "タグ", "title": "タグ",
"no_tags": "タグが見つかりません", "no_tags": "タグが見つかりません",
@ -171,13 +159,11 @@
"clear_all": "タグフィルターをクリア", "clear_all": "タグフィルターをクリア",
"filter_by": "{{tag}}でフィルター({{count}}件)" "filter_by": "{{tag}}でフィルター({{count}}件)"
}, },
"outline": { "outline": {
"title": "アウトライン", "title": "アウトライン",
"no_headings": "見出しが見つかりません", "no_headings": "見出しが見つかりません",
"hint": "# 記法で見出しを追加" "hint": "# 記法で見出しを追加"
}, },
"backlinks": { "backlinks": {
"title": "バックリンク", "title": "バックリンク",
"no_backlinks": "バックリンクが見つかりません", "no_backlinks": "バックリンクが見つかりません",
@ -185,21 +171,18 @@
"select_note": "バックリンクを表示するノートを選択", "select_note": "バックリンクを表示するノートを選択",
"more_refs": "その他" "more_refs": "その他"
}, },
"stats": { "stats": {
"words": "語", "words": "語",
"reading_time": "約{{minutes}}分で読了", "reading_time": "約{{minutes}}分で読了",
"links": "{{count}}件のリンク", "links": "{{count}}件のリンク",
"click_details": "▼ 詳細を表示" "click_details": "▼ 詳細を表示"
}, },
"graph": { "graph": {
"title": "グラフ", "title": "グラフ",
"empty": "表示する接続がありません", "empty": "表示する接続がありません",
"markdown_links": "マークダウンリンク", "markdown_links": "マークダウンリンク",
"click_hint": "クリック: 選択 • ダブルクリック: 開く" "click_hint": "クリック: 選択 • ダブルクリック: 開く"
}, },
"templates": { "templates": {
"title": "テンプレート", "title": "テンプレート",
"select": "テンプレートを選択...", "select": "テンプレートを選択...",
@ -213,11 +196,9 @@
"available_placeholders": "利用可能なプレースホルダー", "available_placeholders": "利用可能なプレースホルダー",
"create_note": "ノートを作成" "create_note": "ノートを作成"
}, },
"export": { "export": {
"failed": "HTMLエクスポートに失敗しました: {{error}}" "failed": "HTMLエクスポートに失敗しました: {{error}}"
}, },
"login": { "login": {
"title": "ログイン", "title": "ログイン",
"tagline": "セルフホスト型ナレッジベース", "tagline": "セルフホスト型ナレッジベース",
@ -226,7 +207,6 @@
"footer": "🔒 安全なセルフホスト", "footer": "🔒 安全なセルフホスト",
"error_incorrect_password": "パスワードが正しくありません。もう一度お試しください。" "error_incorrect_password": "パスワードが正しくありません。もう一度お試しください。"
}, },
"drawing": { "drawing": {
"tool_freehand": "鉛筆(フリーハンド)", "tool_freehand": "鉛筆(フリーハンド)",
"tool_line": "直線", "tool_line": "直線",
@ -234,23 +214,19 @@
"tool_ellipse": "円", "tool_ellipse": "円",
"color": "色", "color": "色",
"width": "線の太さ", "width": "線の太さ",
"saved": "保存しました",
"save_hint": "お絵かきを保存Ctrl+S" "save_hint": "お絵かきを保存Ctrl+S"
}, },
"media": { "media": {
"confirm_delete": "「{{name}}」を削除しますか?", "confirm_delete": "「{{name}}」を削除しますか?",
"upload_failed": "ファイルのアップロードに失敗しました", "upload_failed": "ファイルのアップロードに失敗しました",
"no_valid_files": "有効なファイルが見つかりません。対応: JPG, PNG, GIF, WebP, MP3, MP4, PDF", "no_valid_files": "有効なファイルが見つかりません。対応: JPG, PNG, GIF, WebP, MP3, MP4, PDF",
"formats": "JPG, PNG, GIF, WebP, MP3, MP4, PDF" "formats": "JPG, PNG, GIF, WebP, MP3, MP4, PDF"
}, },
"move": { "move": {
"failed_note": "ノートの移動に失敗しました。", "failed_note": "ノートの移動に失敗しました。",
"failed_folder": "フォルダの移動に失敗しました。", "failed_folder": "フォルダの移動に失敗しました。",
"failed_media": "メディアファイルの移動に失敗しました。" "failed_media": "メディアファイルの移動に失敗しました。"
}, },
"search": { "search": {
"previous": "前へ (Shift+F3)", "previous": "前へ (Shift+F3)",
"next": "次へ (F3)", "next": "次へ (F3)",
@ -261,22 +237,18 @@
"no_results": "「{{query}}」を含むノートはありません", "no_results": "「{{query}}」を含むノートはありません",
"searching": "「{{query}}」を検索中..." "searching": "「{{query}}」を検索中..."
}, },
"theme": { "theme": {
"title": "テーマ" "title": "テーマ"
}, },
"language": { "language": {
"title": "言語" "title": "言語"
}, },
"syntax_highlight": { "syntax_highlight": {
"title": "エディタのシンタックスハイライト", "title": "エディタのシンタックスハイライト",
"description": "エディタでマークダウン構文を色分け表示", "description": "エディタでマークダウン構文を色分け表示",
"enable": "シンタックスハイライトを有効化", "enable": "シンタックスハイライトを有効化",
"disable": "シンタックスハイライトを無効化" "disable": "シンタックスハイライトを無効化"
}, },
"settings": { "settings": {
"account": "アカウント", "account": "アカウント",
"logout": "ログアウト", "logout": "ログアウト",
@ -287,7 +259,6 @@
"tab_inserts_tab": "Tabキーでタブを挿入", "tab_inserts_tab": "Tabキーでタブを挿入",
"tab_inserts_tab_desc": "Tabキーでフォーカス移動ではなくタブ文字を挿入" "tab_inserts_tab_desc": "Tabキーでフォーカス移動ではなくタブ文字を挿入"
}, },
"homepage": { "homepage": {
"title": "ホーム", "title": "ホーム",
"welcome": "NoteDiscoveryへようこそ", "welcome": "NoteDiscoveryへようこそ",
@ -300,7 +271,6 @@
"folder_singular": "フォルダ", "folder_singular": "フォルダ",
"folder_plural": "フォルダ" "folder_plural": "フォルダ"
}, },
"format": { "format": {
"bold": "太字", "bold": "太字",
"italic": "斜体", "italic": "斜体",
@ -316,20 +286,17 @@
"checkbox": "チェックボックス", "checkbox": "チェックボックス",
"table": "表" "table": "表"
}, },
"validation": { "validation": {
"forbidden_chars": "名前に使用できない文字が含まれています: {{chars}}", "forbidden_chars": "名前に使用できない文字が含まれています: {{chars}}",
"reserved_name": "この名前はオペレーティングシステムで予約されています。", "reserved_name": "この名前はオペレーティングシステムで予約されています。",
"invalid_dot": "名前をドットだけにすることはできません。", "invalid_dot": "名前をドットだけにすることはできません。",
"trailing_dot_space": "名前の末尾にドットやスペースは使用できません。" "trailing_dot_space": "名前の末尾にドットやスペースは使用できません。"
}, },
"support": { "support": {
"enjoying_demo": "このプロジェクトを支援", "enjoying_demo": "このプロジェクトを支援",
"deploy_own": "自分のインスタンスをデプロイ", "deploy_own": "自分のインスタンスをデプロイ",
"thank_you": "ご支援ありがとうございます!💚" "thank_you": "ご支援ありがとうございます!💚"
}, },
"demo": { "demo": {
"title": "デモモード", "title": "デモモード",
"warning": "コンテンツは毎日リセットされます。変更は他のユーザーによって上書きされる場合があります。" "warning": "コンテンツは毎日リセットされます。変更は他のユーザーによって上書きされる場合があります。"

View File

@ -4,11 +4,9 @@
"name": "Русский", "name": "Русский",
"flag": "🇷🇺" "flag": "🇷🇺"
}, },
"app": { "app": {
"tagline": "Ваша локальная база знаний" "tagline": "Ваша локальная база знаний"
}, },
"common": { "common": {
"save": "Сохранить", "save": "Сохранить",
"cancel": "Отмена", "cancel": "Отмена",
@ -28,12 +26,10 @@
"copy_to_clipboard": "Копировать в буфер обмена", "copy_to_clipboard": "Копировать в буфер обмена",
"failed": "Не удалось {{action}}. Попробуйте снова." "failed": "Не удалось {{action}}. Попробуйте снова."
}, },
"toast": { "toast": {
"region_label": "Уведомления", "region_label": "Уведомления",
"dismiss": "Закрыть" "dismiss": "Закрыть"
}, },
"sidebar": { "sidebar": {
"title": "ФАЙЛЫ", "title": "ФАЙЛЫ",
"favorites_title": "Избранное", "favorites_title": "Избранное",
@ -72,7 +68,6 @@
"settings_title": "НАСТРОЙКИ", "settings_title": "НАСТРОЙКИ",
"filtered_notes": "Отфильтрованные заметки" "filtered_notes": "Отфильтрованные заметки"
}, },
"editor": { "editor": {
"placeholder": "Начните писать в markdown...", "placeholder": "Начните писать в markdown...",
"drop_hint": "💡 Отпустите здесь для вставки в позицию курсора...", "drop_hint": "💡 Отпустите здесь для вставки в позицию курсора...",
@ -85,7 +80,6 @@
"hours_ago": "{{count}} ч. назад", "hours_ago": "{{count}} ч. назад",
"days_ago": "{{count}} дн. назад" "days_ago": "{{count}} дн. назад"
}, },
"notes": { "notes": {
"confirm_delete": "Удалить «{{name}}»?", "confirm_delete": "Удалить «{{name}}»?",
"already_exists": "Заметка с именем «{{name}}» уже существует.\nВыберите другое имя.", "already_exists": "Заметка с именем «{{name}}» уже существует.\nВыберите другое имя.",
@ -101,7 +95,6 @@
"no_content": "Нет содержимого для экспорта", "no_content": "Нет содержимого для экспорта",
"open_first": "Сначала откройте заметку для загрузки изображений." "open_first": "Сначала откройте заметку для загрузки изображений."
}, },
"folders": { "folders": {
"confirm_delete": "⚠️ ВНИМАНИЕ ⚠️\n\nВы уверены, что хотите удалить папку «{{name}}»?\n\nБудет БЕЗВОЗВРАТНО удалено:\n• Все заметки в этой папке\n• Все подпапки и их содержимое\n\nЭто действие НЕЛЬЗЯ отменить!", "confirm_delete": "⚠️ ВНИМАНИЕ ⚠️\n\nВы уверены, что хотите удалить папку «{{name}}»?\n\nБудет БЕЗВОЗВРАТНО удалено:\n• Все заметки в этой папке\n• Все подпапки и их содержимое\n\nЭто действие НЕЛЬЗЯ отменить!",
"already_exists": "Папка с именем «{{name}}» уже существует.\nВыберите другое имя.", "already_exists": "Папка с именем «{{name}}» уже существует.\nВыберите другое имя.",
@ -118,7 +111,6 @@
"cannot_move_into_self": "Нельзя переместить папку в себя или в подпапку.", "cannot_move_into_self": "Нельзя переместить папку в себя или в подпапку.",
"empty": "пусто" "empty": "пусто"
}, },
"toolbar": { "toolbar": {
"undo": "Отменить (Ctrl+Z)", "undo": "Отменить (Ctrl+Z)",
"redo": "Повторить (Ctrl+Y)", "redo": "Повторить (Ctrl+Y)",
@ -131,14 +123,12 @@
"add_favorite": "Добавить в избранное", "add_favorite": "Добавить в избранное",
"remove_favorite": "Удалить из избранного" "remove_favorite": "Удалить из избранного"
}, },
"zen_mode": { "zen_mode": {
"title": "Режим концентрации", "title": "Режим концентрации",
"tooltip": "Режим концентрации (Ctrl+Alt+Z)", "tooltip": "Режим концентрации (Ctrl+Alt+Z)",
"exit": "Выйти из режима концентрации", "exit": "Выйти из режима концентрации",
"exit_hint": "Выйти из режима концентрации (Esc)" "exit_hint": "Выйти из режима концентрации (Esc)"
}, },
"share": { "share": {
"button_tooltip": "Поделиться заметкой", "button_tooltip": "Поделиться заметкой",
"modal_title": "Поделиться заметкой", "modal_title": "Поделиться заметкой",
@ -153,7 +143,6 @@
"show_qr": "Показать QR-код", "show_qr": "Показать QR-код",
"hide_qr": "Скрыть QR-код" "hide_qr": "Скрыть QR-код"
}, },
"quick_switcher": { "quick_switcher": {
"placeholder": "Поиск заметок...", "placeholder": "Поиск заметок...",
"no_results": "Ничего не найдено", "no_results": "Ничего не найдено",
@ -162,7 +151,6 @@
"open": "открыть", "open": "открыть",
"close": "закрыть" "close": "закрыть"
}, },
"tags": { "tags": {
"title": "Теги", "title": "Теги",
"no_tags": "Теги не найдены", "no_tags": "Теги не найдены",
@ -171,13 +159,11 @@
"clear_all": "Сбросить фильтры тегов", "clear_all": "Сбросить фильтры тегов",
"filter_by": "Фильтр по {{tag}} ({{count}} заметок)" "filter_by": "Фильтр по {{tag}} ({{count}} заметок)"
}, },
"outline": { "outline": {
"title": "Содержание", "title": "Содержание",
"no_headings": "Заголовки не найдены", "no_headings": "Заголовки не найдены",
"hint": "Добавьте заголовки с помощью #" "hint": "Добавьте заголовки с помощью #"
}, },
"backlinks": { "backlinks": {
"title": "Обратные ссылки", "title": "Обратные ссылки",
"no_backlinks": "Обратные ссылки не найдены", "no_backlinks": "Обратные ссылки не найдены",
@ -185,21 +171,18 @@
"select_note": "Выберите заметку, чтобы увидеть обратные ссылки", "select_note": "Выберите заметку, чтобы увидеть обратные ссылки",
"more_refs": "ещё" "more_refs": "ещё"
}, },
"stats": { "stats": {
"words": "слов", "words": "слов",
"reading_time": "~{{minutes}} мин. чтения", "reading_time": "~{{minutes}} мин. чтения",
"links": "{{count}} ссылок", "links": "{{count}} ссылок",
"click_details": "▼ Нажмите для подробностей" "click_details": "▼ Нажмите для подробностей"
}, },
"graph": { "graph": {
"title": "Граф связей", "title": "Граф связей",
"empty": "Нет связей для отображения", "empty": "Нет связей для отображения",
"markdown_links": "Markdown-ссылки", "markdown_links": "Markdown-ссылки",
"click_hint": "Клик: выбрать • Двойной клик: открыть" "click_hint": "Клик: выбрать • Двойной клик: открыть"
}, },
"templates": { "templates": {
"title": "Шаблоны", "title": "Шаблоны",
"select": "Выберите шаблон...", "select": "Выберите шаблон...",
@ -213,11 +196,9 @@
"available_placeholders": "Доступные плейсхолдеры", "available_placeholders": "Доступные плейсхолдеры",
"create_note": "Создать заметку" "create_note": "Создать заметку"
}, },
"export": { "export": {
"failed": "Ошибка экспорта HTML: {{error}}" "failed": "Ошибка экспорта HTML: {{error}}"
}, },
"login": { "login": {
"title": "Вход", "title": "Вход",
"tagline": "Ваша локальная база знаний", "tagline": "Ваша локальная база знаний",
@ -226,7 +207,6 @@
"footer": "🔒 Безопасно и локально", "footer": "🔒 Безопасно и локально",
"error_incorrect_password": "Неверный пароль. Попробуйте снова." "error_incorrect_password": "Неверный пароль. Попробуйте снова."
}, },
"drawing": { "drawing": {
"tool_freehand": "Карандаш — от руки", "tool_freehand": "Карандаш — от руки",
"tool_line": "Прямая линия", "tool_line": "Прямая линия",
@ -234,23 +214,19 @@
"tool_ellipse": "Круг", "tool_ellipse": "Круг",
"color": "Цвет", "color": "Цвет",
"width": "Толщина линии", "width": "Толщина линии",
"saved": "Рисунок сохранён",
"save_hint": "Сохранить рисунок (Ctrl+S)" "save_hint": "Сохранить рисунок (Ctrl+S)"
}, },
"media": { "media": {
"confirm_delete": "Удалить «{{name}}»?", "confirm_delete": "Удалить «{{name}}»?",
"upload_failed": "Не удалось загрузить файл", "upload_failed": "Не удалось загрузить файл",
"no_valid_files": "Не найдено подходящих файлов. Поддерживает: JPG, PNG, GIF, WebP, MP3, MP4, PDF", "no_valid_files": "Не найдено подходящих файлов. Поддерживает: JPG, PNG, GIF, WebP, MP3, MP4, PDF",
"formats": "JPG, PNG, GIF, WebP, MP3, MP4, PDF" "formats": "JPG, PNG, GIF, WebP, MP3, MP4, PDF"
}, },
"move": { "move": {
"failed_note": "Не удалось переместить заметку.", "failed_note": "Не удалось переместить заметку.",
"failed_folder": "Не удалось переместить папку.", "failed_folder": "Не удалось переместить папку.",
"failed_media": "Не удалось переместить медиафайл." "failed_media": "Не удалось переместить медиафайл."
}, },
"search": { "search": {
"previous": "Предыдущий (Shift+F3)", "previous": "Предыдущий (Shift+F3)",
"next": "Следующий (F3)", "next": "Следующий (F3)",
@ -261,22 +237,18 @@
"no_results": "Нет заметок с \"{{query}}\"", "no_results": "Нет заметок с \"{{query}}\"",
"searching": "Поиск \"{{query}}\"..." "searching": "Поиск \"{{query}}\"..."
}, },
"theme": { "theme": {
"title": "Тема" "title": "Тема"
}, },
"language": { "language": {
"title": "Язык" "title": "Язык"
}, },
"syntax_highlight": { "syntax_highlight": {
"title": "Подсветка синтаксиса", "title": "Подсветка синтаксиса",
"description": "Подсветка markdown-синтаксиса в редакторе", "description": "Подсветка markdown-синтаксиса в редакторе",
"enable": "Включить подсветку синтаксиса", "enable": "Включить подсветку синтаксиса",
"disable": "Выключить подсветку синтаксиса" "disable": "Выключить подсветку синтаксиса"
}, },
"settings": { "settings": {
"account": "Аккаунт", "account": "Аккаунт",
"logout": "Выйти", "logout": "Выйти",
@ -287,7 +259,6 @@
"tab_inserts_tab": "Tab вставляет табуляцию", "tab_inserts_tab": "Tab вставляет табуляцию",
"tab_inserts_tab_desc": "Нажмите Tab для вставки табуляции вместо переключения фокуса" "tab_inserts_tab_desc": "Нажмите Tab для вставки табуляции вместо переключения фокуса"
}, },
"homepage": { "homepage": {
"title": "Главная", "title": "Главная",
"welcome": "Добро пожаловать в NoteDiscovery", "welcome": "Добро пожаловать в NoteDiscovery",
@ -300,7 +271,6 @@
"folder_singular": "папка", "folder_singular": "папка",
"folder_plural": "папок" "folder_plural": "папок"
}, },
"format": { "format": {
"bold": "Жирный", "bold": "Жирный",
"italic": "Курсив", "italic": "Курсив",
@ -316,20 +286,17 @@
"checkbox": "Чекбокс", "checkbox": "Чекбокс",
"table": "Таблица" "table": "Таблица"
}, },
"validation": { "validation": {
"forbidden_chars": "Имя содержит запрещённые символы: {{chars}}", "forbidden_chars": "Имя содержит запрещённые символы: {{chars}}",
"reserved_name": "Это имя зарезервировано операционной системой.", "reserved_name": "Это имя зарезервировано операционной системой.",
"invalid_dot": "Имя не может состоять только из точки.", "invalid_dot": "Имя не может состоять только из точки.",
"trailing_dot_space": "Имя не может заканчиваться точкой или пробелом." "trailing_dot_space": "Имя не может заканчиваться точкой или пробелом."
}, },
"support": { "support": {
"enjoying_demo": "Поддержать проект", "enjoying_demo": "Поддержать проект",
"deploy_own": "Развернуть свой экземпляр", "deploy_own": "Развернуть свой экземпляр",
"thank_you": "Спасибо за поддержку! 💚" "thank_you": "Спасибо за поддержку! 💚"
}, },
"demo": { "demo": {
"title": "ДЕМО-РЕЖИМ", "title": "ДЕМО-РЕЖИМ",
"warning": "Содержимое сбрасывается ежедневно. Изменения могут быть перезаписаны другими пользователями." "warning": "Содержимое сбрасывается ежедневно. Изменения могут быть перезаписаны другими пользователями."

View File

@ -4,11 +4,9 @@
"name": "Slovenščina", "name": "Slovenščina",
"flag": "🇸🇮" "flag": "🇸🇮"
}, },
"app": { "app": {
"tagline": "Vaša lastna baza znanja" "tagline": "Vaša lastna baza znanja"
}, },
"common": { "common": {
"save": "Shrani", "save": "Shrani",
"cancel": "Prekliči", "cancel": "Prekliči",
@ -28,12 +26,10 @@
"copy_to_clipboard": "Kopiraj v odložišče", "copy_to_clipboard": "Kopiraj v odložišče",
"failed": "Napaka pri {{action}}. Prosimo, poskusite znova." "failed": "Napaka pri {{action}}. Prosimo, poskusite znova."
}, },
"toast": { "toast": {
"region_label": "Obvestila", "region_label": "Obvestila",
"dismiss": "Zapri" "dismiss": "Zapri"
}, },
"sidebar": { "sidebar": {
"title": "DATOTEKE", "title": "DATOTEKE",
"favorites_title": "Priljubljene", "favorites_title": "Priljubljene",
@ -72,7 +68,6 @@
"settings_title": "NASTAVITVE", "settings_title": "NASTAVITVE",
"filtered_notes": "Filtrirani zapiski" "filtered_notes": "Filtrirani zapiski"
}, },
"editor": { "editor": {
"placeholder": "Začnite pisati v markdownu...", "placeholder": "Začnite pisati v markdownu...",
"drop_hint": "💡 Spustite tukaj za vstavljanje na mesto kazalca...", "drop_hint": "💡 Spustite tukaj za vstavljanje na mesto kazalca...",
@ -85,7 +80,6 @@
"hours_ago": "pred {{count}} h", "hours_ago": "pred {{count}} h",
"days_ago": "pred {{count}} d" "days_ago": "pred {{count}} d"
}, },
"notes": { "notes": {
"confirm_delete": "Izbrišem \"{{name}}\"?", "confirm_delete": "Izbrišem \"{{name}}\"?",
"already_exists": "Zapis z imenom \"{{name}}\" na tej lokaciji že obstaja.\nProsimo, izberite drugo ime.", "already_exists": "Zapis z imenom \"{{name}}\" na tej lokaciji že obstaja.\nProsimo, izberite drugo ime.",
@ -101,7 +95,6 @@
"no_content": "Ni vsebine za izvoz", "no_content": "Ni vsebine za izvoz",
"open_first": "Prosimo, najprej odprite zapis, preden naložite slike." "open_first": "Prosimo, najprej odprite zapis, preden naložite slike."
}, },
"folders": { "folders": {
"confirm_delete": "⚠️ OPOZORILO ⚠️\n\nAli ste prepričani, da želite izbrisati mapo \"{{name}}\"?\n\nTo bo TRAJNO izbrisalo:\n• Vse zapiske v tej mapi\n• Vse podmape in njihovo vsebino\n\nTe akcije NI mogoče preklicati!", "confirm_delete": "⚠️ OPOZORILO ⚠️\n\nAli ste prepričani, da želite izbrisati mapo \"{{name}}\"?\n\nTo bo TRAJNO izbrisalo:\n• Vse zapiske v tej mapi\n• Vse podmape in njihovo vsebino\n\nTe akcije NI mogoče preklicati!",
"already_exists": "Mapa z imenom \"{{name}}\" na tej lokaciji že obstaja.\nProsimo, izberite drugo ime.", "already_exists": "Mapa z imenom \"{{name}}\" na tej lokaciji že obstaja.\nProsimo, izberite drugo ime.",
@ -118,7 +111,6 @@
"cannot_move_into_self": "Mape ni mogoče premakniti vase ali v njeno podmapo.", "cannot_move_into_self": "Mape ni mogoče premakniti vase ali v njeno podmapo.",
"empty": "prazno" "empty": "prazno"
}, },
"toolbar": { "toolbar": {
"undo": "Razveljavi (Ctrl+Z)", "undo": "Razveljavi (Ctrl+Z)",
"redo": "Ponovi (Ctrl+Y)", "redo": "Ponovi (Ctrl+Y)",
@ -131,14 +123,12 @@
"add_favorite": "Dodaj med priljubljene", "add_favorite": "Dodaj med priljubljene",
"remove_favorite": "Odstrani iz priljubljenih" "remove_favorite": "Odstrani iz priljubljenih"
}, },
"zen_mode": { "zen_mode": {
"title": "Zen način", "title": "Zen način",
"tooltip": "Zen način (Ctrl+Alt+Z)", "tooltip": "Zen način (Ctrl+Alt+Z)",
"exit": "Izhod iz zen načina", "exit": "Izhod iz zen načina",
"exit_hint": "Izhod iz zen načina (Esc)" "exit_hint": "Izhod iz zen načina (Esc)"
}, },
"share": { "share": {
"button_tooltip": "Deli zapis", "button_tooltip": "Deli zapis",
"modal_title": "Deli zapis", "modal_title": "Deli zapis",
@ -153,7 +143,6 @@
"show_qr": "Prikaži QR kodo", "show_qr": "Prikaži QR kodo",
"hide_qr": "Skrij QR kodo" "hide_qr": "Skrij QR kodo"
}, },
"quick_switcher": { "quick_switcher": {
"placeholder": "Išči beležke...", "placeholder": "Išči beležke...",
"no_results": "Ni rezultatov", "no_results": "Ni rezultatov",
@ -162,7 +151,6 @@
"open": "odpri", "open": "odpri",
"close": "zapri" "close": "zapri"
}, },
"tags": { "tags": {
"title": "Oznake", "title": "Oznake",
"no_tags": "Ni najdenih oznak", "no_tags": "Ni najdenih oznak",
@ -171,13 +159,11 @@
"clear_all": "Počisti filtre oznak", "clear_all": "Počisti filtre oznak",
"filter_by": "Filtriraj po {{tag}} ({{count}} zapiskov)" "filter_by": "Filtriraj po {{tag}} ({{count}} zapiskov)"
}, },
"outline": { "outline": {
"title": "Oris", "title": "Oris",
"no_headings": "Ni najdenih naslovov", "no_headings": "Ni najdenih naslovov",
"hint": "Dodajte naslove s sintakso #" "hint": "Dodajte naslove s sintakso #"
}, },
"backlinks": { "backlinks": {
"title": "Povratne povezave", "title": "Povratne povezave",
"no_backlinks": "Ni najdenih povratnih povezav", "no_backlinks": "Ni najdenih povratnih povezav",
@ -185,21 +171,18 @@
"select_note": "Izberite beležko za ogled povratnih povezav", "select_note": "Izberite beležko za ogled povratnih povezav",
"more_refs": "več" "more_refs": "več"
}, },
"stats": { "stats": {
"words": "besed", "words": "besed",
"reading_time": "~{{minutes}} min branja", "reading_time": "~{{minutes}} min branja",
"links": "{{count}} povezav", "links": "{{count}} povezav",
"click_details": "▼ Kliknite za podrobnosti" "click_details": "▼ Kliknite za podrobnosti"
}, },
"graph": { "graph": {
"title": "Grafični prikaz", "title": "Grafični prikaz",
"empty": "Ni povezav za prikaz", "empty": "Ni povezav za prikaz",
"markdown_links": "Markdown povezave", "markdown_links": "Markdown povezave",
"click_hint": "Klik: izberi • Dvojni klik: odpri" "click_hint": "Klik: izberi • Dvojni klik: odpri"
}, },
"templates": { "templates": {
"title": "Predloge", "title": "Predloge",
"select": "Izberite predlogo...", "select": "Izberite predlogo...",
@ -213,11 +196,9 @@
"available_placeholders": "Razpoložljivi gradniki", "available_placeholders": "Razpoložljivi gradniki",
"create_note": "Ustvari zapis" "create_note": "Ustvari zapis"
}, },
"export": { "export": {
"failed": "Izvoz v HTML ni uspel: {{error}}" "failed": "Izvoz v HTML ni uspel: {{error}}"
}, },
"login": { "login": {
"title": "Prijava", "title": "Prijava",
"tagline": "Vaša lastna baza znanja", "tagline": "Vaša lastna baza znanja",
@ -226,7 +207,6 @@
"footer": "🔒 Varno in samostojno gostovano", "footer": "🔒 Varno in samostojno gostovano",
"error_incorrect_password": "Napačno geslo. Prosimo, poskusite znova." "error_incorrect_password": "Napačno geslo. Prosimo, poskusite znova."
}, },
"drawing": { "drawing": {
"tool_freehand": "Svinčnik — prostoročno", "tool_freehand": "Svinčnik — prostoročno",
"tool_line": "Ravna črta", "tool_line": "Ravna črta",
@ -234,23 +214,19 @@
"tool_ellipse": "Krog", "tool_ellipse": "Krog",
"color": "Barva", "color": "Barva",
"width": "Debelina črte", "width": "Debelina črte",
"saved": "Risba shranjena",
"save_hint": "Shrani risbo (Ctrl+S)" "save_hint": "Shrani risbo (Ctrl+S)"
}, },
"media": { "media": {
"confirm_delete": "Izbrišem \"{{name}}\"?", "confirm_delete": "Izbrišem \"{{name}}\"?",
"upload_failed": "Nalaganje datoteke ni uspelo", "upload_failed": "Nalaganje datoteke ni uspelo",
"no_valid_files": "Ni najdenih veljavnih datotek. Podprto: JPG, PNG, GIF, WebP, MP3, MP4, PDF", "no_valid_files": "Ni najdenih veljavnih datotek. Podprto: JPG, PNG, GIF, WebP, MP3, MP4, PDF",
"formats": "JPG, PNG, GIF, WebP, MP3, MP4, PDF" "formats": "JPG, PNG, GIF, WebP, MP3, MP4, PDF"
}, },
"move": { "move": {
"failed_note": "Napaka pri premikanju zapisa.", "failed_note": "Napaka pri premikanju zapisa.",
"failed_folder": "Napaka pri premikanju mape.", "failed_folder": "Napaka pri premikanju mape.",
"failed_media": "Napaka pri premikanju medijske datoteke." "failed_media": "Napaka pri premikanju medijske datoteke."
}, },
"search": { "search": {
"previous": "Prejšnje (Shift+F3)", "previous": "Prejšnje (Shift+F3)",
"next": "Naslednje (F3)", "next": "Naslednje (F3)",
@ -261,22 +237,18 @@
"no_results": "Nobena beležka ne vsebuje \"{{query}}\"", "no_results": "Nobena beležka ne vsebuje \"{{query}}\"",
"searching": "Iskanje \"{{query}}\"..." "searching": "Iskanje \"{{query}}\"..."
}, },
"theme": { "theme": {
"title": "Tema" "title": "Tema"
}, },
"language": { "language": {
"title": "Jezik" "title": "Jezik"
}, },
"syntax_highlight": { "syntax_highlight": {
"title": "Poudarjanje sintakse v urejevalniku", "title": "Poudarjanje sintakse v urejevalniku",
"description": "Obarvaj markdown sintakso v urejevalniku", "description": "Obarvaj markdown sintakso v urejevalniku",
"enable": "Omogoči poudarjanje sintakse", "enable": "Omogoči poudarjanje sintakse",
"disable": "Onemogoči poudarjanje sintakse" "disable": "Onemogoči poudarjanje sintakse"
}, },
"settings": { "settings": {
"account": "Račun", "account": "Račun",
"logout": "Odjava", "logout": "Odjava",
@ -287,7 +259,6 @@
"tab_inserts_tab": "Tipka Tab vstavi tabulator", "tab_inserts_tab": "Tipka Tab vstavi tabulator",
"tab_inserts_tab_desc": "Pritisnite Tab za vstavljanje tabulatorja namesto premikanja fokusa" "tab_inserts_tab_desc": "Pritisnite Tab za vstavljanje tabulatorja namesto premikanja fokusa"
}, },
"homepage": { "homepage": {
"title": "Domov", "title": "Domov",
"welcome": "Dobrodošli v NoteDiscovery", "welcome": "Dobrodošli v NoteDiscovery",
@ -300,7 +271,6 @@
"folder_singular": "mapa", "folder_singular": "mapa",
"folder_plural": "mape" "folder_plural": "mape"
}, },
"format": { "format": {
"bold": "Krepko", "bold": "Krepko",
"italic": "Ležeče", "italic": "Ležeče",
@ -316,20 +286,17 @@
"checkbox": "Potrditveno polje", "checkbox": "Potrditveno polje",
"table": "Tabela" "table": "Tabela"
}, },
"validation": { "validation": {
"forbidden_chars": "Ime vsebuje prepovedane znake: {{chars}}", "forbidden_chars": "Ime vsebuje prepovedane znake: {{chars}}",
"reserved_name": "To ime je rezervirano s strani operacijskega sistema.", "reserved_name": "To ime je rezervirano s strani operacijskega sistema.",
"invalid_dot": "Ime ne more biti le pika.", "invalid_dot": "Ime ne more biti le pika.",
"trailing_dot_space": "Ime se ne more končati s piko ali presledkom." "trailing_dot_space": "Ime se ne more končati s piko ali presledkom."
}, },
"support": { "support": {
"enjoying_demo": "Podprite ta projekt", "enjoying_demo": "Podprite ta projekt",
"deploy_own": "Namestite svojo instanco", "deploy_own": "Namestite svojo instanco",
"thank_you": "Hvala za podporo! 💚" "thank_you": "Hvala za podporo! 💚"
}, },
"demo": { "demo": {
"title": "DEMO NAČIN", "title": "DEMO NAČIN",
"warning": "Vsebina se dnevno ponastavi. Spremembe lahko prepišejo drugi uporabniki." "warning": "Vsebina se dnevno ponastavi. Spremembe lahko prepišejo drugi uporabniki."

View File

@ -4,11 +4,9 @@
"name": "Chinese (Simplified)", "name": "Chinese (Simplified)",
"flag": "🇨🇳" "flag": "🇨🇳"
}, },
"app": { "app": {
"tagline": "您的自托管知识库" "tagline": "您的自托管知识库"
}, },
"common": { "common": {
"save": "保存", "save": "保存",
"cancel": "取消", "cancel": "取消",
@ -28,12 +26,10 @@
"copy_to_clipboard": "复制到剪贴板", "copy_to_clipboard": "复制到剪贴板",
"failed": "{{action}} 失败。请重试。" "failed": "{{action}} 失败。请重试。"
}, },
"toast": { "toast": {
"region_label": "通知", "region_label": "通知",
"dismiss": "关闭" "dismiss": "关闭"
}, },
"sidebar": { "sidebar": {
"title": "文件", "title": "文件",
"favorites_title": "收藏夹", "favorites_title": "收藏夹",
@ -72,7 +68,6 @@
"settings_title": "设置", "settings_title": "设置",
"filtered_notes": "筛选的笔记" "filtered_notes": "筛选的笔记"
}, },
"editor": { "editor": {
"placeholder": "开始用 Markdown 写作...", "placeholder": "开始用 Markdown 写作...",
"drop_hint": "💡 拖放到此处以插入到光标位置...", "drop_hint": "💡 拖放到此处以插入到光标位置...",
@ -85,7 +80,6 @@
"hours_ago": "{{count}}小时前", "hours_ago": "{{count}}小时前",
"days_ago": "{{count}}天前" "days_ago": "{{count}}天前"
}, },
"notes": { "notes": {
"confirm_delete": "删除 \"{{name}}\"", "confirm_delete": "删除 \"{{name}}\"",
"already_exists": "此位置已存在名为 \"{{name}}\" 的笔记。\n请选择一个不同的名称。", "already_exists": "此位置已存在名为 \"{{name}}\" 的笔记。\n请选择一个不同的名称。",
@ -101,7 +95,6 @@
"no_content": "没有可导出的笔记内容", "no_content": "没有可导出的笔记内容",
"open_first": "请先打开一篇笔记,然后再上传图片。" "open_first": "请先打开一篇笔记,然后再上传图片。"
}, },
"folders": { "folders": {
"confirm_delete": "⚠️ 警告 ⚠️\n\n您确定要删除文件夹 \"{{name}}\" 吗?\n\n这将永久删除\n• 此文件夹内的所有笔记\n• 所有子文件夹及其内容\n\n此操作无法撤销", "confirm_delete": "⚠️ 警告 ⚠️\n\n您确定要删除文件夹 \"{{name}}\" 吗?\n\n这将永久删除\n• 此文件夹内的所有笔记\n• 所有子文件夹及其内容\n\n此操作无法撤销",
"already_exists": "此位置已存在名为 \"{{name}}\" 的文件夹。\n请选择一个不同的名称。", "already_exists": "此位置已存在名为 \"{{name}}\" 的文件夹。\n请选择一个不同的名称。",
@ -118,7 +111,6 @@
"cannot_move_into_self": "无法将文件夹移动到其自身或其子文件夹中。", "cannot_move_into_self": "无法将文件夹移动到其自身或其子文件夹中。",
"empty": "空" "empty": "空"
}, },
"toolbar": { "toolbar": {
"undo": "撤销 (Ctrl+Z)", "undo": "撤销 (Ctrl+Z)",
"redo": "重做 (Ctrl+Y)", "redo": "重做 (Ctrl+Y)",
@ -131,14 +123,12 @@
"add_favorite": "添加到收藏夹", "add_favorite": "添加到收藏夹",
"remove_favorite": "从收藏夹移除" "remove_favorite": "从收藏夹移除"
}, },
"zen_mode": { "zen_mode": {
"title": "禅模式", "title": "禅模式",
"tooltip": "禅模式 (Ctrl+Alt+Z)", "tooltip": "禅模式 (Ctrl+Alt+Z)",
"exit": "退出禅模式", "exit": "退出禅模式",
"exit_hint": "退出禅模式 (Esc)" "exit_hint": "退出禅模式 (Esc)"
}, },
"share": { "share": {
"button_tooltip": "分享笔记", "button_tooltip": "分享笔记",
"modal_title": "分享笔记", "modal_title": "分享笔记",
@ -153,7 +143,6 @@
"show_qr": "显示二维码", "show_qr": "显示二维码",
"hide_qr": "隐藏二维码" "hide_qr": "隐藏二维码"
}, },
"quick_switcher": { "quick_switcher": {
"placeholder": "搜索笔记...", "placeholder": "搜索笔记...",
"no_results": "无匹配结果", "no_results": "无匹配结果",
@ -162,7 +151,6 @@
"open": "打开", "open": "打开",
"close": "关闭" "close": "关闭"
}, },
"tags": { "tags": {
"title": "标签", "title": "标签",
"no_tags": "未找到标签", "no_tags": "未找到标签",
@ -171,13 +159,11 @@
"clear_all": "清除所有标签过滤器", "clear_all": "清除所有标签过滤器",
"filter_by": "按 {{tag}} 过滤 ({{count}} 条笔记)" "filter_by": "按 {{tag}} 过滤 ({{count}} 条笔记)"
}, },
"outline": { "outline": {
"title": "大纲", "title": "大纲",
"no_headings": "未找到标题", "no_headings": "未找到标题",
"hint": "使用 # 语法添加标题" "hint": "使用 # 语法添加标题"
}, },
"backlinks": { "backlinks": {
"title": "反向链接", "title": "反向链接",
"no_backlinks": "未找到反向链接", "no_backlinks": "未找到反向链接",
@ -185,21 +171,18 @@
"select_note": "选择一个笔记以查看反向链接", "select_note": "选择一个笔记以查看反向链接",
"more_refs": "更多" "more_refs": "更多"
}, },
"stats": { "stats": {
"words": "字数", "words": "字数",
"reading_time": "~{{minutes}}分钟阅读", "reading_time": "~{{minutes}}分钟阅读",
"links": "{{count}} 个链接", "links": "{{count}} 个链接",
"click_details": "▼ 点击查看详情" "click_details": "▼ 点击查看详情"
}, },
"graph": { "graph": {
"title": "图谱", "title": "图谱",
"empty": "无连接可显示", "empty": "无连接可显示",
"markdown_links": "Markdown 链接", "markdown_links": "Markdown 链接",
"click_hint": "点击:选择 • 双击:打开" "click_hint": "点击:选择 • 双击:打开"
}, },
"templates": { "templates": {
"title": "模板", "title": "模板",
"select": "选择一个模板...", "select": "选择一个模板...",
@ -213,11 +196,9 @@
"available_placeholders": "可用占位符", "available_placeholders": "可用占位符",
"create_note": "创建笔记" "create_note": "创建笔记"
}, },
"export": { "export": {
"failed": "导出 HTML 失败:{{error}}" "failed": "导出 HTML 失败:{{error}}"
}, },
"login": { "login": {
"title": "登录", "title": "登录",
"tagline": "您的自托管知识库", "tagline": "您的自托管知识库",
@ -226,7 +207,6 @@
"footer": "🔒 安全且自托管", "footer": "🔒 安全且自托管",
"error_incorrect_password": "密码错误。请重试。" "error_incorrect_password": "密码错误。请重试。"
}, },
"drawing": { "drawing": {
"tool_freehand": "铅笔 — 自由绘制", "tool_freehand": "铅笔 — 自由绘制",
"tool_line": "直线", "tool_line": "直线",
@ -234,23 +214,19 @@
"tool_ellipse": "圆形", "tool_ellipse": "圆形",
"color": "颜色", "color": "颜色",
"width": "线条粗细", "width": "线条粗细",
"saved": "绘图已保存",
"save_hint": "保存绘图Ctrl+S" "save_hint": "保存绘图Ctrl+S"
}, },
"media": { "media": {
"confirm_delete": "删除 \"{{name}}\"", "confirm_delete": "删除 \"{{name}}\"",
"upload_failed": "上传文件失败", "upload_failed": "上传文件失败",
"no_valid_files": "未找到有效文件。支持JPG, PNG, GIF, WebP, MP3, MP4, PDF", "no_valid_files": "未找到有效文件。支持JPG, PNG, GIF, WebP, MP3, MP4, PDF",
"formats": "JPG, PNG, GIF, WebP, MP3, MP4, PDF" "formats": "JPG, PNG, GIF, WebP, MP3, MP4, PDF"
}, },
"move": { "move": {
"failed_note": "移动笔记失败。", "failed_note": "移动笔记失败。",
"failed_folder": "移动文件夹失败。", "failed_folder": "移动文件夹失败。",
"failed_media": "移动媒体文件失败。" "failed_media": "移动媒体文件失败。"
}, },
"search": { "search": {
"previous": "上一个 (Shift+F3)", "previous": "上一个 (Shift+F3)",
"next": "下一个 (F3)", "next": "下一个 (F3)",
@ -261,22 +237,18 @@
"no_results": "没有笔记包含\"{{query}}\"", "no_results": "没有笔记包含\"{{query}}\"",
"searching": "正在搜索\"{{query}}\"..." "searching": "正在搜索\"{{query}}\"..."
}, },
"theme": { "theme": {
"title": "主题" "title": "主题"
}, },
"language": { "language": {
"title": "语言" "title": "语言"
}, },
"syntax_highlight": { "syntax_highlight": {
"title": "编辑器语法高亮", "title": "编辑器语法高亮",
"description": "在编辑器中为 Markdown 语法着色", "description": "在编辑器中为 Markdown 语法着色",
"enable": "启用语法高亮", "enable": "启用语法高亮",
"disable": "禁用语法高亮" "disable": "禁用语法高亮"
}, },
"settings": { "settings": {
"account": "账户", "account": "账户",
"logout": "登出", "logout": "登出",
@ -287,7 +259,6 @@
"tab_inserts_tab": "Tab键插入制表符", "tab_inserts_tab": "Tab键插入制表符",
"tab_inserts_tab_desc": "按Tab键插入制表符而不是切换焦点" "tab_inserts_tab_desc": "按Tab键插入制表符而不是切换焦点"
}, },
"homepage": { "homepage": {
"title": "首页", "title": "首页",
"welcome": "欢迎使用 NoteDiscovery", "welcome": "欢迎使用 NoteDiscovery",
@ -300,7 +271,6 @@
"folder_singular": "文件夹", "folder_singular": "文件夹",
"folder_plural": "文件夹" "folder_plural": "文件夹"
}, },
"format": { "format": {
"bold": "粗体", "bold": "粗体",
"italic": "斜体", "italic": "斜体",
@ -316,23 +286,19 @@
"checkbox": "复选框", "checkbox": "复选框",
"table": "表格" "table": "表格"
}, },
"validation": { "validation": {
"forbidden_chars": "名称包含禁止的字符:{{chars}}", "forbidden_chars": "名称包含禁止的字符:{{chars}}",
"reserved_name": "此名称被操作系统保留。", "reserved_name": "此名称被操作系统保留。",
"invalid_dot": "名称不能只是一个点。", "invalid_dot": "名称不能只是一个点。",
"trailing_dot_space": "名称不能以点或空格结尾。" "trailing_dot_space": "名称不能以点或空格结尾。"
}, },
"support": { "support": {
"enjoying_demo": "支持此项目", "enjoying_demo": "支持此项目",
"deploy_own": "部署您自己的实例", "deploy_own": "部署您自己的实例",
"thank_you": "感谢您的支持!💚" "thank_you": "感谢您的支持!💚"
}, },
"demo": { "demo": {
"title": "演示模式", "title": "演示模式",
"warning": "内容每日重置。您的更改可能被其他用户覆盖。" "warning": "内容每日重置。您的更改可能被其他用户覆盖。"
} }
} }