mirror of
https://github.com/tiddly-gittly/TidGi-Desktop.git
synced 2025-12-15 15:10:31 -08:00
Chore/upgrade (#646)
* docs: deps * Update dependencies and type usage for AI features Upgraded multiple dependencies in package.json and pnpm-lock.yaml, including @ai-sdk, @mui, react, and others for improved compatibility and performance. Changed type usage from CoreMessage to ModelMessage in mockOpenAI.test.ts to align with updated ai package. No functional changes to application logic. * feat: i18n * feat: test oauth login and use PKCE * fix: use ollama-ai-provider-v2 * test: github and mock oauth2 login * test: gitea login * Refactor context menu cleanup and error message Moved context menu cleanup for OAuth window to a single closed event handler in Authentication service. Simplified error message formatting in ContextService for missing keys. * lint: AI fix * Add tsx as a dev dependency and update scripts Replaced usage of 'pnpm dlx tsx' with direct 'tsx' command in development and test scripts for improved reliability. Added 'tsx' to devDependencies in package.json.
This commit is contained in:
parent
19ef74a4a6
commit
b76fc17794
75 changed files with 5863 additions and 3733 deletions
|
|
@ -166,6 +166,7 @@
|
|||
"FailedToSaveSettings": "Failed to save settings",
|
||||
"FailedToUpdateModel": "Failed to update model",
|
||||
"FailedToUpdateProviderStatus": "Failed to update provider status",
|
||||
"Logout": "Logout",
|
||||
"MaxTokens": "Maximum generation length",
|
||||
"MaxTokensDescription": "The maximum number of characters (measured in tokens) that the model can generate in a single request.",
|
||||
"ModelAddedSuccessfully": "Model added successfully",
|
||||
|
|
@ -313,6 +314,18 @@
|
|||
"TopP": "Top P sampling parameter",
|
||||
"TopPTitle": "Top P"
|
||||
},
|
||||
"Plugin": {
|
||||
"Caption": "",
|
||||
"CaptionTitle": "",
|
||||
"Content": "",
|
||||
"ContentTitle": "",
|
||||
"ForbidOverrides": "",
|
||||
"ForbidOverridesTitle": "",
|
||||
"Id": "",
|
||||
"IdTitle": "",
|
||||
"PluginId": "",
|
||||
"PluginIdTitle": ""
|
||||
},
|
||||
"Position": {
|
||||
"Bottom": "Offset a few messages from the bottom",
|
||||
"BottomTitle": "bottom offset",
|
||||
|
|
@ -442,6 +455,7 @@
|
|||
"SourceTypeTitle": "source type",
|
||||
"Title": "Wiki Search",
|
||||
"Tool": {
|
||||
"Description": "",
|
||||
"Parameters": {
|
||||
"filter": {
|
||||
"Description": "TiddlyWiki Filter Expressions",
|
||||
|
|
@ -467,6 +481,27 @@
|
|||
"Description": "Workspace name or ID to search for",
|
||||
"Title": "Workspace Name"
|
||||
}
|
||||
},
|
||||
"UpdateEmbeddings": {
|
||||
"Description": "",
|
||||
"Parameters": {
|
||||
"forceUpdate": {
|
||||
"Description": "",
|
||||
"Title": ""
|
||||
},
|
||||
"workspaceName": {
|
||||
"Description": "",
|
||||
"Title": ""
|
||||
}
|
||||
},
|
||||
"forceUpdate": {
|
||||
"Description": "",
|
||||
"Title": ""
|
||||
},
|
||||
"workspaceName": {
|
||||
"Description": "",
|
||||
"Title": ""
|
||||
}
|
||||
}
|
||||
},
|
||||
"ToolListPosition": {
|
||||
|
|
@ -503,6 +538,18 @@
|
|||
}
|
||||
},
|
||||
"Tool": {
|
||||
"Plugin": {
|
||||
"Caption": "",
|
||||
"CaptionTitle": "",
|
||||
"Content": "",
|
||||
"ContentTitle": "",
|
||||
"ForbidOverrides": "",
|
||||
"ForbidOverridesTitle": "",
|
||||
"Id": "",
|
||||
"IdTitle": "",
|
||||
"PluginId": "",
|
||||
"PluginIdTitle": ""
|
||||
},
|
||||
"Schema": {
|
||||
"Description": "Description",
|
||||
"Examples": "Usage Examples",
|
||||
|
|
@ -524,6 +571,10 @@
|
|||
"WikiSearch": {
|
||||
"Error": {
|
||||
"ExecutionFailed": "Tool execution failed: {{error}}",
|
||||
"FilterSearchRequiresFilter": "",
|
||||
"VectorSearchFailed": "",
|
||||
"VectorSearchRequiresConfig": "",
|
||||
"VectorSearchRequiresQuery": "",
|
||||
"WorkspaceNotExist": "Workspace {{workspaceID}} does not exist",
|
||||
"WorkspaceNotFound": "Workspace with name or ID \"{{workspaceName}}\" does not exist. Available workspaces: {{availableWorkspaces}}"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -19,10 +19,19 @@
|
|||
"ExistedWikiLocation": "Existed Wiki Location",
|
||||
"ExtractedWikiFolderName": "Converted WIKI folder name",
|
||||
"GitDefaultBranchDescription": "The default branch of your Git, Github changed it from master to main after that event",
|
||||
"GitEmailDescription": "Email used for Git commit, and is used to count daily activities on Github and other online git services",
|
||||
"GitRepoUrl": "Git repo online url",
|
||||
"GitEmailDescription": "Email used for Git commit records, used for counting daily commits on services such as Github",
|
||||
"GitRepoUrl": "Git repository online address",
|
||||
"GitTokenDescription": "The credentials used to log in to Git. Will expire after a certain period of time",
|
||||
"GitUserNameDescription": "The account name used to log in to Git. Not the nickname",
|
||||
"GitUserNameDescription": "The account name used to log in to Git, note that it is the name part of your repository URL",
|
||||
"CustomServerUrl": "Custom Server URL",
|
||||
"CustomServerUrlDescription": "Base URL of the OAuth server (e.g., http://127.0.0.1:8888)",
|
||||
"CustomClientId": "Client ID",
|
||||
"CustomClientIdDescription": "OAuth application client ID",
|
||||
"GitToken": "Git Token",
|
||||
"GitUserName": "Git Username",
|
||||
"GitEmail": "Git Email",
|
||||
"GitBranch": "Git Branch",
|
||||
"GitBranchDescription": "Git branch to use (default: main)",
|
||||
"ImportWiki": "Import Wiki: ",
|
||||
"LocalWikiHtml": "path to html file",
|
||||
"LocalWorkspace": "Local Workspace",
|
||||
|
|
@ -234,6 +243,14 @@
|
|||
"Tags": {
|
||||
}
|
||||
},
|
||||
"KeyboardShortcut": {
|
||||
"Clear": "",
|
||||
"HelpText": "",
|
||||
"None": "",
|
||||
"PressKeys": "",
|
||||
"PressKeysPrompt": "",
|
||||
"RegisterShortcut": ""
|
||||
},
|
||||
"LOG": {
|
||||
"CommitBackupMessage": "Backup with TidGi-Desktop\t",
|
||||
"CommitMessage": "Sync with TidGi-Desktop"
|
||||
|
|
@ -309,6 +326,7 @@
|
|||
"SelectNextWorkspace": "Select Next Workspace",
|
||||
"SelectPreviousWorkspace": "Select Previous Workspace",
|
||||
"TidGi": "TidGi",
|
||||
"TidGiMenuBar": "",
|
||||
"TidGiMiniWindow": "TidGi Mini Window",
|
||||
"View": "View",
|
||||
"Wiki": "Wiki",
|
||||
|
|
@ -324,10 +342,10 @@
|
|||
"AlwaysOnTopDetail": "Keep TidGi’s main window always on top of other windows, and will not be covered by other windows",
|
||||
"AntiAntiLeech": "Some website has Anti-Leech, will prevent some images from being displayed on your wiki, we simulate a request header that looks like visiting that website to bypass this protection.",
|
||||
"AskDownloadLocation": "Ask where to save each file before downloading",
|
||||
"TidgiMiniWindow": "Attach to TidGi mini window",
|
||||
"TidgiMiniWindowShowSidebar": "Attach To TidGi Mini Window Show Sidebar",
|
||||
"TidgiMiniWindowShowSidebarTip": "Generally, TidGi mini window is only used to quickly view the current workspace, so the default synchronization with the main window workspace, do not need a sidebar, the default hidden sidebar.",
|
||||
"TidgiMiniWindowTip": "Make a small TidGi popup window that pop when you click system tray mini icon. Tip: Right-click on mini app icon to access context menu.",
|
||||
"AttachToMenuBar": "",
|
||||
"AttachToMenuBarShowSidebar": "",
|
||||
"AttachToMenuBarShowSidebarTip": "",
|
||||
"AttachToMenuBarTip": "",
|
||||
"AttachToTaskbar": "Attach to taskbar",
|
||||
"AttachToTaskbarShowSidebar": "Attach To Taskbar Show Sidebar",
|
||||
"ChooseLanguage": "Choose Language 选择语言",
|
||||
|
|
@ -355,6 +373,8 @@
|
|||
"HideMenuBarDetail": "Hide the menu bar unless the Alt+M is pressed.",
|
||||
"HideSideBar": "Hide SideBar",
|
||||
"HideSideBarIconDetail": "Hide the icon and only display the name of the workspace to make the workspace list more compact",
|
||||
"HideTidgiMiniWindow": "",
|
||||
"HideTidgiMiniWindowDetail": "",
|
||||
"HideTitleBar": "Hide Title Bar",
|
||||
"HowToEnableNotifications": "<0>TidGi supports notifications out of the box. But for some cases, to receive notifications, you will need to manually configure additional web app settings.</0><1>Learn more</1><2>.</2>",
|
||||
"IgnoreCertificateErrors": "Ignore network certificate errors",
|
||||
|
|
@ -362,16 +382,7 @@
|
|||
"ItIsWorking": "It is working!",
|
||||
"Languages": "Lang/语言",
|
||||
"LightTheme": "Light Theme",
|
||||
"TidgiMiniWindowAlwaysOnTop": "TidGi Mini Window Always on top",
|
||||
"TidgiMiniWindowAlwaysOnTopDetail": "Keep TidGi's Mini Window always on top of other windows, and will not be covered by other windows",
|
||||
"TidgiMiniWindowFixedWorkspace": "Select workspace for fixed TidGi Mini Window",
|
||||
"TidgiMiniWindowShortcutKey": "Set shortcut key to toggle TidGi Mini Window",
|
||||
"TidgiMiniWindowShortcutKeyHelperText": "Set a shortcut key to quickly open or close TidGi Mini Window",
|
||||
"TidgiMiniWindowShortcutKeyPlaceholder": "e.g.: Ctrl+Shift+D",
|
||||
"TidgiMiniWindowSyncWorkspaceWithMainWindow": "TidGi Mini Window syncs with main window workspace",
|
||||
"TidgiMiniWindowSyncWorkspaceWithMainWindowDetail": "When checked, TidGi Mini Window will display the same workspace content as main window",
|
||||
"TidgiMiniWindowShowTitleBar": "Show title bar on TidGi Mini Window",
|
||||
"TidgiMiniWindowShowTitleBarDetail": "Show draggable title bar on TidGi Mini Window",
|
||||
"Logout": "Logout",
|
||||
"Miscellaneous": "Miscellaneous",
|
||||
"MoreWorkspaceSyncSettings": "More Workspace Sync Settings",
|
||||
"MoreWorkspaceSyncSettingsDescription": "Please right-click the workspace icon, open its workspace setting by click on \"Edit Workspace\" context menu item, and configure its independent synchronization settings in it.",
|
||||
|
|
@ -413,6 +424,7 @@
|
|||
"SearchEmbeddingStatusIdle": "No embeddings generated",
|
||||
"SearchEmbeddingUpdate": "Update Embeddings",
|
||||
"SearchNoWorkspaces": "No workspaces found",
|
||||
"SelectWorkspace": "",
|
||||
"ShareBrowsingData": "Share browsing data (cookies, cache) between workspaces, if this is off, you can login into different 3rd party service in each workspace.",
|
||||
"ShowSideBar": "Show SideBar",
|
||||
"ShowSideBarDetail": "Sidebar lets you switch easily between workspaces.",
|
||||
|
|
@ -438,6 +450,21 @@
|
|||
"TestNotificationDescription": "<0>If notifications dont show up, make sure you enable notifications in<1>macOS Preferences → Notifications → TidGi</1>.</0>",
|
||||
"Theme": "Theme",
|
||||
"TiddlyWiki": "TiddlyWiki",
|
||||
"TidgiMiniWindow": "Attach to TidGi mini window",
|
||||
"TidgiMiniWindowAlwaysOnTop": "TidGi Mini Window Always on top",
|
||||
"TidgiMiniWindowAlwaysOnTopDetail": "Keep TidGi's Mini Window always on top of other windows, and will not be covered by other windows",
|
||||
"TidgiMiniWindowFixedWorkspace": "Select workspace for fixed TidGi Mini Window",
|
||||
"TidgiMiniWindowShortcutKey": "Set shortcut key to toggle TidGi Mini Window",
|
||||
"TidgiMiniWindowShortcutKeyHelperText": "Set a shortcut key to quickly open or close TidGi Mini Window",
|
||||
"TidgiMiniWindowShortcutKeyPlaceholder": "e.g.: Ctrl+Shift+D",
|
||||
"TidgiMiniWindowShowSidebar": "Attach To TidGi Mini Window Show Sidebar",
|
||||
"TidgiMiniWindowShowSidebarTip": "Generally, TidGi mini window is only used to quickly view the current workspace, so the default synchronization with the main window workspace, do not need a sidebar, the default hidden sidebar.",
|
||||
"TidgiMiniWindowShowTitleBar": "Show title bar on TidGi Mini Window",
|
||||
"TidgiMiniWindowShowTitleBarDetail": "Show draggable title bar on TidGi Mini Window",
|
||||
"TidgiMiniWindowSyncWorkspaceWithMainWindow": "TidGi Mini Window syncs with main window workspace",
|
||||
"TidgiMiniWindowSyncWorkspaceWithMainWindowDetail": "When checked, TidGi Mini Window will display the same workspace content as main window",
|
||||
"TidgiMiniWindowTip": "Make a small TidGi popup window that pop when you click system tray mini icon. Tip: Right-click on mini app icon to access context menu.",
|
||||
"ToggleMenuBar": "",
|
||||
"ToggleTidgiMiniWindow": "Toggle TidGi Mini Window",
|
||||
"Token": "Git credentials",
|
||||
"TokenDescription": "The credentials used to authenticate to the Git server so you can securely synchronize content. Can be obtained by logging in to storage services (e.g., Github), or manually obtain \"personal access token\" and filled in here.",
|
||||
|
|
|
|||
|
|
@ -325,6 +325,18 @@
|
|||
"TopP": "Paramètre d'échantillonnage Top P",
|
||||
"TopPTitle": "Top P"
|
||||
},
|
||||
"Plugin": {
|
||||
"Caption": "",
|
||||
"CaptionTitle": "",
|
||||
"Content": "",
|
||||
"ContentTitle": "",
|
||||
"ForbidOverrides": "",
|
||||
"ForbidOverridesTitle": "",
|
||||
"Id": "",
|
||||
"IdTitle": "",
|
||||
"PluginId": "",
|
||||
"PluginIdTitle": ""
|
||||
},
|
||||
"Position": {
|
||||
"Bottom": "Décaler quelques messages depuis le bas",
|
||||
"BottomTitle": "décalage du bas",
|
||||
|
|
@ -454,6 +466,7 @@
|
|||
"SourceTypeTitle": "type source",
|
||||
"Title": "Recherche Wiki",
|
||||
"Tool": {
|
||||
"Description": "",
|
||||
"Parameters": {
|
||||
"filter": {
|
||||
"Description": "Expression de filtre TiddlyWiki",
|
||||
|
|
@ -479,6 +492,27 @@
|
|||
"Description": "Nom ou ID de l'espace de travail à rechercher",
|
||||
"Title": "Nom de l'espace de travail"
|
||||
}
|
||||
},
|
||||
"UpdateEmbeddings": {
|
||||
"Description": "",
|
||||
"Parameters": {
|
||||
"forceUpdate": {
|
||||
"Description": "",
|
||||
"Title": ""
|
||||
},
|
||||
"workspaceName": {
|
||||
"Description": "",
|
||||
"Title": ""
|
||||
}
|
||||
},
|
||||
"forceUpdate": {
|
||||
"Description": "",
|
||||
"Title": ""
|
||||
},
|
||||
"workspaceName": {
|
||||
"Description": "",
|
||||
"Title": ""
|
||||
}
|
||||
}
|
||||
},
|
||||
"ToolListPosition": {
|
||||
|
|
@ -515,6 +549,18 @@
|
|||
}
|
||||
},
|
||||
"Tool": {
|
||||
"Plugin": {
|
||||
"Caption": "",
|
||||
"CaptionTitle": "",
|
||||
"Content": "",
|
||||
"ContentTitle": "",
|
||||
"ForbidOverrides": "",
|
||||
"ForbidOverridesTitle": "",
|
||||
"Id": "",
|
||||
"IdTitle": "",
|
||||
"PluginId": "",
|
||||
"PluginIdTitle": ""
|
||||
},
|
||||
"Schema": {
|
||||
"Description": "décrire",
|
||||
"Examples": "Exemple d'utilisation",
|
||||
|
|
@ -536,6 +582,10 @@
|
|||
"WikiSearch": {
|
||||
"Error": {
|
||||
"ExecutionFailed": "Exécution de l'outil échouée : {{error}}",
|
||||
"FilterSearchRequiresFilter": "",
|
||||
"VectorSearchFailed": "",
|
||||
"VectorSearchRequiresConfig": "",
|
||||
"VectorSearchRequiresQuery": "",
|
||||
"WorkspaceNotExist": "L'espace de travail {{workspaceID}} n'existe pas",
|
||||
"WorkspaceNotFound": "Le nom ou l'ID de l'espace de travail \"{{workspaceName}}\" n'existe pas. Espaces de travail disponibles : {{availableWorkspaces}}"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -234,6 +234,14 @@
|
|||
"Tags": {
|
||||
}
|
||||
},
|
||||
"KeyboardShortcut": {
|
||||
"Clear": "",
|
||||
"HelpText": "",
|
||||
"None": "",
|
||||
"PressKeys": "",
|
||||
"PressKeysPrompt": "",
|
||||
"RegisterShortcut": ""
|
||||
},
|
||||
"LOG": {
|
||||
"CommitBackupMessage": "Sauvegarde avec TidGi-Desktop\t",
|
||||
"CommitMessage": "Synchroniser avec TidGi-Desktop"
|
||||
|
|
@ -309,6 +317,7 @@
|
|||
"SelectNextWorkspace": "Sélectionner l'espace de travail suivant",
|
||||
"SelectPreviousWorkspace": "Sélectionner l'espace de travail précédent",
|
||||
"TidGi": "TidGi",
|
||||
"TidGiMenuBar": "",
|
||||
"TidGiMiniWindow": "Mini-fenêtre TidGi",
|
||||
"View": "Vue",
|
||||
"Wiki": "Wiki",
|
||||
|
|
@ -324,10 +333,10 @@
|
|||
"AlwaysOnTopDetail": "Garder la fenêtre principale de TidGi toujours au-dessus des autres fenêtres, et ne sera pas couverte par d'autres fenêtres",
|
||||
"AntiAntiLeech": "Certains sites web ont une protection anti-leech, empêchant certaines images d'être affichées sur votre wiki, nous simulons un en-tête de requête qui ressemble à la visite de ce site web pour contourner cette protection.",
|
||||
"AskDownloadLocation": "Demander où enregistrer chaque fichier avant de télécharger",
|
||||
"TidgiMiniWindow": "Attacher à la mini-fenêtre TidGi",
|
||||
"TidgiMiniWindowShowSidebar": "Attacher à la mini-fenêtre TidGi Afficher la barre latérale",
|
||||
"TidgiMiniWindowShowSidebarTip": "En général, la petite fenêtre TidGi est uniquement utilisée pour visualiser rapidement l'espace de travail actuel, donc la synchronisation avec l'espace de travail de la fenêtre principale n'est pas nécessaire, la barre latérale est masquée par défaut.",
|
||||
"TidgiMiniWindowTip": "Créer une petite fenêtre contextuelle TidGi qui apparaît lorsque vous cliquez sur l'icône mini de la barre d'application. Astuce : Cliquez avec le bouton droit sur l'icône mini de l'application pour accéder au menu contextuel.",
|
||||
"AttachToMenuBar": "",
|
||||
"AttachToMenuBarShowSidebar": "",
|
||||
"AttachToMenuBarShowSidebarTip": "",
|
||||
"AttachToMenuBarTip": "",
|
||||
"AttachToTaskbar": "Attacher à la barre des tâches",
|
||||
"AttachToTaskbarShowSidebar": "Attacher à la barre des tâches Afficher la barre latérale",
|
||||
"ChooseLanguage": "Choisir la langue 选择语言",
|
||||
|
|
@ -349,10 +358,12 @@
|
|||
"General": "UI & Interact",
|
||||
"HibernateAllUnusedWorkspaces": "Mettre en veille les espaces de travail inutilisés au lancement de l'application",
|
||||
"HibernateAllUnusedWorkspacesDescription": "Mettre en veille tous les espaces de travail au lancement, sauf le dernier espace de travail actif.",
|
||||
"HideTidgiMiniWindow": "Masquer la mini-fenêtre TidGi",
|
||||
"HideTidgiMiniWindowDetail": "Masquer la mini-fenêtre TidGi sauf si Alt+M est pressé.",
|
||||
"HideMenuBar": "",
|
||||
"HideMenuBarDetail": "",
|
||||
"HideSideBar": "Masquer la barre latérale",
|
||||
"HideSideBarIconDetail": "Masquer l'icône et n'afficher que le nom de l'espace de travail pour rendre la liste des espaces de travail plus compacte",
|
||||
"HideTidgiMiniWindow": "Masquer la mini-fenêtre TidGi",
|
||||
"HideTidgiMiniWindowDetail": "Masquer la mini-fenêtre TidGi sauf si Alt+M est pressé.",
|
||||
"HideTitleBar": "Masquer la barre de titre",
|
||||
"HowToEnableNotifications": "<0>TidGi prend en charge les notifications dès la sortie de la boîte. Mais dans certains cas, pour recevoir des notifications, vous devrez configurer manuellement des paramètres supplémentaires de l'application web.</0><1>En savoir plus</1><2>.</2>",
|
||||
"IgnoreCertificateErrors": "Ignorer les erreurs de certificat réseau",
|
||||
|
|
@ -360,8 +371,7 @@
|
|||
"ItIsWorking": "Ça fonctionne !",
|
||||
"Languages": "Lang/语言",
|
||||
"LightTheme": "Thème clair",
|
||||
"TidgiMiniWindowAlwaysOnTop": "TidGi Mini Window toujours au-dessus",
|
||||
"TidgiMiniWindowAlwaysOnTopDetail": "Garder la Mini Window de TidGi toujours au-dessus des autres fenêtres, et ne sera pas couverte par d'autres fenêtres",
|
||||
"Logout": "Déconnexion",
|
||||
"Miscellaneous": "Divers",
|
||||
"MoreWorkspaceSyncSettings": "Plus de paramètres de synchronisation de l'espace de travail",
|
||||
"MoreWorkspaceSyncSettingsDescription": "Veuillez cliquer avec le bouton droit sur l'icône de l'espace de travail, ouvrir ses paramètres d'espace de travail en cliquant sur l'élément de menu contextuel \"Modifier l'espace de travail\", et configurer ses paramètres de synchronisation indépendants.",
|
||||
|
|
@ -389,6 +399,7 @@
|
|||
"RunOnBackground": "Exécuter en arrière-plan",
|
||||
"RunOnBackgroundDetail": "Lorsque la fenêtre est fermée, continuer à s'exécuter en arrière-plan sans quitter. Restaurer rapidement la fenêtre lors de la réouverture de l'application.",
|
||||
"RunOnBackgroundDetailNotMac": "Recommandé d'activer Attacher à la barre des tâches. Vous pouvez ainsi restaurer la fenêtre en l'utilisant.",
|
||||
"SelectWorkspace": "",
|
||||
"ShareBrowsingData": "Partager les données de navigation (cookies, cache) entre les espaces de travail, si cette option est désactivée, vous pouvez vous connecter à différents services tiers dans chaque espace de travail.",
|
||||
"ShowSideBar": "Afficher la barre latérale",
|
||||
"ShowSideBarDetail": "La barre latérale vous permet de basculer facilement entre les espaces de travail.",
|
||||
|
|
@ -414,6 +425,21 @@
|
|||
"TestNotificationDescription": "<0>Si les notifications ne s'affichent pas, assurez-vous d'activer les notifications dans<1>Préférences macOS → Notifications → TidGi</1>.</0>",
|
||||
"Theme": "Thème",
|
||||
"TiddlyWiki": "TiddlyWiki",
|
||||
"TidgiMiniWindow": "Attacher à la mini-fenêtre TidGi",
|
||||
"TidgiMiniWindowAlwaysOnTop": "TidGi Mini Window toujours au-dessus",
|
||||
"TidgiMiniWindowAlwaysOnTopDetail": "Garder la Mini Window de TidGi toujours au-dessus des autres fenêtres, et ne sera pas couverte par d'autres fenêtres",
|
||||
"TidgiMiniWindowFixedWorkspace": "",
|
||||
"TidgiMiniWindowShortcutKey": "",
|
||||
"TidgiMiniWindowShortcutKeyHelperText": "",
|
||||
"TidgiMiniWindowShortcutKeyPlaceholder": "",
|
||||
"TidgiMiniWindowShowSidebar": "Attacher à la mini-fenêtre TidGi Afficher la barre latérale",
|
||||
"TidgiMiniWindowShowSidebarTip": "En général, la petite fenêtre TidGi est uniquement utilisée pour visualiser rapidement l'espace de travail actuel, donc la synchronisation avec l'espace de travail de la fenêtre principale n'est pas nécessaire, la barre latérale est masquée par défaut.",
|
||||
"TidgiMiniWindowShowTitleBar": "",
|
||||
"TidgiMiniWindowShowTitleBarDetail": "",
|
||||
"TidgiMiniWindowSyncWorkspaceWithMainWindow": "",
|
||||
"TidgiMiniWindowSyncWorkspaceWithMainWindowDetail": "",
|
||||
"TidgiMiniWindowTip": "Créer une petite fenêtre contextuelle TidGi qui apparaît lorsque vous cliquez sur l'icône mini de la barre d'application. Astuce : Cliquez avec le bouton droit sur l'icône mini de l'application pour accéder au menu contextuel.",
|
||||
"ToggleMenuBar": "",
|
||||
"ToggleTidgiMiniWindow": "Basculer la mini-fenêtre TidGi",
|
||||
"Token": "Informations d'identification Git",
|
||||
"TokenDescription": "Les informations d'identification utilisées pour s'authentifier auprès du serveur Git afin de pouvoir synchroniser le contenu en toute sécurité. Peut être obtenu en se connectant à des services de stockage (par exemple, Github), ou en obtenant manuellement un \"jeton d'accès personnel\" et en le remplissant ici.",
|
||||
|
|
|
|||
|
|
@ -326,6 +326,18 @@
|
|||
"TopP": "Top P サンプリングパラメータ",
|
||||
"TopPTitle": "トップP"
|
||||
},
|
||||
"Plugin": {
|
||||
"Caption": "",
|
||||
"CaptionTitle": "",
|
||||
"Content": "",
|
||||
"ContentTitle": "",
|
||||
"ForbidOverrides": "",
|
||||
"ForbidOverridesTitle": "",
|
||||
"Id": "",
|
||||
"IdTitle": "",
|
||||
"PluginId": "",
|
||||
"PluginIdTitle": ""
|
||||
},
|
||||
"Position": {
|
||||
"Bottom": "下部から数件のメッセージをオフセット",
|
||||
"BottomTitle": "底部オフセット",
|
||||
|
|
@ -455,6 +467,7 @@
|
|||
"SourceTypeTitle": "ソースタイプ",
|
||||
"Title": "Wiki 検索",
|
||||
"Tool": {
|
||||
"Description": "",
|
||||
"Parameters": {
|
||||
"filter": {
|
||||
"Description": "TiddlyWiki フィルター式",
|
||||
|
|
@ -480,6 +493,27 @@
|
|||
"Description": "検索するワークスペース名またはID",
|
||||
"Title": "ワークスペース名"
|
||||
}
|
||||
},
|
||||
"UpdateEmbeddings": {
|
||||
"Description": "",
|
||||
"Parameters": {
|
||||
"forceUpdate": {
|
||||
"Description": "",
|
||||
"Title": ""
|
||||
},
|
||||
"workspaceName": {
|
||||
"Description": "",
|
||||
"Title": ""
|
||||
}
|
||||
},
|
||||
"forceUpdate": {
|
||||
"Description": "",
|
||||
"Title": ""
|
||||
},
|
||||
"workspaceName": {
|
||||
"Description": "",
|
||||
"Title": ""
|
||||
}
|
||||
}
|
||||
},
|
||||
"ToolListPosition": {
|
||||
|
|
@ -516,6 +550,18 @@
|
|||
}
|
||||
},
|
||||
"Tool": {
|
||||
"Plugin": {
|
||||
"Caption": "",
|
||||
"CaptionTitle": "",
|
||||
"Content": "",
|
||||
"ContentTitle": "",
|
||||
"ForbidOverrides": "",
|
||||
"ForbidOverridesTitle": "",
|
||||
"Id": "",
|
||||
"IdTitle": "",
|
||||
"PluginId": "",
|
||||
"PluginIdTitle": ""
|
||||
},
|
||||
"Schema": {
|
||||
"Description": "説明",
|
||||
"Examples": "使用例",
|
||||
|
|
@ -537,6 +583,10 @@
|
|||
"WikiSearch": {
|
||||
"Error": {
|
||||
"ExecutionFailed": "ツールの実行に失敗しました:{{error}}",
|
||||
"FilterSearchRequiresFilter": "",
|
||||
"VectorSearchFailed": "",
|
||||
"VectorSearchRequiresConfig": "",
|
||||
"VectorSearchRequiresQuery": "",
|
||||
"WorkspaceNotExist": "ワークスペース{{workspaceID}}は存在しません",
|
||||
"WorkspaceNotFound": "ワークスペース名またはID「{{workspaceName}}」は存在しません。利用可能なワークスペース:{{availableWorkspaces}}"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -234,6 +234,14 @@
|
|||
"Tags": {
|
||||
}
|
||||
},
|
||||
"KeyboardShortcut": {
|
||||
"Clear": "",
|
||||
"HelpText": "",
|
||||
"None": "",
|
||||
"PressKeys": "",
|
||||
"PressKeysPrompt": "",
|
||||
"RegisterShortcut": ""
|
||||
},
|
||||
"LOG": {
|
||||
"CommitBackupMessage": "太記デスクトップ版を使用してバックアップ",
|
||||
"CommitMessage": "太記デスクトップ版を使用して同期する"
|
||||
|
|
@ -310,6 +318,7 @@
|
|||
"SelectPreviousWorkspace": "前のワークスペースを選択",
|
||||
"TidGi": "TidGi",
|
||||
"TidGiMenuBar": "TidGiメニューバー",
|
||||
"TidGiMiniWindow": "",
|
||||
"View": "表示",
|
||||
"Wiki": "Wiki",
|
||||
"Window": "ウィンドウ",
|
||||
|
|
@ -352,6 +361,8 @@
|
|||
"HideMenuBarDetail": "Alt + M を押すと、非表示になっているメニューバーが表示されます。",
|
||||
"HideSideBar": "サイドバーを隠す",
|
||||
"HideSideBarIconDetail": "アイコンを非表示にしてワークスペース名のみを表示し、ワークスペースリストをよりコンパクトにします",
|
||||
"HideTidgiMiniWindow": "",
|
||||
"HideTidgiMiniWindowDetail": "",
|
||||
"HideTitleBar": "タイトルバーを隠す",
|
||||
"HowToEnableNotifications": "<0>TidGiはネイティブ通知機能をサポートしています。ただし、場合によっては通知を受け取るために、Webアプリの設定を手動で構成する必要があります。</0><1>詳細を見る</1><2>。</2>",
|
||||
"IgnoreCertificateErrors": "ネットワーク証明書エラーを無視する",
|
||||
|
|
@ -359,8 +370,7 @@
|
|||
"ItIsWorking": "使いやすい!",
|
||||
"Languages": "言語/ランゲージ",
|
||||
"LightTheme": "明るい色のテーマ",
|
||||
"TidgiMiniWindowAlwaysOnTop": "太記小ウィンドウを他のウィンドウの上に保持する",
|
||||
"TidgiMiniWindowAlwaysOnTopDetail": "太記の小ウィンドウを常に他のウィンドウの上に表示させ、他のウィンドウで覆われないようにします。",
|
||||
"Logout": "ログアウト",
|
||||
"Miscellaneous": "その他の設定",
|
||||
"MoreWorkspaceSyncSettings": "さらに多くのワークスペース同期設定",
|
||||
"MoreWorkspaceSyncSettingsDescription": "ワークスペースアイコンを右クリックし、右クリックメニューから「ワークスペースの編集」を選択して、ワークスペース設定を開いてください。そこで各ワークスペースの同期設定を行います。",
|
||||
|
|
@ -388,6 +398,7 @@
|
|||
"RunOnBackground": "バックグラウンドで実行を維持する",
|
||||
"RunOnBackgroundDetail": "ウィンドウを閉じても終了せず、バックグラウンドで動作を継続します。再度アプリを開くと、すばやくウィンドウが復元されます。",
|
||||
"RunOnBackgroundDetailNotMac": "太記の小窓を開くことをお勧めします。これにより、メニューバー/タスクバーのアイコンからウィンドウを再び開くことができます。",
|
||||
"SelectWorkspace": "",
|
||||
"ShareBrowsingData": "ワークスペース間でブラウザデータ(クッキー、キャッシュなど)を共有し、閉じた後は各ワークスペースで異なるサードパーティサービスのアカウントにログインできます。",
|
||||
"ShowSideBar": "サイドバーを表示",
|
||||
"ShowSideBarDetail": "サイドバーを使用すると、ワークスペース間を素早く切り替えることができます。",
|
||||
|
|
@ -413,7 +424,22 @@
|
|||
"TestNotificationDescription": "<0>通知が表示されない場合は、<1>macOSの環境設定 → 通知 → TidGi</1>で通知が有効になっていることを確認してください</0>",
|
||||
"Theme": "テーマカラー",
|
||||
"TiddlyWiki": "太微(TiddlyWiki)",
|
||||
"TidgiMiniWindow": "",
|
||||
"TidgiMiniWindowAlwaysOnTop": "太記小ウィンドウを他のウィンドウの上に保持する",
|
||||
"TidgiMiniWindowAlwaysOnTopDetail": "太記の小ウィンドウを常に他のウィンドウの上に表示させ、他のウィンドウで覆われないようにします。",
|
||||
"TidgiMiniWindowFixedWorkspace": "",
|
||||
"TidgiMiniWindowShortcutKey": "",
|
||||
"TidgiMiniWindowShortcutKeyHelperText": "",
|
||||
"TidgiMiniWindowShortcutKeyPlaceholder": "",
|
||||
"TidgiMiniWindowShowSidebar": "",
|
||||
"TidgiMiniWindowShowSidebarTip": "",
|
||||
"TidgiMiniWindowShowTitleBar": "",
|
||||
"TidgiMiniWindowShowTitleBarDetail": "",
|
||||
"TidgiMiniWindowSyncWorkspaceWithMainWindow": "",
|
||||
"TidgiMiniWindowSyncWorkspaceWithMainWindowDetail": "",
|
||||
"TidgiMiniWindowTip": "",
|
||||
"ToggleMenuBar": "メニューバーの表示/非表示を切り替える",
|
||||
"ToggleTidgiMiniWindow": "",
|
||||
"Token": "Git認証情報",
|
||||
"TokenDescription": "Gitサーバーへの認証とコンテンツ同期に使用する認証情報は、Githubなどのオンラインストレージサービスにログインして取得するか、「Personal Access Token」を手動で取得し、ここに入力することができます。",
|
||||
"Translatium": "翻訳素APP",
|
||||
|
|
|
|||
|
|
@ -326,6 +326,18 @@
|
|||
"TopP": "Параметр выборки Top P",
|
||||
"TopPTitle": "Топ P"
|
||||
},
|
||||
"Plugin": {
|
||||
"Caption": "",
|
||||
"CaptionTitle": "",
|
||||
"Content": "",
|
||||
"ContentTitle": "",
|
||||
"ForbidOverrides": "",
|
||||
"ForbidOverridesTitle": "",
|
||||
"Id": "",
|
||||
"IdTitle": "",
|
||||
"PluginId": "",
|
||||
"PluginIdTitle": ""
|
||||
},
|
||||
"Position": {
|
||||
"Bottom": "смещение нескольких сообщений снизу",
|
||||
"BottomTitle": "смещение дна",
|
||||
|
|
@ -455,6 +467,7 @@
|
|||
"SourceTypeTitle": "тип источника",
|
||||
"Title": "Поиск в Вики",
|
||||
"Tool": {
|
||||
"Description": "",
|
||||
"Parameters": {
|
||||
"filter": {
|
||||
"Description": "TiddlyWiki выражения фильтров",
|
||||
|
|
@ -480,6 +493,27 @@
|
|||
"Description": "Имя или идентификатор рабочей области для поиска",
|
||||
"Title": "название рабочего пространства"
|
||||
}
|
||||
},
|
||||
"UpdateEmbeddings": {
|
||||
"Description": "",
|
||||
"Parameters": {
|
||||
"forceUpdate": {
|
||||
"Description": "",
|
||||
"Title": ""
|
||||
},
|
||||
"workspaceName": {
|
||||
"Description": "",
|
||||
"Title": ""
|
||||
}
|
||||
},
|
||||
"forceUpdate": {
|
||||
"Description": "",
|
||||
"Title": ""
|
||||
},
|
||||
"workspaceName": {
|
||||
"Description": "",
|
||||
"Title": ""
|
||||
}
|
||||
}
|
||||
},
|
||||
"ToolListPosition": {
|
||||
|
|
@ -516,6 +550,18 @@
|
|||
}
|
||||
},
|
||||
"Tool": {
|
||||
"Plugin": {
|
||||
"Caption": "",
|
||||
"CaptionTitle": "",
|
||||
"Content": "",
|
||||
"ContentTitle": "",
|
||||
"ForbidOverrides": "",
|
||||
"ForbidOverridesTitle": "",
|
||||
"Id": "",
|
||||
"IdTitle": "",
|
||||
"PluginId": "",
|
||||
"PluginIdTitle": ""
|
||||
},
|
||||
"Schema": {
|
||||
"Description": "описание",
|
||||
"Examples": "пример использования",
|
||||
|
|
@ -537,6 +583,10 @@
|
|||
"WikiSearch": {
|
||||
"Error": {
|
||||
"ExecutionFailed": "Выполнение инструмента завершилось неудачей: {{error}}",
|
||||
"FilterSearchRequiresFilter": "",
|
||||
"VectorSearchFailed": "",
|
||||
"VectorSearchRequiresConfig": "",
|
||||
"VectorSearchRequiresQuery": "",
|
||||
"WorkspaceNotExist": "Рабочее пространство {{workspaceID}} не существует",
|
||||
"WorkspaceNotFound": "Название или идентификатор рабочего пространства \"{{workspaceName}}\" не существует. Доступные рабочие пространства: {{availableWorkspaces}}"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -234,6 +234,14 @@
|
|||
"Tags": {
|
||||
}
|
||||
},
|
||||
"KeyboardShortcut": {
|
||||
"Clear": "",
|
||||
"HelpText": "",
|
||||
"None": "",
|
||||
"PressKeys": "",
|
||||
"PressKeysPrompt": "",
|
||||
"RegisterShortcut": ""
|
||||
},
|
||||
"LOG": {
|
||||
"CommitBackupMessage": "Использование TaiJi Desktop для резервного копирования",
|
||||
"CommitMessage": "Синхронизация с использованием TaiJi Desktop версии."
|
||||
|
|
@ -309,6 +317,7 @@
|
|||
"SelectNextWorkspace": "Выбрать следующее рабочее пространство",
|
||||
"SelectPreviousWorkspace": "Выбрать предыдущее рабочее пространство",
|
||||
"TidGi": "TidGi",
|
||||
"TidGiMenuBar": "",
|
||||
"TidGiMiniWindow": "Мини-окно TidGi",
|
||||
"View": "Просмотр",
|
||||
"Wiki": "Wiki",
|
||||
|
|
@ -352,6 +361,8 @@
|
|||
"HideMenuBarDetail": "Скрыть детали меню",
|
||||
"HideSideBar": "Скрыть боковую панель",
|
||||
"HideSideBarIconDetail": "Скрыть детали иконки боковой панели",
|
||||
"HideTidgiMiniWindow": "",
|
||||
"HideTidgiMiniWindowDetail": "",
|
||||
"HideTitleBar": "Скрыть заголовок",
|
||||
"HowToEnableNotifications": "<0>TidGi поддерживает уведомления из коробки. Но в некоторых случаях, чтобы получать уведомления, вам нужно вручную настроить дополнительные параметры веб-приложения.</0><1>Узнать больше</1><2>.</2>",
|
||||
"IgnoreCertificateErrors": "Игнорировать ошибки сертификатов",
|
||||
|
|
@ -359,8 +370,7 @@
|
|||
"ItIsWorking": "Работает!",
|
||||
"Languages": "Языки",
|
||||
"LightTheme": "Светлая тема",
|
||||
"TidgiMiniWindowAlwaysOnTop": "TidGi мини-окно всегда сверху",
|
||||
"TidgiMiniWindowAlwaysOnTopDetail": "Держать мини-окно TidGi всегда поверх других окон",
|
||||
"Logout": "Выйти",
|
||||
"Miscellaneous": "Разное",
|
||||
"MoreWorkspaceSyncSettings": "Дополнительные настройки синхронизации рабочего пространства",
|
||||
"MoreWorkspaceSyncSettingsDescription": "Описание дополнительных настроек синхронизации рабочего пространства",
|
||||
|
|
@ -388,6 +398,7 @@
|
|||
"RunOnBackground": "Запуск в фоновом режиме",
|
||||
"RunOnBackgroundDetail": "Детали запуска в фоновом режиме",
|
||||
"RunOnBackgroundDetailNotMac": "Детали запуска в фоновом режиме (не для Mac)",
|
||||
"SelectWorkspace": "",
|
||||
"ShareBrowsingData": "Делиться данными браузера",
|
||||
"ShowSideBar": "Показать боковую панель",
|
||||
"ShowSideBarDetail": "Показать детали боковой панели",
|
||||
|
|
@ -413,7 +424,22 @@
|
|||
"TestNotificationDescription": "<0>Если уведомление не отображается, убедитесь, что уведомления включены в <1>настройках macOS → Уведомления → TidGi</1></0>",
|
||||
"Theme": "Тема",
|
||||
"TiddlyWiki": "TiddlyWiki",
|
||||
"TidgiMiniWindow": "",
|
||||
"TidgiMiniWindowAlwaysOnTop": "TidGi мини-окно всегда сверху",
|
||||
"TidgiMiniWindowAlwaysOnTopDetail": "Держать мини-окно TidGi всегда поверх других окон",
|
||||
"TidgiMiniWindowFixedWorkspace": "",
|
||||
"TidgiMiniWindowShortcutKey": "",
|
||||
"TidgiMiniWindowShortcutKeyHelperText": "",
|
||||
"TidgiMiniWindowShortcutKeyPlaceholder": "",
|
||||
"TidgiMiniWindowShowSidebar": "",
|
||||
"TidgiMiniWindowShowSidebarTip": "",
|
||||
"TidgiMiniWindowShowTitleBar": "",
|
||||
"TidgiMiniWindowShowTitleBarDetail": "",
|
||||
"TidgiMiniWindowSyncWorkspaceWithMainWindow": "",
|
||||
"TidgiMiniWindowSyncWorkspaceWithMainWindowDetail": "",
|
||||
"TidgiMiniWindowTip": "",
|
||||
"ToggleMenuBar": "Переключить меню",
|
||||
"ToggleTidgiMiniWindow": "",
|
||||
"Token": "Токен",
|
||||
"TokenDescription": "Описание токена",
|
||||
"Translatium": "Translatium",
|
||||
|
|
|
|||
|
|
@ -23,6 +23,15 @@
|
|||
"GitRepoUrl": "Git仓库线上网址",
|
||||
"GitTokenDescription": "用于登录Git的凭证,一定时间后会过期",
|
||||
"GitUserNameDescription": "用于登录Git的账户名,注意是你的仓库网址中你的名字部分",
|
||||
"CustomServerUrl": "自定义服务器地址",
|
||||
"CustomServerUrlDescription": "OAuth 服务器的基础 URL(例如:http://127.0.0.1:8888)",
|
||||
"CustomClientId": "客户端 ID",
|
||||
"CustomClientIdDescription": "OAuth 应用的客户端 ID",
|
||||
"GitToken": "Git 凭证",
|
||||
"GitUserName": "Git 用户名",
|
||||
"GitEmail": "Git 邮箱",
|
||||
"GitBranch": "Git 分支",
|
||||
"GitBranchDescription": "要使用的 Git 分支(默认:main)",
|
||||
"ImportWiki": "导入知识库: ",
|
||||
"LocalWikiHtml": "HTML文件的路径",
|
||||
"LocalWorkspace": "本地知识库",
|
||||
|
|
@ -317,6 +326,7 @@
|
|||
"SelectNextWorkspace": "选择下一个工作区",
|
||||
"SelectPreviousWorkspace": "选择前一个工作区",
|
||||
"TidGi": "太记",
|
||||
"TidGiMenuBar": "",
|
||||
"TidGiMiniWindow": "太记小窗",
|
||||
"View": "查看",
|
||||
"Wiki": "知识库",
|
||||
|
|
@ -332,10 +342,10 @@
|
|||
"AlwaysOnTopDetail": "让太记的主窗口永远保持在其它窗口上方,不会被其他窗口覆盖",
|
||||
"AntiAntiLeech": "有的网站做了防盗链,会阻止某些图片在你的知识库上显示,我们通过模拟访问该网站的请求头来绕过这种限制。",
|
||||
"AskDownloadLocation": "下载前询问每个文件的保存位置",
|
||||
"TidgiMiniWindow": "附加到太记小窗",
|
||||
"TidgiMiniWindowShowSidebar": "太记小窗包含侧边栏",
|
||||
"TidgiMiniWindowShowSidebarTip": "一般太记小窗仅用于快速查看当前工作区,所以默认与主窗口工作区同步,不需要侧边栏,默认隐藏侧边栏。",
|
||||
"TidgiMiniWindowTip": "创建一个点击系统托盘图标会弹出的小太记窗口。提示:右键单击小图标以访问上下文菜单。",
|
||||
"AttachToMenuBar": "",
|
||||
"AttachToMenuBarShowSidebar": "",
|
||||
"AttachToMenuBarShowSidebarTip": "",
|
||||
"AttachToMenuBarTip": "",
|
||||
"AttachToTaskbar": "附加到任务栏",
|
||||
"AttachToTaskbarShowSidebar": "附加到任务栏的窗口包含侧边栏",
|
||||
"ChooseLanguage": "选择语言 Choose Language",
|
||||
|
|
@ -364,6 +374,8 @@
|
|||
"HideMenuBarDetail": "按下 Alt + M 可以显示被隐藏的菜单栏",
|
||||
"HideSideBar": "隐藏侧边栏",
|
||||
"HideSideBarIconDetail": "隐藏图标只显示工作区的名字,让工作区列表更紧凑",
|
||||
"HideTidgiMiniWindow": "",
|
||||
"HideTidgiMiniWindowDetail": "",
|
||||
"HideTitleBar": "隐藏标题栏",
|
||||
"HowToEnableNotifications": "<0>TidGi支持原生通知功能。但在某些情况下,要接收通知,您需要手动配置一些Web应用设置。</0><1>了解详情</1><2>。</2>",
|
||||
"IgnoreCertificateErrors": "忽略网络证书错误",
|
||||
|
|
@ -371,16 +383,7 @@
|
|||
"ItIsWorking": "好使的!",
|
||||
"Languages": "语言/Lang",
|
||||
"LightTheme": "亮色主题",
|
||||
"TidgiMiniWindowAlwaysOnTop": "保持太记小窗口在其他窗口上方",
|
||||
"TidgiMiniWindowAlwaysOnTopDetail": "让太记的小窗口永远保持在其它窗口上方,不会被其他窗口覆盖",
|
||||
"TidgiMiniWindowFixedWorkspace": "为固定的太记小窗口选择工作区",
|
||||
"TidgiMiniWindowShortcutKey": "设置快捷键来切换太记小窗口",
|
||||
"TidgiMiniWindowShortcutKeyHelperText": "设置一个快捷键来快速打开或关闭太记小窗口",
|
||||
"TidgiMiniWindowShortcutKeyPlaceholder": "例如:Ctrl+Shift+D",
|
||||
"TidgiMiniWindowSyncWorkspaceWithMainWindow": "小窗和主窗口展示同样的工作区",
|
||||
"TidgiMiniWindowSyncWorkspaceWithMainWindowDetail": "勾选后,小窗将与主窗口同步显示相同的工作区内容",
|
||||
"TidgiMiniWindowShowTitleBar": "小窗显示标题栏",
|
||||
"TidgiMiniWindowShowTitleBarDetail": "在太记小窗口上显示可拖动的标题栏",
|
||||
"Logout": "登出",
|
||||
"Miscellaneous": "其他设置",
|
||||
"MoreWorkspaceSyncSettings": "更多工作区同步设置",
|
||||
"MoreWorkspaceSyncSettingsDescription": "请右键工作区图标,点右键菜单里的「编辑工作区」来打开工作区设置,在里面配各个工作区的同步设置。",
|
||||
|
|
@ -448,6 +451,21 @@
|
|||
"TestNotificationDescription": "<0>如果通知未显示,请确保在<1>macOS首选项 → 通知 → TidGi中启用通知</1></0>",
|
||||
"Theme": "主题色",
|
||||
"TiddlyWiki": "太微",
|
||||
"TidgiMiniWindow": "附加到太记小窗",
|
||||
"TidgiMiniWindowAlwaysOnTop": "保持太记小窗口在其他窗口上方",
|
||||
"TidgiMiniWindowAlwaysOnTopDetail": "让太记的小窗口永远保持在其它窗口上方,不会被其他窗口覆盖",
|
||||
"TidgiMiniWindowFixedWorkspace": "为固定的太记小窗口选择工作区",
|
||||
"TidgiMiniWindowShortcutKey": "设置快捷键来切换太记小窗口",
|
||||
"TidgiMiniWindowShortcutKeyHelperText": "设置一个快捷键来快速打开或关闭太记小窗口",
|
||||
"TidgiMiniWindowShortcutKeyPlaceholder": "例如:Ctrl+Shift+D",
|
||||
"TidgiMiniWindowShowSidebar": "太记小窗包含侧边栏",
|
||||
"TidgiMiniWindowShowSidebarTip": "一般太记小窗仅用于快速查看当前工作区,所以默认与主窗口工作区同步,不需要侧边栏,默认隐藏侧边栏。",
|
||||
"TidgiMiniWindowShowTitleBar": "小窗显示标题栏",
|
||||
"TidgiMiniWindowShowTitleBarDetail": "在太记小窗口上显示可拖动的标题栏",
|
||||
"TidgiMiniWindowSyncWorkspaceWithMainWindow": "小窗和主窗口展示同样的工作区",
|
||||
"TidgiMiniWindowSyncWorkspaceWithMainWindowDetail": "勾选后,小窗将与主窗口同步显示相同的工作区内容",
|
||||
"TidgiMiniWindowTip": "创建一个点击系统托盘图标会弹出的小太记窗口。提示:右键单击小图标以访问上下文菜单。",
|
||||
"ToggleMenuBar": "",
|
||||
"ToggleTidgiMiniWindow": "切换太记小窗",
|
||||
"Token": "Git身份凭证",
|
||||
"TokenDescription": "用于向Git服务器验证身份并同步内容的凭证,可通过登录在线存储服务(如Github)来取得,也可以手动获取「Personal Access Token」后填到这里。",
|
||||
|
|
@ -471,6 +489,7 @@
|
|||
"UpdateAvailable": "有新版本!"
|
||||
},
|
||||
"Unknown": "未知",
|
||||
"Update": "",
|
||||
"Updater": {
|
||||
"CheckUpdate": "检查更新",
|
||||
"CheckingFailed": "检查更新失败(网络错误)",
|
||||
|
|
|
|||
|
|
@ -313,6 +313,18 @@
|
|||
"TopP": "Top P 採樣參數",
|
||||
"TopPTitle": "Top P"
|
||||
},
|
||||
"Plugin": {
|
||||
"Caption": "",
|
||||
"CaptionTitle": "",
|
||||
"Content": "",
|
||||
"ContentTitle": "",
|
||||
"ForbidOverrides": "",
|
||||
"ForbidOverridesTitle": "",
|
||||
"Id": "",
|
||||
"IdTitle": "",
|
||||
"PluginId": "",
|
||||
"PluginIdTitle": ""
|
||||
},
|
||||
"Position": {
|
||||
"Bottom": "自底部偏移幾條消息",
|
||||
"BottomTitle": "底部偏移",
|
||||
|
|
@ -442,6 +454,7 @@
|
|||
"SourceTypeTitle": "源類型",
|
||||
"Title": "Wiki 搜索",
|
||||
"Tool": {
|
||||
"Description": "",
|
||||
"Parameters": {
|
||||
"filter": {
|
||||
"Description": "TiddlyWiki 篩選器表達式",
|
||||
|
|
@ -469,11 +482,24 @@
|
|||
}
|
||||
},
|
||||
"UpdateEmbeddings": {
|
||||
"Description": "",
|
||||
"Parameters": {
|
||||
"forceUpdate": {
|
||||
"Description": "",
|
||||
"Title": ""
|
||||
},
|
||||
"workspaceName": {
|
||||
"Description": "",
|
||||
"Title": ""
|
||||
}
|
||||
},
|
||||
"forceUpdate": {
|
||||
"Description": "",
|
||||
"Title": ""
|
||||
},
|
||||
"workspaceName": {
|
||||
"Description": "",
|
||||
"Title": ""
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -511,6 +537,18 @@
|
|||
}
|
||||
},
|
||||
"Tool": {
|
||||
"Plugin": {
|
||||
"Caption": "",
|
||||
"CaptionTitle": "",
|
||||
"Content": "",
|
||||
"ContentTitle": "",
|
||||
"ForbidOverrides": "",
|
||||
"ForbidOverridesTitle": "",
|
||||
"Id": "",
|
||||
"IdTitle": "",
|
||||
"PluginId": "",
|
||||
"PluginIdTitle": ""
|
||||
},
|
||||
"Schema": {
|
||||
"Description": "描述",
|
||||
"Examples": "使用範例",
|
||||
|
|
@ -532,6 +570,10 @@
|
|||
"WikiSearch": {
|
||||
"Error": {
|
||||
"ExecutionFailed": "工具執行失敗:{{error}}",
|
||||
"FilterSearchRequiresFilter": "",
|
||||
"VectorSearchFailed": "",
|
||||
"VectorSearchRequiresConfig": "",
|
||||
"VectorSearchRequiresQuery": "",
|
||||
"WorkspaceNotExist": "工作區{{workspaceID}}不存在",
|
||||
"WorkspaceNotFound": "工作區名稱或ID\"{{workspaceName}}\"不存在。可用工作區:{{availableWorkspaces}}"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -234,6 +234,14 @@
|
|||
"Tags": {
|
||||
}
|
||||
},
|
||||
"KeyboardShortcut": {
|
||||
"Clear": "",
|
||||
"HelpText": "",
|
||||
"None": "",
|
||||
"PressKeys": "",
|
||||
"PressKeysPrompt": "",
|
||||
"RegisterShortcut": ""
|
||||
},
|
||||
"LOG": {
|
||||
"CommitBackupMessage": "使用太記桌面版備份",
|
||||
"CommitMessage": "使用太記桌面版同步"
|
||||
|
|
@ -309,6 +317,7 @@
|
|||
"SelectNextWorkspace": "選擇下一個工作區",
|
||||
"SelectPreviousWorkspace": "選擇前一個工作區",
|
||||
"TidGi": "太記",
|
||||
"TidGiMenuBar": "",
|
||||
"TidGiMiniWindow": "太記小窗",
|
||||
"View": "查看",
|
||||
"Wiki": "知識庫",
|
||||
|
|
@ -324,10 +333,10 @@
|
|||
"AlwaysOnTopDetail": "讓太記的主窗口永遠保持在其它窗口上方,不會被其他窗口覆蓋",
|
||||
"AntiAntiLeech": "有的網站做了防盜鏈,會阻止某些圖片在你的知識庫上顯示,我們透過模擬訪問該網站的請求頭來繞過這種限制。",
|
||||
"AskDownloadLocation": "下載前詢問每個文件的保存位置",
|
||||
"TidgiMiniWindow": "附加到太記小窗",
|
||||
"TidgiMiniWindowShowSidebar": "太記小窗包含側邊欄",
|
||||
"TidgiMiniWindowShowSidebarTip": "一般太記小窗僅用於快速查看當前工作區,所以默認與主窗口工作區同步,不需要側邊欄,默認隱藏側邊欄。",
|
||||
"TidgiMiniWindowTip": "創建一個點擊系統托盤圖示會彈出的小太記窗口。提示:右鍵單擊小圖示以訪問上下文菜單。",
|
||||
"AttachToMenuBar": "",
|
||||
"AttachToMenuBarShowSidebar": "",
|
||||
"AttachToMenuBarShowSidebarTip": "",
|
||||
"AttachToMenuBarTip": "",
|
||||
"AttachToTaskbar": "附加到任務欄",
|
||||
"AttachToTaskbarShowSidebar": "附加到任務欄的窗口包含側邊欄",
|
||||
"ChooseLanguage": "選擇語言 Choose Language",
|
||||
|
|
@ -356,6 +365,8 @@
|
|||
"HideMenuBarDetail": "按下 Alt + M 可以顯示被隱藏的選單欄",
|
||||
"HideSideBar": "隱藏側邊欄",
|
||||
"HideSideBarIconDetail": "隱藏圖示只顯示工作區的名字,讓工作區列表更緊湊",
|
||||
"HideTidgiMiniWindow": "",
|
||||
"HideTidgiMiniWindowDetail": "",
|
||||
"HideTitleBar": "隱藏標題欄",
|
||||
"HowToEnableNotifications": "<0>TidGi支持原生通知功能。但在某些情況下,要接收通知,您需要手動配置一些Web應用設定。</0><1>了解詳情</1><2>。</2>",
|
||||
"IgnoreCertificateErrors": "忽略網路證書錯誤",
|
||||
|
|
@ -363,8 +374,7 @@
|
|||
"ItIsWorking": "好使的!",
|
||||
"Languages": "語言/Lang",
|
||||
"LightTheme": "亮色主題",
|
||||
"TidgiMiniWindowAlwaysOnTop": "保持太記小窗口在其他窗口上方",
|
||||
"TidgiMiniWindowAlwaysOnTopDetail": "讓太記的小窗口永遠保持在其它窗口上方,不會被其他窗口覆蓋",
|
||||
"Logout": "登出",
|
||||
"Miscellaneous": "其他設置",
|
||||
"MoreWorkspaceSyncSettings": "更多工作區同步設定",
|
||||
"MoreWorkspaceSyncSettingsDescription": "請右鍵工作區圖示,點右鍵菜單裡的「編輯工作區」來打開工作區設置,在裡面配各個工作區的同步設定。",
|
||||
|
|
@ -406,6 +416,7 @@
|
|||
"SearchEmbeddingStatusIdle": "未生成嵌入",
|
||||
"SearchEmbeddingUpdate": "更新嵌入",
|
||||
"SearchNoWorkspaces": "未找到工作區",
|
||||
"SelectWorkspace": "",
|
||||
"ShareBrowsingData": "在工作區之間共享瀏覽器數據(cookies、快取等),關閉後可以每個工作區登不同的第三方服務帳號。",
|
||||
"ShowSideBar": "顯示側邊欄",
|
||||
"ShowSideBarDetail": "側邊欄讓你可以在工作區之間快速切換",
|
||||
|
|
@ -431,6 +442,21 @@
|
|||
"TestNotificationDescription": "<0>如果通知未顯示,請確保在<1>macOS首選項 → 通知 → TidGi中啟用通知</1></0>",
|
||||
"Theme": "主題色",
|
||||
"TiddlyWiki": "太微",
|
||||
"TidgiMiniWindow": "附加到太記小窗",
|
||||
"TidgiMiniWindowAlwaysOnTop": "保持太記小窗口在其他窗口上方",
|
||||
"TidgiMiniWindowAlwaysOnTopDetail": "讓太記的小窗口永遠保持在其它窗口上方,不會被其他窗口覆蓋",
|
||||
"TidgiMiniWindowFixedWorkspace": "",
|
||||
"TidgiMiniWindowShortcutKey": "",
|
||||
"TidgiMiniWindowShortcutKeyHelperText": "",
|
||||
"TidgiMiniWindowShortcutKeyPlaceholder": "",
|
||||
"TidgiMiniWindowShowSidebar": "太記小窗包含側邊欄",
|
||||
"TidgiMiniWindowShowSidebarTip": "一般太記小窗僅用於快速查看當前工作區,所以默認與主窗口工作區同步,不需要側邊欄,默認隱藏側邊欄。",
|
||||
"TidgiMiniWindowShowTitleBar": "",
|
||||
"TidgiMiniWindowShowTitleBarDetail": "",
|
||||
"TidgiMiniWindowSyncWorkspaceWithMainWindow": "",
|
||||
"TidgiMiniWindowSyncWorkspaceWithMainWindowDetail": "",
|
||||
"TidgiMiniWindowTip": "創建一個點擊系統托盤圖示會彈出的小太記窗口。提示:右鍵單擊小圖示以訪問上下文菜單。",
|
||||
"ToggleMenuBar": "",
|
||||
"ToggleTidgiMiniWindow": "切換太記小窗",
|
||||
"Token": "Git身份憑證",
|
||||
"TokenDescription": "用於向Git伺服器驗證身份並同步內容的憑證,可透過登錄在線儲存服務(如Github)來取得,也可以手動獲取「Personal Access Token」後填到這裡。",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue