fix(ui): voix Second Brain à la connexion et libellés du rail
Remplace le titre « notepad » et le jargon (Intelligence OS, SM-2) par des mots lisibles, et aligne la langue des pages d’auth sur le reste du site. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -1,58 +1,22 @@
|
|||||||
'use client';
|
import { headers } from 'next/headers';
|
||||||
|
import { detectUserLanguage, parseAcceptLanguage } from '@/lib/i18n/detect-user-language';
|
||||||
|
import { loadTranslations } from '@/lib/i18n/load-translations';
|
||||||
|
import { LanguageProvider } from '@/lib/i18n/LanguageProvider';
|
||||||
|
import { AuthShell } from '@/components/auth-shell';
|
||||||
|
|
||||||
import { LanguageProvider, useLanguage } from '@/lib/i18n/LanguageProvider';
|
export default async function AuthLayout({
|
||||||
import Link from 'next/link';
|
|
||||||
import { ArrowLeft } from 'lucide-react';
|
|
||||||
|
|
||||||
function AuthHeader() {
|
|
||||||
const { t } = useLanguage();
|
|
||||||
|
|
||||||
return (
|
|
||||||
<header className="p-6 md:p-8 flex justify-between items-center relative z-10">
|
|
||||||
<Link
|
|
||||||
href="/"
|
|
||||||
aria-label={t('general.back')}
|
|
||||||
className="flex items-center gap-2 text-[var(--muted-foreground)] hover:text-[var(--foreground)] transition-colors group"
|
|
||||||
>
|
|
||||||
<div className="w-8 h-8 rounded-full border border-[var(--border)] flex items-center justify-center group-hover:border-[var(--color-brand-accent)] transition-colors">
|
|
||||||
<ArrowLeft size={14} className="group-hover:-translate-x-0.5 transition-transform rtl:rotate-180" />
|
|
||||||
</div>
|
|
||||||
</Link>
|
|
||||||
|
|
||||||
<Link href="/" className="flex items-center gap-2">
|
|
||||||
<div className="w-8 h-8 bg-[var(--foreground)] text-[var(--background)] rounded-xl flex items-center justify-center shadow-lg">
|
|
||||||
<span className="font-serif font-bold text-xl">M</span>
|
|
||||||
</div>
|
|
||||||
<span className="font-serif text-xl font-medium tracking-tight">Memento</span>
|
|
||||||
</Link>
|
|
||||||
|
|
||||||
<div className="w-8" />
|
|
||||||
</header>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export default function AuthLayout({
|
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: Readonly<{
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}>) {
|
||||||
|
const headersList = await headers();
|
||||||
|
const browserLang = parseAcceptLanguage(headersList.get('accept-language'));
|
||||||
|
const initialLanguage = await detectUserLanguage(browserLang);
|
||||||
|
const initialTranslations = await loadTranslations(initialLanguage);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<LanguageProvider>
|
<LanguageProvider initialLanguage={initialLanguage} initialTranslations={initialTranslations}>
|
||||||
<div className="min-h-screen bg-[#FDFCFB] dark:bg-[#0D0D0D] flex flex-col relative overflow-hidden">
|
<AuthShell>{children}</AuthShell>
|
||||||
<div className="absolute top-[-10%] right-[-10%] w-[50%] h-[50%] bg-[var(--color-brand-accent)]/5 blur-[120px] rounded-full pointer-events-none" />
|
|
||||||
<div className="absolute bottom-[-10%] left-[-10%] w-[50%] h-[50%] bg-[#D4A373]/5 blur-[120px] rounded-full pointer-events-none" />
|
|
||||||
|
|
||||||
<AuthHeader />
|
|
||||||
|
|
||||||
<main className="flex-1 flex items-center justify-center p-4 md:p-6 relative z-10">
|
|
||||||
<div className="w-full max-w-md">
|
|
||||||
{children}
|
|
||||||
<p className="text-center mt-8 text-[9px] text-[var(--muted-foreground)] font-bold uppercase tracking-[0.3em] opacity-40 select-none">
|
|
||||||
© 2026 Memento
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</LanguageProvider>
|
</LanguageProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -42,8 +42,8 @@ const jetbrainsMono = JetBrains_Mono({
|
|||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Memento - Your Digital Notepad",
|
title: "Memento — Your Second Brain",
|
||||||
description: "A beautiful note-taking app built with Next.js 16",
|
description: "A Second Brain that connects while you write. Search, brief, and act on your ideas every morning.",
|
||||||
manifest: "/api/manifest",
|
manifest: "/api/manifest",
|
||||||
icons: {
|
icons: {
|
||||||
icon: "/icons/icon-512.svg",
|
icon: "/icons/icon-512.svg",
|
||||||
|
|||||||
52
memento-note/components/auth-shell.tsx
Normal file
52
memento-note/components/auth-shell.tsx
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
'use client';
|
||||||
|
|
||||||
|
import { useLanguage } from '@/lib/i18n/LanguageProvider';
|
||||||
|
import Link from 'next/link';
|
||||||
|
import { ArrowLeft } from 'lucide-react';
|
||||||
|
|
||||||
|
function AuthHeader() {
|
||||||
|
const { t } = useLanguage();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<header className="p-6 md:p-8 flex justify-between items-center relative z-10">
|
||||||
|
<Link
|
||||||
|
href="/"
|
||||||
|
aria-label={t('general.back')}
|
||||||
|
className="flex items-center gap-2 text-[var(--muted-foreground)] hover:text-[var(--foreground)] transition-colors group"
|
||||||
|
>
|
||||||
|
<div className="w-8 h-8 rounded-full border border-[var(--border)] flex items-center justify-center group-hover:border-[var(--color-brand-accent)] transition-colors">
|
||||||
|
<ArrowLeft size={14} className="group-hover:-translate-x-0.5 transition-transform rtl:rotate-180" />
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
|
|
||||||
|
<Link href="/" className="flex items-center gap-2">
|
||||||
|
<div className="w-8 h-8 bg-[var(--foreground)] text-[var(--background)] rounded-xl flex items-center justify-center shadow-lg">
|
||||||
|
<span className="font-serif font-bold text-xl">M</span>
|
||||||
|
</div>
|
||||||
|
<span className="font-serif text-xl font-medium tracking-tight">Memento</span>
|
||||||
|
</Link>
|
||||||
|
|
||||||
|
<div className="w-8" />
|
||||||
|
</header>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function AuthShell({ children }: { children: React.ReactNode }) {
|
||||||
|
return (
|
||||||
|
<div className="min-h-screen bg-[#FDFCFB] dark:bg-[#0D0D0D] flex flex-col relative overflow-hidden">
|
||||||
|
<div className="absolute top-[-10%] right-[-10%] w-[50%] h-[50%] bg-[var(--color-brand-accent)]/5 blur-[120px] rounded-full pointer-events-none" />
|
||||||
|
<div className="absolute bottom-[-10%] left-[-10%] w-[50%] h-[50%] bg-[#D4A373]/5 blur-[120px] rounded-full pointer-events-none" />
|
||||||
|
|
||||||
|
<AuthHeader />
|
||||||
|
|
||||||
|
<main className="flex-1 flex items-center justify-center p-4 md:p-6 relative z-10">
|
||||||
|
<div className="w-full max-w-md">
|
||||||
|
{children}
|
||||||
|
<p className="text-center mt-8 text-[9px] text-[var(--muted-foreground)] font-bold uppercase tracking-[0.3em] opacity-40 select-none">
|
||||||
|
© 2026 Memento
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -1386,8 +1386,8 @@ export function Sidebar({ className, user }: { className?: string; user?: any })
|
|||||||
)}
|
)}
|
||||||
aria-hidden={isImmersiveRoute && userCollapsed ? true : undefined}
|
aria-hidden={isImmersiveRoute && userCollapsed ? true : undefined}
|
||||||
>
|
>
|
||||||
{/* ── Column 1 : Rail d'icônes (54px) — inspiré du prototype ── */}
|
{/* ── Column 1 : Rail icône + libellé — destinations lisibles sans survol ── */}
|
||||||
<div className="w-[54px] border-e border-border/40 bg-[#FAF9F5] dark:bg-[#0E0E0E] flex flex-col items-center justify-between py-5 shrink-0 select-none overflow-hidden">
|
<div className="w-[72px] border-e border-border/40 bg-[#FAF9F5] dark:bg-[#0E0E0E] flex flex-col items-center justify-between py-3 shrink-0 select-none overflow-y-auto overflow-x-hidden custom-scrollbar">
|
||||||
|
|
||||||
{/* Top : Logo + navigation */}
|
{/* Top : Logo + navigation */}
|
||||||
<div className="flex flex-col items-center gap-[18px] w-full">
|
<div className="flex flex-col items-center gap-[18px] w-full">
|
||||||
@@ -1425,12 +1425,12 @@ export function Sidebar({ className, user }: { className?: string; user?: any })
|
|||||||
</DropdownMenu>
|
</DropdownMenu>
|
||||||
|
|
||||||
{/* Boutons de navigation principaux */}
|
{/* Boutons de navigation principaux */}
|
||||||
<div className="flex flex-col gap-2 w-full px-1.5">
|
<div className="flex flex-col gap-1 w-full px-1">
|
||||||
{([
|
{([
|
||||||
{
|
{
|
||||||
id: 'dashboard',
|
id: 'dashboard',
|
||||||
icon: LayoutGrid,
|
icon: LayoutGrid,
|
||||||
label: t('nav.dashboard') || 'Dashboard',
|
label: t('nav.home'),
|
||||||
onClick: () => {
|
onClick: () => {
|
||||||
setActiveView('dashboard')
|
setActiveView('dashboard')
|
||||||
router.replace('/home')
|
router.replace('/home')
|
||||||
@@ -1470,7 +1470,7 @@ export function Sidebar({ className, user }: { className?: string; user?: any })
|
|||||||
{
|
{
|
||||||
id: 'agents',
|
id: 'agents',
|
||||||
icon: Bot,
|
icon: Bot,
|
||||||
label: t('agents.intelligenceOS') || 'Intelligence IA',
|
label: t('nav.agents'),
|
||||||
onClick: () => {
|
onClick: () => {
|
||||||
setActiveView('agents')
|
setActiveView('agents')
|
||||||
router.push('/agents')
|
router.push('/agents')
|
||||||
@@ -1492,20 +1492,17 @@ export function Sidebar({ className, user }: { className?: string; user?: any })
|
|||||||
aria-current={item.isActive ? 'page' : undefined}
|
aria-current={item.isActive ? 'page' : undefined}
|
||||||
onClick={item.onClick}
|
onClick={item.onClick}
|
||||||
className={cn(
|
className={cn(
|
||||||
'w-9 h-9 rounded-lg flex items-center justify-center transition-all relative group',
|
'w-full rounded-lg flex flex-col items-center justify-center gap-0.5 py-1.5 px-0.5 transition-all relative',
|
||||||
item.isActive
|
item.isActive
|
||||||
? 'bg-brand-accent/10 text-brand-accent border border-brand-accent/25'
|
? 'bg-brand-accent/10 text-brand-accent border border-brand-accent/25'
|
||||||
: 'text-concrete hover:text-ink dark:hover:text-white hover:bg-black/[0.04] dark:hover:bg-white/[0.04]'
|
: 'text-ink/70 hover:text-ink dark:text-white/70 dark:hover:text-white hover:bg-black/[0.04] dark:hover:bg-white/[0.04]'
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
{item.isActive && (
|
{item.isActive && (
|
||||||
<div className="absolute left-0 top-1/2 -translate-y-1/2 w-1 h-4 bg-brand-accent rounded-r-full" />
|
<div className="absolute start-0 top-1/2 -translate-y-1/2 w-1 h-4 bg-brand-accent rounded-e-full" />
|
||||||
)}
|
)}
|
||||||
<item.icon size={16} />
|
<item.icon size={16} aria-hidden />
|
||||||
<span
|
<span className="text-[11px] leading-tight font-semibold text-center max-w-full line-clamp-2">
|
||||||
aria-hidden="true"
|
|
||||||
className="absolute left-[50px] top-1/2 -translate-y-1/2 bg-ink dark:bg-white dark:text-ink text-paper text-[9px] font-bold py-1 px-2 rounded opacity-0 group-hover:opacity-100 transition-opacity whitespace-nowrap z-50 pointer-events-none shadow-md uppercase tracking-wider"
|
|
||||||
>
|
|
||||||
{item.label}
|
{item.label}
|
||||||
</span>
|
</span>
|
||||||
</button>
|
</button>
|
||||||
@@ -1519,6 +1516,7 @@ export function Sidebar({ className, user }: { className?: string; user?: any })
|
|||||||
|
|
||||||
<Link
|
<Link
|
||||||
href="/trash"
|
href="/trash"
|
||||||
|
aria-label={t('sidebar.trash')}
|
||||||
className={cn(
|
className={cn(
|
||||||
'w-9 h-9 rounded-lg flex items-center justify-center transition-all relative group',
|
'w-9 h-9 rounded-lg flex items-center justify-center transition-all relative group',
|
||||||
pathname === '/trash'
|
pathname === '/trash'
|
||||||
@@ -1538,6 +1536,7 @@ export function Sidebar({ className, user }: { className?: string; user?: any })
|
|||||||
|
|
||||||
<Link
|
<Link
|
||||||
href="/archive"
|
href="/archive"
|
||||||
|
aria-label={t('sidebar.archive')}
|
||||||
className={cn(
|
className={cn(
|
||||||
'w-9 h-9 rounded-lg flex items-center justify-center transition-all relative group',
|
'w-9 h-9 rounded-lg flex items-center justify-center transition-all relative group',
|
||||||
pathname === '/archive'
|
pathname === '/archive'
|
||||||
@@ -1554,6 +1553,7 @@ export function Sidebar({ className, user }: { className?: string; user?: any })
|
|||||||
|
|
||||||
<Link
|
<Link
|
||||||
href="/home?shared=1&forceList=1"
|
href="/home?shared=1&forceList=1"
|
||||||
|
aria-label={t('sidebar.sharedWithMe')}
|
||||||
className={cn(
|
className={cn(
|
||||||
'w-9 h-9 rounded-lg flex items-center justify-center transition-all relative group',
|
'w-9 h-9 rounded-lg flex items-center justify-center transition-all relative group',
|
||||||
searchParams.get('shared') === '1' && pathname === '/home'
|
searchParams.get('shared') === '1' && pathname === '/home'
|
||||||
@@ -1570,7 +1570,8 @@ export function Sidebar({ className, user }: { className?: string; user?: any })
|
|||||||
<button
|
<button
|
||||||
onClick={openSearch}
|
onClick={openSearch}
|
||||||
className="w-9 h-9 rounded-lg flex items-center justify-center text-concrete hover:text-ink dark:hover:text-white hover:bg-black/[0.04] dark:hover:bg-white/[0.04] transition-all relative group"
|
className="w-9 h-9 rounded-lg flex items-center justify-center text-concrete hover:text-ink dark:hover:text-white hover:bg-black/[0.04] dark:hover:bg-white/[0.04] transition-all relative group"
|
||||||
title="Ctrl+K"
|
aria-label={t('sidebar.searchShortcut')}
|
||||||
|
title={t('sidebar.searchShortcut')}
|
||||||
>
|
>
|
||||||
<Search size={15} />
|
<Search size={15} />
|
||||||
<span className="absolute left-[50px] top-1/2 -translate-y-1/2 bg-ink dark:bg-white dark:text-ink text-paper text-[9px] font-bold py-1 px-2 rounded opacity-0 group-hover:opacity-100 transition-opacity whitespace-nowrap z-50 pointer-events-none shadow-md uppercase tracking-wider">
|
<span className="absolute left-[50px] top-1/2 -translate-y-1/2 bg-ink dark:bg-white dark:text-ink text-paper text-[9px] font-bold py-1 px-2 rounded opacity-0 group-hover:opacity-100 transition-opacity whitespace-nowrap z-50 pointer-events-none shadow-md uppercase tracking-wider">
|
||||||
@@ -1580,6 +1581,7 @@ export function Sidebar({ className, user }: { className?: string; user?: any })
|
|||||||
|
|
||||||
<button
|
<button
|
||||||
onClick={toggleTheme}
|
onClick={toggleTheme}
|
||||||
|
aria-label={isDark ? t('sidebar.lightMode') : t('sidebar.darkMode')}
|
||||||
className="w-9 h-9 rounded-lg flex items-center justify-center text-concrete hover:text-ink dark:hover:text-white hover:bg-black/[0.04] dark:hover:bg-white/[0.04] transition-all relative group"
|
className="w-9 h-9 rounded-lg flex items-center justify-center text-concrete hover:text-ink dark:hover:text-white hover:bg-black/[0.04] dark:hover:bg-white/[0.04] transition-all relative group"
|
||||||
>
|
>
|
||||||
{isDark ? <Sun size={15} /> : <Moon size={15} />}
|
{isDark ? <Sun size={15} /> : <Moon size={15} />}
|
||||||
@@ -1590,6 +1592,7 @@ export function Sidebar({ className, user }: { className?: string; user?: any })
|
|||||||
|
|
||||||
<Link
|
<Link
|
||||||
href="/settings"
|
href="/settings"
|
||||||
|
aria-label={t('nav.settings')}
|
||||||
className={cn(
|
className={cn(
|
||||||
'w-9 h-9 rounded-lg flex items-center justify-center transition-all relative group',
|
'w-9 h-9 rounded-lg flex items-center justify-center transition-all relative group',
|
||||||
pathname.startsWith('/settings')
|
pathname.startsWith('/settings')
|
||||||
@@ -1606,6 +1609,7 @@ export function Sidebar({ className, user }: { className?: string; user?: any })
|
|||||||
|
|
||||||
<button
|
<button
|
||||||
onClick={() => performSignOut('/login')}
|
onClick={() => performSignOut('/login')}
|
||||||
|
aria-label={t('sidebar.signOut')}
|
||||||
className="w-9 h-9 rounded-lg flex items-center justify-center text-concrete hover:text-red-500 hover:bg-rose-500/5 transition-all relative group"
|
className="w-9 h-9 rounded-lg flex items-center justify-center text-concrete hover:text-red-500 hover:bg-rose-500/5 transition-all relative group"
|
||||||
>
|
>
|
||||||
<LogOut size={14} />
|
<LogOut size={14} />
|
||||||
@@ -1971,7 +1975,7 @@ export function Sidebar({ className, user }: { className?: string; user?: any })
|
|||||||
transition={{ duration: 0.2 }}
|
transition={{ duration: 0.2 }}
|
||||||
>
|
>
|
||||||
<p className="text-[10px] font-bold text-muted-foreground tracking-widest uppercase mb-4 px-4">
|
<p className="text-[10px] font-bold text-muted-foreground tracking-widest uppercase mb-4 px-4">
|
||||||
{t('agents.intelligenceOS')}
|
{t('nav.agents')}
|
||||||
</p>
|
</p>
|
||||||
<div className="space-y-1">
|
<div className="space-y-1">
|
||||||
{[
|
{[
|
||||||
|
|||||||
@@ -31,14 +31,14 @@
|
|||||||
"confirmPasswordPlaceholder": "أعد إدخال كلمة المرور",
|
"confirmPasswordPlaceholder": "أعد إدخال كلمة المرور",
|
||||||
"backToSite": "رجوع",
|
"backToSite": "رجوع",
|
||||||
"continueWithGoogle": "متابعة بحساب Google",
|
"continueWithGoogle": "متابعة بحساب Google",
|
||||||
"createYourSpace": "أنشئ مساحتك",
|
"createYourSpace": "أنشئ دماغك الثاني",
|
||||||
"createYourSpaceSubtitle": "انضم إلى العصر الجديد لتدوين الملاحظات الذكية.",
|
"createYourSpaceSubtitle": "يتصل أثناء الكتابة — ليست مجرد تطبيق ملاحظات آخر.",
|
||||||
"forgot": "نسيت؟",
|
"forgot": "نسيت؟",
|
||||||
"oauthAccountNotLinked": "حساب Google هذا لا يتطابق مع حسابك الحالي. استخدم نفس البريد الإلكتروني أو سجّل الدخول بكلمة المرور.",
|
"oauthAccountNotLinked": "حساب Google هذا لا يتطابق مع حسابك الحالي. استخدم نفس البريد الإلكتروني أو سجّل الدخول بكلمة المرور.",
|
||||||
"privacyTerms": "© 2025 Memento Labs — الخصوصية · الشروط",
|
"privacyTerms": "© 2025 Memento Labs — الخصوصية · الشروط",
|
||||||
"sessionExpired": "يتم إنشاء موقعك مع التنقل وجدول المحتويات",
|
"sessionExpired": "يتم إنشاء موقعك مع التنقل وجدول المحتويات",
|
||||||
"welcomeBack": "مرحبًا بعودتك",
|
"welcomeBack": "مرحبًا بعودتك",
|
||||||
"welcomeBackSubtitle": "أدخل بيانات الاعتماد للوصول إلى ملاحظاتك.",
|
"welcomeBackSubtitle": "سجّل الدخول لاستعادة ملاحظاتك وروابطك وما كنت قد نسيته.",
|
||||||
"checkEmailTitle": "تحقق من بريدك الإلكتروني",
|
"checkEmailTitle": "تحقق من بريدك الإلكتروني",
|
||||||
"checkEmailDescription": "أرسلنا رابط تأكيد إلى {email}. افتحه لتفعيل حسابك قبل تسجيل الدخول.",
|
"checkEmailDescription": "أرسلنا رابط تأكيد إلى {email}. افتحه لتفعيل حسابك قبل تسجيل الدخول.",
|
||||||
"checkEmailDescriptionGeneric": "أرسلنا رابط تأكيد إلى بريدك. افتحه لتفعيل حسابك قبل تسجيل الدخول.",
|
"checkEmailDescriptionGeneric": "أرسلنا رابط تأكيد إلى بريدك. افتحه لتفعيل حسابك قبل تسجيل الدخول.",
|
||||||
@@ -99,13 +99,13 @@
|
|||||||
"darkMode": "الوضع الداكن",
|
"darkMode": "الوضع الداكن",
|
||||||
"dashboardPanelBody": "انتهت جلستك. يرجى تسجيل الدخول مرة أخرى.",
|
"dashboardPanelBody": "انتهت جلستك. يرجى تسجيل الدخول مرة أخرى.",
|
||||||
"documents": "مستندات",
|
"documents": "مستندات",
|
||||||
"insightsPanelBody": "الخريطة الدلالية لملاحظاتك: عناقيد موضوعية، ملاحظات جسرية، واقتراحات روابط.",
|
"insightsPanelBody": "خريطة لكيفية ارتباط ملاحظاتك: مواضيع قريبة، ملاحظات جسرية، وروابط يمكنك فتحها.",
|
||||||
"lightMode": "الوضع الفاتح",
|
"lightMode": "الوضع الفاتح",
|
||||||
"notebookEmpty": "فارغ",
|
"notebookEmpty": "فارغ",
|
||||||
"recentNote": "أُنشئت مؤخراً",
|
"recentNote": "أُنشئت مؤخراً",
|
||||||
"resizeNotebooksPanel": "تغيير حجم لوحة الدفاتر",
|
"resizeNotebooksPanel": "تغيير حجم لوحة الدفاتر",
|
||||||
"resizeSidebar": "تغيير عرض الشريط الجانبي",
|
"resizeSidebar": "تغيير عرض الشريط الجانبي",
|
||||||
"revisionPanelBody": "راجع البطاقات التعليمية بخوارزمية SM-2. تُنشأ الحزم من ملاحظاتك.",
|
"revisionPanelBody": "راجع بالبطاقات. التكرار المتباعد يعيدها في الوقت المناسب. تُنشأ الحزم من ملاحظاتك.",
|
||||||
"searchNotebooksPlaceholder": "ابحث عن الدفاتر…",
|
"searchNotebooksPlaceholder": "ابحث عن الدفاتر…",
|
||||||
"searchShortcut": "بحث (Ctrl+K)"
|
"searchShortcut": "بحث (Ctrl+K)"
|
||||||
},
|
},
|
||||||
@@ -991,7 +991,7 @@
|
|||||||
"dailyNotes": "ملاحظات يومية",
|
"dailyNotes": "ملاحظات يومية",
|
||||||
"dashboard": "لوحة التحكم",
|
"dashboard": "لوحة التحكم",
|
||||||
"graphView": "خريطة الروابط",
|
"graphView": "خريطة الروابط",
|
||||||
"insights": "المواضيع الدلالية",
|
"insights": "الروابط",
|
||||||
"revision": "مراجعة"
|
"revision": "مراجعة"
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
@@ -2453,7 +2453,7 @@
|
|||||||
"slideStyle": "يؤثر النمط المرئي على نصف قطر الزاوية والتباعد وكثافة المعلومات."
|
"slideStyle": "يؤثر النمط المرئي على نصف قطر الزاوية والتباعد وكثافة المعلومات."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"intelligenceOS": "نظام التشغيل الذكي"
|
"intelligenceOS": "الوكلاء"
|
||||||
},
|
},
|
||||||
"chat": {
|
"chat": {
|
||||||
"title": "محادثة الذكاء الاصطناعي",
|
"title": "محادثة الذكاء الاصطناعي",
|
||||||
|
|||||||
@@ -31,14 +31,14 @@
|
|||||||
"confirmPasswordPlaceholder": "Passwort erneut eingeben",
|
"confirmPasswordPlaceholder": "Passwort erneut eingeben",
|
||||||
"backToSite": "Zurück",
|
"backToSite": "Zurück",
|
||||||
"continueWithGoogle": "Mit Google fortfahren",
|
"continueWithGoogle": "Mit Google fortfahren",
|
||||||
"createYourSpace": "Erstelle deinen Bereich",
|
"createYourSpace": "Erstelle dein zweites Gehirn",
|
||||||
"createYourSpaceSubtitle": "Willkommen im neuen Zeitalter der intelligenten Notizaufzeichnung.",
|
"createYourSpaceSubtitle": "Es verbindet sich, während du schreibst — nicht nur eine weitere Notiz-App.",
|
||||||
"forgot": "Vergessen?",
|
"forgot": "Vergessen?",
|
||||||
"oauthAccountNotLinked": "Dieses Google-Konto stimmt nicht mit Ihrem bestehenden Konto überein. Verwenden Sie dieselbe E-Mail oder melden Sie sich mit Ihrem Passwort an.",
|
"oauthAccountNotLinked": "Dieses Google-Konto stimmt nicht mit Ihrem bestehenden Konto überein. Verwenden Sie dieselbe E-Mail oder melden Sie sich mit Ihrem Passwort an.",
|
||||||
"privacyTerms": "© 2025 Memento Labs — Datenschutz · AGB",
|
"privacyTerms": "© 2025 Memento Labs — Datenschutz · AGB",
|
||||||
"sessionExpired": "Ihre Seite wird mit Navigation und Inhaltsverzeichnis generiert",
|
"sessionExpired": "Ihre Seite wird mit Navigation und Inhaltsverzeichnis generiert",
|
||||||
"welcomeBack": "Willkommen zurück",
|
"welcomeBack": "Willkommen zurück",
|
||||||
"welcomeBackSubtitle": "Geben Sie Ihre Anmeldedaten ein, um auf Ihre Notizen zuzugreifen.",
|
"welcomeBackSubtitle": "Melde dich an, um Notizen, Verbindungen und das, was du vergessen hast, wiederzufinden.",
|
||||||
"checkEmailTitle": "E-Mail prüfen",
|
"checkEmailTitle": "E-Mail prüfen",
|
||||||
"checkEmailDescription": "Wir haben einen Bestätigungslink an {email} gesendet. Öffnen Sie ihn, um Ihr Konto zu aktivieren.",
|
"checkEmailDescription": "Wir haben einen Bestätigungslink an {email} gesendet. Öffnen Sie ihn, um Ihr Konto zu aktivieren.",
|
||||||
"checkEmailDescriptionGeneric": "Wir haben einen Bestätigungslink an Ihre E-Mail gesendet. Öffnen Sie ihn, um Ihr Konto zu aktivieren.",
|
"checkEmailDescriptionGeneric": "Wir haben einen Bestätigungslink an Ihre E-Mail gesendet. Öffnen Sie ihn, um Ihr Konto zu aktivieren.",
|
||||||
@@ -99,13 +99,13 @@
|
|||||||
"darkMode": "Dunkelmodus",
|
"darkMode": "Dunkelmodus",
|
||||||
"dashboardPanelBody": "Ihre Sitzung ist abgelaufen. Bitte melden Sie sich erneut an.",
|
"dashboardPanelBody": "Ihre Sitzung ist abgelaufen. Bitte melden Sie sich erneut an.",
|
||||||
"documents": "Dokumente",
|
"documents": "Dokumente",
|
||||||
"insightsPanelBody": "Semantische Karte Ihrer Notizen: thematische Cluster, Brücken-Notizen und Verbindungsvorschläge.",
|
"insightsPanelBody": "Eine Karte, wie Ihre Notizen zusammenhängen: verwandte Themen, Brücken-Notizen und Links zum Öffnen.",
|
||||||
"lightMode": "Helles Design",
|
"lightMode": "Helles Design",
|
||||||
"notebookEmpty": "Leer",
|
"notebookEmpty": "Leer",
|
||||||
"recentNote": "Kürzlich erstellt",
|
"recentNote": "Kürzlich erstellt",
|
||||||
"resizeNotebooksPanel": "Notizbuch-Panel-Größe ändern",
|
"resizeNotebooksPanel": "Notizbuch-Panel-Größe ändern",
|
||||||
"resizeSidebar": "Seitenleistenbreite anpassen",
|
"resizeSidebar": "Seitenleistenbreite anpassen",
|
||||||
"revisionPanelBody": "Wiederholen Sie Karteikarten mit dem SM-2-Algorithmus. Stapel werden aus Ihren Notizen generiert.",
|
"revisionPanelBody": "Wiederholen Sie mit Karteikarten. Die zeitversetzte Wiederholung bringt sie zur richtigen Zeit zurück. Stapel entstehen aus Ihren Notizen.",
|
||||||
"searchNotebooksPlaceholder": "Notizbücher suchen…",
|
"searchNotebooksPlaceholder": "Notizbücher suchen…",
|
||||||
"searchShortcut": "Suchen (Strg+K)"
|
"searchShortcut": "Suchen (Strg+K)"
|
||||||
},
|
},
|
||||||
@@ -991,7 +991,7 @@
|
|||||||
"dailyNotes": "Tagesnotizen",
|
"dailyNotes": "Tagesnotizen",
|
||||||
"dashboard": "Dashboard",
|
"dashboard": "Dashboard",
|
||||||
"graphView": "Link-Karte",
|
"graphView": "Link-Karte",
|
||||||
"insights": "Semantische Themen",
|
"insights": "Verbindungen",
|
||||||
"revision": "Wiederholen"
|
"revision": "Wiederholen"
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
@@ -2453,7 +2453,7 @@
|
|||||||
"slideStyle": "Der visuelle Stil beeinflusst den Eckenradius, den Abstand und die Informationsdichte."
|
"slideStyle": "Der visuelle Stil beeinflusst den Eckenradius, den Abstand und die Informationsdichte."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"intelligenceOS": "Intelligentes Betriebssystem"
|
"intelligenceOS": "Agenten"
|
||||||
},
|
},
|
||||||
"chat": {
|
"chat": {
|
||||||
"title": "KI-Chat",
|
"title": "KI-Chat",
|
||||||
|
|||||||
@@ -32,10 +32,10 @@
|
|||||||
"signOut": "Sign out",
|
"signOut": "Sign out",
|
||||||
"confirmPassword": "Confirm Password",
|
"confirmPassword": "Confirm Password",
|
||||||
"confirmPasswordPlaceholder": "Confirm your password",
|
"confirmPasswordPlaceholder": "Confirm your password",
|
||||||
"welcomeBack": "Welcome Back",
|
"welcomeBack": "Welcome back",
|
||||||
"welcomeBackSubtitle": "Enter your credentials to access your notes.",
|
"welcomeBackSubtitle": "Sign in to find your notes, your connections, and what you forgot.",
|
||||||
"createYourSpace": "Create Your Space",
|
"createYourSpace": "Create your second brain",
|
||||||
"createYourSpaceSubtitle": "Join the new era of smart note-taking.",
|
"createYourSpaceSubtitle": "It connects while you write — not just another notes app.",
|
||||||
"forgot": "Forgot?",
|
"forgot": "Forgot?",
|
||||||
"backToSite": "Back to site",
|
"backToSite": "Back to site",
|
||||||
"privacyTerms": "© 2025 Memento Labs — Privacy · Terms",
|
"privacyTerms": "© 2025 Memento Labs — Privacy · Terms",
|
||||||
@@ -97,8 +97,8 @@
|
|||||||
"dashboardPanelBody": "Your second brain at a glance: AI suggestions, quick capture, and next steps. Use the shortcuts below to jump into action.",
|
"dashboardPanelBody": "Your second brain at a glance: AI suggestions, quick capture, and next steps. Use the shortcuts below to jump into action.",
|
||||||
"searchNotebooksPlaceholder": "Search notebooks…",
|
"searchNotebooksPlaceholder": "Search notebooks…",
|
||||||
"clearSearch": "Clear search",
|
"clearSearch": "Clear search",
|
||||||
"insightsPanelBody": "Semantic map of your notes: thematic clusters, bridge notes, and connection suggestions.",
|
"insightsPanelBody": "A map of how your notes connect: related themes, bridge notes, and links you can open.",
|
||||||
"revisionPanelBody": "Review flashcards with the SM-2 algorithm. Decks are generated from your notes.",
|
"revisionPanelBody": "Review with flashcards. Spaced repetition brings them back at the right time. Packs come from your notes.",
|
||||||
"backToNotebooks": "Back to notebooks",
|
"backToNotebooks": "Back to notebooks",
|
||||||
"resizeNotebooksPanel": "Resize notebooks panel",
|
"resizeNotebooksPanel": "Resize notebooks panel",
|
||||||
"resizeSidebar": "Resize sidebar width",
|
"resizeSidebar": "Resize sidebar width",
|
||||||
@@ -1001,7 +1001,7 @@
|
|||||||
"nav": {
|
"nav": {
|
||||||
"home": "Home",
|
"home": "Home",
|
||||||
"notes": "Notes",
|
"notes": "Notes",
|
||||||
"notebooks": "NOTEBOOKS",
|
"notebooks": "Notebooks",
|
||||||
"generalNotes": "General Notes",
|
"generalNotes": "General Notes",
|
||||||
"archive": "Archive",
|
"archive": "Archive",
|
||||||
"settings": "Settings",
|
"settings": "Settings",
|
||||||
@@ -1015,7 +1015,7 @@
|
|||||||
"support": "Support Memento ☕",
|
"support": "Support Memento ☕",
|
||||||
"reminders": "Reminders",
|
"reminders": "Reminders",
|
||||||
"graphView": "Link map",
|
"graphView": "Link map",
|
||||||
"insights": "Semantic themes",
|
"insights": "Connections",
|
||||||
"revision": "Review",
|
"revision": "Review",
|
||||||
"dailyNotes": "Daily Notes",
|
"dailyNotes": "Daily Notes",
|
||||||
"dashboard": "Dashboard",
|
"dashboard": "Dashboard",
|
||||||
@@ -2542,7 +2542,7 @@
|
|||||||
"slideStyle": "Visual style affects corner radius, spacing, and information density."
|
"slideStyle": "Visual style affects corner radius, spacing, and information density."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"intelligenceOS": "Intelligence OS"
|
"intelligenceOS": "Agents"
|
||||||
},
|
},
|
||||||
"chat": {
|
"chat": {
|
||||||
"title": "AI Chat",
|
"title": "AI Chat",
|
||||||
|
|||||||
@@ -31,14 +31,14 @@
|
|||||||
"confirmPasswordPlaceholder": "Confirme su contraseña",
|
"confirmPasswordPlaceholder": "Confirme su contraseña",
|
||||||
"backToSite": "Atrás",
|
"backToSite": "Atrás",
|
||||||
"continueWithGoogle": "Continuar con Google",
|
"continueWithGoogle": "Continuar con Google",
|
||||||
"createYourSpace": "Crea tu espacio",
|
"createYourSpace": "Crea tu segundo cerebro",
|
||||||
"createYourSpaceSubtitle": "Únete a la nueva era de la toma de notas inteligente.",
|
"createYourSpaceSubtitle": "Se conecta mientras escribes — no es otra app de notas.",
|
||||||
"forgot": "¿Olvidaste?",
|
"forgot": "¿Olvidaste?",
|
||||||
"oauthAccountNotLinked": "Esta cuenta de Google no coincide con tu cuenta existente. Usa el mismo correo o inicia sesión con tu contraseña.",
|
"oauthAccountNotLinked": "Esta cuenta de Google no coincide con tu cuenta existente. Usa el mismo correo o inicia sesión con tu contraseña.",
|
||||||
"privacyTerms": "© 2025 Memento Labs — Privacidad · Términos",
|
"privacyTerms": "© 2025 Memento Labs — Privacidad · Términos",
|
||||||
"sessionExpired": "Tu sitio se genera con navegación y tabla de contenidos",
|
"sessionExpired": "Tu sitio se genera con navegación y tabla de contenidos",
|
||||||
"welcomeBack": "Bienvenido de nuevo",
|
"welcomeBack": "Bienvenido de nuevo",
|
||||||
"welcomeBackSubtitle": "Introduce tus credenciales para acceder a tus notas.",
|
"welcomeBackSubtitle": "Entra para recuperar tus notas, tus conexiones y lo que habías olvidado.",
|
||||||
"checkEmailTitle": "Revisa tu correo",
|
"checkEmailTitle": "Revisa tu correo",
|
||||||
"checkEmailDescription": "Enviamos un enlace de confirmación a {email}. Ábrelo para activar tu cuenta antes de iniciar sesión.",
|
"checkEmailDescription": "Enviamos un enlace de confirmación a {email}. Ábrelo para activar tu cuenta antes de iniciar sesión.",
|
||||||
"checkEmailDescriptionGeneric": "Enviamos un enlace de confirmación a tu correo. Ábrelo para activar tu cuenta antes de iniciar sesión.",
|
"checkEmailDescriptionGeneric": "Enviamos un enlace de confirmación a tu correo. Ábrelo para activar tu cuenta antes de iniciar sesión.",
|
||||||
@@ -99,13 +99,13 @@
|
|||||||
"darkMode": "Modo oscuro",
|
"darkMode": "Modo oscuro",
|
||||||
"dashboardPanelBody": "Tu sesión ha expirado. Por favor, inicia sesión de nuevo.",
|
"dashboardPanelBody": "Tu sesión ha expirado. Por favor, inicia sesión de nuevo.",
|
||||||
"documents": "Documentos",
|
"documents": "Documentos",
|
||||||
"insightsPanelBody": "Mapa semántico de tus notas: clusters temáticos, notas puente y sugerencias de conexión.",
|
"insightsPanelBody": "Un mapa de cómo se conectan tus notas: temas cercanos, notas puente y enlaces que puedes abrir.",
|
||||||
"lightMode": "Modo claro",
|
"lightMode": "Modo claro",
|
||||||
"notebookEmpty": "Vacío",
|
"notebookEmpty": "Vacío",
|
||||||
"recentNote": "Creadas recientemente",
|
"recentNote": "Creadas recientemente",
|
||||||
"resizeNotebooksPanel": "Redimensionar panel de cuadernos",
|
"resizeNotebooksPanel": "Redimensionar panel de cuadernos",
|
||||||
"resizeSidebar": "Redimensionar ancho de la barra lateral",
|
"resizeSidebar": "Redimensionar ancho de la barra lateral",
|
||||||
"revisionPanelBody": "Revisa flashcards con el algoritmo SM-2. Los mazos se generan a partir de tus notas.",
|
"revisionPanelBody": "Repasa con tarjetas. La repetición espaciada las trae de vuelta en el momento adecuado. Los mazos salen de tus notas.",
|
||||||
"searchNotebooksPlaceholder": "Buscar cuadernos…",
|
"searchNotebooksPlaceholder": "Buscar cuadernos…",
|
||||||
"searchShortcut": "Buscar (Ctrl+K)"
|
"searchShortcut": "Buscar (Ctrl+K)"
|
||||||
},
|
},
|
||||||
@@ -991,7 +991,7 @@
|
|||||||
"dailyNotes": "Notas diarias",
|
"dailyNotes": "Notas diarias",
|
||||||
"dashboard": "Panel",
|
"dashboard": "Panel",
|
||||||
"graphView": "Mapa de enlaces",
|
"graphView": "Mapa de enlaces",
|
||||||
"insights": "Temas semánticos",
|
"insights": "Conexiones",
|
||||||
"revision": "Revisar"
|
"revision": "Revisar"
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
@@ -2453,7 +2453,7 @@
|
|||||||
"slideStyle": "El estilo visual afecta el radio de las esquinas, el espaciado y la densidad de la información."
|
"slideStyle": "El estilo visual afecta el radio de las esquinas, el espaciado y la densidad de la información."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"intelligenceOS": "Sistema operativo inteligente"
|
"intelligenceOS": "Agentes"
|
||||||
},
|
},
|
||||||
"chat": {
|
"chat": {
|
||||||
"title": "Chat IA",
|
"title": "Chat IA",
|
||||||
|
|||||||
@@ -31,14 +31,14 @@
|
|||||||
"confirmPasswordPlaceholder": "رمز عبور را دوباره وارد کنید",
|
"confirmPasswordPlaceholder": "رمز عبور را دوباره وارد کنید",
|
||||||
"backToSite": "بازگشت",
|
"backToSite": "بازگشت",
|
||||||
"continueWithGoogle": "ادامه با گوگل",
|
"continueWithGoogle": "ادامه با گوگل",
|
||||||
"createYourSpace": "فضای خود را ایجاد کنید",
|
"createYourSpace": "مغز دوم خود را بسازید",
|
||||||
"createYourSpaceSubtitle": "به عصر جدید یادداشتبرداری هوشمند بپیوندید.",
|
"createYourSpaceSubtitle": "همانطور که مینویسید متصل میشود — فقط یک برنامهٔ یادداشت دیگر نیست.",
|
||||||
"forgot": "فراموش کردهاید؟",
|
"forgot": "فراموش کردهاید؟",
|
||||||
"oauthAccountNotLinked": "این حساب گوگل با حساب موجود شما مطابقت ندارد. از همان ایمیل استفاده کنید یا با رمز عبور خود وارد شوید.",
|
"oauthAccountNotLinked": "این حساب گوگل با حساب موجود شما مطابقت ندارد. از همان ایمیل استفاده کنید یا با رمز عبور خود وارد شوید.",
|
||||||
"privacyTerms": "© ۲۰۲۵ Memento Labs — حریم خصوصی · شرایط",
|
"privacyTerms": "© ۲۰۲۵ Memento Labs — حریم خصوصی · شرایط",
|
||||||
"sessionExpired": "سایت شما با ناوبری و فهرست مطالب تولید میشود",
|
"sessionExpired": "سایت شما با ناوبری و فهرست مطالب تولید میشود",
|
||||||
"welcomeBack": "خوش آمدید",
|
"welcomeBack": "خوش آمدید",
|
||||||
"welcomeBackSubtitle": "اعتبارنامههای خود را برای دسترسی به یادداشتهایتان وارد کنید.",
|
"welcomeBackSubtitle": "وارد شوید تا یادداشتها، پیوندها و آنچه فراموش کرده بودید را پیدا کنید.",
|
||||||
"checkEmailTitle": "ایمیل خود را بررسی کنید",
|
"checkEmailTitle": "ایمیل خود را بررسی کنید",
|
||||||
"checkEmailDescription": "لینک تأیید را به {email} فرستادیم. قبل از ورود آن را باز کنید تا حساب فعال شود.",
|
"checkEmailDescription": "لینک تأیید را به {email} فرستادیم. قبل از ورود آن را باز کنید تا حساب فعال شود.",
|
||||||
"checkEmailDescriptionGeneric": "لینک تأیید را به ایمیل شما فرستادیم. قبل از ورود آن را باز کنید تا حساب فعال شود.",
|
"checkEmailDescriptionGeneric": "لینک تأیید را به ایمیل شما فرستادیم. قبل از ورود آن را باز کنید تا حساب فعال شود.",
|
||||||
@@ -99,13 +99,13 @@
|
|||||||
"darkMode": "حالت تاریک",
|
"darkMode": "حالت تاریک",
|
||||||
"dashboardPanelBody": "نشست شما منقضی شده است. لطفاً دوباره وارد شوید.",
|
"dashboardPanelBody": "نشست شما منقضی شده است. لطفاً دوباره وارد شوید.",
|
||||||
"documents": "اسناد",
|
"documents": "اسناد",
|
||||||
"insightsPanelBody": "نقشه معنایی یادداشتهای شما: خوشههای موضوعی، یادداشتهای پل و پیشنهادهای ارتباط.",
|
"insightsPanelBody": "نقشهٔ پیوند یادداشتها: موضوعهای نزدیک، یادداشتهای پل، و پیوندهایی که میتوانید باز کنید.",
|
||||||
"lightMode": "حالت روشن",
|
"lightMode": "حالت روشن",
|
||||||
"notebookEmpty": "خالی",
|
"notebookEmpty": "خالی",
|
||||||
"recentNote": "تازه ایجاد شده",
|
"recentNote": "تازه ایجاد شده",
|
||||||
"resizeNotebooksPanel": "تغییر اندازه پانل دفترچهها",
|
"resizeNotebooksPanel": "تغییر اندازه پانل دفترچهها",
|
||||||
"resizeSidebar": "تغییر عرض نوار کناری",
|
"resizeSidebar": "تغییر عرض نوار کناری",
|
||||||
"revisionPanelBody": "فلشکارتها را با الگوریتم SM-2 مرور کنید. دستهها از یادداشتهای شما تولید میشوند.",
|
"revisionPanelBody": "با فلشکارت مرور کنید. تکرار با فاصله آنها را در زمان درست برمیگرداند. دستهها از یادداشتهای شما ساخته میشوند.",
|
||||||
"searchNotebooksPlaceholder": "جستجوی دفترچهها…",
|
"searchNotebooksPlaceholder": "جستجوی دفترچهها…",
|
||||||
"searchShortcut": "جستجو (Ctrl+K)"
|
"searchShortcut": "جستجو (Ctrl+K)"
|
||||||
},
|
},
|
||||||
@@ -991,7 +991,7 @@
|
|||||||
"dailyNotes": "یادداشتهای روزانه",
|
"dailyNotes": "یادداشتهای روزانه",
|
||||||
"dashboard": "داشبورد",
|
"dashboard": "داشبورد",
|
||||||
"graphView": "نقشه پیوندها",
|
"graphView": "نقشه پیوندها",
|
||||||
"insights": "موضوعات معنایی",
|
"insights": "پیوندها",
|
||||||
"revision": "مرور"
|
"revision": "مرور"
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
@@ -2453,7 +2453,7 @@
|
|||||||
"slideStyle": "سبک بصری بر شعاع گوشه، فاصله و تراکم اطلاعات تأثیر می گذارد."
|
"slideStyle": "سبک بصری بر شعاع گوشه، فاصله و تراکم اطلاعات تأثیر می گذارد."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"intelligenceOS": "سیستم عامل هوشمند"
|
"intelligenceOS": "عاملها"
|
||||||
},
|
},
|
||||||
"chat": {
|
"chat": {
|
||||||
"title": "چت هوش مصنوعی",
|
"title": "چت هوش مصنوعی",
|
||||||
|
|||||||
@@ -33,9 +33,9 @@
|
|||||||
"confirmPassword": "Confirmer le mot de passe",
|
"confirmPassword": "Confirmer le mot de passe",
|
||||||
"confirmPasswordPlaceholder": "Confirmez votre mot de passe",
|
"confirmPasswordPlaceholder": "Confirmez votre mot de passe",
|
||||||
"welcomeBack": "Bon retour parmi nous",
|
"welcomeBack": "Bon retour parmi nous",
|
||||||
"welcomeBackSubtitle": "Entrez vos identifiants pour accéder à vos notes.",
|
"welcomeBackSubtitle": "Retrouvez vos notes, vos liens, et ce que vous aviez oublié.",
|
||||||
"createYourSpace": "Créer votre espace",
|
"createYourSpace": "Créer votre second cerveau",
|
||||||
"createYourSpaceSubtitle": "Rejoignez la nouvelle ère de la prise de notes intelligente.",
|
"createYourSpaceSubtitle": "Il se connecte pendant que vous écrivez — pas une app de notes de plus.",
|
||||||
"forgot": "Oublié ?",
|
"forgot": "Oublié ?",
|
||||||
"backToSite": "Retour",
|
"backToSite": "Retour",
|
||||||
"privacyTerms": "© 2025 Memento Labs — Confidentialité · Conditions",
|
"privacyTerms": "© 2025 Memento Labs — Confidentialité · Conditions",
|
||||||
@@ -97,8 +97,8 @@
|
|||||||
"dashboardPanelBody": "Votre second brain en un coup d'œil : suggestions IA, capture rapide et prochaines pistes. Raccourcis pour agir tout de suite.",
|
"dashboardPanelBody": "Votre second brain en un coup d'œil : suggestions IA, capture rapide et prochaines pistes. Raccourcis pour agir tout de suite.",
|
||||||
"searchNotebooksPlaceholder": "Rechercher un carnet…",
|
"searchNotebooksPlaceholder": "Rechercher un carnet…",
|
||||||
"clearSearch": "Effacer la recherche",
|
"clearSearch": "Effacer la recherche",
|
||||||
"insightsPanelBody": "Cartographie sémantique de vos notes : clusters thématiques, notes-ponts et suggestions de connexion.",
|
"insightsPanelBody": "La carte des liens entre vos notes : thèmes proches, notes qui font le pont, et pistes à ouvrir.",
|
||||||
"revisionPanelBody": "Révisez vos flashcards avec l'algorithme SM-2. Les decks sont générés depuis vos notes.",
|
"revisionPanelBody": "Révisez avec des cartes mémoire. La répétition espacée vous les représente au bon moment. Les paquets viennent de vos notes.",
|
||||||
"backToNotebooks": "Retour aux carnets",
|
"backToNotebooks": "Retour aux carnets",
|
||||||
"resizeNotebooksPanel": "Redimensionner la zone des carnets",
|
"resizeNotebooksPanel": "Redimensionner la zone des carnets",
|
||||||
"resizeSidebar": "Redimensionner la largeur de la barre latérale",
|
"resizeSidebar": "Redimensionner la largeur de la barre latérale",
|
||||||
@@ -1007,7 +1007,7 @@
|
|||||||
"nav": {
|
"nav": {
|
||||||
"home": "Accueil",
|
"home": "Accueil",
|
||||||
"notes": "Notes",
|
"notes": "Notes",
|
||||||
"notebooks": "CARNETS",
|
"notebooks": "Carnets",
|
||||||
"generalNotes": "Notes générales",
|
"generalNotes": "Notes générales",
|
||||||
"archive": "Archives",
|
"archive": "Archives",
|
||||||
"settings": "Paramètres",
|
"settings": "Paramètres",
|
||||||
@@ -1021,7 +1021,7 @@
|
|||||||
"support": "Soutenir Memento ☕",
|
"support": "Soutenir Memento ☕",
|
||||||
"reminders": "Rappels",
|
"reminders": "Rappels",
|
||||||
"graphView": "Carte des liens",
|
"graphView": "Carte des liens",
|
||||||
"insights": "Thèmes sémantiques",
|
"insights": "Connexions",
|
||||||
"revision": "Révisions",
|
"revision": "Révisions",
|
||||||
"dailyNotes": "Notes du jour",
|
"dailyNotes": "Notes du jour",
|
||||||
"dashboard": "Tableau de bord",
|
"dashboard": "Tableau de bord",
|
||||||
@@ -2548,7 +2548,7 @@
|
|||||||
"slideStyle": "Le style visuel affecte les coins arrondis, l'espacement et la densité d'information."
|
"slideStyle": "Le style visuel affecte les coins arrondis, l'espacement et la densité d'information."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"intelligenceOS": "Système d'exploitation intelligent"
|
"intelligenceOS": "Agents"
|
||||||
},
|
},
|
||||||
"chat": {
|
"chat": {
|
||||||
"title": "Chat IA",
|
"title": "Chat IA",
|
||||||
|
|||||||
@@ -31,14 +31,14 @@
|
|||||||
"confirmPasswordPlaceholder": "अपना पासवर्ड दोबारा दर्ज करें",
|
"confirmPasswordPlaceholder": "अपना पासवर्ड दोबारा दर्ज करें",
|
||||||
"backToSite": "वापस",
|
"backToSite": "वापस",
|
||||||
"continueWithGoogle": "Google के साथ जारी रखें",
|
"continueWithGoogle": "Google के साथ जारी रखें",
|
||||||
"createYourSpace": "अपना स्थान बनाएं",
|
"createYourSpace": "अपना दूसरा दिमाग बनाएँ",
|
||||||
"createYourSpaceSubtitle": "स्मार्ट नोट लेखन के नए युग में शामिल हों।",
|
"createYourSpaceSubtitle": "जब आप लिखते हैं, यह जुड़ता है — सिर्फ़ एक और नोट ऐप नहीं।",
|
||||||
"forgot": "भूल गए?",
|
"forgot": "भूल गए?",
|
||||||
"oauthAccountNotLinked": "यह Google खाता आपके मौजूदा खाते से मेल नहीं खाता। वही ईमेल उपयोग करें या अपने पासवर्ड से साइन इन करें।",
|
"oauthAccountNotLinked": "यह Google खाता आपके मौजूदा खाते से मेल नहीं खाता। वही ईमेल उपयोग करें या अपने पासवर्ड से साइन इन करें।",
|
||||||
"privacyTerms": "© 2025 Memento Labs — गोपनीयता · शर्तें",
|
"privacyTerms": "© 2025 Memento Labs — गोपनीयता · शर्तें",
|
||||||
"sessionExpired": "आपकी साइट नेविगेशन और विषय-सूची के साथ बनाई जाती है",
|
"sessionExpired": "आपकी साइट नेविगेशन और विषय-सूची के साथ बनाई जाती है",
|
||||||
"welcomeBack": "वापसी पर स्वागत है",
|
"welcomeBack": "वापसी पर स्वागत है",
|
||||||
"welcomeBackSubtitle": "अपने नोट्स तक पहुँचने के लिए अपनी प्रमाणीकरण जानकारी दर्ज करें।",
|
"welcomeBackSubtitle": "अपने नोट्स, कनेक्शन और जो आप भूल गए थे, उन्हें पाने के लिए साइन इन करें।",
|
||||||
"checkEmailTitle": "अपना ईमेल देखें",
|
"checkEmailTitle": "अपना ईमेल देखें",
|
||||||
"checkEmailDescription": "हमने {email} पर पुष्टि लिंक भेजा है। साइन इन से पहले खाता सक्रिय करने के लिए इसे खोलें।",
|
"checkEmailDescription": "हमने {email} पर पुष्टि लिंक भेजा है। साइन इन से पहले खाता सक्रिय करने के लिए इसे खोलें।",
|
||||||
"checkEmailDescriptionGeneric": "हमने आपके ईमेल पर पुष्टि लिंक भेजा है। साइन इन से पहले खाता सक्रिय करने के लिए इसे खोलें।",
|
"checkEmailDescriptionGeneric": "हमने आपके ईमेल पर पुष्टि लिंक भेजा है। साइन इन से पहले खाता सक्रिय करने के लिए इसे खोलें।",
|
||||||
@@ -99,13 +99,13 @@
|
|||||||
"darkMode": "डार्क मोड",
|
"darkMode": "डार्क मोड",
|
||||||
"dashboardPanelBody": "आपका सत्र समाप्त हो गया है। कृपया पुनः साइन इन करें।",
|
"dashboardPanelBody": "आपका सत्र समाप्त हो गया है। कृपया पुनः साइन इन करें।",
|
||||||
"documents": "दस्तावेज़",
|
"documents": "दस्तावेज़",
|
||||||
"insightsPanelBody": "आपके नोट्स का सिमेंटिक मानचित्र: विषय क्लस्टर, ब्रिज नोट्स और कनेक्शन सुझाव।",
|
"insightsPanelBody": "आपके नोट्स कैसे जुड़ते हैं, उसका नक्शा: नज़दीकी विषय, पुल नोट्स, और खोलने योग्य लिंक।",
|
||||||
"lightMode": "लाइट मोड",
|
"lightMode": "लाइट मोड",
|
||||||
"notebookEmpty": "खाली",
|
"notebookEmpty": "खाली",
|
||||||
"recentNote": "हाल ही में बनाई गई",
|
"recentNote": "हाल ही में बनाई गई",
|
||||||
"resizeNotebooksPanel": "नोटबुक पैनल का आकार बदलें",
|
"resizeNotebooksPanel": "नोटबुक पैनल का आकार बदलें",
|
||||||
"resizeSidebar": "साइडबार चौड़ाई बदलें",
|
"resizeSidebar": "साइडबार चौड़ाई बदलें",
|
||||||
"revisionPanelBody": "SM-2 एल्गोरिथम के साथ फ्लैशकार्ड की समीक्षा करें। डेक आपके नोट्स से बनाए जाते हैं।",
|
"revisionPanelBody": "फ्लैशकार्ड से दोहराएँ। अंतराल दोहराव उन्हें सही समय पर वापस लाता है। डेक आपके नोट्स से बनते हैं।",
|
||||||
"searchNotebooksPlaceholder": "नोटबुक खोजें…",
|
"searchNotebooksPlaceholder": "नोटबुक खोजें…",
|
||||||
"searchShortcut": "खोज (Ctrl+K)"
|
"searchShortcut": "खोज (Ctrl+K)"
|
||||||
},
|
},
|
||||||
@@ -991,7 +991,7 @@
|
|||||||
"dailyNotes": "दैनिक नोट्स",
|
"dailyNotes": "दैनिक नोट्स",
|
||||||
"dashboard": "डैशबोर्ड",
|
"dashboard": "डैशबोर्ड",
|
||||||
"graphView": "लिंक मानचित्र",
|
"graphView": "लिंक मानचित्र",
|
||||||
"insights": "सिमेंटिक विषय",
|
"insights": "कड़ियाँ",
|
||||||
"revision": "समीक्षा"
|
"revision": "समीक्षा"
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
@@ -2453,7 +2453,7 @@
|
|||||||
"slideStyle": "दृश्य शैली कोने की त्रिज्या, रिक्ति और सूचना घनत्व को प्रभावित करती है।"
|
"slideStyle": "दृश्य शैली कोने की त्रिज्या, रिक्ति और सूचना घनत्व को प्रभावित करती है।"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"intelligenceOS": "इंटेलिजेंस ओएस"
|
"intelligenceOS": "एजेंट"
|
||||||
},
|
},
|
||||||
"chat": {
|
"chat": {
|
||||||
"title": "AI चैट",
|
"title": "AI चैट",
|
||||||
|
|||||||
@@ -31,14 +31,14 @@
|
|||||||
"confirmPasswordPlaceholder": "Conferma la tua password",
|
"confirmPasswordPlaceholder": "Conferma la tua password",
|
||||||
"backToSite": "Indietro",
|
"backToSite": "Indietro",
|
||||||
"continueWithGoogle": "Continua con Google",
|
"continueWithGoogle": "Continua con Google",
|
||||||
"createYourSpace": "Crea il tuo spazio",
|
"createYourSpace": "Crea il tuo secondo cervello",
|
||||||
"createYourSpaceSubtitle": "Unisciti alla nuova era degli appunti intelligenti.",
|
"createYourSpaceSubtitle": "Si collega mentre scrivi — non è un'altra app di appunti.",
|
||||||
"forgot": "Dimenticato?",
|
"forgot": "Dimenticato?",
|
||||||
"oauthAccountNotLinked": "Questo account Google non corrisponde al tuo account esistente. Usa la stessa email o accedi con la tua password.",
|
"oauthAccountNotLinked": "Questo account Google non corrisponde al tuo account esistente. Usa la stessa email o accedi con la tua password.",
|
||||||
"privacyTerms": "© 2025 Memento Labs — Privacy · Termini",
|
"privacyTerms": "© 2025 Memento Labs — Privacy · Termini",
|
||||||
"sessionExpired": "Il tuo sito viene generato con navigazione e sommario",
|
"sessionExpired": "Il tuo sito viene generato con navigazione e sommario",
|
||||||
"welcomeBack": "Bentornato",
|
"welcomeBack": "Bentornato",
|
||||||
"welcomeBackSubtitle": "Inserisci le tue credenziali per accedere alle tue note.",
|
"welcomeBackSubtitle": "Accedi per ritrovare le tue note, i collegamenti e ciò che avevi dimenticato.",
|
||||||
"checkEmailTitle": "Controlla la tua e-mail",
|
"checkEmailTitle": "Controlla la tua e-mail",
|
||||||
"checkEmailDescription": "Abbiamo inviato un link di conferma a {email}. Aprilo per attivare l’account prima di accedere.",
|
"checkEmailDescription": "Abbiamo inviato un link di conferma a {email}. Aprilo per attivare l’account prima di accedere.",
|
||||||
"checkEmailDescriptionGeneric": "Abbiamo inviato un link di conferma alla tua e-mail. Aprilo per attivare l’account prima di accedere.",
|
"checkEmailDescriptionGeneric": "Abbiamo inviato un link di conferma alla tua e-mail. Aprilo per attivare l’account prima di accedere.",
|
||||||
@@ -99,13 +99,13 @@
|
|||||||
"darkMode": "Modalità scura",
|
"darkMode": "Modalità scura",
|
||||||
"dashboardPanelBody": "La tua sessione è scaduta. Effettua di nuovo l'accesso.",
|
"dashboardPanelBody": "La tua sessione è scaduta. Effettua di nuovo l'accesso.",
|
||||||
"documents": "Documenti",
|
"documents": "Documenti",
|
||||||
"insightsPanelBody": "Mappa semantica delle tue note: cluster tematici, note ponte e suggerimenti di connessione.",
|
"insightsPanelBody": "Una mappa di come si collegano le tue note: temi vicini, note ponte e link da aprire.",
|
||||||
"lightMode": "Modalità chiara",
|
"lightMode": "Modalità chiara",
|
||||||
"notebookEmpty": "Vuoto",
|
"notebookEmpty": "Vuoto",
|
||||||
"recentNote": "Create di recente",
|
"recentNote": "Create di recente",
|
||||||
"resizeNotebooksPanel": "Ridimensiona pannello quaderni",
|
"resizeNotebooksPanel": "Ridimensiona pannello quaderni",
|
||||||
"resizeSidebar": "Ridimensiona larghezza sidebar",
|
"resizeSidebar": "Ridimensiona larghezza sidebar",
|
||||||
"revisionPanelBody": "Rivedi flashcard con l'algoritmo SM-2. I mazzi sono generati dalle tue note.",
|
"revisionPanelBody": "Ripassa con le flashcard. La ripetizione dilazionata le riporta al momento giusto. I mazzi nascono dalle tue note.",
|
||||||
"searchNotebooksPlaceholder": "Cerca quaderni…",
|
"searchNotebooksPlaceholder": "Cerca quaderni…",
|
||||||
"searchShortcut": "Cerca (Ctrl+K)"
|
"searchShortcut": "Cerca (Ctrl+K)"
|
||||||
},
|
},
|
||||||
@@ -991,7 +991,7 @@
|
|||||||
"dailyNotes": "Note giornaliere",
|
"dailyNotes": "Note giornaliere",
|
||||||
"dashboard": "Dashboard",
|
"dashboard": "Dashboard",
|
||||||
"graphView": "Mappa link",
|
"graphView": "Mappa link",
|
||||||
"insights": "Temi semantici",
|
"insights": "Connessioni",
|
||||||
"revision": "Rivedi"
|
"revision": "Rivedi"
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
@@ -2453,7 +2453,7 @@
|
|||||||
"slideStyle": "Lo stile visivo influisce sul raggio dell'angolo, sulla spaziatura e sulla densità delle informazioni."
|
"slideStyle": "Lo stile visivo influisce sul raggio dell'angolo, sulla spaziatura e sulla densità delle informazioni."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"intelligenceOS": "Sistema operativo intelligente"
|
"intelligenceOS": "Agenti"
|
||||||
},
|
},
|
||||||
"chat": {
|
"chat": {
|
||||||
"title": "Chat IA",
|
"title": "Chat IA",
|
||||||
|
|||||||
@@ -31,14 +31,14 @@
|
|||||||
"confirmPasswordPlaceholder": "パスワードを再入力",
|
"confirmPasswordPlaceholder": "パスワードを再入力",
|
||||||
"backToSite": "戻す",
|
"backToSite": "戻す",
|
||||||
"continueWithGoogle": "Googleで続行",
|
"continueWithGoogle": "Googleで続行",
|
||||||
"createYourSpace": "スペースを作成",
|
"createYourSpace": "セカンドブレインを作る",
|
||||||
"createYourSpaceSubtitle": "スマートなノート取りの新時代へ。",
|
"createYourSpaceSubtitle": "書いている最中につながります。ただのノートアプリではありません。",
|
||||||
"forgot": "お忘れですか?",
|
"forgot": "お忘れですか?",
|
||||||
"oauthAccountNotLinked": "このGoogleアカウントは既存のアカウントと一致しません。同じメールアドレスを使用するか、パスワードでサインインしてください。",
|
"oauthAccountNotLinked": "このGoogleアカウントは既存のアカウントと一致しません。同じメールアドレスを使用するか、パスワードでサインインしてください。",
|
||||||
"privacyTerms": "© 2025 Memento Labs — プライバシー · 利用規約",
|
"privacyTerms": "© 2025 Memento Labs — プライバシー · 利用規約",
|
||||||
"sessionExpired": "サイトはナビゲーションと目次付きで生成されます",
|
"sessionExpired": "サイトはナビゲーションと目次付きで生成されます",
|
||||||
"welcomeBack": "おかえりなさい",
|
"welcomeBack": "おかえりなさい",
|
||||||
"welcomeBackSubtitle": "ノートにアクセスするには認証情報を入力してください。",
|
"welcomeBackSubtitle": "ノート、つながり、忘れていたことを取り戻すためにサインイン。",
|
||||||
"checkEmailTitle": "メールを確認してください",
|
"checkEmailTitle": "メールを確認してください",
|
||||||
"checkEmailDescription": "{email} に確認リンクを送信しました。ログイン前に開いてアカウントを有効化してください。",
|
"checkEmailDescription": "{email} に確認リンクを送信しました。ログイン前に開いてアカウントを有効化してください。",
|
||||||
"checkEmailDescriptionGeneric": "確認リンクをメールで送信しました。ログイン前に開いてアカウントを有効化してください。",
|
"checkEmailDescriptionGeneric": "確認リンクをメールで送信しました。ログイン前に開いてアカウントを有効化してください。",
|
||||||
@@ -99,13 +99,13 @@
|
|||||||
"darkMode": "ダークモード",
|
"darkMode": "ダークモード",
|
||||||
"dashboardPanelBody": "セッションが期限切れです。再度サインインしてください。",
|
"dashboardPanelBody": "セッションが期限切れです。再度サインインしてください。",
|
||||||
"documents": "ドキュメント",
|
"documents": "ドキュメント",
|
||||||
"insightsPanelBody": "ノートのセマンティックマップ:テーマクラスター、ブリッジノート、接続の提案。",
|
"insightsPanelBody": "ノートのつながりマップ:近いテーマ、橋渡しノート、開けるリンク。",
|
||||||
"lightMode": "ライトモード",
|
"lightMode": "ライトモード",
|
||||||
"notebookEmpty": "空",
|
"notebookEmpty": "空",
|
||||||
"recentNote": "最近作成",
|
"recentNote": "最近作成",
|
||||||
"resizeNotebooksPanel": "ノートブックパネルのサイズ変更",
|
"resizeNotebooksPanel": "ノートブックパネルのサイズ変更",
|
||||||
"resizeSidebar": "サイドバーの幅を変更",
|
"resizeSidebar": "サイドバーの幅を変更",
|
||||||
"revisionPanelBody": "SM-2アルゴリズムでフラッシュカードを復習。デッキはノートから生成されます。",
|
"revisionPanelBody": "フラッシュカードで復習。間隔をあけた反復が、ちょうどよい時に戻してくれます。デッキはノートから作られます。",
|
||||||
"searchNotebooksPlaceholder": "ノートブックを検索…",
|
"searchNotebooksPlaceholder": "ノートブックを検索…",
|
||||||
"searchShortcut": "検索 (Ctrl+K)"
|
"searchShortcut": "検索 (Ctrl+K)"
|
||||||
},
|
},
|
||||||
@@ -991,7 +991,7 @@
|
|||||||
"dailyNotes": "デイリーメモ",
|
"dailyNotes": "デイリーメモ",
|
||||||
"dashboard": "ダッシュボード",
|
"dashboard": "ダッシュボード",
|
||||||
"graphView": "リンクマップ",
|
"graphView": "リンクマップ",
|
||||||
"insights": "セマンティックテーマ",
|
"insights": "つながり",
|
||||||
"revision": "復習"
|
"revision": "復習"
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
@@ -2453,7 +2453,7 @@
|
|||||||
"slideStyle": "視覚的なスタイルは、角の半径、間隔、情報密度に影響します。"
|
"slideStyle": "視覚的なスタイルは、角の半径、間隔、情報密度に影響します。"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"intelligenceOS": "インテリジェンスOS"
|
"intelligenceOS": "エージェント"
|
||||||
},
|
},
|
||||||
"chat": {
|
"chat": {
|
||||||
"title": "AIチャット",
|
"title": "AIチャット",
|
||||||
|
|||||||
@@ -31,14 +31,14 @@
|
|||||||
"confirmPasswordPlaceholder": "비밀번호를 다시 입력하세요",
|
"confirmPasswordPlaceholder": "비밀번호를 다시 입력하세요",
|
||||||
"backToSite": "뒤로",
|
"backToSite": "뒤로",
|
||||||
"continueWithGoogle": "Google로 계속",
|
"continueWithGoogle": "Google로 계속",
|
||||||
"createYourSpace": "나의 공간 만들기",
|
"createYourSpace": "두 번째 뇌를 만들기",
|
||||||
"createYourSpaceSubtitle": "스마트 노트 작성의 새로운 시대에 참여하세요.",
|
"createYourSpaceSubtitle": "쓰는 동안 연결됩니다. 또 하나의 노트 앱이 아닙니다.",
|
||||||
"forgot": "잊으셨나요?",
|
"forgot": "잊으셨나요?",
|
||||||
"oauthAccountNotLinked": "이 Google 계정이 기존 계정과 일치하지 않습니다. 같은 이메일을 사용하거나 비밀번호로 로그인하세요.",
|
"oauthAccountNotLinked": "이 Google 계정이 기존 계정과 일치하지 않습니다. 같은 이메일을 사용하거나 비밀번호로 로그인하세요.",
|
||||||
"privacyTerms": "© 2025 Memento Labs — 개인정보 · 약관",
|
"privacyTerms": "© 2025 Memento Labs — 개인정보 · 약관",
|
||||||
"sessionExpired": "사이트가 탐색 및 목차와 함께 생성됩니다",
|
"sessionExpired": "사이트가 탐색 및 목차와 함께 생성됩니다",
|
||||||
"welcomeBack": "다시 오신 것을 환영합니다",
|
"welcomeBack": "다시 오신 것을 환영합니다",
|
||||||
"welcomeBackSubtitle": "노트에 액세스하려면 자격 증명을 입력하세요.",
|
"welcomeBackSubtitle": "노트와 연결, 그리고 잊었던 내용을 찾으려면 로그인하세요.",
|
||||||
"checkEmailTitle": "이메일을 확인하세요",
|
"checkEmailTitle": "이메일을 확인하세요",
|
||||||
"checkEmailDescription": "{email}(으)로 확인 링크를 보냈습니다. 로그인하기 전에 열어 계정을 활성화하세요.",
|
"checkEmailDescription": "{email}(으)로 확인 링크를 보냈습니다. 로그인하기 전에 열어 계정을 활성화하세요.",
|
||||||
"checkEmailDescriptionGeneric": "확인 링크를 이메일로 보냈습니다. 로그인하기 전에 열어 계정을 활성화하세요.",
|
"checkEmailDescriptionGeneric": "확인 링크를 이메일로 보냈습니다. 로그인하기 전에 열어 계정을 활성화하세요.",
|
||||||
@@ -99,13 +99,13 @@
|
|||||||
"darkMode": "다크 모드",
|
"darkMode": "다크 모드",
|
||||||
"dashboardPanelBody": "세션이 만료되었습니다. 다시 로그인해 주세요.",
|
"dashboardPanelBody": "세션이 만료되었습니다. 다시 로그인해 주세요.",
|
||||||
"documents": "문서",
|
"documents": "문서",
|
||||||
"insightsPanelBody": "노트의 시맨틱 지도: 테마 클러스터, 브리지 노트, 연결 제안.",
|
"insightsPanelBody": "노트가 어떻게 연결되는지 보여주는 지도: 가까운 주제, 다리 노트, 열 수 있는 링크.",
|
||||||
"lightMode": "라이트 모드",
|
"lightMode": "라이트 모드",
|
||||||
"notebookEmpty": "비어있음",
|
"notebookEmpty": "비어있음",
|
||||||
"recentNote": "최근 생성됨",
|
"recentNote": "최근 생성됨",
|
||||||
"resizeNotebooksPanel": "노트북 패널 크기 조정",
|
"resizeNotebooksPanel": "노트북 패널 크기 조정",
|
||||||
"resizeSidebar": "사이드바 너비 조정",
|
"resizeSidebar": "사이드바 너비 조정",
|
||||||
"revisionPanelBody": "SM-2 알고리즘으로 플래시카드를 복습하세요. 덱은 노트에서 생성됩니다.",
|
"revisionPanelBody": "플래시카드로 복습하세요. 간격 반복이 알맞은 때에 다시 보여 줍니다. 덱은 노트에서 만들어집니다.",
|
||||||
"searchNotebooksPlaceholder": "노트북 검색…",
|
"searchNotebooksPlaceholder": "노트북 검색…",
|
||||||
"searchShortcut": "검색 (Ctrl+K)"
|
"searchShortcut": "검색 (Ctrl+K)"
|
||||||
},
|
},
|
||||||
@@ -991,7 +991,7 @@
|
|||||||
"dailyNotes": "일일 노트",
|
"dailyNotes": "일일 노트",
|
||||||
"dashboard": "대시보드",
|
"dashboard": "대시보드",
|
||||||
"graphView": "링크 맵",
|
"graphView": "링크 맵",
|
||||||
"insights": "시맨틱 테마",
|
"insights": "연결",
|
||||||
"revision": "복습"
|
"revision": "복습"
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
@@ -2453,7 +2453,7 @@
|
|||||||
"slideStyle": "시각적 스타일은 모서리 반경, 간격 및 정보 밀도에 영향을 미칩니다."
|
"slideStyle": "시각적 스타일은 모서리 반경, 간격 및 정보 밀도에 영향을 미칩니다."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"intelligenceOS": "인텔리전스 OS"
|
"intelligenceOS": "에이전트"
|
||||||
},
|
},
|
||||||
"chat": {
|
"chat": {
|
||||||
"title": "AI 채팅",
|
"title": "AI 채팅",
|
||||||
|
|||||||
@@ -31,14 +31,14 @@
|
|||||||
"confirmPasswordPlaceholder": "Bevestig uw wachtwoord",
|
"confirmPasswordPlaceholder": "Bevestig uw wachtwoord",
|
||||||
"backToSite": "Terug",
|
"backToSite": "Terug",
|
||||||
"continueWithGoogle": "Doorgaan met Google",
|
"continueWithGoogle": "Doorgaan met Google",
|
||||||
"createYourSpace": "Maak je ruimte",
|
"createYourSpace": "Maak je tweede brein",
|
||||||
"createYourSpaceSubtitle": "Word deel van het nieuwe tijdperk van slim notities maken.",
|
"createYourSpaceSubtitle": "Het verbindt terwijl je schrijft — geen zoveelste notitie-app.",
|
||||||
"forgot": "Vergeten?",
|
"forgot": "Vergeten?",
|
||||||
"oauthAccountNotLinked": "Dit Google-account komt niet overeen met uw bestaande account. Gebruik hetzelfde e-mailadres of log in met uw wachtwoord.",
|
"oauthAccountNotLinked": "Dit Google-account komt niet overeen met uw bestaande account. Gebruik hetzelfde e-mailadres of log in met uw wachtwoord.",
|
||||||
"privacyTerms": "© 2025 Memento Labs — Privacy · Voorwaarden",
|
"privacyTerms": "© 2025 Memento Labs — Privacy · Voorwaarden",
|
||||||
"sessionExpired": "Uw site wordt gegenereerd met navigatie en inhoudsopgave",
|
"sessionExpired": "Uw site wordt gegenereerd met navigatie en inhoudsopgave",
|
||||||
"welcomeBack": "Welkom terug",
|
"welcomeBack": "Welkom terug",
|
||||||
"welcomeBackSubtitle": "Voer uw inloggegevens in om toegang te krijgen tot uw notities.",
|
"welcomeBackSubtitle": "Meld je aan om je notities, verbanden en wat je was vergeten terug te vinden.",
|
||||||
"checkEmailTitle": "Controleer je e-mail",
|
"checkEmailTitle": "Controleer je e-mail",
|
||||||
"checkEmailDescription": "We hebben een bevestigingslink naar {email} gestuurd. Open die om je account te activeren voordat je inlogt.",
|
"checkEmailDescription": "We hebben een bevestigingslink naar {email} gestuurd. Open die om je account te activeren voordat je inlogt.",
|
||||||
"checkEmailDescriptionGeneric": "We hebben een bevestigingslink naar je e-mail gestuurd. Open die om je account te activeren voordat je inlogt.",
|
"checkEmailDescriptionGeneric": "We hebben een bevestigingslink naar je e-mail gestuurd. Open die om je account te activeren voordat je inlogt.",
|
||||||
@@ -99,13 +99,13 @@
|
|||||||
"darkMode": "Donkere modus",
|
"darkMode": "Donkere modus",
|
||||||
"dashboardPanelBody": "Uw sessie is verlopen. Meld u opnieuw aan.",
|
"dashboardPanelBody": "Uw sessie is verlopen. Meld u opnieuw aan.",
|
||||||
"documents": "Documenten",
|
"documents": "Documenten",
|
||||||
"insightsPanelBody": "Semantische kaart van uw notities: thematische clusters, brugnotities en verbindingsuggesties.",
|
"insightsPanelBody": "Een kaart van hoe je notities samenhangen: verwante thema's, brugnotities en links om te openen.",
|
||||||
"lightMode": "Lichte modus",
|
"lightMode": "Lichte modus",
|
||||||
"notebookEmpty": "Leeg",
|
"notebookEmpty": "Leeg",
|
||||||
"recentNote": "Recent aangemaakt",
|
"recentNote": "Recent aangemaakt",
|
||||||
"resizeNotebooksPanel": "Notitieboekpaneel vergroten/verkleinen",
|
"resizeNotebooksPanel": "Notitieboekpaneel vergroten/verkleinen",
|
||||||
"resizeSidebar": "Zijbalkbreedte aanpassen",
|
"resizeSidebar": "Zijbalkbreedte aanpassen",
|
||||||
"revisionPanelBody": "Herhaal flashcards met het SM-2-algoritme. Decks worden gegenereerd uit uw notities.",
|
"revisionPanelBody": "Herhaal met flashcards. Gespreide herhaling brengt ze terug op het juiste moment. Decks komen uit je notities.",
|
||||||
"searchNotebooksPlaceholder": "Notitieboeken zoeken…",
|
"searchNotebooksPlaceholder": "Notitieboeken zoeken…",
|
||||||
"searchShortcut": "Zoeken (Ctrl+K)"
|
"searchShortcut": "Zoeken (Ctrl+K)"
|
||||||
},
|
},
|
||||||
@@ -991,7 +991,7 @@
|
|||||||
"dailyNotes": "Dagelijkse notities",
|
"dailyNotes": "Dagelijkse notities",
|
||||||
"dashboard": "Dashboard",
|
"dashboard": "Dashboard",
|
||||||
"graphView": "Linkkaart",
|
"graphView": "Linkkaart",
|
||||||
"insights": "Semantische thema's",
|
"insights": "Verbanden",
|
||||||
"revision": "Herhalen"
|
"revision": "Herhalen"
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
@@ -2453,7 +2453,7 @@
|
|||||||
"slideStyle": "De visuele stijl heeft invloed op de hoekradius, de afstand en de informatiedichtheid."
|
"slideStyle": "De visuele stijl heeft invloed op de hoekradius, de afstand en de informatiedichtheid."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"intelligenceOS": "Intelligent besturingssysteem"
|
"intelligenceOS": "Agenten"
|
||||||
},
|
},
|
||||||
"chat": {
|
"chat": {
|
||||||
"title": "AI-chat",
|
"title": "AI-chat",
|
||||||
|
|||||||
@@ -31,14 +31,14 @@
|
|||||||
"confirmPasswordPlaceholder": "Potwierdź swoje hasło",
|
"confirmPasswordPlaceholder": "Potwierdź swoje hasło",
|
||||||
"backToSite": "Wstecz",
|
"backToSite": "Wstecz",
|
||||||
"continueWithGoogle": "Kontynuuj z Google",
|
"continueWithGoogle": "Kontynuuj z Google",
|
||||||
"createYourSpace": "Utwórz swoją przestrzeń",
|
"createYourSpace": "Stwórz swój drugi mózg",
|
||||||
"createYourSpaceSubtitle": "Dołącz do nowej ery inteligentnego robienia notatek.",
|
"createYourSpaceSubtitle": "Łączy się, gdy piszesz — to nie kolejna aplikacja do notatek.",
|
||||||
"forgot": "Zapomniałeś?",
|
"forgot": "Zapomniałeś?",
|
||||||
"oauthAccountNotLinked": "To konto Google nie pasuje do Twojego istniejącego konta. Użyj tego samego emaila lub zaloguj się hasłem.",
|
"oauthAccountNotLinked": "To konto Google nie pasuje do Twojego istniejącego konta. Użyj tego samego emaila lub zaloguj się hasłem.",
|
||||||
"privacyTerms": "© 2025 Memento Labs — Prywatność · Warunki",
|
"privacyTerms": "© 2025 Memento Labs — Prywatność · Warunki",
|
||||||
"sessionExpired": "Twoja strona jest generowana z nawigacją i spisem treści",
|
"sessionExpired": "Twoja strona jest generowana z nawigacją i spisem treści",
|
||||||
"welcomeBack": "Witamy ponownie",
|
"welcomeBack": "Witamy ponownie",
|
||||||
"welcomeBackSubtitle": "Wprowadź swoje dane logowania, aby uzyskać dostęp do notatek.",
|
"welcomeBackSubtitle": "Zaloguj się, aby odnaleźć notatki, połączenia i to, o czym zapomniałeś.",
|
||||||
"checkEmailTitle": "Sprawdź e-mail",
|
"checkEmailTitle": "Sprawdź e-mail",
|
||||||
"checkEmailDescription": "Wysłaliśmy link potwierdzający na {email}. Otwórz go, aby aktywować konto przed logowaniem.",
|
"checkEmailDescription": "Wysłaliśmy link potwierdzający na {email}. Otwórz go, aby aktywować konto przed logowaniem.",
|
||||||
"checkEmailDescriptionGeneric": "Wysłaliśmy link potwierdzający na Twój e-mail. Otwórz go, aby aktywować konto przed logowaniem.",
|
"checkEmailDescriptionGeneric": "Wysłaliśmy link potwierdzający na Twój e-mail. Otwórz go, aby aktywować konto przed logowaniem.",
|
||||||
@@ -99,13 +99,13 @@
|
|||||||
"darkMode": "Tryb ciemny",
|
"darkMode": "Tryb ciemny",
|
||||||
"dashboardPanelBody": "Twoja sesja wygasła. Zaloguj się ponownie.",
|
"dashboardPanelBody": "Twoja sesja wygasła. Zaloguj się ponownie.",
|
||||||
"documents": "Dokumenty",
|
"documents": "Dokumenty",
|
||||||
"insightsPanelBody": "Mapa semantyczna Twoich notatek: klastry tematyczne, notatki pomostowe i sugestie powiązań.",
|
"insightsPanelBody": "Mapa powiązań Twoich notatek: bliskie tematy, notatki pomostowe i linki do otwarcia.",
|
||||||
"lightMode": "Jasny motyw",
|
"lightMode": "Jasny motyw",
|
||||||
"notebookEmpty": "Pusty",
|
"notebookEmpty": "Pusty",
|
||||||
"recentNote": "Ostatnio utworzone",
|
"recentNote": "Ostatnio utworzone",
|
||||||
"resizeNotebooksPanel": "Zmień rozmiar panelu notatników",
|
"resizeNotebooksPanel": "Zmień rozmiar panelu notatników",
|
||||||
"resizeSidebar": "Zmień szerokość paska bocznego",
|
"resizeSidebar": "Zmień szerokość paska bocznego",
|
||||||
"revisionPanelBody": "Powtarzaj fiszki algorytmem SM-2. Talie są generowane z Twoich notatek.",
|
"revisionPanelBody": "Powtarzaj fiszki. Powtórki w odstępach wracają we właściwym momencie. Talie powstają z Twoich notatek.",
|
||||||
"searchNotebooksPlaceholder": "Szukaj notatników…",
|
"searchNotebooksPlaceholder": "Szukaj notatników…",
|
||||||
"searchShortcut": "Szukaj (Ctrl+K)"
|
"searchShortcut": "Szukaj (Ctrl+K)"
|
||||||
},
|
},
|
||||||
@@ -991,7 +991,7 @@
|
|||||||
"dailyNotes": "Codzienne notatki",
|
"dailyNotes": "Codzienne notatki",
|
||||||
"dashboard": "Panel główny",
|
"dashboard": "Panel główny",
|
||||||
"graphView": "Mapa linków",
|
"graphView": "Mapa linków",
|
||||||
"insights": "Motywy semantyczne",
|
"insights": "Powiązania",
|
||||||
"revision": "Powtarzaj"
|
"revision": "Powtarzaj"
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
@@ -2453,7 +2453,7 @@
|
|||||||
"slideStyle": "Styl wizualny wpływa na promień narożnika, odstępy i gęstość informacji."
|
"slideStyle": "Styl wizualny wpływa na promień narożnika, odstępy i gęstość informacji."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"intelligenceOS": "System operacyjny inteligencji"
|
"intelligenceOS": "Agenci"
|
||||||
},
|
},
|
||||||
"chat": {
|
"chat": {
|
||||||
"title": "Czat AI",
|
"title": "Czat AI",
|
||||||
|
|||||||
@@ -31,14 +31,14 @@
|
|||||||
"confirmPasswordPlaceholder": "Confirme sua senha",
|
"confirmPasswordPlaceholder": "Confirme sua senha",
|
||||||
"backToSite": "Voltar",
|
"backToSite": "Voltar",
|
||||||
"continueWithGoogle": "Continuar com Google",
|
"continueWithGoogle": "Continuar com Google",
|
||||||
"createYourSpace": "Crie seu espaço",
|
"createYourSpace": "Crie seu segundo cérebro",
|
||||||
"createYourSpaceSubtitle": "Junte-se à nova era de anotações inteligentes.",
|
"createYourSpaceSubtitle": "Ele se conecta enquanto você escreve — não é mais um app de notas.",
|
||||||
"forgot": "Esqueceu?",
|
"forgot": "Esqueceu?",
|
||||||
"oauthAccountNotLinked": "Esta conta do Google não corresponde à sua conta existente. Use o mesmo e-mail ou entre com sua senha.",
|
"oauthAccountNotLinked": "Esta conta do Google não corresponde à sua conta existente. Use o mesmo e-mail ou entre com sua senha.",
|
||||||
"privacyTerms": "© 2025 Memento Labs — Privacidade · Termos",
|
"privacyTerms": "© 2025 Memento Labs — Privacidade · Termos",
|
||||||
"sessionExpired": "Seu site é gerado com navegação e sumário",
|
"sessionExpired": "Seu site é gerado com navegação e sumário",
|
||||||
"welcomeBack": "Bem-vindo de volta",
|
"welcomeBack": "Bem-vindo de volta",
|
||||||
"welcomeBackSubtitle": "Digite suas credenciais para acessar suas notas.",
|
"welcomeBackSubtitle": "Entre para reencontrar suas notas, conexões e o que você tinha esquecido.",
|
||||||
"checkEmailTitle": "Verifique o seu e-mail",
|
"checkEmailTitle": "Verifique o seu e-mail",
|
||||||
"checkEmailDescription": "Enviámos um link de confirmação para {email}. Abra-o para ativar a conta antes de entrar.",
|
"checkEmailDescription": "Enviámos um link de confirmação para {email}. Abra-o para ativar a conta antes de entrar.",
|
||||||
"checkEmailDescriptionGeneric": "Enviámos um link de confirmação para o seu e-mail. Abra-o para ativar a conta antes de entrar.",
|
"checkEmailDescriptionGeneric": "Enviámos um link de confirmação para o seu e-mail. Abra-o para ativar a conta antes de entrar.",
|
||||||
@@ -99,13 +99,13 @@
|
|||||||
"darkMode": "Modo escuro",
|
"darkMode": "Modo escuro",
|
||||||
"dashboardPanelBody": "Sua sessão expirou. Por favor, entre novamente.",
|
"dashboardPanelBody": "Sua sessão expirou. Por favor, entre novamente.",
|
||||||
"documents": "Documentos",
|
"documents": "Documentos",
|
||||||
"insightsPanelBody": "Mapa semântico de suas notas: clusters temáticos, notas-ponte e sugestões de conexão.",
|
"insightsPanelBody": "Um mapa de como suas notas se conectam: temas próximos, notas-ponte e links para abrir.",
|
||||||
"lightMode": "Modo claro",
|
"lightMode": "Modo claro",
|
||||||
"notebookEmpty": "Vazio",
|
"notebookEmpty": "Vazio",
|
||||||
"recentNote": "Criadas recentemente",
|
"recentNote": "Criadas recentemente",
|
||||||
"resizeNotebooksPanel": "Redimensionar painel de cadernos",
|
"resizeNotebooksPanel": "Redimensionar painel de cadernos",
|
||||||
"resizeSidebar": "Redimensionar largura da barra lateral",
|
"resizeSidebar": "Redimensionar largura da barra lateral",
|
||||||
"revisionPanelBody": "Revise flashcards com o algoritmo SM-2. Os baralhos são gerados a partir de suas notas.",
|
"revisionPanelBody": "Revise com flashcards. A repetição espaçada as traz de volta na hora certa. Os baralhos vêm das suas notas.",
|
||||||
"searchNotebooksPlaceholder": "Pesquisar cadernos…",
|
"searchNotebooksPlaceholder": "Pesquisar cadernos…",
|
||||||
"searchShortcut": "Pesquisar (Ctrl+K)"
|
"searchShortcut": "Pesquisar (Ctrl+K)"
|
||||||
},
|
},
|
||||||
@@ -991,7 +991,7 @@
|
|||||||
"dailyNotes": "Notas diárias",
|
"dailyNotes": "Notas diárias",
|
||||||
"dashboard": "Painel",
|
"dashboard": "Painel",
|
||||||
"graphView": "Mapa de links",
|
"graphView": "Mapa de links",
|
||||||
"insights": "Temas semânticos",
|
"insights": "Conexões",
|
||||||
"revision": "Revisar"
|
"revision": "Revisar"
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
@@ -2453,7 +2453,7 @@
|
|||||||
"slideStyle": "O estilo visual afeta o raio do canto, o espaçamento e a densidade da informação."
|
"slideStyle": "O estilo visual afeta o raio do canto, o espaçamento e a densidade da informação."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"intelligenceOS": "Sistema operacional inteligente"
|
"intelligenceOS": "Agentes"
|
||||||
},
|
},
|
||||||
"chat": {
|
"chat": {
|
||||||
"title": "Chat IA",
|
"title": "Chat IA",
|
||||||
|
|||||||
@@ -31,14 +31,14 @@
|
|||||||
"confirmPasswordPlaceholder": "Подтвердите пароль",
|
"confirmPasswordPlaceholder": "Подтвердите пароль",
|
||||||
"backToSite": "Назад",
|
"backToSite": "Назад",
|
||||||
"continueWithGoogle": "Продолжить с Google",
|
"continueWithGoogle": "Продолжить с Google",
|
||||||
"createYourSpace": "Создайте своё пространство",
|
"createYourSpace": "Создайте свой второй мозг",
|
||||||
"createYourSpaceSubtitle": "Присоединяйтесь к новой эре умных заметок.",
|
"createYourSpaceSubtitle": "Он связывается, пока вы пишете — не просто ещё одно приложение для заметок.",
|
||||||
"forgot": "Забыли?",
|
"forgot": "Забыли?",
|
||||||
"oauthAccountNotLinked": "Этот аккаунт Google не соответствует вашему существующему аккаунту. Используйте тот же email или войдите с паролем.",
|
"oauthAccountNotLinked": "Этот аккаунт Google не соответствует вашему существующему аккаунту. Используйте тот же email или войдите с паролем.",
|
||||||
"privacyTerms": "© 2025 Memento Labs — Конфиденциальность · Условия",
|
"privacyTerms": "© 2025 Memento Labs — Конфиденциальность · Условия",
|
||||||
"sessionExpired": "Ваш сайт создаётся с навигацией и оглавлением",
|
"sessionExpired": "Ваш сайт создаётся с навигацией и оглавлением",
|
||||||
"welcomeBack": "С возвращением",
|
"welcomeBack": "С возвращением",
|
||||||
"welcomeBackSubtitle": "Введите свои учётные данные для доступа к заметкам.",
|
"welcomeBackSubtitle": "Войдите, чтобы найти заметки, связи и то, что вы забыли.",
|
||||||
"checkEmailTitle": "Проверьте почту",
|
"checkEmailTitle": "Проверьте почту",
|
||||||
"checkEmailDescription": "Мы отправили ссылку подтверждения на {email}. Откройте её, чтобы активировать аккаунт перед входом.",
|
"checkEmailDescription": "Мы отправили ссылку подтверждения на {email}. Откройте её, чтобы активировать аккаунт перед входом.",
|
||||||
"checkEmailDescriptionGeneric": "Мы отправили ссылку подтверждения на вашу почту. Откройте её, чтобы активировать аккаунт перед входом.",
|
"checkEmailDescriptionGeneric": "Мы отправили ссылку подтверждения на вашу почту. Откройте её, чтобы активировать аккаунт перед входом.",
|
||||||
@@ -99,13 +99,13 @@
|
|||||||
"darkMode": "Тёмный режим",
|
"darkMode": "Тёмный режим",
|
||||||
"dashboardPanelBody": "Ваша сессия истекла. Пожалуйста, войдите снова.",
|
"dashboardPanelBody": "Ваша сессия истекла. Пожалуйста, войдите снова.",
|
||||||
"documents": "Документы",
|
"documents": "Документы",
|
||||||
"insightsPanelBody": "Семантическая карта ваших заметок: тематические кластеры, мостовые заметки и предложения связей.",
|
"insightsPanelBody": "Карта связей между заметками: близкие темы, заметки-мосты и ссылки, которые можно открыть.",
|
||||||
"lightMode": "Светлая тема",
|
"lightMode": "Светлая тема",
|
||||||
"notebookEmpty": "Пусто",
|
"notebookEmpty": "Пусто",
|
||||||
"recentNote": "Недавно созданные",
|
"recentNote": "Недавно созданные",
|
||||||
"resizeNotebooksPanel": "Изменить размер панели блокнотов",
|
"resizeNotebooksPanel": "Изменить размер панели блокнотов",
|
||||||
"resizeSidebar": "Изменить ширину боковой панели",
|
"resizeSidebar": "Изменить ширину боковой панели",
|
||||||
"revisionPanelBody": "Повторяйте карточки по алгоритму SM-2. Колоды создаются из ваших заметок.",
|
"revisionPanelBody": "Повторяйте с карточками. Интервальные повторения возвращают их в нужный момент. Колоды создаются из ваших заметок.",
|
||||||
"searchNotebooksPlaceholder": "Искать блокноты…",
|
"searchNotebooksPlaceholder": "Искать блокноты…",
|
||||||
"searchShortcut": "Поиск (Ctrl+K)"
|
"searchShortcut": "Поиск (Ctrl+K)"
|
||||||
},
|
},
|
||||||
@@ -991,7 +991,7 @@
|
|||||||
"dailyNotes": "Ежедневные заметки",
|
"dailyNotes": "Ежедневные заметки",
|
||||||
"dashboard": "Панель управления",
|
"dashboard": "Панель управления",
|
||||||
"graphView": "Карта ссылок",
|
"graphView": "Карта ссылок",
|
||||||
"insights": "Семантические темы",
|
"insights": "Связи",
|
||||||
"revision": "Повторять"
|
"revision": "Повторять"
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
@@ -2453,7 +2453,7 @@
|
|||||||
"slideStyle": "Визуальный стиль влияет на радиус угла, расстояние и плотность информации."
|
"slideStyle": "Визуальный стиль влияет на радиус угла, расстояние и плотность информации."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"intelligenceOS": "Интеллектуальная ОС"
|
"intelligenceOS": "Агенты"
|
||||||
},
|
},
|
||||||
"chat": {
|
"chat": {
|
||||||
"title": "ИИ-чат",
|
"title": "ИИ-чат",
|
||||||
|
|||||||
@@ -31,14 +31,14 @@
|
|||||||
"confirmPasswordPlaceholder": "再次输入密码",
|
"confirmPasswordPlaceholder": "再次输入密码",
|
||||||
"backToSite": "返回",
|
"backToSite": "返回",
|
||||||
"continueWithGoogle": "使用Google继续",
|
"continueWithGoogle": "使用Google继续",
|
||||||
"createYourSpace": "创建你的空间",
|
"createYourSpace": "创建你的第二大脑",
|
||||||
"createYourSpaceSubtitle": "加入智能笔记的新时代。",
|
"createYourSpaceSubtitle": "你一边写,它一边建立联系——不是又一个笔记应用。",
|
||||||
"forgot": "忘记?",
|
"forgot": "忘记?",
|
||||||
"oauthAccountNotLinked": "此 Google 帐号与您现有的帐号不匹配。请使用相同的邮箱或用密码登录。",
|
"oauthAccountNotLinked": "此 Google 帐号与您现有的帐号不匹配。请使用相同的邮箱或用密码登录。",
|
||||||
"privacyTerms": "© 2025 Memento Labs — 隐私 · 条款",
|
"privacyTerms": "© 2025 Memento Labs — 隐私 · 条款",
|
||||||
"sessionExpired": "您的网站将包含导航和目录地生成",
|
"sessionExpired": "您的网站将包含导航和目录地生成",
|
||||||
"welcomeBack": "欢迎回来",
|
"welcomeBack": "欢迎回来",
|
||||||
"welcomeBackSubtitle": "输入你的凭据以访问笔记。",
|
"welcomeBackSubtitle": "登录以找回你的笔记、关联,以及你已经忘记的内容。",
|
||||||
"checkEmailTitle": "请查收邮件",
|
"checkEmailTitle": "请查收邮件",
|
||||||
"checkEmailDescription": "我们已向 {email} 发送确认链接。请打开链接以激活账户后再登录。",
|
"checkEmailDescription": "我们已向 {email} 发送确认链接。请打开链接以激活账户后再登录。",
|
||||||
"checkEmailDescriptionGeneric": "我们已向您的邮箱发送确认链接。请打开链接以激活账户后再登录。",
|
"checkEmailDescriptionGeneric": "我们已向您的邮箱发送确认链接。请打开链接以激活账户后再登录。",
|
||||||
@@ -99,13 +99,13 @@
|
|||||||
"darkMode": "深色模式",
|
"darkMode": "深色模式",
|
||||||
"dashboardPanelBody": "您的会话已过期。请重新登录。",
|
"dashboardPanelBody": "您的会话已过期。请重新登录。",
|
||||||
"documents": "文档",
|
"documents": "文档",
|
||||||
"insightsPanelBody": "你笔记的语义地图:主题聚类、桥接笔记和连接建议。",
|
"insightsPanelBody": "笔记如何相连的地图:相近主题、桥接笔记,以及可以打开的链接。",
|
||||||
"lightMode": "亮色模式",
|
"lightMode": "亮色模式",
|
||||||
"notebookEmpty": "空",
|
"notebookEmpty": "空",
|
||||||
"recentNote": "最近创建",
|
"recentNote": "最近创建",
|
||||||
"resizeNotebooksPanel": "调整笔记本面板大小",
|
"resizeNotebooksPanel": "调整笔记本面板大小",
|
||||||
"resizeSidebar": "调整侧边栏宽度",
|
"resizeSidebar": "调整侧边栏宽度",
|
||||||
"revisionPanelBody": "使用 SM-2 算法复习闪卡。牌组从你的笔记中生成。",
|
"revisionPanelBody": "用闪卡复习。间隔重复会在合适的时候把它们带回。牌组来自你的笔记。",
|
||||||
"searchNotebooksPlaceholder": "搜索笔记本…",
|
"searchNotebooksPlaceholder": "搜索笔记本…",
|
||||||
"searchShortcut": "搜索 (Ctrl+K)"
|
"searchShortcut": "搜索 (Ctrl+K)"
|
||||||
},
|
},
|
||||||
@@ -991,7 +991,7 @@
|
|||||||
"dailyNotes": "每日笔记",
|
"dailyNotes": "每日笔记",
|
||||||
"dashboard": "仪表盘",
|
"dashboard": "仪表盘",
|
||||||
"graphView": "链接地图",
|
"graphView": "链接地图",
|
||||||
"insights": "语义主题",
|
"insights": "关联",
|
||||||
"revision": "复习"
|
"revision": "复习"
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
@@ -2453,7 +2453,7 @@
|
|||||||
"slideStyle": "视觉风格影响角半径、间距和信息密度。"
|
"slideStyle": "视觉风格影响角半径、间距和信息密度。"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"intelligenceOS": "智能操作系统"
|
"intelligenceOS": "智能体"
|
||||||
},
|
},
|
||||||
"chat": {
|
"chat": {
|
||||||
"title": "AI 聊天",
|
"title": "AI 聊天",
|
||||||
|
|||||||
Reference in New Issue
Block a user