mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-04 05:28:59 +01:00 
			
		
		
		
	Merge remote-tracking branch 'origin/main' into feature/pdf_export_presentation
This commit is contained in:
		
						commit
						08d2cc2ae5
					
				@ -35,13 +35,13 @@
 | 
			
		||||
    "chore:generate-openapi": "tsx bin/generate-openapi.js"
 | 
			
		||||
  },
 | 
			
		||||
  "devDependencies": {    
 | 
			
		||||
    "@playwright/test": "1.56.0",
 | 
			
		||||
    "@stylistic/eslint-plugin": "5.4.0",        
 | 
			
		||||
    "@playwright/test": "1.56.1",
 | 
			
		||||
    "@stylistic/eslint-plugin": "5.5.0",        
 | 
			
		||||
    "@types/express": "5.0.3",    
 | 
			
		||||
    "@types/node": "22.18.10",    
 | 
			
		||||
    "@types/node": "22.18.11",    
 | 
			
		||||
    "@types/yargs": "17.0.33",
 | 
			
		||||
    "@vitest/coverage-v8": "3.2.4",
 | 
			
		||||
    "eslint": "9.37.0",
 | 
			
		||||
    "eslint": "9.38.0",
 | 
			
		||||
    "eslint-plugin-simple-import-sort": "12.1.1",
 | 
			
		||||
    "esm": "3.2.25",
 | 
			
		||||
    "jsdoc": "4.0.5",
 | 
			
		||||
 | 
			
		||||
@ -15,7 +15,7 @@
 | 
			
		||||
    "circular-deps": "dpdm -T src/**/*.ts --tree=false --warning=false --skip-dynamic-imports=circular"
 | 
			
		||||
  },
 | 
			
		||||
  "dependencies": {
 | 
			
		||||
    "@eslint/js": "9.37.0",
 | 
			
		||||
    "@eslint/js": "9.38.0",
 | 
			
		||||
    "@excalidraw/excalidraw": "0.18.0",
 | 
			
		||||
    "@fullcalendar/core": "6.1.19",
 | 
			
		||||
    "@fullcalendar/daygrid": "6.1.19",
 | 
			
		||||
@ -52,13 +52,13 @@
 | 
			
		||||
    "leaflet": "1.9.4",
 | 
			
		||||
    "leaflet-gpx": "2.2.0",
 | 
			
		||||
    "mark.js": "8.11.1",
 | 
			
		||||
    "marked": "16.4.0",
 | 
			
		||||
    "marked": "16.4.1",
 | 
			
		||||
    "mermaid": "11.12.0",
 | 
			
		||||
    "mind-elixir": "5.3.2",
 | 
			
		||||
    "mind-elixir": "5.3.3",
 | 
			
		||||
    "normalize.css": "8.0.1",
 | 
			
		||||
    "panzoom": "9.4.3",
 | 
			
		||||
    "preact": "10.27.2",
 | 
			
		||||
    "react-i18next": "16.0.1",
 | 
			
		||||
    "react-i18next": "16.1.0",
 | 
			
		||||
    "reveal.js": "5.2.1",
 | 
			
		||||
    "split.js": "1.6.5",
 | 
			
		||||
    "svg-pan-zoom": "3.6.2",
 | 
			
		||||
@ -76,7 +76,7 @@
 | 
			
		||||
    "@types/reveal.js": "5.2.1",
 | 
			
		||||
    "@types/tabulator-tables": "6.2.11",
 | 
			
		||||
    "copy-webpack-plugin": "13.0.1",
 | 
			
		||||
    "happy-dom": "20.0.4",
 | 
			
		||||
    "happy-dom": "20.0.7",
 | 
			
		||||
    "script-loader": "0.7.2",
 | 
			
		||||
    "vite-plugin-static-copy": "3.1.4"
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
@ -30,9 +30,8 @@ function createClassForColor(colorString: string | null) {
 | 
			
		||||
        $("head").append(`<style>
 | 
			
		||||
            .${className}, span.fancytree-active.${className} {
 | 
			
		||||
                --light-theme-custom-color: ${adjustedColor.lightThemeColor};
 | 
			
		||||
                --light-theme-custom-bg-color: ${adjustedColor.lightThemeBackgroundColor};
 | 
			
		||||
                --dark-theme-custom-color: ${adjustedColor.darkThemeColor};
 | 
			
		||||
                --dark-theme-custom-bg-color: ${adjustedColor.darkThemeBackgroundColor};
 | 
			
		||||
                --custom-color-hue: ${getHue(color) ?? 'unset'};
 | 
			
		||||
            }
 | 
			
		||||
        </style>`);
 | 
			
		||||
 | 
			
		||||
@ -66,18 +65,15 @@ function adjustColorLightness(color: ColorInstance, lightThemeMaxLightness: numb
 | 
			
		||||
    // For the dark theme, limit the minimum lightness
 | 
			
		||||
    const darkThemeColor = labColor.l(Math.max(lightness, darkThemeMinLightness)).hex();
 | 
			
		||||
 | 
			
		||||
    let darkThemeBackgroundColor = "unset";
 | 
			
		||||
    let lightThemeBackgroundColor = "unset";
 | 
			
		||||
    return {lightThemeColor, darkThemeColor};
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/** Returns the hue of the specified color, or undefined if the color is grayscale. */
 | 
			
		||||
function getHue(color: ColorInstance) {
 | 
			
		||||
    const hslColor = color.hsl();
 | 
			
		||||
    const hue = hslColor.hue();
 | 
			
		||||
 | 
			
		||||
    if (color.saturationl() > 0) {
 | 
			
		||||
        darkThemeBackgroundColor = Color({h: hue, s: 20, l: 33, alpha: .4}).hexa();
 | 
			
		||||
        lightThemeBackgroundColor = Color({h: hue, s: 37, l: 89, alpha: 1}).hexa();
 | 
			
		||||
    if (hslColor.saturationl() > 0) {
 | 
			
		||||
        return hslColor.hue();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    return {lightThemeColor, lightThemeBackgroundColor, darkThemeColor, darkThemeBackgroundColor};
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
 | 
			
		||||
@ -82,9 +82,8 @@ body ::-webkit-calendar-picker-indicator {
 | 
			
		||||
    filter: invert(1);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#left-pane span.fancytree-node {
 | 
			
		||||
#left-pane .fancytree-node.tinted {
 | 
			
		||||
    --custom-color: var(--dark-theme-custom-color);
 | 
			
		||||
    --custom-bg-color: var(--dark-theme-custom-bg-color);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.excalidraw.theme--dark {
 | 
			
		||||
 | 
			
		||||
@ -82,7 +82,6 @@ html {
 | 
			
		||||
    --native-titlebar-background: #ffffff00;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#left-pane span.fancytree-node {
 | 
			
		||||
#left-pane .fancytree-node.tinted {
 | 
			
		||||
    --custom-color: var(--light-theme-custom-color);
 | 
			
		||||
    --custom-bg-color: var(--light-theme-custom-bg-color);
 | 
			
		||||
}
 | 
			
		||||
@ -268,9 +268,13 @@
 | 
			
		||||
 * Dark color scheme tweaks
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#left-pane span.fancytree-node {
 | 
			
		||||
#left-pane .fancytree-node.tinted {
 | 
			
		||||
    --custom-color: var(--dark-theme-custom-color);
 | 
			
		||||
    --custom-bg-color: var(--dark-theme-custom-bg-color);
 | 
			
		||||
 | 
			
		||||
    /* The background color of the active item in the note tree.
 | 
			
		||||
     * The --custom-color-hue variable contains the hue of the user-selected note color.
 | 
			
		||||
     * This value is unset for gray tones. */
 | 
			
		||||
    --custom-bg-color: hsl(var(--custom-color-hue), 20%, 33%, 0.4);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
body ::-webkit-calendar-picker-indicator {
 | 
			
		||||
 | 
			
		||||
@ -261,5 +261,13 @@
 | 
			
		||||
    --ck-editor-toolbar-button-on-color: black;
 | 
			
		||||
    --ck-editor-toolbar-button-on-shadow: none;
 | 
			
		||||
    --ck-editor-toolbar-dropdown-button-open-background: #0000000f;
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#left-pane .fancytree-node.tinted {
 | 
			
		||||
    --custom-color: var(--light-theme-custom-color);
 | 
			
		||||
 | 
			
		||||
    /* The background color of the active item in the note tree.
 | 
			
		||||
     * The --custom-color-hue variable contains the hue of the user-selected note color.
 | 
			
		||||
     * This value is unset for gray tones. */
 | 
			
		||||
    --custom-bg-color: hsl(var(--custom-color-hue), 37%, 89%, 1);
 | 
			
		||||
}
 | 
			
		||||
@ -25,7 +25,8 @@
 | 
			
		||||
  "branch_prefix": {
 | 
			
		||||
    "edit_branch_prefix": "تعديل بادئة الفرع",
 | 
			
		||||
    "prefix": "البادئة: ",
 | 
			
		||||
    "save": "حفظ"
 | 
			
		||||
    "save": "حفظ",
 | 
			
		||||
    "help_on_tree_prefix": "مساعدة حول بادئة الشجرة"
 | 
			
		||||
  },
 | 
			
		||||
  "bulk_actions": {
 | 
			
		||||
    "bulk_actions": "اجراءات جماعية",
 | 
			
		||||
@ -44,7 +45,8 @@
 | 
			
		||||
    "options": "خيارات",
 | 
			
		||||
    "upload": "تحميل",
 | 
			
		||||
    "choose_files": "اختر الملفات",
 | 
			
		||||
    "shrink_images": "تصغير الصور"
 | 
			
		||||
    "shrink_images": "تصغير الصور",
 | 
			
		||||
    "upload_attachments_to_note": "تحميل المرفقات الى الملاحظة"
 | 
			
		||||
  },
 | 
			
		||||
  "attribute_detail": {
 | 
			
		||||
    "name": "الاسم",
 | 
			
		||||
@ -74,7 +76,14 @@
 | 
			
		||||
    "date_time": "التاريخ والوقت",
 | 
			
		||||
    "label_definition": "تفاصيل تعريف التصنيف",
 | 
			
		||||
    "relation_definition": "تفاصيل تعريف العلاقة",
 | 
			
		||||
    "attr_detail_title": "عنوان تفاصيل السمة"
 | 
			
		||||
    "attr_detail_title": "عنوان تفاصيل السمة",
 | 
			
		||||
    "close_button_title": "الغاء التغييرات و اغلاق",
 | 
			
		||||
    "attr_is_owned_by": "السمة مملوكة ل",
 | 
			
		||||
    "save_and_close": "حفظ ونسخ <kbd>Ctrl+Enter</kbd>",
 | 
			
		||||
    "workspace_calendar_root": "تحديد جذر التقويم لكل مساحة عمل",
 | 
			
		||||
    "hide_highlight_widget": "اخفاء عنصر واجهة قائمة التمييزات",
 | 
			
		||||
    "is_owned_by_note": "تخص الملاحظة",
 | 
			
		||||
    "and_more": "... و {{count}}مرات اكثر."
 | 
			
		||||
  },
 | 
			
		||||
  "rename_label": {
 | 
			
		||||
    "to": "الى",
 | 
			
		||||
@ -86,7 +95,8 @@
 | 
			
		||||
  "move_note": {
 | 
			
		||||
    "to": "الى",
 | 
			
		||||
    "move_note": "نقل الملاحظة",
 | 
			
		||||
    "target_parent_note": "ملاحظة الاصل الهدف"
 | 
			
		||||
    "target_parent_note": "ملاحظة الاصل الهدف",
 | 
			
		||||
    "on_all_matched_notes": "على كل الملاحظات المطابقة"
 | 
			
		||||
  },
 | 
			
		||||
  "add_relation": {
 | 
			
		||||
    "to": "الى",
 | 
			
		||||
@ -106,7 +116,8 @@
 | 
			
		||||
    "update_relation": "تحديث العلاقة",
 | 
			
		||||
    "relation_name": "اسم العلاقة",
 | 
			
		||||
    "target_note": "الملاحظة الهدف",
 | 
			
		||||
    "update_relation_target": "تحدث علاقة الهدف"
 | 
			
		||||
    "update_relation_target": "تحدث علاقة الهدف",
 | 
			
		||||
    "on_all_matched_notes": "على كل الملاحظات المطابقة"
 | 
			
		||||
  },
 | 
			
		||||
  "attachments_actions": {
 | 
			
		||||
    "download": "تنزيل",
 | 
			
		||||
@ -114,7 +125,9 @@
 | 
			
		||||
    "open_custom": "فتح مخصص",
 | 
			
		||||
    "rename_attachment": "اعادة تسمية المرفق",
 | 
			
		||||
    "delete_attachment": "حذف المرفق",
 | 
			
		||||
    "upload_new_revision": "رفع مراجعة جديدة"
 | 
			
		||||
    "upload_new_revision": "رفع مراجعة جديدة",
 | 
			
		||||
    "copy_link_to_clipboard": "نسخ الرابط الى الحافظة",
 | 
			
		||||
    "convert_attachment_into_note": "تحويل المرفق الى ملاحظة"
 | 
			
		||||
  },
 | 
			
		||||
  "calendar": {
 | 
			
		||||
    "week": "أسبوع",
 | 
			
		||||
@ -146,7 +159,9 @@
 | 
			
		||||
    "month_previous": "الشهر السابق",
 | 
			
		||||
    "month_next": "الشهر التالي",
 | 
			
		||||
    "year_previous": "السنة السابقة",
 | 
			
		||||
    "year_next": "السنة التالية"
 | 
			
		||||
    "year_next": "السنة التالية",
 | 
			
		||||
    "cannot_find_day_note": "لا يمكن ايجاد ملاحظة اليوم",
 | 
			
		||||
    "cannot_find_week_note": "لايمكن ايجاد ملاحظة الاسبوع"
 | 
			
		||||
  },
 | 
			
		||||
  "global_menu": {
 | 
			
		||||
    "menu": "القائمة",
 | 
			
		||||
@ -171,7 +186,11 @@
 | 
			
		||||
    "open_dev_tools": "فتح ادوات المطور",
 | 
			
		||||
    "show_backend_log": "اظهار سجل الخلفية",
 | 
			
		||||
    "new-version-available": "متوفر تحديث جديد",
 | 
			
		||||
    "download-update": "احصل على الاصدار{{latestVersion}}"
 | 
			
		||||
    "download-update": "احصل على الاصدار{{latestVersion}}",
 | 
			
		||||
    "switch_to_mobile_version": "التبديل الى اصدار الهاتف المحمول",
 | 
			
		||||
    "switch_to_desktop_version": "التبديل الى اصدار سطح المكتب",
 | 
			
		||||
    "show_shared_notes_subtree": "عرض شجرة الملاحظات المشتركة",
 | 
			
		||||
    "open_sql_console_history": "فتح سجل لوحة تحكم SQL"
 | 
			
		||||
  },
 | 
			
		||||
  "zpetne_odkazy": {
 | 
			
		||||
    "relation": "العلاقة",
 | 
			
		||||
@ -181,7 +200,8 @@
 | 
			
		||||
  "note_icon": {
 | 
			
		||||
    "category": "الفئة:",
 | 
			
		||||
    "search": "بحث:",
 | 
			
		||||
    "change_note_icon": "تغيير ايقونة الملاحظة"
 | 
			
		||||
    "change_note_icon": "تغيير ايقونة الملاحظة",
 | 
			
		||||
    "reset-default": "اعادة تعيين الى الايقونة الافتراضية"
 | 
			
		||||
  },
 | 
			
		||||
  "basic_properties": {
 | 
			
		||||
    "language": "اللغة",
 | 
			
		||||
@ -204,7 +224,8 @@
 | 
			
		||||
    "collapse_all_notes": "طي كل الملاحظات",
 | 
			
		||||
    "include_archived_notes": "عرض الملاحظات المؤرشفة",
 | 
			
		||||
    "expand_all_children": "توسيع جميع العناصر الفرعية",
 | 
			
		||||
    "presentation": "عرض تقديمي"
 | 
			
		||||
    "presentation": "عرض تقديمي",
 | 
			
		||||
    "invalid_view_type": "نوع العرض {{type}} غير صالح"
 | 
			
		||||
  },
 | 
			
		||||
  "file_properties": {
 | 
			
		||||
    "download": "تنزيل",
 | 
			
		||||
@ -223,7 +244,8 @@
 | 
			
		||||
    "file_type": "نوع الملف",
 | 
			
		||||
    "file_size": "حجم الملف",
 | 
			
		||||
    "original_file_name": "اسم الملف الاصلي",
 | 
			
		||||
    "upload_new_revision": "رفع مراجعة جديدة"
 | 
			
		||||
    "upload_new_revision": "رفع مراجعة جديدة",
 | 
			
		||||
    "copy_reference_to_clipboard": "نسخ المرجع الى الحافظة"
 | 
			
		||||
  },
 | 
			
		||||
  "note_info_widget": {
 | 
			
		||||
    "created": "انشاء",
 | 
			
		||||
@ -258,14 +280,20 @@
 | 
			
		||||
    "order_by": "ترتيب حسب",
 | 
			
		||||
    "search_parameters": "معايير البحث",
 | 
			
		||||
    "add_search_option": "اضافة خيار البحث:",
 | 
			
		||||
    "save_to_note": "حفظ في تلملاحظة"
 | 
			
		||||
    "save_to_note": "حفظ في تلملاحظة",
 | 
			
		||||
    "limit_description": "تحديد عدد النتائج",
 | 
			
		||||
    "search_execute": "البحث وتنفيذ الأجراءات",
 | 
			
		||||
    "unknown_search_option": "خيار بحث غير معروف {{searchOptionName}}",
 | 
			
		||||
    "actions_executed": "اجراءات تم تنفيذها."
 | 
			
		||||
  },
 | 
			
		||||
  "ancestor": {
 | 
			
		||||
    "label": "السلف",
 | 
			
		||||
    "depth_label": "العمق",
 | 
			
		||||
    "depth_doesnt_matter": "لايهم",
 | 
			
		||||
    "direct_children": "العقد الفرعية المباشرة",
 | 
			
		||||
    "depth_eq": "يساوي تماما {{count}}"
 | 
			
		||||
    "depth_eq": "يساوي تماما {{count}}",
 | 
			
		||||
    "depth_gt": "هو اكبر من {{count}}",
 | 
			
		||||
    "depth_lt": "هو اصغر من {{count}}"
 | 
			
		||||
  },
 | 
			
		||||
  "limit": {
 | 
			
		||||
    "limit": "الحد الاقصى"
 | 
			
		||||
@ -285,7 +313,9 @@
 | 
			
		||||
    "revision_count": "عدد المراجعات",
 | 
			
		||||
    "parent_count": "عدد النسخ",
 | 
			
		||||
    "owned_label_count": "عدد التسميات",
 | 
			
		||||
    "owned_relation_count": "عدد العلاقات"
 | 
			
		||||
    "owned_relation_count": "عدد العلاقات",
 | 
			
		||||
    "date_modified": "تاريخ اخر تعديل",
 | 
			
		||||
    "children_count": "عدد الملاحظات الفرعية"
 | 
			
		||||
  },
 | 
			
		||||
  "search_string": {
 | 
			
		||||
    "search_prefix": "بحث:",
 | 
			
		||||
@ -299,7 +329,10 @@
 | 
			
		||||
    "force_full_sync_button": "فرض مزامنة كاملة",
 | 
			
		||||
    "finished-successfully": "تم انتهاء المزامنة بنجاح.",
 | 
			
		||||
    "full_sync_triggered": "تم تشغيل المزامنة الكاملة",
 | 
			
		||||
    "failed": "فشل في المزامنة: {{message}}"
 | 
			
		||||
    "failed": "فشل في المزامنة: {{message}}",
 | 
			
		||||
    "fill_entity_changes_button": "ملء سجلات تغييرات الكيانات",
 | 
			
		||||
    "filling_entity_changes": "جار ملء صفوف تغييرات الكيانات",
 | 
			
		||||
    "sync_rows_filled_successfully": "تمة تعبئة بيانات المزامنة بنجاح"
 | 
			
		||||
  },
 | 
			
		||||
  "fonts": {
 | 
			
		||||
    "fonts": "خطوط",
 | 
			
		||||
@ -338,7 +371,8 @@
 | 
			
		||||
    "export": "تصدير",
 | 
			
		||||
    "export_note_title": "تصدير الملاحظة",
 | 
			
		||||
    "export_status": "حالة التصدير",
 | 
			
		||||
    "export_finished_successfully": "اكتمل التصدير بنجاح."
 | 
			
		||||
    "export_finished_successfully": "اكتمل التصدير بنجاح.",
 | 
			
		||||
    "export_in_progress": "جار التصدير: {{progressCount}}"
 | 
			
		||||
  },
 | 
			
		||||
  "help": {
 | 
			
		||||
    "troubleshooting": "أستكشاف الاخطاء واصلاحها",
 | 
			
		||||
@ -366,7 +400,9 @@
 | 
			
		||||
    "scrollToActiveNote": "مدتمرير الى الملاحظة النشطة",
 | 
			
		||||
    "jumpToParentNote": "الانتقال الى الملاحظة الاصل",
 | 
			
		||||
    "movingCloningNotes": "نقل/ استنساخ الملاحظات",
 | 
			
		||||
    "deleteNotes": "حذف الملاحظة/ الشجرة الفرعية"
 | 
			
		||||
    "deleteNotes": "حذف الملاحظة/ الشجرة الفرعية",
 | 
			
		||||
    "collapseWholeTree": "طي شجرة الملاحظة باكملها",
 | 
			
		||||
    "followLink": "اتبع تلرابط تحت المؤشر"
 | 
			
		||||
  },
 | 
			
		||||
  "import": {
 | 
			
		||||
    "options": "خيارات",
 | 
			
		||||
@ -378,14 +414,18 @@
 | 
			
		||||
    "chooseImportFile": "اختر ملف الاستيراد",
 | 
			
		||||
    "failed": "فشل الاستيراد: {{messege}}.",
 | 
			
		||||
    "html_import_tags": {
 | 
			
		||||
      "title": "علامات استيراد HTML"
 | 
			
		||||
      "title": "علامات استيراد HTML",
 | 
			
		||||
      "reset_button": "اعادة التعيين الى القائمة الافتراضية"
 | 
			
		||||
    },
 | 
			
		||||
    "successful": "اكتمل الاستيراد بنجاح."
 | 
			
		||||
    "successful": "اكتمل الاستيراد بنجاح.",
 | 
			
		||||
    "in-progress": "جار الاستيراد: {{progress}}"
 | 
			
		||||
  },
 | 
			
		||||
  "include_note": {
 | 
			
		||||
    "label_note": "ملاحظة",
 | 
			
		||||
    "dialog_title": "تضمين ملاحظة",
 | 
			
		||||
    "button_include": "تضمين ملاحظة"
 | 
			
		||||
    "button_include": "تضمين ملاحظة",
 | 
			
		||||
    "box_size_small": "صغير (10 سطور تقريبا)",
 | 
			
		||||
    "box_size_medium": "متوسط ( 30 سطر تقريبا)"
 | 
			
		||||
  },
 | 
			
		||||
  "info": {
 | 
			
		||||
    "closeButton": "أغلاق",
 | 
			
		||||
@ -409,7 +449,8 @@
 | 
			
		||||
  "protected_session_password": {
 | 
			
		||||
    "close_label": "أغلاق",
 | 
			
		||||
    "modal_title": "جلسة محمية",
 | 
			
		||||
    "start_button": "بدء جلسة محمية"
 | 
			
		||||
    "start_button": "بدء جلسة محمية",
 | 
			
		||||
    "help_title": "مساعدة حول الملاحظات المحمية"
 | 
			
		||||
  },
 | 
			
		||||
  "revisions": {
 | 
			
		||||
    "delete_button": "حذف",
 | 
			
		||||
@ -423,7 +464,8 @@
 | 
			
		||||
    "mime": "MIME: ",
 | 
			
		||||
    "delete_all_button": "حذف كل المراجعات",
 | 
			
		||||
    "settings": "اعدادات مراجعة الملاحظة",
 | 
			
		||||
    "diff_not_available": "المقارنة غير متوفرة."
 | 
			
		||||
    "diff_not_available": "المقارنة غير متوفرة.",
 | 
			
		||||
    "help_title": "مساعدة حول مراجعات الملاحظة"
 | 
			
		||||
  },
 | 
			
		||||
  "sort_child_notes": {
 | 
			
		||||
    "title": "عنوان",
 | 
			
		||||
@ -442,7 +484,8 @@
 | 
			
		||||
  "recent_changes": {
 | 
			
		||||
    "undelete_link": "الغاء الحذف",
 | 
			
		||||
    "title": "التغيرات الاخيرة",
 | 
			
		||||
    "no_changes_message": "لايوجد تغيير لحد الان..."
 | 
			
		||||
    "no_changes_message": "لايوجد تغيير لحد الان...",
 | 
			
		||||
    "erase_notes_button": "مسح الملاحظات المحذوفة الان"
 | 
			
		||||
  },
 | 
			
		||||
  "edited_notes": {
 | 
			
		||||
    "deleted": "(حذف)",
 | 
			
		||||
@ -458,7 +501,8 @@
 | 
			
		||||
    "max_width_unit": "بكسل",
 | 
			
		||||
    "title": "عرض المحتوى",
 | 
			
		||||
    "reload_button": "اعادة تحميل الواجهة",
 | 
			
		||||
    "max_width_label": "اقصى عرض للمحتوى"
 | 
			
		||||
    "max_width_label": "اقصى عرض للمحتوى",
 | 
			
		||||
    "reload_description": "تغييرات من خيارات المظهر"
 | 
			
		||||
  },
 | 
			
		||||
  "native_title_bar": {
 | 
			
		||||
    "enabled": "مفعل",
 | 
			
		||||
@ -479,7 +523,8 @@
 | 
			
		||||
  "ui-performance": {
 | 
			
		||||
    "title": "أداء",
 | 
			
		||||
    "enable-shadows": "تفعيل الضلال",
 | 
			
		||||
    "enable-smooth-scroll": "تمكين التمرير السلس"
 | 
			
		||||
    "enable-smooth-scroll": "تمكين التمرير السلس",
 | 
			
		||||
    "enable-motion": "تمكين الانتقالات والرسوم المتحركة"
 | 
			
		||||
  },
 | 
			
		||||
  "ai_llm": {
 | 
			
		||||
    "progress": "تقدم",
 | 
			
		||||
@ -543,7 +588,8 @@
 | 
			
		||||
    "start_indexing": "بدء الفهرسة",
 | 
			
		||||
    "chat": {
 | 
			
		||||
      "root_note_title": "دردشات AI",
 | 
			
		||||
      "new_chat_title": "دردشة جديدة"
 | 
			
		||||
      "new_chat_title": "دردشة جديدة",
 | 
			
		||||
      "create_new_ai_chat": "انشاء دردشة AI جديدة"
 | 
			
		||||
    },
 | 
			
		||||
    "selected_provider": "المزود المحدد",
 | 
			
		||||
    "select_model": "اختر النموذج...",
 | 
			
		||||
@ -571,7 +617,21 @@
 | 
			
		||||
    "enable_ai": "تمكين خصائص AI/LLM",
 | 
			
		||||
    "reprocess_index": "اعادة بناء فهرس البحث",
 | 
			
		||||
    "index_rebuilding": "جار تحسين الفهرس {{percentage}}",
 | 
			
		||||
    "voyage_configuration": "اعدادت Voyage AI"
 | 
			
		||||
    "voyage_configuration": "اعدادت Voyage AI",
 | 
			
		||||
    "openai_model_description": "الامثلة: gpt-4o, gpt-4-turbo, gpt-3.5-turbo",
 | 
			
		||||
    "partial": "{{ percentage }} % مكتمل",
 | 
			
		||||
    "retry_queued": "تم جدولة الملاحظة لاعادة المحاولة",
 | 
			
		||||
    "max_notes_per_llm_query": "اكبر عدد للملاحظات لكل استعلام",
 | 
			
		||||
    "remove_provider": "احذف المزود من البحث",
 | 
			
		||||
    "restore_provider": "استعادة المزود الى البحث",
 | 
			
		||||
    "reprocess_index_error": "حدث خطأ اثناء اعادة بناء فهرس البحث",
 | 
			
		||||
    "auto_refresh_notice": "تحديث تلقائي كل {{seconds}} ثانية",
 | 
			
		||||
    "note_queued_for_retry": "الملاحظة جاهزة لاعادة المحاولة لاحقا",
 | 
			
		||||
    "failed_to_retry_note": "فشل في اعادة محاولة معالجة المحاولة",
 | 
			
		||||
    "failed_to_retry_all": "فشل في اعادة محاولة معالجة الملاحظة",
 | 
			
		||||
    "error_generating_response": "فشل في توليد استجابة من ال AI",
 | 
			
		||||
    "create_new_ai_chat": "انشاء دردشة AI جديدة",
 | 
			
		||||
    "error_fetching": "فشل في استرجاع النماذج: {{error}}"
 | 
			
		||||
  },
 | 
			
		||||
  "code_auto_read_only_size": {
 | 
			
		||||
    "unit": "حروف",
 | 
			
		||||
@ -586,7 +646,8 @@
 | 
			
		||||
    "enable_image_compression": "تمكين ضغط الصورة"
 | 
			
		||||
  },
 | 
			
		||||
  "revisions_snapshot_limit": {
 | 
			
		||||
    "snapshot_number_limit_unit": "لقطات"
 | 
			
		||||
    "snapshot_number_limit_unit": "لقطات",
 | 
			
		||||
    "note_revisions_snapshot_limit_title": "الحد الاقصى لنسخ الملاحظات الاحتياطية"
 | 
			
		||||
  },
 | 
			
		||||
  "search_engine": {
 | 
			
		||||
    "bing": "Bing",
 | 
			
		||||
@ -874,7 +935,10 @@
 | 
			
		||||
    "unset-field-placeholder": "غير محدد",
 | 
			
		||||
    "open_external_link": "فتح رابط خارجي",
 | 
			
		||||
    "add_new_attribute": "اضافة سمة جديدة",
 | 
			
		||||
    "remove_this_attribute": "حذف هذه السمة"
 | 
			
		||||
    "remove_this_attribute": "حذف هذه السمة",
 | 
			
		||||
    "unknown_label_type": "نوع التسمية  {{type}} غير معروف",
 | 
			
		||||
    "unknown_attribute_type": "نوع السمة {{type}} غير معروف",
 | 
			
		||||
    "remove_color": "حذف لون التسمية"
 | 
			
		||||
  },
 | 
			
		||||
  "duration": {
 | 
			
		||||
    "seconds": "ثواني",
 | 
			
		||||
@ -885,7 +949,8 @@
 | 
			
		||||
  "editorfeatures": {
 | 
			
		||||
    "title": "مميزات",
 | 
			
		||||
    "note_completion_enabled": "تمكين الاكمال التلقائي للملاحظة",
 | 
			
		||||
    "emoji_completion_enabled": "تفعيل الاكمال التلقائي للرموز التعبيرية"
 | 
			
		||||
    "emoji_completion_enabled": "تفعيل الاكمال التلقائي للرموز التعبيرية",
 | 
			
		||||
    "slash_commands_enabled": "تفعيل اوامر Slash"
 | 
			
		||||
  },
 | 
			
		||||
  "book_properties_config": {
 | 
			
		||||
    "raster": "نقطي",
 | 
			
		||||
@ -921,7 +986,8 @@
 | 
			
		||||
    "add_label": "اضافة تسمية",
 | 
			
		||||
    "to_value": "الى القيمة",
 | 
			
		||||
    "new_value_placeholder": "قيمة جديدة",
 | 
			
		||||
    "label_name_placeholder": "اسم التسمية"
 | 
			
		||||
    "label_name_placeholder": "اسم التسمية",
 | 
			
		||||
    "help_text": "عل كل الملاحظات المطابقة:"
 | 
			
		||||
  },
 | 
			
		||||
  "delete_label": {
 | 
			
		||||
    "delete_label": "حذف التسمية",
 | 
			
		||||
@ -939,7 +1005,8 @@
 | 
			
		||||
  },
 | 
			
		||||
  "rename_note": {
 | 
			
		||||
    "rename_note": "اعادة تسمية الملاحظة",
 | 
			
		||||
    "new_note_title": "عنوان ملاحظة جديد"
 | 
			
		||||
    "new_note_title": "عنوان ملاحظة جديد",
 | 
			
		||||
    "rename_note_title_to": "اعادة تسمية عنوان الملاحظة الى"
 | 
			
		||||
  },
 | 
			
		||||
  "delete_relation": {
 | 
			
		||||
    "delete_relation": "حذف العلاقة",
 | 
			
		||||
@ -966,7 +1033,8 @@
 | 
			
		||||
    "search_in_note": "بحث في الملاحظة",
 | 
			
		||||
    "open_note_externally": "فتح الملاحظة خارجيا",
 | 
			
		||||
    "open_note_custom": "فتح ملاحظة مخصص",
 | 
			
		||||
    "print_pdf": "تصدير كملف PDF..."
 | 
			
		||||
    "print_pdf": "تصدير كملف PDF...",
 | 
			
		||||
    "convert_into_attachment_failed": "فشل تحويل الملاحظة {{title}}."
 | 
			
		||||
  },
 | 
			
		||||
  "update_available": {
 | 
			
		||||
    "update_available": "تحديث متوفر"
 | 
			
		||||
@ -974,7 +1042,8 @@
 | 
			
		||||
  "code_buttons": {
 | 
			
		||||
    "execute_button_title": "تنفيذ السكريبت",
 | 
			
		||||
    "save_to_note_button_title": "حفظ في الملاحظا",
 | 
			
		||||
    "opening_api_docs_message": "جاري فتح مستدات API..."
 | 
			
		||||
    "opening_api_docs_message": "جاري فتح مستدات API...",
 | 
			
		||||
    "trilium_api_docs_button_title": "فتح مستندات API لتريليوم"
 | 
			
		||||
  },
 | 
			
		||||
  "hide_floating_buttons_button": {
 | 
			
		||||
    "button_title": "اخفاء الازرار"
 | 
			
		||||
@ -994,13 +1063,15 @@
 | 
			
		||||
    "title": "خريطة الملاحظة",
 | 
			
		||||
    "fix-nodes": "اصلاح العقد",
 | 
			
		||||
    "link-distance": "مسافة الرابط",
 | 
			
		||||
    "open_full": "توسيع للعرض الكامل"
 | 
			
		||||
    "open_full": "توسيع للعرض الكامل",
 | 
			
		||||
    "collapse": "طي الى الحجم الطبيعي"
 | 
			
		||||
  },
 | 
			
		||||
  "owned_attribute_list": {
 | 
			
		||||
    "owned_attributes": "السمات المملوكة"
 | 
			
		||||
  },
 | 
			
		||||
  "similar_notes": {
 | 
			
		||||
    "title": "ملاحظات مشابهة"
 | 
			
		||||
    "title": "ملاحظات مشابهة",
 | 
			
		||||
    "no_similar_notes_found": "لاتوجد ملاحظة مشابهة."
 | 
			
		||||
  },
 | 
			
		||||
  "fast_search": {
 | 
			
		||||
    "fast_search": "بحث سريع"
 | 
			
		||||
@ -1010,7 +1081,8 @@
 | 
			
		||||
    "example_title": "انظر هذا المثال:"
 | 
			
		||||
  },
 | 
			
		||||
  "attachment_detail": {
 | 
			
		||||
    "owning_note": "الملاحظة المالكة: "
 | 
			
		||||
    "owning_note": "الملاحظة المالكة: ",
 | 
			
		||||
    "list_of_all_attachments": "قائمة بكل المرفقات"
 | 
			
		||||
  },
 | 
			
		||||
  "attachment_list": {
 | 
			
		||||
    "owning_note": "الملاحظة المالكة: ",
 | 
			
		||||
@ -1021,14 +1093,21 @@
 | 
			
		||||
    "protecting-title": "الحالة المحمية",
 | 
			
		||||
    "unprotecting-title": "الحالة الغير محمية",
 | 
			
		||||
    "protecting-finished-successfully": "تم الحماية بنجاح.",
 | 
			
		||||
    "unprotecting-finished-successfully": "تم ازالة الحماية بنجاح."
 | 
			
		||||
    "unprotecting-finished-successfully": "تم ازالة الحماية بنجاح.",
 | 
			
		||||
    "start_session_button": "البدء بالجلسة المحمية </kbd>enter</kbd>",
 | 
			
		||||
    "protecting-in-progress": "جار الحماية: {{count}}",
 | 
			
		||||
    "unprotecting-in-progress-count": "جار الغاء الحماية: {{count}}"
 | 
			
		||||
  },
 | 
			
		||||
  "relation_map": {
 | 
			
		||||
    "remove_note": "حذف الملاحظة",
 | 
			
		||||
    "edit_title": "تعديل العنوان",
 | 
			
		||||
    "rename_note": "اعادة تسمية الملاحظة",
 | 
			
		||||
    "remove_relation": "حذف العلاقة",
 | 
			
		||||
    "default_new_note_title": "ملاحظة جديدة"
 | 
			
		||||
    "default_new_note_title": "ملاحظة جديدة",
 | 
			
		||||
    "open_in_new_tab": "فتح في تبويب جديد",
 | 
			
		||||
    "enter_new_title": "ادخل عنوان ملاحظة جديدة:",
 | 
			
		||||
    "note_not_found": "الملاحظة {{noteId}} غير موجودة!",
 | 
			
		||||
    "cannot_match_transform": "تعذر مطابقة التحويل: {{transform}}"
 | 
			
		||||
  },
 | 
			
		||||
  "web_view": {
 | 
			
		||||
    "web_view": "عرض الويب"
 | 
			
		||||
@ -1045,7 +1124,8 @@
 | 
			
		||||
  "vacuum_database": {
 | 
			
		||||
    "title": "تحرير مساحة قاعدة البيانات",
 | 
			
		||||
    "button_text": "تحرير مساحة قاعدة البيانات",
 | 
			
		||||
    "vacuuming_database": "جار تحرير مساحة قاعدة الييانات..."
 | 
			
		||||
    "vacuuming_database": "جار تحرير مساحة قاعدة الييانات...",
 | 
			
		||||
    "database_vacuumed": "تم تنظيف قاعدة البيانات"
 | 
			
		||||
  },
 | 
			
		||||
  "ribbon": {
 | 
			
		||||
    "widgets": "ادوات الشريط"
 | 
			
		||||
@ -1054,7 +1134,8 @@
 | 
			
		||||
    "use_vim_keybindings_in_code_notes": "اختصارات لوحة المفاتيح باسلوب Vim"
 | 
			
		||||
  },
 | 
			
		||||
  "network_connections": {
 | 
			
		||||
    "network_connections_title": "اتصالات الشبكة"
 | 
			
		||||
    "network_connections_title": "اتصالات الشبكة",
 | 
			
		||||
    "check_for_updates": "التحقق من وجود تحديثات تلقائية"
 | 
			
		||||
  },
 | 
			
		||||
  "tray": {
 | 
			
		||||
    "title": "شريط النظام"
 | 
			
		||||
@ -1189,7 +1270,9 @@
 | 
			
		||||
  },
 | 
			
		||||
  "move_to": {
 | 
			
		||||
    "notes_to_move": "الملاحظات المراد نقلها",
 | 
			
		||||
    "target_parent_note": "ملاحظة الاصل الهدف"
 | 
			
		||||
    "target_parent_note": "ملاحظة الاصل الهدف",
 | 
			
		||||
    "dialog_title": "انقل الملاحظات الى...",
 | 
			
		||||
    "move_button": "نقل الىالملاحظة المحددة"
 | 
			
		||||
  },
 | 
			
		||||
  "delete_revisions": {
 | 
			
		||||
    "delete_note_revisions": "حذف مراجعات الملاحظة"
 | 
			
		||||
@ -1236,7 +1319,10 @@
 | 
			
		||||
    "enter_workspace": "ادخل مساحة العمل {{title}}"
 | 
			
		||||
  },
 | 
			
		||||
  "attribute_editor": {
 | 
			
		||||
    "save_attributes": "حفظ السمات <enter>"
 | 
			
		||||
    "save_attributes": "حفظ السمات <enter>",
 | 
			
		||||
    "add_a_new_attribute": "اضافة سمة جديدة",
 | 
			
		||||
    "add_new_label_definition": "اضافة تعريف لتسمية جديدة",
 | 
			
		||||
    "add_new_relation_definition": "اضافة تعريف لعلاقة جديدة"
 | 
			
		||||
  },
 | 
			
		||||
  "zen_mode": {
 | 
			
		||||
    "button_exit": "الخروج من وضع Zen"
 | 
			
		||||
@ -1246,7 +1332,8 @@
 | 
			
		||||
  },
 | 
			
		||||
  "note_erasure_timeout": {
 | 
			
		||||
    "note_erasure_timeout_title": "مهلة مسح الملاحظة",
 | 
			
		||||
    "erase_notes_after": "مسح الملاحظات بعد:"
 | 
			
		||||
    "erase_notes_after": "مسح الملاحظات بعد:",
 | 
			
		||||
    "erase_deleted_notes_now": "مسح الملاحظات المحذوفة الان"
 | 
			
		||||
  },
 | 
			
		||||
  "ws": {
 | 
			
		||||
    "sync-check-failed": "فشل التحقق من المزامنة!"
 | 
			
		||||
@ -1257,5 +1344,27 @@
 | 
			
		||||
  "presentation_view": {
 | 
			
		||||
    "start-presentation": "بدء العرض التقديمي",
 | 
			
		||||
    "edit-slide": "تعديل هذه الشريحة"
 | 
			
		||||
  },
 | 
			
		||||
  "jump_to_note": {
 | 
			
		||||
    "search_button": "البحث في النص الكامل"
 | 
			
		||||
  },
 | 
			
		||||
  "password_not_set": {
 | 
			
		||||
    "title": "لم يتم تعيين كلمة المرور",
 | 
			
		||||
    "go_to_password_options": "اذهب الى خيارات كلمة المرور"
 | 
			
		||||
  },
 | 
			
		||||
  "abstract_bulk_action": {
 | 
			
		||||
    "remove_this_search_action": "حذف اجراء البحث هذا"
 | 
			
		||||
  },
 | 
			
		||||
  "show_toc_widget_button": {
 | 
			
		||||
    "show_toc": "عرض جدول المحتويات"
 | 
			
		||||
  },
 | 
			
		||||
  "svg_export_button": {
 | 
			
		||||
    "button_title": "تصدير المخطط ك SVG"
 | 
			
		||||
  },
 | 
			
		||||
  "abstract_search_option": {
 | 
			
		||||
    "remove_this_search_option": "حذف خيار البحث هذا"
 | 
			
		||||
  },
 | 
			
		||||
  "revisions_snapshot_interval": {
 | 
			
		||||
    "note_revisions_snapshot_interval_title": "الفاصل الزمني لنسخ الملاحظات الاحتياطية"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -692,6 +692,14 @@
 | 
			
		||||
    "help_text_body3": "In alternativa, è possibile aggiungere etichette e relazioni utilizzando il pulsante <code>+</code> sul lato destro.",
 | 
			
		||||
    "save_attributes": "Salva attributi <enter>",
 | 
			
		||||
    "add_a_new_attribute": "Aggiungi un nuovo attributo",
 | 
			
		||||
    "add_new_label": "Aggiungi nuova etichetta <kbd data-command=\"addNewLabel\"></kbd>"
 | 
			
		||||
    "add_new_label": "Aggiungi nuova etichetta <kbd data-command=\"addNewLabel\"></kbd>",
 | 
			
		||||
    "add_new_relation": "Aggiungi nuova relazione <kbd data-command=\"addNewRelation\"></kbd>",
 | 
			
		||||
    "add_new_relation_definition": "Aggiungi una nuova definizione di relazione",
 | 
			
		||||
    "placeholder": "Digitare qui le etichette e le relazioni"
 | 
			
		||||
  },
 | 
			
		||||
  "execute_script": {
 | 
			
		||||
    "execute_script": "Esegui script",
 | 
			
		||||
    "help_text": "È possibile eseguire semplici script sulle note abbinate.",
 | 
			
		||||
    "example_1": "Ad esempio, per aggiungere una stringa al titolo di una nota, utilizzare questo piccolo script:"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -282,8 +282,8 @@
 | 
			
		||||
    "selectAllNotes": "現在のレベルのノートをすべて選択",
 | 
			
		||||
    "selectNote": "ノートを選択",
 | 
			
		||||
    "copyNotes": "アクティブなノート(または現在の選択範囲)をクリップボードにコピーする(<a class=\"external\" href=\"https://triliumnext.github.io/Docs/Wiki/cloning-notes.html#cloning-notes\">クローン</a>に使用)",
 | 
			
		||||
    "cutNotes": "アクティブなノート(または現在の選択範囲)をクリップボードにカットする(ノートの移動に使用)",
 | 
			
		||||
    "pasteNotes": "ノートをサブノートとしてアクティブノートに貼り付ける(コピーされたかカットされたかに よって、移動またはクローンになる)",
 | 
			
		||||
    "cutNotes": "アクティブなノート(または現在の選択範囲)をクリップボードに切り取り(ノートの移動に使用)",
 | 
			
		||||
    "pasteNotes": "ノートをサブノートとしてアクティブノートに貼り付ける(コピーされたか切り取りされたかに よって、移動またはクローンになる)",
 | 
			
		||||
    "deleteNotes": "ノート/サブツリーを削除",
 | 
			
		||||
    "editingNotes": "ノート編集",
 | 
			
		||||
    "editNoteTitle": "押下するとツリーペインからタイトルの編集に移ります。タイトルの編集からEnterキーを押すと、本文の編集に移動します。<kbd>Ctrl+.</kbd> で本文の編集からツリーペインに戻ります。",
 | 
			
		||||
@ -405,7 +405,7 @@
 | 
			
		||||
    "unprotect-subtree": "サブツリーの保護を解除",
 | 
			
		||||
    "copy-clone": "コピー/クローン",
 | 
			
		||||
    "clone-to": "クローン先...",
 | 
			
		||||
    "cut": "カット",
 | 
			
		||||
    "cut": "切り取り",
 | 
			
		||||
    "move-to": "移動先...",
 | 
			
		||||
    "paste-into": "貼り付け",
 | 
			
		||||
    "paste-after": "後ろに貼り付け",
 | 
			
		||||
@ -1245,7 +1245,7 @@
 | 
			
		||||
    "duplicated": "ノート \"{{title}}\" は複製されました。"
 | 
			
		||||
  },
 | 
			
		||||
  "clipboard": {
 | 
			
		||||
    "cut": "ノートはクリップボードにカットされました。",
 | 
			
		||||
    "cut": "ノートはクリップボードに切り取りとられました。",
 | 
			
		||||
    "copied": "ノートはクリップボードにコピーされました。",
 | 
			
		||||
    "copy_failed": "権限の問題で、クリップボードにコピーできません。",
 | 
			
		||||
    "copy_success": "クリップボードにコピーしました。"
 | 
			
		||||
@ -1296,7 +1296,7 @@
 | 
			
		||||
  },
 | 
			
		||||
  "electron_context_menu": {
 | 
			
		||||
    "add-term-to-dictionary": "辞書に \"{{term}}\" を追加",
 | 
			
		||||
    "cut": "カット",
 | 
			
		||||
    "cut": "切り取り",
 | 
			
		||||
    "copy": "コピー",
 | 
			
		||||
    "copy-link": "リンクをコピー",
 | 
			
		||||
    "paste": "貼り付け",
 | 
			
		||||
 | 
			
		||||
@ -6,7 +6,7 @@
 | 
			
		||||
    "db_version": "Wersja bazy danych:",
 | 
			
		||||
    "sync_version": "Wersja synchronizacji:",
 | 
			
		||||
    "build_date": "Zbudowano:",
 | 
			
		||||
    "build_revision": "Rewizja zbudowania:",
 | 
			
		||||
    "build_revision": "Wersja:",
 | 
			
		||||
    "data_directory": "Katalog z danymi:"
 | 
			
		||||
  },
 | 
			
		||||
  "toast": {
 | 
			
		||||
 | 
			
		||||
@ -905,7 +905,7 @@ export default class NoteTreeWidget extends NoteContextAwareWidget {
 | 
			
		||||
        const colorClass = note.getColorClass();
 | 
			
		||||
 | 
			
		||||
        if (colorClass) {
 | 
			
		||||
            extraClasses.push(colorClass);
 | 
			
		||||
            extraClasses.push(...["tinted", colorClass]);
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        return extraClasses.join(" ");
 | 
			
		||||
 | 
			
		||||
@ -105,12 +105,12 @@
 | 
			
		||||
    "is-svg": "6.1.0",
 | 
			
		||||
    "jimp": "1.6.0",
 | 
			
		||||
    "js-yaml": "4.1.0",
 | 
			
		||||
    "marked": "16.4.0",
 | 
			
		||||
    "marked": "16.4.1",
 | 
			
		||||
    "mime-types": "3.0.1",
 | 
			
		||||
    "multer": "2.0.2",
 | 
			
		||||
    "normalize-strings": "1.1.1",
 | 
			
		||||
    "ollama": "0.6.0",
 | 
			
		||||
    "openai": "6.4.0",
 | 
			
		||||
    "openai": "6.5.0",
 | 
			
		||||
    "rand-token": "1.0.1",
 | 
			
		||||
    "safe-compare": "1.1.4",
 | 
			
		||||
    "sanitize-filename": "1.6.3",
 | 
			
		||||
 | 
			
		||||
@ -76,7 +76,15 @@
 | 
			
		||||
    "find-in-text": "اظهار/اخفاء لوحة الفتح",
 | 
			
		||||
    "toggle-full-screen": "اظهار/اخفاء وضع ملء الشاشة",
 | 
			
		||||
    "reset-zoom-level": "اعادة ضبط مستوى التكبير",
 | 
			
		||||
    "toggle-book-properties": "اظهار/اخفاء خصائص المجموعة"
 | 
			
		||||
    "toggle-book-properties": "اظهار/اخفاء خصائص المجموعة",
 | 
			
		||||
    "show-note-source": "عرض مربع حوار \"مصدر الملاحظات\"",
 | 
			
		||||
    "show-revisions": "عرض مربع حوار \" مراجعات الملاحظة\"",
 | 
			
		||||
    "show-recent-changes": "عرض مربع حوار \" التغيرات الاخيرة\"",
 | 
			
		||||
    "show-sql-console": "فتح صفحة \" وحدة تحكم SQL\"",
 | 
			
		||||
    "show-backend-log": "فتح صفحة \"سجل الخلفية\"",
 | 
			
		||||
    "edit-readonly-note": "تعديل ملاحظة القراءة فقط",
 | 
			
		||||
    "attributes-labels-and-relations": "سمات ( تسميات و علاقات)",
 | 
			
		||||
    "render-active-note": "عرض ( اعادة عرض) الملاحظة المؤرشفة"
 | 
			
		||||
  },
 | 
			
		||||
  "setup_sync-from-server": {
 | 
			
		||||
    "note": "ملاحظة:",
 | 
			
		||||
@ -164,7 +172,10 @@
 | 
			
		||||
    "launch-bar-templates-title": "قوالب شريط التشغيل",
 | 
			
		||||
    "base-abstract-launcher-title": "المشغل الاساسي المجرد",
 | 
			
		||||
    "llm-chat-title": "الدردشة مع الملاحظات",
 | 
			
		||||
    "localization": "اللغة والمنطقة"
 | 
			
		||||
    "localization": "اللغة والمنطقة",
 | 
			
		||||
    "go-to-previous-note-title": "اذهب الى الملاحظة السابقة",
 | 
			
		||||
    "go-to-next-note-title": "اذهب الى الملاحظة التالية",
 | 
			
		||||
    "open-today-journal-note-title": "فتح ملاحظة مجلة اليوم"
 | 
			
		||||
  },
 | 
			
		||||
  "tray": {
 | 
			
		||||
    "bookmarks": "العلامات المرجعية",
 | 
			
		||||
@ -173,7 +184,8 @@
 | 
			
		||||
    "recents": "الملاحظات الحديثة",
 | 
			
		||||
    "new-note": "ملاحظة جديدة",
 | 
			
		||||
    "show-windows": "اظهار النوافذ",
 | 
			
		||||
    "open_new_window": "فتح نافذة جديدة"
 | 
			
		||||
    "open_new_window": "فتح نافذة جديدة",
 | 
			
		||||
    "today": "فتح ملاحظة مجلة اليوم"
 | 
			
		||||
  },
 | 
			
		||||
  "modals": {
 | 
			
		||||
    "error_title": "خطأ"
 | 
			
		||||
@ -211,7 +223,8 @@
 | 
			
		||||
    "presentation": "عرض تقديمي",
 | 
			
		||||
    "presentation_slide": "شريحة العرض التقديمي",
 | 
			
		||||
    "presentation_slide_first": "الشريحة الاولى",
 | 
			
		||||
    "presentation_slide_second": "الشريحة الثانية"
 | 
			
		||||
    "presentation_slide_second": "الشريحة الثانية",
 | 
			
		||||
    "background": "الخلفية"
 | 
			
		||||
  },
 | 
			
		||||
  "login": {
 | 
			
		||||
    "title": "تسجيل الدخول",
 | 
			
		||||
@ -230,11 +243,13 @@
 | 
			
		||||
  "setup": {
 | 
			
		||||
    "next": "التالي",
 | 
			
		||||
    "title": "تثبيت",
 | 
			
		||||
    "heading": "تثبيت تريليوم للملاحظات"
 | 
			
		||||
    "heading": "تثبيت تريليوم للملاحظات",
 | 
			
		||||
    "init-in-progress": "جار تهيئة المستند"
 | 
			
		||||
  },
 | 
			
		||||
  "setup_sync-from-desktop": {
 | 
			
		||||
    "step6-here": "هنا",
 | 
			
		||||
    "heading": "مزامنة من سطح المكتب"
 | 
			
		||||
    "heading": "مزامنة من سطح المكتب",
 | 
			
		||||
    "step3": "انقر على صنف المزامنة."
 | 
			
		||||
  },
 | 
			
		||||
  "setup_sync-in-progress": {
 | 
			
		||||
    "outstanding-items-default": "غير متوفر",
 | 
			
		||||
@ -312,7 +327,19 @@
 | 
			
		||||
    "edit-read-only-note": "تحرير ملاحظة للقراءة فقط",
 | 
			
		||||
    "add-new-label": "اضافة تسمية جديدة",
 | 
			
		||||
    "reload-frontend-app": "اعادة تحميل الواجهة الامامية للتطبيق",
 | 
			
		||||
    "force-save-revision": "فرض حفظ المراجعة"
 | 
			
		||||
    "force-save-revision": "فرض حفظ المراجعة",
 | 
			
		||||
    "toggle-note-hoisting": "اظهار/ اخفاء التركيز في الملاحظة",
 | 
			
		||||
    "back-in-note-history": "الرجوع الى سجل الملاحظة",
 | 
			
		||||
    "forward-in-note-history": "التقدم للامام في سجل الملاحظة",
 | 
			
		||||
    "scroll-to-active-note": "تمرير تلى الملاحظة النشطة",
 | 
			
		||||
    "create-note-into-inbox": "انشاء ملاحظة في البريد الوارد",
 | 
			
		||||
    "copy-notes-to-clipboard": "نسخ الملاحظات الى الخافظة",
 | 
			
		||||
    "paste-notes-from-clipboard": "لصق الملاحظات الى الحافظة",
 | 
			
		||||
    "cut-notes-to-clipboard": "قص الملاحظات الى الحافظة",
 | 
			
		||||
    "toggle-system-tray-icon": "تبديل ايقونة علبة النظام",
 | 
			
		||||
    "switch-to-first-tab": "التبديل الى التبويب الاول",
 | 
			
		||||
    "follow-link-under-cursor": "اتبع الرابط اسفل المؤشر",
 | 
			
		||||
    "paste-markdown-into-text": "لصق نص بتنسبق Markdown"
 | 
			
		||||
  },
 | 
			
		||||
  "share_404": {
 | 
			
		||||
    "title": "غير موجود",
 | 
			
		||||
 | 
			
		||||
@ -22,7 +22,7 @@
 | 
			
		||||
    "move-notes-to": "選択したノートを移動",
 | 
			
		||||
    "copy-notes-to-clipboard": "選択したノートをクリップボードにコピー",
 | 
			
		||||
    "paste-notes-from-clipboard": "クリップボードからアクティブなノートにノートを貼り付け",
 | 
			
		||||
    "cut-notes-to-clipboard": "選択したノートをクリップボードにカット",
 | 
			
		||||
    "cut-notes-to-clipboard": "選択したノートをクリップボードに切り取り",
 | 
			
		||||
    "select-all-notes-in-parent": "現在のノートレベルと同じノートをすべて選択する",
 | 
			
		||||
    "add-note-above-to-the-selection": "上のノートを選択範囲に追加",
 | 
			
		||||
    "add-note-below-to-selection": "下のノートを選択範囲に追加",
 | 
			
		||||
@ -101,9 +101,9 @@
 | 
			
		||||
    "toggle-book-properties": "コレクションプロパティ切り替え",
 | 
			
		||||
    "toggle-zen-mode": "禅モード(集中した編集のための最小限のUI)を有効/無効にする",
 | 
			
		||||
    "add-include-note-to-text": "ノートを埋め込むダイアログを開く",
 | 
			
		||||
    "toggle-promoted-attributes": "プロモートされた属性をトグルする",
 | 
			
		||||
    "toggle-promoted-attributes": "プロモート属性切り替え",
 | 
			
		||||
    "force-save-revision": "アクティブノートの新しいノートリヴィジョンを強制する",
 | 
			
		||||
    "toggle-classic-editor-toolbar": "固定ツールバーを持ったエディターのフォーマットタブをトグルする"
 | 
			
		||||
    "toggle-classic-editor-toolbar": "固定ツールバーエディターの書式設定タブ切り替え"
 | 
			
		||||
  },
 | 
			
		||||
  "keyboard_action_names": {
 | 
			
		||||
    "back-in-note-history": "ノートの履歴を戻る",
 | 
			
		||||
@ -128,7 +128,7 @@
 | 
			
		||||
    "move-notes-to": "ノートを移動",
 | 
			
		||||
    "copy-notes-to-clipboard": "ノートをクリップボードにコピー",
 | 
			
		||||
    "paste-notes-from-clipboard": "クリップボードからノートを貼り付け",
 | 
			
		||||
    "cut-notes-to-clipboard": "ノートをクリップボードにカット",
 | 
			
		||||
    "cut-notes-to-clipboard": "ノートをクリップボードに切り取り",
 | 
			
		||||
    "select-all-notes-in-parent": "親ノート内のすべてのノートを選択",
 | 
			
		||||
    "add-note-above-to-selection": "選択範囲に上のノートを追加",
 | 
			
		||||
    "add-note-below-to-selection": "選択範囲に下のノートを追加",
 | 
			
		||||
@ -200,7 +200,7 @@
 | 
			
		||||
    "force-save-revision": "強制保存リビジョン",
 | 
			
		||||
    "add-include-note-to-text": "埋め込みノートを追加",
 | 
			
		||||
    "toggle-ribbon-tab-classic-editor": "リボンタブのクラシックエディターに切り替える",
 | 
			
		||||
    "toggle-ribbon-tab-promoted-attributes": "リボンタブのプロモート属性を切り替える"
 | 
			
		||||
    "toggle-ribbon-tab-promoted-attributes": "リボンタブ切り替え:プロモート属性"
 | 
			
		||||
  },
 | 
			
		||||
  "login": {
 | 
			
		||||
    "title": "ログイン",
 | 
			
		||||
@ -415,7 +415,8 @@
 | 
			
		||||
    "presentation": "プレゼンテーション",
 | 
			
		||||
    "presentation_slide": "プレゼンテーションスライド",
 | 
			
		||||
    "presentation_slide_first": "最初のスライド",
 | 
			
		||||
    "presentation_slide_second": "2番目のスライド"
 | 
			
		||||
    "presentation_slide_second": "2番目のスライド",
 | 
			
		||||
    "background": "背景"
 | 
			
		||||
  },
 | 
			
		||||
  "share_404": {
 | 
			
		||||
    "title": "該当なし",
 | 
			
		||||
 | 
			
		||||
@ -13,11 +13,11 @@
 | 
			
		||||
		"preact": "10.27.2",
 | 
			
		||||
		"preact-iso": "2.11.0",
 | 
			
		||||
		"preact-render-to-string": "6.6.2",
 | 
			
		||||
		"react-i18next": "16.0.1"
 | 
			
		||||
		"react-i18next": "16.1.0"
 | 
			
		||||
	},
 | 
			
		||||
	"devDependencies": {
 | 
			
		||||
		"@preact/preset-vite": "2.10.2",
 | 
			
		||||
		"eslint": "9.37.0",
 | 
			
		||||
		"eslint": "9.38.0",
 | 
			
		||||
		"eslint-config-preact": "2.0.0",
 | 
			
		||||
		"typescript": "5.9.3",
 | 
			
		||||
		"user-agent-data-types": "0.4.2",
 | 
			
		||||
 | 
			
		||||
@ -72,7 +72,8 @@
 | 
			
		||||
        "download_scoop": "Scoop",
 | 
			
		||||
        "download_exe": "تحميل ملف التثبيت (exe.)",
 | 
			
		||||
        "title_x64": "ويندوز 64 بت",
 | 
			
		||||
        "download_zip": "النسخة المحمولة بصيغة zip"
 | 
			
		||||
        "download_zip": "النسخة المحمولة بصيغة zip",
 | 
			
		||||
        "title_arm64": "نظام ويندوز عاى ARM"
 | 
			
		||||
    },
 | 
			
		||||
    "download_helper_desktop_linux": {
 | 
			
		||||
        "download_deb": ".deb",
 | 
			
		||||
@ -81,7 +82,8 @@
 | 
			
		||||
        "download_rpm": "rpm.",
 | 
			
		||||
        "download_flatpak": "flatpak.",
 | 
			
		||||
        "title_x64": "لينيكس 64 بت",
 | 
			
		||||
        "download_zip": "النسخة المحمولة بصيغة zip"
 | 
			
		||||
        "download_zip": "النسخة المحمولة بصيغة zip",
 | 
			
		||||
        "title_arm64": "نظام لينكس على ARM"
 | 
			
		||||
    },
 | 
			
		||||
    "download_helper_server_docker": {
 | 
			
		||||
        "download_ghcr": "ghcr.io",
 | 
			
		||||
@ -97,7 +99,8 @@
 | 
			
		||||
    "download_now": {
 | 
			
		||||
        "text": "تنزيل الان ",
 | 
			
		||||
        "platform_small": "لاجل{{platform}}",
 | 
			
		||||
        "linux_small": "لLinux"
 | 
			
		||||
        "linux_small": "لLinux",
 | 
			
		||||
        "linux_big": "اصدار v {{version}} لنظام لينكس"
 | 
			
		||||
    },
 | 
			
		||||
    "faq": {
 | 
			
		||||
        "title": "الاسئلة المتكررة"
 | 
			
		||||
 | 
			
		||||
@ -1 +1,9 @@
 | 
			
		||||
{}
 | 
			
		||||
{
 | 
			
		||||
    "get-started": {
 | 
			
		||||
        "title": "Aan de slag",
 | 
			
		||||
        "desktop_title": "Download de desktop applicatie (v{{version}})",
 | 
			
		||||
        "architecture": "Architectuur:",
 | 
			
		||||
        "older_releases": "Bekijk oudere versies",
 | 
			
		||||
        "server_title": "Richt een server in voor toegang vanaf meerdere apparaten"
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -1 +1,192 @@
 | 
			
		||||
{}
 | 
			
		||||
{
 | 
			
		||||
    "get-started": {
 | 
			
		||||
        "desktop_title": "Pobierz wersję desktopową (v{{version}})",
 | 
			
		||||
        "architecture": "Architektura:",
 | 
			
		||||
        "older_releases": "Sprawdź poprzednie wydania",
 | 
			
		||||
        "server_title": "Skonfiguruj serwer, aby mieć dostęp z wielu urządzeń",
 | 
			
		||||
        "title": "Start"
 | 
			
		||||
    },
 | 
			
		||||
    "hero_section": {
 | 
			
		||||
        "title": "Uporządkuj swoje myśli i zbuduj bazę Twojej wiedzy.",
 | 
			
		||||
        "subtitle": "Trilium to otwartoźródłowe rozwiązanie do notowania i organizacji swojej personalnej bazy wiedzy. Używaj go lokalnie na swoim komputerze lub synchronizuj swoje notatki na własnym serwerze i miej do nich dostęp gdziekolwiek jesteś.",
 | 
			
		||||
        "get_started": "Start",
 | 
			
		||||
        "github": "GitHub",
 | 
			
		||||
        "dockerhub": "Docker Hub",
 | 
			
		||||
        "screenshot_alt": "Zrzut ekranu wersji desktopowej Trilium Notes"
 | 
			
		||||
    },
 | 
			
		||||
    "organization_benefits": {
 | 
			
		||||
        "title": "Układ",
 | 
			
		||||
        "note_structure_title": "Struktura notatek",
 | 
			
		||||
        "note_structure_description": "Notatki mogą być ułożone w hierarchię. Każda notatka może zawierać w sobie inne, co pozwala umieścić tą samą notatkę w wielu miejscach w hierarchii i nie wymusza to tworzenia dodatkowych folderów.",
 | 
			
		||||
        "attributes_title": "Etykiety i korelacje",
 | 
			
		||||
        "attributes_description": "Porządkuj łatwiej swoje notatki przy użyciu relacji i etykiet, używaj ich jako odnośników w tabelach i tablicach.",
 | 
			
		||||
        "hoisting_title": "Przestrzenie robocze i windowanie notatek",
 | 
			
		||||
        "hoisting_description": "Łatwo oddziel swoje personalne notatki od tych z pracy przez grupowanie ich w przestrzenie robocze, które pomogą ci się skupić na danym temacie."
 | 
			
		||||
    },
 | 
			
		||||
    "productivity_benefits": {
 | 
			
		||||
        "title": "Produktywność i bezpieczeństwo",
 | 
			
		||||
        "revisions_title": "Historia zmian",
 | 
			
		||||
        "revisions_content": "Notatki są regularnie zapisywane w tle, co pozwala to przeglądać i cofać wprowadzone zmiany. Zapisy można także wykonywać \"na życzenie\".",
 | 
			
		||||
        "sync_title": "Synchronizacja",
 | 
			
		||||
        "sync_content": "Używaj własnych lub chmurowych instancji do łatwiejszej synchronizacji notatek między wieloma urządzeniami, w tym twoim telefonem używając PWA.",
 | 
			
		||||
        "protected_notes_title": "Notatki chronione",
 | 
			
		||||
        "protected_notes_content": "Chroń wrażliwe informacje szyfrując notatki i blokując dostęp do nich za pomocą hasła sesji.",
 | 
			
		||||
        "jump_to_title": "Szybkie wyszukiwanie i komendy",
 | 
			
		||||
        "jump_to_content": "Szybko i łatwo wyszukuj swoje notatki używając funkcji lub komend, nawet gdy nie pamiętasz dokładnej ich nazwy.",
 | 
			
		||||
        "search_title": "Dokładne wyszukiwanie",
 | 
			
		||||
        "search_content": "Albo wyszukaj tekst w notatkach, możesz dostosować zakres szukania do konkretnej notatki albo hierarchii pliku.",
 | 
			
		||||
        "web_clipper_title": "Web clipper",
 | 
			
		||||
        "web_clipper_content": "Dołączaj strony internetowe albo ich zrzuty i umieszczaj je bezpośrednio w swoich notatkach dzięki rozszerzeniu do przeglądarki."
 | 
			
		||||
    },
 | 
			
		||||
    "note_types": {
 | 
			
		||||
        "text_title": "Notatki tekstowe",
 | 
			
		||||
        "text_description": "Edytuj notatki w graficznym interfejsie (WYSIWYG), który wspiera tabele, obrazy, działania matematyczne i bloki kodu z podświetlaniem składni. Szybko formatuj tekst używając skrótów (Markdown), jak i komend (/).",
 | 
			
		||||
        "code_title": "Notatki kodowe",
 | 
			
		||||
        "code_description": "Duże fragmenty kodu źródłowego albo skryptów można umieścić w dedykowanych plikach z własnym edytorem. Podświetlenie składni i struktur, różne motywy i wsparcie dla wielu języków programowania ułatwi edycję.",
 | 
			
		||||
        "file_title": "Obsługa plików",
 | 
			
		||||
        "file_description": "Dodawaj pliki takie jak PDF-y, zdjęcia i pliki wideo z podglądem w aplikacji.",
 | 
			
		||||
        "canvas_title": "Płótno",
 | 
			
		||||
        "canvas_description": "Dodawaj kształty, zdjęcia i tekst na nieskończonym płótnie, używając tej samej technologii co excalidraw.com. Idealne do diagramów, szkiców i projektowania.",
 | 
			
		||||
        "mermaid_title": "Diagramy Mermaid",
 | 
			
		||||
        "mermaid_description": "Twórz diagramy, takie jak schematy blokowe, diagramy klas i sekwencyjne, wykresy Gantta i wiele innych, korzystając z składni Mermaid.",
 | 
			
		||||
        "mindmap_title": "Mapy myśli",
 | 
			
		||||
        "mindmap_description": "Organizuj wizualnie swoje myśli albo przeprowadź sesję burzy mózgów.",
 | 
			
		||||
        "others_list": "I wiele innych: <0>mapa notatek</0>, <1>mapa powiązań</1>, <2>zapisane wyszukiwania</2>, <3>renderowane notatki</3>, and <4>podgląd stron www</4>."
 | 
			
		||||
    },
 | 
			
		||||
    "extensibility_benefits": {
 | 
			
		||||
        "title": "Udostępnianie i rozszerzenia",
 | 
			
		||||
        "import_export_title": "Import/Export",
 | 
			
		||||
        "import_export_description": "Łatwa interakcja z innymi aplikacjami przy użyciu formatów Markdown, ENEX i OLM.",
 | 
			
		||||
        "share_title": "Udostępniaj notatki w internecie",
 | 
			
		||||
        "share_description": "Jeśli masz własny serwer, możesz go używać do udostępniania danych notatek z innymi.",
 | 
			
		||||
        "scripting_title": "Zaawansowane skrypty",
 | 
			
		||||
        "scripting_description": "Stwórz swoje własne integracje z Trilium przy użyciu personalizowanych widżetów albo z serwerowych skryptów.",
 | 
			
		||||
        "api_title": "REST API",
 | 
			
		||||
        "api_description": "Twórz integracje Trilium z użyciem REST API."
 | 
			
		||||
    },
 | 
			
		||||
    "collections": {
 | 
			
		||||
        "calendar_title": "Kalendarze",
 | 
			
		||||
        "calendar_description": "Organizuj swoje prywatne i służbowe wydarzenia używając kalendarza. Miej plany pod kontrolą z tygodniowym, miesięcznym i rocznym podglądem. Twórz i edytuj wydarzenia w prosty i intuicyjny sposób.",
 | 
			
		||||
        "table_title": "Tabele",
 | 
			
		||||
        "table_description": "Wyświetlaj i edytuj informacje o notatkach w tabelach na wiele sposobów dzięki wielu typom kolumn: Tekstowym, numerycznym, z polami wyboru, z datami i godzinami, zawierającym linki, z kolorowymi wypełnieniami i powiązaniami notatek. Możesz nawet wyświetlić całe drzewo hierarchii w tabeli.",
 | 
			
		||||
        "board_title": "Tablice",
 | 
			
		||||
        "board_description": "Organizuj swoje zadania i postępy projektów w tablicach Kanban z prostym tworzeniem nowych elementów i kolumn, a możliwość graficznego ich przenoszenia ułatwi zmianę statusu i pozwoli zachować porządek.",
 | 
			
		||||
        "geomap_title": "Mapy",
 | 
			
		||||
        "geomap_description": "Zaplanuj wakacje albo interesujące miejsca bezpośrednio na mapie, używaj personalizowanych pinezek. Dzięki możliwości importu plików GPX możesz wyświetlać przebyte trasy."
 | 
			
		||||
    },
 | 
			
		||||
    "faq": {
 | 
			
		||||
        "title": "Częste pytania",
 | 
			
		||||
        "mobile_question": "Czy jest dostępna aplikacja mobilna?",
 | 
			
		||||
        "mobile_answer": "Aktualnie nie ma oficjalnej aplikacji mobilnej, jednak jeśli posiadasz uruchomioną aplikacje na serwerze, to możesz mieć dostęp za pomocą przeglądarki, a nawet zainstalować ją jako PWA. Dla systemu android jest nieoficjalna aplikacja \"TriliumDroid\", która działa nawet w trybie offline (jak zwykła desktopowa).",
 | 
			
		||||
        "database_question": "Gdzie są przechowywane moje dane?",
 | 
			
		||||
        "database_answer": "Wszystkie twoje notatki są przechowywane w bazie danych SQLite, w folderze aplikacji (lokalnie). Trilium używa baz danych zamiast zwykłych plików tekstowych dla lepszej wydajności i niektórych funkcji, które byłoby trudno zaimplementować w inny sposób (np. ta sama notatka w wielu miejscach). Folder aplikacji możesz łatwo znaleźć w zakładce \"O programie\".",
 | 
			
		||||
        "server_question": "Czy muszę posiadać serwer, aby używać Trilium?",
 | 
			
		||||
        "server_answer": "Nie, serwer umożliwia dostęp do aplikacji z poziomu przeglądarki, i obsługuje synchronizację na wielu urządzeniach. Z początku wystarczającym rozwiązaniem jest aplikacja desktopowa.",
 | 
			
		||||
        "scaling_question": "Jak dobrze aplikacja radzi sobie z dużą ilością notatek?",
 | 
			
		||||
        "scaling_answer": "W zależności od użycia, aplikacja powinna być w stanie utrzymać bezproblemowo do 100 000 notatek. Trzeba zaznaczyć, że synchronizacja czasami może skończyć się niepowodzeniem w przypadku wielu plików ponad 1GB. Trilium jest bardziej przystosowane do tworzenia baz wiedzy, niż do jako katalog plików (np. NextCloud).",
 | 
			
		||||
        "network_share_question": "Czy mogę udostępniać moje bazy danych przez dyski sieciowe?",
 | 
			
		||||
        "network_share_answer": "Nie, ogólnie przesyłanie baz SQLite przez dyski sieciowe nie jest dobrym pomysłem. Czasami może to zadziałać, ale istnieje szansa, że taka baza danych może zostać uszkodzona przez niedoskonałości blokad plików w sieci.",
 | 
			
		||||
        "security_question": "Jak są chronione moje dane?",
 | 
			
		||||
        "security_answer": "Domyślnie notatki nie są szyfrowane i mogą być odczytane bezpośrednio z bazy danych. Kiedy notatka zostanie oznaczona jako zaszyfrowana, to ta notatka szyfrowana jest używając AES-128-CBC."
 | 
			
		||||
    },
 | 
			
		||||
    "final_cta": {
 | 
			
		||||
        "title": "Gotowy aby zacząć przygodę z Trilium Notes?",
 | 
			
		||||
        "description": "Zbuduj swoją personalną bazę wiedzy z zaawansowanymi funkcjami i pełną prywatnością.",
 | 
			
		||||
        "get_started": "Start"
 | 
			
		||||
    },
 | 
			
		||||
    "components": {
 | 
			
		||||
        "link_learn_more": "Dowiedz się więcej....",
 | 
			
		||||
        "list_with_screenshot_alt": "Zrzut ekranu wybranej funkcji"
 | 
			
		||||
    },
 | 
			
		||||
    "download_now": {
 | 
			
		||||
        "text": "Pobierz teraz ",
 | 
			
		||||
        "platform_big": "v{{version}} dla {{platform}}",
 | 
			
		||||
        "platform_small": "dla {{platform}}",
 | 
			
		||||
        "linux_big": "v{{version}} dla Linuxa",
 | 
			
		||||
        "linux_small": "dla Linuxa",
 | 
			
		||||
        "more_platforms": "Więcej platform i konfiguracja serwera"
 | 
			
		||||
    },
 | 
			
		||||
    "footer": {
 | 
			
		||||
        "copyright_and_the": " i ",
 | 
			
		||||
        "copyright_community": "społeczność"
 | 
			
		||||
    },
 | 
			
		||||
    "social_buttons": {
 | 
			
		||||
        "github": "GitHub",
 | 
			
		||||
        "github_discussions": "GitHub - Forum",
 | 
			
		||||
        "matrix": "Matrix",
 | 
			
		||||
        "reddit": "Reddit"
 | 
			
		||||
    },
 | 
			
		||||
    "support_us": {
 | 
			
		||||
        "title": "Wesprzyj nas",
 | 
			
		||||
        "financial_donations_title": "Wsparcie finansowe",
 | 
			
		||||
        "financial_donations_description": "Trilium jest tworzone i rozwijane przez <Link>setki godzin pracy</Link>. Twoje wsparcie utrzymuje projekt jako otwartoźródłowy, pomaga dodawać nowe rzeczy i pokrywa koszty hostingu.",
 | 
			
		||||
        "financial_donations_cta": "Rozważ wsparcie głównego programisty (<Link>eliandoran</Link>) poza aplikacją przez:",
 | 
			
		||||
        "github_sponsors": "GitHub Sponsors",
 | 
			
		||||
        "paypal": "PayPal",
 | 
			
		||||
        "buy_me_a_coffee": "Postaw mi wirtualną kawę"
 | 
			
		||||
    },
 | 
			
		||||
    "contribute": {
 | 
			
		||||
        "title": "Inne sposoby wsparcia",
 | 
			
		||||
        "way_translate": "Przetłumacz aplikacja na swój natywny język przez <Link>Weblate</Link>.",
 | 
			
		||||
        "way_community": "Dołącz do społeczności na <Discussions>GitHub Discussions</Discussions> lub na <Matrix>Matrix</Matrix>.",
 | 
			
		||||
        "way_reports": "Zgłoś błędy przez<Link>GitHub issues</Link>.",
 | 
			
		||||
        "way_document": "Pomóż nam w doskonaleniu dokumentacji przez informowanie nas o lukach albo sam pomóż w tworzeniu treści (dokumentacja, FAQ, poradniki).",
 | 
			
		||||
        "way_market": "Powiedz o nas swoim znajomym, na blogu albo na social mediach."
 | 
			
		||||
    },
 | 
			
		||||
    "404": {
 | 
			
		||||
        "title": "404: Nie znaleziono strony",
 | 
			
		||||
        "description": "Strona, której szukasz, nie istnieje. Mogła zostać usunięta, albo wpisany adres jest niepoprawny."
 | 
			
		||||
    },
 | 
			
		||||
    "download_helper_desktop_windows": {
 | 
			
		||||
        "title_x64": "Windows 64-bit",
 | 
			
		||||
        "title_arm64": "Windows na ARM",
 | 
			
		||||
        "description_x64": "Kompatybilne z urządzeniami Intel i AMD działającymi pod kontrolą Windows 10 i 11.",
 | 
			
		||||
        "description_arm64": "Kompatybilne z procesorami ARM (np. Qualcomm Snapdragon).",
 | 
			
		||||
        "quick_start": "Aby zainstalować przez WinGet:",
 | 
			
		||||
        "download_exe": "Pobierz instalator (.exe)",
 | 
			
		||||
        "download_zip": "Wersja przenośna - Portable (.zip)",
 | 
			
		||||
        "download_scoop": "Scoop"
 | 
			
		||||
    },
 | 
			
		||||
    "download_helper_desktop_linux": {
 | 
			
		||||
        "title_x64": "Linux 64-bit",
 | 
			
		||||
        "title_arm64": "Linux na ARM",
 | 
			
		||||
        "description_x64": "Dla większości dystrybucji Linux, kompatybilnych z architekturą x86_64.",
 | 
			
		||||
        "description_arm64": "Dla dystrybucji ARM Linux kompatybilnych z architekturą aarch64.",
 | 
			
		||||
        "quick_start": "Wybierz odpowiedni format paczki, w zależności od twojej dystrybucji:",
 | 
			
		||||
        "download_deb": ".deb",
 | 
			
		||||
        "download_rpm": ".rpm",
 | 
			
		||||
        "download_flatpak": ".flatpak",
 | 
			
		||||
        "download_zip": "Wersja przenośna - Portable (.zip)",
 | 
			
		||||
        "download_nixpkgs": "nixpkgs",
 | 
			
		||||
        "download_aur": "AUR"
 | 
			
		||||
    },
 | 
			
		||||
    "download_helper_desktop_macos": {
 | 
			
		||||
        "title_x64": "macOS z Intel",
 | 
			
		||||
        "title_arm64": "macOS z Apple Silicon (ARM)",
 | 
			
		||||
        "description_x64": "Dla macOS w wersji Big Sur i późniejszymi, z procesorem Intel.",
 | 
			
		||||
        "description_arm64": "Dla produktów Apple z procesorami M1 i M2.",
 | 
			
		||||
        "quick_start": "Instalacja przez Homebrew:",
 | 
			
		||||
        "download_dmg": "Pobierz instalator (.dmg)",
 | 
			
		||||
        "download_homebrew_cask": "Homebrew Cask",
 | 
			
		||||
        "download_zip": "Wersja przenośna - Portable (.zip)"
 | 
			
		||||
    },
 | 
			
		||||
    "download_helper_server_docker": {
 | 
			
		||||
        "title": "Własny serwer przez Docker",
 | 
			
		||||
        "description": "Łatwa instalacja na Windows, Linux albo macOS używając Docker container.",
 | 
			
		||||
        "download_dockerhub": "Docker Hub",
 | 
			
		||||
        "download_ghcr": "ghcr.io"
 | 
			
		||||
    },
 | 
			
		||||
    "download_helper_server_linux": {
 | 
			
		||||
        "title": "Własny serwer na Linux",
 | 
			
		||||
        "description": "Wrzuć Trilium Notes na swój serwer albo VPS, kompatybilne z większością dystrybucji.",
 | 
			
		||||
        "download_tar_x64": "x64 (.tar.xz)",
 | 
			
		||||
        "download_tar_arm64": "ARM (.tar.xz)",
 | 
			
		||||
        "download_nixos": "moduł NixOS"
 | 
			
		||||
    },
 | 
			
		||||
    "download_helper_server_hosted": {
 | 
			
		||||
        "title": "Płatny Serwer - Hosting",
 | 
			
		||||
        "description": "Trilium Notes hostowane na PikaPods, płatnym serwisie dla łatwego dostępu i zarządzania. Bezpośrednio nie związanie z Trilium team.",
 | 
			
		||||
        "download_pikapod": "Konfiguruj na PikaPods",
 | 
			
		||||
        "download_triliumcc": "Alternatywnie patrz na trilium.cc"
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-ZH_CN.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-ZH_CN.md
									
									
									
									
										vendored
									
									
								
							@ -30,6 +30,13 @@ Trilium Notes 是一款免费且开源、跨平台的阶层式笔记应用程序
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📖 文件
 | 
			
		||||
 | 
			
		||||
**请访问我们完整的文档:[docs.triliumnotes.org](https://docs.triliumnotes.org/)**
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-ZH_TW.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-ZH_TW.md
									
									
									
									
										vendored
									
									
								
							@ -30,6 +30,13 @@ Trilium Notes 是一款免費且開源、跨平台的階層式筆記應用程式
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 文件
 | 
			
		||||
 | 
			
		||||
**可以在 [docs.triliumnotes.org](https://docs.triliumnotes.org/) 查看完整使用說明**
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										9
									
								
								docs/README-ar.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										9
									
								
								docs/README-ar.md
									
									
									
									
										vendored
									
									
								
							@ -33,6 +33,13 @@ quick overview:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚توثيق
 | 
			
		||||
 | 
			
		||||
**Visit our comprehensive documentation at
 | 
			
		||||
@ -132,7 +139,7 @@ The original Trilium developer ([Zadam](https://github.com/zadam)) has
 | 
			
		||||
graciously given the Trilium repository to the community project which resides
 | 
			
		||||
at https://github.com/TriliumNext
 | 
			
		||||
 | 
			
		||||
### ⬆️Migrating from Zadam/Trilium?
 | 
			
		||||
### ⬆️ الهجرة من Zadam الى تريليوم؟
 | 
			
		||||
 | 
			
		||||
There are no special migration steps to migrate from a zadam/Trilium instance to
 | 
			
		||||
a TriliumNext/Trilium instance. Simply [install
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-ca.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-ca.md
									
									
									
									
										vendored
									
									
								
							@ -33,6 +33,13 @@ quick overview:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Documentation
 | 
			
		||||
 | 
			
		||||
**Visit our comprehensive documentation at
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-cs.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-cs.md
									
									
									
									
										vendored
									
									
								
							@ -33,6 +33,13 @@ quick overview:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Documentation
 | 
			
		||||
 | 
			
		||||
**Visit our comprehensive documentation at
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-de.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-de.md
									
									
									
									
										vendored
									
									
								
							@ -34,6 +34,13 @@ quick overview:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Dokumentation
 | 
			
		||||
 | 
			
		||||
**Visit our comprehensive documentation at
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-el.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-el.md
									
									
									
									
										vendored
									
									
								
							@ -33,6 +33,13 @@ quick overview:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Documentation
 | 
			
		||||
 | 
			
		||||
**Visit our comprehensive documentation at
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-es.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-es.md
									
									
									
									
										vendored
									
									
								
							@ -36,6 +36,13 @@ resumen rápido:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Documentación
 | 
			
		||||
 | 
			
		||||
**Accede a la documentación completa en
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-fa.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-fa.md
									
									
									
									
										vendored
									
									
								
							@ -33,6 +33,13 @@ quick overview:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Documentation
 | 
			
		||||
 | 
			
		||||
**Visit our comprehensive documentation at
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-fi.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-fi.md
									
									
									
									
										vendored
									
									
								
							@ -33,6 +33,13 @@ quick overview:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Documentation
 | 
			
		||||
 | 
			
		||||
**Visit our comprehensive documentation at
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-fr.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-fr.md
									
									
									
									
										vendored
									
									
								
							@ -33,6 +33,13 @@ quick overview:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Documentation
 | 
			
		||||
 | 
			
		||||
**Visit our comprehensive documentation at
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-hr.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-hr.md
									
									
									
									
										vendored
									
									
								
							@ -33,6 +33,13 @@ quick overview:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Documentation
 | 
			
		||||
 | 
			
		||||
**Visit our comprehensive documentation at
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-hu.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-hu.md
									
									
									
									
										vendored
									
									
								
							@ -33,6 +33,13 @@ quick overview:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Documentation
 | 
			
		||||
 | 
			
		||||
**Visit our comprehensive documentation at
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-id.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-id.md
									
									
									
									
										vendored
									
									
								
							@ -34,6 +34,13 @@ untuk ikhtisar cepat:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Dokumentasi
 | 
			
		||||
 | 
			
		||||
**Kunjungi dokumentasi lengkap kami di
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-it.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-it.md
									
									
									
									
										vendored
									
									
								
							@ -34,6 +34,13 @@ una panoramica veloce:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Documentazione
 | 
			
		||||
 | 
			
		||||
**Vedi tutta la documentazione su
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-ja.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-ja.md
									
									
									
									
										vendored
									
									
								
							@ -32,6 +32,13 @@ Trilium Notes
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 ドキュメント
 | 
			
		||||
 | 
			
		||||
**包括的なドキュメントは [docs.triliumnotes.org](https://docs.triliumnotes.org/) でご覧ください**
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-ko.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-ko.md
									
									
									
									
										vendored
									
									
								
							@ -33,6 +33,13 @@ quick overview:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Documentation
 | 
			
		||||
 | 
			
		||||
**Visit our comprehensive documentation at
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-md.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-md.md
									
									
									
									
										vendored
									
									
								
							@ -33,6 +33,13 @@ quick overview:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Documentation
 | 
			
		||||
 | 
			
		||||
**Visit our comprehensive documentation at
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-nb_NO.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-nb_NO.md
									
									
									
									
										vendored
									
									
								
							@ -33,6 +33,13 @@ quick overview:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Documentation
 | 
			
		||||
 | 
			
		||||
**Visit our comprehensive documentation at
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										20
									
								
								docs/README-nl.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										20
									
								
								docs/README-nl.md
									
									
									
									
										vendored
									
									
								
							@ -12,9 +12,9 @@
 | 
			
		||||
# Trilium Notes
 | 
			
		||||
 | 
			
		||||

 | 
			
		||||
\
 | 
			
		||||
\
 | 
			
		||||

 | 
			
		||||
\
 | 
			
		||||
[](https://app.relative-ci.com/projects/Di5q7dz9daNDZ9UXi0Bp)
 | 
			
		||||
[](https://hosted
 | 
			
		||||
| [Japanese](./docs/README-ja.md) | [Italian](./docs/README-it.md) |
 | 
			
		||||
[Spanish](./docs/README-es.md)
 | 
			
		||||
 | 
			
		||||
Trilium Notes is a free and open-source, cross-platform hierarchical note taking
 | 
			
		||||
application with focus on building large personal knowledge bases.
 | 
			
		||||
Trillium Notes is een gratis en open-source, platformonafhankelijke,
 | 
			
		||||
hiërarchische notitie-applicatie die zich richt op het opbouwen van grote
 | 
			
		||||
persoonlijke kennisbanken.
 | 
			
		||||
 | 
			
		||||
See [screenshots](https://triliumnext.github.io/Docs/Wiki/screenshot-tour) for
 | 
			
		||||
quick overview:
 | 
			
		||||
Bekijk [screenshots](https://triliumnext.github.io/Docs/Wiki/screenshot-tour)
 | 
			
		||||
voor een snel overzicht:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Documentatie
 | 
			
		||||
 | 
			
		||||
**Bekijk onze beknopte documentatie op
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-pl.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-pl.md
									
									
									
									
										vendored
									
									
								
							@ -33,6 +33,13 @@ quick overview:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Documentation
 | 
			
		||||
 | 
			
		||||
**Visit our comprehensive documentation at
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-pt.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-pt.md
									
									
									
									
										vendored
									
									
								
							@ -33,6 +33,13 @@ quick overview:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Documentation
 | 
			
		||||
 | 
			
		||||
**Visit our comprehensive documentation at
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-pt_BR.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-pt_BR.md
									
									
									
									
										vendored
									
									
								
							@ -33,6 +33,13 @@ quick overview:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Documentation
 | 
			
		||||
 | 
			
		||||
**Visit our comprehensive documentation at
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-ro.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-ro.md
									
									
									
									
										vendored
									
									
								
							@ -34,6 +34,13 @@ ecran](https://triliumnext.github.io/Docs/Wiki/screenshot-tour):
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Documentație
 | 
			
		||||
 | 
			
		||||
**Vizitați documentația noastră detaliată la
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-ru.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-ru.md
									
									
									
									
										vendored
									
									
								
							@ -33,6 +33,13 @@ Trilium Notes – это приложение для заметок с иера
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Документация
 | 
			
		||||
 | 
			
		||||
**Visit our comprehensive documentation at
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-sl.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-sl.md
									
									
									
									
										vendored
									
									
								
							@ -33,6 +33,13 @@ quick overview:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Documentation
 | 
			
		||||
 | 
			
		||||
**Visit our comprehensive documentation at
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-sr.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-sr.md
									
									
									
									
										vendored
									
									
								
							@ -33,6 +33,13 @@ quick overview:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Documentation
 | 
			
		||||
 | 
			
		||||
**Visit our comprehensive documentation at
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-sv.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-sv.md
									
									
									
									
										vendored
									
									
								
							@ -33,6 +33,13 @@ quick overview:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Documentation
 | 
			
		||||
 | 
			
		||||
**Visit our comprehensive documentation at
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-tr.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-tr.md
									
									
									
									
										vendored
									
									
								
							@ -33,6 +33,13 @@ quick overview:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Documentation
 | 
			
		||||
 | 
			
		||||
**Visit our comprehensive documentation at
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-uk.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-uk.md
									
									
									
									
										vendored
									
									
								
							@ -33,6 +33,13 @@ quick overview:
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Documentation
 | 
			
		||||
 | 
			
		||||
**Visit our comprehensive documentation at
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								docs/README-vi.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								docs/README-vi.md
									
									
									
									
										vendored
									
									
								
							@ -33,6 +33,13 @@ Xem [ảnh chụp màn hình](https://triliumnext.github.io/Docs/Wiki/screenshot
 | 
			
		||||
 | 
			
		||||
<a href="https://triliumnext.github.io/Docs/Wiki/screenshot-tour"><img src="./docs/app.png" alt="Trilium Screenshot" width="1000"></a>
 | 
			
		||||
 | 
			
		||||
## ⏬ Download
 | 
			
		||||
- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
 | 
			
		||||
  stable version, recommended for most users.
 | 
			
		||||
- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
 | 
			
		||||
  unstable development version, updated daily with the latest features and
 | 
			
		||||
  fixes.
 | 
			
		||||
 | 
			
		||||
## 📚 Tài Liệu
 | 
			
		||||
 | 
			
		||||
**Truy cập tài liệu toàn diện của chúng tôi tại
 | 
			
		||||
 | 
			
		||||
@ -37,17 +37,17 @@
 | 
			
		||||
  "private": true,
 | 
			
		||||
  "devDependencies": {
 | 
			
		||||
    "@electron/rebuild": "4.0.1",
 | 
			
		||||
    "@playwright/test": "1.56.0",
 | 
			
		||||
    "@playwright/test": "1.56.1",
 | 
			
		||||
    "@triliumnext/server": "workspace:*",
 | 
			
		||||
    "@types/express": "5.0.3",
 | 
			
		||||
    "@types/node": "22.18.10",
 | 
			
		||||
    "@types/node": "22.18.11",
 | 
			
		||||
    "@vitest/coverage-v8": "3.2.4",
 | 
			
		||||
    "@vitest/ui": "3.2.4",
 | 
			
		||||
    "chalk": "5.6.2",
 | 
			
		||||
    "cross-env": "10.1.0",
 | 
			
		||||
    "dpdm": "3.14.0",
 | 
			
		||||
    "esbuild": "0.25.11",
 | 
			
		||||
    "eslint": "9.37.0",
 | 
			
		||||
    "eslint": "9.38.0",
 | 
			
		||||
    "eslint-config-prettier": "10.1.8",
 | 
			
		||||
    "eslint-plugin-playwright": "2.2.2",
 | 
			
		||||
    "eslint-plugin-react-hooks": "7.0.0",
 | 
			
		||||
 | 
			
		||||
@ -29,7 +29,7 @@
 | 
			
		||||
    "@vitest/browser": "3.2.4",
 | 
			
		||||
    "@vitest/coverage-istanbul": "3.2.4",
 | 
			
		||||
    "ckeditor5": "47.1.0",
 | 
			
		||||
    "eslint": "9.37.0",
 | 
			
		||||
    "eslint": "9.38.0",
 | 
			
		||||
    "eslint-config-ckeditor5": ">=9.1.0",
 | 
			
		||||
    "http-server": "14.1.1",
 | 
			
		||||
    "lint-staged": "16.2.4",
 | 
			
		||||
 | 
			
		||||
@ -30,7 +30,7 @@
 | 
			
		||||
    "@vitest/browser": "3.2.4",
 | 
			
		||||
    "@vitest/coverage-istanbul": "3.2.4",
 | 
			
		||||
    "ckeditor5": "47.1.0",
 | 
			
		||||
    "eslint": "9.37.0",
 | 
			
		||||
    "eslint": "9.38.0",
 | 
			
		||||
    "eslint-config-ckeditor5": ">=9.1.0",
 | 
			
		||||
    "http-server": "14.1.1",
 | 
			
		||||
    "lint-staged": "16.2.4",
 | 
			
		||||
 | 
			
		||||
@ -32,7 +32,7 @@
 | 
			
		||||
    "@vitest/browser": "3.2.4",
 | 
			
		||||
    "@vitest/coverage-istanbul": "3.2.4",
 | 
			
		||||
    "ckeditor5": "47.1.0",
 | 
			
		||||
    "eslint": "9.37.0",
 | 
			
		||||
    "eslint": "9.38.0",
 | 
			
		||||
    "eslint-config-ckeditor5": ">=9.1.0",
 | 
			
		||||
    "http-server": "14.1.1",
 | 
			
		||||
    "lint-staged": "16.2.4",
 | 
			
		||||
 | 
			
		||||
@ -33,7 +33,7 @@
 | 
			
		||||
    "@vitest/browser": "3.2.4",
 | 
			
		||||
    "@vitest/coverage-istanbul": "3.2.4",
 | 
			
		||||
    "ckeditor5": "47.1.0",
 | 
			
		||||
    "eslint": "9.37.0",
 | 
			
		||||
    "eslint": "9.38.0",
 | 
			
		||||
    "eslint-config-ckeditor5": ">=9.1.0",
 | 
			
		||||
    "http-server": "14.1.1",
 | 
			
		||||
    "lint-staged": "16.2.4",
 | 
			
		||||
 | 
			
		||||
@ -32,7 +32,7 @@
 | 
			
		||||
    "@vitest/browser": "3.2.4",
 | 
			
		||||
    "@vitest/coverage-istanbul": "3.2.4",
 | 
			
		||||
    "ckeditor5": "47.1.0",
 | 
			
		||||
    "eslint": "9.37.0",
 | 
			
		||||
    "eslint": "9.38.0",
 | 
			
		||||
    "eslint-config-ckeditor5": ">=9.1.0",
 | 
			
		||||
    "http-server": "14.1.1",
 | 
			
		||||
    "lint-staged": "16.2.4",
 | 
			
		||||
 | 
			
		||||
@ -50,6 +50,6 @@
 | 
			
		||||
    "codemirror-lang-elixir": "4.0.0",
 | 
			
		||||
    "codemirror-lang-hcl": "0.1.0",
 | 
			
		||||
    "codemirror-lang-mermaid": "0.5.0",
 | 
			
		||||
    "eslint-linter-browserify": "9.37.0"
 | 
			
		||||
    "eslint-linter-browserify": "9.38.0"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -28,7 +28,7 @@
 | 
			
		||||
    "@typescript-eslint/parser": "8.46.1",
 | 
			
		||||
    "dotenv": "17.2.3",
 | 
			
		||||
    "esbuild": "0.25.11",
 | 
			
		||||
    "eslint": "9.37.0",
 | 
			
		||||
    "eslint": "9.38.0",
 | 
			
		||||
    "highlight.js": "11.11.1",
 | 
			
		||||
    "typescript": "5.9.3"
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										623
									
								
								pnpm-lock.yaml
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										623
									
								
								pnpm-lock.yaml
									
									
									
										generated
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user