mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-07-23 04:52:58 +00:00
Complete Commonlib rc.6 integration and setup workflows
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import type { Confirm, ConfirmActionLayout } from "@vrtmrz/livesync-commonlib/compat/interfaces/Confirm";
|
||||
import { createNativeElement } from "@/apps/browserDom";
|
||||
|
||||
import MessageBox from "./ui/MessageBox.svelte";
|
||||
import TextInputBox from "./ui/TextInputBox.svelte";
|
||||
@@ -13,9 +14,9 @@ function displayMessageBox<T, U extends string[]>(
|
||||
buttons: U,
|
||||
title: string,
|
||||
commit: (ret: U[number]) => T,
|
||||
actionLayout?: ConfirmActionLayout
|
||||
actionLayout: ConfirmActionLayout = "vertical"
|
||||
): Promise<T> {
|
||||
const el = _activeDocument.createElement("div");
|
||||
const el = createNativeElement(_activeDocument, "div");
|
||||
const p = promiseWithResolvers<T>();
|
||||
mount(MessageBox, {
|
||||
target: el,
|
||||
@@ -42,7 +43,7 @@ function promptForInput(
|
||||
placeholder: string,
|
||||
isPassword?: boolean
|
||||
): Promise<string | false> {
|
||||
const el = _activeDocument.createElement("div");
|
||||
const el = createNativeElement(_activeDocument, "div");
|
||||
const p = promiseWithResolvers<string | false>();
|
||||
mount(TextInputBox, {
|
||||
target: el,
|
||||
@@ -103,12 +104,12 @@ export class BrowserConfirm<T extends ServiceContext> implements Confirm {
|
||||
const existing = _activeDocument.querySelector(`[data-livesync-popup="${CSS.escape(key)}"]`);
|
||||
existing?.remove();
|
||||
|
||||
const notice = _activeDocument.createElement("div");
|
||||
const notice = createNativeElement(_activeDocument, "div");
|
||||
notice.className = "livesync-browser-notice";
|
||||
notice.dataset.livesyncPopup = key;
|
||||
const [beforeText, afterText] = dialogText.split("{HERE}", 2);
|
||||
notice.append(beforeText);
|
||||
const anchor = _activeDocument.createElement("a");
|
||||
const anchor = createNativeElement(_activeDocument, "a");
|
||||
anchor.href = "#";
|
||||
anchorCallback(anchor);
|
||||
anchor.addEventListener("click", () => notice.remove());
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import { promiseWithResolvers, type PromiseWithResolvers } from "octagonal-wheels/promises";
|
||||
import { createNativeElement } from "@/apps/browserDom";
|
||||
import { mount } from "svelte";
|
||||
import MenuView from "./ui/MenuView.svelte";
|
||||
import { _activeDocument } from "@vrtmrz/livesync-commonlib/compat/common/coreEnvFunctions";
|
||||
@@ -41,7 +42,7 @@ export class Menu {
|
||||
}
|
||||
waitingForClose?: PromiseWithResolvers<void>;
|
||||
showAtPosition(pos: { x: number; y: number }) {
|
||||
const el = _activeDocument.createElement("div");
|
||||
const el = createNativeElement(_activeDocument, "div");
|
||||
if (this.waitingForClose) {
|
||||
this.waitingForClose.resolve();
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@ import {
|
||||
SvelteDialogManagerBase,
|
||||
SvelteDialogMixIn,
|
||||
} from "@vrtmrz/livesync-commonlib/compat/services/implements/base/SvelteDialog";
|
||||
import { createNativeElement } from "@/apps/browserDom";
|
||||
import type { ServiceContext } from "@vrtmrz/livesync-commonlib/context";
|
||||
import type { SvelteDialogManagerDependencies } from "@vrtmrz/livesync-commonlib/compat/services/implements/base/SvelteDialog";
|
||||
import { _activeDocument } from "@vrtmrz/livesync-commonlib/compat/common/coreEnvFunctions";
|
||||
@@ -15,13 +16,13 @@ export class ShimModal {
|
||||
isOpen: boolean = false;
|
||||
baseEl: HTMLElement;
|
||||
constructor() {
|
||||
const baseEl = _activeDocument.createElement("popup");
|
||||
const baseEl = createNativeElement(_activeDocument, "popup");
|
||||
this.baseEl = baseEl;
|
||||
this.contentEl = _activeDocument.createElement("div");
|
||||
this.contentEl = createNativeElement(_activeDocument, "div");
|
||||
this.contentEl.className = "modal-content";
|
||||
this.titleEl = _activeDocument.createElement("div");
|
||||
this.titleEl = createNativeElement(_activeDocument, "div");
|
||||
this.titleEl.className = "modal-title";
|
||||
this.modalEl = _activeDocument.createElement("div");
|
||||
this.modalEl = createNativeElement(_activeDocument, "div");
|
||||
this.modalEl.className = "modal";
|
||||
this.modalEl.hidden = true;
|
||||
this.modalEl.appendChild(this.titleEl);
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
import { BrowserServiceHub, type BrowserServiceHost } from "@vrtmrz/livesync-commonlib/compat/services/BrowserServices";
|
||||
import type { KeyValueDatabaseFactory } from "@vrtmrz/livesync-commonlib/compat/interfaces/KeyValueDatabase";
|
||||
import type { ServiceContext } from "@vrtmrz/livesync-commonlib/context";
|
||||
import { ServiceContext } from "@vrtmrz/livesync-commonlib/context";
|
||||
import { BrowserAPIService } from "@vrtmrz/livesync-commonlib/compat/services/implements/browser/BrowserAPIService";
|
||||
import { BrowserConfirm } from "./BrowserConfirm";
|
||||
import { LiveSyncBrowserUIService } from "./LiveSyncBrowserUIService";
|
||||
import { setLang, translateLiveSyncMessage } from "@/common/translation";
|
||||
|
||||
export type LiveSyncBrowserServiceHubOptions<T extends ServiceContext> = {
|
||||
context?: T;
|
||||
@@ -26,8 +27,11 @@ function createLiveSyncBrowserHost<T extends ServiceContext>(): BrowserServiceHo
|
||||
export function createLiveSyncBrowserServiceHub<T extends ServiceContext>(
|
||||
options: LiveSyncBrowserServiceHubOptions<T> = {}
|
||||
): BrowserServiceHub<T> {
|
||||
const context = options.context ?? (new ServiceContext({ translate: translateLiveSyncMessage }) as T);
|
||||
return new BrowserServiceHub<T>({
|
||||
...options,
|
||||
context,
|
||||
onDisplayLanguageChanged: setLang,
|
||||
host: createLiveSyncBrowserHost<T>(),
|
||||
});
|
||||
}
|
||||
|
||||
@@ -15,8 +15,8 @@ describe("LiveSync browser service context contract", () => {
|
||||
});
|
||||
const hub = createLiveSyncBrowserServiceHub({ context });
|
||||
|
||||
expect(observeServiceContext(context, "message")).toEqual({
|
||||
translation: "webapp:message",
|
||||
expect(observeServiceContext(context, "moduleLocalDatabase.logWaitingForReady")).toEqual({
|
||||
translation: "webapp:moduleLocalDatabase.logWaitingForReady",
|
||||
receivedEvents: ["context-contract-event"],
|
||||
});
|
||||
const composition = observeServiceComposition(hub, context);
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
/**
|
||||
* Native DOM creation for browser applications which run outside Obsidian.
|
||||
*
|
||||
* Obsidian adds creation helpers to its own DOM environment. The standalone
|
||||
* Webapp and WebPeer hosts do not own those prototype extensions, and the
|
||||
* Webapp compatibility layer implements them on top of this native boundary.
|
||||
*/
|
||||
type NativeDocumentCreation = Pick<Document, "createElement" | "createDocumentFragment">;
|
||||
|
||||
export function createNativeElement<K extends keyof HTMLElementTagNameMap>(
|
||||
document: NativeDocumentCreation,
|
||||
tag: K
|
||||
): HTMLElementTagNameMap[K];
|
||||
export function createNativeElement(document: NativeDocumentCreation, tag: string): HTMLElement;
|
||||
export function createNativeElement(document: NativeDocumentCreation, tag: string): HTMLElement {
|
||||
return document.createElement(tag);
|
||||
}
|
||||
|
||||
export function createNativeFragment(document: NativeDocumentCreation): DocumentFragment {
|
||||
return document.createDocumentFragment();
|
||||
}
|
||||
@@ -28,6 +28,7 @@ import { path as nodePath } from "@vrtmrz/livesync-commonlib/node";
|
||||
import type { KeyValueDBService } from "@vrtmrz/livesync-commonlib/compat/services/base/KeyValueDBService";
|
||||
import { PouchDB } from "@/apps/cli/lib/pouchdb-node";
|
||||
import { NodeServiceContext } from "./NodeServiceContext";
|
||||
import { setLang } from "@/common/translation";
|
||||
|
||||
export { NodeServiceContext } from "./NodeServiceContext";
|
||||
|
||||
@@ -95,7 +96,11 @@ export class NodeServiceHub<T extends NodeServiceContext> extends InjectableServ
|
||||
const conflict = new InjectableConflictService(context);
|
||||
const fileProcessing = new InjectableFileProcessingService(context);
|
||||
|
||||
const setting = new NodeSettingService(context, { APIService: API }, localStoragePath);
|
||||
const setting = new NodeSettingService(
|
||||
context,
|
||||
{ APIService: API, onDisplayLanguageChanged: setLang },
|
||||
localStoragePath
|
||||
);
|
||||
|
||||
const appLifecycle = new NodeAppLifecycleService<T>(context, {
|
||||
settingService: setting,
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import { LiveSyncWebApp } from "./main";
|
||||
import { createNativeElement } from "@/apps/browserDom";
|
||||
import { VaultHistoryStore, type VaultHistoryItem } from "./vaultSelector";
|
||||
import { compatGlobal, _activeDocument } from "@vrtmrz/livesync-commonlib/compat/common/coreEnvFunctions";
|
||||
|
||||
@@ -55,24 +56,24 @@ async function renderHistoryList(): Promise<VaultHistoryItem[]> {
|
||||
emptyEl.classList.toggle("is-hidden", items.length > 0);
|
||||
|
||||
for (const item of items) {
|
||||
const row = _activeDocument.createElement("div");
|
||||
const row = createNativeElement(_activeDocument, "div");
|
||||
row.className = "vault-item";
|
||||
|
||||
const info = _activeDocument.createElement("div");
|
||||
const info = createNativeElement(_activeDocument, "div");
|
||||
info.className = "vault-item-info";
|
||||
|
||||
const name = _activeDocument.createElement("div");
|
||||
const name = createNativeElement(_activeDocument, "div");
|
||||
name.className = "vault-item-name";
|
||||
name.textContent = item.name;
|
||||
|
||||
const meta = _activeDocument.createElement("div");
|
||||
const meta = createNativeElement(_activeDocument, "div");
|
||||
meta.className = "vault-item-meta";
|
||||
const label = item.id === lastUsedId ? "Last used" : "Used";
|
||||
meta.textContent = `${label}: ${formatLastUsed(item.lastUsedAt)}`;
|
||||
|
||||
info.append(name, meta);
|
||||
|
||||
const useButton = _activeDocument.createElement("button");
|
||||
const useButton = createNativeElement(_activeDocument, "button");
|
||||
useButton.type = "button";
|
||||
useButton.textContent = "Use this vault";
|
||||
useButton.addEventListener("click", () => {
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
* Obsidian mock, and must not become a general test environment for the plug-in. When the Webapp compatibility boundary
|
||||
* is redesigned, replace this implementation here rather than extending it as a shared Obsidian simulation.
|
||||
*/
|
||||
import { createNativeElement, createNativeFragment } from "@/apps/browserDom";
|
||||
import type {
|
||||
Command,
|
||||
DataWriteOptions,
|
||||
@@ -456,7 +457,7 @@ class Workspace extends Events {
|
||||
revealLeaf() {
|
||||
return Promise.resolve();
|
||||
}
|
||||
containerEl: HTMLElement = document.createElement("div");
|
||||
containerEl: HTMLElement = createNativeElement(document, "div");
|
||||
}
|
||||
export class App {
|
||||
vaultName: string = "MockVault";
|
||||
@@ -543,19 +544,19 @@ export class Modal {
|
||||
|
||||
constructor(app: App) {
|
||||
this.app = app;
|
||||
this.contentEl = document.createElement("div");
|
||||
this.contentEl = createNativeElement(document, "div");
|
||||
this.contentEl.className = "modal-content";
|
||||
this.titleEl = document.createElement("div");
|
||||
this.titleEl = createNativeElement(document, "div");
|
||||
this.titleEl.className = "modal-title";
|
||||
this.modalEl = document.createElement("div");
|
||||
this.modalEl = createNativeElement(document, "div");
|
||||
this.modalEl.className = "modal";
|
||||
this.modalEl.style.display = "none";
|
||||
this.modalEl.hidden = true;
|
||||
this.modalEl.appendChild(this.titleEl);
|
||||
this.modalEl.appendChild(this.contentEl);
|
||||
}
|
||||
open() {
|
||||
this.isOpen = true;
|
||||
this.modalEl.style.display = "block";
|
||||
this.modalEl.hidden = false;
|
||||
if (!this.modalEl.parentElement) {
|
||||
document.body.appendChild(this.modalEl);
|
||||
}
|
||||
@@ -563,7 +564,7 @@ export class Modal {
|
||||
}
|
||||
close() {
|
||||
this.isOpen = false;
|
||||
this.modalEl.style.display = "none";
|
||||
this.modalEl.hidden = true;
|
||||
this.onClose();
|
||||
}
|
||||
onOpen() {}
|
||||
@@ -581,7 +582,7 @@ export class PluginSettingTab {
|
||||
constructor(app: App, plugin: Plugin) {
|
||||
this.app = app;
|
||||
this.plugin = plugin;
|
||||
this.containerEl = document.createElement("div");
|
||||
this.containerEl = createNativeElement(document, "div");
|
||||
}
|
||||
display() {}
|
||||
}
|
||||
@@ -621,12 +622,12 @@ export class Component {
|
||||
}
|
||||
|
||||
export class ButtonComponent extends Component {
|
||||
buttonEl: HTMLButtonElement = document.createElement("button");
|
||||
buttonEl: HTMLButtonElement = createNativeElement(document, "button");
|
||||
private clickHandler: ((evt: MouseEvent) => unknown) | null = null;
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
this.buttonEl = document.createElement("button");
|
||||
this.buttonEl = createNativeElement(document, "button");
|
||||
this.buttonEl.type = "button";
|
||||
}
|
||||
|
||||
@@ -664,12 +665,12 @@ export class ButtonComponent extends Component {
|
||||
}
|
||||
|
||||
export class TextComponent extends Component {
|
||||
inputEl: HTMLInputElement = document.createElement("input");
|
||||
inputEl: HTMLInputElement = createNativeElement(document, "input");
|
||||
private changeHandler: ((value: string) => unknown) | null = null;
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
this.inputEl = document.createElement("input");
|
||||
this.inputEl = createNativeElement(document, "input");
|
||||
this.inputEl.type = "text";
|
||||
}
|
||||
|
||||
@@ -708,12 +709,12 @@ export class TextComponent extends Component {
|
||||
}
|
||||
|
||||
export class ToggleComponent extends Component {
|
||||
inputEl: HTMLInputElement = document.createElement("input");
|
||||
inputEl: HTMLInputElement = createNativeElement(document, "input");
|
||||
private changeHandler: ((value: boolean) => unknown) | null = null;
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
this.inputEl = document.createElement("input");
|
||||
this.inputEl = createNativeElement(document, "input");
|
||||
this.inputEl.type = "checkbox";
|
||||
}
|
||||
|
||||
@@ -738,16 +739,16 @@ export class ToggleComponent extends Component {
|
||||
}
|
||||
|
||||
export class DropdownComponent extends Component {
|
||||
selectEl: HTMLSelectElement = document.createElement("select");
|
||||
selectEl: HTMLSelectElement = createNativeElement(document, "select");
|
||||
private changeHandler: ((value: string) => unknown) | null = null;
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
this.selectEl = document.createElement("select");
|
||||
this.selectEl = createNativeElement(document, "select");
|
||||
}
|
||||
|
||||
addOption(v: string, d: string) {
|
||||
const option = document.createElement("option");
|
||||
const option = createNativeElement(document, "option");
|
||||
option.value = v;
|
||||
option.textContent = d;
|
||||
this.selectEl.appendChild(option);
|
||||
@@ -782,12 +783,12 @@ export class DropdownComponent extends Component {
|
||||
}
|
||||
|
||||
export class SliderComponent extends Component {
|
||||
inputEl: HTMLInputElement = document.createElement("input");
|
||||
inputEl: HTMLInputElement = createNativeElement(document, "input");
|
||||
private changeHandler: ((value: number) => unknown) | null = null;
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
this.inputEl = document.createElement("input");
|
||||
this.inputEl = createNativeElement(document, "input");
|
||||
this.inputEl.type = "range";
|
||||
}
|
||||
|
||||
@@ -917,7 +918,7 @@ if (typeof HTMLElement !== "undefined") {
|
||||
info?: DomElementInfo | string,
|
||||
callback?: (element: HTMLDivElement) => void
|
||||
): HTMLDivElement {
|
||||
const element = document.createElement("div");
|
||||
const element = createNativeElement(document, "div");
|
||||
applyDomElementInfo(element, info);
|
||||
this.appendChild(element);
|
||||
callback?.(element);
|
||||
@@ -929,7 +930,7 @@ if (typeof HTMLElement !== "undefined") {
|
||||
info?: DomElementInfo | string,
|
||||
callback?: (element: HTMLElementTagNameMap[K]) => void
|
||||
): HTMLElementTagNameMap[K] {
|
||||
const element = document.createElement(tag);
|
||||
const element = createNativeElement(document, tag);
|
||||
applyDomElementInfo(element, info);
|
||||
this.appendChild(element);
|
||||
callback?.(element);
|
||||
@@ -940,7 +941,7 @@ if (typeof HTMLElement !== "undefined") {
|
||||
info?: DomElementInfo | string,
|
||||
callback?: (element: HTMLSpanElement) => void
|
||||
): HTMLSpanElement {
|
||||
const element = document.createElement("span");
|
||||
const element = createNativeElement(document, "span");
|
||||
applyDomElementInfo(element, info);
|
||||
this.appendChild(element);
|
||||
callback?.(element);
|
||||
@@ -980,7 +981,7 @@ export class FuzzySuggestModal<T> {
|
||||
|
||||
function parseHtmlFragment(html: string): DocumentFragment {
|
||||
const parsed = new DOMParser().parseFromString(html, "text/html");
|
||||
const fragment = document.createDocumentFragment();
|
||||
const fragment = createNativeFragment(document);
|
||||
for (const child of [...parsed.body.childNodes]) {
|
||||
fragment.appendChild(document.importNode(child, true));
|
||||
}
|
||||
@@ -999,7 +1000,7 @@ export class ItemView {}
|
||||
export class WorkspaceLeaf {}
|
||||
|
||||
export function sanitizeHTMLToDom(html: string) {
|
||||
const div = document.createElement("div");
|
||||
const div = createNativeElement(document, "div");
|
||||
div.appendChild(parseHtmlFragment(html));
|
||||
return div;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,50 @@
|
||||
import { PartialMessages as def } from "./def.ts";
|
||||
import { PartialMessages as es } from "./es.ts";
|
||||
import { PartialMessages as fr } from "./fr.ts";
|
||||
import { PartialMessages as he } from "./he.ts";
|
||||
import { PartialMessages as ja } from "./ja.ts";
|
||||
import { PartialMessages as ko } from "./ko.ts";
|
||||
import { PartialMessages as ru } from "./ru.ts";
|
||||
import { PartialMessages as zh } from "./zh.ts";
|
||||
import { PartialMessages as zhTw } from "./zh-tw.ts";
|
||||
import { expandKeywords, type MESSAGE } from "@/common/rosetta.ts";
|
||||
|
||||
type MessageKeys = keyof typeof def.def;
|
||||
|
||||
const messages = {
|
||||
...def,
|
||||
...es,
|
||||
...fr,
|
||||
...he,
|
||||
...ja,
|
||||
...ko,
|
||||
...ru,
|
||||
...zh,
|
||||
...zhTw,
|
||||
};
|
||||
const w = Object.entries(messages)
|
||||
.map(([lang, messageDefs]) => Object.entries(messageDefs).map(([key, value]) => [key, [lang, value]] as const))
|
||||
.flat();
|
||||
|
||||
const _allMessages = w.reduce(
|
||||
(acc, [key, value]) => {
|
||||
if (!acc[key]) acc[key] = {};
|
||||
acc[key][value[0]] = value[1];
|
||||
return acc;
|
||||
},
|
||||
{} as Record<string, Record<string, string>>
|
||||
) as Record<MessageKeys, { [key: string]: string }>;
|
||||
|
||||
const expandedMessage = {
|
||||
...expandKeywords(_allMessages, "def"),
|
||||
...expandKeywords(_allMessages, "es"),
|
||||
...expandKeywords(_allMessages, "fr"),
|
||||
...expandKeywords(_allMessages, "ja"),
|
||||
...expandKeywords(_allMessages, "ko"),
|
||||
...expandKeywords(_allMessages, "ru"),
|
||||
...expandKeywords(_allMessages, "zh"),
|
||||
...expandKeywords(_allMessages, "zh-tw"),
|
||||
};
|
||||
|
||||
export const allMessages = expandedMessage as { [key: string]: MESSAGE };
|
||||
export { type MessageKeys };
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,4 @@
|
||||
import de from "@/common/messagesJson/de.json";
|
||||
export const PartialMessages = {
|
||||
de,
|
||||
} as const;
|
||||
@@ -0,0 +1,4 @@
|
||||
import def from "@/common/messagesJson/en.json";
|
||||
export const PartialMessages = {
|
||||
def,
|
||||
} as const;
|
||||
@@ -0,0 +1,4 @@
|
||||
import es from "@/common/messagesJson/es.json";
|
||||
export const PartialMessages = {
|
||||
es,
|
||||
} as const;
|
||||
@@ -0,0 +1,4 @@
|
||||
import fr from "@/common/messagesJson/fr.json";
|
||||
export const PartialMessages = {
|
||||
fr,
|
||||
} as const;
|
||||
@@ -0,0 +1,4 @@
|
||||
import he from "@/common/messagesJson/he.json";
|
||||
export const PartialMessages = {
|
||||
he,
|
||||
} as const;
|
||||
@@ -0,0 +1,4 @@
|
||||
import ja from "@/common/messagesJson/ja.json";
|
||||
export const PartialMessages = {
|
||||
ja,
|
||||
} as const;
|
||||
@@ -0,0 +1,4 @@
|
||||
import ko from "@/common/messagesJson/ko.json";
|
||||
export const PartialMessages = {
|
||||
ko,
|
||||
} as const;
|
||||
@@ -0,0 +1,4 @@
|
||||
import ru from "@/common/messagesJson/ru.json";
|
||||
export const PartialMessages = {
|
||||
ru,
|
||||
} as const;
|
||||
@@ -0,0 +1,4 @@
|
||||
import zhTw from "@/common/messagesJson/zh-tw.json";
|
||||
export const PartialMessages = {
|
||||
"zh-tw": zhTw,
|
||||
} as const;
|
||||
@@ -0,0 +1,4 @@
|
||||
import zh from "@/common/messagesJson/zh.json";
|
||||
export const PartialMessages = {
|
||||
zh,
|
||||
} as const;
|
||||
@@ -0,0 +1,295 @@
|
||||
{
|
||||
"(Active)": "(Aktiv)",
|
||||
"(RegExp) Empty to sync all files. Set filter as a regular expression to limit synchronising files.": "(RegExp) Leer lassen, um alle Dateien zu synchronisieren. Legen Sie einen Filter als regulären Ausdruck fest, um die zu synchronisierenden Dateien einzuschränken.",
|
||||
"(RegExp) If this is set, any changes to local and remote files that match this will be skipped.": "(RegExp) Wenn dies gesetzt ist, werden alle Änderungen an lokalen und Remote-Dateien übersprungen, die diesem Muster entsprechen.",
|
||||
"(Select this if you are already using synchronisation on another computer or smartphone.) This option is suitable if you are new to LiveSync and want to set it up from scratch.": "(Wählen Sie dies, wenn Sie die Synchronisation bereits auf einem anderen Computer oder Smartphone verwenden.) Diese Option ist geeignet, wenn Sie dieses Gerät zu einer bestehenden LiveSync-Einrichtung hinzufügen möchten.",
|
||||
"(Select this if you are configuring this device as the first synchronisation device.) This option is suitable if you are new to LiveSync and want to set it up from scratch.": "(Wählen Sie dies, wenn Sie dieses Gerät als erstes Synchronisationsgerät einrichten.) Diese Option ist geeignet, wenn Sie LiveSync neu verwenden und von Grund auf einrichten möchten.",
|
||||
"> [!INFO]- The connected devices have been detected as follows:\n${devices}": "> [!INFO]- Die folgenden verbundenen Geräte wurden erkannt:\n${devices}",
|
||||
"A Setup URI is a single string of text containing your server address and authentication details. Using a URI, if one was generated by your server installation script, provides a simple and secure configuration.": "Eine Setup-URI ist eine einzelne Zeichenfolge, die Ihre Serveradresse und Authentifizierungsdaten enthält. Wenn Ihre Serverinstallation eine URI erzeugt hat, bietet deren Verwendung eine einfache und sichere Konfiguration。",
|
||||
"Activate": "Aktivieren",
|
||||
"Add default patterns": "Standardmuster hinzufügen",
|
||||
"Add new connection": "Neue Verbindung hinzufügen",
|
||||
"All devices have the same progress value (${progress}). Your devices seem to be synchronised. And be able to proceed with Garbage Collection.": "Alle Geräte haben denselben Fortschrittswert (${progress}). Ihre Geräte scheinen synchronisiert zu sein. Die Garbage Collection kann fortgesetzt werden.",
|
||||
"Back": "Zurück",
|
||||
"Back to non-configured": "Zurück auf nicht konfiguriert",
|
||||
"Cancel": "Abbrechen",
|
||||
"Cancel Garbage Collection": "Garbage Collection abbrechen",
|
||||
"Check and convert non-path-obfuscated files": "Nicht pfadverschleierte Dateien prüfen und konvertieren",
|
||||
"Check for documents that have not been converted to path-obfuscated IDs and convert them if necessary.": "Prüft Dokumente, die noch nicht in pfadverschleierte IDs umgewandelt wurden, und konvertiert sie bei Bedarf.",
|
||||
"cmdConfigSync.showCustomizationSync": "Anpassungssynchronisation anzeigen",
|
||||
"Compaction in progress on remote database...": "Komprimierung auf der Remote-Datenbank läuft...",
|
||||
"Compaction on remote database completed successfully.": "Die Komprimierung auf der Remote-Datenbank wurde erfolgreich abgeschlossen.",
|
||||
"Compaction on remote database failed.": "Die Komprimierung auf der Remote-Datenbank ist fehlgeschlagen.",
|
||||
"Compaction on remote database timed out.": "Die Komprimierung auf der Remote-Datenbank hat eine Zeitüberschreitung erreicht.",
|
||||
"Compare the content of files between on local database and storage. If not matched, you will be asked which one you want to keep.": "Vergleicht den Inhalt der Dateien zwischen lokaler Datenbank und Speicher. Bei Abweichungen werden Sie gefragt, welche Version behalten werden soll.",
|
||||
"Compatibility (Conflict Behaviour)": "Kompatibilität (Konfliktverhalten)",
|
||||
"Compatibility (Database structure)": "Kompatibilität (Datenbankstruktur)",
|
||||
"Compatibility (Internal API Usage)": "Kompatibilität (interne API-Nutzung)",
|
||||
"Compatibility (Metadata)": "Kompatibilität (Metadaten)",
|
||||
"Compatibility (Remote Database)": "Kompatibilität (Remote-Datenbank)",
|
||||
"Compatibility (Trouble addressed)": "Kompatibilität (Problembehebung)",
|
||||
"Configure": "Konfigurieren",
|
||||
"Configure And Change Remote": "Remote konfigurieren und wechseln",
|
||||
"Configure E2EE": "E2EE konfigurieren",
|
||||
"Configure Remote": "Remote konfigurieren",
|
||||
"Configure the same server information as your other devices again, manually, very advanced users only.": "Geben Sie dieselben Serverinformationen wie auf Ihren anderen Geräten erneut manuell ein. Nur für sehr erfahrene Benutzer。",
|
||||
"Connection Method": "Verbindungsmethode",
|
||||
"Continue to CouchDB setup": "Weiter zur CouchDB-Einrichtung",
|
||||
"Continue to Peer-to-Peer only setup": "Weiter zur reinen Peer-to-Peer-Einrichtung",
|
||||
"Continue to S3/MinIO/R2 setup": "Weiter zur S3/MinIO/R2-Einrichtung",
|
||||
"Copy": "Kopieren",
|
||||
"Cross-platform": "Plattformübergreifend",
|
||||
"Current adapter: {adapter}": "Aktueller Adapter: {adapter}",
|
||||
"Customization Sync (Beta3)": "Anpassungssynchronisation (Beta3)",
|
||||
"Database Adapter": "Datenbankadapter",
|
||||
"Default": "Standard",
|
||||
"Delete": "Löschen",
|
||||
"Delete all customization sync data": "Alle Anpassungssynchronisationsdaten löschen",
|
||||
"Delete all data on the remote server.": "Alle Daten auf dem Remote-Server löschen.",
|
||||
"Delete local database to reset or uninstall Self-hosted LiveSync": "Lokale Datenbank löschen, um Self-hosted LiveSync zurückzusetzen oder zu deinstallieren",
|
||||
"Delete Remote Configuration": "Remote-Konfiguration löschen",
|
||||
"Delete remote configuration '{name}'?": "Remote-Konfiguration „{name}“ löschen?",
|
||||
"desktop": "Desktop",
|
||||
"Device": "Gerät",
|
||||
"Device name": "Gerätename",
|
||||
"Device Setup Method": "Einrichtungsmethode für das Gerät",
|
||||
"Disables all synchronization and restart.": "Deaktiviert die gesamte Synchronisation und startet neu.",
|
||||
"Display name": "Anzeigename",
|
||||
"Duplicate": "Duplizieren",
|
||||
"Duplicate remote": "Remote duplizieren",
|
||||
"E2EE Configuration": "E2EE-Konfiguration",
|
||||
"Edge case addressing (Behaviour)": "Behandlung von Randfällen (Verhalten)",
|
||||
"Edge case addressing (Database)": "Behandlung von Randfällen (Datenbank)",
|
||||
"Edge case addressing (Processing)": "Behandlung von Randfällen (Verarbeitung)",
|
||||
"Emergency restart": "Notfallneustart",
|
||||
"Encrypting sensitive configuration items": "Sensible Konfigurationseinträge verschlüsseln",
|
||||
"Enter Server Information": "Serverinformationen eingeben",
|
||||
"Enter the server information manually": "Serverinformationen manuell eingeben",
|
||||
"Export": "Exportieren",
|
||||
"Failed to connect to remote for compaction.": "Verbindung zur Remote-Datenbank für die Komprimierung fehlgeschlagen.",
|
||||
"Failed to connect to remote for compaction. ${reason}": "Verbindung zur Remote-Datenbank für die Komprimierung fehlgeschlagen. ${reason}",
|
||||
"Failed to start one-shot replication before Garbage Collection. Garbage Collection Cancelled.": "Die Einmal-Replikation vor der Garbage Collection konnte nicht gestartet werden. Die Garbage Collection wurde abgebrochen.",
|
||||
"Failed to start replication after Garbage Collection.": "Die Replikation nach der Garbage Collection konnte nicht gestartet werden.",
|
||||
"Fetch remote settings": "Remote-Einstellungen abrufen",
|
||||
"File to resolve conflict": "Datei zur Konfliktlösung",
|
||||
"First, please select the option that best describes your current situation.": "Wählen Sie bitte zuerst die Option aus, die Ihre aktuelle Situation am besten beschreibt.",
|
||||
"Flag and restart": "Markieren und neu starten",
|
||||
"Fresh Start Wipe": "Für Neustart vollständig bereinigen",
|
||||
"Garbage Collection cancelled by user.": "Garbage Collection wurde vom Benutzer abgebrochen.",
|
||||
"Garbage Collection completed. Deleted chunks: ${deletedChunks} / ${totalChunks}. Time taken: ${seconds} seconds.": "Garbage Collection abgeschlossen. Gelöschte Chunks: ${deletedChunks} / ${totalChunks}. Benötigte Zeit: ${seconds} Sekunden.",
|
||||
"Garbage Collection Confirmation": "Bestätigung der Garbage Collection",
|
||||
"Garbage Collection V3 (Beta)": "Datenbereinigung V3 (Beta)",
|
||||
"Garbage Collection: Found ${unusedChunks} unused chunks to delete.": "Garbage Collection: ${unusedChunks} ungenutzte Chunks zum Löschen gefunden.",
|
||||
"Garbage Collection: Scanned ${scanned} / ~${docCount}": "Garbage Collection: ${scanned} / ~${docCount} gescannt",
|
||||
"Garbage Collection: Scanning completed. Total chunks: ${totalChunks}, Used chunks: ${usedChunks}": "Garbage Collection: Scan abgeschlossen. Gesamtzahl der Chunks: ${totalChunks}, verwendete Chunks: ${usedChunks}",
|
||||
"Hidden Files": "Versteckte Dateien",
|
||||
"Hide completely": "Vollständig ausblenden",
|
||||
"How to display network errors when the sync server is unreachable.": "Legt fest, wie Netzwerkfehler angezeigt werden, wenn der Synchronisationsserver nicht erreichbar ist.",
|
||||
"How would you like to configure the connection to your server?": "Wie möchten Sie die Verbindung zu Ihrem Server konfigurieren?",
|
||||
"I am adding a device to an existing synchronisation setup": "Ich füge ein Gerät zu einer bestehenden Synchronisationseinrichtung hinzu",
|
||||
"I am setting this up for the first time": "Ich richte dies zum ersten Mal ein",
|
||||
"I know my server details, let me enter them": "Ich kenne meine Serverdaten, ich gebe sie selbst ein",
|
||||
"If enabled, the ⛔ icon will be shown inside the status instead of the file warnings banner. No details will be shown.": "Wenn aktiviert, wird das Symbol ⛔ im Status statt im Dateiwarnungsbanner angezeigt. Es werden keine Details angezeigt.",
|
||||
"Ignore and Proceed": "Ignorieren und fortfahren",
|
||||
"Ignore patterns": "Ausschlussmuster",
|
||||
"Import connection": "Verbindung importieren",
|
||||
"Initialise all journal history, On the next sync, every item will be received and sent.": "Gesamte Journal-Historie initialisieren. Beim nächsten Sync werden alle Elemente empfangen und gesendet.",
|
||||
"Later": "Später",
|
||||
"Limit: {datetime} ({timestamp})": "Grenze: {datetime} ({timestamp})",
|
||||
"Lock": "Sperren",
|
||||
"Lock Server": "Server sperren",
|
||||
"Lock the remote server to prevent synchronization with other devices.": "Sperrt den Remote-Server, um die Synchronisation mit anderen Geräten zu verhindern.",
|
||||
"More actions": "Weitere Aktionen",
|
||||
"Network warning style": "Stil der Netzwerkwarnung",
|
||||
"New Remote": "Neues Remote",
|
||||
"No connected device information found. Cancelling Garbage Collection.": "Keine Informationen zu verbundenen Geräten gefunden. Garbage Collection wird abgebrochen.",
|
||||
"No limit configured": "Kein Limit konfiguriert",
|
||||
"No, please take me back": "Nein, bitte zurück",
|
||||
"Node ID": "Knoten-ID",
|
||||
"Node Information Missing": "Knoteninformationen fehlen",
|
||||
"Non-Synchronising files": "Nicht zu synchronisierende Dateien",
|
||||
"Normal Files": "Normale Dateien",
|
||||
"Obsidian version": "Obsidian-Version",
|
||||
"obsidianLiveSyncSettingTab.btnApply": "Anwenden",
|
||||
"obsidianLiveSyncSettingTab.btnDisable": "Deaktivieren",
|
||||
"obsidianLiveSyncSettingTab.btnNext": "Weiter",
|
||||
"obsidianLiveSyncSettingTab.buttonNext": "Weiter",
|
||||
"obsidianLiveSyncSettingTab.defaultLanguage": "Standardsprache",
|
||||
"obsidianLiveSyncSettingTab.labelDisabled": "⏹️ : Deaktiviert",
|
||||
"obsidianLiveSyncSettingTab.labelEnabled": "🔁 : Aktiviert",
|
||||
"obsidianLiveSyncSettingTab.logConfiguredDisabled": "Konfigurierter Synchronisationsmodus: DEAKTIVIERT",
|
||||
"obsidianLiveSyncSettingTab.logConfiguredLiveSync": "Konfigurierter Synchronisationsmodus: LiveSync",
|
||||
"obsidianLiveSyncSettingTab.logConfiguredPeriodic": "Konfigurierter Synchronisationsmodus: Periodisch",
|
||||
"obsidianLiveSyncSettingTab.logSelectAnyPreset": "Wählen Sie eine beliebige Voreinstellung aus.",
|
||||
"obsidianLiveSyncSettingTab.msgConfigCheckFailed": "Die Konfigurationsprüfung ist fehlgeschlagen. Trotzdem fortfahren?",
|
||||
"obsidianLiveSyncSettingTab.msgEnableEncryptionRecommendation": "Wir empfehlen, Ende-zu-Ende-Verschlüsselung und Pfadverschleierung zu aktivieren. Möchten Sie wirklich ohne Verschlüsselung fortfahren?",
|
||||
"obsidianLiveSyncSettingTab.msgFetchConfigFromRemote": "Möchten Sie die Konfiguration vom Remote-Server abrufen?",
|
||||
"obsidianLiveSyncSettingTab.msgGenerateSetupURI": "Alles fertig! Möchten Sie eine Setup-URI erzeugen, um andere Geräte einzurichten?",
|
||||
"obsidianLiveSyncSettingTab.msgInvalidPassphrase": "Ihre Verschlüsselungs-Passphrase könnte ungültig sein. Möchten Sie wirklich fortfahren?",
|
||||
"obsidianLiveSyncSettingTab.msgSelectAndApplyPreset": "Bitte wählen und übernehmen Sie eine beliebige Voreinstellung, um den Assistenten abzuschließen.",
|
||||
"obsidianLiveSyncSettingTab.nameDisableHiddenFileSync": "Synchronisation versteckter Dateien deaktivieren",
|
||||
"obsidianLiveSyncSettingTab.nameEnableHiddenFileSync": "Synchronisation versteckter Dateien aktivieren",
|
||||
"obsidianLiveSyncSettingTab.nameHiddenFileSynchronization": "Synchronisation versteckter Dateien",
|
||||
"obsidianLiveSyncSettingTab.optionDisableAllAutomatic": "Alle automatischen Vorgänge deaktivieren",
|
||||
"obsidianLiveSyncSettingTab.optionLiveSync": "LiveSync-Modus",
|
||||
"obsidianLiveSyncSettingTab.optionOnEvents": "Bei Ereignissen",
|
||||
"obsidianLiveSyncSettingTab.optionPeriodicAndEvents": "Periodisch und bei Ereignissen",
|
||||
"obsidianLiveSyncSettingTab.optionPeriodicWithBatch": "Periodisch mit Stapelverarbeitung",
|
||||
"obsidianLiveSyncSettingTab.titleAppearance": "Darstellung",
|
||||
"obsidianLiveSyncSettingTab.titleConflictResolution": "Konfliktbehandlung",
|
||||
"obsidianLiveSyncSettingTab.titleCongratulations": "Glückwunsch!",
|
||||
"obsidianLiveSyncSettingTab.titleCouchDB": "CouchDB-Server",
|
||||
"obsidianLiveSyncSettingTab.titleDeletionPropagation": "Weitergabe von Löschungen",
|
||||
"obsidianLiveSyncSettingTab.titleEncryptionNotEnabled": "Verschlüsselung ist nicht aktiviert",
|
||||
"obsidianLiveSyncSettingTab.titleEncryptionPassphraseInvalid": "Ungültige Verschlüsselungs-Passphrase",
|
||||
"obsidianLiveSyncSettingTab.titleFetchConfig": "Konfiguration abrufen",
|
||||
"obsidianLiveSyncSettingTab.titleHiddenFiles": "Versteckte Dateien",
|
||||
"obsidianLiveSyncSettingTab.titleLogging": "Protokollierung",
|
||||
"obsidianLiveSyncSettingTab.titleMinioS3R2": "MinIO / S3 / R2",
|
||||
"obsidianLiveSyncSettingTab.titleNotification": "Benachrichtigungen",
|
||||
"obsidianLiveSyncSettingTab.titleRemoteConfigCheckFailed": "Prüfung der Remote-Konfiguration fehlgeschlagen",
|
||||
"obsidianLiveSyncSettingTab.titleRemoteServer": "Remote-Server",
|
||||
"obsidianLiveSyncSettingTab.titleSynchronizationMethod": "Synchronisationsmethode",
|
||||
"obsidianLiveSyncSettingTab.titleSynchronizationPreset": "Synchronisationsvorgabe",
|
||||
"obsidianLiveSyncSettingTab.titleSyncSettingsViaMarkdown": "Synchronisationseinstellungen per Markdown",
|
||||
"obsidianLiveSyncSettingTab.titleUpdateThinning": "Update-Ausdünnung",
|
||||
"Ok": "OK",
|
||||
"Old Algorithm": "Alter Algorithmus",
|
||||
"Older fallback (Slow, W/O WebAssembly)": "Älterer Fallback (langsam, ohne WebAssembly)",
|
||||
"Overwrite patterns": "Überschreibungsmuster",
|
||||
"Overwrite remote": "Remote überschreiben",
|
||||
"Overwrite remote with local DB and passphrase.": "Remote mit lokaler Datenbank und Passphrase überschreiben.",
|
||||
"Overwrite Server Data with This Device's Files": "Serverdaten mit den Dateien dieses Geräts überschreiben",
|
||||
"paneMaintenance.markDeviceResolvedAfterBackup": "Markieren Sie das Gerät nach der Sicherung als gelöst.",
|
||||
"paneMaintenance.remoteLockedAndDeviceNotAccepted": "Die Remote-Datenbank ist gesperrt und dieses Gerät wurde noch nicht akzeptiert.",
|
||||
"paneMaintenance.remoteLockedResolvedDevice": "Die Remote-Datenbank ist gesperrt. Dieses Gerät wurde bereits akzeptiert.",
|
||||
"paneMaintenance.unlockDatabaseReady": "Die Datenbank kann jetzt entsperrt werden.",
|
||||
"Paste a connection string": "Verbindungszeichenfolge einfügen",
|
||||
"Paste the Setup URI generated from one of your active devices.": "Fügen Sie die Setup-URI ein, die auf einem Ihrer aktiven Geräte erzeugt wurde。",
|
||||
"Patterns to match files for overwriting instead of merging": "Muster zum Erkennen von Dateien, die überschrieben statt zusammengeführt werden sollen",
|
||||
"Patterns to match files for syncing": "Muster zum Erkennen von Dateien für die Synchronisation",
|
||||
"Peer-to-Peer only": "Nur Peer-to-Peer",
|
||||
"Peer-to-Peer Synchronisation": "Peer-to-Peer-Synchronisation",
|
||||
"Perform": "Ausführen",
|
||||
"Perform cleanup": "Bereinigung ausführen",
|
||||
"Perform Garbage Collection": "Garbage Collection ausführen",
|
||||
"Perform Garbage Collection to remove unused chunks and reduce database size.": "Führt Garbage Collection aus, um ungenutzte Chunks zu entfernen und die Datenbankgröße zu reduzieren.",
|
||||
"Pick a file to resolve conflict": "Datei zur Konfliktlösung auswählen",
|
||||
"Please disable 'Read chunks online' in settings to use Garbage Collection.": "Bitte deaktivieren Sie „Read chunks online“ in den Einstellungen, um die Garbage Collection zu verwenden.",
|
||||
"Please enable 'Compute revisions for chunks' in settings to use Garbage Collection.": "Bitte aktivieren Sie „Compute revisions for chunks“ in den Einstellungen, um die Garbage Collection zu verwenden.",
|
||||
"Please select 'Cancel' explicitly to cancel this operation.": "Bitte wählen Sie ausdrücklich „Abbrechen“, um diesen Vorgang abzubrechen.",
|
||||
"Please select a method to import the settings from another device.": "Bitte wählen Sie eine Methode, um die Einstellungen von einem anderen Gerät zu importieren.",
|
||||
"Please select an option to proceed": "Bitte wählen Sie eine Option, um fortzufahren",
|
||||
"Please select the type of server to which you are connecting.": "Bitte wählen Sie den Servertyp aus, mit dem Sie sich verbinden。",
|
||||
"Please set this device name": "Bitte legen Sie den Namen dieses Geräts fest",
|
||||
"Plug-in version": "Plugin-Version",
|
||||
"Proceed Garbage Collection": "Garbage Collection fortsetzen",
|
||||
"Proceed with Setup URI": "Mit Setup-URI fortfahren",
|
||||
"Proceeding with Garbage Collection, ignoring missing nodes.": "Garbage Collection wird fortgesetzt, fehlende Knoten werden ignoriert.",
|
||||
"Proceeding with Garbage Collection.": "Garbage Collection wird ausgeführt.",
|
||||
"Progress": "Fortschritt",
|
||||
"PureJS fallback (Fast, W/O WebAssembly)": "PureJS-Fallback (schnell, ohne WebAssembly)",
|
||||
"Purge all download/upload cache.": "Gesamten Download-/Upload-Cache leeren.",
|
||||
"Purge all journal counter": "Alle Journal-Zähler leeren",
|
||||
"Rebuild local and remote database with local files.": "Lokale und Remote-Datenbank anhand der lokalen Dateien neu aufbauen.",
|
||||
"Rebuilding Operations (Remote Only)": "Neuaufbau-Vorgänge (nur Remote)",
|
||||
"Recreate all": "Alle neu erstellen",
|
||||
"Recreate missing chunks for all files": "Fehlende Chunks für alle Dateien neu erstellen",
|
||||
"Remediation": "Problembehebung",
|
||||
"Remediation Setting Changed": "Problembehebungs-Einstellung geändert",
|
||||
"Remote Database Tweak (In sunset)": "Remote-Datenbank-Optimierung (wird eingestellt)",
|
||||
"Remote Databases": "Remote-Datenbanken",
|
||||
"Remote name": "Remote-Name",
|
||||
"Rename": "Umbenennen",
|
||||
"Resend": "Erneut senden",
|
||||
"Resend all chunks to the remote.": "Alle Chunks erneut an das Remote senden.",
|
||||
"Reset": "Zurücksetzen",
|
||||
"Reset all": "Alles zurücksetzen",
|
||||
"Reset all journal counter": "Alle Journal-Zähler zurücksetzen",
|
||||
"Reset journal received history": "Empfangsverlauf des Journals zurücksetzen",
|
||||
"Reset journal sent history": "Sendeverlauf des Journals zurücksetzen",
|
||||
"Reset received": "Empfang zurücksetzen",
|
||||
"Reset sent history": "Sendeverlauf zurücksetzen",
|
||||
"Reset Synchronisation information": "Synchronisationsinformationen zurücksetzen",
|
||||
"Reset Synchronisation on This Device": "Synchronisation auf diesem Gerät zurücksetzen",
|
||||
"Resolve All": "Alle auflösen",
|
||||
"Resolve all conflicted files": "Alle Konfliktdateien auflösen",
|
||||
"Resolve All conflicted files by the newer one": "Alle Konfliktdateien mit der neueren Version auflösen",
|
||||
"Resolve all conflicted files by the newer one. Caution: This will overwrite the older one, and cannot resurrect the overwritten one.": "Löst alle Konfliktdateien zugunsten der neueren Version auf. Achtung: Dadurch wird die ältere Version überschrieben und kann nicht wiederhergestellt werden.",
|
||||
"Restart Now": "Jetzt neu starten",
|
||||
"Restore or reconstruct local database from remote.": "Lokale Datenbank aus dem Remote wiederherstellen oder neu aufbauen.",
|
||||
"S3/MinIO/R2 Object Storage": "S3-/MinIO-/R2-Objektspeicher",
|
||||
"Scan a QR Code (Recommended for mobile)": "QR-Code scannen (für Mobilgeräte empfohlen)",
|
||||
"Scan the QR code displayed on an active device using this device's camera.": "Scannen Sie den auf einem aktiven Gerät angezeigten QR-Code mit der Kamera dieses Geräts。",
|
||||
"Schedule and Restart": "Planen und neu starten",
|
||||
"Scram!": "Notfallmaßnahmen",
|
||||
"Select the database adapter to use.": "Wählen Sie den zu verwendenden Datenbankadapter aus.",
|
||||
"Send": "Senden",
|
||||
"Send chunks": "Chunks senden",
|
||||
"Setting.GenerateKeyPair.Desc": "Wir haben ein Schlüsselpaar erzeugt!\n\nHinweis: Dieses Schlüsselpaar wird nie wieder angezeigt. Bitte bewahren Sie es an einem sicheren Ort auf. Wenn Sie es verlieren, müssen Sie ein neues Schlüsselpaar erzeugen.\nHinweis 2: Der öffentliche Schlüssel liegt im SPKI-Format vor, der private Schlüssel im PKCS8-Format. Zur besseren Handhabung werden Zeilenumbrüche im öffentlichen Schlüssel zu `\\n` umgewandelt.\nHinweis 3: Der öffentliche Schlüssel sollte in der Remote-Datenbank hinterlegt werden, der private Schlüssel auf den lokalen Geräten.\n\n>[!NUR FÜR IHRE AUGEN]-\n> <div class=\"sls-keypair\">\n>\n> ### Öffentlicher Schlüssel\n> ```\n${public_key}\n> ```\n>\n> ### Privater Schlüssel\n> ```\n${private_key}\n> ```\n>\n> </div>\n\n>[!Beides zum Kopieren]-\n>\n> <div class=\"sls-keypair\">\n>\n> ```\n${public_key}\n${private_key}\n> ```\n>\n> </div>",
|
||||
"Setting.GenerateKeyPair.Title": "Neues Schlüsselpaar wurde erzeugt!",
|
||||
"Setup URI dialog cancelled.": "Setup-URI-Dialog abgebrochen.",
|
||||
"Setup.RemoteE2EE.AdvancedTitle": "Erweitert",
|
||||
"Setup.RemoteE2EE.AlgorithmWarning": "Wenn Sie den Verschlüsselungsalgorithmus ändern, können Sie nicht mehr auf Daten zugreifen, die zuvor mit einem anderen Algorithmus verschlüsselt wurden. Stellen Sie sicher, dass alle Ihre Geräte denselben Algorithmus verwenden, damit der Zugriff auf Ihre Daten erhalten bleibt.",
|
||||
"Setup.RemoteE2EE.ButtonCancel": "Abbrechen",
|
||||
"Setup.RemoteE2EE.ButtonProceed": "Fortfahren",
|
||||
"Setup.RemoteE2EE.DefaultAlgorithmDesc": "In den meisten Fällen sollten Sie beim Standardalgorithmus (${algorithm}) bleiben. Diese Einstellung ist nur erforderlich, wenn Sie bereits einen Vault haben, der in einem anderen Format verschlüsselt wurde.",
|
||||
"Setup.RemoteE2EE.Guidance": "Bitte konfigurieren Sie Ihre Einstellungen für die Ende-zu-Ende-Verschlüsselung.",
|
||||
"Setup.RemoteE2EE.LabelEncrypt": "Ende-zu-Ende-Verschlüsselung",
|
||||
"Setup.RemoteE2EE.LabelEncryptionAlgorithm": "Verschlüsselungsalgorithmus",
|
||||
"Setup.RemoteE2EE.LabelObfuscateProperties": "Eigenschaften verschleiern",
|
||||
"Setup.RemoteE2EE.MultiDestinationWarning": "Diese Einstellung muss auch dann identisch sein, wenn Sie sich mit mehreren Synchronisationszielen verbinden.",
|
||||
"Setup.RemoteE2EE.ObfuscatePropertiesDesc": "Das Verschleiern von Eigenschaften (z. B. Dateipfad, Größe sowie Erstellungs- und Änderungsdatum) fügt eine zusätzliche Sicherheitsebene hinzu, da die Struktur und die Namen Ihrer Dateien und Ordner auf dem Remote-Server schwerer erkennbar sind. Das schützt Ihre Privatsphäre und erschwert es unbefugten Personen, Informationen über Ihre Daten abzuleiten.",
|
||||
"Setup.RemoteE2EE.PassphraseValidationLine1": "Bitte beachten Sie, dass die Passphrase für die Ende-zu-Ende-Verschlüsselung erst geprüft wird, wenn der Synchronisationsvorgang tatsächlich beginnt. Dies ist eine Sicherheitsmaßnahme zum Schutz Ihrer Daten.",
|
||||
"Setup.RemoteE2EE.PassphraseValidationLine2": "Daher bitten wir Sie, beim manuellen Konfigurieren der Serverinformationen äußerst vorsichtig zu sein. Wenn eine falsche Passphrase eingegeben wird, werden die Daten auf dem Server beschädigt. Bitte haben Sie Verständnis dafür, dass dies beabsichtigtes Verhalten ist.",
|
||||
"Setup.RemoteE2EE.PlaceholderPassphrase": "Geben Sie Ihre Passphrase ein",
|
||||
"Setup.RemoteE2EE.StronglyRecommendedLine1": "Wenn Sie die Ende-zu-Ende-Verschlüsselung aktivieren, werden Ihre Daten auf Ihrem Gerät verschlüsselt, bevor sie an den Remote-Server gesendet werden. Das bedeutet, dass selbst bei Zugriff auf den Server niemand Ihre Daten ohne die Passphrase lesen kann. Merken Sie sich Ihre Passphrase unbedingt, da sie auch auf anderen Geräten zum Entschlüsseln Ihrer Daten benötigt wird.",
|
||||
"Setup.RemoteE2EE.StronglyRecommendedLine2": "Bitte beachten Sie außerdem: Wenn Sie Peer-to-Peer-Synchronisation verwenden, wird diese Konfiguration auch dann genutzt, wenn Sie künftig zu anderen Methoden wechseln und sich mit einem Remote-Server verbinden.",
|
||||
"Setup.RemoteE2EE.StronglyRecommendedTitle": "Dringend empfohlen",
|
||||
"Setup.RemoteE2EE.Title": "Ende-zu-Ende-Verschlüsselung",
|
||||
"Setup.ScanQRCode.ButtonClose": "Diesen Dialog schließen",
|
||||
"Setup.ScanQRCode.Guidance": "Bitte folgen Sie den untenstehenden Schritten, um die Einstellungen von Ihrem vorhandenen Gerät zu importieren.",
|
||||
"Setup.ScanQRCode.Step1": "Lassen Sie auf diesem Gerät bitte diesen Vault geöffnet.",
|
||||
"Setup.ScanQRCode.Step2": "Öffnen Sie auf dem Quellgerät Obsidian.",
|
||||
"Setup.ScanQRCode.Step3": "Führen Sie auf dem Quellgerät im Befehlsmenü den Befehl „Einstellungen als QR-Code anzeigen“ aus.",
|
||||
"Setup.ScanQRCode.Step4": "Wechseln Sie auf diesem Gerät zur Kamera-App oder verwenden Sie einen QR-Code-Scanner, um den angezeigten QR-Code zu scannen.",
|
||||
"Setup.ScanQRCode.Title": "QR-Code scannen",
|
||||
"Setup.UseSetupURI.ButtonCancel": "Abbrechen",
|
||||
"Setup.UseSetupURI.ButtonProceed": "Einstellungen testen und fortfahren",
|
||||
"Setup.UseSetupURI.ErrorFailedToParse": "Die Setup-URI konnte nicht verarbeitet werden. Bitte prüfen Sie URI und Passphrase.",
|
||||
"Setup.UseSetupURI.ErrorPassphraseRequired": "Bitte geben Sie die Passphrase des Vaults ein.",
|
||||
"Setup.UseSetupURI.GuidanceLine1": "Bitte geben Sie die Setup-URI ein, die während der Servereinrichtung oder auf einem anderen Gerät erzeugt wurde, zusammen mit der Passphrase des Vaults.",
|
||||
"Setup.UseSetupURI.GuidanceLine2": "Sie können eine neue Setup-URI erzeugen, indem Sie im Befehlsmenü den Befehl „Einstellungen als neue Setup-URI kopieren“ ausführen.",
|
||||
"Setup.UseSetupURI.InvalidInfo": "Die Setup-URI ist ungültig. Bitte prüfen Sie sie und versuchen Sie es erneut.",
|
||||
"Setup.UseSetupURI.LabelPassphrase": "Vault-Passphrase",
|
||||
"Setup.UseSetupURI.LabelSetupURI": "Setup-URI",
|
||||
"Setup.UseSetupURI.PlaceholderPassphrase": "Geben Sie die Passphrase Ihres Vaults ein",
|
||||
"Setup.UseSetupURI.Title": "Setup-URI eingeben",
|
||||
"Setup.UseSetupURI.ValidInfo": "Die Setup-URI ist gültig und kann verwendet werden.",
|
||||
"Show full banner": "Vollständiges Banner anzeigen",
|
||||
"Show icon only": "Nur Symbol anzeigen",
|
||||
"Show status icon instead of file warnings banner": "Statussymbol statt Dateiwarnungsbanner anzeigen",
|
||||
"Some devices have differing progress values (max: ${maxProgress}, min: ${minProgress}).\nThis may indicate that some devices have not completed synchronisation, which could lead to conflicts. Strongly recommend confirming that all devices are synchronised before proceeding.": "Einige Geräte haben unterschiedliche Fortschrittswerte (max: ${maxProgress}, min: ${minProgress}).\nDas kann darauf hindeuten, dass einige Geräte die Synchronisation noch nicht abgeschlossen haben, was zu Konflikten führen könnte. Es wird dringend empfohlen, vor dem Fortfahren zu bestätigen, dass alle Geräte synchronisiert sind.",
|
||||
"Switch to IDB": "Zu IDB wechseln",
|
||||
"Switch to IndexedDB": "Zu IndexedDB wechseln",
|
||||
"Synchronisation utilising journal files. You must have set up an S3/MinIO/R2 compatible object storage.": "Synchronisation über Journaldateien. Sie müssen einen S3/MinIO/R2-kompatiblen Objektspeicher eingerichtet haben。",
|
||||
"Synchronising files": "Zu synchronisierende Dateien",
|
||||
"Syncing": "Synchronisierung",
|
||||
"Target patterns": "Zielmuster",
|
||||
"The following accepted nodes are missing its node information:\n- ${missingNodes}\n\nThis indicates that they have not been connected for some time or have been left on an older version.\nIt is preferable to update all devices if possible. If you have any devices that are no longer in use, you can clear all accepted nodes by locking the remote once.": "Für die folgenden akzeptierten Knoten fehlen die Knoteninformationen:\n- ${missingNodes}\n\nDas deutet darauf hin, dass sie seit einiger Zeit nicht verbunden waren oder noch eine ältere Version verwenden.\nEs ist nach Möglichkeit besser, zunächst alle Geräte zu aktualisieren. Wenn Sie Geräte haben, die nicht mehr verwendet werden, können Sie alle akzeptierten Knoten löschen, indem Sie die Remote-Datenbank einmal sperren.",
|
||||
"This feature enables direct synchronisation between devices. No server is required, but both devices must be online at the same time for synchronisation to occur, and some features may be limited. Internet connection is only required to signalling (detecting peers) and not for data transfer.": "Diese Funktion ermöglicht die direkte Synchronisation zwischen Geräten. Es wird kein Server benötigt, aber beide Geräte müssen gleichzeitig online sein, damit synchronisiert werden kann, und einige Funktionen können eingeschränkt sein. Eine Internetverbindung wird nur für das Signalling (Erkennen von Peers) benötigt, nicht für die Datenübertragung。",
|
||||
"This is an advanced option for users who do not have a URI or who wish to configure detailed settings.": "Dies ist eine erweiterte Option für Benutzer, die keine URI haben oder detaillierte Einstellungen manuell konfigurieren möchten。",
|
||||
"This is the most suitable synchronisation method for the design. All functions are available. You must have set up a CouchDB instance.": "Dies ist die für das Design am besten geeignete Synchronisationsmethode. Alle Funktionen sind verfügbar. Sie müssen eine CouchDB-Instanz eingerichtet haben。",
|
||||
"This will recreate chunks for all files. If there were missing chunks, this may fix the errors.": "Dadurch werden die Chunks für alle Dateien neu erstellt. Falls Chunks fehlen, können die Fehler dadurch behoben werden.",
|
||||
"Use a Setup URI (Recommended)": "Setup-URI verwenden (empfohlen)",
|
||||
"Verify all": "Alle prüfen",
|
||||
"Verify and repair all files": "Alle Dateien prüfen und reparieren",
|
||||
"We will now guide you through a few questions to simplify the synchronisation setup.": "Wir führen Sie nun durch einige Fragen, um die Synchronisationseinrichtung zu vereinfachen.",
|
||||
"We will now proceed with the server configuration.": "Wir fahren nun mit der Serverkonfiguration fort。",
|
||||
"Welcome to Self-hosted LiveSync": "Willkommen bei Self-hosted LiveSync",
|
||||
"xxhash32 (Fast but less collision resistance)": "xxhash32 (schnell, aber geringere Kollisionsresistenz)",
|
||||
"xxhash64 (Fastest)": "xxhash64 (am schnellsten)",
|
||||
"Yes, I want to add this device to my existing synchronisation": "Ja, ich möchte dieses Gerät zu meiner bestehenden Synchronisation hinzufügen",
|
||||
"Yes, I want to set up a new synchronisation": "Ja, ich möchte eine neue Synchronisation einrichten",
|
||||
"You are adding this device to an existing synchronisation setup.": "Sie fügen dieses Gerät zu einer bestehenden Synchronisationseinrichtung hinzu."
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,687 @@
|
||||
{
|
||||
"(Active)": "(Activo)",
|
||||
"(BETA) Always overwrite with a newer file": "(BETA) Sobrescribir siempre con archivo más nuevo",
|
||||
"(Beta) Use ignore files": "(Beta) Usar archivos de ignorar",
|
||||
"(Days passed, 0 to disable automatic-deletion)": "(Días transcurridos, 0 para desactivar)",
|
||||
"(ex. Read chunks online) If this option is enabled, LiveSync reads chunks online directly instead of replicating them locally. Increasing Custom chunk size is recommended.": "(Ej: Leer chunks online) Lee chunks directamente en línea. Aumente tamaño de chunks personalizados",
|
||||
"(MB) If this is set, changes to local and remote files that are larger than this will be skipped. If the file becomes smaller again, a newer one will be used.": "(MB) Saltar cambios en archivos locales/remotos mayores a este tamaño. Si se reduce, se usará versión nueva",
|
||||
"(Mega chars)": "(Millones de caracteres)",
|
||||
"(Not recommended) If set, credentials will be stored in the file.": "(No recomendado) Almacena credenciales en el archivo",
|
||||
"(Obsolete) Use an old adapter for compatibility": "(Obsoleto) Usar adaptador antiguo",
|
||||
"(RegExp) Empty to sync all files. Set filter as a regular expression to limit synchronising files.": "(RegExp) Déjelo vacío para sincronizar todos los archivos. Defina un filtro como expresión regular para limitar los archivos que se sincronizan.",
|
||||
"(RegExp) If this is set, any changes to local and remote files that match this will be skipped.": "(RegExp) Si se establece, se omitirá cualquier cambio en archivos locales y remotos que coincida con este patrón.",
|
||||
"(Select this if you are already using synchronisation on another computer or smartphone.) This option is suitable if you are new to LiveSync and want to set it up from scratch.": "(Seleccione esto si ya utiliza la sincronización en otro ordenador o teléfono). Esta opción es adecuada si desea añadir este dispositivo a una configuración de LiveSync existente。",
|
||||
"(Select this if you are configuring this device as the first synchronisation device.) This option is suitable if you are new to LiveSync and want to set it up from scratch.": "(Seleccione esto si está configurando este dispositivo como el primer dispositivo de sincronización). Esta opción es adecuada si es nuevo en LiveSync y desea configurarlo desde cero。",
|
||||
"A Setup URI is a single string of text containing your server address and authentication details. Using a URI, if one was generated by your server installation script, provides a simple and secure configuration.": "Un URI de configuración es una única cadena de texto que contiene la dirección del servidor y los datos de autenticación. Si el script de instalación de su servidor generó un URI, usarlo proporciona una configuración sencilla y segura。",
|
||||
"Access Key": "Clave de acceso",
|
||||
"Activate": "Activar",
|
||||
"Add default patterns": "Añadir patrones predeterminados",
|
||||
"Add new connection": "Añadir conexión",
|
||||
"Always prompt merge conflicts": "Siempre preguntar en conflictos",
|
||||
"Apply Latest Change if Conflicting": "Aplicar último cambio en conflictos",
|
||||
"Apply preset configuration": "Aplicar configuración predefinida",
|
||||
"Ask a passphrase at every launch": "Solicitar la frase de contraseña en cada inicio",
|
||||
"Automatically Sync all files when opening Obsidian.": "Sincronizar automáticamente todos los archivos al abrir Obsidian",
|
||||
"Back": "Volver",
|
||||
"Back to non-configured": "Volver a no configurado",
|
||||
"Batch database update": "Actualización por lotes de BD",
|
||||
"Batch limit": "Límite de lotes",
|
||||
"Batch size": "Tamaño de lote",
|
||||
"Batch size of on-demand fetching": "Tamaño de lote para obtención bajo demanda",
|
||||
"Before v0.17.16, we used an old adapter for the local database. Now the new adapter is preferred. However, it needs local database rebuilding. Please disable this toggle when you have enough time. If leave it enabled, also while fetching from the remote database, you will be asked to disable this.": "Antes de v0.17.16 usábamos adaptador antiguo. Nuevo adaptador requiere reconstruir BD local. Desactive cuando pueda",
|
||||
"Bucket Name": "Nombre del bucket",
|
||||
"Cancel": "Cancelar",
|
||||
"Check and convert non-path-obfuscated files": "Comprobar y convertir archivos sin ofuscación de ruta",
|
||||
"Check for documents that have not been converted to path-obfuscated IDs and convert them if necessary.": "Comprueba los documentos que aún no se hayan convertido a identificadores con ruta ofuscada y conviértelos si es necesario.",
|
||||
"cmdConfigSync.showCustomizationSync": "Mostrar sincronización de personalización",
|
||||
"Comma separated `.gitignore, .dockerignore`": "Separados por comas: `.gitignore, .dockerignore`",
|
||||
"Compare the content of files between on local database and storage. If not matched, you will be asked which one you want to keep.": "Compara el contenido de los archivos entre la base de datos local y el almacenamiento. Si no coinciden, se te preguntará cuál deseas conservar.",
|
||||
"Compatibility (Conflict Behaviour)": "Compatibilidad (comportamiento de conflictos)",
|
||||
"Compatibility (Database structure)": "Compatibilidad (estructura de la base de datos)",
|
||||
"Compatibility (Internal API Usage)": "Compatibilidad (uso de la API interna)",
|
||||
"Compatibility (Metadata)": "Compatibilidad (metadatos)",
|
||||
"Compatibility (Remote Database)": "Compatibilidad (base de datos remota)",
|
||||
"Compatibility (Trouble addressed)": "Compatibilidad (problemas corregidos)",
|
||||
"Compute revisions for chunks (Previous behaviour)": "Calcular revisiones para chunks (comportamiento anterior)",
|
||||
"Configuration Encryption": "Cifrado de configuración",
|
||||
"Configure": "Configurar",
|
||||
"Configure And Change Remote": "Configurar y cambiar remoto",
|
||||
"Configure E2EE": "Configurar E2EE",
|
||||
"Configure Remote": "Configurar remoto",
|
||||
"Configure the same server information as your other devices again, manually, very advanced users only.": "Configure manualmente la misma información del servidor que en sus otros dispositivos. Solo para usuarios muy avanzados。",
|
||||
"Connection Method": "Método de conexión",
|
||||
"Continue to CouchDB setup": "Continuar con la configuración de CouchDB",
|
||||
"Continue to Peer-to-Peer only setup": "Continuar con la configuración solo Peer-to-Peer",
|
||||
"Continue to S3/MinIO/R2 setup": "Continuar con la configuración de S3/MinIO/R2",
|
||||
"Copy": "Copiar",
|
||||
"CouchDB Connection Tweak": "Ajustes de conexión de CouchDB",
|
||||
"Cross-platform": "Multiplataforma",
|
||||
"Current adapter: {adapter}": "Adaptador actual: {adapter}",
|
||||
"Customization Sync": "Sincronización de personalización",
|
||||
"Customization Sync (Beta3)": "Sincronización de personalización (Beta3)",
|
||||
"Data Compression": "Compresión de datos",
|
||||
"Database Adapter": "Adaptador de base de datos",
|
||||
"Database Name": "Nombre de la base de datos",
|
||||
"Database suffix": "Sufijo de base de datos",
|
||||
"Default": "Predeterminado",
|
||||
"Delay conflict resolution of inactive files": "Retrasar resolución de conflictos en archivos inactivos",
|
||||
"Delay merge conflict prompt for inactive files.": "Retrasar aviso de fusión para archivos inactivos",
|
||||
"Delete": "Eliminar",
|
||||
"Delete all customization sync data": "Eliminar todos los datos de sincronización de personalización",
|
||||
"Delete all data on the remote server.": "Eliminar todos los datos del servidor remoto.",
|
||||
"Delete local database to reset or uninstall Self-hosted LiveSync": "Eliminar la base de datos local para restablecer o desinstalar Self-hosted LiveSync",
|
||||
"Delete old metadata of deleted files on start-up": "Borrar metadatos viejos al iniciar",
|
||||
"Delete Remote Configuration": "Eliminar configuración remota",
|
||||
"Delete remote configuration '{name}'?": "¿Eliminar la configuración remota '{name}'?",
|
||||
"desktop": "equipo de escritorio",
|
||||
"Developer": "Desarrollador",
|
||||
"Device name": "Nombre del dispositivo",
|
||||
"Device Setup Method": "Método de configuración del dispositivo",
|
||||
"Disables all synchronization and restart.": "Desactiva toda la sincronización y reinicia la aplicación.",
|
||||
"Disables logging, only shows notifications. Please disable if you report an issue.": "Desactiva registros, solo muestra notificaciones. Desactívelo si reporta un problema.",
|
||||
"Display Language": "Idioma de visualización",
|
||||
"Display name": "Nombre para mostrar",
|
||||
"Do not check configuration mismatch before replication": "No verificar incompatibilidades antes de replicar",
|
||||
"Do not keep metadata of deleted files.": "No conservar metadatos de archivos borrados",
|
||||
"Do not split chunks in the background": "No dividir chunks en segundo plano",
|
||||
"Do not use internal API": "No usar API interna",
|
||||
"Duplicate": "Duplicar",
|
||||
"Duplicate remote": "Duplicar remoto",
|
||||
"E2EE Configuration": "Configuración de E2EE",
|
||||
"Edge case addressing (Behaviour)": "Tratamiento de casos límite (comportamiento)",
|
||||
"Edge case addressing (Database)": "Tratamiento de casos límite (base de datos)",
|
||||
"Edge case addressing (Processing)": "Tratamiento de casos límite (procesamiento)",
|
||||
"Emergency restart": "Reinicio de emergencia",
|
||||
"Enable advanced features": "Habilitar características avanzadas",
|
||||
"Enable customization sync": "Habilitar sincronización de personalización",
|
||||
"Enable Developers' Debug Tools.": "Habilitar herramientas de depuración",
|
||||
"Enable edge case treatment features": "Habilitar manejo de casos límite",
|
||||
"Enable poweruser features": "Habilitar funciones para usuarios avanzados",
|
||||
"Enable this if your Object Storage doesn't support CORS": "Habilitar si su almacenamiento no soporta CORS",
|
||||
"Enable this option to automatically apply the most recent change to documents even when it conflicts": "Aplicar cambios recientes automáticamente aunque generen conflictos",
|
||||
"Encrypt contents on the remote database. If you use the plugin's synchronization feature, enabling this is recommended.": "Cifrar contenido en la base de datos remota. Se recomienda habilitar si usa la sincronización del plugin.",
|
||||
"Encrypting sensitive configuration items": "Cifrando elementos sensibles",
|
||||
"Encryption phassphrase. If changed, you should overwrite the server's database with the new (encrypted) files.": "Frase de cifrado. Si la cambia, sobrescriba la base del servidor con los nuevos archivos cifrados.",
|
||||
"End-to-End Encryption": "Cifrado de extremo a extremo",
|
||||
"Endpoint URL": "URL del endpoint",
|
||||
"Enhance chunk size": "Mejorar tamaño de chunks",
|
||||
"Enter Server Information": "Introducir información del servidor",
|
||||
"Enter the server information manually": "Introducir manualmente la información del servidor",
|
||||
"Export": "Exportar",
|
||||
"Fetch": "Obtener",
|
||||
"Fetch chunks on demand": "Obtener chunks bajo demanda",
|
||||
"Fetch database with previous behaviour": "Obtener BD con comportamiento anterior",
|
||||
"Fetch remote settings": "Obtener ajustes remotos",
|
||||
"File to resolve conflict": "Archivo para resolver el conflicto",
|
||||
"Filename": "Nombre de archivo",
|
||||
"First, please select the option that best describes your current situation.": "Primero, seleccione la opción que describa mejor su situación actual。",
|
||||
"Flag and restart": "Marcar y reiniciar",
|
||||
"Forces the file to be synced when opened.": "Forzar sincronización al abrir archivo",
|
||||
"Fresh Start Wipe": "Borrado para reinicio completo",
|
||||
"Garbage Collection V3 (Beta)": "Recolección de basura V3 (Beta)",
|
||||
"Handle files as Case-Sensitive": "Manejar archivos como sensibles a mayúsculas",
|
||||
"Hidden Files": "Archivos ocultos",
|
||||
"How to display network errors when the sync server is unreachable.": "Cómo mostrar los errores de red cuando el servidor de sincronización no está disponible.",
|
||||
"How would you like to configure the connection to your server?": "¿Cómo desea configurar la conexión con su servidor?",
|
||||
"I am adding a device to an existing synchronisation setup": "Estoy agregando un dispositivo a una configuración de sincronización existente",
|
||||
"I am setting this up for the first time": "Estoy configurando esto por primera vez",
|
||||
"I know my server details, let me enter them": "Conozco los datos de mi servidor; permítame introducirlos",
|
||||
"If disabled(toggled), chunks will be split on the UI thread (Previous behaviour).": "Si se desactiva, chunks se dividen en hilo UI (comportamiento anterior)",
|
||||
"If enabled per-filed efficient customization sync will be used. We need a small migration when enabling this. And all devices should be updated to v0.23.18. Once we enabled this, we lost a compatibility with old versions.": "Habilita sincronización eficiente por archivo. Requiere migración y actualizar todos dispositivos a v0.23.18. Pierde compatibilidad con versiones antiguas",
|
||||
"If enabled, chunks will be split into no more than 100 items. However, dedupe is slightly weaker.": "Divide chunks en máximo 100 ítems. Menos eficiente en deduplicación",
|
||||
"If enabled, newly created chunks are temporarily kept within the document, and graduated to become independent chunks once stabilised.": "Chunks nuevos se mantienen temporalmente en el documento hasta estabilizarse",
|
||||
"If enabled, the ⛔ icon will be shown inside the status instead of the file warnings banner. No details will be shown.": "Si se activa, se mostrará el icono ⛔ en el estado en lugar del banner de advertencia de archivos. No se mostrarán detalles.",
|
||||
"If enabled, the file under 1kb will be processed in the UI thread.": "Archivos <1kb se procesan en hilo UI",
|
||||
"If enabled, the notification of hidden files change will be suppressed.": "Si se habilita, se suprimirá la notificación de cambios en archivos ocultos.",
|
||||
"If this enabled, all chunks will be stored with the revision made from its content. (Previous behaviour)": "Si se habilita, todos los chunks se almacenan con la revisión hecha desde su contenido. (comportamiento anterior)",
|
||||
"If this enabled, All files are handled as case-Sensitive (Previous behaviour).": "Si se habilita, todos los archivos se manejan como sensibles a mayúsculas (comportamiento anterior)",
|
||||
"If this enabled, chunks will be split into semantically meaningful segments. Not all platforms support this feature.": "Divide chunks en segmentos semánticos. No todos los sistemas lo soportan",
|
||||
"If this is set, changes to local files which are matched by the ignore files will be skipped. Remote changes are determined using local ignore files.": "Saltar cambios en archivos locales que coincidan con ignore files. Cambios remotos usan ignore files locales",
|
||||
"If this option is enabled, PouchDB will hold the connection open for 60 seconds, and if no change arrives in that time, close and reopen the socket, instead of holding it open indefinitely. Useful when a proxy limits request duration but can increase resource usage.": "Mantiene conexión 60s. Si no hay cambios, reinicia socket. Útil con proxies limitantes",
|
||||
"Ignore files": "Archivos a ignorar",
|
||||
"Ignore patterns": "Patrones de exclusión",
|
||||
"Import connection": "Importar conexión",
|
||||
"Incubate Chunks in Document": "Incubar chunks en documento",
|
||||
"Initialise all journal history, On the next sync, every item will be received and sent.": "Restablece todo el historial del diario. En la próxima sincronización se recibirán y enviarán todos los elementos.",
|
||||
"Interval (sec)": "Intervalo (segundos)",
|
||||
"Keep empty folder": "Mantener carpetas vacías",
|
||||
"lang-de": "Alemán",
|
||||
"lang-es": "Español",
|
||||
"lang-fr": "Français",
|
||||
"lang-ja": "Japonés",
|
||||
"lang-ru": "Ruso",
|
||||
"lang-zh": "Chino simplificado",
|
||||
"lang-zh-tw": "Chino tradicional",
|
||||
"Later": "Más tarde",
|
||||
"Limit: {datetime} ({timestamp})": "Límite: {datetime} ({timestamp})",
|
||||
"LiveSync could not handle multiple vaults which have same name without different prefix, This should be automatically configured.": "LiveSync no puede manejar múltiples bóvedas con mismo nombre sin prefijo. Se configura automáticamente",
|
||||
"liveSyncReplicator.beforeLiveSync": "Antes de LiveSync, inicia OneShot...",
|
||||
"liveSyncReplicator.cantReplicateLowerValue": "No podemos replicar un valor más bajo.",
|
||||
"liveSyncReplicator.checkingLastSyncPoint": "Buscando el último punto sincronizado.",
|
||||
"liveSyncReplicator.couldNotConnectTo": "No se pudo conectar a ${uri} : ${name} \n(${db})",
|
||||
"liveSyncReplicator.couldNotConnectToRemoteDb": "No se pudo conectar a base de datos remota: ${d}",
|
||||
"liveSyncReplicator.couldNotConnectToServer": "No se pudo conectar al servidor.",
|
||||
"liveSyncReplicator.couldNotConnectToURI": "No se pudo conectar a ${uri}:${dbRet}",
|
||||
"liveSyncReplicator.couldNotMarkResolveRemoteDb": "No se pudo marcar como resuelta la base de datos remota.",
|
||||
"liveSyncReplicator.liveSyncBegin": "Inicio de LiveSync...",
|
||||
"liveSyncReplicator.lockRemoteDb": "Bloquear base de datos remota para prevenir corrupción de datos",
|
||||
"liveSyncReplicator.markDeviceResolved": "Marcar este dispositivo como 'resuelto'.",
|
||||
"liveSyncReplicator.oneShotSyncBegin": "Inicio de sincronización OneShot... (${syncMode})",
|
||||
"liveSyncReplicator.remoteDbCorrupted": "La base de datos remota es más nueva o está dañada, asegúrese de tener la última versión de self-hosted-livesync instalada",
|
||||
"liveSyncReplicator.remoteDbCreatedOrConnected": "Base de datos remota creada o conectada",
|
||||
"liveSyncReplicator.remoteDbDestroyed": "Base de datos remota destruida",
|
||||
"liveSyncReplicator.remoteDbDestroyError": "Algo ocurrió al destruir base de datos remota:",
|
||||
"liveSyncReplicator.remoteDbMarkedResolved": "Base de datos remota marcada como resuelta.",
|
||||
"liveSyncReplicator.replicationClosed": "Replicación cerrada",
|
||||
"liveSyncReplicator.replicationInProgress": "Replicación en curso",
|
||||
"liveSyncReplicator.retryLowerBatchSize": "Reintentar con tamaño de lote más bajo:${batch_size}/${batches_limit}",
|
||||
"liveSyncReplicator.unlockRemoteDb": "Desbloquear base de datos remota para prevenir corrupción de datos",
|
||||
"liveSyncSetting.errorNoSuchSettingItem": "No existe el ajuste: ${key}",
|
||||
"liveSyncSetting.originalValue": "Original: ${value}",
|
||||
"liveSyncSetting.valueShouldBeInRange": "El valor debe estar entre ${min} y ${max}",
|
||||
"liveSyncSettings.btnApply": "Aplicar",
|
||||
"Local Database Tweak": "Ajustes de la base de datos local",
|
||||
"Lock": "Bloquear",
|
||||
"Lock Server": "Bloquear servidor",
|
||||
"Lock the remote server to prevent synchronization with other devices.": "Bloquea el servidor remoto para impedir la sincronización con otros dispositivos.",
|
||||
"logPane.autoScroll": "Autodesplazamiento",
|
||||
"logPane.logWindowOpened": "Ventana de registro abierta",
|
||||
"logPane.pause": "Pausar",
|
||||
"logPane.title": "Registro de Self-hosted LiveSync",
|
||||
"logPane.wrap": "Ajustar",
|
||||
"Maximum delay for batch database updating": "Retraso máximo para actualización por lotes",
|
||||
"Maximum file size": "Tamaño máximo de archivo",
|
||||
"Maximum Incubating Chunk Size": "Tamaño máximo de chunks incubados",
|
||||
"Maximum Incubating Chunks": "Máximo de chunks incubados",
|
||||
"Maximum Incubation Period": "Periodo máximo de incubación",
|
||||
"MB (0 to disable).": "MB (0 para desactivar)",
|
||||
"Memory cache": "Caché en memoria",
|
||||
"Memory cache size (by total characters)": "Tamaño caché memoria (por caracteres)",
|
||||
"Memory cache size (by total items)": "Tamaño caché memoria (por ítems)",
|
||||
"Merge": "Fusionar",
|
||||
"Minimum delay for batch database updating": "Retraso mínimo para actualización por lotes",
|
||||
"moduleCheckRemoteSize.logCheckingStorageSizes": "Comprobando tamaños de almacenamiento",
|
||||
"moduleCheckRemoteSize.logCurrentStorageSize": "Tamaño del almacenamiento remoto: ${measuredSize}",
|
||||
"moduleCheckRemoteSize.logExceededWarning": "Tamaño del almacenamiento remoto: ${measuredSize} superó ${notifySize}",
|
||||
"moduleCheckRemoteSize.logThresholdEnlarged": "El umbral se ha ampliado a ${size}MB",
|
||||
"moduleCheckRemoteSize.msgConfirmRebuild": "Esto puede llevar un poco de tiempo. ¿Realmente quieres reconstruir todo ahora?",
|
||||
"moduleCheckRemoteSize.msgDatabaseGrowing": "**¡Tu base de datos está creciendo!** Pero no te preocupes, podemos abordarlo ahora. El tiempo antes de quedarse sin espacio en el almacenamiento remoto.\n\n| Tamaño medido | Tamaño configurado |\n| --- | --- |\n| ${estimatedSize} | ${maxSize} |\n\n> [!MORE]-\n> Si lo has estado utilizando durante muchos años, puede haber fragmentos no referenciados - es decir, basura - acumulándose en la base de datos. Por lo tanto, recomendamos reconstruir todo. Probablemente se volverá mucho más pequeño.\n>\n> Si el volumen de tu bóveda simplemente está aumentando, es mejor reconstruir todo después de organizar los archivos. Self-hosted LiveSync no elimina los datos reales incluso si los eliminas para acelerar el proceso. Está aproximadamente [documentado](https://github.com/vrtmrz/obsidian-livesync/blob/main/docs/tech_info.md).\n>\n> Si no te importa el aumento, puedes aumentar el límite de notificación en 100 MB. Este es el caso si lo estás ejecutando en tu propio servidor. Sin embargo, es mejor reconstruir todo de vez en cuando.\n>\n\n> [!WARNING]\n> Si realizas la reconstrucción completa, asegúrate de que todos los dispositivos estén sincronizados. El complemento fusionará tanto como sea posible, sin embargo.\n",
|
||||
"moduleCheckRemoteSize.msgSetDBCapacity": "Podemos configurar una advertencia de capacidad máxima de base de datos, **para tomar medidas antes de quedarse sin espacio en el almacenamiento remoto**.\n¿Quieres habilitar esto?\n\n> [!MORE]-\n> - 0: No advertir sobre el tamaño del almacenamiento.\n> Esto es recomendado si tienes suficiente espacio en el almacenamiento remoto, especialmente si lo tienes autoalojado. Y puedes comprobar el tamaño del almacenamiento y reconstruir manualmente.\n> - 800: Advertir si el tamaño del almacenamiento remoto supera los 800 MB.\n> Esto es recomendado si estás usando fly.io con un límite de 1 GB o IBM Cloudant.\n> - 2000: Advertir si el tamaño del almacenamiento remoto supera los 2 GB.\n\nSi hemos alcanzado el límite, se nos pedirá que aumentemos el límite paso a paso.\n",
|
||||
"moduleCheckRemoteSize.option2GB": "2GB (Estándar)",
|
||||
"moduleCheckRemoteSize.option800MB": "800MB (Cloudant, fly.io)",
|
||||
"moduleCheckRemoteSize.optionAskMeLater": "Pregúntame más tarde",
|
||||
"moduleCheckRemoteSize.optionDismiss": "Descartar",
|
||||
"moduleCheckRemoteSize.optionIncreaseLimit": "aumentar a ${newMax}MB",
|
||||
"moduleCheckRemoteSize.optionNoWarn": "No, nunca advertir por favor",
|
||||
"moduleCheckRemoteSize.optionRebuildAll": "Reconstruir todo ahora",
|
||||
"moduleCheckRemoteSize.titleDatabaseSizeLimitExceeded": "El tamaño del almacenamiento remoto superó el límite",
|
||||
"moduleCheckRemoteSize.titleDatabaseSizeNotify": "Configuración de notificación de tamaño de base de datos",
|
||||
"moduleInputUIObsidian.defaultTitleConfirmation": "Confirmación",
|
||||
"moduleInputUIObsidian.defaultTitleSelect": "Seleccionar",
|
||||
"moduleInputUIObsidian.optionNo": "No",
|
||||
"moduleInputUIObsidian.optionYes": "Sí",
|
||||
"moduleLiveSyncMain.logAdditionalSafetyScan": "Escanéo de seguridad adicional...",
|
||||
"moduleLiveSyncMain.logLoadingPlugin": "Cargando complemento...",
|
||||
"moduleLiveSyncMain.logPluginInitCancelled": "La inicialización del complemento fue cancelada por un módulo",
|
||||
"moduleLiveSyncMain.logPluginVersion": "Self-hosted LiveSync v${manifestVersion} ${packageVersion}",
|
||||
"moduleLiveSyncMain.logReadChangelog": "LiveSync se ha actualizado, ¡por favor lee el registro de cambios!",
|
||||
"moduleLiveSyncMain.logSafetyScanCompleted": "Escanéo de seguridad adicional completado",
|
||||
"moduleLiveSyncMain.logSafetyScanFailed": "El escaneo de seguridad adicional ha fallado en un módulo",
|
||||
"moduleLiveSyncMain.logUnloadingPlugin": "Descargando complemento...",
|
||||
"moduleLiveSyncMain.logVersionUpdate": "LiveSync se ha actualizado, en caso de actualizaciones que rompan, toda la sincronización automática se ha desactivado temporalmente. Asegúrate de que todos los dispositivos estén actualizados antes de habilitar.",
|
||||
"moduleLiveSyncMain.msgScramEnabled": "Self-hosted LiveSync se ha configurado para ignorar algunos eventos. ¿Es esto correcto?\n\n| Tipo | Estado | Nota |\n|:---:|:---:|---|\n| Eventos de almacenamiento | ${fileWatchingStatus} | Se ignorará cada modificación |\n| Eventos de base de datos | ${parseReplicationStatus} | Cada cambio sincronizado se pospondrá |\n\n¿Quieres reanudarlos y reiniciar Obsidian?\n\n> [!DETAILS]-\n> Estas banderas son establecidas por el complemento mientras se reconstruye o se obtiene. Si el proceso termina de forma anormal, puede mantenerse sin querer.\n> Si no estás seguro, puedes intentar volver a ejecutar estos procesos. Asegúrate de hacer una copia de seguridad de tu bóveda.\n",
|
||||
"moduleLiveSyncMain.optionKeepLiveSyncDisabled": "Mantener LiveSync desactivado",
|
||||
"moduleLiveSyncMain.optionResumeAndRestart": "Reanudar y reiniciar Obsidian",
|
||||
"moduleLiveSyncMain.titleScramEnabled": "Scram habilitado",
|
||||
"moduleLocalDatabase.logWaitingForReady": "Esperando a que la base de datos esté lista...",
|
||||
"moduleLog.showLog": "Mostrar registro",
|
||||
"moduleMigration.docUri": "https://github.com/vrtmrz/obsidian-livesync/blob/main/README_ES.md#how-to-use",
|
||||
"moduleMigration.logBulkSendCorrupted": "El envío de fragmentos en bloque se ha habilitado, sin embargo, esta función se ha corrompido. Disculpe las molestias. Deshabilitado automáticamente.",
|
||||
"moduleMigration.logFetchRemoteTweakFailed": "Error al obtener los valores de ajuste remoto",
|
||||
"moduleMigration.logLocalDatabaseNotReady": "¡Algo salió mal! La base de datos local no está lista",
|
||||
"moduleMigration.logMigratedSameBehaviour": "Migrado a db:${current} con el mismo comportamiento que antes",
|
||||
"moduleMigration.logMigrationFailed": "La migración falló o se canceló de ${old} a ${current}",
|
||||
"moduleMigration.logRedflag2CreationFail": "Error al crear redflag2",
|
||||
"moduleMigration.logRemoteTweakUnavailable": "No se pudieron obtener los valores de ajuste remoto",
|
||||
"moduleMigration.logSetupCancelled": "La configuración ha sido cancelada, ¡Self-hosted LiveSync está esperando tu configuración!",
|
||||
"moduleMigration.msgFetchRemoteAgain": "Como ya sabrás, Self-hosted LiveSync ha cambiado su comportamiento predeterminado y la estructura de la base de datos.\n\nAfortunadamente, con tu tiempo y esfuerzo, la base de datos remota parece haber sido ya migrada. ¡Felicidades!\n\nSin embargo, necesitamos un poco más. La configuración de este dispositivo no es compatible con la base de datos remota. Necesitaremos volver a obtener la base de datos remota. ¿Debemos obtenerla nuevamente ahora?\n\n___Nota: No podemos sincronizar hasta que la configuración haya sido cambiada y la base de datos haya sido obtenida nuevamente.___\n___Nota2: Los fragmentos son completamente inmutables, solo podemos obtener los metadatos y diferencias.___",
|
||||
"moduleMigration.msgInitialSetup": "Tu dispositivo **aún no ha sido configurado**. Permíteme guiarte a través del proceso de configuración.\n\nTen en cuenta que todo el contenido del diálogo se puede copiar al portapapeles. Si necesitas consultarlo más tarde, puedes pegarlo en una nota en Obsidian. También puedes traducirlo a tu idioma utilizando una herramienta de traducción.\n\nPrimero, ¿tienes **URI de configuración**?\n\nNota: Si no sabes qué es, consulta la [documentación](${URI_DOC}).",
|
||||
"moduleMigration.msgRecommendSetupUri": "Te recomendamos encarecidamente que generes una URI de configuración y la utilices.\nSi no tienes conocimientos al respecto, consulta la [documentación](${URI_DOC}) (Lo siento de nuevo, pero es importante).\n\n¿Cómo quieres configurarlo manualmente?",
|
||||
"moduleMigration.msgSinceV02321": "Desde la versión v0.23.21, Self-hosted LiveSync ha cambiado el comportamiento predeterminado y la estructura de la base de datos. Se han realizado los siguientes cambios:\n\n1. **Sensibilidad a mayúsculas de los nombres de archivo**\n El manejo de los nombres de archivo ahora no distingue entre mayúsculas y minúsculas. Este cambio es beneficioso para la mayoría de las plataformas, excepto Linux y iOS, que no gestionan efectivamente la sensibilidad a mayúsculas de los nombres de archivo.\n (En estos, se mostrará una advertencia para archivos con el mismo nombre pero diferentes mayúsculas).\n\n2. **Manejo de revisiones de los fragmentos**\n Los fragmentos son inmutables, lo que permite que sus revisiones sean fijas. Este cambio mejorará el rendimiento al guardar archivos.\n\n___Sin embargo, para habilitar cualquiera de estos cambios, es necesario reconstruir tanto las bases de datos remota como la local. Este proceso toma unos minutos, y recomendamos hacerlo cuando tengas tiempo suficiente.___\n\n- Si deseas mantener el comportamiento anterior, puedes omitir este proceso usando `${KEEP}`.\n- Si no tienes suficiente tiempo, por favor elige `${DISMISS}`. Se te pedirá nuevamente más tarde.\n- Si has reconstruido la base de datos en otro dispositivo, selecciona `${DISMISS}` e intenta sincronizar nuevamente. Dado que se ha detectado una diferencia, se te solicitará nuevamente.",
|
||||
"moduleMigration.optionAdjustRemote": "Ajustar al remoto",
|
||||
"moduleMigration.optionDecideLater": "Decidirlo más tarde",
|
||||
"moduleMigration.optionEnableBoth": "Habilitar ambos",
|
||||
"moduleMigration.optionEnableFilenameCaseInsensitive": "Habilitar solo #1",
|
||||
"moduleMigration.optionEnableFixedRevisionForChunks": "Habilitar solo #2",
|
||||
"moduleMigration.optionHaveSetupUri": "Sí, tengo",
|
||||
"moduleMigration.optionKeepPreviousBehaviour": "Mantener comportamiento anterior",
|
||||
"moduleMigration.optionManualSetup": "Configurarlo todo manualmente",
|
||||
"moduleMigration.optionNoAskAgain": "No, por favor pregúntame de nuevo",
|
||||
"moduleObsidianMenu.replicate": "Replicar",
|
||||
"More actions": "Más acciones",
|
||||
"Move remotely deleted files to the trash, instead of deleting.": "Mover archivos borrados remotos a papelera en lugar de eliminarlos",
|
||||
"Network warning style": "Estilo de advertencia de red",
|
||||
"New Remote": "Nuevo remoto",
|
||||
"No limit configured": "Sin límite configurado",
|
||||
"No, please take me back": "No, volver atrás",
|
||||
"Non-Synchronising files": "Archivos no sincronizados",
|
||||
"Normal Files": "Archivos normales",
|
||||
"Not all messages have been translated. And, please revert to \"Default\" when reporting errors.": "No todos los mensajes están traducidos. Por favor, vuelva a \"Predeterminado\" al reportar errores.",
|
||||
"Notify all setting files": "Notificar todos los archivos de configuración",
|
||||
"Notify customized": "Notificar personalizaciones",
|
||||
"Notify when other device has newly customized.": "Notificar cuando otro dispositivo personalice",
|
||||
"Notify when the estimated remote storage size exceeds on start up": "Notificar cuando el tamaño estimado del almacenamiento remoto exceda al iniciar",
|
||||
"Number of batches to process at a time. Defaults to 40. Minimum is 2. This along with batch size controls how many docs are kept in memory at a time.": "Número de lotes a procesar. Default 40, mínimo 2. Controla documentos en memoria",
|
||||
"Number of changes to sync at a time. Defaults to 50. Minimum is 2.": "Número de cambios a sincronizar simultáneamente. Default 50, mínimo 2",
|
||||
"obsidianLiveSyncSettingTab.btnApply": "Aplicar",
|
||||
"obsidianLiveSyncSettingTab.btnCheck": "Verificar",
|
||||
"obsidianLiveSyncSettingTab.btnCopy": "Copiar",
|
||||
"obsidianLiveSyncSettingTab.btnDisable": "Desactivar",
|
||||
"obsidianLiveSyncSettingTab.btnDiscard": "Descartar",
|
||||
"obsidianLiveSyncSettingTab.btnEnable": "Activar",
|
||||
"obsidianLiveSyncSettingTab.btnFix": "Corregir",
|
||||
"obsidianLiveSyncSettingTab.btnGotItAndUpdated": "Lo entendí y actualicé.",
|
||||
"obsidianLiveSyncSettingTab.btnNext": "Siguiente",
|
||||
"obsidianLiveSyncSettingTab.btnStart": "Iniciar",
|
||||
"obsidianLiveSyncSettingTab.btnTest": "Probar",
|
||||
"obsidianLiveSyncSettingTab.btnUse": "Usar",
|
||||
"obsidianLiveSyncSettingTab.buttonFetch": "Obtener",
|
||||
"obsidianLiveSyncSettingTab.buttonNext": "Siguiente",
|
||||
"obsidianLiveSyncSettingTab.defaultLanguage": "Predeterminado",
|
||||
"obsidianLiveSyncSettingTab.descConnectSetupURI": "Este es el método recomendado para configurar Self-hosted LiveSync con una URI de configuración.",
|
||||
"obsidianLiveSyncSettingTab.descCopySetupURI": "¡Perfecto para configurar un nuevo dispositivo!",
|
||||
"obsidianLiveSyncSettingTab.descEnableLiveSync": "Solo habilita esto después de configurar cualquiera de las dos opciones anteriores o completar toda la configuración manualmente.",
|
||||
"obsidianLiveSyncSettingTab.descFetchConfigFromRemote": "Obtener las configuraciones necesarias del servidor remoto ya configurado.",
|
||||
"obsidianLiveSyncSettingTab.descManualSetup": "No recomendado, pero útil si no tienes una URI de configuración",
|
||||
"obsidianLiveSyncSettingTab.descTestDatabaseConnection": "Abrir conexión a la base de datos. Si no se encuentra la base de datos remota y tienes permiso para crear una base de datos, se creará la base de datos.",
|
||||
"obsidianLiveSyncSettingTab.descValidateDatabaseConfig": "Verifica y soluciona cualquier problema potencial con la configuración de la base de datos.",
|
||||
"obsidianLiveSyncSettingTab.errAccessForbidden": "Acceso prohibido.",
|
||||
"obsidianLiveSyncSettingTab.errCannotContinueTest": "No se pudo continuar con la prueba.",
|
||||
"obsidianLiveSyncSettingTab.errCorsCredentials": "❗ cors.credentials es incorrecto",
|
||||
"obsidianLiveSyncSettingTab.errCorsNotAllowingCredentials": "CORS no permite credenciales",
|
||||
"obsidianLiveSyncSettingTab.errCorsOrigins": "❗ cors.origins es incorrecto",
|
||||
"obsidianLiveSyncSettingTab.errEnableCors": "❗ httpd.enable_cors es incorrecto",
|
||||
"obsidianLiveSyncSettingTab.errMaxDocumentSize": "❗ couchdb.max_document_size es bajo)",
|
||||
"obsidianLiveSyncSettingTab.errMaxRequestSize": "❗ chttpd.max_http_request_size es bajo)",
|
||||
"obsidianLiveSyncSettingTab.errMissingWwwAuth": "❗ httpd.WWW-Authenticate falta",
|
||||
"obsidianLiveSyncSettingTab.errRequireValidUser": "❗ chttpd.require_valid_user es incorrecto.",
|
||||
"obsidianLiveSyncSettingTab.errRequireValidUserAuth": "❗ chttpd_auth.require_valid_user es incorrecto.",
|
||||
"obsidianLiveSyncSettingTab.labelDisabled": "⏹️ : Desactivado",
|
||||
"obsidianLiveSyncSettingTab.labelEnabled": "🔁 : Activado",
|
||||
"obsidianLiveSyncSettingTab.levelAdvanced": " (avanzado)",
|
||||
"obsidianLiveSyncSettingTab.levelEdgeCase": " (excepción)",
|
||||
"obsidianLiveSyncSettingTab.levelPowerUser": " (experto)",
|
||||
"obsidianLiveSyncSettingTab.linkOpenInBrowser": "Abrir en el navegador",
|
||||
"obsidianLiveSyncSettingTab.linkPageTop": "Ir arriba",
|
||||
"obsidianLiveSyncSettingTab.linkTipsAndTroubleshooting": "Consejos y solución de problemas",
|
||||
"obsidianLiveSyncSettingTab.linkTroubleshooting": "/docs/es/troubleshooting.md",
|
||||
"obsidianLiveSyncSettingTab.logCannotUseCloudant": "Esta función no se puede utilizar con IBM Cloudant.",
|
||||
"obsidianLiveSyncSettingTab.logCheckingConfigDone": "Verificación de configuración completada",
|
||||
"obsidianLiveSyncSettingTab.logCheckingConfigFailed": "La verificación de configuración falló",
|
||||
"obsidianLiveSyncSettingTab.logCheckingDbConfig": "Verificando la configuración de la base de datos",
|
||||
"obsidianLiveSyncSettingTab.logCheckPassphraseFailed": "ERROR: Error al comprobar la frase de contraseña con el servidor remoto: \n${db}.",
|
||||
"obsidianLiveSyncSettingTab.logConfiguredDisabled": "Modo de sincronización configurado: DESACTIVADO",
|
||||
"obsidianLiveSyncSettingTab.logConfiguredLiveSync": "Modo de sincronización configurado: Sincronización en Vivo",
|
||||
"obsidianLiveSyncSettingTab.logConfiguredPeriodic": "Modo de sincronización configurado: Periódico",
|
||||
"obsidianLiveSyncSettingTab.logCouchDbConfigFail": "Configuración de CouchDB: ${title} falló",
|
||||
"obsidianLiveSyncSettingTab.logCouchDbConfigSet": "Configuración de CouchDB: ${title} -> Establecer ${key} en ${value}",
|
||||
"obsidianLiveSyncSettingTab.logCouchDbConfigUpdated": "Configuración de CouchDB: ${title} actualizado correctamente",
|
||||
"obsidianLiveSyncSettingTab.logDatabaseConnected": "Base de datos conectada",
|
||||
"obsidianLiveSyncSettingTab.logEncryptionNoPassphrase": "No puedes habilitar el cifrado sin una frase de contraseña",
|
||||
"obsidianLiveSyncSettingTab.logEncryptionNoSupport": "Tu dispositivo no admite el cifrado.",
|
||||
"obsidianLiveSyncSettingTab.logErrorOccurred": "¡Ocurrió un error!",
|
||||
"obsidianLiveSyncSettingTab.logEstimatedSize": "Tamaño estimado: ${size}",
|
||||
"obsidianLiveSyncSettingTab.logPassphraseInvalid": "La frase de contraseña no es válida, por favor corrígela.",
|
||||
"obsidianLiveSyncSettingTab.logPassphraseNotCompatible": "ERROR: ¡La frase de contraseña no es compatible con el servidor remoto! ¡Por favor, revísala de nuevo!",
|
||||
"obsidianLiveSyncSettingTab.logRebuildNote": "La sincronización ha sido desactivada, obtén y vuelve a activar si lo deseas.",
|
||||
"obsidianLiveSyncSettingTab.logSelectAnyPreset": "Selecciona cualquier preestablecido.",
|
||||
"obsidianLiveSyncSettingTab.msgAreYouSureProceed": "¿Estás seguro de proceder?",
|
||||
"obsidianLiveSyncSettingTab.msgChangesNeedToBeApplied": "¡Los cambios deben aplicarse!",
|
||||
"obsidianLiveSyncSettingTab.msgConfigCheck": "--Verificación de configuración--",
|
||||
"obsidianLiveSyncSettingTab.msgConfigCheckFailed": "La verificación de configuración ha fallado. ¿Quieres continuar de todos modos?",
|
||||
"obsidianLiveSyncSettingTab.msgConnectionCheck": "--Verificación de conexión--",
|
||||
"obsidianLiveSyncSettingTab.msgConnectionProxyNote": "Si tienes problemas con la verificación de conexión (incluso después de verificar la configuración), por favor verifica la configuración de tu proxy reverso.",
|
||||
"obsidianLiveSyncSettingTab.msgCurrentOrigin": "Origen actual: {origin}",
|
||||
"obsidianLiveSyncSettingTab.msgDiscardConfirmation": "¿Realmente deseas descartar las configuraciones y bases de datos existentes?",
|
||||
"obsidianLiveSyncSettingTab.msgDone": "--Hecho--",
|
||||
"obsidianLiveSyncSettingTab.msgEnableCors": "Configurar httpd.enable_cors",
|
||||
"obsidianLiveSyncSettingTab.msgEnableEncryptionRecommendation": "Recomendamos habilitar el cifrado de extremo a extremo y la obfuscación de ruta. ¿Estás seguro de querer continuar sin cifrado?",
|
||||
"obsidianLiveSyncSettingTab.msgFetchConfigFromRemote": "¿Quieres obtener la configuración del servidor remoto?",
|
||||
"obsidianLiveSyncSettingTab.msgGenerateSetupURI": "¡Todo listo! ¿Quieres generar un URI de configuración para configurar otros dispositivos?",
|
||||
"obsidianLiveSyncSettingTab.msgIfConfigNotPersistent": "Si la configuración del servidor no es persistente (por ejemplo, ejecutándose en docker), los valores aquí pueden cambiar. Una vez que puedas conectarte, por favor actualiza las configuraciones en el local.ini del servidor.",
|
||||
"obsidianLiveSyncSettingTab.msgInvalidPassphrase": "Tu frase de contraseña de cifrado podría ser inválida. ¿Estás seguro de querer continuar?",
|
||||
"obsidianLiveSyncSettingTab.msgNewVersionNote": "¿Aquí debido a una notificación de actualización? Por favor, revise el historial de versiones. Si está satisfecho, haga clic en el botón. Una nueva actualización volverá a mostrar esto.",
|
||||
"obsidianLiveSyncSettingTab.msgNonHTTPSInfo": "Configurado como URI que no es HTTPS. Ten en cuenta que esto puede no funcionar en dispositivos móviles.",
|
||||
"obsidianLiveSyncSettingTab.msgNonHTTPSWarning": "No se puede conectar a URI que no sean HTTPS. Por favor, actualiza tu configuración y vuelve a intentarlo.",
|
||||
"obsidianLiveSyncSettingTab.msgNotice": "---Aviso---",
|
||||
"obsidianLiveSyncSettingTab.msgObjectStorageWarning": "ADVERTENCIA: Esta característica está en desarrollo, así que por favor ten en cuenta lo siguiente:\n- Arquitectura de solo anexado. Se requiere una reconstrucción para reducir el almacenamiento.\n- Un poco frágil.\n- Al sincronizar por primera vez, todo el historial será transferido desde el remoto. Ten en cuenta los límites de datos y las velocidades lentas.\n- Solo las diferencias se sincronizan en vivo.\n\nSi encuentras algún problema o tienes ideas sobre esta característica, por favor crea un issue en GitHub.\nAprecio mucho tu gran dedicación.",
|
||||
"obsidianLiveSyncSettingTab.msgOriginCheck": "Verificación de origen: {org}",
|
||||
"obsidianLiveSyncSettingTab.msgRebuildRequired": "Es necesario reconstruir las bases de datos para aplicar los cambios. Por favor selecciona el método para aplicar los cambios.\n\n<details>\n<summary>Legendas</summary>\n\n| Símbolo | Significado |\n|: ------ :| ------- |\n| ⇔ | Actualizado |\n| ⇄ | Sincronizar para equilibrar |\n| ⇐,⇒ | Transferir para sobrescribir |\n| ⇠,⇢ | Transferir para sobrescribir desde otro lado |\n\n</details>\n\n## ${OPTION_REBUILD_BOTH}\nA simple vista: 📄 ⇒¹ 💻 ⇒² 🛰️ ⇢ⁿ 💻 ⇄ⁿ⁺¹ 📄\nReconstruir tanto la base de datos local como la remota utilizando los archivos existentes de este dispositivo.\nEsto bloquea a otros dispositivos, y necesitan realizar la obtención.\n## ${OPTION_FETCH}\nA simple vista: 📄 ⇄² 💻 ⇐¹ 🛰️ ⇔ 💻 ⇔ 📄\nInicializa la base de datos local y la reconstruye utilizando los datos obtenidos de la base de datos remota.\nEste caso incluye el caso en el que has reconstruido la base de datos remota.\n## ${OPTION_ONLY_SETTING}\nAlmacena solo la configuración. **Precaución: esto puede provocar corrupción de datos**; generalmente es necesario reconstruir la base de datos.",
|
||||
"obsidianLiveSyncSettingTab.msgSelectAndApplyPreset": "Por favor, selecciona y aplica cualquier elemento preestablecido para completar el asistente.",
|
||||
"obsidianLiveSyncSettingTab.msgSetCorsCredentials": "Configurar cors.credentials",
|
||||
"obsidianLiveSyncSettingTab.msgSetCorsOrigins": "Configurar cors.origins",
|
||||
"obsidianLiveSyncSettingTab.msgSetMaxDocSize": "Configurar couchdb.max_document_size",
|
||||
"obsidianLiveSyncSettingTab.msgSetMaxRequestSize": "Configurar chttpd.max_http_request_size",
|
||||
"obsidianLiveSyncSettingTab.msgSetRequireValidUser": "Configurar chttpd.require_valid_user = true",
|
||||
"obsidianLiveSyncSettingTab.msgSetRequireValidUserAuth": "Configurar chttpd_auth.require_valid_user = true",
|
||||
"obsidianLiveSyncSettingTab.msgSettingModified": "La configuración \"${setting}\" fue modificada desde otro dispositivo. Haz clic {HERE} para recargar la configuración. Haz clic en otro lugar para ignorar los cambios.",
|
||||
"obsidianLiveSyncSettingTab.msgSettingsUnchangeableDuringSync": "Estas configuraciones no se pueden cambiar durante la sincronización. Por favor, deshabilita toda la sincronización en las \"Configuraciones de Sincronización\" para desbloquear.",
|
||||
"obsidianLiveSyncSettingTab.msgSetWwwAuth": "Configurar httpd.WWW-Authenticate",
|
||||
"obsidianLiveSyncSettingTab.nameApplySettings": "Aplicar configuraciones",
|
||||
"obsidianLiveSyncSettingTab.nameConnectSetupURI": "Conectar con URI de configuración",
|
||||
"obsidianLiveSyncSettingTab.nameCopySetupURI": "Copiar la configuración actual a una URI de configuración",
|
||||
"obsidianLiveSyncSettingTab.nameDisableHiddenFileSync": "Desactivar sincronización de archivos ocultos",
|
||||
"obsidianLiveSyncSettingTab.nameDiscardSettings": "Descartar configuraciones y bases de datos existentes",
|
||||
"obsidianLiveSyncSettingTab.nameEnableHiddenFileSync": "Activar sincronización de archivos ocultos",
|
||||
"obsidianLiveSyncSettingTab.nameEnableLiveSync": "Activar LiveSync",
|
||||
"obsidianLiveSyncSettingTab.nameHiddenFileSynchronization": "Sincronización de archivos ocultos",
|
||||
"obsidianLiveSyncSettingTab.nameManualSetup": "Configuración manual",
|
||||
"obsidianLiveSyncSettingTab.nameTestConnection": "Probar conexión",
|
||||
"obsidianLiveSyncSettingTab.nameTestDatabaseConnection": "Probar Conexión de Base de Datos",
|
||||
"obsidianLiveSyncSettingTab.nameValidateDatabaseConfig": "Validar Configuración de la Base de Datos",
|
||||
"obsidianLiveSyncSettingTab.okAdminPrivileges": "✔ Tienes privilegios de administrador.",
|
||||
"obsidianLiveSyncSettingTab.okCorsCredentials": "✔ cors.credentials está correcto.",
|
||||
"obsidianLiveSyncSettingTab.okCorsCredentialsForOrigin": "CORS credenciales OK",
|
||||
"obsidianLiveSyncSettingTab.okCorsOriginMatched": "✔ Origen de CORS correcto",
|
||||
"obsidianLiveSyncSettingTab.okCorsOrigins": "✔ cors.origins está correcto.",
|
||||
"obsidianLiveSyncSettingTab.okEnableCors": "✔ httpd.enable_cors está correcto.",
|
||||
"obsidianLiveSyncSettingTab.okMaxDocumentSize": "✔ couchdb.max_document_size está correcto.",
|
||||
"obsidianLiveSyncSettingTab.okMaxRequestSize": "✔ chttpd.max_http_request_size está correcto.",
|
||||
"obsidianLiveSyncSettingTab.okRequireValidUser": "✔ chttpd.require_valid_user está correcto.",
|
||||
"obsidianLiveSyncSettingTab.okRequireValidUserAuth": "✔ chttpd_auth.require_valid_user está correcto.",
|
||||
"obsidianLiveSyncSettingTab.okWwwAuth": "✔ httpd.WWW-Authenticate está correcto.",
|
||||
"obsidianLiveSyncSettingTab.optionApply": "Aplicar",
|
||||
"obsidianLiveSyncSettingTab.optionCancel": "Cancelar",
|
||||
"obsidianLiveSyncSettingTab.optionCouchDB": "CouchDB",
|
||||
"obsidianLiveSyncSettingTab.optionDisableAllAutomatic": "Desactivar lo automático",
|
||||
"obsidianLiveSyncSettingTab.optionFetchFromRemote": "Obtener del remoto",
|
||||
"obsidianLiveSyncSettingTab.optionHere": "AQUÍ",
|
||||
"obsidianLiveSyncSettingTab.optionLiveSync": "Sincronización LiveSync",
|
||||
"obsidianLiveSyncSettingTab.optionMinioS3R2": "Minio,S3,R2",
|
||||
"obsidianLiveSyncSettingTab.optionOkReadEverything": "OK, he leído todo.",
|
||||
"obsidianLiveSyncSettingTab.optionOnEvents": "En eventos",
|
||||
"obsidianLiveSyncSettingTab.optionPeriodicAndEvents": "Periódico y en eventos",
|
||||
"obsidianLiveSyncSettingTab.optionPeriodicWithBatch": "Periódico con lote",
|
||||
"obsidianLiveSyncSettingTab.optionRebuildBoth": "Reconstructuir ambos desde este dispositivo",
|
||||
"obsidianLiveSyncSettingTab.optionSaveOnlySettings": "(Peligro) Guardar solo configuración",
|
||||
"obsidianLiveSyncSettingTab.panelChangeLog": "Registro de cambios",
|
||||
"obsidianLiveSyncSettingTab.panelGeneralSettings": "Configuraciones Generales",
|
||||
"obsidianLiveSyncSettingTab.panelPrivacyEncryption": "Privacidad y Cifrado",
|
||||
"obsidianLiveSyncSettingTab.panelRemoteConfiguration": "Configuración remota",
|
||||
"obsidianLiveSyncSettingTab.panelSetup": "Configuración",
|
||||
"obsidianLiveSyncSettingTab.titleAppearance": "Apariencia",
|
||||
"obsidianLiveSyncSettingTab.titleConflictResolution": "Resolución de conflictos",
|
||||
"obsidianLiveSyncSettingTab.titleCongratulations": "¡Felicidades!",
|
||||
"obsidianLiveSyncSettingTab.titleCouchDB": "Servidor CouchDB",
|
||||
"obsidianLiveSyncSettingTab.titleDeletionPropagation": "Propagación de eliminación",
|
||||
"obsidianLiveSyncSettingTab.titleEncryptionNotEnabled": "El cifrado no está habilitado",
|
||||
"obsidianLiveSyncSettingTab.titleEncryptionPassphraseInvalid": "La frase de contraseña de cifrado es inválida",
|
||||
"obsidianLiveSyncSettingTab.titleExtraFeatures": "Habilitar funciones extras y avanzadas",
|
||||
"obsidianLiveSyncSettingTab.titleFetchConfig": "Obtener configuración",
|
||||
"obsidianLiveSyncSettingTab.titleFetchConfigFromRemote": "Obtener configuración del servidor remoto",
|
||||
"obsidianLiveSyncSettingTab.titleFetchSettings": "Obtener configuraciones",
|
||||
"obsidianLiveSyncSettingTab.titleHiddenFiles": "Archivos ocultos",
|
||||
"obsidianLiveSyncSettingTab.titleLogging": "Registro",
|
||||
"obsidianLiveSyncSettingTab.titleMinioS3R2": "MinIO, S3, R2",
|
||||
"obsidianLiveSyncSettingTab.titleNotification": "Notificación",
|
||||
"obsidianLiveSyncSettingTab.titleOnlineTips": "Consejos en línea",
|
||||
"obsidianLiveSyncSettingTab.titleQuickSetup": "Configuración rápida",
|
||||
"obsidianLiveSyncSettingTab.titleRebuildRequired": "Reconstrucción necesaria",
|
||||
"obsidianLiveSyncSettingTab.titleRemoteConfigCheckFailed": "La verificación de configuración remota falló",
|
||||
"obsidianLiveSyncSettingTab.titleRemoteServer": "Servidor remoto",
|
||||
"obsidianLiveSyncSettingTab.titleReset": "Reiniciar",
|
||||
"obsidianLiveSyncSettingTab.titleSetupOtherDevices": "Para configurar otros dispositivos",
|
||||
"obsidianLiveSyncSettingTab.titleSynchronizationMethod": "Método de sincronización",
|
||||
"obsidianLiveSyncSettingTab.titleSynchronizationPreset": "Preestablecimiento de sincronización",
|
||||
"obsidianLiveSyncSettingTab.titleSyncSettings": "Configuraciones de Sincronización",
|
||||
"obsidianLiveSyncSettingTab.titleSyncSettingsViaMarkdown": "Configuración de sincronización a través de Markdown",
|
||||
"obsidianLiveSyncSettingTab.titleUpdateThinning": "Actualización de adelgazamiento",
|
||||
"obsidianLiveSyncSettingTab.warnCorsOriginUnmatched": "⚠ El origen de CORS no coincide: {from}->{to}",
|
||||
"obsidianLiveSyncSettingTab.warnNoAdmin": "⚠ No tienes privilegios de administrador.",
|
||||
"Ok": "Aceptar",
|
||||
"Old Algorithm": "Algoritmo antiguo",
|
||||
"Older fallback (Slow, W/O WebAssembly)": "Alternativa anterior (lenta, sin WebAssembly)",
|
||||
"Open": "Abrir",
|
||||
"Open the dialog": "Abrir el diálogo",
|
||||
"Overwrite": "Sobrescribir",
|
||||
"Overwrite patterns": "Patrones de sobrescritura",
|
||||
"Overwrite remote": "Sobrescribir remoto",
|
||||
"Overwrite remote with local DB and passphrase.": "Sobrescribe el remoto con la base de datos local y la frase de contraseña.",
|
||||
"Overwrite Server Data with This Device's Files": "Sobrescribir los datos del servidor con los archivos de este dispositivo",
|
||||
"paneMaintenance.markDeviceResolvedAfterBackup": "Marcar el dispositivo como resuelto después de hacer una copia de seguridad",
|
||||
"paneMaintenance.remoteLockedAndDeviceNotAccepted": "La base de datos remota está bloqueada y este dispositivo aún no ha sido aceptado.",
|
||||
"paneMaintenance.remoteLockedResolvedDevice": "La base de datos remota está bloqueada, pero este dispositivo ya fue aceptado.",
|
||||
"paneMaintenance.unlockDatabaseReady": "Desbloquear la base de datos",
|
||||
"Passphrase": "Frase de contraseña",
|
||||
"Passphrase of sensitive configuration items": "Frase para elementos sensibles",
|
||||
"password": "contraseña",
|
||||
"Password": "Contraseña",
|
||||
"Paste a connection string": "Pegar cadena de conexión",
|
||||
"Paste the Setup URI generated from one of your active devices.": "Pegue el URI de configuración generado desde uno de sus dispositivos activos。",
|
||||
"Path Obfuscation": "Ofuscación de rutas",
|
||||
"Patterns to match files for overwriting instead of merging": "Patrones para identificar archivos que se sobrescribirán en lugar de fusionarse",
|
||||
"Patterns to match files for syncing": "Patrones para identificar archivos que se sincronizarán",
|
||||
"Peer-to-Peer only": "Solo Peer-to-Peer",
|
||||
"Peer-to-Peer Synchronisation": "Sincronización entre pares",
|
||||
"Per-file-saved customization sync": "Sincronización de personalización por archivo",
|
||||
"Perform": "Ejecutar",
|
||||
"Perform cleanup": "Ejecutar limpieza",
|
||||
"Perform Garbage Collection": "Ejecutar recolección de basura",
|
||||
"Perform Garbage Collection to remove unused chunks and reduce database size.": "Ejecuta la recolección de basura para eliminar chunks no usados y reducir el tamaño de la base de datos.",
|
||||
"Periodic Sync interval": "Intervalo de sincronización periódica",
|
||||
"Pick a file to resolve conflict": "Elegir un archivo para resolver el conflicto",
|
||||
"Please select a method to import the settings from another device.": "Seleccione un método para importar la configuración desde otro dispositivo。",
|
||||
"Please select an option to proceed": "Seleccione una opción para continuar",
|
||||
"Please select the type of server to which you are connecting.": "Seleccione el tipo de servidor al que se está conectando。",
|
||||
"Please set device name to identify this device. This name should be unique among your devices. While not configured, we cannot enable this feature.": "Define un nombre para identificar este dispositivo. Debe ser único entre tus dispositivos. Mientras no esté configurado, no podremos habilitar esta función.",
|
||||
"Please set this device name": "Define el nombre de este dispositivo",
|
||||
"Presets": "Preconfiguraciones",
|
||||
"Proceed with Setup URI": "Continuar con el URI de configuración",
|
||||
"Process small files in the foreground": "Procesar archivos pequeños en primer plano",
|
||||
"PureJS fallback (Fast, W/O WebAssembly)": "Alternativa PureJS (rápida, sin WebAssembly)",
|
||||
"Purge all download/upload cache.": "Purga toda la caché de descarga y carga.",
|
||||
"Purge all journal counter": "Purgar todos los contadores del diario",
|
||||
"Rebuild local and remote database with local files.": "Reconstruye la base de datos local y remota usando los archivos locales.",
|
||||
"Rebuilding Operations (Remote Only)": "Operaciones de reconstrucción (solo remoto)",
|
||||
"Recreate all": "Recrear todo",
|
||||
"Recreate missing chunks for all files": "Recrear fragmentos faltantes para todos los archivos",
|
||||
"Reducing the frequency with which on-disk changes are reflected into the DB": "Reducir frecuencia de actualizaciones de disco a BD",
|
||||
"Region": "Región",
|
||||
"Remediation": "Remediación",
|
||||
"Remediation Setting Changed": "La configuración de remediación cambió",
|
||||
"Remote Database Tweak (In sunset)": "Ajustes de base de datos remota (en retirada)",
|
||||
"Remote Databases": "Bases de datos remotas",
|
||||
"Remote name": "Nombre del remoto",
|
||||
"Remote server type": "Tipo de servidor remoto",
|
||||
"Remote Type": "Tipo de remoto",
|
||||
"Rename": "Renombrar",
|
||||
"Requires restart of Obsidian": "Requiere reiniciar Obsidian",
|
||||
"Requires restart of Obsidian.": "Requiere reiniciar Obsidian",
|
||||
"Resend": "Reenviar",
|
||||
"Resend all chunks to the remote.": "Reenvía todos los chunks al remoto.",
|
||||
"Reset": "Restablecer",
|
||||
"Reset all": "Restablecer todo",
|
||||
"Reset all journal counter": "Restablecer todos los contadores del diario",
|
||||
"Reset journal received history": "Restablecer historial de recepción del diario",
|
||||
"Reset journal sent history": "Restablecer historial de envío del diario",
|
||||
"Reset received": "Restablecer recepción",
|
||||
"Reset sent history": "Restablecer historial de envío",
|
||||
"Reset Synchronisation information": "Restablecer información de sincronización",
|
||||
"Reset Synchronisation on This Device": "Restablecer sincronización en este dispositivo",
|
||||
"Resolve All": "Resolver todo",
|
||||
"Resolve all conflicted files": "Resolver todos los archivos en conflicto",
|
||||
"Resolve All conflicted files by the newer one": "Resolver todos los archivos en conflicto con la versión más reciente",
|
||||
"Resolve all conflicted files by the newer one. Caution: This will overwrite the older one, and cannot resurrect the overwritten one.": "Resuelve todos los archivos en conflicto conservando la versión más reciente. Precaución: esto sobrescribirá la versión anterior y no podrá recuperarse.",
|
||||
"Restart Now": "Reiniciar ahora",
|
||||
"Restore or reconstruct local database from remote.": "Restaura o reconstruye la base de datos local desde el remoto.",
|
||||
"S3/MinIO/R2 Object Storage": "Almacenamiento de objetos S3/MinIO/R2",
|
||||
"Save settings to a markdown file. You will be notified when new settings arrive. You can set different files by the platform.": "Guardar configuración en archivo markdown. Se notificarán nuevos ajustes. Puede definir diferentes archivos por plataforma",
|
||||
"Saving will be performed forcefully after this number of seconds.": "Guardado forzado tras esta cantidad de segundos",
|
||||
"Scan a QR Code (Recommended for mobile)": "Escanear un código QR (recomendado para móviles)",
|
||||
"Scan changes on customization sync": "Escanear cambios en sincronización de personalización",
|
||||
"Scan customization automatically": "Escanear personalización automáticamente",
|
||||
"Scan customization before replicating.": "Escanear personalización antes de replicar",
|
||||
"Scan customization every 1 minute.": "Escanear personalización cada 1 minuto",
|
||||
"Scan customization periodically": "Escanear personalización periódicamente",
|
||||
"Scan for hidden files before replication": "Escanear archivos ocultos antes de replicar",
|
||||
"Scan hidden files periodically": "Escanear archivos ocultos periódicamente",
|
||||
"Scan the QR code displayed on an active device using this device's camera.": "Escanee con la cámara de este dispositivo el código QR mostrado en un dispositivo activo。",
|
||||
"Schedule and Restart": "Programar y reiniciar",
|
||||
"Scram!": "Medidas de emergencia",
|
||||
"Seconds, 0 to disable": "Segundos, 0 para desactivar",
|
||||
"Seconds. Saving to the local database will be delayed until this value after we stop typing or saving.": "Segundos. Guardado en BD local se retrasará hasta este valor tras dejar de escribir/guardar",
|
||||
"Secret Key": "Clave secreta",
|
||||
"Select the database adapter to use.": "Selecciona el adaptador de base de datos que se usará.",
|
||||
"Send": "Enviar",
|
||||
"Send chunks": "Enviar chunks",
|
||||
"Server URI": "URI del servidor",
|
||||
"Setting.GenerateKeyPair.Desc": "Hemos generado un par de claves.\n\nNota: Este par de claves no volverá a mostrarse. Guárdalo en un lugar seguro. Si lo pierdes, tendrás que generar uno nuevo.\nNota 2: La clave pública está en formato spki y la clave privada en formato pkcs8. Para mayor comodidad, los saltos de línea de la clave pública se convierten en `\\n`.\nNota 3: La clave pública debe configurarse en la base de datos remota y la clave privada en los dispositivos locales.\n\n>[!SOLO PARA TUS OJOS]-\n> <div class=\"sls-keypair\">\n>\n> ### Clave pública\n> ```\n${public_key}\n> ```\n>\n> ### Clave privada\n> ```\n${private_key}\n> ```\n>\n> </div>\n\n>[!Ambas para copiar]-\n>\n> <div class=\"sls-keypair\">\n>\n> ```\n${public_key}\n${private_key}\n> ```\n>\n> </div>",
|
||||
"Setting.GenerateKeyPair.Title": "¡Se ha generado un nuevo par de claves!",
|
||||
"Setup.> [!INFO]- The connected devices have been detected as follows:\n${devices}": "> [!INFO]- Se detectaron los siguientes dispositivos conectados:\n${devices}",
|
||||
"Setup.All devices have the same progress value (${progress}). Your devices seem to be synchronised. And be able to proceed with Garbage Collection.": "Todos los dispositivos tienen el mismo valor de progreso (${progress}). Parece que tus dispositivos están sincronizados y se puede continuar con la recolección de basura.",
|
||||
"Setup.Cancel Garbage Collection": "Cancelar la recolección de basura",
|
||||
"Setup.Compaction in progress on remote database...": "La compactación está en curso en la base de datos remota...",
|
||||
"Setup.Compaction on remote database completed successfully.": "La compactación en la base de datos remota se completó correctamente.",
|
||||
"Setup.Compaction on remote database failed.": "La compactación en la base de datos remota falló.",
|
||||
"Setup.Compaction on remote database timed out.": "La compactación en la base de datos remota agotó el tiempo de espera.",
|
||||
"Setup.Device": "Dispositivo",
|
||||
"Setup.Failed to connect to remote for compaction.": "No se pudo conectar a la base de datos remota para la compactación.",
|
||||
"Setup.Failed to connect to remote for compaction. ${reason}": "No se pudo conectar a la base de datos remota para la compactación. ${reason}",
|
||||
"Setup.Failed to start one-shot replication before Garbage Collection. Garbage Collection Cancelled.": "No se pudo iniciar la replicación de una sola vez antes de la recolección de basura. La recolección de basura se canceló.",
|
||||
"Setup.Failed to start replication after Garbage Collection.": "No se pudo iniciar la replicación después de la recolección de basura.",
|
||||
"Setup.Garbage Collection cancelled by user.": "El usuario canceló la recolección de basura.",
|
||||
"Setup.Garbage Collection completed. Deleted chunks: ${deletedChunks} / ${totalChunks}. Time taken: ${seconds} seconds.": "Recolección de basura completada. Chunks eliminados: ${deletedChunks} / ${totalChunks}. Tiempo empleado: ${seconds} segundos.",
|
||||
"Setup.Garbage Collection Confirmation": "Confirmación de recolección de basura",
|
||||
"Setup.Garbage Collection: Found ${unusedChunks} unused chunks to delete.": "Recolección de basura: se encontraron ${unusedChunks} chunks no usados para eliminar.",
|
||||
"Setup.Garbage Collection: Scanned ${scanned} / ~${docCount}": "Recolección de basura: escaneados ${scanned} / ~${docCount}",
|
||||
"Setup.Garbage Collection: Scanning completed. Total chunks: ${totalChunks}, Used chunks: ${usedChunks}": "Recolección de basura: escaneo completado. Chunks totales: ${totalChunks}, chunks usados: ${usedChunks}",
|
||||
"Setup.Ignore and Proceed": "Ignorar y continuar",
|
||||
"Setup.No connected device information found. Cancelling Garbage Collection.": "No se encontró información de dispositivos conectados. Cancelando la recolección de basura.",
|
||||
"Setup.Node ID": "ID del nodo",
|
||||
"Setup.Node Information Missing": "Falta información del nodo",
|
||||
"Setup.Obsidian version": "Versión de Obsidian",
|
||||
"Setup.optionNoSetupUri": "No, no tengo",
|
||||
"Setup.optionRemindNextLaunch": "Recordármelo en el próximo inicio",
|
||||
"Setup.optionSetupWizard": "Llévame al asistente de configuración",
|
||||
"Setup.optionYesFetchAgain": "Sí, obtener nuevamente",
|
||||
"Setup.Please disable 'Read chunks online' in settings to use Garbage Collection.": "Desactiva \"Read chunks online\" en los ajustes para usar la recolección de basura.",
|
||||
"Setup.Please enable 'Compute revisions for chunks' in settings to use Garbage Collection.": "Activa \"Compute revisions for chunks\" en los ajustes para usar la recolección de basura.",
|
||||
"Setup.Please select 'Cancel' explicitly to cancel this operation.": "Selecciona explícitamente \"Cancelar\" para cancelar esta operación.",
|
||||
"Setup.Plug-in version": "Versión del complemento",
|
||||
"Setup.Proceed Garbage Collection": "Continuar con la recolección de basura",
|
||||
"Setup.Proceeding with Garbage Collection, ignoring missing nodes.": "Continuando con la recolección de basura e ignorando los nodos faltantes.",
|
||||
"Setup.Proceeding with Garbage Collection.": "Continuando con la recolección de basura.",
|
||||
"Setup.Progress": "Progreso",
|
||||
"Setup.RemoteE2EE.AdvancedTitle": "Avanzado",
|
||||
"Setup.RemoteE2EE.AlgorithmWarning": "Cambiar el algoritmo de cifrado impedirá el acceso a cualquier dato cifrado anteriormente con otro algoritmo. Asegúrate de que todos tus dispositivos estén configurados para usar el mismo algoritmo y así mantener el acceso a tus datos.",
|
||||
"Setup.RemoteE2EE.ButtonCancel": "Cancelar",
|
||||
"Setup.RemoteE2EE.ButtonProceed": "Continuar",
|
||||
"Setup.RemoteE2EE.DefaultAlgorithmDesc": "En la mayoría de los casos, debes mantener el algoritmo predeterminado (${algorithm}). Este ajuste solo es necesario si ya tienes un Vault cifrado con un formato diferente.",
|
||||
"Setup.RemoteE2EE.Guidance": "Configura tus ajustes de cifrado de extremo a extremo.",
|
||||
"Setup.RemoteE2EE.LabelEncrypt": "Cifrado de extremo a extremo",
|
||||
"Setup.RemoteE2EE.LabelEncryptionAlgorithm": "Algoritmo de cifrado",
|
||||
"Setup.RemoteE2EE.LabelObfuscateProperties": "Ofuscar propiedades",
|
||||
"Setup.RemoteE2EE.MultiDestinationWarning": "Este ajuste debe ser el mismo incluso cuando te conectes a varios destinos de sincronización.",
|
||||
"Setup.RemoteE2EE.ObfuscatePropertiesDesc": "Ofuscar propiedades (por ejemplo, la ruta del archivo, el tamaño y las fechas de creación y modificación) añade una capa adicional de seguridad al dificultar la identificación de la estructura y los nombres de tus archivos y carpetas en el servidor remoto. Esto ayuda a proteger tu privacidad y dificulta que usuarios no autorizados deduzcan información sobre tus datos.",
|
||||
"Setup.RemoteE2EE.PassphraseValidationLine1": "Ten en cuenta que la frase de contraseña del cifrado de extremo a extremo no se valida hasta que el proceso de sincronización comienza realmente. Esta es una medida de seguridad diseñada para proteger tus datos.",
|
||||
"Setup.RemoteE2EE.PassphraseValidationLine2": "Por lo tanto, te pedimos que tengas muchísimo cuidado al configurar manualmente la información del servidor. Si introduces una frase de contraseña incorrecta, los datos del servidor se corromperán. Ten en cuenta que este comportamiento es intencionado.",
|
||||
"Setup.RemoteE2EE.PlaceholderPassphrase": "Introduce tu frase de contraseña",
|
||||
"Setup.RemoteE2EE.StronglyRecommendedLine1": "Al habilitar el cifrado de extremo a extremo, tus datos se cifran en tu dispositivo antes de enviarse al servidor remoto. Esto significa que, incluso si alguien obtiene acceso al servidor, no podrá leer tus datos sin la frase de contraseña. Asegúrate de recordarla, ya que también será necesaria para descifrar tus datos en otros dispositivos.",
|
||||
"Setup.RemoteE2EE.StronglyRecommendedLine2": "Además, ten en cuenta que si estás usando sincronización Peer-to-Peer, esta configuración se utilizará cuando más adelante cambies a otros métodos y te conectes a un servidor remoto.",
|
||||
"Setup.RemoteE2EE.StronglyRecommendedTitle": "Muy recomendable",
|
||||
"Setup.RemoteE2EE.Title": "Cifrado de extremo a extremo",
|
||||
"Setup.ScanQRCode.ButtonClose": "Cerrar este diálogo",
|
||||
"Setup.ScanQRCode.Guidance": "Sigue los pasos de abajo para importar los ajustes desde tu dispositivo actual.",
|
||||
"Setup.ScanQRCode.Step1": "En este dispositivo, mantén este Vault abierto.",
|
||||
"Setup.ScanQRCode.Step2": "En el dispositivo de origen, abre Obsidian.",
|
||||
"Setup.ScanQRCode.Step3": "En el dispositivo de origen, ejecuta desde la paleta de comandos la orden \"Mostrar ajustes como código QR\".",
|
||||
"Setup.ScanQRCode.Step4": "En este dispositivo, cambia a la cámara o usa un escáner QR para escanear el código mostrado.",
|
||||
"Setup.ScanQRCode.Title": "Escanear código QR",
|
||||
"Setup.Setup URI dialog cancelled.": "Se canceló el diálogo de Setup URI.",
|
||||
"Setup.Some devices have differing progress values (max: ${maxProgress}, min: ${minProgress}).\nThis may indicate that some devices have not completed synchronisation, which could lead to conflicts. Strongly recommend confirming that all devices are synchronised before proceeding.": "Algunos dispositivos tienen valores de progreso diferentes (máx.: ${maxProgress}, mín.: ${minProgress}).\nEsto puede indicar que algunos dispositivos no han completado la sincronización, lo que podría causar conflictos. Se recomienda encarecidamente confirmar que todos los dispositivos estén sincronizados antes de continuar.",
|
||||
"Setup.The following accepted nodes are missing its node information:\n- ${missingNodes}\n\nThis indicates that they have not been connected for some time or have been left on an older version.\nIt is preferable to update all devices if possible. If you have any devices that are no longer in use, you can clear all accepted nodes by locking the remote once.": "Los siguientes nodos aceptados no tienen información del nodo:\n- ${missingNodes}\n\nEsto indica que no se han conectado desde hace algún tiempo o que se han quedado en una versión anterior.\nSi es posible, es preferible actualizar todos los dispositivos. Si tienes dispositivos que ya no se usan, puedes borrar todos los nodos aceptados bloqueando el remoto una vez.",
|
||||
"Setup.titleCaseSensitivity": "Sensibilidad a mayúsculas",
|
||||
"Setup.titleRecommendSetupUri": "Recomendación de uso de URI de configuración",
|
||||
"Setup.titleWelcome": "Bienvenido a Self-hosted LiveSync",
|
||||
"Setup.UseSetupURI.ButtonCancel": "Cancelar",
|
||||
"Setup.UseSetupURI.ButtonProceed": "Probar ajustes y continuar",
|
||||
"Setup.UseSetupURI.ErrorFailedToParse": "No se pudo procesar la URI de configuración. Revisa la URI y la frase de contraseña.",
|
||||
"Setup.UseSetupURI.ErrorPassphraseRequired": "Introduce la frase de contraseña del Vault.",
|
||||
"Setup.UseSetupURI.GuidanceLine1": "Introduce la URI de configuración que se generó durante la instalación del servidor o en otro dispositivo, junto con la frase de contraseña del Vault.",
|
||||
"Setup.UseSetupURI.GuidanceLine2": "Ten en cuenta que puedes generar una nueva URI de configuración ejecutando el comando \"Copiar ajustes como nueva URI de configuración\" desde la paleta de comandos.",
|
||||
"Setup.UseSetupURI.InvalidInfo": "La URI de configuración no es válida. Revísala e inténtalo de nuevo.",
|
||||
"Setup.UseSetupURI.LabelPassphrase": "Frase de contraseña del Vault",
|
||||
"Setup.UseSetupURI.LabelSetupURI": "URI de configuración",
|
||||
"Setup.UseSetupURI.PlaceholderPassphrase": "Introduce la frase de contraseña del Vault",
|
||||
"Setup.UseSetupURI.Title": "Introducir URI de configuración",
|
||||
"Setup.UseSetupURI.ValidInfo": "La URI de configuración es válida y está lista para usarse.",
|
||||
"Should we keep folders that don't have any files inside?": "¿Mantener carpetas vacías?",
|
||||
"Should we only check for conflicts when a file is opened?": "¿Solo comprobar conflictos al abrir archivo?",
|
||||
"Should we prompt you about conflicting files when a file is opened?": "¿Notificar sobre conflictos al abrir archivo?",
|
||||
"Should we prompt you for every single merge, even if we can safely merge automatcially?": "¿Preguntar en cada fusión aunque sea automática?",
|
||||
"Show full banner": "Mostrar banner completo",
|
||||
"Show only notifications": "Mostrar solo notificaciones",
|
||||
"Show status as icons only": "Mostrar estado solo con íconos",
|
||||
"Show status icon instead of file warnings banner": "Mostrar icono de estado en lugar del banner de advertencia de archivos",
|
||||
"Show status inside the editor": "Mostrar estado dentro del editor",
|
||||
"Show status on the status bar": "Mostrar estado en la barra de estado",
|
||||
"Show verbose log. Please enable if you report an issue.": "Mostrar registro detallado. Actívelo si reporta un problema.",
|
||||
"Starts synchronisation when a file is saved.": "Inicia sincronización al guardar un archivo",
|
||||
"Stop reflecting database changes to storage files.": "Dejar de reflejar cambios de BD en archivos",
|
||||
"Stop watching for file changes.": "Dejar de monitorear cambios en archivos",
|
||||
"Suppress notification of hidden files change": "Suprimir notificaciones de cambios en archivos ocultos",
|
||||
"Suspend database reflecting": "Suspender reflejo de base de datos",
|
||||
"Suspend file watching": "Suspender monitorización de archivos",
|
||||
"Switch to IDB": "Cambiar a IDB",
|
||||
"Switch to IndexedDB": "Cambiar a IndexedDB",
|
||||
"Sync after merging file": "Sincronizar tras fusionar archivo",
|
||||
"Sync automatically after merging files": "Sincronizar automáticamente tras fusionar archivos",
|
||||
"Sync Mode": "Modo de sincronización",
|
||||
"Sync on Editor Save": "Sincronizar al guardar en editor",
|
||||
"Sync on File Open": "Sincronizar al abrir archivo",
|
||||
"Sync on Save": "Sincronizar al guardar",
|
||||
"Sync on Startup": "Sincronizar al iniciar",
|
||||
"Synchronisation utilising journal files. You must have set up an S3/MinIO/R2 compatible object storage.": "Sincronización mediante archivos de registro. Debe haber configurado un almacenamiento de objetos compatible con S3/MinIO/R2。",
|
||||
"Synchronising files": "Archivos sincronizados",
|
||||
"Syncing": "Sincronización",
|
||||
"Target patterns": "Patrones objetivo",
|
||||
"Testing only - Resolve file conflicts by syncing newer copies of the file, this can overwrite modified files. Be Warned.": "Solo pruebas - Resolver conflictos sincronizando copias nuevas (puede sobrescribir modificaciones)",
|
||||
"The delay for consecutive on-demand fetches": "Retraso entre obtenciones consecutivas",
|
||||
"The Hash algorithm for chunk IDs": "Algoritmo hash para IDs de chunks",
|
||||
"The maximum duration for which chunks can be incubated within the document. Chunks exceeding this period will graduate to independent chunks.": "Duración máxima para incubar chunks. Excedentes se independizan",
|
||||
"The maximum number of chunks that can be incubated within the document. Chunks exceeding this number will immediately graduate to independent chunks.": "Número máximo de chunks que pueden incubarse en el documento. Excedentes se independizan",
|
||||
"The maximum total size of chunks that can be incubated within the document. Chunks exceeding this size will immediately graduate to independent chunks.": "Tamaño total máximo de chunks incubados. Excedentes se independizan",
|
||||
"This feature enables direct synchronisation between devices. No server is required, but both devices must be online at the same time for synchronisation to occur, and some features may be limited. Internet connection is only required to signalling (detecting peers) and not for data transfer.": "Esta función permite la sincronización directa entre dispositivos. No requiere servidor, pero ambos dispositivos deben estar en línea al mismo tiempo para que la sincronización se produzca, y algunas funciones pueden ser limitadas. La conexión a Internet solo se necesita para la señalización (detección de pares), no para la transferencia de datos。",
|
||||
"This is an advanced option for users who do not have a URI or who wish to configure detailed settings.": "Esta es una opción avanzada para usuarios que no disponen de un URI o que desean configurar parámetros detallados。",
|
||||
"This is the most suitable synchronisation method for the design. All functions are available. You must have set up a CouchDB instance.": "Este es el método de sincronización más adecuado para el diseño. Todas las funciones están disponibles. Debe tener configurada una instancia de CouchDB。",
|
||||
"This passphrase will not be copied to another device. It will be set to `Default` until you configure it again.": "Esta frase no se copia a otros dispositivos. Usará `Default` hasta reconfigurar",
|
||||
"This will recreate chunks for all files. If there were missing chunks, this may fix the errors.": "Esto recreará los fragmentos de todos los archivos. Si faltaban fragmentos, esto puede corregir los errores.",
|
||||
"Transfer Tweak": "Ajustes de transferencia",
|
||||
"Unique name between all synchronized devices. To edit this setting, please disable customization sync once.": "Nombre único entre dispositivos sincronizados. Para editarlo, desactive sincronización de personalización",
|
||||
"Use a custom passphrase": "Usar una frase de contraseña personalizada",
|
||||
"Use a Setup URI (Recommended)": "Usar un URI de configuración (recomendado)",
|
||||
"Use Custom HTTP Handler": "Usar manejador HTTP personalizado",
|
||||
"Use dynamic iteration count": "Usar conteo de iteraciones dinámico",
|
||||
"Use Segmented-splitter": "Usar divisor segmentado",
|
||||
"Use splitting-limit-capped chunk splitter": "Usar divisor de chunks con límite",
|
||||
"Use the trash bin": "Usar papelera",
|
||||
"Use timeouts instead of heartbeats": "Usar timeouts en lugar de latidos",
|
||||
"username": "nombre de usuario",
|
||||
"Username": "Usuario",
|
||||
"Verbose Log": "Registro detallado",
|
||||
"Verify all": "Verificar todo",
|
||||
"Verify and repair all files": "Verificar y reparar todos los archivos",
|
||||
"Warning! This will have a serious impact on performance. And the logs will not be synchronised under the default name. Please be careful with logs; they often contain your confidential information.": "¡Advertencia! Impacta rendimiento. Los logs no se sincronizan con nombre predeterminado. Contienen información confidencial",
|
||||
"We cannot change the device name while this feature is enabled. Please disable this feature to change the device name.": "No podemos cambiar el nombre del dispositivo mientras esta función esté habilitada. Deshabilita la función para cambiarlo.",
|
||||
"We will now guide you through a few questions to simplify the synchronisation setup.": "Ahora le guiaremos con unas pocas preguntas para simplificar la configuración de la sincronización。",
|
||||
"We will now proceed with the server configuration.": "Ahora continuaremos con la configuración del servidor。",
|
||||
"Welcome to Self-hosted LiveSync": "Bienvenido a Self-hosted LiveSync",
|
||||
"When you save a file in the editor, start a sync automatically": "Iniciar sincronización automática al guardar en editor",
|
||||
"Write credentials in the file": "Escribir credenciales en archivo",
|
||||
"Write logs into the file": "Escribir logs en archivo",
|
||||
"xxhash32 (Fast but less collision resistance)": "xxhash32 (rápido, pero con menor resistencia a colisiones)",
|
||||
"xxhash64 (Fastest)": "xxhash64 (el más rápido)",
|
||||
"Yes, I want to add this device to my existing synchronisation": "Sí, quiero añadir este dispositivo a mi sincronización existente",
|
||||
"Yes, I want to set up a new synchronisation": "Sí, quiero configurar una nueva sincronización",
|
||||
"You are adding this device to an existing synchronisation setup.": "Está añadiendo este dispositivo a una configuración de sincronización existente。"
|
||||
}
|
||||
@@ -0,0 +1,580 @@
|
||||
{
|
||||
"(BETA) Always overwrite with a newer file": "(BÊTA) Toujours écraser avec un fichier plus récent",
|
||||
"(Beta) Use ignore files": "(Bêta) Utiliser les fichiers d'exclusion",
|
||||
"(Days passed, 0 to disable automatic-deletion)": "(Jours écoulés, 0 pour désactiver la suppression automatique)",
|
||||
"(ex. Read chunks online) If this option is enabled, LiveSync reads chunks online directly instead of replicating them locally. Increasing Custom chunk size is recommended.": "(ex. Lire les fragments en ligne) Si cette option est activée, LiveSync lit les fragments directement en ligne au lieu de les répliquer localement. L'augmentation de la taille personnalisée des fragments est recommandée.",
|
||||
"(MB) If this is set, changes to local and remote files that are larger than this will be skipped. If the file becomes smaller again, a newer one will be used.": "(Mo) Si cette valeur est définie, les modifications des fichiers locaux et distants plus grands que cette taille seront ignorées. Si le fichier redevient plus petit, une version plus récente sera utilisée.",
|
||||
"(Mega chars)": "(Méga caractères)",
|
||||
"(Not recommended) If set, credentials will be stored in the file.": "(Non recommandé) Si activé, les identifiants seront stockés dans le fichier.",
|
||||
"(Obsolete) Use an old adapter for compatibility": "(Obsolète) Utiliser un ancien adaptateur pour la compatibilité",
|
||||
"Access Key": "Clé d'accès",
|
||||
"Active Remote Configuration": "Configuration distante active",
|
||||
"Always prompt merge conflicts": "Toujours demander pour les conflits de fusion",
|
||||
"Analyse": "Analyser",
|
||||
"Analyse database usage": "Analyser l'utilisation de la base de données",
|
||||
"Analyse database usage and generate a TSV report for diagnosis yourself. You can paste the generated report with any spreadsheet you like.": "Analyser l'utilisation de la base de données et générer un rapport TSV pour un diagnostic personnel. Vous pouvez coller le rapport généré dans le tableur de votre choix.",
|
||||
"Apply Latest Change if Conflicting": "Appliquer la dernière modification en cas de conflit",
|
||||
"Apply preset configuration": "Appliquer une configuration prédéfinie",
|
||||
"Automatically Sync all files when opening Obsidian.": "Synchroniser automatiquement tous les fichiers à l'ouverture d'Obsidian.",
|
||||
"Batch database update": "Mise à jour groupée de la base de données",
|
||||
"Batch limit": "Limite de lot",
|
||||
"Batch size": "Taille de lot",
|
||||
"Batch size of on-demand fetching": "Taille de lot pour la récupération à la demande",
|
||||
"Before v0.17.16, we used an old adapter for the local database. Now the new adapter is preferred. However, it needs local database rebuilding. Please disable this toggle when you have enough time. If leave it enabled, also while fetching from the remote database, you will be asked to disable this.": "Avant la version v0.17.16, nous utilisions un ancien adaptateur pour la base de données locale. Le nouvel adaptateur est désormais recommandé. Cependant, il nécessite une reconstruction de la base locale. Veuillez désactiver cette option lorsque vous aurez suffisamment de temps. Si elle reste activée, il vous sera également demandé de la désactiver lors de la récupération depuis la base distante.",
|
||||
"Bucket Name": "Nom du bucket",
|
||||
"Check": "Vérifier",
|
||||
"cmdConfigSync.showCustomizationSync": "Afficher la synchronisation de personnalisation",
|
||||
"Comma separated `.gitignore, .dockerignore`": "Séparés par des virgules `.gitignore, .dockerignore`",
|
||||
"Compute revisions for chunks": "Calculer les révisions pour les fragments",
|
||||
"Copy Report to clipboard": "Copier le rapport dans le presse-papiers",
|
||||
"Data Compression": "Compression des données",
|
||||
"Database Name": "Nom de la base de données",
|
||||
"Database suffix": "Suffixe de la base de données",
|
||||
"Delay conflict resolution of inactive files": "Différer la résolution des conflits pour les fichiers inactifs",
|
||||
"Delay merge conflict prompt for inactive files.": "Différer l'invite de conflit de fusion pour les fichiers inactifs.",
|
||||
"Delete old metadata of deleted files on start-up": "Supprimer les anciennes métadonnées des fichiers effacés au démarrage",
|
||||
"Device name": "Nom de l'appareil",
|
||||
"dialog.yourLanguageAvailable": "Self-hosted LiveSync dispose d'une traduction pour votre langue, le paramètre %{Display language} a donc été activé.\n\nNote : Tous les messages ne sont pas traduits. Nous attendons vos contributions !\nNote 2 : Si vous créez un ticket, **veuillez revenir à %{lang-def}** puis prendre des captures d'écran, messages et journaux. Cela peut être fait dans la boîte de dialogue des paramètres.\nBonne utilisation !",
|
||||
"dialog.yourLanguageAvailable.btnRevertToDefault": "Conserver %{lang-def}",
|
||||
"dialog.yourLanguageAvailable.Title": " Une traduction est disponible !",
|
||||
"Disables logging, only shows notifications. Please disable if you report an issue.": "Désactive la journalisation, n'affiche que les notifications. Veuillez désactiver si vous signalez un problème.",
|
||||
"Display Language": "Langue d'affichage",
|
||||
"Do not check configuration mismatch before replication": "Ne pas vérifier les incohérences de configuration avant la réplication",
|
||||
"Do not keep metadata of deleted files.": "Ne pas conserver les métadonnées des fichiers supprimés.",
|
||||
"Do not split chunks in the background": "Ne pas fragmenter en arrière-plan",
|
||||
"Do not use internal API": "Ne pas utiliser l'API interne",
|
||||
"Doctor.Button.DismissThisVersion": "Non, et ne plus demander jusqu'à la prochaine version",
|
||||
"Doctor.Button.Fix": "Corriger",
|
||||
"Doctor.Button.FixButNoRebuild": "Corriger mais sans reconstruction",
|
||||
"Doctor.Button.No": "Non",
|
||||
"Doctor.Button.Skip": "Laisser tel quel",
|
||||
"Doctor.Button.Yes": "Oui",
|
||||
"Doctor.Dialogue.Main": "Bonjour ! Config Doctor a été activé en raison de ${activateReason} !\nEt, malheureusement, certaines configurations ont été détectées comme des problèmes potentiels.\nPas d'inquiétude. Résolvons-les un par un.\n\nPour information, nous allons vous interroger sur les éléments suivants.\n\n${issues}\n\nVoulez-vous commencer ?",
|
||||
"Doctor.Dialogue.MainFix": "\n## ${name}\n\n| Actuel | Idéal |\n|:---:|:---:|\n| ${current} | ${ideal} |\n\n**Niveau de recommandation :** ${level}\n\n### Pourquoi ceci a-t-il été détecté ?\n\n${reason}\n\n${note}\n\nCorriger à la valeur idéale ?",
|
||||
"Doctor.Dialogue.Title": "Docteur Config Self-hosted LiveSync",
|
||||
"Doctor.Dialogue.TitleAlmostDone": "Presque terminé !",
|
||||
"Doctor.Dialogue.TitleFix": "Corriger le problème ${current}/${total}",
|
||||
"Doctor.Level.Must": "Obligatoire",
|
||||
"Doctor.Level.Necessary": "Nécessaire",
|
||||
"Doctor.Level.Optional": "Optionnel",
|
||||
"Doctor.Level.Recommended": "Recommandé",
|
||||
"Doctor.Message.NoIssues": "Aucun problème détecté !",
|
||||
"Doctor.Message.RebuildLocalRequired": "Attention ! Une reconstruction de la base locale est requise pour appliquer ceci !",
|
||||
"Doctor.Message.RebuildRequired": "Attention ! Une reconstruction est requise pour appliquer ceci !",
|
||||
"Doctor.Message.SomeSkipped": "Nous avons laissé certains problèmes en l'état. Dois-je vous demander à nouveau au prochain démarrage ?",
|
||||
"Doctor.RULES.E2EE_V02500.REASON": "Le chiffrement de bout en bout est désormais plus robuste et plus rapide. Aussi parce que le précédent E2EE s'est révélé compromis lors d'une nouvelle revue de code. Il doit être appliqué dès que possible. Nous nous excusons sincèrement pour la gêne occasionnée. Ce paramètre n'est pas compatible avec les versions antérieures. Tous les appareils synchronisés doivent être mis à jour en v0.25.0 ou supérieur. Les reconstructions ne sont pas requises et seront converties du nouveau transfert vers le nouveau format. Il est toutefois recommandé de reconstruire dans la mesure du possible.",
|
||||
"Enable advanced features": "Activer les fonctionnalités avancées",
|
||||
"Enable customization sync": "Activer la synchronisation de personnalisation",
|
||||
"Enable Developers' Debug Tools.": "Activer les outils de débogage pour développeurs.",
|
||||
"Enable edge case treatment features": "Activer les fonctionnalités pour cas particuliers",
|
||||
"Enable poweruser features": "Activer les fonctionnalités pour utilisateurs avancés",
|
||||
"Enable this if your Object Storage doesn't support CORS": "Activer ceci si votre stockage objet ne prend pas en charge CORS",
|
||||
"Enable this option to automatically apply the most recent change to documents even when it conflicts": "Activer cette option pour appliquer automatiquement la modification la plus récente aux documents même en cas de conflit",
|
||||
"Encrypt contents on the remote database. If you use the plugin's synchronization feature, enabling this is recommended.": "Chiffrer le contenu sur la base de données distante. Si vous utilisez la fonction de synchronisation du plugin, l'activation est recommandée.",
|
||||
"Encrypting sensitive configuration items": "Chiffrement des éléments de configuration sensibles",
|
||||
"Encryption phassphrase. If changed, you should overwrite the server's database with the new (encrypted) files.": "Phrase secrète de chiffrement. Si modifiée, vous devriez écraser la base de données du serveur avec les nouveaux fichiers (chiffrés).",
|
||||
"End-to-End Encryption": "Chiffrement de bout en bout",
|
||||
"Endpoint URL": "URL du point de terminaison",
|
||||
"Enhance chunk size": "Améliorer la taille des fragments",
|
||||
"Fetch chunks on demand": "Récupérer les fragments à la demande",
|
||||
"Fetch database with previous behaviour": "Récupérer la base de données avec le comportement précédent",
|
||||
"Filename": "Nom de fichier",
|
||||
"Forces the file to be synced when opened.": "Force la synchronisation du fichier à son ouverture.",
|
||||
"Handle files as Case-Sensitive": "Gérer les fichiers en respectant la casse",
|
||||
"If disabled(toggled), chunks will be split on the UI thread (Previous behaviour).": "Si désactivé, les fragments seront découpés sur le thread UI (comportement précédent).",
|
||||
"If enabled per-filed efficient customization sync will be used. We need a small migration when enabling this. And all devices should be updated to v0.23.18. Once we enabled this, we lost a compatibility with old versions.": "Si activée, la synchronisation de personnalisation efficace par fichier sera utilisée. Une petite migration est nécessaire lors de l'activation. Tous les appareils doivent être à jour en v0.23.18. Une fois cette option activée, la compatibilité avec les anciennes versions est perdue.",
|
||||
"If enabled, chunks will be split into no more than 100 items. However, dedupe is slightly weaker.": "Si activée, les fragments seront découpés en 100 éléments au maximum. Cependant, la déduplication est légèrement moins efficace.",
|
||||
"If enabled, newly created chunks are temporarily kept within the document, and graduated to become independent chunks once stabilised.": "Si activée, les fragments nouvellement créés sont temporairement conservés dans le document et promus en fragments indépendants une fois stabilisés.",
|
||||
"If enabled, the ⛔ icon will be shown inside the status instead of the file warnings banner. No details will be shown.": "Si activée, l'icône ⛔ s'affichera dans le statut à la place de la bannière d'avertissements de fichiers. Aucun détail ne sera affiché.",
|
||||
"If enabled, the file under 1kb will be processed in the UI thread.": "Si activée, les fichiers de moins de 1 Ko seront traités sur le thread UI.",
|
||||
"If enabled, the notification of hidden files change will be suppressed.": "Si activée, les notifications de modifications des fichiers cachés seront supprimées.",
|
||||
"If this enabled, all chunks will be stored with the revision made from its content. (Previous behaviour)": "Si activée, tous les fragments seront stockés avec la révision issue de leur contenu. (Comportement précédent)",
|
||||
"If this enabled, All files are handled as case-Sensitive (Previous behaviour).": "Si activée, tous les fichiers sont gérés en respectant la casse (comportement précédent).",
|
||||
"If this enabled, chunks will be split into semantically meaningful segments. Not all platforms support this feature.": "Si activée, les fragments seront découpés en segments sémantiquement signifiants. Toutes les plateformes ne prennent pas en charge cette fonctionnalité.",
|
||||
"If this is set, changes to local files which are matched by the ignore files will be skipped. Remote changes are determined using local ignore files.": "Si défini, les modifications des fichiers locaux correspondant aux fichiers d'exclusion seront ignorées. Les changements distants sont déterminés à l'aide des fichiers d'exclusion locaux.",
|
||||
"If this option is enabled, PouchDB will hold the connection open for 60 seconds, and if no change arrives in that time, close and reopen the socket, instead of holding it open indefinitely. Useful when a proxy limits request duration but can increase resource usage.": "Si cette option est activée, PouchDB maintiendra la connexion ouverte pendant 60 secondes, et si aucun changement n'arrive durant cette période, fermera et rouvrira la socket au lieu de la garder ouverte indéfiniment. Utile lorsqu'un proxy limite la durée des requêtes, mais peut augmenter l'utilisation des ressources.",
|
||||
"Ignore files": "Fichiers d'exclusion",
|
||||
"Incubate Chunks in Document": "Incuber les fragments dans le document",
|
||||
"Interval (sec)": "Intervalle (sec)",
|
||||
"K.exp": "Expérimental",
|
||||
"K.long_p2p_sync": "%{title_p2p_sync}",
|
||||
"K.P2P": "%{Peer}-à-%{Peer}",
|
||||
"K.Peer": "Pair",
|
||||
"K.ScanCustomization": "Analyser la personnalisation",
|
||||
"K.short_p2p_sync": "Sync P2P",
|
||||
"K.title_p2p_sync": "Synchronisation pair-à-pair",
|
||||
"Keep empty folder": "Conserver les dossiers vides",
|
||||
"lang_def": "Par défaut",
|
||||
"lang-de": "Deutsche",
|
||||
"lang-def": "%{lang_def}",
|
||||
"lang-es": "Español",
|
||||
"lang-fr": "Français",
|
||||
"lang-ja": "日本語",
|
||||
"lang-ko": "한국어",
|
||||
"lang-ru": "Русский",
|
||||
"lang-zh": "简体中文",
|
||||
"lang-zh-tw": "繁體中文",
|
||||
"LiveSync could not handle multiple vaults which have same name without different prefix, This should be automatically configured.": "LiveSync ne peut pas gérer plusieurs coffres portant le même nom sans préfixe distinct. Ceci devrait être configuré automatiquement.",
|
||||
"liveSyncReplicator.beforeLiveSync": "Avant LiveSync, lancement d'un OneShot initial...",
|
||||
"liveSyncReplicator.cantReplicateLowerValue": "Impossible de répliquer une valeur inférieure.",
|
||||
"liveSyncReplicator.checkingLastSyncPoint": "Recherche du dernier point de synchronisation.",
|
||||
"liveSyncReplicator.couldNotConnectTo": "Connexion impossible à ${uri} : ${name}\n(${db})",
|
||||
"liveSyncReplicator.couldNotConnectToRemoteDb": "Connexion à la base distante impossible : ${d}",
|
||||
"liveSyncReplicator.couldNotConnectToServer": "Connexion au serveur impossible.",
|
||||
"liveSyncReplicator.couldNotConnectToURI": "Connexion impossible à ${uri}:${dbRet}",
|
||||
"liveSyncReplicator.couldNotMarkResolveRemoteDb": "Impossible de marquer la résolution de la base distante.",
|
||||
"liveSyncReplicator.liveSyncBegin": "Démarrage de LiveSync...",
|
||||
"liveSyncReplicator.lockRemoteDb": "Verrouillage de la base distante pour éviter la corruption des données",
|
||||
"liveSyncReplicator.markDeviceResolved": "Marquer cet appareil comme « résolu ».",
|
||||
"liveSyncReplicator.oneShotSyncBegin": "Démarrage de la synchronisation OneShot... (${syncMode})",
|
||||
"liveSyncReplicator.remoteDbCorrupted": "La base distante est plus récente ou corrompue, assurez-vous d'avoir installé la dernière version de self-hosted-livesync",
|
||||
"liveSyncReplicator.remoteDbCreatedOrConnected": "Base distante créée ou connectée",
|
||||
"liveSyncReplicator.remoteDbDestroyed": "Base distante détruite",
|
||||
"liveSyncReplicator.remoteDbDestroyError": "Un problème est survenu lors de la destruction de la base distante :",
|
||||
"liveSyncReplicator.remoteDbMarkedResolved": "La base distante a été marquée comme résolue.",
|
||||
"liveSyncReplicator.replicationClosed": "Réplication fermée",
|
||||
"liveSyncReplicator.replicationInProgress": "Une réplication est déjà en cours",
|
||||
"liveSyncReplicator.retryLowerBatchSize": "Nouvelle tentative avec une taille de lot réduite :${batch_size}/${batches_limit}",
|
||||
"liveSyncReplicator.unlockRemoteDb": "Déverrouillage de la base distante pour éviter la corruption des données",
|
||||
"liveSyncSetting.errorNoSuchSettingItem": "Élément de paramètre inexistant : ${key}",
|
||||
"liveSyncSetting.originalValue": "Original : ${value}",
|
||||
"liveSyncSetting.valueShouldBeInRange": "La valeur doit être ${min} < valeur < ${max}",
|
||||
"liveSyncSettings.btnApply": "Appliquer",
|
||||
"logPane.autoScroll": "Défilement automatique",
|
||||
"logPane.logWindowOpened": "Fenêtre des journaux ouverte",
|
||||
"logPane.pause": "Pause",
|
||||
"logPane.title": "Journaux Self-hosted LiveSync",
|
||||
"logPane.wrap": "Retour à la ligne",
|
||||
"Maximum delay for batch database updating": "Délai maximum pour la mise à jour groupée de la base",
|
||||
"Maximum file size": "Taille maximale de fichier",
|
||||
"Maximum Incubating Chunk Size": "Taille maximale des fragments en incubation",
|
||||
"Maximum Incubating Chunks": "Nombre maximum de fragments en incubation",
|
||||
"Maximum Incubation Period": "Période maximale d'incubation",
|
||||
"MB (0 to disable).": "Mo (0 pour désactiver).",
|
||||
"Memory cache size (by total characters)": "Taille du cache mémoire (par nombre total de caractères)",
|
||||
"Memory cache size (by total items)": "Taille du cache mémoire (par nombre total d'éléments)",
|
||||
"Minimum delay for batch database updating": "Délai minimum pour la mise à jour groupée de la base",
|
||||
"Minimum interval for syncing": "Intervalle minimum pour la synchronisation",
|
||||
"moduleCheckRemoteSize.logCheckingStorageSizes": "Vérification des tailles de stockage",
|
||||
"moduleCheckRemoteSize.logCurrentStorageSize": "Taille du stockage distant : ${measuredSize}",
|
||||
"moduleCheckRemoteSize.logExceededWarning": "Taille du stockage distant : ${measuredSize} a dépassé ${notifySize}",
|
||||
"moduleCheckRemoteSize.logThresholdEnlarged": "Le seuil a été augmenté à ${size} Mo",
|
||||
"moduleCheckRemoteSize.msgConfirmRebuild": "Cela peut prendre un certain temps. Voulez-vous vraiment tout reconstruire maintenant ?",
|
||||
"moduleCheckRemoteSize.msgDatabaseGrowing": "**Votre base de données grossit !** Pas d'inquiétude, nous pouvons y remédier dès maintenant, avant de manquer d'espace sur le stockage distant.\n\n| Taille mesurée | Taille configurée |\n| --- | --- |\n| ${estimatedSize} | ${maxSize} |\n\n> [!MORE]-\n> Si vous l'utilisez depuis de nombreuses années, il peut y avoir des fragments non référencés — des déchets, en somme — accumulés dans la base. Nous recommandons donc de tout reconstruire. Cela réduira probablement beaucoup la taille.\n>\n> Si le volume de votre coffre augmente simplement, il est préférable de tout reconstruire après avoir organisé les fichiers. Self-hosted LiveSync ne supprime pas réellement les données même si vous les effacez, afin d'accélérer le processus. Ceci est documenté grossièrement [ici](https://github.com/vrtmrz/obsidian-livesync/blob/main/docs/tech_info.md).\n>\n> Si cela ne vous dérange pas, vous pouvez augmenter la limite de notification de 100 Mo. C'est le cas si vous l'exécutez sur votre propre serveur. Il reste toutefois préférable de tout reconstruire de temps en temps.\n>\n\n> [!WARNING]\n> Si vous tout reconstruisez, assurez-vous que tous les appareils sont synchronisés. Le plug-in fusionnera autant que possible cependant.\n",
|
||||
"moduleCheckRemoteSize.msgSetDBCapacity": "Nous pouvons définir un avertissement de capacité maximale de la base de données, **afin d'agir avant de manquer d'espace sur le stockage distant**.\nVoulez-vous activer ceci ?\n\n> [!MORE]-\n> - 0 : Ne pas avertir sur la taille de stockage.\n> Recommandé si vous avez suffisamment d'espace sur le stockage distant, surtout en auto-hébergement. Vous pouvez vérifier la taille et reconstruire manuellement.\n> - 800 : Avertir si la taille du stockage distant dépasse 800 Mo.\n> Recommandé si vous utilisez fly.io avec une limite de 1 Go ou IBM Cloudant.\n> - 2000 : Avertir si la taille du stockage distant dépasse 2 Go.\n\nSi la limite est atteinte, il nous sera proposé de l'augmenter étape par étape.\n",
|
||||
"moduleCheckRemoteSize.option2GB": "2 Go (Standard)",
|
||||
"moduleCheckRemoteSize.option800MB": "800 Mo (Cloudant, fly.io)",
|
||||
"moduleCheckRemoteSize.optionAskMeLater": "Me demander plus tard",
|
||||
"moduleCheckRemoteSize.optionDismiss": "Ignorer",
|
||||
"moduleCheckRemoteSize.optionIncreaseLimit": "augmenter à ${newMax} Mo",
|
||||
"moduleCheckRemoteSize.optionNoWarn": "Non, ne jamais avertir",
|
||||
"moduleCheckRemoteSize.optionRebuildAll": "Tout reconstruire maintenant",
|
||||
"moduleCheckRemoteSize.titleDatabaseSizeLimitExceeded": "Taille du stockage distant au-delà de la limite",
|
||||
"moduleCheckRemoteSize.titleDatabaseSizeNotify": "Configuration de la notification de taille de base",
|
||||
"moduleInputUIObsidian.defaultTitleConfirmation": "Confirmation",
|
||||
"moduleInputUIObsidian.defaultTitleSelect": "Sélection",
|
||||
"moduleInputUIObsidian.optionNo": "Non",
|
||||
"moduleInputUIObsidian.optionYes": "Oui",
|
||||
"moduleLiveSyncMain.logAdditionalSafetyScan": "Analyse de sécurité supplémentaire...",
|
||||
"moduleLiveSyncMain.logLoadingPlugin": "Chargement du plugin...",
|
||||
"moduleLiveSyncMain.logPluginInitCancelled": "L'initialisation du plugin a été annulée par un module",
|
||||
"moduleLiveSyncMain.logPluginVersion": "Self-hosted LiveSync v${manifestVersion} ${packageVersion}",
|
||||
"moduleLiveSyncMain.logReadChangelog": "LiveSync a été mis à jour, veuillez lire le journal des modifications !",
|
||||
"moduleLiveSyncMain.logSafetyScanCompleted": "Analyse de sécurité supplémentaire terminée",
|
||||
"moduleLiveSyncMain.logSafetyScanFailed": "L'analyse de sécurité supplémentaire a échoué sur un module",
|
||||
"moduleLiveSyncMain.logUnloadingPlugin": "Déchargement du plugin...",
|
||||
"moduleLiveSyncMain.logVersionUpdate": "LiveSync a été mis à jour. En cas de mises à jour non rétrocompatibles, toute synchronisation automatique a été temporairement désactivée. Assurez-vous que tous les appareils sont à jour avant d'activer.",
|
||||
"moduleLiveSyncMain.msgScramEnabled": "Self-hosted LiveSync a été configuré pour ignorer certains événements. Est-ce correct ?\n\n| Type | Statut | Note |\n|:---:|:---:|---|\n| Événements de stockage | ${fileWatchingStatus} | Toute modification sera ignorée |\n| Événements de base | ${parseReplicationStatus} | Tout changement synchronisé sera reporté |\n\nVoulez-vous les reprendre et redémarrer Obsidian ?\n\n> [!DETAILS]-\n> Ces indicateurs sont définis par le plug-in lors d'une reconstruction ou d'une récupération. Si le processus se termine anormalement, ils peuvent rester activés involontairement.\n> Si vous n'êtes pas certain, vous pouvez relancer ces processus. Veillez à sauvegarder votre coffre.\n",
|
||||
"moduleLiveSyncMain.optionKeepLiveSyncDisabled": "Garder LiveSync désactivé",
|
||||
"moduleLiveSyncMain.optionResumeAndRestart": "Reprendre et redémarrer Obsidian",
|
||||
"moduleLiveSyncMain.titleScramEnabled": "Mode Scram activé",
|
||||
"moduleLocalDatabase.logWaitingForReady": "En attente de disponibilité...",
|
||||
"moduleLog.showLog": "Afficher le journal",
|
||||
"moduleMigration.docUri": "https://github.com/vrtmrz/obsidian-livesync/blob/main/README.md#how-to-use",
|
||||
"moduleMigration.fix0256.buttons.checkItLater": "Vérifier plus tard",
|
||||
"moduleMigration.fix0256.buttons.DismissForever": "J'ai corrigé, et ne plus demander",
|
||||
"moduleMigration.fix0256.buttons.fix": "Corriger",
|
||||
"moduleMigration.fix0256.message": "En raison d'un bug récent (en v0.25.6), certains fichiers peuvent ne pas avoir été enregistrés correctement dans la base de synchronisation.\nNous avons analysé vos fichiers et trouvé ceux à corriger.\n\n**Fichiers prêts à être corrigés :**\n\n${files}\n\nCes fichiers ont un original de taille correspondante sur le stockage, et sont probablement récupérables.\nNous pouvons les utiliser pour corriger la base, veuillez cliquer sur le bouton « Corriger » ci-dessous pour les réparer.\n\n${messageUnrecoverable}\n\nSi vous voulez relancer l'opération, vous pouvez le faire depuis Hatch.\n",
|
||||
"moduleMigration.fix0256.messageUnrecoverable": "**Fichiers non réparables sur cet appareil :**\n\n${filesNotRecoverable}\n\nCes fichiers ont des métadonnées incohérentes et ne peuvent être corrigés sur cet appareil (le plus souvent, nous ne pouvons déterminer lequel est correct).\nPour les restaurer, vérifiez vos autres appareils (par cette même fonction) ou restaurez-les manuellement depuis une sauvegarde.\n",
|
||||
"moduleMigration.fix0256.title": "Fichiers corrompus détectés",
|
||||
"moduleMigration.insecureChunkExist.buttons.fetch": "J'ai déjà reconstruit le distant. Récupérer depuis le distant",
|
||||
"moduleMigration.insecureChunkExist.buttons.later": "Je le ferai plus tard",
|
||||
"moduleMigration.insecureChunkExist.buttons.rebuild": "Tout reconstruire",
|
||||
"moduleMigration.insecureChunkExist.laterMessage": "Nous recommandons fortement de traiter ceci dès que possible !",
|
||||
"moduleMigration.insecureChunkExist.message": "Certains fragments ne sont pas stockés de façon sécurisée et ne sont pas chiffrés dans les bases.\n**Veuillez reconstruire la base pour corriger ce problème.**\n\nSi votre base distante n'est pas configurée avec SSL, ou utilise des identifiants peu sûrs, **vous risquez d'exposer des données sensibles**.\n\nNote : Veuillez mettre à jour Self-hosted LiveSync en v0.25.6 ou supérieur sur tous vos appareils, et sauvegardez votre coffre avec soin.\nNote 2 : Tout reconstruire et Récupérer consomme un peu de temps et de bande passante, veuillez le faire hors des heures de pointe et avec une connexion réseau stable.\n",
|
||||
"moduleMigration.insecureChunkExist.title": "Fragments non sécurisés détectés !",
|
||||
"moduleMigration.logBulkSendCorrupted": "L'envoi groupé de fragments a été activé, mais cette fonctionnalité était corrompue. Désolé pour la gêne. Désactivée automatiquement.",
|
||||
"moduleMigration.logFetchRemoteTweakFailed": "Échec de la récupération des valeurs d'ajustement distantes",
|
||||
"moduleMigration.logLocalDatabaseNotReady": "Un problème est survenu ! La base locale n'est pas prête",
|
||||
"moduleMigration.logMigratedSameBehaviour": "Migration vers db:${current} avec le même comportement qu'auparavant",
|
||||
"moduleMigration.logMigrationFailed": "Migration échouée ou annulée de ${old} vers ${current}",
|
||||
"moduleMigration.logRedflag2CreationFail": "Échec de création de redflag2",
|
||||
"moduleMigration.logRemoteTweakUnavailable": "Impossible d'obtenir les valeurs d'ajustement distantes",
|
||||
"moduleMigration.logSetupCancelled": "La configuration a été annulée, Self-hosted LiveSync attend votre configuration !",
|
||||
"moduleMigration.msgFetchRemoteAgain": "Comme vous le savez peut-être déjà, Self-hosted LiveSync a modifié son comportement par défaut et la structure de sa base de données.\n\nEt, grâce à votre temps et vos efforts, la base distante semble déjà avoir été migrée. Félicitations !\n\nCependant, il faut encore un peu plus. La configuration de cet appareil n'est pas compatible avec la base distante. Nous devrons récupérer à nouveau la base distante. Devons-nous récupérer depuis le distant maintenant ?\n\n___Note : Nous ne pouvons pas synchroniser tant que la configuration n'a pas été modifiée et que la base n'a pas été récupérée à nouveau.___\n___Note 2 : Les fragments sont complètement immuables, nous ne pouvons récupérer que les métadonnées et les différences.___",
|
||||
"moduleMigration.msgInitialSetup": "Votre appareil n'a **pas encore été configuré**. Laissez-moi vous guider dans le processus de configuration.\n\nVeuillez noter que chaque contenu de boîte de dialogue peut être copié dans le presse-papiers. Si vous souhaitez vous y référer plus tard, vous pouvez le coller dans une note d'Obsidian. Vous pouvez également le traduire dans votre langue via un outil de traduction.\n\nTout d'abord, disposez-vous d'une **URI de configuration** ?\n\nNote : Si vous ne savez pas ce que c'est, consultez la [documentation](${URI_DOC}).",
|
||||
"moduleMigration.msgRecommendSetupUri": "Nous recommandons vivement de générer une URI de configuration et de l'utiliser.\nSi vous ne connaissez pas, veuillez consulter la [documentation](${URI_DOC}) (Désolé encore, mais c'est important).\n\nComment souhaitez-vous effectuer la configuration manuellement ?",
|
||||
"moduleMigration.msgSinceV02321": "Depuis la v0.23.21, Self-hosted LiveSync a modifié son comportement par défaut et la structure de sa base. Les changements suivants ont été effectués :\n\n1. **Sensibilité à la casse des noms de fichiers**\n La gestion des noms de fichiers est désormais insensible à la casse. C'est un changement bénéfique pour la plupart des plateformes, hormis Linux et iOS, qui ne gèrent pas efficacement la casse des noms de fichiers.\n (Sur celles-ci, un avertissement s'affichera pour les fichiers portant le même nom avec une casse différente).\n\n2. **Gestion des révisions des fragments**\n Les fragments sont immuables, ce qui permet de fixer leurs révisions. Ce changement améliore les performances d'enregistrement des fichiers.\n\n___Cependant, pour activer l'un ou l'autre de ces changements, les bases locale et distante doivent être reconstruites. Ce processus prend quelques minutes, et nous recommandons de le faire quand vous avez le temps.___\n\n- Si vous souhaitez conserver le comportement précédent, vous pouvez ignorer ce processus via `${KEEP}`.\n- Si vous n'avez pas le temps, choisissez `${DISMISS}`. Vous serez invité à nouveau plus tard.\n- Si vous avez reconstruit la base sur un autre appareil, sélectionnez `${DISMISS}` et réessayez la synchronisation. Une différence étant détectée, vous serez invité à nouveau.",
|
||||
"moduleMigration.optionAdjustRemote": "Ajuster au distant",
|
||||
"moduleMigration.optionDecideLater": "Décider plus tard",
|
||||
"moduleMigration.optionEnableBoth": "Activer les deux",
|
||||
"moduleMigration.optionEnableFilenameCaseInsensitive": "Activer seulement #1",
|
||||
"moduleMigration.optionEnableFixedRevisionForChunks": "Activer seulement #2",
|
||||
"moduleMigration.optionHaveSetupUri": "Oui, j'en ai une",
|
||||
"moduleMigration.optionKeepPreviousBehaviour": "Conserver le comportement précédent",
|
||||
"moduleMigration.optionManualSetup": "Tout configurer manuellement",
|
||||
"moduleMigration.optionNoAskAgain": "Non, demandez à nouveau",
|
||||
"moduleMigration.optionNoSetupUri": "Non, je n'en ai pas",
|
||||
"moduleMigration.optionRemindNextLaunch": "Me rappeler au prochain lancement",
|
||||
"moduleMigration.optionSetupViaP2P": "Utiliser %{short_p2p_sync} pour configurer",
|
||||
"moduleMigration.optionSetupWizard": "Ouvrir l'assistant de configuration",
|
||||
"moduleMigration.optionYesFetchAgain": "Oui, récupérer à nouveau",
|
||||
"moduleMigration.titleCaseSensitivity": "Sensibilité à la casse",
|
||||
"moduleMigration.titleRecommendSetupUri": "Recommandation d'utilisation de l'URI de configuration",
|
||||
"moduleMigration.titleWelcome": "Bienvenue dans Self-hosted LiveSync",
|
||||
"moduleObsidianMenu.replicate": "Répliquer",
|
||||
"Move remotely deleted files to the trash, instead of deleting.": "Déplacer les fichiers supprimés à distance vers la corbeille, au lieu de les supprimer.",
|
||||
"Not all messages have been translated. And, please revert to \"Default\" when reporting errors.": "Tous les messages n'ont pas été traduits. Et veuillez revenir à « Par défaut » lorsque vous signalez des erreurs.",
|
||||
"Notify all setting files": "Notifier tous les fichiers de paramètres",
|
||||
"Notify customized": "Notifier les personnalisations",
|
||||
"Notify when other device has newly customized.": "Notifier lorsqu'un autre appareil a une nouvelle personnalisation.",
|
||||
"Notify when the estimated remote storage size exceeds on start up": "Notifier quand la taille estimée du stockage distant est dépassée au démarrage",
|
||||
"Number of batches to process at a time. Defaults to 40. Minimum is 2. This along with batch size controls how many docs are kept in memory at a time.": "Nombre de lots à traiter à la fois. Par défaut 40. Minimum 2. Ceci, avec la taille de lot, contrôle le nombre de documents conservés en mémoire à la fois.",
|
||||
"Number of changes to sync at a time. Defaults to 50. Minimum is 2.": "Nombre de modifications à synchroniser à la fois. Par défaut 50. Minimum 2.",
|
||||
"obsidianLiveSyncSettingTab.btnApply": "Appliquer",
|
||||
"obsidianLiveSyncSettingTab.btnCheck": "Vérifier",
|
||||
"obsidianLiveSyncSettingTab.btnCopy": "Copier",
|
||||
"obsidianLiveSyncSettingTab.btnDisable": "Désactiver",
|
||||
"obsidianLiveSyncSettingTab.btnDiscard": "Abandonner",
|
||||
"obsidianLiveSyncSettingTab.btnEnable": "Activer",
|
||||
"obsidianLiveSyncSettingTab.btnFix": "Corriger",
|
||||
"obsidianLiveSyncSettingTab.btnGotItAndUpdated": "J'ai compris et mis à jour.",
|
||||
"obsidianLiveSyncSettingTab.btnNext": "Suivant",
|
||||
"obsidianLiveSyncSettingTab.btnStart": "Démarrer",
|
||||
"obsidianLiveSyncSettingTab.btnTest": "Tester",
|
||||
"obsidianLiveSyncSettingTab.btnUse": "Utiliser",
|
||||
"obsidianLiveSyncSettingTab.buttonFetch": "Récupérer",
|
||||
"obsidianLiveSyncSettingTab.buttonNext": "Suivant",
|
||||
"obsidianLiveSyncSettingTab.defaultLanguage": "Par défaut",
|
||||
"obsidianLiveSyncSettingTab.descConnectSetupURI": "Méthode recommandée pour configurer Self-hosted LiveSync avec une URI de configuration.",
|
||||
"obsidianLiveSyncSettingTab.descCopySetupURI": "Parfait pour configurer un nouvel appareil !",
|
||||
"obsidianLiveSyncSettingTab.descEnableLiveSync": "N'activez ceci qu'après avoir configuré l'une des deux options ci-dessus ou terminé toute la configuration manuellement.",
|
||||
"obsidianLiveSyncSettingTab.descFetchConfigFromRemote": "Récupérer les paramètres nécessaires depuis un serveur distant déjà configuré.",
|
||||
"obsidianLiveSyncSettingTab.descManualSetup": "Non recommandé, mais utile si vous n'avez pas d'URI de configuration",
|
||||
"obsidianLiveSyncSettingTab.descTestDatabaseConnection": "Ouvrir la connexion à la base de données. Si la base distante est introuvable et que vous avez l'autorisation de créer une base, elle sera créée.",
|
||||
"obsidianLiveSyncSettingTab.descValidateDatabaseConfig": "Vérifie et corrige les problèmes potentiels de la configuration de la base.",
|
||||
"obsidianLiveSyncSettingTab.errAccessForbidden": "❗ Accès interdit.",
|
||||
"obsidianLiveSyncSettingTab.errCannotContinueTest": "Impossible de poursuivre le test.",
|
||||
"obsidianLiveSyncSettingTab.errCorsCredentials": "❗ cors.credentials est incorrect",
|
||||
"obsidianLiveSyncSettingTab.errCorsNotAllowingCredentials": "❗ CORS n'autorise pas les identifiants",
|
||||
"obsidianLiveSyncSettingTab.errCorsOrigins": "❗ cors.origins est incorrect",
|
||||
"obsidianLiveSyncSettingTab.errEnableCors": "❗ httpd.enable_cors est incorrect",
|
||||
"obsidianLiveSyncSettingTab.errEnableCorsChttpd": "❗ chttpd.enable_cors est incorrect",
|
||||
"obsidianLiveSyncSettingTab.errMaxDocumentSize": "❗ couchdb.max_document_size est trop bas)",
|
||||
"obsidianLiveSyncSettingTab.errMaxRequestSize": "❗ chttpd.max_http_request_size est trop bas)",
|
||||
"obsidianLiveSyncSettingTab.errMissingWwwAuth": "❗ httpd.WWW-Authenticate est manquant",
|
||||
"obsidianLiveSyncSettingTab.errRequireValidUser": "❗ chttpd.require_valid_user est incorrect.",
|
||||
"obsidianLiveSyncSettingTab.errRequireValidUserAuth": "❗ chttpd_auth.require_valid_user est incorrect.",
|
||||
"obsidianLiveSyncSettingTab.labelDisabled": "⏹️ : Désactivé",
|
||||
"obsidianLiveSyncSettingTab.labelEnabled": "🔁 : Activé",
|
||||
"obsidianLiveSyncSettingTab.levelAdvanced": " (Avancé)",
|
||||
"obsidianLiveSyncSettingTab.levelEdgeCase": " (Cas particulier)",
|
||||
"obsidianLiveSyncSettingTab.levelPowerUser": " (Utilisateur avancé)",
|
||||
"obsidianLiveSyncSettingTab.linkOpenInBrowser": "Ouvrir dans le navigateur",
|
||||
"obsidianLiveSyncSettingTab.linkPageTop": "Haut de la page",
|
||||
"obsidianLiveSyncSettingTab.linkTipsAndTroubleshooting": "Conseils et dépannage",
|
||||
"obsidianLiveSyncSettingTab.linkTroubleshooting": "/docs/troubleshooting.md",
|
||||
"obsidianLiveSyncSettingTab.logCannotUseCloudant": "Cette fonctionnalité ne peut pas être utilisée avec IBM Cloudant.",
|
||||
"obsidianLiveSyncSettingTab.logCheckingConfigDone": "Vérification de la configuration terminée",
|
||||
"obsidianLiveSyncSettingTab.logCheckingConfigFailed": "Échec de la vérification de la configuration",
|
||||
"obsidianLiveSyncSettingTab.logCheckingDbConfig": "Vérification de la configuration de la base",
|
||||
"obsidianLiveSyncSettingTab.logCheckPassphraseFailed": "ERREUR : Échec de la vérification de la phrase secrète avec le serveur distant :\n${db}.",
|
||||
"obsidianLiveSyncSettingTab.logConfiguredDisabled": "Mode de synchronisation configuré : DÉSACTIVÉ",
|
||||
"obsidianLiveSyncSettingTab.logConfiguredLiveSync": "Mode de synchronisation configuré : LiveSync",
|
||||
"obsidianLiveSyncSettingTab.logConfiguredPeriodic": "Mode de synchronisation configuré : Périodique",
|
||||
"obsidianLiveSyncSettingTab.logCouchDbConfigFail": "Configuration CouchDB : échec de ${title}",
|
||||
"obsidianLiveSyncSettingTab.logCouchDbConfigSet": "Configuration CouchDB : ${title} -> ${key} défini à ${value}",
|
||||
"obsidianLiveSyncSettingTab.logCouchDbConfigUpdated": "Configuration CouchDB : ${title} mise à jour avec succès",
|
||||
"obsidianLiveSyncSettingTab.logDatabaseConnected": "Base de données connectée",
|
||||
"obsidianLiveSyncSettingTab.logEncryptionNoPassphrase": "Impossible d'activer le chiffrement sans phrase secrète",
|
||||
"obsidianLiveSyncSettingTab.logEncryptionNoSupport": "Votre appareil ne prend pas en charge le chiffrement.",
|
||||
"obsidianLiveSyncSettingTab.logErrorOccurred": "Une erreur s'est produite !!",
|
||||
"obsidianLiveSyncSettingTab.logEstimatedSize": "Taille estimée : ${size}",
|
||||
"obsidianLiveSyncSettingTab.logPassphraseInvalid": "La phrase secrète est invalide, veuillez la corriger.",
|
||||
"obsidianLiveSyncSettingTab.logPassphraseNotCompatible": "ERREUR : la phrase secrète n'est pas compatible avec le serveur distant ! Veuillez vérifier à nouveau !",
|
||||
"obsidianLiveSyncSettingTab.logRebuildNote": "La synchronisation a été désactivée, récupérez et réactivez si souhaité.",
|
||||
"obsidianLiveSyncSettingTab.logSelectAnyPreset": "Sélectionnez un préréglage.",
|
||||
"obsidianLiveSyncSettingTab.msgAreYouSureProceed": "Êtes-vous sûr de vouloir continuer ?",
|
||||
"obsidianLiveSyncSettingTab.msgChangesNeedToBeApplied": "Des modifications doivent être appliquées !",
|
||||
"obsidianLiveSyncSettingTab.msgConfigCheck": "--Vérification de la configuration--",
|
||||
"obsidianLiveSyncSettingTab.msgConfigCheckFailed": "La vérification de la configuration a échoué. Voulez-vous continuer malgré tout ?",
|
||||
"obsidianLiveSyncSettingTab.msgConnectionCheck": "--Vérification de la connexion--",
|
||||
"obsidianLiveSyncSettingTab.msgConnectionProxyNote": "Si vous rencontrez des problèmes de vérification de connexion (même après avoir vérifié la configuration), veuillez vérifier votre configuration de reverse proxy.",
|
||||
"obsidianLiveSyncSettingTab.msgCurrentOrigin": "Origine actuelle : ${origin}",
|
||||
"obsidianLiveSyncSettingTab.msgDiscardConfirmation": "Voulez-vous vraiment abandonner les paramètres et bases existants ?",
|
||||
"obsidianLiveSyncSettingTab.msgDone": "--Terminé--",
|
||||
"obsidianLiveSyncSettingTab.msgEnableCors": "Définir httpd.enable_cors",
|
||||
"obsidianLiveSyncSettingTab.msgEnableCorsChttpd": "Définir chttpd.enable_cors",
|
||||
"obsidianLiveSyncSettingTab.msgEnableEncryptionRecommendation": "Nous recommandons d'activer le chiffrement de bout en bout et l'obfuscation des chemins. Êtes-vous sûr de vouloir continuer sans chiffrement ?",
|
||||
"obsidianLiveSyncSettingTab.msgFetchConfigFromRemote": "Voulez-vous récupérer la configuration depuis le serveur distant ?",
|
||||
"obsidianLiveSyncSettingTab.msgGenerateSetupURI": "Tout est prêt ! Voulez-vous générer une URI de configuration pour configurer d'autres appareils ?",
|
||||
"obsidianLiveSyncSettingTab.msgIfConfigNotPersistent": "Si la configuration du serveur n'est pas persistante (par ex. fonctionnant sur Docker), les valeurs peuvent changer. Une fois la connexion établie, mettez à jour les paramètres dans le local.ini du serveur.",
|
||||
"obsidianLiveSyncSettingTab.msgInvalidPassphrase": "Votre phrase secrète de chiffrement peut être invalide. Êtes-vous sûr de vouloir continuer ?",
|
||||
"obsidianLiveSyncSettingTab.msgNewVersionNote": "Arrivé ici suite à une notification de mise à jour ? Consultez l'historique des versions. Si vous êtes satisfait, cliquez sur le bouton. Une nouvelle mise à jour reproposera ceci.",
|
||||
"obsidianLiveSyncSettingTab.msgNonHTTPSInfo": "Configuré avec une URI non HTTPS. Attention, ceci peut ne pas fonctionner sur les appareils mobiles.",
|
||||
"obsidianLiveSyncSettingTab.msgNonHTTPSWarning": "Connexion impossible à une URI non HTTPS. Mettez à jour votre configuration et réessayez.",
|
||||
"obsidianLiveSyncSettingTab.msgNotice": "---Avis---",
|
||||
"obsidianLiveSyncSettingTab.msgObjectStorageWarning": "AVERTISSEMENT : cette fonctionnalité est en cours de développement, gardez à l'esprit ce qui suit :\n- Architecture en ajout seul. Une reconstruction est nécessaire pour réduire le stockage.\n- Un peu fragile.\n- Lors de la première synchronisation, tout l'historique sera transféré depuis le distant. Attention aux limites de données et aux débits lents.\n- Seules les différences sont synchronisées en direct.\n\nSi vous rencontrez des problèmes ou avez des idées sur cette fonctionnalité, merci d'ouvrir un ticket sur GitHub.\nMerci pour votre grand dévouement.",
|
||||
"obsidianLiveSyncSettingTab.msgOriginCheck": "Vérification d'origine : ${org}",
|
||||
"obsidianLiveSyncSettingTab.msgRebuildRequired": "La reconstruction des bases de données est nécessaire pour appliquer les changements. Veuillez sélectionner la méthode d'application.\n\n<details>\n<summary>Légende</summary>\n\n| Symbole | Signification |\n|: ------ :| ------- |\n| ⇔ | À jour |\n| ⇄ | Synchroniser pour équilibrer |\n| ⇐,⇒ | Transférer pour écraser |\n| ⇠,⇢ | Transférer pour écraser depuis l'autre côté |\n\n</details>\n\n## ${OPTION_REBUILD_BOTH}\nEn bref : 📄 ⇒¹ 💻 ⇒² 🛰️ ⇢ⁿ 💻 ⇄ⁿ⁺¹ 📄\nReconstruit les bases locale et distante à partir des fichiers existants de cet appareil.\nCeci provoque un verrouillage des autres appareils, qui devront effectuer une récupération.\n## ${OPTION_FETCH}\nEn bref : 📄 ⇄² 💻 ⇐¹ 🛰️ ⇔ 💻 ⇔ 📄\nInitialise la base locale et la reconstruit à partir des données récupérées depuis la base distante.\nCe cas inclut également celui où vous avez reconstruit la base distante.\n## ${OPTION_ONLY_SETTING}\nNe stocker que les paramètres. **Attention : cela peut entraîner une corruption des données** ; une reconstruction de la base est généralement nécessaire.",
|
||||
"obsidianLiveSyncSettingTab.msgSelectAndApplyPreset": "Veuillez sélectionner et appliquer un préréglage pour terminer l'assistant.",
|
||||
"obsidianLiveSyncSettingTab.msgSetCorsCredentials": "Définir cors.credentials",
|
||||
"obsidianLiveSyncSettingTab.msgSetCorsOrigins": "Définir cors.origins",
|
||||
"obsidianLiveSyncSettingTab.msgSetMaxDocSize": "Définir couchdb.max_document_size",
|
||||
"obsidianLiveSyncSettingTab.msgSetMaxRequestSize": "Définir chttpd.max_http_request_size",
|
||||
"obsidianLiveSyncSettingTab.msgSetRequireValidUser": "Définir chttpd.require_valid_user = true",
|
||||
"obsidianLiveSyncSettingTab.msgSetRequireValidUserAuth": "Définir chttpd_auth.require_valid_user = true",
|
||||
"obsidianLiveSyncSettingTab.msgSettingModified": "Le paramètre « ${setting} » a été modifié depuis un autre appareil. Cliquez sur {HERE} pour recharger les paramètres. Cliquez ailleurs pour ignorer les modifications.",
|
||||
"obsidianLiveSyncSettingTab.msgSettingsUnchangeableDuringSync": "Ces paramètres ne peuvent pas être modifiés durant la synchronisation. Désactivez toute synchronisation dans « Paramètres de synchronisation » pour déverrouiller.",
|
||||
"obsidianLiveSyncSettingTab.msgSetWwwAuth": "Définir httpd.WWW-Authenticate",
|
||||
"obsidianLiveSyncSettingTab.nameApplySettings": "Appliquer les paramètres",
|
||||
"obsidianLiveSyncSettingTab.nameConnectSetupURI": "Se connecter avec une URI de configuration",
|
||||
"obsidianLiveSyncSettingTab.nameCopySetupURI": "Copier les paramètres actuels vers une URI de configuration",
|
||||
"obsidianLiveSyncSettingTab.nameDisableHiddenFileSync": "Désactiver la synchronisation des fichiers cachés",
|
||||
"obsidianLiveSyncSettingTab.nameDiscardSettings": "Abandonner les paramètres et bases existants",
|
||||
"obsidianLiveSyncSettingTab.nameEnableHiddenFileSync": "Activer la synchronisation des fichiers cachés",
|
||||
"obsidianLiveSyncSettingTab.nameEnableLiveSync": "Activer LiveSync",
|
||||
"obsidianLiveSyncSettingTab.nameHiddenFileSynchronization": "Synchronisation des fichiers cachés",
|
||||
"obsidianLiveSyncSettingTab.nameManualSetup": "Configuration manuelle",
|
||||
"obsidianLiveSyncSettingTab.nameTestConnection": "Tester la connexion",
|
||||
"obsidianLiveSyncSettingTab.nameTestDatabaseConnection": "Tester la connexion à la base de données",
|
||||
"obsidianLiveSyncSettingTab.nameValidateDatabaseConfig": "Valider la configuration de la base de données",
|
||||
"obsidianLiveSyncSettingTab.okAdminPrivileges": "✔ Vous disposez des privilèges administrateur.",
|
||||
"obsidianLiveSyncSettingTab.okCorsCredentials": "✔ cors.credentials est correct.",
|
||||
"obsidianLiveSyncSettingTab.okCorsCredentialsForOrigin": "Identifiants CORS OK",
|
||||
"obsidianLiveSyncSettingTab.okCorsOriginMatched": "✔ Origine CORS OK",
|
||||
"obsidianLiveSyncSettingTab.okCorsOrigins": "✔ cors.origins est correct.",
|
||||
"obsidianLiveSyncSettingTab.okEnableCors": "✔ httpd.enable_cors est correct.",
|
||||
"obsidianLiveSyncSettingTab.okEnableCorsChttpd": "✔ chttpd.enable_cors est correct.",
|
||||
"obsidianLiveSyncSettingTab.okMaxDocumentSize": "✔ couchdb.max_document_size est correct.",
|
||||
"obsidianLiveSyncSettingTab.okMaxRequestSize": "✔ chttpd.max_http_request_size est correct.",
|
||||
"obsidianLiveSyncSettingTab.okRequireValidUser": "✔ chttpd.require_valid_user est correct.",
|
||||
"obsidianLiveSyncSettingTab.okRequireValidUserAuth": "✔ chttpd_auth.require_valid_user est correct.",
|
||||
"obsidianLiveSyncSettingTab.okWwwAuth": "✔ httpd.WWW-Authenticate est correct.",
|
||||
"obsidianLiveSyncSettingTab.optionApply": "Appliquer",
|
||||
"obsidianLiveSyncSettingTab.optionCancel": "Annuler",
|
||||
"obsidianLiveSyncSettingTab.optionCouchDB": "CouchDB",
|
||||
"obsidianLiveSyncSettingTab.optionDisableAllAutomatic": "Désactiver toute automatisation",
|
||||
"obsidianLiveSyncSettingTab.optionFetchFromRemote": "Récupérer depuis le distant",
|
||||
"obsidianLiveSyncSettingTab.optionHere": "ICI",
|
||||
"obsidianLiveSyncSettingTab.optionLiveSync": "LiveSync",
|
||||
"obsidianLiveSyncSettingTab.optionMinioS3R2": "Minio, S3, R2",
|
||||
"obsidianLiveSyncSettingTab.optionOkReadEverything": "OK, j'ai tout lu.",
|
||||
"obsidianLiveSyncSettingTab.optionOnEvents": "Sur événements",
|
||||
"obsidianLiveSyncSettingTab.optionPeriodicAndEvents": "Périodique et sur événements",
|
||||
"obsidianLiveSyncSettingTab.optionPeriodicWithBatch": "Périodique avec lot",
|
||||
"obsidianLiveSyncSettingTab.optionRebuildBoth": "Tout reconstruire depuis cet appareil",
|
||||
"obsidianLiveSyncSettingTab.optionSaveOnlySettings": "(Danger) N'enregistrer que les paramètres",
|
||||
"obsidianLiveSyncSettingTab.panelChangeLog": "Journal des modifications",
|
||||
"obsidianLiveSyncSettingTab.panelGeneralSettings": "Paramètres généraux",
|
||||
"obsidianLiveSyncSettingTab.panelPrivacyEncryption": "Confidentialité et chiffrement",
|
||||
"obsidianLiveSyncSettingTab.panelRemoteConfiguration": "Configuration distante",
|
||||
"obsidianLiveSyncSettingTab.panelSetup": "Configuration",
|
||||
"obsidianLiveSyncSettingTab.serverVersion": "Infos serveur : ${info}",
|
||||
"obsidianLiveSyncSettingTab.titleActiveRemoteServer": "Serveur distant actif",
|
||||
"obsidianLiveSyncSettingTab.titleAppearance": "Apparence",
|
||||
"obsidianLiveSyncSettingTab.titleConflictResolution": "Résolution des conflits",
|
||||
"obsidianLiveSyncSettingTab.titleCongratulations": "Félicitations !",
|
||||
"obsidianLiveSyncSettingTab.titleCouchDB": "CouchDB",
|
||||
"obsidianLiveSyncSettingTab.titleDeletionPropagation": "Propagation des suppressions",
|
||||
"obsidianLiveSyncSettingTab.titleEncryptionNotEnabled": "Le chiffrement n'est pas activé",
|
||||
"obsidianLiveSyncSettingTab.titleEncryptionPassphraseInvalid": "Phrase secrète de chiffrement invalide",
|
||||
"obsidianLiveSyncSettingTab.titleExtraFeatures": "Activer les fonctionnalités supplémentaires et avancées",
|
||||
"obsidianLiveSyncSettingTab.titleFetchConfig": "Récupérer la configuration",
|
||||
"obsidianLiveSyncSettingTab.titleFetchConfigFromRemote": "Récupérer la configuration depuis le serveur distant",
|
||||
"obsidianLiveSyncSettingTab.titleFetchSettings": "Récupérer les paramètres",
|
||||
"obsidianLiveSyncSettingTab.titleHiddenFiles": "Fichiers cachés",
|
||||
"obsidianLiveSyncSettingTab.titleLogging": "Journalisation",
|
||||
"obsidianLiveSyncSettingTab.titleMinioS3R2": "Minio, S3, R2",
|
||||
"obsidianLiveSyncSettingTab.titleNotification": "Notification",
|
||||
"obsidianLiveSyncSettingTab.titleOnlineTips": "Conseils en ligne",
|
||||
"obsidianLiveSyncSettingTab.titleQuickSetup": "Configuration rapide",
|
||||
"obsidianLiveSyncSettingTab.titleRebuildRequired": "Reconstruction requise",
|
||||
"obsidianLiveSyncSettingTab.titleRemoteConfigCheckFailed": "Échec de la vérification de la configuration distante",
|
||||
"obsidianLiveSyncSettingTab.titleRemoteServer": "Serveur distant",
|
||||
"obsidianLiveSyncSettingTab.titleReset": "Réinitialiser",
|
||||
"obsidianLiveSyncSettingTab.titleSetupOtherDevices": "Pour configurer d'autres appareils",
|
||||
"obsidianLiveSyncSettingTab.titleSynchronizationMethod": "Méthode de synchronisation",
|
||||
"obsidianLiveSyncSettingTab.titleSynchronizationPreset": "Préréglage de synchronisation",
|
||||
"obsidianLiveSyncSettingTab.titleSyncSettings": "Paramètres de synchronisation",
|
||||
"obsidianLiveSyncSettingTab.titleSyncSettingsViaMarkdown": "Synchroniser les paramètres via Markdown",
|
||||
"obsidianLiveSyncSettingTab.titleUpdateThinning": "Lissage des mises à jour",
|
||||
"obsidianLiveSyncSettingTab.warnCorsOriginUnmatched": "⚠ L'origine CORS ne correspond pas ${from}->${to}",
|
||||
"obsidianLiveSyncSettingTab.warnNoAdmin": "⚠ Vous n'avez pas les privilèges administrateur.",
|
||||
"P2P.AskPassphraseForDecrypt": "Le pair distant a partagé la configuration. Veuillez saisir la phrase secrète pour déchiffrer la configuration.",
|
||||
"P2P.AskPassphraseForShare": "Le pair distant a demandé la configuration de cet appareil. Veuillez saisir la phrase secrète pour partager la configuration. Vous pouvez ignorer la demande en annulant cette boîte de dialogue.",
|
||||
"P2P.DisabledButNeed": "%{title_p2p_sync} est désactivé. Voulez-vous vraiment l'activer ?",
|
||||
"P2P.FailedToOpen": "Échec d'ouverture de la connexion P2P vers le serveur de signalisation.",
|
||||
"P2P.NoAutoSyncPeers": "Aucun pair de synchronisation automatique trouvé. Veuillez définir des pairs dans le panneau %{long_p2p_sync}.",
|
||||
"P2P.NoKnownPeers": "Aucun pair détecté, en attente d'autres pairs entrants...",
|
||||
"P2P.Note.description": " Ce réplicateur permet de synchroniser notre coffre avec d'autres\nappareils via une connexion pair-à-pair. Nous pouvons l'utiliser pour synchroniser notre coffre avec nos autres appareils sans recourir à un service cloud.\nCe réplicateur est basé sur Trystero. Il utilise également un serveur de signalisation pour établir une connexion entre les appareils. Le serveur de signalisation sert à échanger les informations de connexion entre appareils. Il ne connaît (ou ne devrait connaître) ni ne stocke aucune de nos données.\n\nLe serveur de signalisation peut être hébergé par n'importe qui. Il s'agit simplement d'un relais Nostr. Par souci de simplicité et pour vérifier le comportement du réplicateur, une instance du serveur de signalisation est hébergée par vrtmrz. Vous pouvez utiliser le serveur expérimental fourni par vrtmrz, ou tout autre serveur.\n\nAu passage, même si le serveur de signalisation ne stocke pas nos données, il peut voir les informations de connexion de certains de nos appareils. Soyez-en conscient. Soyez également prudent avec un serveur fourni par quelqu'un d'autre.",
|
||||
"P2P.Note.important_note": "Réplicateur pair-à-pair.",
|
||||
"P2P.Note.important_note_sub": "Cette fonctionnalité est encore en tout début de développement. Veillez à sauvegarder vos données avant de l'utiliser. Nous serions très heureux si vous contribuiez au développement de cette fonctionnalité.",
|
||||
"P2P.Note.Summary": "Qu'est-ce que cette fonctionnalité ? (et quelques notes importantes, à lire)",
|
||||
"P2P.NotEnabled": "%{title_p2p_sync} n'est pas activé. Nous ne pouvons pas ouvrir de nouvelle connexion.",
|
||||
"P2P.P2PReplication": "Réplication %{P2P}",
|
||||
"P2P.PaneTitle": "%{long_p2p_sync}",
|
||||
"P2P.ReplicatorInstanceMissing": "Le réplicateur Sync P2P est introuvable, peut-être non configuré ou non activé.",
|
||||
"P2P.SeemsOffline": "Le pair ${name} semble hors ligne, ignoré.",
|
||||
"P2P.SyncAlreadyRunning": "La Sync P2P est déjà en cours.",
|
||||
"P2P.SyncCompleted": "Sync P2P terminée.",
|
||||
"P2P.SyncStartedWith": "La Sync P2P avec ${name} a démarré.",
|
||||
"Passphrase": "Phrase secrète",
|
||||
"Passphrase of sensitive configuration items": "Phrase secrète des éléments de configuration sensibles",
|
||||
"password": "mot de passe",
|
||||
"Password": "Mot de passe",
|
||||
"Path Obfuscation": "Obfuscation des chemins",
|
||||
"Per-file-saved customization sync": "Synchronisation de personnalisation enregistrée par fichier",
|
||||
"Periodic Sync interval": "Intervalle de synchronisation périodique",
|
||||
"Prepare the 'report' to create an issue": "Préparer le « rapport » pour créer un ticket",
|
||||
"Presets": "Préréglages",
|
||||
"Process small files in the foreground": "Traiter les petits fichiers au premier plan",
|
||||
"Property Encryption": "Chiffrement des propriétés",
|
||||
"RedFlag.Fetch.Method.Desc": "Comment voulez-vous récupérer ?\n- %{RedFlag.Fetch.Method.FetchSafer}.\n **Trafic faible**, **CPU élevé**, **Risque faible**\n Recommandé si ...\n - Fichiers possiblement incohérents\n - Fichiers peu nombreux\n- %{RedFlag.Fetch.Method.FetchSmoother}.\n **Trafic faible**, **CPU modéré**, **Risque faible à modéré**\n Recommandé si ...\n - Fichiers probablement cohérents\n - Vous avez beaucoup de fichiers.\n- %{RedFlag.Fetch.Method.FetchTraditional}.\n **Trafic élevé**, **CPU faible**, **Risque faible à modéré**\n\n>[!INFO]- Détails\n> ## %{RedFlag.Fetch.Method.FetchSafer}.\n> **Trafic faible**, **CPU élevé**, **Risque faible**\n> Cette option crée d'abord une base locale à partir des fichiers locaux existants avant de récupérer les données depuis la source distante.\n> Si des fichiers correspondants existent à la fois localement et à distance, seules les différences entre eux seront transférées.\n> Toutefois, les fichiers présents aux deux emplacements seront initialement traités comme en conflit. Ils seront résolus automatiquement s'ils ne le sont pas réellement, mais ce processus peut prendre du temps.\n> C'est généralement la méthode la plus sûre, minimisant le risque de perte de données.\n> ## %{RedFlag.Fetch.Method.FetchSmoother}.\n> **Trafic faible**, **CPU modéré**, **Risque faible à modéré** (selon l'opération)\n> Cette option crée d'abord des fragments à partir des fichiers locaux pour la base, puis récupère les données. Par conséquent, seuls les fragments manquants localement sont transférés. Cependant, toutes les métadonnées sont prises de la source distante.\n> Les fichiers locaux sont ensuite comparés à ces métadonnées au lancement. Le contenu considéré comme plus récent écrasera le plus ancien (selon la date de modification). Le résultat est ensuite synchronisé vers la base distante.\n> C'est généralement sûr si les fichiers locaux ont bien l'horodatage le plus récent. Cela peut toutefois poser problème si un fichier a un horodatage plus récent mais un contenu plus ancien (comme le `welcome.md` initial).\n> Cette méthode utilise moins de CPU et est plus rapide que « %{RedFlag.Fetch.Method.FetchSafer} », mais peut entraîner une perte de données si elle n'est pas utilisée avec précaution.\n> ## %{RedFlag.Fetch.Method.FetchTraditional}.\n> **Trafic élevé**, **CPU faible**, **Risque faible à modéré** (selon l'opération)\n> Tout sera récupéré depuis le distant.\n> Similaire à %{RedFlag.Fetch.Method.FetchSmoother}, mais tous les fragments sont récupérés depuis la source distante.\n> C'est la façon la plus traditionnelle de récupérer, consommant généralement le plus de trafic réseau et de temps. Elle comporte également un risque similaire d'écraser les fichiers distants à l'option « %{RedFlag.Fetch.Method.FetchSmoother} ».\n> Elle est toutefois souvent considérée comme la méthode la plus stable car c'est la plus ancienne et la plus directe.",
|
||||
"RedFlag.Fetch.Method.FetchSafer": "Créer une base locale avant de récupérer",
|
||||
"RedFlag.Fetch.Method.FetchSmoother": "Créer des fragments de fichiers locaux avant de récupérer",
|
||||
"RedFlag.Fetch.Method.FetchTraditional": "Tout récupérer depuis le distant",
|
||||
"RedFlag.Fetch.Method.Title": "Comment voulez-vous récupérer ?",
|
||||
"RedFlag.FetchRemoteConfig.Buttons.Cancel": "Non, utiliser les paramètres locaux",
|
||||
"RedFlag.FetchRemoteConfig.Buttons.Fetch": "Oui, récupérer et appliquer les paramètres distants",
|
||||
"RedFlag.FetchRemoteConfig.Message": "Voulez-vous récupérer et appliquer les préférences stockées à distance sur cet appareil ?",
|
||||
"RedFlag.FetchRemoteConfig.Title": "Récupérer la configuration distante",
|
||||
"Reducing the frequency with which on-disk changes are reflected into the DB": "Réduire la fréquence à laquelle les modifications sur disque sont reflétées dans la base",
|
||||
"Region": "Région",
|
||||
"Remote server type": "Type de serveur distant",
|
||||
"Remote Type": "Type de distant",
|
||||
"Replicator.Dialogue.Locked.Action.Dismiss": "Annuler pour reconfirmer",
|
||||
"Replicator.Dialogue.Locked.Action.Fetch": "Réinitialiser la synchronisation sur cet appareil",
|
||||
"Replicator.Dialogue.Locked.Action.Unlock": "Déverrouiller la base distante",
|
||||
"Replicator.Dialogue.Locked.Message": "La base distante est verrouillée. Ceci est dû à une reconstruction sur l'un des terminaux.\nL'appareil est donc prié de suspendre la connexion pour éviter la corruption de la base.\n\nTrois options sont possibles :\n\n- %{Replicator.Dialogue.Locked.Action.Fetch}\n La méthode la plus recommandée et fiable. Elle supprime la base locale puis réinitialise toutes les informations de synchronisation depuis la base distante. Dans la plupart des cas, c'est sûr. Cela prend cependant du temps et devrait se faire sur un réseau stable.\n- %{Replicator.Dialogue.Locked.Action.Unlock}\n Cette méthode ne peut être utilisée que si nous sommes déjà synchronisés de manière fiable par d'autres méthodes de réplication. Cela ne signifie pas simplement que nous avons les mêmes fichiers. Dans le doute, évitez.\n- %{Replicator.Dialogue.Locked.Action.Dismiss}\n Ceci annule l'opération. Vous serez à nouveau interrogé à la prochaine requête.\n",
|
||||
"Replicator.Dialogue.Locked.Message.Fetch": "Tout récupérer a été planifié. Le plug-in sera redémarré pour l'exécuter.",
|
||||
"Replicator.Dialogue.Locked.Message.Unlocked": "La base distante a été déverrouillée. Veuillez réessayer l'opération.",
|
||||
"Replicator.Dialogue.Locked.Title": "Verrouillée",
|
||||
"Replicator.Message.Cleaned": "Nettoyage de la base en cours. La réplication a été annulée",
|
||||
"Replicator.Message.InitialiseFatalError": "Aucun réplicateur disponible, il s'agit d'une erreur fatale.",
|
||||
"Replicator.Message.Pending": "Des événements de fichier sont en attente. La réplication a été annulée.",
|
||||
"Replicator.Message.SomeModuleFailed": "La réplication a été annulée suite à l'échec d'un module",
|
||||
"Replicator.Message.VersionUpFlash": "Une mise à jour a été détectée. Veuillez ouvrir la boîte de dialogue des paramètres et consulter le journal des modifications. La réplication a été annulée.",
|
||||
"Requires restart of Obsidian": "Nécessite un redémarrage d'Obsidian",
|
||||
"Requires restart of Obsidian.": "Nécessite un redémarrage d'Obsidian.",
|
||||
"Rerun Onboarding Wizard": "Relancer l'assistant d'intégration",
|
||||
"Rerun the onboarding wizard to set up Self-hosted LiveSync again.": "Relancer l'assistant d'intégration pour reconfigurer Self-hosted LiveSync.",
|
||||
"Rerun Wizard": "Relancer l'assistant",
|
||||
"Reset notification threshold and check the remote database usage": "Réinitialiser le seuil de notification et vérifier l'utilisation de la base distante",
|
||||
"Reset the remote storage size threshold and check the remote storage size again.": "Réinitialiser le seuil de taille du stockage distant et vérifier à nouveau la taille du stockage distant.",
|
||||
"Run Doctor": "Lancer le Docteur",
|
||||
"Save settings to a markdown file. You will be notified when new settings arrive. You can set different files by the platform.": "Enregistrer les paramètres dans un fichier markdown. Vous serez notifié à l'arrivée de nouveaux paramètres. Vous pouvez définir des fichiers différents selon la plateforme.",
|
||||
"Saving will be performed forcefully after this number of seconds.": "L'enregistrement sera forcé au bout de ce nombre de secondes.",
|
||||
"Scan changes on customization sync": "Analyser les modifications de synchronisation de personnalisation",
|
||||
"Scan customization automatically": "Analyser automatiquement la personnalisation",
|
||||
"Scan customization before replicating.": "Analyser la personnalisation avant de répliquer.",
|
||||
"Scan customization every 1 minute.": "Analyser la personnalisation toutes les 1 minute.",
|
||||
"Scan customization periodically": "Analyser la personnalisation périodiquement",
|
||||
"Scan for hidden files before replication": "Analyser les fichiers cachés avant réplication",
|
||||
"Scan hidden files periodically": "Analyser les fichiers cachés périodiquement",
|
||||
"Seconds, 0 to disable": "Secondes, 0 pour désactiver",
|
||||
"Seconds. Saving to the local database will be delayed until this value after we stop typing or saving.": "Secondes. L'enregistrement dans la base locale sera différé de cette valeur après l'arrêt de la frappe ou de l'enregistrement.",
|
||||
"Secret Key": "Clé secrète",
|
||||
"Server URI": "URI du serveur",
|
||||
"Setting.GenerateKeyPair.Desc": "Nous avons généré une paire de clés !\n\nNote : cette paire de clés ne sera plus jamais affichée. Veuillez la conserver dans un endroit sûr. Si vous la perdez, vous devrez générer une nouvelle paire.\nNote 2 : la clé publique est au format spki, et la clé privée au format pkcs8. Pour plus de commodité, les retours à la ligne sont convertis en `\\n` dans la clé publique.\nNote 3 : la clé publique doit être configurée dans la base distante, et la clé privée sur les appareils locaux.\n\n>[!POUR VOS YEUX SEULEMENT]-\n> <div class=\"sls-keypair\">\n>\n> ### Clé publique\n> ```\n${public_key}\n> ```\n>\n> ### Clé privée\n> ```\n${private_key}\n> ```\n>\n> </div>\n\n>[!Les deux pour copier]-\n>\n> <div class=\"sls-keypair\">\n>\n> ```\n${public_key}\n${private_key}\n> ```\n>\n> </div>\n\n",
|
||||
"Setting.GenerateKeyPair.Title": "Une nouvelle paire de clés a été générée !",
|
||||
"Setting.TroubleShooting": "Dépannage",
|
||||
"Setting.TroubleShooting.Doctor": "Docteur des paramètres",
|
||||
"Setting.TroubleShooting.Doctor.Desc": "Détecte les paramètres non optimaux. (Identique à la migration)",
|
||||
"Setting.TroubleShooting.ScanBrokenFiles": "Analyser les fichiers corrompus",
|
||||
"Setting.TroubleShooting.ScanBrokenFiles.Desc": "Analyse les fichiers qui ne sont pas stockés correctement dans la base.",
|
||||
"SettingTab.Message.AskRebuild": "Vos modifications nécessitent une récupération depuis la base distante. Voulez-vous continuer ?",
|
||||
"Setup.Apply.Buttons.ApplyAndFetch": "Appliquer et récupérer",
|
||||
"Setup.Apply.Buttons.ApplyAndMerge": "Appliquer et fusionner",
|
||||
"Setup.Apply.Buttons.ApplyAndRebuild": "Appliquer et reconstruire",
|
||||
"Setup.Apply.Buttons.Cancel": "Abandonner et annuler",
|
||||
"Setup.Apply.Buttons.OnlyApply": "Appliquer seulement",
|
||||
"Setup.Apply.Message": "La nouvelle configuration est prête. Procédons à son application.\nPlusieurs manières de l'appliquer :\n\n- Appliquer et récupérer\n Configurer cet appareil comme nouveau client. Après application, synchroniser depuis le serveur distant.\n- Appliquer et fusionner\n Configurer sur un appareil qui possède déjà les fichiers. Traite les fichiers locaux et transfère les différences. Des conflits peuvent apparaître.\n- Appliquer et reconstruire\n Reconstruire le distant à partir des fichiers locaux. Typiquement effectué si le serveur est corrompu ou si l'on souhaite repartir de zéro.\n Les autres appareils seront verrouillés et devront refaire une récupération.\n- Appliquer seulement\n Appliquer uniquement. Des conflits peuvent apparaître si une reconstruction est nécessaire.",
|
||||
"Setup.Apply.Title": "Appliquer la nouvelle configuration depuis ${method}",
|
||||
"Setup.Apply.WarningRebuildRecommended": "NOTE : après ajustement des paramètres, il a été déterminé qu'une reconstruction est requise ; un simple import n'est pas recommandé.",
|
||||
"Setup.Doctor.Buttons.No": "Non, utiliser les paramètres de l'URI tels quels",
|
||||
"Setup.Doctor.Buttons.Yes": "Oui, consulter le docteur",
|
||||
"Setup.Doctor.Message": "Self-hosted LiveSync s'est progressivement étoffé et certains paramètres recommandés ont évolué.\n\nLa configuration est un bon moment pour le faire.\n\nVoulez-vous lancer le Docteur pour vérifier si les paramètres importés sont optimaux par rapport au dernier état ?",
|
||||
"Setup.Doctor.Title": "Voulez-vous consulter le docteur ?",
|
||||
"Setup.FetchRemoteConf.Buttons.Fetch": "Oui, récupérer la configuration",
|
||||
"Setup.FetchRemoteConf.Buttons.Skip": "Non, utiliser les paramètres de l'URI",
|
||||
"Setup.FetchRemoteConf.Message": "Si nous avons déjà synchronisé une fois avec un autre appareil, la base distante stocke les valeurs de configuration adaptées entre les appareils synchronisés. Le plug-in souhaiterait les récupérer pour une configuration robuste.\n\nMais il faut s'assurer d'une chose. Sommes-nous actuellement dans une situation où nous pouvons accéder au réseau en toute sécurité et récupérer les paramètres ?\n\nNote : le plus souvent, c'est sûr si votre base distante est hébergée avec un certificat SSL et si votre réseau n'est pas compromis.",
|
||||
"Setup.FetchRemoteConf.Title": "Récupérer la configuration depuis la base distante ?",
|
||||
"Setup.QRCode": "Nous avons généré un QR code pour transférer les paramètres. Scannez-le avec votre téléphone ou un autre appareil.\nNote : le QR code n'est pas chiffré, soyez prudent en l'affichant.\n\n>[!POUR VOS YEUX SEULEMENT]-\n> <div class=\"sls-qr\">${qr_image}</div>",
|
||||
"Setup.ShowQRCode": "Afficher le QR code",
|
||||
"Setup.ShowQRCode.Desc": "Afficher le QR code pour transférer les paramètres.",
|
||||
"Should we keep folders that don't have any files inside?": "Conserver les dossiers ne contenant aucun fichier ?",
|
||||
"Should we only check for conflicts when a file is opened?": "Ne vérifier les conflits qu'à l'ouverture d'un fichier ?",
|
||||
"Should we prompt you about conflicting files when a file is opened?": "Vous demander au sujet des fichiers en conflit à l'ouverture d'un fichier ?",
|
||||
"Should we prompt you for every single merge, even if we can safely merge automatcially?": "Vous demander pour chaque fusion, même si nous pouvons fusionner automatiquement en toute sécurité ?",
|
||||
"Show only notifications": "N'afficher que les notifications",
|
||||
"Show status as icons only": "N'afficher le statut que sous forme d'icônes",
|
||||
"Show status icon instead of file warnings banner": "Afficher l'icône de statut au lieu de la bannière d'avertissements",
|
||||
"Show status inside the editor": "Afficher le statut dans l'éditeur",
|
||||
"Show status on the status bar": "Afficher le statut dans la barre d'état",
|
||||
"Show verbose log. Please enable if you report an issue.": "Afficher un journal verbeux. À activer si vous signalez un problème.",
|
||||
"Starts synchronisation when a file is saved.": "Démarre la synchronisation à l'enregistrement d'un fichier.",
|
||||
"Stop reflecting database changes to storage files.": "Arrêter de répercuter les modifications de la base vers les fichiers de stockage.",
|
||||
"Stop watching for file changes.": "Arrêter la surveillance des modifications de fichiers.",
|
||||
"Suppress notification of hidden files change": "Supprimer les notifications de modification des fichiers cachés",
|
||||
"Suspend database reflecting": "Suspendre la répercussion dans la base",
|
||||
"Suspend file watching": "Suspendre la surveillance des fichiers",
|
||||
"Sync after merging file": "Synchroniser après fusion d'un fichier",
|
||||
"Sync automatically after merging files": "Synchroniser automatiquement après fusion des fichiers",
|
||||
"Sync Mode": "Mode de synchronisation",
|
||||
"Sync on Editor Save": "Synchroniser à l'enregistrement dans l'éditeur",
|
||||
"Sync on File Open": "Synchroniser à l'ouverture d'un fichier",
|
||||
"Sync on Save": "Synchroniser à l'enregistrement",
|
||||
"Sync on Startup": "Synchroniser au démarrage",
|
||||
"Testing only - Resolve file conflicts by syncing newer copies of the file, this can overwrite modified files. Be Warned.": "Test uniquement - Résout les conflits de fichiers en synchronisant les copies plus récentes, ce qui peut écraser des fichiers modifiés. Prudence.",
|
||||
"The delay for consecutive on-demand fetches": "Le délai entre récupérations consécutives à la demande",
|
||||
"The Hash algorithm for chunk IDs": "L'algorithme de hachage pour les identifiants de fragments",
|
||||
"The maximum duration for which chunks can be incubated within the document. Chunks exceeding this period will graduate to independent chunks.": "La durée maximale pendant laquelle les fragments peuvent être incubés dans le document. Les fragments dépassant cette période seront promus en fragments indépendants.",
|
||||
"The maximum number of chunks that can be incubated within the document. Chunks exceeding this number will immediately graduate to independent chunks.": "Le nombre maximum de fragments pouvant être incubés dans le document. Les fragments dépassant ce nombre seront immédiatement promus en fragments indépendants.",
|
||||
"The maximum total size of chunks that can be incubated within the document. Chunks exceeding this size will immediately graduate to independent chunks.": "La taille totale maximale des fragments pouvant être incubés dans le document. Les fragments dépassant cette taille seront immédiatement promus en fragments indépendants.",
|
||||
"The minimum interval for automatic synchronisation on event.": "L'intervalle minimum pour la synchronisation automatique sur événement.",
|
||||
"This passphrase will not be copied to another device. It will be set to `Default` until you configure it again.": "Cette phrase secrète ne sera pas copiée vers un autre appareil. Elle sera définie à `Default` jusqu'à ce que vous la configuriez à nouveau.",
|
||||
"TweakMismatchResolve.Action.Dismiss": "Ignorer",
|
||||
"TweakMismatchResolve.Action.UseConfigured": "Utiliser les paramètres configurés",
|
||||
"TweakMismatchResolve.Action.UseMine": "Mettre à jour les paramètres de la base distante",
|
||||
"TweakMismatchResolve.Action.UseMineAcceptIncompatible": "Mettre à jour la base distante mais garder en l'état",
|
||||
"TweakMismatchResolve.Action.UseMineWithRebuild": "Mettre à jour la base distante et reconstruire",
|
||||
"TweakMismatchResolve.Action.UseRemote": "Appliquer les paramètres à cet appareil",
|
||||
"TweakMismatchResolve.Action.UseRemoteAcceptIncompatible": "Appliquer à cet appareil, mais ignorer l'incompatibilité",
|
||||
"TweakMismatchResolve.Action.UseRemoteWithRebuild": "Appliquer à cet appareil et récupérer à nouveau",
|
||||
"TweakMismatchResolve.Message.Main": "\nLes paramètres de la base distante sont les suivants. Ces valeurs sont configurées par d'autres appareils, synchronisés au moins une fois avec celui-ci.\n\nPour utiliser ces paramètres, sélectionnez %{TweakMismatchResolve.Action.UseConfigured}.\nPour conserver les paramètres de cet appareil, sélectionnez %{TweakMismatchResolve.Action.Dismiss}.\n\n${table}\n\n>[!ASTUCE]\n> Pour synchroniser tous les paramètres, utilisez « Synchroniser les paramètres via markdown » après application de la configuration minimale avec cette fonctionnalité.\n\n${additionalMessage}",
|
||||
"TweakMismatchResolve.Message.MainTweakResolving": "Votre configuration ne correspond pas à celle du serveur distant.\n\nLa configuration suivante devrait correspondre :\n\n${table}\n\nFaites-nous part de votre décision.\n\n${additionalMessage}",
|
||||
"TweakMismatchResolve.Message.UseRemote.WarningRebuildRecommended": "\n>[!AVIS]\n> Certains changements sont compatibles mais peuvent consommer du stockage et du trafic supplémentaires. Une reconstruction est recommandée. Cependant, elle peut ne pas être effectuée maintenant, mais pourra l'être lors d'une maintenance future.\n> ***Assurez-vous d'avoir du temps et une connexion stable pour appliquer !***",
|
||||
"TweakMismatchResolve.Message.UseRemote.WarningRebuildRequired": "\n>[!AVERTISSEMENT]\n> Certaines configurations distantes ne sont pas compatibles avec la base locale de cet appareil. Une reconstruction de la base locale sera requise.\n> ***Assurez-vous d'avoir du temps et une connexion stable pour appliquer !***",
|
||||
"TweakMismatchResolve.Message.WarningIncompatibleRebuildRecommended": "\n>[!AVIS]\n> Nous avons détecté que certaines valeurs diffèrent et rendent la base locale incompatible avec la base distante.\n> Certains changements sont compatibles mais peuvent consommer du stockage et du trafic supplémentaires. Une reconstruction est recommandée. Cependant, elle peut ne pas être effectuée maintenant, mais pourra l'être lors d'une maintenance future.\n> Si vous souhaitez reconstruire, cela prend quelques minutes ou plus. **Assurez-vous qu'il est sûr de le faire maintenant.**",
|
||||
"TweakMismatchResolve.Message.WarningIncompatibleRebuildRequired": "\n>[!AVERTISSEMENT]\n> Nous avons détecté que certaines valeurs diffèrent et rendent la base locale incompatible avec la base distante.\n> Une reconstruction locale ou distante est nécessaire. L'une comme l'autre prend quelques minutes ou plus. **Assurez-vous qu'il est sûr de le faire maintenant.**",
|
||||
"TweakMismatchResolve.Table": "| Nom de la valeur | Cet appareil | Sur le distant |\n|: --- |: ---- :|: ---- :|\n${rows}\n\n",
|
||||
"TweakMismatchResolve.Table.Row": "| ${name} | ${self} | ${remote} |",
|
||||
"TweakMismatchResolve.Title": "Incohérence de configuration détectée",
|
||||
"TweakMismatchResolve.Title.TweakResolving": "Incohérence de configuration détectée",
|
||||
"TweakMismatchResolve.Title.UseRemoteConfig": "Utiliser la configuration distante",
|
||||
"Unique name between all synchronized devices. To edit this setting, please disable customization sync once.": "Nom unique parmi tous les appareils synchronisés. Pour modifier ce paramètre, désactivez d'abord la synchronisation de personnalisation.",
|
||||
"Use Custom HTTP Handler": "Utiliser un gestionnaire HTTP personnalisé",
|
||||
"Use dynamic iteration count": "Utiliser un compteur d'itérations dynamique",
|
||||
"Use Segmented-splitter": "Utiliser le découpeur segmenté",
|
||||
"Use splitting-limit-capped chunk splitter": "Utiliser le découpeur de fragments plafonné",
|
||||
"Use the trash bin": "Utiliser la corbeille",
|
||||
"Use timeouts instead of heartbeats": "Utiliser des délais d'attente au lieu de battements",
|
||||
"username": "nom d'utilisateur",
|
||||
"Username": "Nom d'utilisateur",
|
||||
"Verbose Log": "Journal verbeux",
|
||||
"Warning! This will have a serious impact on performance. And the logs will not be synchronised under the default name. Please be careful with logs; they often contain your confidential information.": "Attention ! Ceci aura un impact important sur les performances. De plus, les journaux ne seront pas synchronisés sous le nom par défaut. Soyez prudent avec les journaux ; ils contiennent souvent des informations confidentielles.",
|
||||
"When you save a file in the editor, start a sync automatically": "À l'enregistrement d'un fichier dans l'éditeur, démarrer automatiquement une synchronisation",
|
||||
"Write credentials in the file": "Écrire les identifiants dans le fichier",
|
||||
"Write logs into the file": "Écrire les journaux dans le fichier"
|
||||
}
|
||||
@@ -0,0 +1,581 @@
|
||||
{
|
||||
"(BETA) Always overwrite with a newer file": "(BETA) תמיד לדרוס עם קובץ חדש יותר",
|
||||
"(Beta) Use ignore files": "(בטא) שימוש בקבצי התעלמות",
|
||||
"(Days passed, 0 to disable automatic-deletion)": "(ימים שעברו; 0 לביטול מחיקה אוטומטית)",
|
||||
"(ex. Read chunks online) If this option is enabled, LiveSync reads chunks online directly instead of replicating them locally. Increasing Custom chunk size is recommended.": "(לדוגמה: קריאת נתחים אונליין) אם אפשרות זו מופעלת, LiveSync קורא נתחים ישירות מהשרת מבלי לשכפל אותם מקומית. מומלץ להגדיל את גודל הנתח המותאם אישית.",
|
||||
"(MB) If this is set, changes to local and remote files that are larger than this will be skipped. If the file becomes smaller again, a newer one will be used.": "(MB) אם ערך זה מוגדר, שינויים בקבצים מקומיים ומרוחקים הגדולים מגודל זה יידלגו. אם הקובץ יקטן שוב, ייעשה שימוש בגרסה החדשה יותר.",
|
||||
"(Mega chars)": "(מגה תווים)",
|
||||
"(Not recommended) If set, credentials will be stored in the file.": "(לא מומלץ) אם מוגדר, פרטי הגישה יישמרו בקובץ.",
|
||||
"(Obsolete) Use an old adapter for compatibility": "(מיושן) שימוש במתאם ישן לתאימות לאחור",
|
||||
"Access Key": "מפתח גישה",
|
||||
"Active Remote Configuration": "תצורת שרת מרוחק פעיל",
|
||||
"Always prompt merge conflicts": "תמיד להציג בקשת אישור לקונפליקטי מיזוג",
|
||||
"Analyse": "ניתוח",
|
||||
"Analyse database usage": "ניתוח שימוש במסד נתונים",
|
||||
"Analyse database usage and generate a TSV report for diagnosis yourself. You can paste the generated report with any spreadsheet you like.": "נתח שימוש במסד הנתונים וצור דו\"ח TSV לאבחון עצמי. ניתן להדביק את הדו\"ח שנוצר בכל גיליון אלקטרוני.",
|
||||
"Apply Latest Change if Conflicting": "החל שינוי אחרון בעת קונפליקט",
|
||||
"Apply preset configuration": "החל תצורה קבועה מראש",
|
||||
"Automatically Sync all files when opening Obsidian.": "סנכרן את כל הקבצים אוטומטית עם פתיחת Obsidian.",
|
||||
"Batch database update": "עדכון אצווה למסד נתונים",
|
||||
"Batch limit": "מגבלת אצווה",
|
||||
"Batch size": "גודל אצווה",
|
||||
"Batch size of on-demand fetching": "גודל אצווה במשיכה לפי דרישה",
|
||||
"Before v0.17.16, we used an old adapter for the local database. Now the new adapter is preferred. However, it needs local database rebuilding. Please disable this toggle when you have enough time. If leave it enabled, also while fetching from the remote database, you will be asked to disable this.": "לפני גרסה 0.17.16, השתמשנו במתאם ישן למסד הנתונים המקומי. כעת המתאם החדש מועדף. עם זאת, הדבר מצריך בנייה מחדש של מסד הנתונים המקומי. אנא כבה אפשרות זו כשיש לך זמן פנוי. אם תשאיר אותה מופעלת, גם בעת משיכה ממסד הנתונים המרוחק, תתבקש לכבות אותה.",
|
||||
"Bucket Name": "שם דלי (Bucket)",
|
||||
"Check": "בדוק",
|
||||
"cmdConfigSync.showCustomizationSync": "הצג סנכרון התאמה אישית",
|
||||
"Comma separated `.gitignore, .dockerignore`": "רשימה מופרדת בפסיקים `.gitignore, .dockerignore`",
|
||||
"Compute revisions for chunks": "חשב גרסאות לנתחים",
|
||||
"Copy Report to clipboard": "העתק דו\"ח ללוח",
|
||||
"Data Compression": "דחיסת נתונים",
|
||||
"Database Name": "שם מסד נתונים",
|
||||
"Database suffix": "סיומת מסד נתונים",
|
||||
"Delay conflict resolution of inactive files": "עכב פתרון קונפליקטים לקבצים לא פעילים",
|
||||
"Delay merge conflict prompt for inactive files.": "עכב הצגת בקשת מיזוג לקבצים לא פעילים.",
|
||||
"Delete old metadata of deleted files on start-up": "מחק מטה-נתונים ישנים של קבצים שנמחקו בעת הפעלה",
|
||||
"Device name": "שם מכשיר",
|
||||
"dialog.yourLanguageAvailable": "ל-Self-hosted LiveSync יש תרגום לשפתך, ולכן הגדרת %{Display language} הופעלה.\n\nהערה: לא כל ההודעות מתורגמות. אנחנו ממתינים לתרומותיך!\nהערה 2: אם אתה פותח Issue, **אנא חזור ל-%{lang-def}** ואז צלם צילומי מסך, הודעות ויומנים. ניתן לעשות זאת בדיאלוג ההגדרות.\nנקווה שתמצא/י את הפלאגין נוח לשימוש!",
|
||||
"dialog.yourLanguageAvailable.btnRevertToDefault": "השאר %{lang-def}",
|
||||
"dialog.yourLanguageAvailable.Title": " תרגום זמין!",
|
||||
"Disables logging, only shows notifications. Please disable if you report an issue.": "מכבה רישום יומן, מציג התראות בלבד. אנא כבה אם אתה מדווח על בעיה.",
|
||||
"Display Language": "שפת תצוגה",
|
||||
"Do not check configuration mismatch before replication": "אל תבדוק אי-התאמה בתצורה לפני שכפול",
|
||||
"Do not keep metadata of deleted files.": "אל תשמור מטה-נתונים של קבצים שנמחקו.",
|
||||
"Do not split chunks in the background": "אל תפצל נתחים ברקע",
|
||||
"Do not use internal API": "אל תשתמש ב-API פנימי",
|
||||
"Doctor.Button.DismissThisVersion": "לא, ואל תשאל שוב עד לגרסה הבאה",
|
||||
"Doctor.Button.Fix": "תקן",
|
||||
"Doctor.Button.FixButNoRebuild": "תקן ללא בנייה מחדש",
|
||||
"Doctor.Button.No": "לא",
|
||||
"Doctor.Button.Skip": "השאר כפי שהוא",
|
||||
"Doctor.Button.Yes": "כן",
|
||||
"Doctor.Dialogue.Main": "שלום! רופא התצורה הופעל בגלל ${activateReason}!\nולמרבה הצער, זוהו תצורות שעשויות להיות בעייתיות.\nהיה רגוע/ה. בואו נפתור אותן אחת אחת.\n\nלידיעתך מראש, נשאל אותך על הפריטים הבאים.\n\n${issues}\n\nהאם להתחיל?",
|
||||
"Doctor.Dialogue.MainFix": "\n## ${name}\n\n| נוכחי | אידאלי |\n|:---:|:---:|\n| ${current} | ${ideal} |\n\n**רמת המלצה:** ${level}\n\n### מדוע זה זוהה?\n\n${reason}\n\n${note}\n\nלתקן לערך האידאלי?",
|
||||
"Doctor.Dialogue.Title": "Self-hosted LiveSync Config Doctor",
|
||||
"Doctor.Dialogue.TitleAlmostDone": "כמעט סיימנו!",
|
||||
"Doctor.Dialogue.TitleFix": "תקן בעיה ${current}/${total}",
|
||||
"Doctor.Level.Must": "חובה",
|
||||
"Doctor.Level.Necessary": "נדרש",
|
||||
"Doctor.Level.Optional": "אופציונלי",
|
||||
"Doctor.Level.Recommended": "מומלץ",
|
||||
"Doctor.Message.NoIssues": "לא זוהו בעיות!",
|
||||
"Doctor.Message.RebuildLocalRequired": "שים לב! נדרשת בנייה מחדש של מסד הנתונים המקומי כדי להחיל זאת!",
|
||||
"Doctor.Message.RebuildRequired": "שים לב! נדרשת בנייה מחדש כדי להחיל זאת!",
|
||||
"Doctor.Message.SomeSkipped": "השארנו כמה בעיות כפי שהן. האם לשאול שוב בהפעלה הבאה?",
|
||||
"Doctor.RULES.E2EE_V02500.REASON": "ההצפנה מקצה לקצה עודכנה לגרסה חזקה ומהירה יותר. בנוסף, בסקירת קוד שנערכה מחדש הוסבר שההצפנה הקודמת נפרצת. יש להחיל זאת בהקדם האפשרי. מתנצלים על אי הנוחות. שים לב שהגדרה זו אינה תואמת לאחור. כל המכשירים המסונכרנים חייבים להיות מעודכנים לגרסה 0.25.0 ומעלה. אין צורך בבנייה מחדש והנתונים יומרו בהדרגה לפורמט החדש, אך מומלץ לבנות מחדש בהזדמנות הראשונה.",
|
||||
"Enable advanced features": "הפעל תכונות מתקדמות",
|
||||
"Enable customization sync": "הפעל סנכרון התאמה אישית",
|
||||
"Enable Developers' Debug Tools.": "הפעל כלי ניפוי באגים למפתחים.",
|
||||
"Enable edge case treatment features": "הפעל תכונות לטיפול במקרי קצה",
|
||||
"Enable poweruser features": "הפעל תכונות למשתמש מתקדם",
|
||||
"Enable this if your Object Storage doesn't support CORS": "הפעל אם אחסון האובייקטים שלך לא תומך ב-CORS",
|
||||
"Enable this option to automatically apply the most recent change to documents even when it conflicts": "הפעל אפשרות זו כדי להחיל אוטומטית את השינוי האחרון במסמכים גם כשיש קונפליקט",
|
||||
"Encrypt contents on the remote database. If you use the plugin's synchronization feature, enabling this is recommended.": "הצפן תוכן במסד הנתונים המרוחק. אם אתה משתמש בתכונת הסנכרון של התוסף, מומלץ להפעיל זאת.",
|
||||
"Encrypting sensitive configuration items": "הצפן פריטי תצורה רגישים",
|
||||
"Encryption phassphrase. If changed, you should overwrite the server's database with the new (encrypted) files.": "ביטוי סיסמה להצפנה. אם שונה, יש לדרוס את מסד הנתונים של השרת בקבצים החדשים (המוצפנים).",
|
||||
"End-to-End Encryption": "הצפנה מקצה לקצה",
|
||||
"Endpoint URL": "כתובת נקודת קצה (Endpoint URL)",
|
||||
"Enhance chunk size": "הגדל גודל נתח",
|
||||
"Fetch chunks on demand": "משוך נתחים לפי דרישה",
|
||||
"Fetch database with previous behaviour": "משוך מסד נתונים עם התנהגות קודמת",
|
||||
"Filename": "שם קובץ",
|
||||
"Forces the file to be synced when opened.": "מכריח סנכרון הקובץ בעת פתיחתו.",
|
||||
"Handle files as Case-Sensitive": "טפל בקבצים כתלויי רישיות",
|
||||
"If disabled(toggled), chunks will be split on the UI thread (Previous behaviour).": "אם מכובה, נתחים יפוצלו בשרשור ממשק המשתמש (התנהגות קודמת).",
|
||||
"If enabled per-filed efficient customization sync will be used. We need a small migration when enabling this. And all devices should be updated to v0.23.18. Once we enabled this, we lost a compatibility with old versions.": "אם מופעל, ייעשה שימוש בסנכרון התאמה אישית יעיל לפי קובץ. נדרשת הגירה קטנה בעת ההפעלה. כל המכשירים צריכים להיות מעודכנים לגרסה 0.23.18. לאחר ההפעלה, התאימות לגרסאות ישנות תיפגע.",
|
||||
"If enabled, chunks will be split into no more than 100 items. However, dedupe is slightly weaker.": "אם מופעל, נתחים יפוצלו לא ליותר מ-100 פריטים. עם זאת, ביטול כפילויות יהיה חלש מעט יותר.",
|
||||
"If enabled, newly created chunks are temporarily kept within the document, and graduated to become independent chunks once stabilised.": "אם מופעל, נתחים שנוצרו לאחרונה נשמרים זמנית בתוך המסמך, ומוסמכים לנתחים עצמאיים לאחר יציבות.",
|
||||
"If enabled, the ⛔ icon will be shown inside the status instead of the file warnings banner. No details will be shown.": "אם מופעל, אייקון ⛔ יוצג בסטטוס במקום פס האזהרות. לא יוצגו פרטים.",
|
||||
"If enabled, the file under 1kb will be processed in the UI thread.": "אם מופעל, קבצים קטנים מ-1KB יעובדו בשרשור ממשק המשתמש.",
|
||||
"If enabled, the notification of hidden files change will be suppressed.": "אם מופעל, התראות על שינוי בקבצים נסתרים יודחקו.",
|
||||
"If this enabled, all chunks will be stored with the revision made from its content. (Previous behaviour)": "אם מופעל, כל הנתחים יישמרו עם גרסה המבוססת על תוכנם. (התנהגות קודמת)",
|
||||
"If this enabled, All files are handled as case-Sensitive (Previous behaviour).": "אם מופעל, כל הקבצים מטופלים כתלויי רישיות (התנהגות קודמת).",
|
||||
"If this enabled, chunks will be split into semantically meaningful segments. Not all platforms support this feature.": "אם מופעל, נתחים יפוצלו לחלקים עם משמעות סמנטית. לא כל הפלטפורמות תומכות בתכונה זו.",
|
||||
"If this is set, changes to local files which are matched by the ignore files will be skipped. Remote changes are determined using local ignore files.": "אם מוגדר, שינויים בקבצים מקומיים התואמים לקבצי ההתעלמות יידלגו. שינויים מרוחקים נקבעים לפי קבצי ההתעלמות המקומיים.",
|
||||
"If this option is enabled, PouchDB will hold the connection open for 60 seconds, and if no change arrives in that time, close and reopen the socket, instead of holding it open indefinitely. Useful when a proxy limits request duration but can increase resource usage.": "אם אפשרות זו מופעלת, PouchDB ישמור את החיבור פתוח ל-60 שניות, ואם אין שינוי בפרק זמן זה, יסגור ויפתח מחדש את השקע, במקום להחזיק אותו פתוח ללא הגבלה. שימושי כשפרוקסי מגביל משך בקשות, אך עשוי להגביר שימוש במשאבים.",
|
||||
"Ignore files": "קבצי התעלמות",
|
||||
"Incubate Chunks in Document": "בשל נתחים בתוך המסמך",
|
||||
"Interval (sec)": "מרווח (שניות)",
|
||||
"K.exp": "ניסיוני",
|
||||
"K.long_p2p_sync": "%{title_p2p_sync}",
|
||||
"K.P2P": "%{Peer}-ל-%{Peer}",
|
||||
"K.Peer": "עמית",
|
||||
"K.ScanCustomization": "סרוק התאמה אישית",
|
||||
"K.short_p2p_sync": "סנכרון P2P",
|
||||
"K.title_p2p_sync": "סנכרון עמית-לעמית",
|
||||
"Keep empty folder": "שמור תיקייה ריקה",
|
||||
"lang_def": "ברירת מחדל",
|
||||
"lang-de": "Deutsche",
|
||||
"lang-def": "%{lang_def}",
|
||||
"lang-es": "Español",
|
||||
"lang-fr": "Français",
|
||||
"lang-he": "עברית",
|
||||
"lang-ja": "日本語",
|
||||
"lang-ko": "한국어",
|
||||
"lang-ru": "Русский",
|
||||
"lang-zh": "简体中文",
|
||||
"lang-zh-tw": "繁體中文",
|
||||
"LiveSync could not handle multiple vaults which have same name without different prefix, This should be automatically configured.": "LiveSync אינו יכול לטפל במספר כספות עם אותו שם ללא קידומת שונה. הדבר אמור להיות מוגדר אוטומטית.",
|
||||
"liveSyncReplicator.beforeLiveSync": "לפני LiveSync, התחל OneShot פעם אחת...",
|
||||
"liveSyncReplicator.cantReplicateLowerValue": "לא ניתן לשכפל ערך נמוך יותר.",
|
||||
"liveSyncReplicator.checkingLastSyncPoint": "מחפש נקודת הסנכרון האחרונה.",
|
||||
"liveSyncReplicator.couldNotConnectTo": "לא ניתן להתחבר אל ${uri} : ${name}\n(${db})",
|
||||
"liveSyncReplicator.couldNotConnectToRemoteDb": "לא ניתן להתחבר למסד הנתונים המרוחק: ${d}",
|
||||
"liveSyncReplicator.couldNotConnectToServer": "לא ניתן להתחבר לשרת.",
|
||||
"liveSyncReplicator.couldNotConnectToURI": "לא ניתן להתחבר אל ${uri}:${dbRet}",
|
||||
"liveSyncReplicator.couldNotMarkResolveRemoteDb": "לא ניתן לסמן פתרון למסד הנתונים המרוחק.",
|
||||
"liveSyncReplicator.liveSyncBegin": "LiveSync מתחיל...",
|
||||
"liveSyncReplicator.lockRemoteDb": "נועל מסד נתונים מרוחק למניעת פגיעה בנתונים",
|
||||
"liveSyncReplicator.markDeviceResolved": "סמן מכשיר זה כ'נפתר'.",
|
||||
"liveSyncReplicator.oneShotSyncBegin": "סנכרון OneShot מתחיל... (${syncMode})",
|
||||
"liveSyncReplicator.remoteDbCorrupted": "מסד הנתונים המרוחק חדש יותר או פגום, ודא שגרסת self-hosted-livesync המותקנת היא העדכנית ביותר",
|
||||
"liveSyncReplicator.remoteDbCreatedOrConnected": "מסד הנתונים המרוחק נוצר או חובר",
|
||||
"liveSyncReplicator.remoteDbDestroyed": "מסד הנתונים המרוחק נהרס",
|
||||
"liveSyncReplicator.remoteDbDestroyError": "אירעה שגיאה בהריסת מסד הנתונים המרוחק:",
|
||||
"liveSyncReplicator.remoteDbMarkedResolved": "מסד הנתונים המרוחק סומן כנפתר.",
|
||||
"liveSyncReplicator.replicationClosed": "השכפול נסגר",
|
||||
"liveSyncReplicator.replicationInProgress": "שכפול כבר מתבצע",
|
||||
"liveSyncReplicator.retryLowerBatchSize": "מנסה שוב עם גודל אצווה קטן יותר:${batch_size}/${batches_limit}",
|
||||
"liveSyncReplicator.unlockRemoteDb": "מבטל נעילת מסד הנתונים המרוחק למניעת פגיעה בנתונים",
|
||||
"liveSyncSetting.errorNoSuchSettingItem": "פריט הגדרה לא קיים: ${key}",
|
||||
"liveSyncSetting.originalValue": "ערך מקורי: ${value}",
|
||||
"liveSyncSetting.valueShouldBeInRange": "הערך צריך להיות ${min} < ערך < ${max}",
|
||||
"liveSyncSettings.btnApply": "החל",
|
||||
"logPane.autoScroll": "גלילה אוטומטית",
|
||||
"logPane.logWindowOpened": "חלון יומן נפתח",
|
||||
"logPane.pause": "השהה",
|
||||
"logPane.title": "יומן Self-hosted LiveSync",
|
||||
"logPane.wrap": "גלישת שורות",
|
||||
"Maximum delay for batch database updating": "עיכוב מקסימלי לעדכון אצווה של מסד נתונים",
|
||||
"Maximum file size": "גודל קובץ מקסימלי",
|
||||
"Maximum Incubating Chunk Size": "גודל מקסימלי לנתח בבישול",
|
||||
"Maximum Incubating Chunks": "מספר מקסימלי של נתחים בבישול",
|
||||
"Maximum Incubation Period": "תקופת בישול מקסימלית",
|
||||
"MB (0 to disable).": "MB (0 לביטול).",
|
||||
"Memory cache size (by total characters)": "גודל מטמון זיכרון (לפי סה\"כ תווים)",
|
||||
"Memory cache size (by total items)": "גודל מטמון זיכרון (לפי סה\"כ פריטים)",
|
||||
"Minimum delay for batch database updating": "עיכוב מינימלי לעדכון אצווה של מסד נתונים",
|
||||
"Minimum interval for syncing": "מרווח מינימלי לסנכרון",
|
||||
"moduleCheckRemoteSize.logCheckingStorageSizes": "בודק גדלי אחסון",
|
||||
"moduleCheckRemoteSize.logCurrentStorageSize": "גודל אחסון מרוחק: ${measuredSize}",
|
||||
"moduleCheckRemoteSize.logExceededWarning": "גודל אחסון מרוחק: ${measuredSize} עלה על ${notifySize}",
|
||||
"moduleCheckRemoteSize.logThresholdEnlarged": "הסף הורחב ל-${size}MB",
|
||||
"moduleCheckRemoteSize.msgConfirmRebuild": "פעולה זו עשויה לקחת זמן מה. האם אתה בטוח שברצונך לבנות מחדש עכשיו?",
|
||||
"moduleCheckRemoteSize.msgDatabaseGrowing": "**מסד הנתונים שלך הולך וגדל!** אל תדאג, אנחנו יכולים לטפל בזה עכשיו. הזמן שנשאר עד לאזול המקום באחסון המרוחק.\n\n| גודל נמדד | גודל מוגדר |\n| --- | --- |\n| ${estimatedSize} | ${maxSize} |\n\n> [!MORE]-\n> אם אתה משתמש בפלאגין כבר שנים רבות, ייתכן שנצברו נתחים לא מקושרים — כלומר, זבל — במסד הנתונים. לכן, אנו ממליצים לבנות הכל מחדש. ככל הנראה מסד הנתונים יהיה קטן בהרבה לאחר מכן.\n>\n> אם נפח הכספת שלך פשוט גדל, עדיף לבנות מחדש לאחר ארגון הקבצים. Self-hosted LiveSync אינו מוחק נתונים בפועל גם כאשר אתה מוחק קבצים כדי להאיץ את התהליך. הדבר [מתועד בפירוט](https://github.com/vrtmrz/obsidian-livesync/blob/main/docs/tech_info.md).\n>\n> אם אינך מוטרד מהגידול, ניתן להגדיל את סף ההתראה ב-100MB. הדבר מתאים אם השרת הוא שלך. עם זאת, מומלץ לבנות מחדש מעת לעת.\n>\n\n> [!WARNING]\n> אם תבנה מחדש, ודא שכל המכשירים מסונכרנים. הפלאגין ינסה למזג כמה שניתן.\n",
|
||||
"moduleCheckRemoteSize.msgSetDBCapacity": "ניתן להגדיר אזהרת קיבולת מקסימלית של מסד הנתונים, **כדי לנקוט פעולה לפני שנגמר המקום באחסון המרוחד**.\nהאם להפעיל זאת?\n\n> [!MORE]-\n> - 0: אל תזהיר על גודל האחסון.\n> מומלץ אם יש לך מספיק מקום באחסון המרוחד, בעיקר אם השרת הוא שלך. ניתן לבדוק את גודל האחסון ולבנות מחדש ידנית.\n> - 800: הזהר אם גודל האחסון המרוחד עולה על 800MB.\n> מומלץ אם אתה משתמש ב-fly.io עם מגבלת 1GB או ב-IBM Cloudant.\n> - 2000: הזהר אם גודל האחסון המרוחד עולה על 2GB.\n\nאם הגענו למגבלה, תתבקש להרחיב את הסף בהדרגה.\n",
|
||||
"moduleCheckRemoteSize.option2GB": "2GB (סטנדרטי)",
|
||||
"moduleCheckRemoteSize.option800MB": "800MB (Cloudant, fly.io)",
|
||||
"moduleCheckRemoteSize.optionAskMeLater": "שאל מאוחר יותר",
|
||||
"moduleCheckRemoteSize.optionDismiss": "דחה",
|
||||
"moduleCheckRemoteSize.optionIncreaseLimit": "הגדל ל-${newMax}MB",
|
||||
"moduleCheckRemoteSize.optionNoWarn": "לא, אל תזהיר בכלל",
|
||||
"moduleCheckRemoteSize.optionRebuildAll": "בנה הכל מחדש עכשיו",
|
||||
"moduleCheckRemoteSize.titleDatabaseSizeLimitExceeded": "גודל האחסון המרוחד חרג מהמגבלה",
|
||||
"moduleCheckRemoteSize.titleDatabaseSizeNotify": "הגדרת התראה על גודל מסד נתונים",
|
||||
"moduleInputUIObsidian.defaultTitleConfirmation": "אישור",
|
||||
"moduleInputUIObsidian.defaultTitleSelect": "בחר",
|
||||
"moduleInputUIObsidian.optionNo": "לא",
|
||||
"moduleInputUIObsidian.optionYes": "כן",
|
||||
"moduleLiveSyncMain.logAdditionalSafetyScan": "סריקת בטיחות נוספת...",
|
||||
"moduleLiveSyncMain.logLoadingPlugin": "טוען תוסף...",
|
||||
"moduleLiveSyncMain.logPluginInitCancelled": "אתחול התוסף בוטל על ידי מודול",
|
||||
"moduleLiveSyncMain.logPluginVersion": "Self-hosted LiveSync גרסה ${manifestVersion} ${packageVersion}",
|
||||
"moduleLiveSyncMain.logReadChangelog": "LiveSync עודכן, אנא קרא את יומן השינויים!",
|
||||
"moduleLiveSyncMain.logSafetyScanCompleted": "סריקת הבטיחות הנוספת הושלמה",
|
||||
"moduleLiveSyncMain.logSafetyScanFailed": "סריקת הבטיחות הנוספת נכשלה במודול",
|
||||
"moduleLiveSyncMain.logUnloadingPlugin": "מסיר תוסף...",
|
||||
"moduleLiveSyncMain.logVersionUpdate": "LiveSync עודכן. במקרה של עדכונים משמעותיים, כל הסנכרון האוטומטי הושבת זמנית. ודא שכל המכשירים מעודכנים לפני ההפעלה.",
|
||||
"moduleLiveSyncMain.msgScramEnabled": "Self-hosted LiveSync הוגדר להתעלם מאירועים מסוימים. האם זה נכון?\n\n| סוג | סטטוס | הערה |\n|:---:|:---:|---|\n| אירועי אחסון | ${fileWatchingStatus} | כל שינוי יתעלם |\n| אירועי מסד נתונים | ${parseReplicationStatus} | כל שינוי מסונכרן יידחה |\n\nהאם לחדש אותם ולהפעיל מחדש את Obsidian?\n\n> [!DETAILS]-\n> דגלים אלה מוגדרים על ידי הפלאגין במהלך בנייה מחדש או משיכה. אם התהליך הסתיים בצורה לא תקינה, ייתכן שהם נשארו כלא מכוון.\n> אם אינך בטוח, ניתן לנסות להריץ מחדש את התהליכים. ודא שיש לך גיבוי של הכספת.\n",
|
||||
"moduleLiveSyncMain.optionKeepLiveSyncDisabled": "השאר LiveSync מנוטרל",
|
||||
"moduleLiveSyncMain.optionResumeAndRestart": "חדש והפעל מחדש את Obsidian",
|
||||
"moduleLiveSyncMain.titleScramEnabled": "מצב בלימה פעיל",
|
||||
"moduleLocalDatabase.logWaitingForReady": "ממתין לכשירות...",
|
||||
"moduleLog.showLog": "הצג יומן",
|
||||
"moduleMigration.docUri": "https://github.com/vrtmrz/obsidian-livesync/blob/main/README.md#how-to-use",
|
||||
"moduleMigration.fix0256.buttons.checkItLater": "בדוק מאוחר יותר",
|
||||
"moduleMigration.fix0256.buttons.DismissForever": "תיקנתי, ואל תשאל שוב",
|
||||
"moduleMigration.fix0256.buttons.fix": "תקן",
|
||||
"moduleMigration.fix0256.message": "בשל באג אחרון (בגרסה 0.25.6), ייתכן שחלק מהקבצים לא נשמרו כהלכה במסד הנתונים לסנכרון.\nסרקנו את הקבצים ומצאנו כאלה שיש לתקן.\n\n**קבצים מוכנים לתיקון:**\n\n${files}\n\nלקבצים אלה יש קובץ מקורי תואם גודל באחסון, וסביר שניתן לשחזרם.\nניתן להשתמש בהם לתיקון מסד הנתונים. לחץ על כפתור \"תקן\" למטה לתיקון.\n\n${messageUnrecoverable}\n\nאם ברצונך להריץ שוב, ניתן לעשות זאת מ-Hatch.\n",
|
||||
"moduleMigration.fix0256.messageUnrecoverable": "**קבצים שלא ניתן לתקן במכשיר זה:**\n\n${filesNotRecoverable}\n\nלקבצים אלה יש מטה-נתונים לא עקביים, ולא ניתן לתקנם במכשיר זה (לרוב לא ניתן לקבוע מה נכון). לשחזורם, אנא בדוק מכשירים אחרים שלך (גם בתכונה זו) או שחזר ידנית מגיבוי.\n",
|
||||
"moduleMigration.fix0256.title": "זוהו קבצים פגומים",
|
||||
"moduleMigration.insecureChunkExist.buttons.fetch": "כבר בניתי מחדש את השרת המרוחק. משוך מהשרת המרוחד",
|
||||
"moduleMigration.insecureChunkExist.buttons.later": "אטפל בזה מאוחר יותר",
|
||||
"moduleMigration.insecureChunkExist.buttons.rebuild": "בנה הכל מחדש",
|
||||
"moduleMigration.insecureChunkExist.laterMessage": "אנו ממליצים בחום לטפל בזה בהקדם האפשרי!",
|
||||
"moduleMigration.insecureChunkExist.message": "חלק מהנתחים לא מאוחסנים בצורה מאובטחת ואינם מוצפנים במסד הנתונים.\n**אנא בנה מחדש את מסד הנתונים כדי לתקן בעיה זו**.\n\nאם מסד הנתונים המרוחד אינו מוגדר עם SSL, או משתמש בפרטי גישה פחות מאובטחים, **אתה בסיכון של חשיפת מידע רגיש**.\n\nהערה: אנא שדרג את Self-hosted LiveSync לגרסה 0.25.6 ומעלה על כל מכשיריך, וגבה את הכספת שלך.\nהערה 2: בנייה מחדש ומשיכה דורשות זמן ותעבורת רשת. אנא עשה זאת בשעות שיא נמוך וודא חיבור רשת יציב.\n",
|
||||
"moduleMigration.insecureChunkExist.title": "נמצאו נתחים לא מאובטחים!",
|
||||
"moduleMigration.logBulkSendCorrupted": "שליחת נתחים באצווה הופעלה, אך תכונה זו הייתה פגועה. מתנצלים על אי הנוחות. נוטרלה אוטומטית.",
|
||||
"moduleMigration.logFetchRemoteTweakFailed": "נכשל במשיכת ערכי כיוונון מרוחקים",
|
||||
"moduleMigration.logLocalDatabaseNotReady": "משהו השתבש! מסד הנתונים המקומי אינו מוכן",
|
||||
"moduleMigration.logMigratedSameBehaviour": "הוגר ל-db:${current} עם אותה התנהגות כמקודם",
|
||||
"moduleMigration.logMigrationFailed": "הגירה נכשלה או בוטלה מ-${old} ל-${current}",
|
||||
"moduleMigration.logRedflag2CreationFail": "יצירת redflag2 נכשלה",
|
||||
"moduleMigration.logRemoteTweakUnavailable": "לא ניתן לקבל ערכי כיוונון מרוחקים",
|
||||
"moduleMigration.logSetupCancelled": "ההגדרה בוטלה, Self-hosted LiveSync ממתין להגדרתך!",
|
||||
"moduleMigration.msgFetchRemoteAgain": "כפי שייתכן שכבר ידוע לך, Self-hosted LiveSync שינה את התנהגות ברירת המחדל ומבנה מסד הנתונים.\n\nובזכות זמנך ומאמציך, מסד הנתונים המרוחד נראה כבר הוגר. ברכות!\n\nעם זאת, נדרש עוד קצת. תצורת מכשיר זה אינה תואמת למסד הנתונים המרוחד. נצטרך למשוך את מסד הנתונים המרוחד שוב. האם למשוך מהשרת המרוחד עכשיו?\n\n___הערה: לא ניתן לסנכרן עד שהתצורה תשתנה ומסד הנתונים יימשך שוב.___\n___הערה 2: הנתחים הם בלתי-ניתנים לשינוי לחלוטין, ניתן למשוך רק את המטה-נתונים וההפרש.___",
|
||||
"moduleMigration.msgInitialSetup": "המכשיר שלך **טרם הוגדר**. אנחנו כאן לעזור לך בתהליך ההגדרה.\n\nשים לב שניתן להעתיק את תוכן כל דיאלוג ללוח. אם צריך לחזור אליו מאוחר יותר, ניתן להדביק אותו כפתק ב-Obsidian. ניתן גם לתרגם לשפתך בעזרת כלי תרגום.\n\nראשית, האם יש לך **Setup URI**?\n\nהערה: אם אינך יודע מהו, אנא עיין ב[תיעוד](${URI_DOC}).",
|
||||
"moduleMigration.msgRecommendSetupUri": "אנו ממליצים בחום לייצר Setup URI ולהשתמש בו.\nאם אין לך ידע בנושא, אנא עיין ב[תיעוד](${URI_DOC}) (מתנצלים שוב, אך זה חשוב).\n\nכיצד ברצונך להגדיר ידנית?",
|
||||
"moduleMigration.msgSinceV02321": "מאז גרסה 0.23.21, Self-hosted LiveSync שינה את התנהגות ברירת המחדל ומבנה מסד הנתונים. השינויים הבאים בוצעו:\n\n1. **תלות רישיות בשמות קבצים**\n הטיפול בשמות קבצים הוא כעת ללא תלות רישיות. זהו שינוי מועיל לרוב הפלטפורמות,\n פרט ל-Linux ו-iOS שאינן מנהלות תלות רישיות בקבצים ביעילות.\n (בפלטפורמות אלה, תוצג אזהרה עבור קבצים עם אותו שם אך רישיות שונה).\n\n2. **טיפול בגרסאות של נתחים**\n נתחים הם בלתי-ניתנים לשינוי, מה שמאפשר גרסאות קבועות. שינוי זה ישפר את\n ביצועי שמירת הקבצים.\n\n___עם זאת, כדי להפעיל אחד מהשינויים הללו, יש לבנות מחדש גם את מסד הנתונים המרוחד וגם את המקומי. תהליך זה לוקח כמה דקות, ואנו ממליצים לעשות זאת כשיש לך זמן פנוי.___\n\n- אם ברצונך לשמור את ההתנהגות הקודמת, ניתן לדלג על תהליך זה באמצעות `${KEEP}`.\n- אם אין לך מספיק זמן, אנא בחר `${DISMISS}`. תקבל תזכורת בהמשך.\n- אם בנית מחדש את מסד הנתונים במכשיר אחר, אנא בחר `${DISMISS}` ונסה לסנכרן שוב. מאחר שזוהה הפרש, תקבל תזכורת שוב.",
|
||||
"moduleMigration.optionAdjustRemote": "התאם לשרת המרוחד",
|
||||
"moduleMigration.optionDecideLater": "החלט מאוחר יותר",
|
||||
"moduleMigration.optionEnableBoth": "הפעל את שניהם",
|
||||
"moduleMigration.optionEnableFilenameCaseInsensitive": "הפעל רק #1",
|
||||
"moduleMigration.optionEnableFixedRevisionForChunks": "הפעל רק #2",
|
||||
"moduleMigration.optionHaveSetupUri": "כן, יש לי",
|
||||
"moduleMigration.optionKeepPreviousBehaviour": "שמור על התנהגות קודמת",
|
||||
"moduleMigration.optionManualSetup": "הגדר הכל ידנית",
|
||||
"moduleMigration.optionNoAskAgain": "לא, אנא שאל שוב",
|
||||
"moduleMigration.optionNoSetupUri": "לא, אין לי",
|
||||
"moduleMigration.optionRemindNextLaunch": "הזכר לי בהפעלה הבאה",
|
||||
"moduleMigration.optionSetupViaP2P": "השתמש ב-%{short_p2p_sync} להגדרה",
|
||||
"moduleMigration.optionSetupWizard": "קח אותי לאשף ההגדרה",
|
||||
"moduleMigration.optionYesFetchAgain": "כן, משוך שוב",
|
||||
"moduleMigration.titleCaseSensitivity": "תלות רישיות",
|
||||
"moduleMigration.titleRecommendSetupUri": "המלצה לשימוש ב-Setup URI",
|
||||
"moduleMigration.titleWelcome": "ברוך הבא ל-Self-hosted LiveSync",
|
||||
"moduleObsidianMenu.replicate": "שכפל",
|
||||
"Move remotely deleted files to the trash, instead of deleting.": "העבר קבצים שנמחקו מרחוק לאשפה, במקום למחוק.",
|
||||
"Not all messages have been translated. And, please revert to \"Default\" when reporting errors.": "לא כל ההודעות תורגמו. בנוסף, אנא חזור ל\"ברירת מחדל\" בעת דיווח על שגיאות.",
|
||||
"Notify all setting files": "הודע על כל קבצי ההגדרות",
|
||||
"Notify customized": "הודע על התאמות אישיות",
|
||||
"Notify when other device has newly customized.": "הודע כאשר מכשיר אחר הוסיף התאמה אישית חדשה.",
|
||||
"Notify when the estimated remote storage size exceeds on start up": "הודע כשגודל האחסון המרוחד המשוער עולה על הסף בעת הפעלה",
|
||||
"Number of batches to process at a time. Defaults to 40. Minimum is 2. This along with batch size controls how many docs are kept in memory at a time.": "מספר האצוות לעיבוד בכל פעם. ברירת מחדל 40, מינימום 2. יחד עם גודל האצווה קובע כמה מסמכים נשמרים בזיכרון בו-זמנית.",
|
||||
"Number of changes to sync at a time. Defaults to 50. Minimum is 2.": "מספר השינויים לסנכרון בכל פעם. ברירת מחדל 50, מינימום 2.",
|
||||
"obsidianLiveSyncSettingTab.btnApply": "החל",
|
||||
"obsidianLiveSyncSettingTab.btnCheck": "בדוק",
|
||||
"obsidianLiveSyncSettingTab.btnCopy": "העתק",
|
||||
"obsidianLiveSyncSettingTab.btnDisable": "נטרל",
|
||||
"obsidianLiveSyncSettingTab.btnDiscard": "ביטול שינויים",
|
||||
"obsidianLiveSyncSettingTab.btnEnable": "הפעל",
|
||||
"obsidianLiveSyncSettingTab.btnFix": "תקן",
|
||||
"obsidianLiveSyncSettingTab.btnGotItAndUpdated": "הבנתי ועדכנתי.",
|
||||
"obsidianLiveSyncSettingTab.btnNext": "הבא",
|
||||
"obsidianLiveSyncSettingTab.btnStart": "התחל",
|
||||
"obsidianLiveSyncSettingTab.btnTest": "בדוק",
|
||||
"obsidianLiveSyncSettingTab.btnUse": "השתמש",
|
||||
"obsidianLiveSyncSettingTab.buttonFetch": "משוך",
|
||||
"obsidianLiveSyncSettingTab.buttonNext": "הבא",
|
||||
"obsidianLiveSyncSettingTab.defaultLanguage": "ברירת מחדל",
|
||||
"obsidianLiveSyncSettingTab.descConnectSetupURI": "זוהי השיטה המומלצת להגדרת Self-hosted LiveSync עם Setup URI.",
|
||||
"obsidianLiveSyncSettingTab.descCopySetupURI": "מושלם להגדרת מכשיר חדש!",
|
||||
"obsidianLiveSyncSettingTab.descEnableLiveSync": "הפעל רק לאחר הגדרת אחת משתי האפשרויות לעיל, או לאחר השלמת כל ההגדרות ידנית.",
|
||||
"obsidianLiveSyncSettingTab.descFetchConfigFromRemote": "משוך הגדרות נדרשות מהשרת המרוחד שהוגדר כבר.",
|
||||
"obsidianLiveSyncSettingTab.descManualSetup": "לא מומלץ, אך שימושי אם אין לך Setup URI",
|
||||
"obsidianLiveSyncSettingTab.descTestDatabaseConnection": "פתח חיבור למסד נתונים. אם מסד הנתונים המרוחד לא נמצא ויש לך הרשאה ליצור אחד, הוא ייצור.",
|
||||
"obsidianLiveSyncSettingTab.descValidateDatabaseConfig": "בודק ומתקן בעיות אפשריות בתצורת מסד הנתונים.",
|
||||
"obsidianLiveSyncSettingTab.errAccessForbidden": "❗ גישה נדחתה.",
|
||||
"obsidianLiveSyncSettingTab.errCannotContinueTest": "לא ניתן להמשיך בבדיקה.",
|
||||
"obsidianLiveSyncSettingTab.errCorsCredentials": "❗ cors.credentials שגוי",
|
||||
"obsidianLiveSyncSettingTab.errCorsNotAllowingCredentials": "❗ CORS אינו מאפשר פרטי גישה",
|
||||
"obsidianLiveSyncSettingTab.errCorsOrigins": "❗ cors.origins שגוי",
|
||||
"obsidianLiveSyncSettingTab.errEnableCors": "❗ httpd.enable_cors שגוי",
|
||||
"obsidianLiveSyncSettingTab.errEnableCorsChttpd": "❗ chttpd.enable_cors שגוי",
|
||||
"obsidianLiveSyncSettingTab.errMaxDocumentSize": "❗ couchdb.max_document_size נמוך)",
|
||||
"obsidianLiveSyncSettingTab.errMaxRequestSize": "❗ chttpd.max_http_request_size נמוך)",
|
||||
"obsidianLiveSyncSettingTab.errMissingWwwAuth": "❗ httpd.WWW-Authenticate חסר",
|
||||
"obsidianLiveSyncSettingTab.errRequireValidUser": "❗ chttpd.require_valid_user שגוי.",
|
||||
"obsidianLiveSyncSettingTab.errRequireValidUserAuth": "❗ chttpd_auth.require_valid_user שגוי.",
|
||||
"obsidianLiveSyncSettingTab.labelDisabled": "⏹️ : מנוטרל",
|
||||
"obsidianLiveSyncSettingTab.labelEnabled": "🔁 : מופעל",
|
||||
"obsidianLiveSyncSettingTab.levelAdvanced": " (מתקדם)",
|
||||
"obsidianLiveSyncSettingTab.levelEdgeCase": " (מקרה קצה)",
|
||||
"obsidianLiveSyncSettingTab.levelPowerUser": " (משתמש מתקדם)",
|
||||
"obsidianLiveSyncSettingTab.linkOpenInBrowser": "פתח בדפדפן",
|
||||
"obsidianLiveSyncSettingTab.linkPageTop": "ראש העמוד",
|
||||
"obsidianLiveSyncSettingTab.linkTipsAndTroubleshooting": "טיפים ופתרון בעיות",
|
||||
"obsidianLiveSyncSettingTab.linkTroubleshooting": "/docs/troubleshooting.md",
|
||||
"obsidianLiveSyncSettingTab.logCannotUseCloudant": "לא ניתן להשתמש בתכונה זו עם IBM Cloudant.",
|
||||
"obsidianLiveSyncSettingTab.logCheckingConfigDone": "בדיקת התצורה הושלמה",
|
||||
"obsidianLiveSyncSettingTab.logCheckingConfigFailed": "בדיקת התצורה נכשלה",
|
||||
"obsidianLiveSyncSettingTab.logCheckingDbConfig": "בודק תצורת מסד נתונים",
|
||||
"obsidianLiveSyncSettingTab.logCheckPassphraseFailed": "שגיאה: בדיקת ביטוי הסיסמה עם השרת המרוחד נכשלה:\n${db}.",
|
||||
"obsidianLiveSyncSettingTab.logConfiguredDisabled": "מצב סנכרון שהוגדר: מנוטרל",
|
||||
"obsidianLiveSyncSettingTab.logConfiguredLiveSync": "מצב סנכרון שהוגדר: LiveSync",
|
||||
"obsidianLiveSyncSettingTab.logConfiguredPeriodic": "מצב סנכרון שהוגדר: תקופתי",
|
||||
"obsidianLiveSyncSettingTab.logCouchDbConfigFail": "תצורת CouchDB: ${title} נכשלה",
|
||||
"obsidianLiveSyncSettingTab.logCouchDbConfigSet": "תצורת CouchDB: ${title} -> הגדר ${key} ל-${value}",
|
||||
"obsidianLiveSyncSettingTab.logCouchDbConfigUpdated": "תצורת CouchDB: ${title} עודכנה בהצלחה",
|
||||
"obsidianLiveSyncSettingTab.logDatabaseConnected": "מסד הנתונים מחובר",
|
||||
"obsidianLiveSyncSettingTab.logEncryptionNoPassphrase": "לא ניתן להפעיל הצפנה ללא ביטוי סיסמה",
|
||||
"obsidianLiveSyncSettingTab.logEncryptionNoSupport": "המכשיר שלך אינו תומך בהצפנה.",
|
||||
"obsidianLiveSyncSettingTab.logErrorOccurred": "אירעה שגיאה!!",
|
||||
"obsidianLiveSyncSettingTab.logEstimatedSize": "גודל משוער: ${size}",
|
||||
"obsidianLiveSyncSettingTab.logPassphraseInvalid": "ביטוי הסיסמה אינו תקין, אנא תקן אותו.",
|
||||
"obsidianLiveSyncSettingTab.logPassphraseNotCompatible": "שגיאה: ביטוי הסיסמה אינו תואם לשרת המרוחד! אנא בדוק שוב!",
|
||||
"obsidianLiveSyncSettingTab.logRebuildNote": "הסנכרון הושבת, משוך והפעל מחדש אם רצוי.",
|
||||
"obsidianLiveSyncSettingTab.logSelectAnyPreset": "בחר קביעה מראש כלשהי.",
|
||||
"obsidianLiveSyncSettingTab.msgAreYouSureProceed": "האם אתה בטוח שברצונך להמשיך?",
|
||||
"obsidianLiveSyncSettingTab.msgChangesNeedToBeApplied": "יש להחיל שינויים!",
|
||||
"obsidianLiveSyncSettingTab.msgConfigCheck": "--בדיקת תצורה--",
|
||||
"obsidianLiveSyncSettingTab.msgConfigCheckFailed": "בדיקת התצורה נכשלה. האם ברצונך להמשיך בכל זאת?",
|
||||
"obsidianLiveSyncSettingTab.msgConnectionCheck": "--בדיקת חיבור--",
|
||||
"obsidianLiveSyncSettingTab.msgConnectionProxyNote": "אם אתה נתקל בבעיות עם בדיקת החיבור (גם לאחר בדיקת התצורה), אנא בדוק את הגדרות ה-reverse proxy שלך.",
|
||||
"obsidianLiveSyncSettingTab.msgCurrentOrigin": "מקור נוכחי: ${origin}",
|
||||
"obsidianLiveSyncSettingTab.msgDiscardConfirmation": "האם אתה בטוח שברצונך לבטל הגדרות ומסדי נתונים קיימים?",
|
||||
"obsidianLiveSyncSettingTab.msgDone": "--הסתיים--",
|
||||
"obsidianLiveSyncSettingTab.msgEnableCors": "הגדר httpd.enable_cors",
|
||||
"obsidianLiveSyncSettingTab.msgEnableCorsChttpd": "הגדר chttpd.enable_cors",
|
||||
"obsidianLiveSyncSettingTab.msgEnableEncryptionRecommendation": "אנו ממליצים להפעיל הצפנה מקצה לקצה ואת ערפול הנתיב. האם אתה בטוח שברצונך להמשיך ללא הצפנה?",
|
||||
"obsidianLiveSyncSettingTab.msgFetchConfigFromRemote": "האם ברצונך למשוך את התצורה מהשרת המרוחד?",
|
||||
"obsidianLiveSyncSettingTab.msgGenerateSetupURI": "הכל מוכן! האם ברצונך לייצר Setup URI להגדרת מכשירים אחרים?",
|
||||
"obsidianLiveSyncSettingTab.msgIfConfigNotPersistent": "אם תצורת השרת אינה קבועה (למשל, פועלת ב-docker), הערכים כאן עשויים להשתנות. לאחר שתצליח להתחבר, אנא עדכן את ההגדרות ב-local.ini של השרת.",
|
||||
"obsidianLiveSyncSettingTab.msgInvalidPassphrase": "ביטוי הסיסמה להצפנה שלך עשוי להיות לא תקין. האם אתה בטוח שברצונך להמשיך?",
|
||||
"obsidianLiveSyncSettingTab.msgNewVersionNote": "הגעת כאן בשל הודעת שדרוג? אנא עיין בהיסטוריית הגרסאות. אם אתה מרוצה, לחץ על הכפתור. עדכון חדש יציג זאת שוב.",
|
||||
"obsidianLiveSyncSettingTab.msgNonHTTPSInfo": "מוגדר כ-URI שאינו HTTPS. שים לב שהדבר עשוי שלא לפעול על מכשירים ניידים.",
|
||||
"obsidianLiveSyncSettingTab.msgNonHTTPSWarning": "לא ניתן להתחבר ל-URI שאינו HTTPS. אנא עדכן את התצורה ונסה שוב.",
|
||||
"obsidianLiveSyncSettingTab.msgNotice": "---הודעה---",
|
||||
"obsidianLiveSyncSettingTab.msgObjectStorageWarning": "אזהרה: תכונה זו בשלב פיתוח, לכן שים לב לנקודות הבאות:\n- ארכיטקטורת הוספה בלבד. נדרשת בנייה מחדש לצמצום האחסון.\n- קצת רגיש.\n- בסנכרון הראשון, כל ההיסטוריה תועבר מהשרת המרוחד. שים לב למגבלות נתונים ומהירות.\n- רק הפרשים מסונכרנים בזמן אמת.\n\nאם נתקלת בבעיות, או שיש לך רעיונות לגבי תכונה זו, אנא פתח Issue ב-GitHub.\nאנחנו מעריכים את ההקדשה הגדולה שלך.",
|
||||
"obsidianLiveSyncSettingTab.msgOriginCheck": "בדיקת מקור: ${org}",
|
||||
"obsidianLiveSyncSettingTab.msgRebuildRequired": "נדרשת בנייה מחדש של מסדי הנתונים כדי להחיל את השינויים. אנא בחר את השיטה.\n\n<details>\n<summary>מקרא</summary>\n\n| סמל | משמעות |\n|: ------ :| ------- |\n| ⇔ | מעודכן |\n| ⇄ | סנכרן לאיזון |\n| ⇐,⇒ | העבר לדריסה |\n| ⇠,⇢ | העבר לדריסה מהצד השני |\n\n</details>\n\n## ${OPTION_REBUILD_BOTH}\nבמבט: 📄 ⇒¹ 💻 ⇒² 🛰️ ⇢ⁿ 💻 ⇄ⁿ⁺¹ 📄\nבנה מחדש גם את מסד הנתונים המקומי וגם המרוחד תוך שימוש בקבצים קיימים ממכשיר זה.\nפעולה זו תנעל מכשירים אחרים שיצטרכו לבצע משיכה.\n## ${OPTION_FETCH}\nבמבט: 📄 ⇄² 💻 ⇐¹ 🛰️ ⇔ 💻 ⇔ 📄\nאתחל את מסד הנתונים המקומי ובנה אותו מחדש תוך שימוש בנתונים שנמשכו ממסד הנתונים המרוחד.\nכולל את המקרה שבו בנית מחדש את מסד הנתונים המרוחד.\n## ${OPTION_ONLY_SETTING}\nשמור רק את ההגדרות. **זהירות: עלול לגרום לפגיעה בנתונים**; בנייה מחדש של מסד הנתונים נדרשת בדרך כלל.",
|
||||
"obsidianLiveSyncSettingTab.msgSelectAndApplyPreset": "אנא בחר והחל פריט קבוע מראש כלשהו להשלמת האשף.",
|
||||
"obsidianLiveSyncSettingTab.msgSetCorsCredentials": "הגדר cors.credentials",
|
||||
"obsidianLiveSyncSettingTab.msgSetCorsOrigins": "הגדר cors.origins",
|
||||
"obsidianLiveSyncSettingTab.msgSetMaxDocSize": "הגדר couchdb.max_document_size",
|
||||
"obsidianLiveSyncSettingTab.msgSetMaxRequestSize": "הגדר chttpd.max_http_request_size",
|
||||
"obsidianLiveSyncSettingTab.msgSetRequireValidUser": "הגדר chttpd.require_valid_user = true",
|
||||
"obsidianLiveSyncSettingTab.msgSetRequireValidUserAuth": "הגדר chttpd_auth.require_valid_user = true",
|
||||
"obsidianLiveSyncSettingTab.msgSettingModified": "ההגדרה \"${setting}\" שונתה ממכשיר אחר. לחץ על {HERE} לטעינה מחדש של ההגדרות. לחץ במקום אחר להתעלמות מהשינויים.",
|
||||
"obsidianLiveSyncSettingTab.msgSettingsUnchangeableDuringSync": "הגדרות אלה אינן ניתנות לשינוי במהלך סנכרון. אנא נטרל את כל הסנכרון ב\"הגדרות סנכרון\" כדי לבטל נעילה.",
|
||||
"obsidianLiveSyncSettingTab.msgSetWwwAuth": "הגדר httpd.WWW-Authenticate",
|
||||
"obsidianLiveSyncSettingTab.nameApplySettings": "החל הגדרות",
|
||||
"obsidianLiveSyncSettingTab.nameConnectSetupURI": "התחבר עם Setup URI",
|
||||
"obsidianLiveSyncSettingTab.nameCopySetupURI": "העתק הגדרות נוכחיות ל-Setup URI",
|
||||
"obsidianLiveSyncSettingTab.nameDisableHiddenFileSync": "נטרל סנכרון קבצים נסתרים",
|
||||
"obsidianLiveSyncSettingTab.nameDiscardSettings": "בטל הגדרות ומסדי נתונים קיימים",
|
||||
"obsidianLiveSyncSettingTab.nameEnableHiddenFileSync": "הפעל סנכרון קבצים נסתרים",
|
||||
"obsidianLiveSyncSettingTab.nameEnableLiveSync": "הפעל LiveSync",
|
||||
"obsidianLiveSyncSettingTab.nameHiddenFileSynchronization": "סנכרון קבצים נסתרים",
|
||||
"obsidianLiveSyncSettingTab.nameManualSetup": "הגדרה ידנית",
|
||||
"obsidianLiveSyncSettingTab.nameTestConnection": "בדוק חיבור",
|
||||
"obsidianLiveSyncSettingTab.nameTestDatabaseConnection": "בדוק חיבור למסד נתונים",
|
||||
"obsidianLiveSyncSettingTab.nameValidateDatabaseConfig": "אמת תצורת מסד נתונים",
|
||||
"obsidianLiveSyncSettingTab.okAdminPrivileges": "✔ יש לך הרשאות מנהל.",
|
||||
"obsidianLiveSyncSettingTab.okCorsCredentials": "✔ cors.credentials תקין.",
|
||||
"obsidianLiveSyncSettingTab.okCorsCredentialsForOrigin": "CORS credentials תקין",
|
||||
"obsidianLiveSyncSettingTab.okCorsOriginMatched": "✔ CORS origin תקין",
|
||||
"obsidianLiveSyncSettingTab.okCorsOrigins": "✔ cors.origins תקין.",
|
||||
"obsidianLiveSyncSettingTab.okEnableCors": "✔ httpd.enable_cors תקין.",
|
||||
"obsidianLiveSyncSettingTab.okEnableCorsChttpd": "✔ chttpd.enable_cors תקין.",
|
||||
"obsidianLiveSyncSettingTab.okMaxDocumentSize": "✔ couchdb.max_document_size תקין.",
|
||||
"obsidianLiveSyncSettingTab.okMaxRequestSize": "✔ chttpd.max_http_request_size תקין.",
|
||||
"obsidianLiveSyncSettingTab.okRequireValidUser": "✔ chttpd.require_valid_user תקין.",
|
||||
"obsidianLiveSyncSettingTab.okRequireValidUserAuth": "✔ chttpd_auth.require_valid_user תקין.",
|
||||
"obsidianLiveSyncSettingTab.okWwwAuth": "✔ httpd.WWW-Authenticate תקין.",
|
||||
"obsidianLiveSyncSettingTab.optionApply": "החל",
|
||||
"obsidianLiveSyncSettingTab.optionCancel": "ביטול",
|
||||
"obsidianLiveSyncSettingTab.optionCouchDB": "CouchDB",
|
||||
"obsidianLiveSyncSettingTab.optionDisableAllAutomatic": "נטרל את כל האוטומטי",
|
||||
"obsidianLiveSyncSettingTab.optionFetchFromRemote": "משוך מהשרת המרוחד",
|
||||
"obsidianLiveSyncSettingTab.optionHere": "כאן",
|
||||
"obsidianLiveSyncSettingTab.optionLiveSync": "LiveSync",
|
||||
"obsidianLiveSyncSettingTab.optionMinioS3R2": "Minio,S3,R2",
|
||||
"obsidianLiveSyncSettingTab.optionOkReadEverything": "בסדר, קראתי הכל.",
|
||||
"obsidianLiveSyncSettingTab.optionOnEvents": "על אירועים",
|
||||
"obsidianLiveSyncSettingTab.optionPeriodicAndEvents": "תקופתי ועל אירועים",
|
||||
"obsidianLiveSyncSettingTab.optionPeriodicWithBatch": "תקופתי עם אצווה",
|
||||
"obsidianLiveSyncSettingTab.optionRebuildBoth": "בנה שניהם מחדש ממכשיר זה",
|
||||
"obsidianLiveSyncSettingTab.optionSaveOnlySettings": "(סכנה) שמור הגדרות בלבד",
|
||||
"obsidianLiveSyncSettingTab.panelChangeLog": "יומן שינויים",
|
||||
"obsidianLiveSyncSettingTab.panelGeneralSettings": "הגדרות כלליות",
|
||||
"obsidianLiveSyncSettingTab.panelPrivacyEncryption": "פרטיות והצפנה",
|
||||
"obsidianLiveSyncSettingTab.panelRemoteConfiguration": "תצורת שרת מרוחד",
|
||||
"obsidianLiveSyncSettingTab.panelSetup": "הגדרה",
|
||||
"obsidianLiveSyncSettingTab.serverVersion": "פרטי שרת: ${info}",
|
||||
"obsidianLiveSyncSettingTab.titleActiveRemoteServer": "שרת מרוחד פעיל",
|
||||
"obsidianLiveSyncSettingTab.titleAppearance": "מראה",
|
||||
"obsidianLiveSyncSettingTab.titleConflictResolution": "פתרון קונפליקטים",
|
||||
"obsidianLiveSyncSettingTab.titleCongratulations": "מזל טוב!",
|
||||
"obsidianLiveSyncSettingTab.titleCouchDB": "CouchDB",
|
||||
"obsidianLiveSyncSettingTab.titleDeletionPropagation": "הפצת מחיקות",
|
||||
"obsidianLiveSyncSettingTab.titleEncryptionNotEnabled": "ההצפנה אינה מופעלת",
|
||||
"obsidianLiveSyncSettingTab.titleEncryptionPassphraseInvalid": "ביטוי סיסמה להצפנה לא תקין",
|
||||
"obsidianLiveSyncSettingTab.titleExtraFeatures": "הפעל תכונות נוספות ומתקדמות",
|
||||
"obsidianLiveSyncSettingTab.titleFetchConfig": "משוך תצורה",
|
||||
"obsidianLiveSyncSettingTab.titleFetchConfigFromRemote": "משוך תצורה מהשרת המרוחד",
|
||||
"obsidianLiveSyncSettingTab.titleFetchSettings": "משוך הגדרות",
|
||||
"obsidianLiveSyncSettingTab.titleHiddenFiles": "קבצים נסתרים",
|
||||
"obsidianLiveSyncSettingTab.titleLogging": "רישום יומן",
|
||||
"obsidianLiveSyncSettingTab.titleMinioS3R2": "Minio,S3,R2",
|
||||
"obsidianLiveSyncSettingTab.titleNotification": "התראה",
|
||||
"obsidianLiveSyncSettingTab.titleOnlineTips": "טיפים אונליין",
|
||||
"obsidianLiveSyncSettingTab.titleQuickSetup": "הגדרה מהירה",
|
||||
"obsidianLiveSyncSettingTab.titleRebuildRequired": "נדרשת בנייה מחדש",
|
||||
"obsidianLiveSyncSettingTab.titleRemoteConfigCheckFailed": "בדיקת תצורת שרת מרוחד נכשלה",
|
||||
"obsidianLiveSyncSettingTab.titleRemoteServer": "שרת מרוחד",
|
||||
"obsidianLiveSyncSettingTab.titleReset": "אתחול",
|
||||
"obsidianLiveSyncSettingTab.titleSetupOtherDevices": "להגדרת מכשירים אחרים",
|
||||
"obsidianLiveSyncSettingTab.titleSynchronizationMethod": "שיטת סנכרון",
|
||||
"obsidianLiveSyncSettingTab.titleSynchronizationPreset": "קבוע מראש לסנכרון",
|
||||
"obsidianLiveSyncSettingTab.titleSyncSettings": "הגדרות סנכרון",
|
||||
"obsidianLiveSyncSettingTab.titleSyncSettingsViaMarkdown": "סנכרון הגדרות דרך Markdown",
|
||||
"obsidianLiveSyncSettingTab.titleUpdateThinning": "דילול עדכונים",
|
||||
"obsidianLiveSyncSettingTab.warnCorsOriginUnmatched": "⚠ CORS Origin אינו תואם ${from}->${to}",
|
||||
"obsidianLiveSyncSettingTab.warnNoAdmin": "⚠ אין לך הרשאות מנהל.",
|
||||
"P2P.AskPassphraseForDecrypt": "העמית המרוחד שיתף את התצורה. אנא הזן את ביטוי הסיסמה לפענוח התצורה.",
|
||||
"P2P.AskPassphraseForShare": "העמית המרוחד ביקש את תצורת מכשיר זה. אנא הזן את ביטוי הסיסמה לשיתוף התצורה. ניתן להתעלם מהבקשה על ידי ביטול הדיאלוג.",
|
||||
"P2P.DisabledButNeed": "%{title_p2p_sync} מנוטרל. האם אתה בטוח שברצונך להפעיל?",
|
||||
"P2P.FailedToOpen": "לא ניתן לפתוח חיבור P2P לשרת האותות.",
|
||||
"P2P.NoAutoSyncPeers": "לא נמצאו עמיתים לסנכרון אוטומטי. אנא הגדר עמיתים בלוח %{long_p2p_sync}.",
|
||||
"P2P.NoKnownPeers": "לא זוהו עמיתים, ממתין לעמיתים נכנסים...",
|
||||
"P2P.Note.description": " רפליקטור זה מאפשר לסנכרן את הכספת עם מכשירים אחרים באמצעות חיבור עמית-לעמית.\nניתן להשתמש בזה לסנכרון הכספת עם מכשירים אחרים ללא שירות ענן.\nרפליקטור זה מבוסס על Trystero. הוא משתמש גם בשרת אותות לביסוס חיבור בין מכשירים. שרת האותות משמש להחלפת מידע חיבור בין מכשירים. הוא אינו (ולא אמור) לדעת או לאחסן את הנתונים שלנו.\n\nשרת האותות יכול להיות מאוחסן על ידי כל אחד. זהו ממסר Nostr בלבד. לצורך פשטות ובדיקת התנהגות הרפליקטור, vrtmrz מאחסן עותק של שרת האותות. ניתן להשתמש בשרת הניסיוני של vrtmrz, או בכל שרת אחר.\n\nאגב, גם אם שרת האותות אינו מאחסן נתונים, הוא יכול לראות מידע חיבור של חלק ממכשיריך. אנא שים לב לכך. כמו כן, היה זהיר בשימוש בשרת של מישהו אחר.",
|
||||
"P2P.Note.important_note": "רפליקטור עמית-לעמית.",
|
||||
"P2P.Note.important_note_sub": "תכונה זו עדיין בשלב מתקדם. ודא שהנתונים שלך מגובים לפני השימוש. ונשמח אם תוכל לתרום לפיתוח תכונה זו.",
|
||||
"P2P.Note.Summary": "מהי תכונה זו? (ועוד הערות חשובות, נא לקרוא פעם אחת)",
|
||||
"P2P.NotEnabled": "%{title_p2p_sync} אינו מופעל. לא ניתן לפתוח חיבור חדש.",
|
||||
"P2P.P2PReplication": "שכפול %{P2P}",
|
||||
"P2P.PaneTitle": "%{long_p2p_sync}",
|
||||
"P2P.ReplicatorInstanceMissing": "רפליקטור סנכרון P2P לא נמצא, ייתכן שלא הוגדר או הופעל.",
|
||||
"P2P.SeemsOffline": "העמית ${name} נראה לא מחובר, מדלג.",
|
||||
"P2P.SyncAlreadyRunning": "סנכרון P2P כבר פועל.",
|
||||
"P2P.SyncCompleted": "סנכרון P2P הושלם.",
|
||||
"P2P.SyncStartedWith": "סנכרון P2P עם ${name} התחיל.",
|
||||
"Passphrase": "ביטוי סיסמה",
|
||||
"Passphrase of sensitive configuration items": "ביטוי סיסמה לפריטי תצורה רגישים",
|
||||
"password": "סיסמה",
|
||||
"Password": "סיסמה",
|
||||
"Path Obfuscation": "ערפול נתיב",
|
||||
"Per-file-saved customization sync": "סנכרון התאמה אישית שנשמר לפי קובץ",
|
||||
"Periodic Sync interval": "מרווח סנכרון תקופתי",
|
||||
"Prepare the 'report' to create an issue": "הכן 'דו\"ח' ליצירת Issue",
|
||||
"Presets": "קביעות מראש",
|
||||
"Process small files in the foreground": "עבד קבצים קטנים בחזית",
|
||||
"Property Encryption": "הצפנת מאפיינים",
|
||||
"RedFlag.Fetch.Method.Desc": "כיצד ברצונך למשוך?\n- %{RedFlag.Fetch.Method.FetchSafer}.\n **תעבורה נמוכה**, **מעבד גבוה**, **סיכון נמוך**\n מומלץ אם...\n - קבצים עשויים להיות לא עקביים\n - אין הרבה קבצים\n- %{RedFlag.Fetch.Method.FetchSmoother}.\n **תעבורה נמוכה**, **מעבד בינוני**, **סיכון נמוך עד בינוני**\n מומלץ אם...\n - הקבצים ככל הנראה עקביים\n - יש לך הרבה קבצים.\n- %{RedFlag.Fetch.Method.FetchTraditional}.\n **תעבורה גבוהה**, **מעבד נמוך**, **סיכון נמוך עד בינוני**\n\n>[!INFO]- פרטים\n> ## %{RedFlag.Fetch.Method.FetchSafer}.\n> **תעבורה נמוכה**, **מעבד גבוה**, **סיכון נמוך**\n> אפשרות זו יוצרת תחילה מסד נתונים מקומי תוך שימוש בקבצים מקומיים קיימים לפני משיכת נתונים מהמקור המרוחד.\n> אם קיימים קבצים תואמים גם מקומית וגם מרחוק, רק ההפרשים ביניהם יועברו.\n> עם זאת, קבצים הקיימים בשני המקומות יטופלו תחילה כקבצים מתנגשים. הם ייפתרו אוטומטית אם לא מתנגשים בפועל, אך תהליך זה עשוי לקחת זמן.\n> זוהי בדרך כלל השיטה הבטוחה ביותר, ממזערת סיכון לאובדן נתונים.\n> ## %{RedFlag.Fetch.Method.FetchSmoother}.\n> **תעבורה נמוכה**, **מעבד בינוני**, **סיכון נמוך עד בינוני** (תלוי בפעולה)\n> אפשרות זו יוצרת תחילה נתחים מקבצים מקומיים למסד הנתונים, ואז מושכת נתונים. כתוצאה מכך, רק נתחים חסרים מקומית מועברים. עם זאת, כל המטה-נתונים נלקחים מהמקור המרוחד.\n> קבצים מקומיים נבדקים לאחר מכן מול מטה-נתונים אלה בעת ההפעלה. התוכן שנחשב חדש יותר ידרוס את הישן יותר (לפי זמן שינוי).\n> בדרך כלל בטוח אם הקבצים המקומיים הם אכן חדשים ביותר. עם זאת, עלול לגרום לבעיות אם לקובץ יש חותמת זמן חדשה יותר אך תוכן ישן יותר (כמו `welcome.md` ראשוני).\n> שיטה זו משתמשת בפחות מעבד ומהירה יותר מ-\"%{RedFlag.Fetch.Method.FetchSafer}\", אך עלולה להוביל לאובדן נתונים אם לא משתמשים בה בזהירות.\n> ## %{RedFlag.Fetch.Method.FetchTraditional}.\n> **תעבורה גבוהה**, **מעבד נמוך**, **סיכון נמוך עד בינוני** (תלוי בפעולה)\n> הכל יימשך מהשרת המרוחד.\n> דומה ל-%{RedFlag.Fetch.Method.FetchSmoother}, אך כל הנתחים נמשכים מהמקור המרוחד.\n> זוהי הדרך המסורתית ביותר למשיכה, צורכת בדרך כלל את רוב תעבורת הרשת והזמן.\n> עם זאת, היא נחשבת לעתים קרובות לשיטה היציבה ביותר מכיוון שהיא הוותיקה והישירה ביותר.",
|
||||
"RedFlag.Fetch.Method.FetchSafer": "צור מסד נתונים מקומי לפני המשיכה",
|
||||
"RedFlag.Fetch.Method.FetchSmoother": "צור נתחי קבצים מקומיים לפני המשיכה",
|
||||
"RedFlag.Fetch.Method.FetchTraditional": "משוך הכל מהשרת המרוחד",
|
||||
"RedFlag.Fetch.Method.Title": "כיצד ברצונך למשוך?",
|
||||
"RedFlag.FetchRemoteConfig.Buttons.Cancel": "לא, השתמש בהגדרות המקומיות",
|
||||
"RedFlag.FetchRemoteConfig.Buttons.Fetch": "כן, משוך והחל הגדרות מרוחקות",
|
||||
"RedFlag.FetchRemoteConfig.Message": "האם ברצונך למשוך ולהחיל הגדרות שמורות מרחוק על מכשיר זה?",
|
||||
"RedFlag.FetchRemoteConfig.Title": "משוך תצורה מרוחקת",
|
||||
"Reducing the frequency with which on-disk changes are reflected into the DB": "הפחת את תדירות השתקפות שינויים בדיסק למסד הנתונים",
|
||||
"Region": "אזור",
|
||||
"Remote server type": "סוג שרת מרוחד",
|
||||
"Remote Type": "סוג מרוחד",
|
||||
"Replicator.Dialogue.Locked.Action.Dismiss": "ביטול לאישור מחדש",
|
||||
"Replicator.Dialogue.Locked.Action.Fetch": "אפס סנכרון במכשיר זה",
|
||||
"Replicator.Dialogue.Locked.Action.Unlock": "בטל נעילת מסד הנתונים המרוחד",
|
||||
"Replicator.Dialogue.Locked.Message": "מסד הנתונים המרוחד נעול. הסיבה היא בנייה מחדש באחד הטרמינלים.\nלכן המכשיר מתבקש להמנע מחיבור כדי למנוע פגיעה במסד הנתונים.\n\nקיימות שלוש אפשרויות:\n\n- %{Replicator.Dialogue.Locked.Action.Fetch}\n הדרך המועדפת והאמינה ביותר. פעולה זו תמחק את מסד הנתונים המקומי פעם,\n ותאפס את כל מידע הסנכרון ממסד הנתונים המרוחד מחדש. ברוב המקרים ניתן\n לעשות זאת בבטחה. עם זאת, דורשת זמן ויש לבצע ברשת יציבה.\n- %{Replicator.Dialogue.Locked.Action.Unlock}\n ניתן להשתמש בשיטה זו רק אם כבר מסונכרנים באופן אמין בשיטות שכפול\n אחרות. פשוט לא מספיק שיש אותם קבצים. אם אינך בטוח, הימנע מכך.\n- %{Replicator.Dialogue.Locked.Action.Dismiss}\n פעולה זו תבטל את הפעולה. תתבקש שוב בבקשה הבאה.\n",
|
||||
"Replicator.Dialogue.Locked.Message.Fetch": "משיכה מלאה תוזמנה. הפלאגין יופעל מחדש לביצועה.",
|
||||
"Replicator.Dialogue.Locked.Message.Unlocked": "מסד הנתונים המרוחד בוטל נעילתו. אנא נסה שוב את הפעולה.",
|
||||
"Replicator.Dialogue.Locked.Title": "נעול",
|
||||
"Replicator.Message.Cleaned": "ניקוי מסד הנתונים בתהליך. השכפול בוטל",
|
||||
"Replicator.Message.InitialiseFatalError": "אין רפליקטור זמין, זוהי שגיאה קריטית.",
|
||||
"Replicator.Message.Pending": "חלק מאירועי הקבצים ממתינים. השכפול בוטל.",
|
||||
"Replicator.Message.SomeModuleFailed": "השכפול בוטל בשל כשל במודול",
|
||||
"Replicator.Message.VersionUpFlash": "זוהה עדכון. אנא פתח את דיאלוג ההגדרות ובדוק את יומן השינויים. השכפול בוטל.",
|
||||
"Requires restart of Obsidian": "דורש הפעלה מחדש של Obsidian",
|
||||
"Requires restart of Obsidian.": "דורש הפעלה מחדש של Obsidian.",
|
||||
"Rerun Onboarding Wizard": "הרץ שוב את אשף ההכוונה",
|
||||
"Rerun the onboarding wizard to set up Self-hosted LiveSync again.": "הרץ שוב את אשף ההכוונה להגדרת Self-hosted LiveSync מחדש.",
|
||||
"Rerun Wizard": "הרץ שוב את האשף",
|
||||
"Reset notification threshold and check the remote database usage": "אפס סף התראה ובדוק שימוש במסד הנתונים המרוחד",
|
||||
"Reset the remote storage size threshold and check the remote storage size again.": "אפס את סף גודל האחסון המרוחד ובדוק שוב את גודל האחסון המרוחד.",
|
||||
"Run Doctor": "הפעל Doctor",
|
||||
"Save settings to a markdown file. You will be notified when new settings arrive. You can set different files by the platform.": "שמור הגדרות לקובץ Markdown. תיודע כשהגדרות חדשות יגיעו. ניתן להגדיר קבצים שונים לפי פלטפורמה.",
|
||||
"Saving will be performed forcefully after this number of seconds.": "השמירה תתבצע בכפייה לאחר מספר שניות זה.",
|
||||
"Scan changes on customization sync": "סרוק שינויים בסנכרון התאמה אישית",
|
||||
"Scan customization automatically": "סרוק התאמה אישית אוטומטית",
|
||||
"Scan customization before replicating.": "סרוק התאמה אישית לפני שכפול.",
|
||||
"Scan customization every 1 minute.": "סרוק התאמה אישית כל דקה.",
|
||||
"Scan customization periodically": "סרוק התאמה אישית תקופתית",
|
||||
"Scan for hidden files before replication": "סרוק קבצים נסתרים לפני שכפול",
|
||||
"Scan hidden files periodically": "סרוק קבצים נסתרים תקופתית",
|
||||
"Seconds, 0 to disable": "שניות, 0 לביטול",
|
||||
"Seconds. Saving to the local database will be delayed until this value after we stop typing or saving.": "שניות. השמירה למסד הנתונים המקומי תתעכב בערך זה לאחר הפסקת הקלדה או שמירה.",
|
||||
"Secret Key": "מפתח סודי",
|
||||
"Server URI": "כתובת שרת (URI)",
|
||||
"Setting.GenerateKeyPair.Desc": "יצרנו זוג מפתחות!\n\nהערה: זוג מפתחות זה לא יוצג שוב. אנא שמור אותו במקום בטוח. אם אבד לך, יהיה צורך לייצר זוג מפתחות חדש.\nהערה 2: המפתח הציבורי הוא בפורמט spki, והמפתח הפרטי הוא בפורמט pkcs8. לנוחות, שורות חדשות ממוירות ל-`\\n` במפתח הציבורי.\nהערה 3: יש להגדיר את המפתח הציבורי במסד הנתונים המרוחד, ואת המפתח הפרטי במכשירים המקומיים.\n\n>[!FOR YOUR EYES ONLY]-\n> <div class=\"sls-keypair\">\n>\n> ### מפתח ציבורי\n> ```\n${public_key}\n> ```\n>\n> ### מפתח פרטי\n> ```\n${private_key}\n> ```\n>\n> </div>\n\n>[!Both for copying]-\n>\n> <div class=\"sls-keypair\">\n>\n> ```\n${public_key}\n${private_key}\n> ```\n>\n> </div>\n\n",
|
||||
"Setting.GenerateKeyPair.Title": "זוג מפתחות חדש נוצר!",
|
||||
"Setting.TroubleShooting": "פתרון בעיות",
|
||||
"Setting.TroubleShooting.Doctor": "Doctor הגדרות",
|
||||
"Setting.TroubleShooting.Doctor.Desc": "מזהה הגדרות לא אופטימליות. (זהה לפעולה במהלך הגירה)",
|
||||
"Setting.TroubleShooting.ScanBrokenFiles": "סרוק קבצים פגומים",
|
||||
"Setting.TroubleShooting.ScanBrokenFiles.Desc": "סורק קבצים שלא נשמרו כהלכה במסד הנתונים.",
|
||||
"SettingTab.Message.AskRebuild": "השינויים שלך מצריכים משיכה ממסד הנתונים המרוחד. האם להמשיך?",
|
||||
"Setup.Apply.Buttons.ApplyAndFetch": "החל ומשוך",
|
||||
"Setup.Apply.Buttons.ApplyAndMerge": "החל ומזג",
|
||||
"Setup.Apply.Buttons.ApplyAndRebuild": "החל ובנה מחדש",
|
||||
"Setup.Apply.Buttons.Cancel": "בטל ובטל",
|
||||
"Setup.Apply.Buttons.OnlyApply": "החל בלבד",
|
||||
"Setup.Apply.Message": "התצורה החדשה מוכנה. בואו נמשיך להחיל אותה.\nישנן מספר דרכים להחיל זאת:\n\n- החל ומשוך\n הגדר מכשיר זה כלקוח חדש. לאחר ההחלה, סנכרן מהשרת המרוחד.\n- החל ומזג\n הגדר על מכשיר שכבר יש בו קבצים. מעבד קבצים מקומיים ומעביר הפרשים. עלולים\n לקום קונפליקטים.\n- החל ובנה מחדש\n בנה את השרת המרוחד מחדש תוך שימוש בקבצים מקומיים. נעשה בדרך כלל אם השרת\n מושחת או אם רוצים להתחיל מאפס. מכשירים אחרים יינעלו ויצטרכו למשוך מחדש.\n- החל בלבד\n החל בלבד. עלולים לקום קונפליקטים אם נדרשת בנייה מחדש.",
|
||||
"Setup.Apply.Title": "החל תצורה חדשה מה-${method}",
|
||||
"Setup.Apply.WarningRebuildRecommended": "שים לב: לאחר כוונון ההגדרות, נקבע שנדרשת בנייה מחדש; ייבוא בלבד אינו מומלץ.",
|
||||
"Setup.Doctor.Buttons.No": "לא, אנא השתמש בהגדרות ה-URI כפי שהן",
|
||||
"Setup.Doctor.Buttons.Yes": "כן, אנא יעץ ל-Doctor",
|
||||
"Setup.Doctor.Message": "Self-hosted LiveSync הפך ארוך יותר בהיסטוריה שלו וחלק מההגדרות המומלצות השתנו.\n\nעכשיו, הגדרה היא זמן מצוין לכך.\n\nהאם ברצונך להפעיל את Doctor כדי לבדוק אם ההגדרות המיובאות אופטימליות בהשוואה למצב הנוכחי?",
|
||||
"Setup.Doctor.Title": "האם ברצונך להתייעץ עם ה-Doctor?",
|
||||
"Setup.FetchRemoteConf.Buttons.Fetch": "כן, אנא משוך את התצורה",
|
||||
"Setup.FetchRemoteConf.Buttons.Skip": "לא, אנא השתמש בהגדרות ב-URI",
|
||||
"Setup.FetchRemoteConf.Message": "אם סנכרנו כבר פעם עם מכשיר אחר, מסד הנתונים המרוחד מאחסן ערכי תצורה מתאימים בין המכשירים המסונכרנים. הפלאגין ירצה לאחזר אותם לתצורה חזקה יותר.\n\nעם זאת, עלינו לוודא דבר אחד. האם אנחנו כרגע במצב שבו ניתן לגשת לרשת בבטחה ולאחזר את ההגדרות?\nהערה: ברוב המקרים, אתה בטוח לעשות זאת, כל עוד מסד הנתונים המרוחד שלך מאוחסן עם תעודת SSL, ורשתך אינה פגומה.",
|
||||
"Setup.FetchRemoteConf.Title": "אחזר תצורה ממסד הנתונים המרוחד?",
|
||||
"Setup.QRCode": "יצרנו קוד QR להעברת ההגדרות. אנא סרוק את קוד ה-QR עם הטלפון או מכשיר אחר.\nהערה: קוד ה-QR אינו מוצפן, אז היה זהיר בפתיחתו.\n\n>[!FOR YOUR EYES ONLY]-\n> <div class=\"sls-qr\">${qr_image}</div>",
|
||||
"Setup.ShowQRCode": "הצג קוד QR",
|
||||
"Setup.ShowQRCode.Desc": "הצג קוד QR להעברת ההגדרות.",
|
||||
"Should we keep folders that don't have any files inside?": "האם לשמור תיקיות שאין בהן קבצים?",
|
||||
"Should we only check for conflicts when a file is opened?": "האם לבדוק קונפליקטים רק בעת פתיחת קובץ?",
|
||||
"Should we prompt you about conflicting files when a file is opened?": "האם להציג בקשה לגבי קבצים מתנגשים בעת פתיחת קובץ?",
|
||||
"Should we prompt you for every single merge, even if we can safely merge automatcially?": "האם להציג בקשת אישור לכל מיזוג יחיד, גם אם ניתן למזג בבטחה אוטומטית?",
|
||||
"Show only notifications": "הצג התראות בלבד",
|
||||
"Show status as icons only": "הצג סטטוס כאייקונים בלבד",
|
||||
"Show status icon instead of file warnings banner": "הצג אייקון סטטוס במקום פס אזהרות הקובץ",
|
||||
"Show status inside the editor": "הצג סטטוס בתוך העורך",
|
||||
"Show status on the status bar": "הצג סטטוס בשורת המצב",
|
||||
"Show verbose log. Please enable if you report an issue.": "הצג יומן מפורט. אנא הפעל אם אתה מדווח על בעיה.",
|
||||
"Starts synchronisation when a file is saved.": "מתחיל סנכרון כאשר קובץ נשמר.",
|
||||
"Stop reflecting database changes to storage files.": "הפסק לשקף שינויי מסד נתונים לקבצי אחסון.",
|
||||
"Stop watching for file changes.": "הפסק לעקוב אחר שינויי קבצים.",
|
||||
"Suppress notification of hidden files change": "דחוק התראת שינוי קבצים נסתרים",
|
||||
"Suspend database reflecting": "השהה שיקוף מסד נתונים",
|
||||
"Suspend file watching": "השהה מעקב קבצים",
|
||||
"Sync after merging file": "סנכרן לאחר מיזוג קובץ",
|
||||
"Sync automatically after merging files": "סנכרן אוטומטית לאחר מיזוג קבצים",
|
||||
"Sync Mode": "מצב סנכרון",
|
||||
"Sync on Editor Save": "סנכרן בשמירת עורך",
|
||||
"Sync on File Open": "סנכרן בפתיחת קובץ",
|
||||
"Sync on Save": "סנכרן בשמירה",
|
||||
"Sync on Startup": "סנכרן בהפעלה",
|
||||
"Testing only - Resolve file conflicts by syncing newer copies of the file, this can overwrite modified files. Be Warned.": "לבדיקה בלבד - פתור קונפליקטי קבצים על ידי סנכרון עותקים חדשים יותר של הקובץ, פעולה זו עלולה לדרוס קבצים שונו. היה מוזהר.",
|
||||
"The delay for consecutive on-demand fetches": "העיכוב עבור משיכות לפי דרישה עוקבות",
|
||||
"The Hash algorithm for chunk IDs": "אלגוריתם Hash עבור מזהי נתחים",
|
||||
"The maximum duration for which chunks can be incubated within the document. Chunks exceeding this period will graduate to independent chunks.": "משך הזמן המקסימלי שנתחים יכולים להישמר זמנית בתוך המסמך. נתחים שחורגים מתקופה זו יהפכו לנתחים עצמאיים.",
|
||||
"The maximum number of chunks that can be incubated within the document. Chunks exceeding this number will immediately graduate to independent chunks.": "המספר המקסימלי של נתחים שיכולים להישמר זמנית בתוך המסמך. נתחים שחורגים ממספר זה יהפכו מיד לנתחים עצמאיים.",
|
||||
"The maximum total size of chunks that can be incubated within the document. Chunks exceeding this size will immediately graduate to independent chunks.": "הגודל הכולל המקסימלי של נתחים שיכולים להישמר זמנית בתוך המסמך. נתחים שחורגים מגודל זה יהפכו מיד לנתחים עצמאיים.",
|
||||
"The minimum interval for automatic synchronisation on event.": "מרווח הזמן המינימלי לסנכרון אוטומטי על אירוע.",
|
||||
"This passphrase will not be copied to another device. It will be set to `Default` until you configure it again.": "ביטוי סיסמה זה לא יועתק למכשיר אחר. הוא יוגדר ל-`Default` עד שתגדיר אותו שוב.",
|
||||
"TweakMismatchResolve.Action.Dismiss": "דחה",
|
||||
"TweakMismatchResolve.Action.UseConfigured": "השתמש בהגדרות המוגדרות",
|
||||
"TweakMismatchResolve.Action.UseMine": "עדכן הגדרות מסד הנתונים המרוחד",
|
||||
"TweakMismatchResolve.Action.UseMineAcceptIncompatible": "עדכן הגדרות מסד הנתונים המרוחד אך השאר כפי שהוא",
|
||||
"TweakMismatchResolve.Action.UseMineWithRebuild": "עדכן הגדרות מסד הנתונים המרוחד ובנה מחדש",
|
||||
"TweakMismatchResolve.Action.UseRemote": "החל הגדרות על מכשיר זה",
|
||||
"TweakMismatchResolve.Action.UseRemoteAcceptIncompatible": "החל הגדרות על מכשיר זה, אך התעלם מאי-תאימות",
|
||||
"TweakMismatchResolve.Action.UseRemoteWithRebuild": "החל הגדרות על מכשיר זה ומשוך שוב",
|
||||
"TweakMismatchResolve.Message.Main": "\nההגדרות במסד הנתונים המרוחד הן כדלקמן. ערכים אלה הוגדרו על ידי מכשירים אחרים, אשר סונכרנו עם מכשיר זה לפחות פעם אחת.\n\nאם ברצונך להשתמש בהגדרות אלה, אנא בחר %{TweakMismatchResolve.Action.UseConfigured}.\nאם ברצונך לשמור את הגדרות מכשיר זה, אנא בחר %{TweakMismatchResolve.Action.Dismiss}.\n\n${table}\n\n>[!TIP]\n> אם ברצונך לסנכרן את כל ההגדרות, אנא השתמש ב-`סנכרון הגדרות דרך Markdown` לאחר החלת תצורה מינימלית עם תכונה זו.\n\n${additionalMessage}",
|
||||
"TweakMismatchResolve.Message.MainTweakResolving": "התצורה שלך אינה תואמת לזו שבשרת המרוחד.\n\nיש להתאים את התצורות הבאות:\n\n${table}\n\nאנא הודע לנו על החלטתך.\n\n${additionalMessage}",
|
||||
"TweakMismatchResolve.Message.UseRemote.WarningRebuildRecommended": "\n>[!NOTICE]\n> חלק מהשינויים תואמים אך עלולים לצרוך אחסון ותעבורה נוספים. מומלצת בנייה מחדש. עם זאת, ייתכן שבנייה מחדש לא תתבצע כעת, אך תיושם בתחזוקה עתידית.\n> ***ודא שיש לך זמן ושאתה מחובר לרשת יציבה לפני ההחלה!***",
|
||||
"TweakMismatchResolve.Message.UseRemote.WarningRebuildRequired": "\n>[!WARNING]\n> חלק מהתצורות המרוחקות אינן תואמות למסד הנתונים המקומי של מכשיר זה. נדרשת בנייה מחדש של מסד הנתונים המקומי.\n> ***ודא שיש לך זמן ושאתה מחובר לרשת יציבה לפני ההחלה!***",
|
||||
"TweakMismatchResolve.Message.WarningIncompatibleRebuildRecommended": "\n>[!NOTICE]\n> זיהינו שחלק מהערכים שונים, מה שגורם לאי-תאימות בין מסד הנתונים המקומי למרוחד.\n> חלק מהשינויים תואמים אך עלולים לצרוך אחסון ותעבורה נוספים. מומלצת בנייה מחדש. עם זאת, ייתכן שבנייה מחדש לא תתבצע כעת, אך תיושם בתחזוקה עתידית.\n> אם ברצונך לבנות מחדש, הדבר ייקח כמה דקות או יותר. **ודא שבטוח לבצע זאת עכשיו.**",
|
||||
"TweakMismatchResolve.Message.WarningIncompatibleRebuildRequired": "\n>[!WARNING]\n> זיהינו שחלק מהערכים שונים, מה שגורם לאי-תאימות בין מסד הנתונים המקומי למרוחד.\n> נדרשת בנייה מחדש של המסד המקומי או המרוחד. שניהם ייקחו כמה דקות או יותר. **ודא שבטוח לבצע זאת עכשיו.**",
|
||||
"TweakMismatchResolve.Table": "| שם ערך | מכשיר זה | מרוחד |\n|: --- |: ---- :|: ---- :|\n${rows}\n\n",
|
||||
"TweakMismatchResolve.Table.Row": "| ${name} | ${self} | ${remote} |",
|
||||
"TweakMismatchResolve.Title": "זוהתה אי-התאמה בתצורה",
|
||||
"TweakMismatchResolve.Title.TweakResolving": "זוהתה אי-התאמה בתצורה",
|
||||
"TweakMismatchResolve.Title.UseRemoteConfig": "השתמש בתצורה המרוחקת",
|
||||
"Unique name between all synchronized devices. To edit this setting, please disable customization sync once.": "שם ייחודי בין כל המכשירים המסונכרנים. כדי לערוך הגדרה זו, אנא נטרל את סנכרון ההתאמה האישית פעם אחת.",
|
||||
"Use Custom HTTP Handler": "השתמש ב-HTTP Handler מותאם אישית",
|
||||
"Use dynamic iteration count": "השתמש בספירת איטרציות דינמית",
|
||||
"Use Segmented-splitter": "השתמש ב-Segmented-splitter",
|
||||
"Use splitting-limit-capped chunk splitter": "השתמש ב-chunk splitter עם מגבלת פיצול",
|
||||
"Use the trash bin": "השתמש בסל האשפה",
|
||||
"Use timeouts instead of heartbeats": "השתמש בפסק זמן במקום פעימות לב",
|
||||
"username": "שם משתמש",
|
||||
"Username": "שם משתמש",
|
||||
"Verbose Log": "יומן מפורט",
|
||||
"Warning! This will have a serious impact on performance. And the logs will not be synchronised under the default name. Please be careful with logs; they often contain your confidential information.": "אזהרה! לכך תהיה השפעה רצינית על הביצועים. בנוסף, היומנים לא יסונכרנו תחת השם ברירת המחדל. אנא היה זהיר עם יומנים; הם לרוב מכילים מידע סודי שלך.",
|
||||
"When you save a file in the editor, start a sync automatically": "כאשר אתה שומר קובץ בעורך, התחל סנכרון אוטומטית",
|
||||
"Write credentials in the file": "כתוב פרטי גישה בקובץ",
|
||||
"Write logs into the file": "כתוב יומנים לקובץ"
|
||||
}
|
||||
@@ -0,0 +1,836 @@
|
||||
{
|
||||
"(Active)": "(有効)",
|
||||
"(BETA) Always overwrite with a newer file": "(ベータ機能) 常に新しいファイルで上書きする",
|
||||
"(Beta) Use ignore files": "(ベータ機能) 除外ファイル(ignore)の使用",
|
||||
"(Days passed, 0 to disable automatic-deletion)": "(経過日数、0で自動削除を無効化)",
|
||||
"(ex. Read chunks online) If this option is enabled, LiveSync reads chunks online directly instead of replicating them locally. Increasing Custom chunk size is recommended.": "(例: チャンクをオンラインで読む) このオプションを有効にすると、LiveSyncはチャンクをローカルに複製せず、直接オンラインで読み込みます。カスタムチャンクサイズを増やすことをお勧めします。",
|
||||
"(MB) If this is set, changes to local and remote files that are larger than this will be skipped. If the file becomes smaller again, a newer one will be used.": "(MB) この値を設定すると、これより大きいサイズのローカルファイルやリモートファイルの変更はスキップされます。ファイルが再び小さくなった場合は、新しいものが使用されます。",
|
||||
"(Mega chars)": "(メガ文字)",
|
||||
"(Not recommended) If set, credentials will be stored in the file.": "(非推奨) 設定した場合、認証情報がファイルに保存されます。",
|
||||
"(Obsolete) Use an old adapter for compatibility": "(廃止済み)古いアダプターを互換性のために利用",
|
||||
"(RegExp) Empty to sync all files. Set filter as a regular expression to limit synchronising files.": "(正規表現)空欄で全ファイルを同期します。正規表現を指定すると、同期対象のファイルを絞り込めます。",
|
||||
"(RegExp) If this is set, any changes to local and remote files that match this will be skipped.": "(正規表現)設定すると、これに一致するローカル/リモートファイルの変更はすべてスキップされます。",
|
||||
"(Select this if you are already using synchronisation on another computer or smartphone.) This option is suitable if you are new to LiveSync and want to set it up from scratch.": "(別の PC やスマートフォンですでに同期を利用している場合に選択してください。)この端末を既存の LiveSync 構成に追加する場合に適しています。",
|
||||
"(Select this if you are configuring this device as the first synchronisation device.) This option is suitable if you are new to LiveSync and want to set it up from scratch.": "(この端末を最初の同期端末として設定する場合に選択してください。)LiveSync を初めて利用し、最初から設定したい場合に適しています。",
|
||||
"> [!INFO]- The connected devices have been detected as follows:\n${devices}": "> [!INFO]- 次の接続済みデバイスが検出されました:\n${devices}",
|
||||
"A Setup URI is a single string of text containing your server address and authentication details. Using a URI, if one was generated by your server installation script, provides a simple and secure configuration.": "Setup URI は、サーバーアドレスと認証情報を含む 1 本の文字列です。サーバーのインストールスクリプトで生成された URI がある場合は、それを使うと簡単かつ安全に設定できます。",
|
||||
"Access Key": "アクセスキー",
|
||||
"Activate": "有効化",
|
||||
"Add default patterns": "デフォルトパターンを追加",
|
||||
"Add new connection": "接続を追加",
|
||||
"All devices have the same progress value (${progress}). Your devices seem to be synchronised. And be able to proceed with Garbage Collection.": "すべてのデバイスで進捗値が同じです(${progress})。デバイスは同期されているようなので、Garbage Collection を続行できます。",
|
||||
"Always prompt merge conflicts": "常に競合は手動で解決する",
|
||||
"Analyse database usage": "データベース使用状況を分析",
|
||||
"Analyse database usage and generate a TSV report for diagnosis yourself. You can paste the generated report with any spreadsheet you like.": "データベース使用状況を分析し、自分で診断できるよう TSV レポートを生成します。生成したレポートは任意のスプレッドシートに貼り付けて確認できます。",
|
||||
"Apply Latest Change if Conflicting": "競合がある場合は最新の変更を適用する",
|
||||
"Apply preset configuration": "プリセットを適用する",
|
||||
"Ask a passphrase at every launch": "起動のたびにパスフレーズを確認",
|
||||
"Automatically Sync all files when opening Obsidian.": "Obsidian起動時にすべてのファイルを自動同期します。",
|
||||
"Back": "戻る",
|
||||
"Back to non-configured": "未設定状態に戻す",
|
||||
"Batch database update": "データベースのバッチ更新",
|
||||
"Batch limit": "バッチの上限",
|
||||
"Batch size": "バッチ容量",
|
||||
"Batch size of on-demand fetching": "オンデマンド取得のバッチサイズ",
|
||||
"Before v0.17.16, we used an old adapter for the local database. Now the new adapter is preferred. However, it needs local database rebuilding. Please disable this toggle when you have enough time. If leave it enabled, also while fetching from the remote database, you will be asked to disable this.": "v0.17.6までは古いアダプターをローカル用のデータベースに使用していましたが、現在は新しいアダプターを推奨しています。しかし、新しいアダプターに変更するにはローカルデータベースの再構築が必要です。有効のままにしておくと、リモートデータベースからフェッチする場合に、この設定を無効にするかの質問が表示されます。",
|
||||
"Bucket Name": "バケット名",
|
||||
"Cancel": "キャンセル",
|
||||
"Cancel Garbage Collection": "Garbage Collection をキャンセル",
|
||||
"Check and convert non-path-obfuscated files": "パス難読化されていないファイルを確認して変換",
|
||||
"Check for documents that have not been converted to path-obfuscated IDs and convert them if necessary.": "まだパス難読化 ID に変換されていないドキュメントを確認し、必要に応じて変換します。",
|
||||
"cmdConfigSync.showCustomizationSync": "カスタマイズ同期を表示",
|
||||
"Comma separated `.gitignore, .dockerignore`": "カンマ区切り `.gitignore, .dockerignore`",
|
||||
"Compaction in progress on remote database...": "リモートデータベースでコンパクションを実行中です...",
|
||||
"Compaction on remote database completed successfully.": "リモートデータベースでのコンパクションが正常に完了しました。",
|
||||
"Compaction on remote database failed.": "リモートデータベースでのコンパクションに失敗しました。",
|
||||
"Compaction on remote database timed out.": "リモートデータベースでのコンパクションがタイムアウトしました。",
|
||||
"Compare the content of files between on local database and storage. If not matched, you will be asked which one you want to keep.": "ローカルデータベースとストレージ上のファイル内容を比較します。一致しない場合は、どちらを残すか選択できます。",
|
||||
"Compatibility (Conflict Behaviour)": "互換性(競合時の挙動)",
|
||||
"Compatibility (Database structure)": "互換性(データベース構造)",
|
||||
"Compatibility (Internal API Usage)": "互換性(内部 API の利用)",
|
||||
"Compatibility (Metadata)": "互換性(メタデータ)",
|
||||
"Compatibility (Remote Database)": "互換性(リモートデータベース)",
|
||||
"Compatibility (Trouble addressed)": "互換性(対処済みの問題)",
|
||||
"Compute revisions for chunks": "チャンクの修正(リビジョン)を計算",
|
||||
"Configuration Encryption": "設定の暗号化",
|
||||
"Configure": "設定",
|
||||
"Configure And Change Remote": "リモートを設定して切り替える",
|
||||
"Configure E2EE": "E2EE を設定",
|
||||
"Configure Remote": "リモートを設定",
|
||||
"Configure the same server information as your other devices again, manually, very advanced users only.": "他の端末と同じサーバー情報を手動で再入力します。上級者向けの方法です。",
|
||||
"Connection Method": "接続方法",
|
||||
"Continue to CouchDB setup": "CouchDB 設定へ進む",
|
||||
"Continue to Peer-to-Peer only setup": "Peer-to-Peer 専用設定へ進む",
|
||||
"Continue to S3/MinIO/R2 setup": "S3/MinIO/R2 設定へ進む",
|
||||
"Copy": "コピー",
|
||||
"Copy Report to clipboard": "レポートをクリップボードにコピー",
|
||||
"CouchDB Connection Tweak": "CouchDB 接続の調整",
|
||||
"Cross-platform": "クロスプラットフォーム",
|
||||
"Current adapter: {adapter}": "現在のアダプター: {adapter}",
|
||||
"Customization Sync": "カスタマイズ同期",
|
||||
"Customization Sync (Beta3)": "カスタマイズ同期 (Beta3)",
|
||||
"Data Compression": "データ圧縮",
|
||||
"Database Adapter": "データベースアダプター",
|
||||
"Database Name": "データベース名",
|
||||
"Database suffix": "データベースの接尾辞(suffix)",
|
||||
"Default": "デフォルト",
|
||||
"Delay conflict resolution of inactive files": "非アクティブなファイルは、競合解決を先送りする",
|
||||
"Delay merge conflict prompt for inactive files.": "非アクティブなファイルの競合解決のプロンプトの表示を遅延させる",
|
||||
"Delete": "削除",
|
||||
"Delete all customization sync data": "カスタマイズ同期データをすべて削除",
|
||||
"Delete all data on the remote server.": "リモートサーバー上のすべてのデータを削除します。",
|
||||
"Delete local database to reset or uninstall Self-hosted LiveSync": "Self-hosted LiveSync をリセットまたはアンインストールするため、ローカルデータベースを削除",
|
||||
"Delete old metadata of deleted files on start-up": "削除済みデータのメタデータをクリーンナップする",
|
||||
"Delete Remote Configuration": "リモート設定を削除",
|
||||
"Delete remote configuration '{name}'?": "リモート設定 '{name}' を削除しますか?",
|
||||
"desktop": "デスクトップ",
|
||||
"Developer": "開発者",
|
||||
"Device": "デバイス",
|
||||
"Device name": "デバイス名",
|
||||
"Device Setup Method": "端末の設定方法",
|
||||
"dialog.yourLanguageAvailable": "Self-hosted LiveSync に設定されている言語の翻訳がありましたので、%{Display Language}が適用されました。\n\n注意: 全てのメッセージは翻訳されていません。あなたの貢献をお待ちしています!\nGithubにIssueを作成する際には、 %{Display Language} を一旦 %{lang-def} に戻してから、スクショやメッセージ、ログを収集してください。これは設定から変更できます。\n\n便利に使用できれば幸いです。",
|
||||
"dialog.yourLanguageAvailable.btnRevertToDefault": "Keep %{lang-def}",
|
||||
"dialog.yourLanguageAvailable.Title": "翻訳が利用可能です!",
|
||||
"Disables all synchronization and restart.": "すべての同期を無効にして再起動します。",
|
||||
"Disables logging, only shows notifications. Please disable if you report an issue.": "ログを無効にし、通知のみを表示します。Issueを報告する場合は無効にしてください。",
|
||||
"Display Language": "インターフェースの表示言語",
|
||||
"Display name": "表示名",
|
||||
"Do not check configuration mismatch before replication": "サーバーから同期する前に設定の不一致を確認しない",
|
||||
"Do not keep metadata of deleted files.": "削除済みファイルのメタデータを保持しない",
|
||||
"Do not split chunks in the background": "バックグラウンドでチャンクを分割しない",
|
||||
"Do not use internal API": "内部APIを使用しない",
|
||||
"Doctor.Button.DismissThisVersion": "いいえ、次のリリースまで再度確認しない",
|
||||
"Doctor.Button.Fix": "修正する",
|
||||
"Doctor.Button.FixButNoRebuild": "修正するが再構築はしない",
|
||||
"Doctor.Button.No": "いいえ",
|
||||
"Doctor.Button.Skip": "そのままにする",
|
||||
"Doctor.Button.Yes": "はい",
|
||||
"Doctor.Dialogue.Main": "こんにちは!${activateReason}のため、設定診断ツールが起動しました!\n残念ながら、いくつかの設定が潜在的な問題として検出されました。\nご安心ください。一つずつ解決していきましょう。\n\n事前にお知らせしますと、以下の項目についてお尋ねします。\n\n${issues}\n\n始めていいですか?",
|
||||
"Doctor.Dialogue.MainFix": "\n## ${name}\n\n| 現在の値 | 理想値 |\n|:---:|:---:|\n| ${current} | ${ideal} |\n\n**推奨レベル:** ${level}\n\n### 診断理由?\n\n${reason}\n\n${note}\n\nこれを理想値に修正しますか?",
|
||||
"Doctor.Dialogue.Title": "Self-hosted LiveSync 設定診断ツール",
|
||||
"Doctor.Dialogue.TitleAlmostDone": "あと少しです!",
|
||||
"Doctor.Dialogue.TitleFix": "問題の修正 ${current}/${total}",
|
||||
"Doctor.Level.Must": "必須",
|
||||
"Doctor.Level.Necessary": "必要",
|
||||
"Doctor.Level.Optional": "任意",
|
||||
"Doctor.Level.Recommended": "推奨",
|
||||
"Doctor.Message.NoIssues": "問題は検出されませんでした!",
|
||||
"Doctor.Message.RebuildLocalRequired": "注意!これを適用するにはローカルデータベースの再構築が必要です!",
|
||||
"Doctor.Message.RebuildRequired": "注意!これを適用するには再構築が必要です!",
|
||||
"Doctor.Message.SomeSkipped": "いくつかの問題をそのままにしました。次回起動時に再度確認しますか?",
|
||||
"Doctor.RULES.E2EE_V02500.REASON": "エンドツーエンド暗号化がより堅牢で高速になりました。また、以前のE2EEは再コードレビューにより脆弱性が発見されました。できるだけ早く適用することをお勧めします。ご不便をおかけして申し訳ありません。また、この設定は下位互換性がありません。すべての同期デバイスをv0.25.0以降にアップデートする必要があります。再構築は必須ではなく、新しい転送から新しいフォーマットに変換されますが、可能な限り再構築をお勧めします。",
|
||||
"Duplicate": "複製",
|
||||
"Duplicate remote": "リモート設定を複製",
|
||||
"E2EE Configuration": "E2EE 設定",
|
||||
"Edge case addressing (Behaviour)": "特殊なケースへの対応(動作)",
|
||||
"Edge case addressing (Database)": "特殊なケースへの対応(データベース)",
|
||||
"Edge case addressing (Processing)": "特殊なケースへの対応(処理)",
|
||||
"Emergency restart": "緊急再起動",
|
||||
"Enable advanced features": "高度な機能を有効にする",
|
||||
"Enable customization sync": "カスタマイズ同期を有効",
|
||||
"Enable Developers' Debug Tools.": "開発者用デバッグツールを有効にする",
|
||||
"Enable edge case treatment features": "エッジケース対応機能を有効にする",
|
||||
"Enable poweruser features": "エキスパート機能を有効にする",
|
||||
"Enable this if your Object Storage doesn't support CORS": "オブジェクトストレージがCORSをサポートしていない場合は有効にしてください",
|
||||
"Enable this option to automatically apply the most recent change to documents even when it conflicts": "このオプションを有効にすると、競合があっても最新の変更を自動的にドキュメントに適用します",
|
||||
"Encrypt contents on the remote database. If you use the plugin's synchronization feature, enabling this is recommended.": "リモートデータベースの暗号化(オンにすることを推奨)",
|
||||
"Encrypting sensitive configuration items": "機密性の高い設定項目の暗号化",
|
||||
"Encryption phassphrase. If changed, you should overwrite the server's database with the new (encrypted) files.": "暗号化パスフレーズ。変更した場合、新しい(暗号化された)ファイルでサーバーのデータベースを上書きする必要があります。",
|
||||
"End-to-End Encryption": "E2E暗号化",
|
||||
"Endpoint URL": "エンドポイントURL",
|
||||
"Enhance chunk size": "チャンクサイズを最適化する",
|
||||
"Enter Server Information": "サーバー情報の入力",
|
||||
"Enter the server information manually": "サーバー情報を手動で入力する",
|
||||
"Export": "エクスポート",
|
||||
"Failed to connect to remote for compaction.": "リモートデータベースに接続できず、コンパクションを実行できませんでした。",
|
||||
"Failed to connect to remote for compaction. ${reason}": "リモートデータベースに接続できず、コンパクションを実行できませんでした。${reason}",
|
||||
"Failed to start one-shot replication before Garbage Collection. Garbage Collection Cancelled.": "Garbage Collection 前にワンショットレプリケーションを開始できませんでした。Garbage Collection はキャンセルされました。",
|
||||
"Failed to start replication after Garbage Collection.": "Garbage Collection 後にレプリケーションを開始できませんでした。",
|
||||
"Fetch": "取得",
|
||||
"Fetch chunks on demand": "ユーザーのタイミングでチャンクの更新を確認する",
|
||||
"Fetch database with previous behaviour": "以前の動作でデータベースを取得",
|
||||
"Fetch remote settings": "リモート設定を取得",
|
||||
"File to resolve conflict": "競合を解決するファイル",
|
||||
"Filename": "ファイル名",
|
||||
"First, please select the option that best describes your current situation.": "まず、現在の状況に最も近い項目を選択してください。",
|
||||
"Flag and restart": "フラグを立てて再起動",
|
||||
"Forces the file to be synced when opened.": "ファイルを開いたときに強制的に同期します。",
|
||||
"Fresh Start Wipe": "初期化ワイプ",
|
||||
"Garbage Collection cancelled by user.": "ユーザーによって Garbage Collection がキャンセルされました。",
|
||||
"Garbage Collection completed. Deleted chunks: ${deletedChunks} / ${totalChunks}. Time taken: ${seconds} seconds.": "Garbage Collection が完了しました。削除したチャンク: ${deletedChunks} / ${totalChunks}。所要時間: ${seconds} 秒。",
|
||||
"Garbage Collection Confirmation": "Garbage Collection の確認",
|
||||
"Garbage Collection V3 (Beta)": "ガーベジコレクション V3 (Beta)",
|
||||
"Garbage Collection: Found ${unusedChunks} unused chunks to delete.": "Garbage Collection: 削除対象の未使用チャンクが ${unusedChunks} 件見つかりました。",
|
||||
"Garbage Collection: Scanned ${scanned} / ~${docCount}": "Garbage Collection: ${scanned} / ~${docCount} をスキャン済み",
|
||||
"Garbage Collection: Scanning completed. Total chunks: ${totalChunks}, Used chunks: ${usedChunks}": "Garbage Collection: スキャン完了。総チャンク数: ${totalChunks}、使用中チャンク数: ${usedChunks}",
|
||||
"Handle files as Case-Sensitive": "ファイルの大文字・小文字を区別する",
|
||||
"Hidden Files": "隠しファイル",
|
||||
"How to display network errors when the sync server is unreachable.": "同期サーバーに到達できない場合のネットワークエラーの表示方法を設定します。",
|
||||
"How would you like to configure the connection to your server?": "サーバー接続をどのように設定しますか?",
|
||||
"I am adding a device to an existing synchronisation setup": "既存の同期構成に端末を追加します",
|
||||
"I am setting this up for the first time": "はじめて設定します",
|
||||
"I know my server details, let me enter them": "サーバー情報を把握しているので、自分で入力します",
|
||||
"If disabled(toggled), chunks will be split on the UI thread (Previous behaviour).": "無効(トグル)にすると、チャンクはUIスレッドで分割されます(以前の動作)。",
|
||||
"If enabled per-filed efficient customization sync will be used. We need a small migration when enabling this. And all devices should be updated to v0.23.18. Once we enabled this, we lost a compatibility with old versions.": "有効にすると、ファイルごとの効率的なカスタマイズ同期が使用されます。有効化時に小規模な移行が必要です。また、すべてのデバイスをv0.23.18にアップデートする必要があります。一度有効にすると、古いバージョンとの互換性がなくなります。",
|
||||
"If enabled, chunks will be split into no more than 100 items. However, dedupe is slightly weaker.": "有効にすると、チャンクは最大100項目に分割されます。ただし、重複除去の精度は落ちます。",
|
||||
"If enabled, newly created chunks are temporarily kept within the document, and graduated to become independent chunks once stabilised.": "有効にすると、新しく作成されたチャンクはドキュメント内に一時的に保持され、安定したら独立したチャンクになります。",
|
||||
"If enabled, the ⛔ icon will be shown inside the status instead of the file warnings banner. No details will be shown.": "有効にすると、ファイル警告バナーの代わりにステータス内へ ⛔ アイコンのみを表示します。詳細は表示されません。",
|
||||
"If enabled, the file under 1kb will be processed in the UI thread.": "有効にすると、1kb未満のファイルはUIスレッドで処理されます。",
|
||||
"If enabled, the notification of hidden files change will be suppressed.": "有効にすると、隠しファイルの変更通知が抑制されます。",
|
||||
"If this enabled, all chunks will be stored with the revision made from its content. (Previous behaviour)": "有効にすると、すべてのチャンクはコンテンツから作成されたリビジョンと共に保存されます(以前の動作)。",
|
||||
"If this enabled, All files are handled as case-Sensitive (Previous behaviour).": "有効にすると、すべてのファイルは大文字小文字を区別して処理されます(以前の動作)。",
|
||||
"If this enabled, chunks will be split into semantically meaningful segments. Not all platforms support this feature.": "有効にすると、チャンクは意味的に有意なセグメントに分割されます。すべてのプラットフォームがこの機能をサポートしているわけではありません。",
|
||||
"If this is set, changes to local files which are matched by the ignore files will be skipped. Remote changes are determined using local ignore files.": "これを設定すると、除外ファイルに一致するローカルファイルの変更はスキップされます。リモートの変更はローカルの無視ファイルを使用して判定されます。",
|
||||
"If this option is enabled, PouchDB will hold the connection open for 60 seconds, and if no change arrives in that time, close and reopen the socket, instead of holding it open indefinitely. Useful when a proxy limits request duration but can increase resource usage.": "このオプションを有効にすると、PouchDBは接続を60秒間保持し、その間に通信がない場合、一度接続を閉じて再接続します。接続を無期限に保持する代わりにこの動作を行います。プロキシ(Cloudflareなど)がリクエストの持続時間を制限している場合に有用ですが、リソース使用量が増加する可能性があります。",
|
||||
"Ignore and Proceed": "無視して続行",
|
||||
"Ignore files": "除外ファイル",
|
||||
"Ignore patterns": "除外パターン",
|
||||
"Import connection": "接続をインポート",
|
||||
"Incubate Chunks in Document": "ドキュメント内でチャンクを一時保管する",
|
||||
"Initialise all journal history, On the next sync, every item will be received and sent.": "すべてのジャーナル履歴を初期化します。次回の同期時に、すべての項目が再受信・再送信されます。",
|
||||
"Interval (sec)": "秒",
|
||||
"K.exp": "試験機能",
|
||||
"K.long_p2p_sync": "%{title_p2p_sync} (%{exp})",
|
||||
"K.P2P": "%{Peer}-to-%{Peer}",
|
||||
"K.Peer": "Peer",
|
||||
"K.ScanCustomization": "Scan customization",
|
||||
"K.short_p2p_sync": "P2P Sync (%{exp})",
|
||||
"K.title_p2p_sync": "Peer-to-Peer Sync",
|
||||
"Keep empty folder": "空フォルダの維持",
|
||||
"lang_def": "Default",
|
||||
"lang-de": "Deutsche",
|
||||
"lang-def": "%{lang_def}",
|
||||
"lang-es": "Español",
|
||||
"lang-fr": "Français",
|
||||
"lang-ja": "日本語",
|
||||
"lang-ko": "한국어",
|
||||
"lang-ru": "Русский",
|
||||
"lang-zh": "简体中文",
|
||||
"lang-zh-tw": "繁體中文",
|
||||
"Later": "後で",
|
||||
"Limit: {datetime} ({timestamp})": "制限: {datetime} ({timestamp})",
|
||||
"LiveSync could not handle multiple vaults which have same name without different prefix, This should be automatically configured.": "LiveSyncは、接頭辞(プレフィックス)のない同名の保管庫(Vault)を扱うことができません。これは自動的に設定されます。",
|
||||
"liveSyncReplicator.beforeLiveSync": "LiveSyncの前に、まずOneShotを開始します...",
|
||||
"liveSyncReplicator.cantReplicateLowerValue": "これ以上低い値ではレプリケーション(複製)できません。",
|
||||
"liveSyncReplicator.checkingLastSyncPoint": "最後に同期したポイントを探しています。",
|
||||
"liveSyncReplicator.couldNotConnectTo": "${uri} : ${name}に接続できませんでした\n(${db})",
|
||||
"liveSyncReplicator.couldNotConnectToRemoteDb": "リモートデータベースに接続できませんでした: ${d}",
|
||||
"liveSyncReplicator.couldNotConnectToServer": "サーバーに接続できませんでした。",
|
||||
"liveSyncReplicator.couldNotConnectToURI": "${uri}に接続できませんでした: ${dbRet}",
|
||||
"liveSyncReplicator.couldNotMarkResolveRemoteDb": "リモートデータベースを解決済みとしてマークできませんでした。",
|
||||
"liveSyncReplicator.liveSyncBegin": "LiveSyncを開始...",
|
||||
"liveSyncReplicator.lockRemoteDb": "データ破損を防ぐためリモートデータベースをロック",
|
||||
"liveSyncReplicator.markDeviceResolved": "このデバイスを『解決済み』としてマーク。",
|
||||
"liveSyncReplicator.oneShotSyncBegin": "OneShot同期を開始... (${syncMode})",
|
||||
"liveSyncReplicator.remoteDbCorrupted": "リモートデータベースが新しいか破損しています。self-hosted-livesyncの最新バージョンがインストールされていることを確認してください",
|
||||
"liveSyncReplicator.remoteDbCreatedOrConnected": "リモートデータベースが作成または接続されました",
|
||||
"liveSyncReplicator.remoteDbDestroyed": "リモートデータベースが削除されました",
|
||||
"liveSyncReplicator.remoteDbDestroyError": "リモートデータベースの削除中に問題が発生しました:",
|
||||
"liveSyncReplicator.remoteDbMarkedResolved": "リモートデータベースが解決済みとしてマークされました。",
|
||||
"liveSyncReplicator.replicationClosed": "レプリケーション(複製)が終了しました",
|
||||
"liveSyncReplicator.replicationInProgress": "レプリケーション(複製)は既に進行中です",
|
||||
"liveSyncReplicator.retryLowerBatchSize": "より小さいバッチサイズで再試行: ${batch_size}/${batches_limit}",
|
||||
"liveSyncReplicator.unlockRemoteDb": "データ破損を防ぐためリモートデータベースをアンロック",
|
||||
"liveSyncSetting.errorNoSuchSettingItem": "その設定項目は存在しません: ${key}",
|
||||
"liveSyncSetting.originalValue": "元の値: ${value}",
|
||||
"liveSyncSetting.valueShouldBeInRange": "値は ${min} < 値 < ${max} の範囲である必要があります",
|
||||
"liveSyncSettings.btnApply": "適用",
|
||||
"Local Database Tweak": "ローカルデータベースの調整",
|
||||
"Lock": "ロック",
|
||||
"Lock Server": "サーバーをロック",
|
||||
"Lock the remote server to prevent synchronization with other devices.": "他のデバイスとの同期を防ぐため、リモートサーバーをロックします。",
|
||||
"logPane.autoScroll": "自動スクロール",
|
||||
"logPane.logWindowOpened": "ログウィンドウが開かれました",
|
||||
"logPane.pause": "一時停止",
|
||||
"logPane.title": "Self-hosted LiveSync ログ",
|
||||
"logPane.wrap": "折り返し",
|
||||
"Maximum delay for batch database updating": "バッチデータベース更新の最大遅延",
|
||||
"Maximum file size": "最大ファイル容量",
|
||||
"Maximum Incubating Chunk Size": "保持するチャンクの最大サイズ",
|
||||
"Maximum Incubating Chunks": "一時保管する最大チャンク数",
|
||||
"Maximum Incubation Period": "最大保持期限",
|
||||
"MB (0 to disable).": "MB (0で無効化)。",
|
||||
"Memory cache": "メモリキャッシュ",
|
||||
"Memory cache size (by total characters)": "全体でキャッシュする文字数",
|
||||
"Memory cache size (by total items)": "全体のキャッシュサイズ",
|
||||
"Merge": "マージ",
|
||||
"Minimum delay for batch database updating": "バッチデータベース更新の最小遅延",
|
||||
"Minimum interval for syncing": "同期間隔の最小値",
|
||||
"moduleCheckRemoteSize.logCheckingStorageSizes": "ストレージサイズを確認中",
|
||||
"moduleCheckRemoteSize.logCurrentStorageSize": "リモートストレージサイズ: ${measuredSize}",
|
||||
"moduleCheckRemoteSize.logExceededWarning": "リモートストレージサイズ: ${measuredSize} が ${notifySize} を超過しました",
|
||||
"moduleCheckRemoteSize.logThresholdEnlarged": "しきい値が ${size}MB に設定されました",
|
||||
"moduleCheckRemoteSize.msgConfirmRebuild": "これは少し時間がかかる場合があります。本当に今すべてを再構築しますか?",
|
||||
"moduleCheckRemoteSize.msgDatabaseGrowing": "**データベースが大きくなっています!** でも心配しないでください。リモートストレージの容量が不足する前に対応できます。\n\n| 測定サイズ | 設定サイズ |\n| --- | --- |\n| ${estimatedSize} | ${maxSize} |\n\n> [!MORE]-\n> 長年使用している場合、参照されていないチャンク(つまりゴミ)がデータベースに蓄積している可能性があります。そのため、すべてを再構築することをお勧めします。おそらくかなり小さくなるでしょう。\n>\n> 単純に保管庫の容量が増えている場合は、事前にファイルを整理してからすべてを再構築するのが良いでしょう。Self-hosted LiveSyncは処理速度を上げるため、削除しても実際のデータを削除しません。これはおおまかに[documentation](https://github.com/vrtmrz/obsidian-livesync/blob/main/docs/tech_info.md)に記載されています。\n>\n> 増加を気にしない場合は、通知制限を100MB単位で増やすことができます。これは自分のサーバーで実行している場合に適しています。ただし、定期的にすべてを再構築する方が良いでしょう。\n>\n\n> [!WARNING]\n> すべてを再構築する場合は、すべてのデバイスが同期されていることを確認してください。もちろん、プラグインは可能な限り解決しようと努力はしますけど...\n",
|
||||
"moduleCheckRemoteSize.msgSetDBCapacity": "リモートストレージの容量が不足する前に対策を講じるため、**最大データベース容量の警告**を設定できます。\nこれを有効にしますか?\n\n> [!MORE]-\n> - 0: ストレージサイズについて警告しない。\n> 自宅サーバーなど、リモートストレージに十分な容量がある場合に推奨されます。ストレージサイズを確認し、手動で再構築できます。\n> - 800: リモートストレージサイズが800MBを超えたら警告。\n> 1GB制限のfly.ioやIBM Cloudantを使用している場合に推奨されます。\n> - 2000: リモートストレージサイズが2GBを超えたら警告。\n\n制限に達した場合、段階的に制限を増やすよう求められます。\n",
|
||||
"moduleCheckRemoteSize.option2GB": "2GB (標準)",
|
||||
"moduleCheckRemoteSize.option800MB": "800MB (Cloudant, fly.io)",
|
||||
"moduleCheckRemoteSize.optionAskMeLater": "後で確認する",
|
||||
"moduleCheckRemoteSize.optionDismiss": "無視",
|
||||
"moduleCheckRemoteSize.optionIncreaseLimit": "${newMax}MBに設定",
|
||||
"moduleCheckRemoteSize.optionNoWarn": "いいえ、警告しないでください",
|
||||
"moduleCheckRemoteSize.optionRebuildAll": "今すべてを再構築",
|
||||
"moduleCheckRemoteSize.titleDatabaseSizeLimitExceeded": "リモートストレージサイズが制限を超過しました",
|
||||
"moduleCheckRemoteSize.titleDatabaseSizeNotify": "データベースサイズ通知の設定",
|
||||
"moduleInputUIObsidian.defaultTitleConfirmation": "確認",
|
||||
"moduleInputUIObsidian.defaultTitleSelect": "選択",
|
||||
"moduleInputUIObsidian.optionNo": "いいえ",
|
||||
"moduleInputUIObsidian.optionYes": "はい",
|
||||
"moduleLiveSyncMain.logAdditionalSafetyScan": "追加の安全スキャン中...",
|
||||
"moduleLiveSyncMain.logLoadingPlugin": "プラグインをロード中...",
|
||||
"moduleLiveSyncMain.logPluginInitCancelled": "プラグインの初期化がモジュールによってキャンセルされました",
|
||||
"moduleLiveSyncMain.logPluginVersion": "Self-hosted LiveSync v${manifestVersion} ${packageVersion}",
|
||||
"moduleLiveSyncMain.logReadChangelog": "LiveSyncが更新されました。変更履歴をお読みください!",
|
||||
"moduleLiveSyncMain.logSafetyScanCompleted": "追加の安全スキャンが完了しました",
|
||||
"moduleLiveSyncMain.logSafetyScanFailed": "モジュールで追加の安全スキャンが失敗しました",
|
||||
"moduleLiveSyncMain.logUnloadingPlugin": "プラグインをアンロード中...",
|
||||
"moduleLiveSyncMain.logVersionUpdate": "LiveSyncが更新されました。互換性のない更新の場合、すべての自動同期が一時的に無効化されています。有効にする前に、すべてのデバイスが最新の状態であることを確認してください。",
|
||||
"moduleLiveSyncMain.msgScramEnabled": "Self-hosted LiveSyncは一部のイベントを無視するように設定されています。これは正しいですか?\n\n| タイプ | ステータス | メモ |\n|:---:|:---:|---|\n| ストレージイベント | ${fileWatchingStatus} | すべての変更が無視されます |\n| データベースイベント | ${parseReplicationStatus} | すべての同期された変更が延期されます |\n\nこれらを再開してObsidianを再起動しますか?\n\n> [!DETAILS]-\n> これらのフラグは、プラグインが再構築またはフェッチ中に設定されます。プロセスが異常終了した場合、意図せず保持されることがあります。\n> 不明な場合は、これらのプロセスを再実行してみてください。必ず保管庫をバックアップしてください。\n",
|
||||
"moduleLiveSyncMain.optionKeepLiveSyncDisabled": "LiveSyncを無効のままにする",
|
||||
"moduleLiveSyncMain.optionResumeAndRestart": "再開してObsidianを再起動",
|
||||
"moduleLiveSyncMain.titleScramEnabled": "緊急停止(Scram)が有効",
|
||||
"moduleLocalDatabase.logWaitingForReady": "しばらくお待ちください...",
|
||||
"moduleLog.showLog": "ログを表示",
|
||||
"moduleMigration.docUri": "https://github.com/vrtmrz/obsidian-livesync/blob/main/README.md#how-to-use",
|
||||
"moduleMigration.fix0256.buttons.checkItLater": "後で確認する",
|
||||
"moduleMigration.fix0256.buttons.DismissForever": "修正済み、今後確認しない",
|
||||
"moduleMigration.fix0256.buttons.fix": "修正",
|
||||
"moduleMigration.fix0256.message": "最近のバグ(v0.25.6)により、一部のファイルが同期データベースに正しく保存されていない可能性があります。\nファイルをスキャンし、修正が必要なものが見つかりました。\n\n**修正準備ができたファイル:**\n\n${files}\n\nこれらのファイルはストレージ上の元ファイルとサイズが一致しており、復元可能です。\n「修正」ボタンをクリックしてデータベースを修正できます。\n\n${messageUnrecoverable}\n\n再実行したい場合は、Hatchから実行できます。\n",
|
||||
"moduleMigration.fix0256.messageUnrecoverable": "**このデバイスで修正できないファイル:**\n\n${filesNotRecoverable}\n\nこれらのファイルはメタデータに不整合があり、このデバイスでは修正できません(ほとんどの場合、どちらが正しいか判定できません)。\n復元するには、他のデバイスで確認するか、バックアップから手動で復元してください。\n",
|
||||
"moduleMigration.fix0256.title": "破損ファイルが検出されました",
|
||||
"moduleMigration.insecureChunkExist.buttons.fetch": "リモートを既に再構築した。リモートからフェッチ",
|
||||
"moduleMigration.insecureChunkExist.buttons.later": "後で行う",
|
||||
"moduleMigration.insecureChunkExist.buttons.rebuild": "すべてを再構築",
|
||||
"moduleMigration.insecureChunkExist.laterMessage": "できるだけ早く対処することを強くお勧めします!",
|
||||
"moduleMigration.insecureChunkExist.message": "一部のチャンクが安全に保存されておらず、データベースで暗号化されていません。\n**この問題を修正するにはデータベースを再構築してください**。\n\nリモートデータベースがSSLで設定されていない、または安全性の低い認証情報を使用している場合、**機密データが漏洩するリスクがあります**。\n\n注意: すべてのデバイスでSelf-hosted LiveSync v0.25.6以降にアップグレードし、必ず保管庫をバックアップしてください。\n注意2: すべてを再構築とフェッチは時間とトラフィックを消費します。オフピーク時間に安定したネットワークで実行してください。\n",
|
||||
"moduleMigration.insecureChunkExist.title": "安全でないチャンクが見つかりました!",
|
||||
"moduleMigration.logBulkSendCorrupted": "チャンクの一括送信が有効にされていましたが、この機能に問題がありました。ご不便をおかけして申し訳ありません。自動的に無効化されました。",
|
||||
"moduleMigration.logFetchRemoteTweakFailed": "リモートの調整値の取得に失敗しました",
|
||||
"moduleMigration.logLocalDatabaseNotReady": "何か問題が発生しました!ローカルデータベースが準備できていません",
|
||||
"moduleMigration.logMigratedSameBehaviour": "以前と同じ動作でdb:${current}に移行しました",
|
||||
"moduleMigration.logMigrationFailed": "${old}から${current}への移行が失敗またはキャンセルされました",
|
||||
"moduleMigration.logRedflag2CreationFail": "redflag2の作成に失敗しました",
|
||||
"moduleMigration.logRemoteTweakUnavailable": "リモートの調整値を取得できませんでした",
|
||||
"moduleMigration.logSetupCancelled": "セットアップがキャンセルされました。Self-hosted LiveSyncはセットアップを待っています!",
|
||||
"moduleMigration.msgFetchRemoteAgain": "ご存知のとおり、self-hosted LiveSyncはデフォルトの動作とデータベース構造を変更しました。\n\nご協力のおかげで、リモートデータベースはすでに移行されているようです。おめでとうございます!\n\nしかし、もう少し必要です。このデバイスの設定はリモートデータベースと互換性がありません。リモートデータベースを再度フェッチする必要があります。今すぐリモートから再フェッチしますか?\n\n___注意: 設定が変更され、データベースが再フェッチされるまで同期できません。___\n___注意2: チャンクは完全に不変なので、メタデータと差分のみフェッチできます。___",
|
||||
"moduleMigration.msgInitialSetup": "このデバイスは**まだセットアップされていません**。セットアッププロセスをご案内します。\n\nすべてのダイアログの内容はクリップボードにコピーできます。後で参照する必要があれば、Obsidianのノートに貼り付けてください。翻訳ツールを使ってお使いの言語に翻訳することもできます。\n\nまず、**セットアップURI**をお持ちですか?\n\n注意: それが何か分からない場合は、[documentation](${URI_DOC})を参照してください。",
|
||||
"moduleMigration.msgRecommendSetupUri": "セットアップURIを生成して使用することを強くお勧めします。\nこれについて知識がない場合は、[documentation](${URI_DOC})を参照してください(重要です)。\n\n手動でセットアップしますか?",
|
||||
"moduleMigration.msgSinceV02321": "v0.23.21以降、self-hosted LiveSyncはデフォルトの動作とデータベース構造を変更しました。以下の変更が行われました:\n\n1. **ファイル名の大文字小文字の区別**\n ファイル名の処理が大文字小文字を区別しなくなりました。これは、ファイル名の大文字小文字を効果的に管理しないLinuxとiOS以外のほとんどのプラットフォームにとって有益な変更です。\n (これらの環境では、同じ名前で大文字小文字が異なるファイルに対して警告が表示されます)。\n\n2. **チャンクのリビジョン処理**\n チャンクは不変であり、リビジョンを固定できます。この変更により、ファイル保存のパフォーマンスが向上します。\n\n___しかし、これらの変更を有効にするには、リモートとローカルの両方のデータベースを再構築する必要があります。このプロセスは数分かかります。時間に余裕があるときに行うことをお勧めします。___\n\n- 以前の動作を維持したい場合は、`${KEEP}`を使用してこのプロセスをスキップできます。\n- 時間がない場合は、`${DISMISS}`を選択してください。後で再度確認されます。\n- 別のデバイスでデータベースを再構築した場合は、`${DISMISS}`を選択して再度同期してみてください。差異が検出されたため、再度確認されます。",
|
||||
"moduleMigration.optionAdjustRemote": "リモートに合わせる",
|
||||
"moduleMigration.optionDecideLater": "後で決める",
|
||||
"moduleMigration.optionEnableBoth": "両方を有効にする",
|
||||
"moduleMigration.optionEnableFilenameCaseInsensitive": "#1のみ有効にする",
|
||||
"moduleMigration.optionEnableFixedRevisionForChunks": "#2のみ有効にする",
|
||||
"moduleMigration.optionHaveSetupUri": "はい、持っています",
|
||||
"moduleMigration.optionKeepPreviousBehaviour": "以前の動作を維持",
|
||||
"moduleMigration.optionManualSetup": "すべて手動でセットアップ",
|
||||
"moduleMigration.optionNoAskAgain": "いいえ、後で確認する",
|
||||
"moduleMigration.optionNoSetupUri": "いいえ、持っていません",
|
||||
"moduleMigration.optionRemindNextLaunch": "次回起動時にリマインド",
|
||||
"moduleMigration.optionSetupViaP2P": "%{short_p2p_sync}を使ってセットアップ",
|
||||
"moduleMigration.optionSetupWizard": "セットアップウィザードへ",
|
||||
"moduleMigration.optionYesFetchAgain": "はい、再フェッチする",
|
||||
"moduleMigration.titleCaseSensitivity": "大文字小文字の区別",
|
||||
"moduleMigration.titleRecommendSetupUri": "セットアップURIの使用を推奨",
|
||||
"moduleMigration.titleWelcome": "Self-hosted LiveSyncへようこそ",
|
||||
"moduleObsidianMenu.replicate": "レプリケート",
|
||||
"More actions": "その他の操作",
|
||||
"Move remotely deleted files to the trash, instead of deleting.": "リモートで削除されたファイルを削除せずにゴミ箱に移動する。",
|
||||
"Network warning style": "ネットワーク警告の表示方式",
|
||||
"New Remote": "新しいリモート",
|
||||
"No connected device information found. Cancelling Garbage Collection.": "接続済みデバイスの情報が見つかりませんでした。Garbage Collection をキャンセルします。",
|
||||
"No limit configured": "制限は設定されていません",
|
||||
"No, please take me back": "いいえ、前に戻ります",
|
||||
"Node ID": "ノード ID",
|
||||
"Node Information Missing": "ノード情報がありません",
|
||||
"Non-Synchronising files": "同期しないファイル",
|
||||
"Normal Files": "通常ファイル",
|
||||
"Not all messages have been translated. And, please revert to \"Default\" when reporting errors.": "すべてのメッセージが翻訳されているわけではありません。また、Issue報告の際にはいったん\"Default\"に戻してください",
|
||||
"Notify all setting files": "すべての設定を通知",
|
||||
"Notify customized": "カスタマイズが行われたら通知する",
|
||||
"Notify when other device has newly customized.": "別の端末がカスタマイズを行なったら通知する",
|
||||
"Notify when the estimated remote storage size exceeds on start up": "起動時に予想リモートストレージサイズを超えたら通知",
|
||||
"Number of batches to process at a time. Defaults to 40. Minimum is 2. This along with batch size controls how many docs are kept in memory at a time.": "1度に処理するバッチの数。デフォルトは40、最小は2。この数値は、どれだけの容量の書類がメモリに保存されるかも定義します。",
|
||||
"Number of changes to sync at a time. Defaults to 50. Minimum is 2.": "一度に同期する変更の数。デフォルトは50、最小は2。",
|
||||
"Obsidian version": "Obsidian バージョン",
|
||||
"obsidianLiveSyncSettingTab.btnApply": "適用",
|
||||
"obsidianLiveSyncSettingTab.btnCheck": "確認",
|
||||
"obsidianLiveSyncSettingTab.btnCopy": "コピー",
|
||||
"obsidianLiveSyncSettingTab.btnDisable": "無効化",
|
||||
"obsidianLiveSyncSettingTab.btnDiscard": "破棄",
|
||||
"obsidianLiveSyncSettingTab.btnEnable": "有効化",
|
||||
"obsidianLiveSyncSettingTab.btnFix": "修正",
|
||||
"obsidianLiveSyncSettingTab.btnGotItAndUpdated": "理解しました、更新しました。",
|
||||
"obsidianLiveSyncSettingTab.btnNext": "次へ",
|
||||
"obsidianLiveSyncSettingTab.btnStart": "開始",
|
||||
"obsidianLiveSyncSettingTab.btnTest": "テスト",
|
||||
"obsidianLiveSyncSettingTab.btnUse": "使用",
|
||||
"obsidianLiveSyncSettingTab.buttonFetch": "フェッチ",
|
||||
"obsidianLiveSyncSettingTab.buttonNext": "次へ",
|
||||
"obsidianLiveSyncSettingTab.defaultLanguage": "デフォルト",
|
||||
"obsidianLiveSyncSettingTab.descConnectSetupURI": "セットアップURIを使用してSelf-hosted LiveSyncをセットアップする推奨方法です。",
|
||||
"obsidianLiveSyncSettingTab.descCopySetupURI": "新しいデバイスのセットアップにおすすめ!",
|
||||
"obsidianLiveSyncSettingTab.descEnableLiveSync": "上記の2つのオプションのいずれかを設定するか、すべての設定を手動で完了した後にのみ有効にしてください。",
|
||||
"obsidianLiveSyncSettingTab.descFetchConfigFromRemote": "既に設定済みのリモートサーバーから必要な設定を取得します。",
|
||||
"obsidianLiveSyncSettingTab.descManualSetup": "推奨しませんが、セットアップURIがない場合に便利です",
|
||||
"obsidianLiveSyncSettingTab.descTestDatabaseConnection": "データベース接続を開きます。リモートデータベースが見つからず、データベースを作成する権限がある場合は、データベースが作成されます。",
|
||||
"obsidianLiveSyncSettingTab.descValidateDatabaseConfig": "データベース設定の潜在的な問題を確認し、修正します。",
|
||||
"obsidianLiveSyncSettingTab.errAccessForbidden": "❗ アクセスが禁止されています。",
|
||||
"obsidianLiveSyncSettingTab.errCannotContinueTest": "テストを続行できませんでした。",
|
||||
"obsidianLiveSyncSettingTab.errCorsCredentials": "❗ cors.credentialsが不正です",
|
||||
"obsidianLiveSyncSettingTab.errCorsNotAllowingCredentials": "❗ CORSが認証情報を許可していません",
|
||||
"obsidianLiveSyncSettingTab.errCorsOrigins": "❗ cors.originsが不正です",
|
||||
"obsidianLiveSyncSettingTab.errEnableCors": "❗ httpd.enable_corsが不正です",
|
||||
"obsidianLiveSyncSettingTab.errEnableCorsChttpd": "❗ chttpd.enable_corsが不正です",
|
||||
"obsidianLiveSyncSettingTab.errMaxDocumentSize": "❗ couchdb.max_document_sizeが低すぎます",
|
||||
"obsidianLiveSyncSettingTab.errMaxRequestSize": "❗ chttpd.max_http_request_sizeが低すぎます",
|
||||
"obsidianLiveSyncSettingTab.errMissingWwwAuth": "❗ httpd.WWW-Authenticateが不足しています",
|
||||
"obsidianLiveSyncSettingTab.errRequireValidUser": "❗ chttpd.require_valid_userが不正です。",
|
||||
"obsidianLiveSyncSettingTab.errRequireValidUserAuth": "❗ chttpd_auth.require_valid_userが不正です。",
|
||||
"obsidianLiveSyncSettingTab.labelDisabled": "⏹️ : 無効",
|
||||
"obsidianLiveSyncSettingTab.labelEnabled": "🔁 : 有効",
|
||||
"obsidianLiveSyncSettingTab.levelAdvanced": " (上級)",
|
||||
"obsidianLiveSyncSettingTab.levelEdgeCase": " (エッジケース)",
|
||||
"obsidianLiveSyncSettingTab.levelPowerUser": " (エキスパート)",
|
||||
"obsidianLiveSyncSettingTab.linkOpenInBrowser": "ブラウザで開く",
|
||||
"obsidianLiveSyncSettingTab.linkPageTop": "ページトップ",
|
||||
"obsidianLiveSyncSettingTab.linkTipsAndTroubleshooting": "ヒントとトラブルシューティング",
|
||||
"obsidianLiveSyncSettingTab.linkTroubleshooting": "/docs/troubleshooting.md",
|
||||
"obsidianLiveSyncSettingTab.logCannotUseCloudant": "この機能はIBM Cloudantでは使用できません。",
|
||||
"obsidianLiveSyncSettingTab.logCheckingConfigDone": "設定の確認が完了しました",
|
||||
"obsidianLiveSyncSettingTab.logCheckingConfigFailed": "設定の確認に失敗しました",
|
||||
"obsidianLiveSyncSettingTab.logCheckingDbConfig": "データベース設定を確認中",
|
||||
"obsidianLiveSyncSettingTab.logCheckPassphraseFailed": "エラー: リモートサーバーとのパスフレーズ確認に失敗しました:\n${db}。",
|
||||
"obsidianLiveSyncSettingTab.logConfiguredDisabled": "設定された同期モード: 無効",
|
||||
"obsidianLiveSyncSettingTab.logConfiguredLiveSync": "設定された同期モード: LiveSync",
|
||||
"obsidianLiveSyncSettingTab.logConfiguredPeriodic": "設定された同期モード: 定期",
|
||||
"obsidianLiveSyncSettingTab.logCouchDbConfigFail": "CouchDB設定: ${title} 失敗",
|
||||
"obsidianLiveSyncSettingTab.logCouchDbConfigSet": "CouchDB設定: ${title} -> ${key}を${value}に設定",
|
||||
"obsidianLiveSyncSettingTab.logCouchDbConfigUpdated": "CouchDB設定: ${title} 正常に更新されました",
|
||||
"obsidianLiveSyncSettingTab.logDatabaseConnected": "データベースに接続しました",
|
||||
"obsidianLiveSyncSettingTab.logEncryptionNoPassphrase": "パスフレーズなしでは暗号化を有効にできません",
|
||||
"obsidianLiveSyncSettingTab.logEncryptionNoSupport": "お使いのデバイスは暗号化をサポートしていません。",
|
||||
"obsidianLiveSyncSettingTab.logErrorOccurred": "エラーが発生しました!!",
|
||||
"obsidianLiveSyncSettingTab.logEstimatedSize": "推定サイズ: ${size}",
|
||||
"obsidianLiveSyncSettingTab.logPassphraseInvalid": "パスフレーズが無効です、修正してください。",
|
||||
"obsidianLiveSyncSettingTab.logPassphraseNotCompatible": "エラー: パスフレーズがリモートサーバーと適合しません!再度確認してください!",
|
||||
"obsidianLiveSyncSettingTab.logRebuildNote": "同期が無効になりました。必要に応じてフェッチして再有効化してください。",
|
||||
"obsidianLiveSyncSettingTab.logSelectAnyPreset": "プリセットを選択してください。",
|
||||
"obsidianLiveSyncSettingTab.msgAreYouSureProceed": "本当に続行しますか?",
|
||||
"obsidianLiveSyncSettingTab.msgChangesNeedToBeApplied": "変更を適用する必要があります!",
|
||||
"obsidianLiveSyncSettingTab.msgConfigCheck": "--設定確認--",
|
||||
"obsidianLiveSyncSettingTab.msgConfigCheckFailed": "設定確認に失敗しました。それでも続行しますか?",
|
||||
"obsidianLiveSyncSettingTab.msgConnectionCheck": "--接続確認--",
|
||||
"obsidianLiveSyncSettingTab.msgConnectionProxyNote": "設定確認後も接続確認に問題がある場合は、リバースプロキシの設定を確認してください。",
|
||||
"obsidianLiveSyncSettingTab.msgCurrentOrigin": "現在のオリジン: ${origin}",
|
||||
"obsidianLiveSyncSettingTab.msgDiscardConfirmation": "本当に既存の設定とデータベースを破棄しますか?",
|
||||
"obsidianLiveSyncSettingTab.msgDone": "--完了--",
|
||||
"obsidianLiveSyncSettingTab.msgEnableCors": "httpd.enable_corsを設定",
|
||||
"obsidianLiveSyncSettingTab.msgEnableCorsChttpd": "chttpd.enable_corsを設定",
|
||||
"obsidianLiveSyncSettingTab.msgEnableEncryptionRecommendation": "エンドツーエンド暗号化とパス難読化を有効にすることをお勧めします。暗号化なしで続行してもよろしいですか?",
|
||||
"obsidianLiveSyncSettingTab.msgFetchConfigFromRemote": "リモートサーバーから設定を取得しますか?",
|
||||
"obsidianLiveSyncSettingTab.msgGenerateSetupURI": "完了!他のデバイスをセットアップするためのセットアップURIを生成しますか?",
|
||||
"obsidianLiveSyncSettingTab.msgIfConfigNotPersistent": "サーバー設定が永続的でない場合(例: Dockerで実行中)、ここの値は変更される可能性があります。接続できるようになったら、サーバーのlocal.iniの設定を更新してください。",
|
||||
"obsidianLiveSyncSettingTab.msgInvalidPassphrase": "暗号化パスフレーズが無効かもしれません。続行してもよろしいですか?",
|
||||
"obsidianLiveSyncSettingTab.msgNewVersionNote": "アップグレード通知でここに来ましたか?バージョン履歴を確認してください。納得したらボタンをクリックしてください。新しい更新があると再度確認されます。",
|
||||
"obsidianLiveSyncSettingTab.msgNonHTTPSInfo": "非HTTPS URIとして設定されています。モバイルデバイスでは動作しない可能性があります。",
|
||||
"obsidianLiveSyncSettingTab.msgNonHTTPSWarning": "非HTTPS URIに接続できません。設定を更新して再試行してください。",
|
||||
"obsidianLiveSyncSettingTab.msgNotice": "---お知らせ---",
|
||||
"obsidianLiveSyncSettingTab.msgObjectStorageWarning": "警告: この機能は開発中です。以下の点にご注意ください:\n- 追記専用アーキテクチャ。ストレージを縮小するには再構築が必要です。\n- やや不安定です。\n- 初回同期時、すべての履歴がリモートから転送されます。データ制限と速度に注意してください。\n- ライブ同期は差分のみです。\n\n問題があれば、またはこの機能についてアイデアがあれば、GitHubにIssueを作成してください。\nご協力に感謝します。",
|
||||
"obsidianLiveSyncSettingTab.msgOriginCheck": "オリジン確認: ${org}",
|
||||
"obsidianLiveSyncSettingTab.msgRebuildRequired": "変更を適用するにはデータベースの再構築が必要です。変更を適用する方法を選択してください。\n\n<details>\n<summary>凡例</summary>\n\n| 記号 | 意味 |\n|: ------ :| ------- |\n| ⇔ | 最新 |\n| ⇄ | 同期してバランスを取る |\n| ⇐,⇒ | 上書きするため転送 |\n| ⇠,⇢ | 反対側から上書きするため転送 |\n\n</details>\n\n## ${OPTION_REBUILD_BOTH}\n概要: 📄 ⇒¹ 💻 ⇒² 🛰️ ⇢ⁿ 💻 ⇄ⁿ⁺¹ 📄\nこのデバイスの既存ファイルを使用してローカルとリモートの両方のデータベースを再構築します。\n他のデバイスはロックアウトされ、フェッチが必要です。\n## ${OPTION_FETCH}\n概要: 📄 ⇄² 💻 ⇐¹ 🛰️ ⇔ 💻 ⇔ 📄\nローカルデータベースを初期化し、リモートデータベースから取得したデータを使用して再構築します。\nリモートデータベースを再構築した場合も含まれます。\n## ${OPTION_ONLY_SETTING}\n設定のみを保存します。**注意: データ破損につながる可能性があります**。通常、データベースの再構築が必要です。",
|
||||
"obsidianLiveSyncSettingTab.msgSelectAndApplyPreset": "ウィザードを完了するには、プリセット項目を選択して適用してください。",
|
||||
"obsidianLiveSyncSettingTab.msgSetCorsCredentials": "cors.credentialsを設定",
|
||||
"obsidianLiveSyncSettingTab.msgSetCorsOrigins": "cors.originsを設定",
|
||||
"obsidianLiveSyncSettingTab.msgSetMaxDocSize": "couchdb.max_document_sizeを設定",
|
||||
"obsidianLiveSyncSettingTab.msgSetMaxRequestSize": "chttpd.max_http_request_sizeを設定",
|
||||
"obsidianLiveSyncSettingTab.msgSetRequireValidUser": "chttpd.require_valid_user = trueを設定",
|
||||
"obsidianLiveSyncSettingTab.msgSetRequireValidUserAuth": "chttpd_auth.require_valid_user = trueを設定",
|
||||
"obsidianLiveSyncSettingTab.msgSettingModified": "設定\"${setting}\"が別のデバイスから変更されました。{HERE}をクリックして設定を再読み込みしてください。変更を無視するには他の場所をクリックしてください。",
|
||||
"obsidianLiveSyncSettingTab.msgSettingsUnchangeableDuringSync": "これらの設定は同期中に変更できません。ロックを解除するには、\"同期設定\"ですべての同期を無効にしてください。",
|
||||
"obsidianLiveSyncSettingTab.msgSetWwwAuth": "httpd.WWW-Authenticateを設定",
|
||||
"obsidianLiveSyncSettingTab.nameApplySettings": "設定を適用",
|
||||
"obsidianLiveSyncSettingTab.nameConnectSetupURI": "セットアップURIで接続",
|
||||
"obsidianLiveSyncSettingTab.nameCopySetupURI": "現在の設定をセットアップURIにコピー",
|
||||
"obsidianLiveSyncSettingTab.nameDisableHiddenFileSync": "隠しファイル同期を無効化",
|
||||
"obsidianLiveSyncSettingTab.nameDiscardSettings": "既存の設定とデータベースを破棄",
|
||||
"obsidianLiveSyncSettingTab.nameEnableHiddenFileSync": "隠しファイル同期を有効化",
|
||||
"obsidianLiveSyncSettingTab.nameEnableLiveSync": "LiveSyncを有効化",
|
||||
"obsidianLiveSyncSettingTab.nameHiddenFileSynchronization": "隠しファイル同期",
|
||||
"obsidianLiveSyncSettingTab.nameManualSetup": "手動セットアップ",
|
||||
"obsidianLiveSyncSettingTab.nameTestConnection": "接続テスト",
|
||||
"obsidianLiveSyncSettingTab.nameTestDatabaseConnection": "データベース接続テスト",
|
||||
"obsidianLiveSyncSettingTab.nameValidateDatabaseConfig": "データベース設定を検証",
|
||||
"obsidianLiveSyncSettingTab.okAdminPrivileges": "✔ 管理者権限があります。",
|
||||
"obsidianLiveSyncSettingTab.okCorsCredentials": "✔ cors.credentialsは正常です。",
|
||||
"obsidianLiveSyncSettingTab.okCorsCredentialsForOrigin": "CORS認証情報OK",
|
||||
"obsidianLiveSyncSettingTab.okCorsOriginMatched": "✔ CORSオリジンOK",
|
||||
"obsidianLiveSyncSettingTab.okCorsOrigins": "✔ cors.originsは正常です。",
|
||||
"obsidianLiveSyncSettingTab.okEnableCors": "✔ httpd.enable_corsは正常です。",
|
||||
"obsidianLiveSyncSettingTab.okEnableCorsChttpd": "✔ chttpd.enable_corsは正常です。",
|
||||
"obsidianLiveSyncSettingTab.okMaxDocumentSize": "✔ couchdb.max_document_sizeは正常です。",
|
||||
"obsidianLiveSyncSettingTab.okMaxRequestSize": "✔ chttpd.max_http_request_sizeは正常です。",
|
||||
"obsidianLiveSyncSettingTab.okRequireValidUser": "✔ chttpd.require_valid_userは正常です。",
|
||||
"obsidianLiveSyncSettingTab.okRequireValidUserAuth": "✔ chttpd_auth.require_valid_userは正常です。",
|
||||
"obsidianLiveSyncSettingTab.okWwwAuth": "✔ httpd.WWW-Authenticateは正常です。",
|
||||
"obsidianLiveSyncSettingTab.optionApply": "適用",
|
||||
"obsidianLiveSyncSettingTab.optionCancel": "キャンセル",
|
||||
"obsidianLiveSyncSettingTab.optionCouchDB": "CouchDB",
|
||||
"obsidianLiveSyncSettingTab.optionDisableAllAutomatic": "すべての自動を無効化",
|
||||
"obsidianLiveSyncSettingTab.optionFetchFromRemote": "リモートからフェッチ",
|
||||
"obsidianLiveSyncSettingTab.optionHere": "ここ",
|
||||
"obsidianLiveSyncSettingTab.optionLiveSync": "LiveSync 同期",
|
||||
"obsidianLiveSyncSettingTab.optionMinioS3R2": "Minio,S3,R2",
|
||||
"obsidianLiveSyncSettingTab.optionOkReadEverything": "OK、すべて読みました。",
|
||||
"obsidianLiveSyncSettingTab.optionOnEvents": "イベント時",
|
||||
"obsidianLiveSyncSettingTab.optionPeriodicAndEvents": "定期およびイベント時",
|
||||
"obsidianLiveSyncSettingTab.optionPeriodicWithBatch": "バッチ付き定期",
|
||||
"obsidianLiveSyncSettingTab.optionRebuildBoth": "このデバイスから両方を再構築",
|
||||
"obsidianLiveSyncSettingTab.optionSaveOnlySettings": "(危険) 設定のみ保存",
|
||||
"obsidianLiveSyncSettingTab.panelChangeLog": "変更履歴",
|
||||
"obsidianLiveSyncSettingTab.panelGeneralSettings": "一般設定",
|
||||
"obsidianLiveSyncSettingTab.panelPrivacyEncryption": "プライバシーと暗号化",
|
||||
"obsidianLiveSyncSettingTab.panelRemoteConfiguration": "リモート設定",
|
||||
"obsidianLiveSyncSettingTab.panelSetup": "セットアップ",
|
||||
"obsidianLiveSyncSettingTab.serverVersion": "サーバー情報: ${info}",
|
||||
"obsidianLiveSyncSettingTab.titleActiveRemoteServer": "アクティブなリモートサーバー",
|
||||
"obsidianLiveSyncSettingTab.titleAppearance": "外観",
|
||||
"obsidianLiveSyncSettingTab.titleConflictResolution": "競合解決",
|
||||
"obsidianLiveSyncSettingTab.titleCongratulations": "おめでとうございます!",
|
||||
"obsidianLiveSyncSettingTab.titleCouchDB": "CouchDB サーバー",
|
||||
"obsidianLiveSyncSettingTab.titleDeletionPropagation": "削除の伝播",
|
||||
"obsidianLiveSyncSettingTab.titleEncryptionNotEnabled": "暗号化が有効になっていません",
|
||||
"obsidianLiveSyncSettingTab.titleEncryptionPassphraseInvalid": "暗号化パスフレーズが無効です",
|
||||
"obsidianLiveSyncSettingTab.titleExtraFeatures": "追加および上級機能を有効化",
|
||||
"obsidianLiveSyncSettingTab.titleFetchConfig": "設定を取得",
|
||||
"obsidianLiveSyncSettingTab.titleFetchConfigFromRemote": "リモートサーバーから設定を取得",
|
||||
"obsidianLiveSyncSettingTab.titleFetchSettings": "設定の取得",
|
||||
"obsidianLiveSyncSettingTab.titleHiddenFiles": "隠しファイル",
|
||||
"obsidianLiveSyncSettingTab.titleLogging": "ログ",
|
||||
"obsidianLiveSyncSettingTab.titleMinioS3R2": "MinIO、S3、R2",
|
||||
"obsidianLiveSyncSettingTab.titleNotification": "通知",
|
||||
"obsidianLiveSyncSettingTab.titleOnlineTips": "オンラインヒント",
|
||||
"obsidianLiveSyncSettingTab.titleQuickSetup": "クイックセットアップ",
|
||||
"obsidianLiveSyncSettingTab.titleRebuildRequired": "再構築が必要",
|
||||
"obsidianLiveSyncSettingTab.titleRemoteConfigCheckFailed": "リモート設定の確認に失敗",
|
||||
"obsidianLiveSyncSettingTab.titleRemoteServer": "リモートサーバー",
|
||||
"obsidianLiveSyncSettingTab.titleReset": "リセット",
|
||||
"obsidianLiveSyncSettingTab.titleSetupOtherDevices": "他のデバイスのセットアップ",
|
||||
"obsidianLiveSyncSettingTab.titleSynchronizationMethod": "同期方法",
|
||||
"obsidianLiveSyncSettingTab.titleSynchronizationPreset": "同期プリセット",
|
||||
"obsidianLiveSyncSettingTab.titleSyncSettings": "同期設定",
|
||||
"obsidianLiveSyncSettingTab.titleSyncSettingsViaMarkdown": "Markdown経由で設定を同期",
|
||||
"obsidianLiveSyncSettingTab.titleUpdateThinning": "更新の間引き",
|
||||
"obsidianLiveSyncSettingTab.warnCorsOriginUnmatched": "⚠ CORS Originが一致しません ${from}->${to}",
|
||||
"obsidianLiveSyncSettingTab.warnNoAdmin": "⚠ 管理者権限がありません。",
|
||||
"Ok": "OK",
|
||||
"Old Algorithm": "旧アルゴリズム",
|
||||
"Older fallback (Slow, W/O WebAssembly)": "旧フォールバック (低速、WebAssembly なし)",
|
||||
"Open": "開く",
|
||||
"Open the dialog": "ダイアログを開く",
|
||||
"Overwrite": "上書き",
|
||||
"Overwrite patterns": "上書きパターン",
|
||||
"Overwrite remote": "リモートを上書き",
|
||||
"Overwrite remote with local DB and passphrase.": "ローカル DB とパスフレーズでリモートを上書きします。",
|
||||
"Overwrite Server Data with This Device's Files": "このデバイスのファイルでサーバーデータを上書き",
|
||||
"P2P.AskPassphraseForDecrypt": "リモートピアから設定が共有されました。設定を復号するためのパスフレーズを入力してください。",
|
||||
"P2P.AskPassphraseForShare": "リモートピアからこのデバイスの設定が要求されました。設定を共有するためのパスフレーズを入力してください。このダイアログをキャンセルすることでリクエストを無視できます。",
|
||||
"P2P.DisabledButNeed": "%{title_p2p_sync}は無効になっています。本当に有効にしますか?",
|
||||
"P2P.FailedToOpen": "シグナリングサーバーへのP2P接続を開けませんでした。",
|
||||
"P2P.NoAutoSyncPeers": "自動同期ピアが見つかりません。%{long_p2p_sync}ペインでピアを設定してください。",
|
||||
"P2P.NoKnownPeers": "ピアが検出されていません。他のピアからの接続を待機中...",
|
||||
"P2P.Note.description": "このレプリケーターは、ピアツーピア接続を使用して、Vaultを他のデバイスと同期することができます。クラウドサービスを使用せずに、他のデバイスとVaultを同期することができます。\nこのレプリケーターはTrysteroをベースにしています。デバイス間の接続を確立するためにシグナリングサーバーを使用します。シグナリングサーバーはデバイス間で接続情報を交換するために使用されます。私たちのデータを知ったり保存したりすることはありません(または、そうあるべきではありません)。\n\nシグナリングサーバーは誰でもホストできます。これは単なるNostrリレーです。簡便さとレプリケーターの動作確認のために、vrtmrzがシグナリングサーバーのインスタンスをホストしています。vrtmrzが提供する実験用サーバーを使用することも、他のサーバーを使用することもできます。\n\nなお、シグナリングサーバーが私たちのデータを保存しなくても、一部のデバイスの接続情報を見ることができます。これにご注意ください。また、他の人が提供するサーバーを使用する場合は注意してください。",
|
||||
"P2P.Note.important_note": "ピアツーピアレプリケーターの実験的実装",
|
||||
"P2P.Note.important_note_sub": "この機能はまだ実験段階です。期待通りに動作しない可能性があることにご注意ください。さらに、バグ、セキュリティの問題、その他の問題がある可能性があります。この機能は自己責任でご使用ください。この機能の開発にご協力ください。",
|
||||
"P2P.Note.Summary": "この機能について(重要な注意事項を含む、一度お読みください)",
|
||||
"P2P.NotEnabled": "%{title_p2p_sync}が有効になっていません。新しい接続を開くことができません。",
|
||||
"P2P.P2PReplication": "%{P2P}レプリケーション(複製)",
|
||||
"P2P.PaneTitle": "%{long_p2p_sync}",
|
||||
"P2P.ReplicatorInstanceMissing": "P2P同期レプリケーターが見つかりません。設定または有効化されていない可能性があります。",
|
||||
"P2P.SeemsOffline": "ピア${name}はオフラインのようです。スキップしました。",
|
||||
"P2P.SyncAlreadyRunning": "P2P同期はすでに実行中です。",
|
||||
"P2P.SyncCompleted": "P2P同期が完了しました。",
|
||||
"P2P.SyncStartedWith": "${name}とのP2P同期を開始しました。",
|
||||
"paneMaintenance.markDeviceResolvedAfterBackup": "バックアップ後にこのデバイスを解決済みにする",
|
||||
"paneMaintenance.remoteLockedAndDeviceNotAccepted": "リモートデータベースはロックされており、このデバイスはまだ承認されていません。",
|
||||
"paneMaintenance.remoteLockedResolvedDevice": "リモートデータベースはロックされていますが、このデバイスはすでに承認されています。",
|
||||
"paneMaintenance.unlockDatabaseReady": "データベースのロックを解除",
|
||||
"Passphrase": "パスフレーズ",
|
||||
"Passphrase of sensitive configuration items": "機密性の高い設定項目にパスフレーズを使用",
|
||||
"password": "パスワード",
|
||||
"Password": "パスワード",
|
||||
"Paste a connection string": "接続文字列を貼り付ける",
|
||||
"Paste the Setup URI generated from one of your active devices.": "稼働中の端末で生成した Setup URI を貼り付けてください。",
|
||||
"Path Obfuscation": "パスの難読化",
|
||||
"Patterns to match files for overwriting instead of merging": "マージではなく上書きするファイルを判定するパターン",
|
||||
"Patterns to match files for syncing": "同期対象ファイルを判定するパターン",
|
||||
"Peer-to-Peer only": "Peer-to-Peer のみ",
|
||||
"Peer-to-Peer Synchronisation": "ピアツーピア同期",
|
||||
"Per-file-saved customization sync": "ファイルごとのカスタマイズ同期",
|
||||
"Perform": "実行",
|
||||
"Perform cleanup": "クリーンアップを実行",
|
||||
"Perform Garbage Collection": "ガーベジコレクションを実行",
|
||||
"Perform Garbage Collection to remove unused chunks and reduce database size.": "未使用のチャンクを削除し、データベースサイズを削減するためにガーベジコレクションを実行します。",
|
||||
"Periodic Sync interval": "定時同期の感覚",
|
||||
"Pick a file to resolve conflict": "競合を解決するファイルを選択",
|
||||
"Please disable 'Read chunks online' in settings to use Garbage Collection.": "Garbage Collection を使うには、設定で「Read chunks online」を無効にしてください。",
|
||||
"Please enable 'Compute revisions for chunks' in settings to use Garbage Collection.": "Garbage Collection を使うには、設定で「Compute revisions for chunks」を有効にしてください。",
|
||||
"Please select 'Cancel' explicitly to cancel this operation.": "この操作を中止するには、明示的に「キャンセル」を選択してください。",
|
||||
"Please select a method to import the settings from another device.": "別の端末から設定を取り込む方法を選択してください。",
|
||||
"Please select an option to proceed": "続行するには項目を選択してください",
|
||||
"Please select the type of server to which you are connecting.": "接続するサーバーの種類を選択してください。",
|
||||
"Please set device name to identify this device. This name should be unique among your devices. While not configured, we cannot enable this feature.": "このデバイスを識別するためのデバイス名を設定してください。この名前は各デバイスで一意である必要があります。設定されるまで、この機能は有効にできません。",
|
||||
"Please set this device name": "このデバイス名を設定してください",
|
||||
"Plug-in version": "プラグインバージョン",
|
||||
"Prepare the 'report' to create an issue": "Issue 作成用の「レポート」を準備",
|
||||
"Presets": "プリセット",
|
||||
"Proceed Garbage Collection": "Garbage Collection を続行",
|
||||
"Proceed with Setup URI": "Setup URI で続行",
|
||||
"Proceeding with Garbage Collection, ignoring missing nodes.": "不足しているノードを無視して Garbage Collection を続行します。",
|
||||
"Proceeding with Garbage Collection.": "Garbage Collection を実行します。",
|
||||
"Process small files in the foreground": "小さいファイルを最前面で処理",
|
||||
"Progress": "進捗",
|
||||
"PureJS fallback (Fast, W/O WebAssembly)": "PureJS フォールバック (高速、WebAssembly なし)",
|
||||
"Purge all download/upload cache.": "ダウンロード/アップロードキャッシュをすべて削除します。",
|
||||
"Purge all journal counter": "すべてのジャーナルカウンターを削除",
|
||||
"Rebuild local and remote database with local files.": "ローカルファイルを使ってローカルとリモートのデータベースを再構築します。",
|
||||
"Rebuilding Operations (Remote Only)": "再構築操作 (リモートのみ)",
|
||||
"Recreate all": "すべて再作成",
|
||||
"Recreate missing chunks for all files": "すべてのファイルの不足チャンクを再作成",
|
||||
"RedFlag.Fetch.Method.Desc": "どのようにフェッチしますか?\n- %{RedFlag.Fetch.Method.FetchSafer}\n **低トラフィック**, **高CPU負荷**, **低リスク**\n 推奨条件...\n - ファイルの整合性に不安がある\n - ファイル数がそれほど多くない\n- %{RedFlag.Fetch.Method.FetchSmoother}\n **低トラフィック**, **中程CPU負荷**, **低~中リスク**\n 推奨条件...\n - ファイルがおそらく整合している\n - ファイル数が多い\n- %{RedFlag.Fetch.Method.FetchTraditional}\n **高トラフィック**, **低CPU負荷**, **低~中リスク**\n\n>[!INFO]- 詳細\n> ## %{RedFlag.Fetch.Method.FetchSafer}\n> **低トラフィック**, **高CPU負荷**, **低リスク**\n> このオプションは、リモートからデータをフェッチする前に、既存のローカルファイルを使用してローカルデータベースを作成します。\n> ローカルとリモートの両方に一致するファイルがある場合、差分のみが転送されます。\n> ただし、両方の場所に存在するファイルは最初は競合ファイルとして処理されます。実際に競合していなければ自動的に解決されますが、この処理には時間がかかる場合があります。\n> これは一般的に最も安全な方法で、データ損失のリスクを最小限に抑えます。\n> ## %{RedFlag.Fetch.Method.FetchSmoother}\n> **低トラフィック**, **中程CPU負荷**, **低~中リスク**(操作による)\n> このオプションは、最初にローカルファイルからデータベース用のチャンクを作成し、その後データをフェッチします。そのため、ローカルにないチャンクのみが転送されます。ただし、すべてのメタデータはリモートから取得されます。\n> ローカルファイルは起動時にこのメタデータと比較されます。新しいと判断されたコンテンツ(更新日時による)が古いものを上書きします。この結果はリモートデータベースに同期されます。\n> ローカルファイルが本当に最新のタイムスタンプであれば一般的に安全です。ただし、ファイルのタイムスタンプが新しくてもコンテンツが古い場合(初期の`welcome.md`など)は問題が発生する可能性があります。\n> これは\"%{RedFlag.Fetch.Method.FetchSafer}\"よりCPU使用量が少なく高速ですが、注意しないとデータ損失につながる可能性があります。\n> ## %{RedFlag.Fetch.Method.FetchTraditional}\n> **高トラフィック**, **低CPU負荷**, **低~中リスク**(操作による)\n> すべてのデータがリモートからフェッチされます。\n> %{RedFlag.Fetch.Method.FetchSmoother}と似ていますが、すべてのチャンクがリモートからフェッチされます。\n> これは最も従来のフェッチ方法で、通常最もネットワークトラフィックと時間を消費します。'%{RedFlag.Fetch.Method.FetchSmoother}'オプションと同様のリモートファイル上書きのリスクがあります。\n> ただし、最も歴史があり簡単なアプローチであるため、最も安定した方法と見なされることが多いです。",
|
||||
"RedFlag.Fetch.Method.FetchSafer": "フェッチ前にローカルデータベースを作成",
|
||||
"RedFlag.Fetch.Method.FetchSmoother": "フェッチ前にローカルファイルチャンクを作成",
|
||||
"RedFlag.Fetch.Method.FetchTraditional": "リモートからすべてをフェッチ",
|
||||
"RedFlag.Fetch.Method.Title": "どのようにフェッチしますか?",
|
||||
"RedFlag.FetchRemoteConfig.Buttons.Cancel": "いいえ、ローカル設定を使用",
|
||||
"RedFlag.FetchRemoteConfig.Buttons.Fetch": "はい、リモート設定を取得して適用",
|
||||
"RedFlag.FetchRemoteConfig.Message": "リモートに保存された設定を取得して、このデバイスに適用しますか?",
|
||||
"RedFlag.FetchRemoteConfig.Title": "リモート設定の取得",
|
||||
"Reduces storage space by discarding all non-latest revisions. This requires the same amount of free space on the remote server and the local client.": "最新版以外のすべてのリビジョンを破棄して、使用容量を削減します。実行には、リモートサーバーとローカルクライアントの両方に同程度の空き容量が必要です。",
|
||||
"Reducing the frequency with which on-disk changes are reflected into the DB": "ローカルでの変更がデータベースに反映される頻度を下げる(所定の回数まとめて同期する、逐一反映しない)",
|
||||
"Region": "リージョン",
|
||||
"Remediation": "是正",
|
||||
"Remediation Setting Changed": "是正設定が変更されました",
|
||||
"Remote Database Tweak (In sunset)": "リモートデータベースの調整 (廃止予定)",
|
||||
"Remote Databases": "リモートデータベース",
|
||||
"Remote name": "リモート名",
|
||||
"Remote server type": "リモートの種別",
|
||||
"Remote Type": "同期方式",
|
||||
"Rename": "名前を変更",
|
||||
"Replicator.Dialogue.Locked.Action.Dismiss": "再確認のためキャンセル",
|
||||
"Replicator.Dialogue.Locked.Action.Fetch": "このデバイスの同期をリセット",
|
||||
"Replicator.Dialogue.Locked.Action.Unlock": "リモートデータベースのロックを解除",
|
||||
"Replicator.Dialogue.Locked.Message": "リモートデータベースがロックされています。これはいずれかの端末での再構築が原因です。\nデータベースの破損を避けるため、このデバイスは接続を保留するよう求められています。\n\n3つのオプションがあります:\n\n- %{Replicator.Dialogue.Locked.Action.Fetch}\n 最も推奨される信頼性の高い方法です。ローカルデータベースを一度破棄し、リモートデータベースからすべての同期情報を再取得します。ほとんどの場合、これは安全に実行できます。ただし、時間がかかり、安定したネットワークで実行する必要があります。\n- %{Replicator.Dialogue.Locked.Action.Unlock}\n この方法は、他のレプリケーション(複製)方法ですでに確実に同期されている場合のみ使用できます。単に同じファイルがあるという意味ではありません。確信がない場合は避けてください。\n- %{Replicator.Dialogue.Locked.Action.Dismiss}\n 操作をキャンセルします。次回のリクエスト時に再度確認されます。\n",
|
||||
"Replicator.Dialogue.Locked.Message.Fetch": "全フェッチがスケジュールされました。プラグインは実行のために再起動されます。",
|
||||
"Replicator.Dialogue.Locked.Message.Unlocked": "リモートデータベースのロックが解除されました。操作を再試行してください。",
|
||||
"Replicator.Dialogue.Locked.Title": "ロック中",
|
||||
"Replicator.Message.Cleaned": "データベースのクリーナップ中です。レプリケーション(複製)はキャンセルされました。",
|
||||
"Replicator.Message.InitialiseFatalError": "レプリケーターが利用できません。これは致命的なエラーです。",
|
||||
"Replicator.Message.Pending": "ファイルイベントが保留中です。レプリケーション(複製)はキャンセルされました。",
|
||||
"Replicator.Message.SomeModuleFailed": "一部のモジュールの失敗によりレプリケーション(複製)がキャンセルされました。",
|
||||
"Replicator.Message.VersionUpFlash": "更新が検出されました。設定ダイアログを開いて変更ログを確認してください。レプリケーション(複製)はキャンセルされました。",
|
||||
"Requires restart of Obsidian": "Obsidianの再起動が必要です",
|
||||
"Requires restart of Obsidian.": "Obsidianの再起動が必要です。",
|
||||
"Rerun Onboarding Wizard": "オンボーディングウィザードを再実行",
|
||||
"Rerun the onboarding wizard to set up Self-hosted LiveSync again.": "オンボーディングウィザードを再実行して、Self-hosted LiveSync をもう一度設定します。",
|
||||
"Rerun Wizard": "ウィザードを再実行",
|
||||
"Resend": "再送信",
|
||||
"Resend all chunks to the remote.": "すべてのチャンクをリモートへ再送信します。",
|
||||
"Reset": "リセット",
|
||||
"Reset all": "すべてリセット",
|
||||
"Reset all journal counter": "すべてのジャーナルカウンターをリセット",
|
||||
"Reset journal received history": "ジャーナル受信履歴をリセット",
|
||||
"Reset journal sent history": "ジャーナル送信履歴をリセット",
|
||||
"Reset notification threshold and check the remote database usage": "通知しきい値をリセットしてリモートデータベース使用量を確認",
|
||||
"Reset received": "受信履歴をリセット",
|
||||
"Reset sent history": "送信履歴をリセット",
|
||||
"Reset Synchronisation information": "同期情報をリセット",
|
||||
"Reset Synchronisation on This Device": "このデバイスの同期状態をリセット",
|
||||
"Reset the remote storage size threshold and check the remote storage size again.": "リモートストレージ容量のしきい値をリセットし、リモートストレージ容量を再確認します。",
|
||||
"Resolve All": "すべて解決",
|
||||
"Resolve all conflicted files": "競合しているすべてのファイルを解決",
|
||||
"Resolve All conflicted files by the newer one": "競合したすべてのファイルを新しい方で解決",
|
||||
"Resolve all conflicted files by the newer one. Caution: This will overwrite the older one, and cannot resurrect the overwritten one.": "競合しているすべてのファイルを新しい方の内容で解決します。注意:古い方は上書きされ、復元できません。",
|
||||
"Restart Now": "今すぐ再起動",
|
||||
"Restore or reconstruct local database from remote.": "リモートからローカルデータベースを復元または再構築します。",
|
||||
"Run Doctor": "診断を実行",
|
||||
"S3/MinIO/R2 Object Storage": "S3/MinIO/R2 オブジェクトストレージ",
|
||||
"Save settings to a markdown file. You will be notified when new settings arrive. You can set different files by the platform.": "Markdownファイルに設定を保存します。新しい設定が到着すると通知されます。プラットフォームごとに異なるファイルを設定できます。",
|
||||
"Saving will be performed forcefully after this number of seconds.": "この秒数後に強制的に保存されます。",
|
||||
"Scan a QR Code (Recommended for mobile)": "QR コードをスキャンする(モバイル推奨)",
|
||||
"Scan changes on customization sync": "カスタマイズされた同期時に、変更をスキャンする",
|
||||
"Scan customization automatically": "自動的にカスタマイズをスキャン",
|
||||
"Scan customization before replicating.": "レプリケーション(複製)前に、カスタマイズをスキャン",
|
||||
"Scan customization every 1 minute.": "カスタマイズのスキャンを1分ごとに行う",
|
||||
"Scan customization periodically": "定期的にカスタマイズをスキャン",
|
||||
"Scan for Broken files": "破損ファイルをスキャン",
|
||||
"Scan for hidden files before replication": "レプリケーション(複製)開始前に、隠しファイルのスキャンを行う",
|
||||
"Scan hidden files periodically": "定期的に隠しファイルのスキャンを行う",
|
||||
"Scan the QR code displayed on an active device using this device's camera.": "稼働中の端末に表示された QR コードを、この端末のカメラで読み取ってください。",
|
||||
"Schedule and Restart": "予約して再起動",
|
||||
"Scram Switches": "緊急対応スイッチ",
|
||||
"Scram!": "緊急停止",
|
||||
"Seconds, 0 to disable": "秒数、0で無効",
|
||||
"Seconds. Saving to the local database will be delayed until this value after we stop typing or saving.": "秒。入力や保存を停止してからこの値の間、ローカルデータベースへの保存が遅延されます。",
|
||||
"Secret Key": "シークレットキー",
|
||||
"Select the database adapter to use.": "使用するデータベースアダプターを選択します。",
|
||||
"Send": "送信",
|
||||
"Send chunks": "チャンクを送信",
|
||||
"Server URI": "URI",
|
||||
"Setting.GenerateKeyPair.Desc": "キーペアを生成しました!\n\n注意: このキーペアは再度表示されません。安全な場所に保存してください。紛失した場合は、新しいキーペアを生成する必要があります。\n注意2: 公開鍵はspki形式、秘密鍵はpkcs8形式です。利便性のため、公開鍵の改行は`\\n`に変換されています。\n注意3: 公開鍵はリモートデータベースに、秘密鍵はローカルデバイスに設定してください。\n\n>[!FOR YOUR EYES ONLY]-\n> <div class=\"sls-keypair\">\n>\n> ### 公開鍵\n> ```\n${public_key}\n> ```\n>\n> ### 秘密鍵\n> ```\n${private_key}\n> ```\n>\n> </div>\n\n>[!Both for copying]-\n>\n> <div class=\"sls-keypair\">\n>\n> ```\n${public_key}\n${private_key}\n> ```\n>\n> </div>\n\n",
|
||||
"Setting.GenerateKeyPair.Title": "新しいキーペアが生成されました!",
|
||||
"Setting.TroubleShooting": "トラブルシューティング",
|
||||
"Setting.TroubleShooting.Doctor": "設定診断ツール",
|
||||
"Setting.TroubleShooting.Doctor.Desc": "最適でない設定を検出します。(マイグレーション時と同じ)",
|
||||
"Setting.TroubleShooting.ScanBrokenFiles": "破損ファイルのスキャン",
|
||||
"Setting.TroubleShooting.ScanBrokenFiles.Desc": "データベースに正しく保存されていないファイルをスキャンします。",
|
||||
"SettingTab.Message.AskRebuild": "変更にはリモートデータベースからのフェッチが必要です。続行しますか?",
|
||||
"Setup URI dialog cancelled.": "Setup URI ダイアログはキャンセルされました。",
|
||||
"Setup.Apply.Buttons.ApplyAndFetch": "適用してフェッチ",
|
||||
"Setup.Apply.Buttons.ApplyAndMerge": "適用してマージ",
|
||||
"Setup.Apply.Buttons.ApplyAndRebuild": "適用して再構築",
|
||||
"Setup.Apply.Buttons.Cancel": "破棄してキャンセル",
|
||||
"Setup.Apply.Buttons.OnlyApply": "適用のみ",
|
||||
"Setup.Apply.Message": "新しい設定の準備ができました。適用に進みましょう。\n適用方法はいくつかあります:\n\n- 適用してフェッチ\n このデバイスを新しいクライアントとして設定します。適用後、リモートサーバーから同期します。\n- 適用してマージ\n 既にファイルがあるデバイスで設定します。ローカルファイルを処理し、差分を転送します。競合が発生する場合があります。\n- 適用して再構築\n ローカルファイルを使用してリモートを再構築します。これは通常、サーバーが破損した場合や最初からやり直したい場合に行います。\n 他のデバイスはロックされ、再フェッチが必要になります。\n- 適用のみ\n 適用のみを行います。再構築が必要な場合、競合が発生する可能性があります。",
|
||||
"Setup.Apply.Title": "${method}からの新しい設定を適用",
|
||||
"Setup.Apply.WarningRebuildRecommended": "注意: 設定の調整後、再構築が必要と判断されました。インポートのみは推奨されません。",
|
||||
"Setup.Doctor.Buttons.No": "いいえ、URIの設定をそのまま使用",
|
||||
"Setup.Doctor.Buttons.Yes": "はい、診断ツールに相談する",
|
||||
"Setup.Doctor.Message": "Self-hosted LiveSyncは徐々に歴史が長くなり、一部の推奨設定が変更されています。\n\nセットアップは、これを行う非常に良い機会です。\n\nインポートされた設定が最新の状態と比較して最適かどうかを確認するために、診断ツールを実行しますか?",
|
||||
"Setup.Doctor.Title": "診断ツールに相談しますか?",
|
||||
"Setup.FetchRemoteConf.Buttons.Fetch": "はい、設定を取得",
|
||||
"Setup.FetchRemoteConf.Buttons.Skip": "いいえ、URIの設定を使用",
|
||||
"Setup.FetchRemoteConf.Message": "既に他のデバイスと同期したことがある場合、リモートデータベースには同期されたデバイス間の適切な設定値が保存されています。プラグインは堅牢な設定のためにそれらを取得したいと考えています。\n\nただし、1つ確認が必要です。現在、ネットワークに安全にアクセスして設定を取得できる状況ですか?\n\n注意: リモートデータベースがSSL証明書でホストされており、ネットワークが侵害されていなければ、ほとんどの場合安全に実行できます。",
|
||||
"Setup.FetchRemoteConf.Title": "リモートデータベースから設定を取得しますか?",
|
||||
"Setup.QRCode": "設定を転送するためのQRコードを生成しました。スマートフォンや他のデバイスでQRコードをスキャンしてください。\n注意: QRコードは暗号化されていないため、開く際は注意してください。\n\n>[!FOR YOUR EYES ONLY]-\n> <div class=\"sls-qr\">${qr_image}</div>",
|
||||
"Setup.RemoteE2EE.AdvancedTitle": "詳細設定",
|
||||
"Setup.RemoteE2EE.AlgorithmWarning": "暗号化アルゴリズムを変更すると、別のアルゴリズムで暗号化された既存データにはアクセスできなくなります。すべての端末で同じアルゴリズムを使うよう設定し、データにアクセスできる状態を維持してください。",
|
||||
"Setup.RemoteE2EE.ButtonCancel": "キャンセル",
|
||||
"Setup.RemoteE2EE.ButtonProceed": "進む",
|
||||
"Setup.RemoteE2EE.DefaultAlgorithmDesc": "ほとんどの場合は、既定のアルゴリズム(${algorithm})をそのまま使用してください。この設定が必要になるのは、既存の Vault が別の形式で暗号化されている場合のみです。",
|
||||
"Setup.RemoteE2EE.Guidance": "エンドツーエンド暗号化の設定を行ってください。",
|
||||
"Setup.RemoteE2EE.LabelEncrypt": "エンドツーエンド暗号化",
|
||||
"Setup.RemoteE2EE.LabelEncryptionAlgorithm": "暗号化アルゴリズム",
|
||||
"Setup.RemoteE2EE.LabelObfuscateProperties": "プロパティを難読化",
|
||||
"Setup.RemoteE2EE.MultiDestinationWarning": "複数の同期先へ接続する場合でも、この設定は同一である必要があります。",
|
||||
"Setup.RemoteE2EE.ObfuscatePropertiesDesc": "プロパティ(ファイルパス、サイズ、作成日時、更新日時など)を難読化すると、リモートサーバー上のファイルやフォルダーの構造や名前を特定しにくくできるため、追加の保護層になります。これによりプライバシーが守られ、権限のない第三者がデータに関する情報を推測しにくくなります。",
|
||||
"Setup.RemoteE2EE.PassphraseValidationLine1": "エンドツーエンド暗号化のパスフレーズは、実際に同期処理が開始されるまで検証されない点にご注意ください。これはデータを保護するためのセキュリティ対策です。",
|
||||
"Setup.RemoteE2EE.PassphraseValidationLine2": "そのため、サーバー情報を手動で設定する際は細心の注意を払ってください。誤ったパスフレーズを入力すると、サーバー上のデータが破損します。これは意図された動作ですので、あらかじめご理解ください。",
|
||||
"Setup.RemoteE2EE.PlaceholderPassphrase": "パスフレーズを入力してください",
|
||||
"Setup.RemoteE2EE.StronglyRecommendedLine1": "エンドツーエンド暗号化を有効にすると、データはリモートサーバーへ送信される前にこの端末上で暗号化されます。つまり、たとえ誰かがサーバーへアクセスできても、パスフレーズがなければデータを読むことはできません。他の端末でデータを復号する際にも必要になるため、パスフレーズは必ず覚えておいてください。",
|
||||
"Setup.RemoteE2EE.StronglyRecommendedLine2": "また、Peer-to-Peer 同期を使用している場合でも、将来ほかの方式へ切り替えてリモートサーバーへ接続するときには、この設定が使われます。",
|
||||
"Setup.RemoteE2EE.StronglyRecommendedTitle": "強く推奨",
|
||||
"Setup.RemoteE2EE.Title": "エンドツーエンド暗号化",
|
||||
"Setup.ScanQRCode.ButtonClose": "このダイアログを閉じる",
|
||||
"Setup.ScanQRCode.Guidance": "既存の端末から設定を取り込むには、以下の手順に従ってください。",
|
||||
"Setup.ScanQRCode.Step1": "この端末では、この Vault を開いたままにしてください。",
|
||||
"Setup.ScanQRCode.Step2": "元の端末で Obsidian を開きます。",
|
||||
"Setup.ScanQRCode.Step3": "元の端末でコマンドパレットから「設定を QR コードとして表示」を実行します。",
|
||||
"Setup.ScanQRCode.Step4": "この端末でカメラアプリに切り替えるか QR コードスキャナーを使って、表示された QR コードを読み取ってください。",
|
||||
"Setup.ScanQRCode.Title": "QRコードをスキャン",
|
||||
"Setup.ShowQRCode": "QRコードを表示",
|
||||
"Setup.ShowQRCode.Desc": "設定を転送するためのQRコードを表示します。",
|
||||
"Setup.UseSetupURI.ButtonCancel": "キャンセル",
|
||||
"Setup.UseSetupURI.ButtonProceed": "設定をテストして続行",
|
||||
"Setup.UseSetupURI.ErrorFailedToParse": "Setup URI を解析できませんでした。URI とパスフレーズを確認してください。",
|
||||
"Setup.UseSetupURI.ErrorPassphraseRequired": "Vault のパスフレーズを入力してください。",
|
||||
"Setup.UseSetupURI.GuidanceLine1": "サーバーのセットアップ時または別の端末で生成された Setup URI と、Vault のパスフレーズを入力してください。",
|
||||
"Setup.UseSetupURI.GuidanceLine2": "コマンドパレットで「設定を新しい Setup URI としてコピー」を実行すると、新しい Setup URI を生成できます。",
|
||||
"Setup.UseSetupURI.InvalidInfo": "Setup URI が無効です。内容を確認して再試行してください。",
|
||||
"Setup.UseSetupURI.LabelPassphrase": "Vault のパスフレーズ",
|
||||
"Setup.UseSetupURI.LabelSetupURI": "Setup URI",
|
||||
"Setup.UseSetupURI.PlaceholderPassphrase": "Vault のパスフレーズを入力してください",
|
||||
"Setup.UseSetupURI.Title": "Setup URI を入力",
|
||||
"Setup.UseSetupURI.ValidInfo": "Setup URI は有効で、使用できます。",
|
||||
"Should we keep folders that don't have any files inside?": "中にファイルがないフォルダーを保持しますか?",
|
||||
"Should we only check for conflicts when a file is opened?": "ファイルを開いたときのみ競合をチェックしますか?",
|
||||
"Should we prompt you about conflicting files when a file is opened?": "ファイルを開いたときに競合ファイルについて確認を求めますか?",
|
||||
"Should we prompt you for every single merge, even if we can safely merge automatcially?": "自動的に安全にマージできる場合でも、すべてのマージについて確認を求めますか?",
|
||||
"Show full banner": "完全なバナーを表示",
|
||||
"Show only notifications": "通知のみ表示",
|
||||
"Show status as icons only": "ステータス表示をアイコンのみにする",
|
||||
"Show status icon instead of file warnings banner": "ファイル警告バナーの代わりにステータスアイコンを表示",
|
||||
"Show status inside the editor": "ステータスをエディタ内に表示",
|
||||
"Show status on the status bar": "ステータスバーに、ステータスを表示",
|
||||
"Show verbose log. Please enable if you report an issue.": "エラー以外の詳細ログ項目も表示する。問題が発生した場合は有効にしてください。",
|
||||
"Some devices have differing progress values (max: ${maxProgress}, min: ${minProgress}).\nThis may indicate that some devices have not completed synchronisation, which could lead to conflicts. Strongly recommend confirming that all devices are synchronised before proceeding.": "一部のデバイスで進捗値が異なっています(最大: ${maxProgress}、最小: ${minProgress})。\nこれは一部のデバイスで同期が完了していない可能性を示しており、競合の原因になることがあります。続行する前に、すべてのデバイスが同期済みであることを確認することを強くおすすめします。",
|
||||
"Starts synchronisation when a file is saved.": "ファイルが保存されたときに同期を開始します。",
|
||||
"Stop reflecting database changes to storage files.": "データベースの変更をストレージファイルに反映させない",
|
||||
"Stop watching for file changes.": "監視の停止",
|
||||
"Suppress notification of hidden files change": "隠しファイルの変更通知を抑制",
|
||||
"Suspend database reflecting": "データベース反映の一時停止",
|
||||
"Suspend file watching": "監視の一時停止",
|
||||
"Switch to IDB": "IDB に切り替える",
|
||||
"Switch to IndexedDB": "IndexedDB に切り替える",
|
||||
"Sync after merging file": "ファイルがマージ(統合)された時に同期",
|
||||
"Sync automatically after merging files": "ファイルのマージ後に自動的に同期",
|
||||
"Sync Mode": "同期モード",
|
||||
"Sync on Editor Save": "エディタでの保存時に、同期されます",
|
||||
"Sync on File Open": "ファイルを開いた時に同期",
|
||||
"Sync on Save": "保存時に同期",
|
||||
"Sync on Startup": "起動時同期",
|
||||
"Synchronisation utilising journal files. You must have set up an S3/MinIO/R2 compatible object storage.": "ジャーナルファイルを利用する同期方式です。S3/MinIO/R2 互換のオブジェクトストレージを事前に構成しておく必要があります。",
|
||||
"Synchronising files": "同期するファイル",
|
||||
"Syncing": "同期",
|
||||
"Target patterns": "対象パターン",
|
||||
"Testing only - Resolve file conflicts by syncing newer copies of the file, this can overwrite modified files. Be Warned.": "テスト用 - ファイルの新しいコピーを同期してファイル競合を解決します。これにより変更されたファイルが上書きされる可能性があります。注意してください。",
|
||||
"The delay for consecutive on-demand fetches": "連続したオンデマンドフェッチの遅延",
|
||||
"The following accepted nodes are missing its node information:\n- ${missingNodes}\n\nThis indicates that they have not been connected for some time or have been left on an older version.\nIt is preferable to update all devices if possible. If you have any devices that are no longer in use, you can clear all accepted nodes by locking the remote once.": "次の承認済みノードにはノード情報がありません:\n- ${missingNodes}\n\nこれは、それらがしばらく接続されていないか、古いバージョンのままになっていることを示しています。\n可能であれば、まずすべてのデバイスを更新することをおすすめします。すでに使用していないデバイスがある場合は、リモートを一度ロックすることで承認済みノードをすべてクリアできます。",
|
||||
"The Hash algorithm for chunk IDs": "チャンクIDのハッシュアルゴリズム",
|
||||
"The maximum duration for which chunks can be incubated within the document. Chunks exceeding this period will graduate to independent chunks.": "ドキュメント内でチャンクを保持できる最大期間。この期間を超えたチャンクは独立したチャンクに昇格します。",
|
||||
"The maximum number of chunks that can be incubated within the document. Chunks exceeding this number will immediately graduate to independent chunks.": "ドキュメント内で保持できるチャンクの最大数。この数を超えたチャンクは即座に独立したチャンクに昇格します。",
|
||||
"The maximum total size of chunks that can be incubated within the document. Chunks exceeding this size will immediately graduate to independent chunks.": "ドキュメント内で保持できるチャンクの最大合計サイズ。このサイズを超えたチャンクは即座に独立したチャンクに昇格します。",
|
||||
"The minimum interval for automatic synchronisation on event.": "イベント発生時の自動同期における最小間隔です。",
|
||||
"This feature enables direct synchronisation between devices. No server is required, but both devices must be online at the same time for synchronisation to occur, and some features may be limited. Internet connection is only required to signalling (detecting peers) and not for data transfer.": "この機能では端末同士を直接同期できます。サーバーは不要ですが、同期を行うには両端末が同時にオンラインである必要があり、一部機能は制限されます。インターネット接続はシグナリング(ピア検出)にのみ必要で、データ転送自体には使われません。",
|
||||
"This is an advanced option for users who do not have a URI or who wish to configure detailed settings.": "URI を持っていない場合や、詳細設定を手動で行いたいユーザー向けの上級者オプションです。",
|
||||
"This is the most suitable synchronisation method for the design. All functions are available. You must have set up a CouchDB instance.": "この設計に最も適した同期方式です。すべての機能が利用できます。CouchDB インスタンスを事前に構成しておく必要があります。",
|
||||
"This passphrase will not be copied to another device. It will be set to `Default` until you configure it again.": "このパスフレーズは他のデバイスにコピーされません。再度設定するまで`Default`に設定されます。",
|
||||
"This will recreate chunks for all files. If there were missing chunks, this may fix the errors.": "すべてのファイルについてチャンクを再作成します。欠損しているチャンクがあった場合、エラーが解消される可能性があります。",
|
||||
"Transfer Tweak": "転送の調整",
|
||||
"TweakMismatchResolve.Action.Dismiss": "無視",
|
||||
"TweakMismatchResolve.Action.UseConfigured": "設定済みの設定を使用",
|
||||
"TweakMismatchResolve.Action.UseMine": "リモートデータベースの設定を更新",
|
||||
"TweakMismatchResolve.Action.UseMineAcceptIncompatible": "リモートデータベースの設定を更新するがそのまま維持",
|
||||
"TweakMismatchResolve.Action.UseMineWithRebuild": "リモートデータベースの設定を更新して再構築",
|
||||
"TweakMismatchResolve.Action.UseRemote": "このデバイスに設定を適用",
|
||||
"TweakMismatchResolve.Action.UseRemoteAcceptIncompatible": "このデバイスに設定を適用し、非互換性を無視",
|
||||
"TweakMismatchResolve.Action.UseRemoteWithRebuild": "このデバイスに設定を適用し、再フェッチ",
|
||||
"TweakMismatchResolve.Message.Main": "\nリモートデータベースの設定は以下の通りです。これらの値は、このデバイスと少なくとも1回同期された他のデバイスによって設定されています。\n\nこれらの設定を使用する場合は、%{TweakMismatchResolve.Action.UseConfigured}を選択してください。\nこのデバイスの設定を維持する場合は、%{TweakMismatchResolve.Action.Dismiss}を選択してください。\n\n${table}\n\n>[!TIP]\n> すべての設定を同期したい場合は、この機能で最小限の設定を適用した後、`Sync settings via markdown`を使用してください。\n\n${additionalMessage}",
|
||||
"TweakMismatchResolve.Message.MainTweakResolving": "設定がリモートサーバーの設定と一致しません。\n\n以下の設定が一致している必要があります:\n\n${table}\n\n判断をお知らせください。\n\n${additionalMessage}",
|
||||
"TweakMismatchResolve.Message.UseRemote.WarningRebuildRecommended": "\n>[!NOTICE]\n> 一部の変更は互換性がありますが、追加のストレージと転送量を消費する可能性があります。再構築をお勧めします。ただし、再構築は現時点では実行されない場合がありますが、将来のメンテナンスで実装される可能性があります。\n> ***適用には時間と安定したネットワーク接続が必要です!***",
|
||||
"TweakMismatchResolve.Message.UseRemote.WarningRebuildRequired": "\n>[!WARNING]\n> 一部のリモート設定はこのデバイスのローカルデータベースと互換性がありません。ローカルデータベースの再構築が必要です。\n> ***適用には時間と安定したネットワーク接続が必要です!***",
|
||||
"TweakMismatchResolve.Message.WarningIncompatibleRebuildRecommended": "\n>[!NOTICE]\n> ローカルデータベースとリモートデータベースの非互換性を引き起こす値の違いが検出されました。\n> 一部の変更は互換性がありますが、追加のストレージと転送量を消費する可能性があります。再構築をお勧めします。ただし、再構築は現時点では実行されない場合がありますが、将来のメンテナンスで実装される可能性があります。\n> 再構築を行う場合は数分以上かかります。**今実行しても安全か確認してください。**",
|
||||
"TweakMismatchResolve.Message.WarningIncompatibleRebuildRequired": "\n>[!WARNING]\n> ローカルデータベースとリモートデータベースの非互換性を引き起こす値の違いが検出されました。\n> ローカルまたはリモートの再構築が必要です。どちらも数分以上かかります。**今実行しても安全か確認してください。**",
|
||||
"TweakMismatchResolve.Table": "| 値の名前 | このデバイス | リモート |\n|: --- |: ---- :|: ---- :|\n${rows}\n\n",
|
||||
"TweakMismatchResolve.Table.Row": "| ${name} | ${self} | ${remote} |",
|
||||
"TweakMismatchResolve.Title": "設定の不一致が検出されました",
|
||||
"TweakMismatchResolve.Title.TweakResolving": "設定の不一致が検出されました",
|
||||
"TweakMismatchResolve.Title.UseRemoteConfig": "リモート設定を使用",
|
||||
"Unique name between all synchronized devices. To edit this setting, please disable customization sync once.": "同期するすべての端末間で重複しない(一意の)名前。この設定を変更する場合、カスタマイズ同期を無効にしてください。",
|
||||
"Use a custom passphrase": "カスタムパスフレーズを使う",
|
||||
"Use a Setup URI (Recommended)": "Setup URI を使う(推奨)",
|
||||
"Use Custom HTTP Handler": "カスタムHTTPハンドラーの利用",
|
||||
"Use dynamic iteration count": "動的な繰り返し回数",
|
||||
"Use Segmented-splitter": "セグメント分割を使用",
|
||||
"Use splitting-limit-capped chunk splitter": "分割制限付きチャンク分割を使用",
|
||||
"Use the trash bin": "ゴミ箱を使用",
|
||||
"Use timeouts instead of heartbeats": "ハートビートの代わりにタイムアウトを使用",
|
||||
"username": "ユーザー名",
|
||||
"Username": "ユーザー名",
|
||||
"Verbose Log": "エラー以外のログ項目",
|
||||
"Verify all": "すべて検証",
|
||||
"Verify and repair all files": "すべてのファイルを検証して修復",
|
||||
"Warning! This will have a serious impact on performance. And the logs will not be synchronised under the default name. Please be careful with logs; they often contain your confidential information.": "警告!これはパフォーマンスに重大な影響を与えます。また、ログはデフォルト名では同期されません。ログには機密情報が含まれることが多いため、注意してください。",
|
||||
"We cannot change the device name while this feature is enabled. Please disable this feature to change the device name.": "この機能が有効な間はデバイス名を変更できません。変更するにはこの機能を無効にしてください。",
|
||||
"We will now guide you through a few questions to simplify the synchronisation setup.": "これからいくつかの質問に沿って、同期設定を簡単に進めます。",
|
||||
"We will now proceed with the server configuration.": "次にサーバー設定を進めます。",
|
||||
"Welcome to Self-hosted LiveSync": "Self-hosted LiveSync へようこそ",
|
||||
"When you save a file in the editor, start a sync automatically": "エディタでファイルを保存すると、自動的に同期を開始します",
|
||||
"Write credentials in the file": "認証情報のファイル内保存",
|
||||
"Write logs into the file": "ファイルにログを記録",
|
||||
"xxhash32 (Fast but less collision resistance)": "xxhash32 (高速ですが衝突耐性は低め)",
|
||||
"xxhash64 (Fastest)": "xxhash64 (最速)",
|
||||
"Yes, I want to add this device to my existing synchronisation": "はい、この端末を既存の同期に追加します",
|
||||
"Yes, I want to set up a new synchronisation": "はい、新しい同期を設定します",
|
||||
"You are adding this device to an existing synchronisation setup.": "この端末を既存の同期構成に追加しようとしています。"
|
||||
}
|
||||
@@ -0,0 +1,798 @@
|
||||
{
|
||||
"(Active)": "(활성)",
|
||||
"(BETA) Always overwrite with a newer file": "(베타) 항상 새로운 파일로 덮어쓰기",
|
||||
"(Beta) Use ignore files": "(베타) 제외 규칙 파일 사용",
|
||||
"(Days passed, 0 to disable automatic-deletion)": "(지난 일수, 0으로 설정하면 자동 삭제 비활성화)",
|
||||
"(ex. Read chunks online) If this option is enabled, LiveSync reads chunks online directly instead of replicating them locally. Increasing Custom chunk size is recommended.": "(예: 청크를 원격에서 읽음) 이 옵션을 활성화하면, LiveSync는 청크를 로컬에 복제하지 않고 원격에서 직접 읽습니다. 커스텀 청크 크기를 키우는 것을 권장합니다.",
|
||||
"(MB) If this is set, changes to local and remote files that are larger than this will be skipped. If the file becomes smaller again, a newer one will be used.": "(MB) 이 값이 설정되면, 이보다 큰 로컬 및 원격 파일의 변경 사항은 건너뜁니다. 파일이 다시 작아지면 더 새로운 파일이 사용됩니다.",
|
||||
"(Mega chars)": "(메가 문자)",
|
||||
"(Not recommended) If set, credentials will be stored in the file.": "(권장하지 않음) 설정한 경우 자격 증명이 파일에 저장됩니다.",
|
||||
"(Obsolete) Use an old adapter for compatibility": "(사용 중단) 호환성을 위해 이전 어댑터 사용",
|
||||
"(RegExp) Empty to sync all files. Set filter as a regular expression to limit synchronising files.": "(정규식) 비워 두면 모든 파일을 동기화합니다. 정규식을 지정하면 동기화할 파일을 제한할 수 있습니다.",
|
||||
"(RegExp) If this is set, any changes to local and remote files that match this will be skipped.": "(정규식) 설정하면 이 패턴과 일치하는 로컬 및 원격 파일 변경은 모두 건너뜁니다.",
|
||||
"(Select this if you are already using synchronisation on another computer or smartphone.) This option is suitable if you are new to LiveSync and want to set it up from scratch.": "(다른 컴퓨터나 스마트폰에서 이미 동기화를 사용 중인 경우 선택하세요.) 이 장치를 기존 LiveSync 구성에 추가하려는 경우에 적합합니다。",
|
||||
"(Select this if you are configuring this device as the first synchronisation device.) This option is suitable if you are new to LiveSync and want to set it up from scratch.": "(이 장치를 첫 번째 동기화 장치로 설정하는 경우 선택하세요.) LiveSync를 처음 사용하며 처음부터 설정하려는 경우에 적합합니다。",
|
||||
"> [!INFO]- The connected devices have been detected as follows:\n${devices}": "> [!INFO]- 다음 연결된 기기가 감지되었습니다:\n${devices}",
|
||||
"A Setup URI is a single string of text containing your server address and authentication details. Using a URI, if one was generated by your server installation script, provides a simple and secure configuration.": "설정 URI는 서버 주소와 인증 정보를 포함한 단일 문자열입니다. 서버 설치 스크립트가 URI를 생성했다면 이를 사용하면 간단하고 안전하게 구성할 수 있습니다。",
|
||||
"Access Key": "액세스 키",
|
||||
"Activate": "활성화",
|
||||
"Add default patterns": "기본 패턴 추가",
|
||||
"Add new connection": "연결 추가",
|
||||
"All devices have the same progress value (${progress}). Your devices seem to be synchronised. And be able to proceed with Garbage Collection.": "모든 기기의 진행 값이 동일합니다(${progress}). 기기들이 동기화된 것으로 보이므로 Garbage Collection을 진행할 수 있습니다.",
|
||||
"Always prompt merge conflicts": "항상 병합 충돌 알림",
|
||||
"Analyse database usage": "데이터베이스 사용량 분석",
|
||||
"Analyse database usage and generate a TSV report for diagnosis yourself. You can paste the generated report with any spreadsheet you like.": "데이터베이스 사용량을 분석하고 직접 진단할 수 있도록 TSV 보고서를 생성합니다. 생성된 보고서는 원하는 스프레드시트에 붙여 넣어 확인할 수 있습니다.",
|
||||
"Apply Latest Change if Conflicting": "충돌 시 최신 변경 사항 적용",
|
||||
"Apply preset configuration": "프리셋 구성 적용",
|
||||
"Ask a passphrase at every launch": "시작할 때마다 암호문구 묻기",
|
||||
"Automatically Sync all files when opening Obsidian.": "Obsidian을 열 때 모든 파일을 자동으로 동기화합니다.",
|
||||
"Back": "뒤로",
|
||||
"Back to non-configured": "미구성 상태로 되돌리기",
|
||||
"Batch database update": "일괄 데이터베이스 업데이트",
|
||||
"Batch limit": "일괄 제한",
|
||||
"Batch size": "일괄 크기",
|
||||
"Batch size of on-demand fetching": "필요 시 가져올 청크 묶음 크기",
|
||||
"Before v0.17.16, we used an old adapter for the local database. Now the new adapter is preferred. However, it needs local database rebuilding. Please disable this toggle when you have enough time. If leave it enabled, also while fetching from the remote database, you will be asked to disable this.": "v0.17.16 이전에는 로컬 데이터베이스에 이전 어댑터를 사용했습니다. 이제는 새로운 어댑터를 권장합니다. 하지만 로컬 데이터베이스 재구축이 필요합니다. 충분한 시간이 있을 때 이 토글을 비활성화해 주세요. 활성화된 상태로 두면 원격 데이터베이스에서 가져올 때도 이를 비활성화하라는 메시지가 나타납니다.",
|
||||
"Bucket Name": "버킷 이름",
|
||||
"Cancel": "취소",
|
||||
"Cancel Garbage Collection": "Garbage Collection 취소",
|
||||
"Check and convert non-path-obfuscated files": "경로 난독화되지 않은 파일 검사 및 변환",
|
||||
"Check for documents that have not been converted to path-obfuscated IDs and convert them if necessary.": "아직 경로 난독화 ID로 변환되지 않은 문서를 확인하고 필요하면 변환합니다.",
|
||||
"cmdConfigSync.showCustomizationSync": "사용자 설정 동기화 표시",
|
||||
"Comma separated `.gitignore, .dockerignore`": "쉼표로 구분된 `.gitignore, .dockerignore`",
|
||||
"Compaction in progress on remote database...": "원격 데이터베이스에서 압축을 진행 중입니다...",
|
||||
"Compaction on remote database completed successfully.": "원격 데이터베이스 압축이 성공적으로 완료되었습니다.",
|
||||
"Compaction on remote database failed.": "원격 데이터베이스 압축에 실패했습니다.",
|
||||
"Compaction on remote database timed out.": "원격 데이터베이스 압축 시간이 초과되었습니다.",
|
||||
"Compare the content of files between on local database and storage. If not matched, you will be asked which one you want to keep.": "로컬 데이터베이스와 저장소 간의 파일 내용을 비교합니다. 일치하지 않으면 어떤 쪽을 유지할지 묻게 됩니다.",
|
||||
"Compatibility (Conflict Behaviour)": "호환성 (충돌 동작)",
|
||||
"Compatibility (Database structure)": "호환성 (데이터베이스 구조)",
|
||||
"Compatibility (Internal API Usage)": "호환성 (내부 API 사용)",
|
||||
"Compatibility (Metadata)": "호환성 (메타데이터)",
|
||||
"Compatibility (Remote Database)": "호환성 (원격 데이터베이스)",
|
||||
"Compatibility (Trouble addressed)": "호환성 (문제 대응)",
|
||||
"Compute revisions for chunks": "청크에 대한 리비전 계산",
|
||||
"Configuration Encryption": "구성 암호화",
|
||||
"Configure": "설정",
|
||||
"Configure And Change Remote": "원격 구성 및 변경",
|
||||
"Configure E2EE": "E2EE 구성",
|
||||
"Configure Remote": "원격 구성",
|
||||
"Configure the same server information as your other devices again, manually, very advanced users only.": "다른 장치와 동일한 서버 정보를 다시 수동으로 입력합니다. 고급 사용자 전용입니다。",
|
||||
"Connection Method": "연결 방법",
|
||||
"Continue to CouchDB setup": "CouchDB 설정으로 계속",
|
||||
"Continue to Peer-to-Peer only setup": "Peer-to-Peer 전용 설정으로 계속",
|
||||
"Continue to S3/MinIO/R2 setup": "S3/MinIO/R2 설정으로 계속",
|
||||
"Copy": "복사",
|
||||
"Copy Report to clipboard": "보고서를 클립보드에 복사",
|
||||
"CouchDB Connection Tweak": "CouchDB 연결 조정",
|
||||
"Cross-platform": "크로스 플랫폼",
|
||||
"Current adapter: {adapter}": "현재 어댑터: {adapter}",
|
||||
"Customization Sync": "사용자 지정 동기화",
|
||||
"Customization Sync (Beta3)": "사용자 지정 동기화 (Beta3)",
|
||||
"Data Compression": "데이터 압축",
|
||||
"Database Adapter": "데이터베이스 어댑터",
|
||||
"Database Name": "데이터베이스 이름",
|
||||
"Database suffix": "데이터베이스 접미사",
|
||||
"Default": "기본값",
|
||||
"Delay conflict resolution of inactive files": "비활성 파일의 충돌 해결 지연",
|
||||
"Delay merge conflict prompt for inactive files.": "비활성 파일의 병합 충돌 프롬프트 지연.",
|
||||
"Delete": "삭제",
|
||||
"Delete all customization sync data": "모든 사용자 정의 동기화 데이터 삭제",
|
||||
"Delete all data on the remote server.": "원격 서버의 모든 데이터를 삭제합니다.",
|
||||
"Delete local database to reset or uninstall Self-hosted LiveSync": "Self-hosted LiveSync를 초기화하거나 제거하기 위해 로컬 데이터베이스를 삭제",
|
||||
"Delete old metadata of deleted files on start-up": "시작 시 삭제된 파일의 오래된 메타데이터 삭제",
|
||||
"Delete Remote Configuration": "원격 구성 삭제",
|
||||
"Delete remote configuration '{name}'?": "'{name}' 원격 구성을 삭제할까요?",
|
||||
"desktop": "데스크톱",
|
||||
"Developer": "개발자",
|
||||
"Device": "기기",
|
||||
"Device name": "기기 이름",
|
||||
"Device Setup Method": "장치 설정 방법",
|
||||
"dialog.yourLanguageAvailable": "Self-hosted LiveSync에서 귀하의 언어로 번역을 제공하므로 %{Display language} 설정이 활성화되었습니다.\n\n참고: 모든 메시지가 번역되지는 않습니다. 귀하의 기여를 기다리고 있습니다!\n참고 2: 이슈를 생성하는 경우 **%{lang-def}로 되돌린 후** 스크린샷, 메시지, 로그를 가져와 주세요. 이는 설정 대화 상자에서 할 수 있습니다.\n간편하게 사용하실 수 있었으면 좋겠습니다!",
|
||||
"dialog.yourLanguageAvailable.btnRevertToDefault": "%{lang-def} 유지",
|
||||
"dialog.yourLanguageAvailable.Title": " 번역을 사용할 수 있습니다!",
|
||||
"Disables all synchronization and restart.": "모든 동기화를 비활성화하고 재시작합니다.",
|
||||
"Disables logging, only shows notifications. Please disable if you report an issue.": "로깅을 비활성화하고 알림만 표시합니다. 문제를 신고하는 경우 비활성화해 주세요.",
|
||||
"Display Language": "표시 언어",
|
||||
"Display name": "표시 이름",
|
||||
"Do not check configuration mismatch before replication": "복제 전 구성 불일치 확인 안 함",
|
||||
"Do not keep metadata of deleted files.": "삭제된 파일의 메타데이터를 보관하지 않습니다.",
|
||||
"Do not split chunks in the background": "백그라운드에서 청크 분할 안 함",
|
||||
"Do not use internal API": "내부 API 사용 안 함",
|
||||
"Doctor.Button.DismissThisVersion": "아니요, 다음 릴리스까지 다시 묻지 않음",
|
||||
"Doctor.Button.Fix": "수정",
|
||||
"Doctor.Button.FixButNoRebuild": "수정하지만 재구축하지 않음",
|
||||
"Doctor.Button.No": "아니요",
|
||||
"Doctor.Button.Skip": "그대로 두기",
|
||||
"Doctor.Button.Yes": "예",
|
||||
"Doctor.Dialogue.Main": "안녕하세요! ${activateReason} 로 인해 구성 진단 마법사가 활성화되었습니다!\n그리고 일부 구성이 잠재적인 문제로 감지되었습니다.\n안심하세요. 하나씩 해결해 봅시다.\n\n대상 항목은 다음과 같습니다.\n\n${issues}\n\n시작하시겠습니까?",
|
||||
"Doctor.Dialogue.MainFix": "**구성 이름:** `${name}`\n**현재 값:** `${current}`, **이상적인 값:** `${ideal}`\n**권장 수준:** ${level}\n**왜 이것이 감지되었나요?**\n${reason}\n\n\n${note}\n\n이상적인 값으로 수정하시겠습니까?",
|
||||
"Doctor.Dialogue.Title": "Self-hosted LiveSync 구성 진단 마법사",
|
||||
"Doctor.Dialogue.TitleAlmostDone": "거의 완료되었습니다!",
|
||||
"Doctor.Dialogue.TitleFix": "문제 해결 ${current}/${total}",
|
||||
"Doctor.Level.Must": "필수",
|
||||
"Doctor.Level.Necessary": "필수",
|
||||
"Doctor.Level.Optional": "선택사항",
|
||||
"Doctor.Level.Recommended": "권장",
|
||||
"Doctor.Message.NoIssues": "문제가 감지되지 않았습니다!",
|
||||
"Doctor.Message.RebuildLocalRequired": "주의! 이를 적용하려면 로컬 데이터베이스 재구축이 필요합니다!",
|
||||
"Doctor.Message.RebuildRequired": "주의! 이를 적용하려면 재구축이 필요합니다!",
|
||||
"Doctor.Message.SomeSkipped": "일부 문제를 그대로 두었습니다. 다음 시작 시 다시 질문할까요?",
|
||||
"Duplicate": "복제",
|
||||
"Duplicate remote": "원격 구성 복제",
|
||||
"E2EE Configuration": "E2EE 구성",
|
||||
"Edge case addressing (Behaviour)": "특수 상황 처리 (동작)",
|
||||
"Edge case addressing (Database)": "특수 상황 처리 (데이터베이스)",
|
||||
"Edge case addressing (Processing)": "특수 상황 처리 (처리)",
|
||||
"Emergency restart": "긴급 재시작",
|
||||
"Enable advanced features": "고급 기능 활성화",
|
||||
"Enable customization sync": "사용자 설정 동기화 활성화",
|
||||
"Enable Developers' Debug Tools.": "개발자 디버그 도구 활성화",
|
||||
"Enable edge case treatment features": "특수 사례 처리 기능 활성화",
|
||||
"Enable poweruser features": "파워 유저 기능 활성화",
|
||||
"Enable this if your Object Storage doesn't support CORS": "객체 스토리지가 CORS를 지원하지 않는 경우 활성화하세요",
|
||||
"Enable this option to automatically apply the most recent change to documents even when it conflicts": "이 옵션을 활성화하면 충돌이 있어도 문서에 가장 최근 변경 사항을 자동으로 적용합니다",
|
||||
"Encrypt contents on the remote database. If you use the plugin's synchronization feature, enabling this is recommended.": "원격 데이터베이스의 내용을 암호화합니다. 플러그인의 동기화 기능을 사용하는 경우 활성화를 권장합니다.",
|
||||
"Encrypting sensitive configuration items": "민감한 구성 항목 암호화",
|
||||
"Encryption phassphrase. If changed, you should overwrite the server's database with the new (encrypted) files.": "패스프레이즈는 암호화에 사용되는 긴 암호 문구입니다. 변경한 경우, 암호화된 새 파일로 서버의 데이터베이스를 덮어써야 합니다.",
|
||||
"End-to-End Encryption": "종단간 암호화",
|
||||
"Endpoint URL": "엔드포인트 URL",
|
||||
"Enhance chunk size": "청크 크기 향상",
|
||||
"Enter Server Information": "서버 정보 입력",
|
||||
"Enter the server information manually": "서버 정보를 수동으로 입력",
|
||||
"Export": "내보내기",
|
||||
"Failed to connect to remote for compaction.": "압축을 위해 원격 데이터베이스에 연결하지 못했습니다.",
|
||||
"Failed to connect to remote for compaction. ${reason}": "압축을 위해 원격 데이터베이스에 연결하지 못했습니다. ${reason}",
|
||||
"Failed to start one-shot replication before Garbage Collection. Garbage Collection Cancelled.": "Garbage Collection 전에 일회성 복제를 시작하지 못했습니다. Garbage Collection을 취소합니다.",
|
||||
"Failed to start replication after Garbage Collection.": "Garbage Collection 후 복제를 시작하지 못했습니다.",
|
||||
"Fetch": "가져오기",
|
||||
"Fetch chunks on demand": "필요 시 청크 원격 가져오기",
|
||||
"Fetch database with previous behaviour": "이전 동작으로 데이터베이스 가져오기",
|
||||
"Fetch remote settings": "원격 설정 가져오기",
|
||||
"File to resolve conflict": "충돌을 해결할 파일",
|
||||
"Filename": "파일명",
|
||||
"First, please select the option that best describes your current situation.": "먼저 현재 상황에 가장 잘 맞는 항목을 선택해 주세요。",
|
||||
"Flag and restart": "표시 후 재시작",
|
||||
"Forces the file to be synced when opened.": "파일을 열 때 강제로 동기화합니다.",
|
||||
"Fresh Start Wipe": "새로 시작 지우기",
|
||||
"Garbage Collection cancelled by user.": "사용자가 Garbage Collection을 취소했습니다.",
|
||||
"Garbage Collection completed. Deleted chunks: ${deletedChunks} / ${totalChunks}. Time taken: ${seconds} seconds.": "Garbage Collection이 완료되었습니다. 삭제된 청크: ${deletedChunks} / ${totalChunks}. 소요 시간: ${seconds}초.",
|
||||
"Garbage Collection Confirmation": "Garbage Collection 확인",
|
||||
"Garbage Collection V3 (Beta)": "가비지 컬렉션 V3 (Beta)",
|
||||
"Garbage Collection: Found ${unusedChunks} unused chunks to delete.": "Garbage Collection: 삭제할 미사용 청크 ${unusedChunks}개를 찾았습니다.",
|
||||
"Garbage Collection: Scanned ${scanned} / ~${docCount}": "Garbage Collection: ${scanned} / ~${docCount} 스캔됨",
|
||||
"Garbage Collection: Scanning completed. Total chunks: ${totalChunks}, Used chunks: ${usedChunks}": "Garbage Collection: 스캔 완료. 전체 청크 수: ${totalChunks}, 사용 중인 청크 수: ${usedChunks}",
|
||||
"Handle files as Case-Sensitive": "파일을 대소문자 구분으로 처리",
|
||||
"Hidden Files": "숨김 파일",
|
||||
"How to display network errors when the sync server is unreachable.": "동기화 서버에 연결할 수 없을 때 네트워크 오류를 어떻게 표시할지 설정합니다.",
|
||||
"How would you like to configure the connection to your server?": "서버 연결을 어떻게 구성하시겠습니까?",
|
||||
"I am adding a device to an existing synchronisation setup": "기존 동기화 구성에 장치를 추가합니다",
|
||||
"I am setting this up for the first time": "처음으로 설정합니다",
|
||||
"I know my server details, let me enter them": "서버 정보를 알고 있으니 직접 입력하겠습니다",
|
||||
"If disabled(toggled), chunks will be split on the UI thread (Previous behaviour).": "비활성화(토글)되면 청크는 UI 스레드에서 분할됩니다 (이전 동작).",
|
||||
"If enabled per-filed efficient customization sync will be used. We need a small migration when enabling this. And all devices should be updated to v0.23.18. Once we enabled this, we lost a compatibility with old versions.": "활성화하면 파일별 효율적인 사용자 설정 동기화가 사용됩니다. 이를 활성화할 때 소규모 데이터 구조 전환이 필요합니다. 모든 기기를 v0.23.18로 업데이트해야 합니다. 이를 활성화하면 이전 버전과의 호환성이 사라집니다.",
|
||||
"If enabled, chunks will be split into no more than 100 items. However, dedupe is slightly weaker.": "활성화하면 청크는 최대 100개 항목으로 분할됩니다. 하지만 중복 제거 기능이 약간 약해집니다.",
|
||||
"If enabled, newly created chunks are temporarily kept within the document, and graduated to become independent chunks once stabilised.": "활성화하면 새로 생성된 변경 기록(청크)은 문서 안에 임시로 보관되며, 일정 조건을 만족하면 자동으로 문서 밖으로 분리되어 저장됩니다.",
|
||||
"If enabled, the ⛔ icon will be shown inside the status instead of the file warnings banner. No details will be shown.": "활성화하면 파일 경고 배너 대신 상태 영역에 ⛔ 아이콘만 표시됩니다. 자세한 내용은 표시되지 않습니다.",
|
||||
"If enabled, the file under 1kb will be processed in the UI thread.": "활성화하면 1kb 미만의 파일은 UI 스레드에서 처리됩니다.",
|
||||
"If enabled, the notification of hidden files change will be suppressed.": "활성화하면 숨겨진 파일 변경 알림이 억제됩니다.",
|
||||
"If this enabled, all chunks will be stored with the revision made from its content. (Previous behaviour)": "이 옵션이 활성화되면 모든 청크는 콘텐츠에서 생성된 리비전과 함께 저장됩니다. (이전 동작)",
|
||||
"If this enabled, All files are handled as case-Sensitive (Previous behaviour).": "이 옵션이 활성화되면 모든 파일이 대소문자를 구분하여 처리됩니다 (이전 동작).",
|
||||
"If this enabled, chunks will be split into semantically meaningful segments. Not all platforms support this feature.": "이 옵션을 활성화하면 청크가 문단이나 의미 단위로 나뉘어 저장됩니다. 단, 이 기능은 일부 플랫폼에서는 지원되지 않을 수 있습니다.",
|
||||
"If this is set, changes to local files which are matched by the ignore files will be skipped. Remote changes are determined using local ignore files.": "이 옵션을 활성화하면, 제외 규칙 파일에 일치하는 로컬 파일의 변경 사항은 건너뜁니다. 원격 변경 여부 또한 로컬의 제외 규칙 파일에 따라 판단됩니다.",
|
||||
"If this option is enabled, PouchDB will hold the connection open for 60 seconds, and if no change arrives in that time, close and reopen the socket, instead of holding it open indefinitely. Useful when a proxy limits request duration but can increase resource usage.": "이 옵션이 활성화되면 PouchDB는 연결을 더이상 무한히 열어두지 않고 60초 동안 유지합니다. 그 시간 내에 변경 사항이 없으면 소켓을 닫고 다시 엽니다. 프록시가 요청 지속 시간을 제한할 때 유용하지만 리소스 사용량이 증가할 수 있습니다.",
|
||||
"Ignore and Proceed": "무시하고 계속",
|
||||
"Ignore files": "제외 규칙 파일",
|
||||
"Ignore patterns": "무시 패턴",
|
||||
"Import connection": "연결 가져오기",
|
||||
"Incubate Chunks in Document": "문서 내 변경 기록 임시 보관",
|
||||
"Initialise all journal history, On the next sync, every item will be received and sent.": "모든 저널 기록을 초기화합니다. 다음 동기화 때 모든 항목을 다시 받고 다시 보냅니다.",
|
||||
"Interval (sec)": "간격 (초)",
|
||||
"K.exp": "실험 기능",
|
||||
"K.long_p2p_sync": "%{title_p2p_sync} (%{exp})",
|
||||
"K.P2P": "%{Peer}-to-%{Peer}",
|
||||
"K.Peer": "피어",
|
||||
"K.ScanCustomization": "사용자 설정 검색",
|
||||
"K.short_p2p_sync": "P2P 동기화 (%{exp})",
|
||||
"K.title_p2p_sync": "피어 투 피어(P2P) 동기화",
|
||||
"Keep empty folder": "빈 폴더 유지",
|
||||
"lang_def": "Default",
|
||||
"lang-de": "Deutsche",
|
||||
"lang-def": "%{lang_def}",
|
||||
"lang-es": "Español",
|
||||
"lang-fr": "Français",
|
||||
"lang-ja": "日本語",
|
||||
"lang-ko": "한국어",
|
||||
"lang-ru": "Русский",
|
||||
"lang-zh": "简体中文",
|
||||
"lang-zh-tw": "繁體中文",
|
||||
"Later": "나중에",
|
||||
"Limit: {datetime} ({timestamp})": "제한: {datetime} ({timestamp})",
|
||||
"LiveSync could not handle multiple vaults which have same name without different prefix, This should be automatically configured.": "LiveSync는 서로 다른 접두사 없이 동일한 이름을 가진 여러 볼트를 처리할 수 없습니다. 이는 자동으로 구성되어야 합니다.",
|
||||
"liveSyncReplicator.beforeLiveSync": "LiveSync 전에 OneShot을 먼저 시작합니다...",
|
||||
"liveSyncReplicator.cantReplicateLowerValue": "더 낮은 값으로 복제할 수 없습니다.",
|
||||
"liveSyncReplicator.checkingLastSyncPoint": "마지막으로 동기화된 지점을 찾고 있습니다.",
|
||||
"liveSyncReplicator.couldNotConnectTo": "${uri}에 연결할 수 없습니다: ${name} \n(${db})",
|
||||
"liveSyncReplicator.couldNotConnectToRemoteDb": "원격 데이터베이스에 연결할 수 없습니다: ${d}",
|
||||
"liveSyncReplicator.couldNotConnectToServer": "서버에 연결할 수 없습니다.",
|
||||
"liveSyncReplicator.couldNotConnectToURI": "${uri}에 연결할 수 없습니다: ${dbRet}",
|
||||
"liveSyncReplicator.couldNotMarkResolveRemoteDb": "원격 데이터베이스를 해결됨으로 표시할 수 없습니다.",
|
||||
"liveSyncReplicator.liveSyncBegin": "LiveSync 시작...",
|
||||
"liveSyncReplicator.lockRemoteDb": "데이터 손상을 방지하기 위해 원격 데이터베이스를 잠급니다",
|
||||
"liveSyncReplicator.markDeviceResolved": "이 기기를 '해결됨'으로 표시합니다.",
|
||||
"liveSyncReplicator.oneShotSyncBegin": "OneShot 동기화 시작... (${syncMode})",
|
||||
"liveSyncReplicator.remoteDbCorrupted": "원격 데이터베이스가 더 최신이거나 손상되었습니다. 최신 버전의 self-hosted-livesync가 설치되어 있는지 확인하세요",
|
||||
"liveSyncReplicator.remoteDbCreatedOrConnected": "원격 데이터베이스가 생성되거나 연결되었습니다",
|
||||
"liveSyncReplicator.remoteDbDestroyed": "원격 데이터베이스가 삭제되었습니다",
|
||||
"liveSyncReplicator.remoteDbDestroyError": "원격 데이터베이스 삭제 중 오류가 발생했습니다:",
|
||||
"liveSyncReplicator.remoteDbMarkedResolved": "원격 데이터베이스가 해결됨으로 표시되었습니다.",
|
||||
"liveSyncReplicator.replicationClosed": "복제가 종료되었습니다",
|
||||
"liveSyncReplicator.replicationInProgress": "복제가 이미 진행 중입니다",
|
||||
"liveSyncReplicator.retryLowerBatchSize": "더 낮은 일괄 크기로 재시도: ${batch_size}/${batches_limit}",
|
||||
"liveSyncReplicator.unlockRemoteDb": "데이터 손상을 방지하기 위해 원격 데이터베이스를 잠금 해제합니다",
|
||||
"liveSyncSetting.errorNoSuchSettingItem": "해당 설정 항목이 없습니다: ${key}",
|
||||
"liveSyncSetting.originalValue": "원본: ${value}",
|
||||
"liveSyncSetting.valueShouldBeInRange": "값은 ${min} < 값 < ${max} 범위에 있어야 합니다",
|
||||
"liveSyncSettings.btnApply": "적용",
|
||||
"Local Database Tweak": "로컬 데이터베이스 조정",
|
||||
"Lock": "잠금",
|
||||
"Lock Server": "서버 잠금",
|
||||
"Lock the remote server to prevent synchronization with other devices.": "다른 기기와의 동기화를 방지하기 위해 원격 서버를 잠급니다.",
|
||||
"logPane.autoScroll": "자동 스크롤",
|
||||
"logPane.logWindowOpened": "로그 창이 열렸습니다",
|
||||
"logPane.pause": "일시 중단",
|
||||
"logPane.title": "Self-hosted LiveSync 로그",
|
||||
"logPane.wrap": "줄 바꿈",
|
||||
"Maximum delay for batch database updating": "일괄 데이터베이스 업데이트 최대 지연",
|
||||
"Maximum file size": "최대 파일 크기",
|
||||
"Maximum Incubating Chunk Size": "임시 보관 변경 기록의 최대 크기",
|
||||
"Maximum Incubating Chunks": "임시 보관 중인 변경 기록 최대 수",
|
||||
"Maximum Incubation Period": "변경 기록 임시 보관 최대 시간",
|
||||
"MB (0 to disable).": "MB (0으로 설정하면 비활성화).",
|
||||
"Memory cache": "메모리 캐시",
|
||||
"Memory cache size (by total characters)": "메모리 캐시 크기 (총 문자 수)",
|
||||
"Memory cache size (by total items)": "메모리 캐시 크기 (총 항목 수)",
|
||||
"Merge": "병합",
|
||||
"Minimum delay for batch database updating": "일괄 데이터베이스 업데이트 최소 지연",
|
||||
"Minimum interval for syncing": "동기화 최소 간격",
|
||||
"moduleCheckRemoteSize.logCheckingStorageSizes": "스토리지 크기 확인 중",
|
||||
"moduleCheckRemoteSize.logCurrentStorageSize": "원격 스토리지 크기: ${measuredSize}",
|
||||
"moduleCheckRemoteSize.logExceededWarning": "원격 스토리지 크기: ${measuredSize}가 ${notifySize}를 초과했습니다",
|
||||
"moduleCheckRemoteSize.logThresholdEnlarged": "임계값이 ${size}MB로 증가되었습니다",
|
||||
"moduleCheckRemoteSize.msgConfirmRebuild": "시간이 꽤 오래 걸릴 수 있습니다. 정말 지금 모든 것을 재구축하시겠습니까?",
|
||||
"moduleCheckRemoteSize.msgDatabaseGrowing": "**데이터베이스 용량이 점점 커지고 있습니다!** 하지만 걱정하지 마세요. 아직 원격 스토리지 공간이 완전히 부족해진 건 아닙니다.\n\n| 측정된 크기 | 설정된 한도 |\n| --- | --- |\n| ${estimatedSize} | ${maxSize} |\n\n> [!MORE]-\n> 오랜 기간 사용했다면 참조되지 않는 청크, 즉 '쓰레기 데이터'가 쌓였을 수 있습니다. 이 경우 전체 재구성을 권장합니다. 용량이 훨씬 줄어들 수 있습니다.\n> \n> 단순히 볼트 자체 용량이 커지고 있는 것이라면, 먼저 파일을 정리한 후 전체를 재구성하는 것이 좋습니다. Self-hosted LiveSync는 처리 속도를 위해 삭제해도 실제 데이터를 바로 지우지 않습니다. 이 내용은 [기술 문서](https://github.com/vrtmrz/obsidian-livesync/blob/main/docs/tech_info.md)에 간략히 정리되어 있습니다.\n> \n> 용량 증가가 괜찮다면 알림 임계치를 100MB 단위로 높일 수 있습니다. 직접 서버를 운영하는 경우에 적합한 방법입니다. 다만, 가끔은 전체 재구성을 해주는 것이 바람직합니다.\n\n> [!WARNING]\n> 전체 재구성을 실행할 경우, 모든 기기가 반드시 동기화되어 있어야 합니다. 플러그인이 최대한 병합하려고 시도하긴 하지만 완전하지 않을 수 있습니다.",
|
||||
"moduleCheckRemoteSize.msgSetDBCapacity": "**원격 스토리지 공간이 부족해지기 전에 미리 조치할 수 있도록** 데이터베이스 용량 경고를 설정할 수 있습니다.\n이 기능을 활성화하시겠습니까?\n\n> [!MORE]-\n> - 0: 스토리지 용량에 대한 경고 없음\n> 자체 서버를 사용하는 등 여유 공간이 충분한 경우에 권장됩니다. 스토리지 용량을 직접 확인하고 수동으로 재구성할 수 있습니다.\n> - 800: 원격 스토리지 용량이 800MB를 초과하면 경고\n> 1GB 제한이 있는 fly.io나 IBM Cloudant 사용 시 권장됩니다.\n> - 2000: 원격 스토리지 용량이 2GB를 초과하면 경고\n\n설정한 용량 한도에 도달하면, 단계적으로 경고 한도를 늘릴지 여부를 묻게 됩니다.\n",
|
||||
"moduleCheckRemoteSize.option2GB": "2GB (표준)",
|
||||
"moduleCheckRemoteSize.option800MB": "800MB (Cloudant, fly.io)",
|
||||
"moduleCheckRemoteSize.optionAskMeLater": "나중에 물어보기",
|
||||
"moduleCheckRemoteSize.optionDismiss": "무시",
|
||||
"moduleCheckRemoteSize.optionIncreaseLimit": "${newMax}MB로 증가",
|
||||
"moduleCheckRemoteSize.optionNoWarn": "아니요, 경고하지 마세요",
|
||||
"moduleCheckRemoteSize.optionRebuildAll": "지금 모든 것 재구축",
|
||||
"moduleCheckRemoteSize.titleDatabaseSizeLimitExceeded": "원격 스토리지 크기가 제한을 초과했습니다",
|
||||
"moduleCheckRemoteSize.titleDatabaseSizeNotify": "데이터베이스 크기 알림 설정",
|
||||
"moduleInputUIObsidian.defaultTitleConfirmation": "확인",
|
||||
"moduleInputUIObsidian.defaultTitleSelect": "선택",
|
||||
"moduleInputUIObsidian.optionNo": "아니요",
|
||||
"moduleInputUIObsidian.optionYes": "예",
|
||||
"moduleLiveSyncMain.logAdditionalSafetyScan": "추가 안전 검사 중...",
|
||||
"moduleLiveSyncMain.logLoadingPlugin": "플러그인 로딩 중...",
|
||||
"moduleLiveSyncMain.logPluginInitCancelled": "모듈에 의해 플러그인 초기화가 취소되었습니다",
|
||||
"moduleLiveSyncMain.logPluginVersion": "Self-hosted LiveSync v${manifestVersion} ${packageVersion}",
|
||||
"moduleLiveSyncMain.logReadChangelog": "LiveSync가 업데이트되었습니다. 변경사항을 읽어보세요!",
|
||||
"moduleLiveSyncMain.logSafetyScanCompleted": "추가 안전 검사가 완료되었습니다",
|
||||
"moduleLiveSyncMain.logSafetyScanFailed": "모듈에서 추가 안전 검사가 실패했습니다",
|
||||
"moduleLiveSyncMain.logUnloadingPlugin": "플러그인 언로딩 중...",
|
||||
"moduleLiveSyncMain.logVersionUpdate": "LiveSync가 업데이트되었습니다. 호환성 문제가 있는 업데이트의 경우 모든 자동 동기화가 일시적으로 비활성화되었습니다. 활성화하기 전에 모든 기기가 최신 상태인지 확인하세요.",
|
||||
"moduleLiveSyncMain.msgScramEnabled": "Self-hosted LiveSync가 일부 이벤트를 무시하도록 설정되어 있습니다. 이 설정이 맞습니까?\n\n| 유형 | 상태 | 설명 |\n|:---:|:---:|---|\n| 스토리지 이벤트 | ${fileWatchingStatus} | 모든 수정 사항이 무시됩니다 |\n| 데이터베이스 이벤트 | ${parseReplicationStatus} | 모든 동기화 변경이 지연됩니다 |\n\n이벤트 감지를 다시 활성화하고 Obsidian을 재시작하시겠습니까?\n\n> [!DETAILS]-\n> 이러한 설정은 플러그인이 재구성 또는 데이터 가져오기 중에 자동으로 설정한 것입니다. 프로세스가 비정상적으로 종료되면 이 상태가 의도치 않게 유지될 수 있습니다.\n> 상태가 확실하지 않다면 이 과정을 다시 실행해 보세요. 재시작 전에 반드시 볼트를 백업해 주세요.",
|
||||
"moduleLiveSyncMain.optionKeepLiveSyncDisabled": "LiveSync 비활성화 유지",
|
||||
"moduleLiveSyncMain.optionResumeAndRestart": "재개 후 Obsidian 재시작",
|
||||
"moduleLiveSyncMain.titleScramEnabled": "Scram 활성화됨",
|
||||
"moduleLocalDatabase.logWaitingForReady": "준비 대기 중...",
|
||||
"moduleLog.showLog": "로그 표시",
|
||||
"moduleMigration.docUri": "https://github.com/vrtmrz/obsidian-livesync/blob/main/README.md#how-to-use",
|
||||
"moduleMigration.logBulkSendCorrupted": "청크 일괄 전송이 활성화되었지만, 이 기능에 문제가 있었습니다. 불편을 드려 죄송합니다. 자동으로 비활성화되었습니다.",
|
||||
"moduleMigration.logFetchRemoteTweakFailed": "원격 조정 값을 가져오는데 실패했습니다",
|
||||
"moduleMigration.logLocalDatabaseNotReady": "문제가 발생했습니다! 로컬 데이터베이스가 준비되지 않았습니다",
|
||||
"moduleMigration.logMigratedSameBehaviour": "이전과 같은 방식으로 동작하도록 db:${current}로 데이터 구조 전환이 완료되었습니다",
|
||||
"moduleMigration.logMigrationFailed": "${old}에서 ${current}로의 데이터 구조 전환이 실패했거나 중단되었습니다",
|
||||
"moduleMigration.logRedflag2CreationFail": "redflag2 생성에 실패했습니다",
|
||||
"moduleMigration.logRemoteTweakUnavailable": "원격 조정 값을 가져올 수 없습니다",
|
||||
"moduleMigration.logSetupCancelled": "설정이 취소되었습니다. Self-hosted LiveSync가 설정을 기다리고 있습니다!",
|
||||
"moduleMigration.msgFetchRemoteAgain": "이미 알고 계시겠지만, Self-hosted LiveSync의 기본 동작 방식과 데이터베이스 구조가 변경되었습니다.\n\n다행히도 여러분의 노력 덕분에 원격 데이터베이스는 이미 성공적으로 데이터 구조 전환이 완료된 것으로 보입니다. 축하드립니다!\n\n하지만 아직 일부 추가 작업이 필요합니다. 이 기기의 설정이 원격 데이터베이스와 호환되지 않으므로, 원격 데이터를 다시 가져와야 합니다. 지금 원격 데이터베이스를 다시 가져오시겠습니까?\n\n___참고: 설정이 변경되고 데이터베이스를 다시 불러오기 전까지는 동기화가 불가능합니다.___\n___참고2: 청크는 변경이 불가능한 구조이므로, 메타데이터와 차이점만 가져올 수 있습니다.___",
|
||||
"moduleMigration.msgInitialSetup": "이 기기는 **아직 초기 설정이 완료되지 않았습니다**. 지금부터 설정 과정을 안내해 드리겠습니다.\n\n모든 대화 내용은 클립보드에 복사할 수 있습니다. 나중에 참고하려면 Obsidian 노트에 붙여넣거나 번역 도구를 활용해 번역하셔도 됩니다.\n\n먼저, **Setup URI**를 가지고 계신가요?\n\n참고: Setup URI가 무엇인지 잘 모르시겠다면 [문서](${URI_DOC})를 참고해 주세요.",
|
||||
"moduleMigration.msgRecommendSetupUri": "Setup URI를 생성해 사용하는 것을 강력히 권장합니다.\nSetup URI가 무엇인지 잘 모르시겠다면 [문서](${URI_DOC})를 참고해 주세요. 중요한 내용이니 꼭 확인하시기 바랍니다.\n\n직접 수동 설정을 진행하시겠습니까?",
|
||||
"moduleMigration.msgSinceV02321": "v0.23.21부터 Self-hosted LiveSync의 기본 동작 방식과 데이터베이스 구조가 변경되었습니다. 주요 변경사항은 다음과 같습니다:\n\n1. **파일명 대소문자 구분 처리**\n 이제 파일명은 대소문자를 구분하지 않고 처리됩니다. 이는 파일명 구분을 제대로 지원하지 않는 Linux 및 iOS를 제외한 대부분의 플랫폼에서 유리한 변화입니다.\n (Linux나 iOS에서는 대소문자만 다른 파일이 존재할 경우 경고가 표시됩니다)\n\n2. **청크 리비전 관리 방식 개선**\n 청크는 변경 불가능한(immutable) 구조로 고정되며, 이를 통해 리비전 처리가 안정화되고 파일 저장 성능이 향상됩니다.\n\n___단, 위 기능을 활성화하려면 원격 및 로컬 데이터베이스를 모두 재구성해야 합니다. 이 과정은 수 분이 소요되므로 여유가 있을 때 실행하시는 것을 권장합니다.___\n\n- 기존 방식대로 유지하려면 `${KEEP}`을 선택해 이 과정을 건너뛸 수 있습니다.\n- 시간이 부족하다면 `${DISMISS}`를 눌러주시면 나중에 다시 안내드리겠습니다.\n- 이미 다른 기기에서 데이터베이스를 재구성하셨다면 `${DISMISS}`를 선택한 뒤 다시 동기화해 보세요. 차이점이 감지되면 다시 안내드리겠습니다.",
|
||||
"moduleMigration.optionAdjustRemote": "원격에 맞추기",
|
||||
"moduleMigration.optionDecideLater": "나중에 결정하기",
|
||||
"moduleMigration.optionEnableBoth": "둘 다 활성화",
|
||||
"moduleMigration.optionEnableFilenameCaseInsensitive": "#1만 활성화",
|
||||
"moduleMigration.optionEnableFixedRevisionForChunks": "#2만 활성화",
|
||||
"moduleMigration.optionHaveSetupUri": "예, 있습니다",
|
||||
"moduleMigration.optionKeepPreviousBehaviour": "이전 동작 유지",
|
||||
"moduleMigration.optionManualSetup": "모든 것을 수동으로 설정",
|
||||
"moduleMigration.optionNoAskAgain": "아니요 (나중에 다시 물어보기)",
|
||||
"moduleMigration.optionNoSetupUri": "아니요, 없습니다",
|
||||
"moduleMigration.optionRemindNextLaunch": "다음 시작 시 알림",
|
||||
"moduleMigration.optionSetupViaP2P": "%{short_p2p_sync}를 사용하여 설정",
|
||||
"moduleMigration.optionSetupWizard": "설정 마법사로 안내",
|
||||
"moduleMigration.optionYesFetchAgain": "예 (다시 가져오기)",
|
||||
"moduleMigration.titleCaseSensitivity": "대소문자 구분",
|
||||
"moduleMigration.titleRecommendSetupUri": "Setup URI 사용 권장",
|
||||
"moduleMigration.titleWelcome": "Self-hosted LiveSync에 오신 것을 환영합니다",
|
||||
"moduleObsidianMenu.replicate": "복제",
|
||||
"More actions": "추가 작업",
|
||||
"Move remotely deleted files to the trash, instead of deleting.": "원격에서 삭제된 파일을 삭제하는 대신 휴지통으로 이동합니다.",
|
||||
"Network warning style": "네트워크 경고 표시 방식",
|
||||
"New Remote": "새 원격",
|
||||
"No connected device information found. Cancelling Garbage Collection.": "연결된 기기 정보를 찾을 수 없습니다. Garbage Collection을 취소합니다.",
|
||||
"No limit configured": "제한이 설정되지 않음",
|
||||
"No, please take me back": "아니요, 이전으로 돌아가겠습니다",
|
||||
"Node ID": "노드 ID",
|
||||
"Node Information Missing": "노드 정보 누락",
|
||||
"Non-Synchronising files": "동기화하지 않는 파일",
|
||||
"Normal Files": "일반 파일",
|
||||
"Not all messages have been translated. And, please revert to \"Default\" when reporting errors.": "모든 메시지가 번역되지 않았습니다. 오류 신고 시 \"기본값\"으로 되돌려 주세요.",
|
||||
"Notify all setting files": "모든 설정 파일 알림",
|
||||
"Notify customized": "사용자 설정 알림",
|
||||
"Notify when other device has newly customized.": "다른 기기에서 새로운 사용자 설정이 있을 때 알림을 받습니다.",
|
||||
"Notify when the estimated remote storage size exceeds on start up": "시작 시 예상 원격 스토리지 크기가 초과되면 알림",
|
||||
"Number of batches to process at a time. Defaults to 40. Minimum is 2. This along with batch size controls how many docs are kept in memory at a time.": "한 번에 처리할 일괄 처리 수입니다. 기본값은 40입니다. 최소값은 2입니다. 이는 일괄 크기와 함께 메모리에 보관되는 문서 수를 제어합니다.",
|
||||
"Number of changes to sync at a time. Defaults to 50. Minimum is 2.": "한 번에 동기화할 변경 사항의 수입니다. 기본값은 50입니다. 최소값은 2입니다.",
|
||||
"Obsidian version": "Obsidian 버전",
|
||||
"obsidianLiveSyncSettingTab.btnApply": "적용",
|
||||
"obsidianLiveSyncSettingTab.btnCheck": "확인",
|
||||
"obsidianLiveSyncSettingTab.btnCopy": "복사",
|
||||
"obsidianLiveSyncSettingTab.btnDisable": "비활성화",
|
||||
"obsidianLiveSyncSettingTab.btnDiscard": "삭제",
|
||||
"obsidianLiveSyncSettingTab.btnEnable": "활성화",
|
||||
"obsidianLiveSyncSettingTab.btnFix": "수정",
|
||||
"obsidianLiveSyncSettingTab.btnGotItAndUpdated": "알겠습니다. 업데이트했습니다.",
|
||||
"obsidianLiveSyncSettingTab.btnNext": "다음",
|
||||
"obsidianLiveSyncSettingTab.btnStart": "시작",
|
||||
"obsidianLiveSyncSettingTab.btnTest": "테스트",
|
||||
"obsidianLiveSyncSettingTab.btnUse": "사용",
|
||||
"obsidianLiveSyncSettingTab.buttonFetch": "가져오기",
|
||||
"obsidianLiveSyncSettingTab.buttonNext": "다음",
|
||||
"obsidianLiveSyncSettingTab.defaultLanguage": "기본값",
|
||||
"obsidianLiveSyncSettingTab.descConnectSetupURI": "이것은 Setup URI로 Self-hosted LiveSync를 설정하는 권장 방법입니다.",
|
||||
"obsidianLiveSyncSettingTab.descCopySetupURI": "새 기기 설정에 완벽합니다!",
|
||||
"obsidianLiveSyncSettingTab.descEnableLiveSync": "위의 두 옵션 중 하나를 구성하거나 모든 구성을 수동으로 완료한 후에만 활성화하세요.",
|
||||
"obsidianLiveSyncSettingTab.descFetchConfigFromRemote": "이미 구성된 원격 서버에서 필요한 설정을 가져옵니다.",
|
||||
"obsidianLiveSyncSettingTab.descManualSetup": "권장하지 않지만 Setup URI가 없는 경우에 유용합니다",
|
||||
"obsidianLiveSyncSettingTab.descTestDatabaseConnection": "데이터베이스 연결을 엽니다. 원격 데이터베이스를 찾을 수 없고 데이터베이스 생성 권한이 있는 경우, 데이터베이스가 생성됩니다.",
|
||||
"obsidianLiveSyncSettingTab.descValidateDatabaseConfig": "데이터베이스 구성의 잠재적 문제를 확인하고 수정합니다.",
|
||||
"obsidianLiveSyncSettingTab.errAccessForbidden": "❗ 액세스가 금지되었습니다.",
|
||||
"obsidianLiveSyncSettingTab.errCannotContinueTest": "테스트를 계속할 수 없습니다.",
|
||||
"obsidianLiveSyncSettingTab.errCorsCredentials": "❗ cors.credentials가 잘못되었습니다",
|
||||
"obsidianLiveSyncSettingTab.errCorsNotAllowingCredentials": "❗ CORS에서 자격 증명을 허용하지 않습니다",
|
||||
"obsidianLiveSyncSettingTab.errCorsOrigins": "❗ cors.origins가 잘못되었습니다",
|
||||
"obsidianLiveSyncSettingTab.errEnableCors": "❗ httpd.enable_cors가 잘못되었습니다",
|
||||
"obsidianLiveSyncSettingTab.errMaxDocumentSize": "❗ couchdb.max_document_size가 낮습니다)",
|
||||
"obsidianLiveSyncSettingTab.errMaxRequestSize": "❗ chttpd.max_http_request_size가 낮습니다)",
|
||||
"obsidianLiveSyncSettingTab.errMissingWwwAuth": "❗ httpd.WWW-Authenticate가 누락되었습니다",
|
||||
"obsidianLiveSyncSettingTab.errRequireValidUser": "❗ chttpd.require_valid_user가 잘못되었습니다.",
|
||||
"obsidianLiveSyncSettingTab.errRequireValidUserAuth": "❗ chttpd_auth.require_valid_user가 잘못되었습니다.",
|
||||
"obsidianLiveSyncSettingTab.labelDisabled": "⏹️ : 비활성화됨",
|
||||
"obsidianLiveSyncSettingTab.labelEnabled": "🔁 : 활성화됨",
|
||||
"obsidianLiveSyncSettingTab.levelAdvanced": " (고급)",
|
||||
"obsidianLiveSyncSettingTab.levelEdgeCase": " (특수 사례)",
|
||||
"obsidianLiveSyncSettingTab.levelPowerUser": " (파워 유저)",
|
||||
"obsidianLiveSyncSettingTab.linkOpenInBrowser": "브라우저에서 열기",
|
||||
"obsidianLiveSyncSettingTab.linkPageTop": "페이지 상단",
|
||||
"obsidianLiveSyncSettingTab.linkTipsAndTroubleshooting": "팁 및 문제 해결",
|
||||
"obsidianLiveSyncSettingTab.linkTroubleshooting": "/docs/troubleshooting.md",
|
||||
"obsidianLiveSyncSettingTab.logCannotUseCloudant": "이 기능은 IBM Cloudant와 함께 사용할 수 없습니다.",
|
||||
"obsidianLiveSyncSettingTab.logCheckingConfigDone": "구성 확인 완료",
|
||||
"obsidianLiveSyncSettingTab.logCheckingConfigFailed": "구성 확인 실패",
|
||||
"obsidianLiveSyncSettingTab.logCheckingDbConfig": "데이터베이스 구성 확인 중",
|
||||
"obsidianLiveSyncSettingTab.logCheckPassphraseFailed": "오류: 원격 서버와 패스프레이즈 확인에 실패했습니다: \n${db}.",
|
||||
"obsidianLiveSyncSettingTab.logConfiguredDisabled": "구성된 동기화 모드: 비활성화됨",
|
||||
"obsidianLiveSyncSettingTab.logConfiguredLiveSync": "구성된 동기화 모드: LiveSync",
|
||||
"obsidianLiveSyncSettingTab.logConfiguredPeriodic": "구성된 동기화 모드: 주기적",
|
||||
"obsidianLiveSyncSettingTab.logCouchDbConfigFail": "CouchDB 구성: ${title} 실패",
|
||||
"obsidianLiveSyncSettingTab.logCouchDbConfigSet": "CouchDB 구성: ${title} -> ${key}를 ${value}로 설정",
|
||||
"obsidianLiveSyncSettingTab.logCouchDbConfigUpdated": "CouchDB 구성: ${title} 성공적으로 업데이트됨",
|
||||
"obsidianLiveSyncSettingTab.logDatabaseConnected": "데이터베이스 연결됨",
|
||||
"obsidianLiveSyncSettingTab.logEncryptionNoPassphrase": "패스프레이즈 없이는 암호화를 활성화할 수 없습니다",
|
||||
"obsidianLiveSyncSettingTab.logEncryptionNoSupport": "기기가 암호화를 지원하지 않습니다.",
|
||||
"obsidianLiveSyncSettingTab.logErrorOccurred": "오류가 발생했습니다!",
|
||||
"obsidianLiveSyncSettingTab.logEstimatedSize": "예상 크기: ${size}",
|
||||
"obsidianLiveSyncSettingTab.logPassphraseInvalid": "패스프레이즈가 유효하지 않습니다. 수정해 주세요.",
|
||||
"obsidianLiveSyncSettingTab.logPassphraseNotCompatible": "오류: 패스프레이즈가 원격 서버와 호환되지 않습니다! 다시 확인해 주세요!",
|
||||
"obsidianLiveSyncSettingTab.logRebuildNote": "동기화가 비활성화되었습니다. 원하는 경우 가져오기 후 다시 활성화하세요.",
|
||||
"obsidianLiveSyncSettingTab.logSelectAnyPreset": "프리셋을 선택하세요.",
|
||||
"obsidianLiveSyncSettingTab.msgAreYouSureProceed": "정말로 진행하시겠습니까?",
|
||||
"obsidianLiveSyncSettingTab.msgChangesNeedToBeApplied": "변경사항을 적용해야 합니다!",
|
||||
"obsidianLiveSyncSettingTab.msgConfigCheck": "--구성 확인--",
|
||||
"obsidianLiveSyncSettingTab.msgConfigCheckFailed": "구성 확인에 실패했습니다. 그래도 계속하시겠습니까?",
|
||||
"obsidianLiveSyncSettingTab.msgConnectionCheck": "--연결 확인--",
|
||||
"obsidianLiveSyncSettingTab.msgConnectionProxyNote": "구성 확인 후에도 연결 확인에 문제가 있는 경우, 리버스 프록시 구성을 확인해 주세요.",
|
||||
"obsidianLiveSyncSettingTab.msgCurrentOrigin": "현재 원점: {origin}",
|
||||
"obsidianLiveSyncSettingTab.msgDiscardConfirmation": "정말로 기존 설정과 데이터베이스를 삭제하시겠습니까?",
|
||||
"obsidianLiveSyncSettingTab.msgDone": "--완료--",
|
||||
"obsidianLiveSyncSettingTab.msgEnableCors": "httpd.enable_cors 설정",
|
||||
"obsidianLiveSyncSettingTab.msgEnableEncryptionRecommendation": "종단간 암호화와 경로 난독화를 활성화하는 것을 권장합니다. 정말로 암호화 없이 계속하시겠습니까?",
|
||||
"obsidianLiveSyncSettingTab.msgFetchConfigFromRemote": "원격 서버에서 구성을 가져오시겠습니까?",
|
||||
"obsidianLiveSyncSettingTab.msgGenerateSetupURI": "모든 작업이 완료되었습니다! 다른 기기를 설정하기 위해 Setup URI를 생성하시겠습니까?",
|
||||
"obsidianLiveSyncSettingTab.msgIfConfigNotPersistent": "서버 설정이 영구적으로 저장되지 않는 환경(예: Docker에서 실행 중)에서는 이곳의 값들이 변경될 수 있습니다. 연결이 가능해지면 서버의 local.ini 파일에서 설정을 수동으로 업데이트해 주세요.",
|
||||
"obsidianLiveSyncSettingTab.msgInvalidPassphrase": "암호화 패스프레이즈가 유효하지 않을 수 있습니다. 정말로 계속하시겠습니까?",
|
||||
"obsidianLiveSyncSettingTab.msgNewVersionNote": "업그레이드 알림으로 여기에 오셨나요? 버전 기록을 검토해 주세요. 만족하신다면 버튼을 클릭하세요. 새로운 업데이트 시 다시 안내됩니다.",
|
||||
"obsidianLiveSyncSettingTab.msgNonHTTPSInfo": "비 HTTPS URI로 구성되었습니다. 모바일 기기에서는 작동하지 않을 수 있으니 주의하세요.",
|
||||
"obsidianLiveSyncSettingTab.msgNonHTTPSWarning": "비 HTTPS URI에 연결할 수 없습니다. 구성을 업데이트하고 다시 시도해 주세요.",
|
||||
"obsidianLiveSyncSettingTab.msgNotice": "---공지사항---",
|
||||
"obsidianLiveSyncSettingTab.msgObjectStorageWarning": "⚠️ 주의: 이 기능은 아직 개발 중(WIP)입니다. 다음 사항을 유의해 주세요:\n- 추가 전용 구조(append-only)로 동작합니다. 저장 용량을 줄이려면 데이터 재구성이 필요합니다.\n- 기능이 다소 불안정할 수 있습니다.\n- 최초 동기화 시, 전체 히스토리가 원격 서버에서 전송됩니다. 데이터 용량 제한 및 느린 속도에 유의해 주세요.\n- 실시간 동기화는 변경된 부분만 처리됩니다.\n\n문제가 발생했거나 개선 아이디어가 있으시면 GitHub에 이슈를 등록해 주세요.\n기여에 깊이 감사드립니다.",
|
||||
"obsidianLiveSyncSettingTab.msgOriginCheck": "원점 확인: {org}",
|
||||
"obsidianLiveSyncSettingTab.msgRebuildRequired": "변경사항을 적용하려면 데이터베이스를 재구축해야 합니다. 아래 중 한 가지 방법을 선택해 주세요.\n\n<details>\n<summary>범례</summary>\n\n| 기호 | 의미 |\n|: ------ :| ------- |\n| ⇔ | 최신 상태 |\n| ⇄ | 동기화 균형 유지 |\n| ⇐,⇒ | 덮어쓰기 방식의 전송 |\n| ⇠,⇢ | 상대편에서 가져와 덮어쓰기 |\n\n</details>\n\n## ${OPTION_REBUILD_BOTH}\n개요: 📄 ⇒¹ 💻 ⇒² 🛰️ ⇢ⁿ 💻 ⇄ⁿ⁺¹ 📄\n이 기기의 기존 파일을 기반으로 로컬과 원격 데이터베이스를 모두 재구축합니다.\n이 과정에서 다른 기기는 일시적으로 접근이 제한되며, 가져오기 작업을 별도로 수행해야 합니다.\n\n## ${OPTION_FETCH}\n개요: 📄 ⇄² 💻 ⇐¹ 🛰️ ⇔ 💻 ⇔ 📄\n로컬 데이터베이스를 초기화한 후, 원격 데이터베이스에서 데이터를 가져와 재구축합니다.\n이는 원격 측에서 데이터베이스를 먼저 재구축한 경우에도 해당됩니다.\n\n## ${OPTION_ONLY_SETTING}\n설정만 저장합니다. **⚠️ 주의: 이 방법은 데이터 손상을 일으킬 수 있습니다.** 일반적으로는 전체 데이터베이스 재구축이 필요합니다.",
|
||||
"obsidianLiveSyncSettingTab.msgSelectAndApplyPreset": "마법사를 완료하려면 프리셋 항목을 선택하고 적용해 주세요.",
|
||||
"obsidianLiveSyncSettingTab.msgSetCorsCredentials": "cors.credentials 설정",
|
||||
"obsidianLiveSyncSettingTab.msgSetCorsOrigins": "cors.origins 설정",
|
||||
"obsidianLiveSyncSettingTab.msgSetMaxDocSize": "couchdb.max_document_size 설정",
|
||||
"obsidianLiveSyncSettingTab.msgSetMaxRequestSize": "chttpd.max_http_request_size 설정",
|
||||
"obsidianLiveSyncSettingTab.msgSetRequireValidUser": "chttpd.require_valid_user = true로 설정",
|
||||
"obsidianLiveSyncSettingTab.msgSetRequireValidUserAuth": "chttpd_auth.require_valid_user = true로 설정",
|
||||
"obsidianLiveSyncSettingTab.msgSettingModified": "\"${setting}\" 설정이 다른 기기에서 수정되었습니다. 설정을 다시 로드하려면 {HERE}를 클릭하세요. 변경사항을 무시하려면 다른 곳을 클릭하세요.",
|
||||
"obsidianLiveSyncSettingTab.msgSettingsUnchangeableDuringSync": "동기화 중에는 이 설정들을 변경할 수 없습니다. 잠금을 해제하려면 \"동기화 설정\"에서 모든 동기화를 비활성화해 주세요.",
|
||||
"obsidianLiveSyncSettingTab.msgSetWwwAuth": "httpd.WWW-Authenticate 설정",
|
||||
"obsidianLiveSyncSettingTab.nameApplySettings": "설정 적용",
|
||||
"obsidianLiveSyncSettingTab.nameConnectSetupURI": "Setup URI로 연결",
|
||||
"obsidianLiveSyncSettingTab.nameCopySetupURI": "현재 설정을 Setup URI로 복사",
|
||||
"obsidianLiveSyncSettingTab.nameDisableHiddenFileSync": "숨김 파일 동기화 비활성화",
|
||||
"obsidianLiveSyncSettingTab.nameDiscardSettings": "기존 설정 및 데이터베이스 삭제",
|
||||
"obsidianLiveSyncSettingTab.nameEnableHiddenFileSync": "숨김 파일 동기화 활성화",
|
||||
"obsidianLiveSyncSettingTab.nameEnableLiveSync": "LiveSync 활성화",
|
||||
"obsidianLiveSyncSettingTab.nameHiddenFileSynchronization": "숨김 파일 동기화",
|
||||
"obsidianLiveSyncSettingTab.nameManualSetup": "수동 설정",
|
||||
"obsidianLiveSyncSettingTab.nameTestConnection": "연결 테스트",
|
||||
"obsidianLiveSyncSettingTab.nameTestDatabaseConnection": "데이터베이스 연결 테스트",
|
||||
"obsidianLiveSyncSettingTab.nameValidateDatabaseConfig": "데이터베이스 구성 검증",
|
||||
"obsidianLiveSyncSettingTab.okAdminPrivileges": "✔ 관리자 권한이 있습니다.",
|
||||
"obsidianLiveSyncSettingTab.okCorsCredentials": "✔ cors.credentials가 정상입니다.",
|
||||
"obsidianLiveSyncSettingTab.okCorsCredentialsForOrigin": "CORS 자격 증명 정상",
|
||||
"obsidianLiveSyncSettingTab.okCorsOriginMatched": "✔ CORS 원점 정상",
|
||||
"obsidianLiveSyncSettingTab.okCorsOrigins": "✔ cors.origins가 정상입니다.",
|
||||
"obsidianLiveSyncSettingTab.okEnableCors": "✔ httpd.enable_cors가 정상입니다.",
|
||||
"obsidianLiveSyncSettingTab.okMaxDocumentSize": "✔ couchdb.max_document_size가 정상입니다.",
|
||||
"obsidianLiveSyncSettingTab.okMaxRequestSize": "✔ chttpd.max_http_request_size가 정상입니다.",
|
||||
"obsidianLiveSyncSettingTab.okRequireValidUser": "✔ chttpd.require_valid_user가 정상입니다.",
|
||||
"obsidianLiveSyncSettingTab.okRequireValidUserAuth": "✔ chttpd_auth.require_valid_user가 정상입니다.",
|
||||
"obsidianLiveSyncSettingTab.okWwwAuth": "✔ httpd.WWW-Authenticate가 정상입니다.",
|
||||
"obsidianLiveSyncSettingTab.optionApply": "적용",
|
||||
"obsidianLiveSyncSettingTab.optionCancel": "취소",
|
||||
"obsidianLiveSyncSettingTab.optionCouchDB": "CouchDB",
|
||||
"obsidianLiveSyncSettingTab.optionDisableAllAutomatic": "모든 자동 비활성화",
|
||||
"obsidianLiveSyncSettingTab.optionFetchFromRemote": "원격에서 가져오기",
|
||||
"obsidianLiveSyncSettingTab.optionHere": "여기",
|
||||
"obsidianLiveSyncSettingTab.optionLiveSync": "LiveSync 동기화",
|
||||
"obsidianLiveSyncSettingTab.optionMinioS3R2": "Minio,S3,R2",
|
||||
"obsidianLiveSyncSettingTab.optionOkReadEverything": "네, 모든 것을 읽었습니다.",
|
||||
"obsidianLiveSyncSettingTab.optionOnEvents": "이벤트 시",
|
||||
"obsidianLiveSyncSettingTab.optionPeriodicAndEvents": "주기적 및 이벤트 시",
|
||||
"obsidianLiveSyncSettingTab.optionPeriodicWithBatch": "주기적 w/ 일괄",
|
||||
"obsidianLiveSyncSettingTab.optionRebuildBoth": "이 기기에서 둘 다 재구축",
|
||||
"obsidianLiveSyncSettingTab.optionSaveOnlySettings": "(위험) 설정만 저장",
|
||||
"obsidianLiveSyncSettingTab.panelChangeLog": "변경 로그",
|
||||
"obsidianLiveSyncSettingTab.panelGeneralSettings": "일반 설정",
|
||||
"obsidianLiveSyncSettingTab.panelPrivacyEncryption": "개인정보 보호 및 암호화",
|
||||
"obsidianLiveSyncSettingTab.panelRemoteConfiguration": "원격 구성",
|
||||
"obsidianLiveSyncSettingTab.panelSetup": "설정",
|
||||
"obsidianLiveSyncSettingTab.titleAppearance": "외관",
|
||||
"obsidianLiveSyncSettingTab.titleConflictResolution": "충돌 해결",
|
||||
"obsidianLiveSyncSettingTab.titleCongratulations": "축하합니다!",
|
||||
"obsidianLiveSyncSettingTab.titleCouchDB": "CouchDB 서버",
|
||||
"obsidianLiveSyncSettingTab.titleDeletionPropagation": "삭제 전파",
|
||||
"obsidianLiveSyncSettingTab.titleEncryptionNotEnabled": "암호화가 활성화되지 않음",
|
||||
"obsidianLiveSyncSettingTab.titleEncryptionPassphraseInvalid": "암호화 패스프레이즈 유효하지 않음",
|
||||
"obsidianLiveSyncSettingTab.titleExtraFeatures": "추가 및 고급 기능 활성화",
|
||||
"obsidianLiveSyncSettingTab.titleFetchConfig": "구성 가져오기",
|
||||
"obsidianLiveSyncSettingTab.titleFetchConfigFromRemote": "원격 서버에서 구성 가져오기",
|
||||
"obsidianLiveSyncSettingTab.titleFetchSettings": "설정 가져오기",
|
||||
"obsidianLiveSyncSettingTab.titleHiddenFiles": "숨김 파일",
|
||||
"obsidianLiveSyncSettingTab.titleLogging": "로깅",
|
||||
"obsidianLiveSyncSettingTab.titleMinioS3R2": "MinIO, S3, R2",
|
||||
"obsidianLiveSyncSettingTab.titleNotification": "알림",
|
||||
"obsidianLiveSyncSettingTab.titleOnlineTips": "온라인 팁",
|
||||
"obsidianLiveSyncSettingTab.titleQuickSetup": "빠른 설정",
|
||||
"obsidianLiveSyncSettingTab.titleRebuildRequired": "재구축 필요",
|
||||
"obsidianLiveSyncSettingTab.titleRemoteConfigCheckFailed": "원격 구성 확인 실패",
|
||||
"obsidianLiveSyncSettingTab.titleRemoteServer": "원격 서버",
|
||||
"obsidianLiveSyncSettingTab.titleReset": "리셋",
|
||||
"obsidianLiveSyncSettingTab.titleSetupOtherDevices": "다른 기기 설정",
|
||||
"obsidianLiveSyncSettingTab.titleSynchronizationMethod": "동기화 방법",
|
||||
"obsidianLiveSyncSettingTab.titleSynchronizationPreset": "동기화 프리셋",
|
||||
"obsidianLiveSyncSettingTab.titleSyncSettings": "동기화 설정",
|
||||
"obsidianLiveSyncSettingTab.titleSyncSettingsViaMarkdown": "마크다운을 통한 동기화 설정",
|
||||
"obsidianLiveSyncSettingTab.titleUpdateThinning": "업데이트 솎아내기",
|
||||
"obsidianLiveSyncSettingTab.warnCorsOriginUnmatched": "⚠ CORS 원점이 일치하지 않습니다 {from}->{to}",
|
||||
"obsidianLiveSyncSettingTab.warnNoAdmin": "⚠ 관리자 권한이 없습니다.",
|
||||
"Ok": "확인",
|
||||
"Old Algorithm": "이전 알고리즘",
|
||||
"Older fallback (Slow, W/O WebAssembly)": "이전 대체 방식 (느림, WebAssembly 없음)",
|
||||
"Open": "열기",
|
||||
"Open the dialog": "대화상자 열기",
|
||||
"Overwrite": "덮어쓰기",
|
||||
"Overwrite patterns": "덮어쓰기 패턴",
|
||||
"Overwrite remote": "원격 덮어쓰기",
|
||||
"Overwrite remote with local DB and passphrase.": "로컬 DB와 암호문구로 원격을 덮어씁니다.",
|
||||
"Overwrite Server Data with This Device's Files": "이 기기의 파일로 서버 데이터를 덮어쓰기",
|
||||
"P2P.AskPassphraseForDecrypt": "원격 피어가 구성을 공유했습니다. 구성을 복호화하려면 패스프레이즈를 입력해 주세요.",
|
||||
"P2P.AskPassphraseForShare": "원격 피어가 이 기기의 구성을 요청했습니다. 구성을 공유하려면 패스프레이즈를 입력해 주세요. 이 대화상자를 취소하여 요청을 무시할 수 있습니다.",
|
||||
"P2P.DisabledButNeed": "%{title_p2p_sync}가 비활성화되어 있습니다. 정말로 활성화하시겠습니까?",
|
||||
"P2P.FailedToOpen": "시그널링 서버에 P2P 연결을 열 수 없습니다.",
|
||||
"P2P.NoAutoSyncPeers": "자동 동기화 피어를 찾을 수 없습니다. %{long_p2p_sync} 창에서 피어를 설정해 주세요.",
|
||||
"P2P.NoKnownPeers": "피어가 감지되지 않았습니다. 다른 피어의 접속을 기다리고 있습니다...",
|
||||
"P2P.Note.description": "이 복제기는 피어 투 피어(P2P) 연결을 통해 다른 기기들과 볼트를 동기화할 수 있도록 합니다. 클라우드 서비스를 거치지 않고도 기기간 동기화를 구현할 수 있습니다.\n\n이 복제기는 Trystero를 기반으로 하며, 기기 간 연결을 설정하기 위해 시그널링 서버를 사용합니다. 시그널링 서버는 단순히 연결 정보를 교환하는 용도로만 사용되며, 사용자 데이터를 저장하거나 접근하지 않습니다 (또는 그래야만 합니다).\n\n시그널링 서버는 누구나 운영할 수 있으며, 이는 단순한 Nostr 릴레이입니다. 편의성과 복제기의 작동 확인을 위해 `vrtmrz`가 자체적으로 시그널링 서버 인스턴스를 운영 중입니다. 사용자는 `vrtmrz`가 제공하는 실험용 서버를 사용할 수도 있고, 별도로 자신만의 서버를 설정할 수도 있습니다.\n\n참고로, 시그널링 서버는 사용자 데이터를 저장하지 않더라도 일부 기기의 연결 정보는 볼 수 있습니다. 이 점을 유의해 주세요. 특히 타인이 운영하는 서버를 사용할 경우 주의가 필요합니다.",
|
||||
"P2P.Note.important_note": "피어 투 피어(P2P) 복제기의 실험적 구현입니다.",
|
||||
"P2P.Note.important_note_sub": "이 기능은 아직 실험 단계에 있습니다. 이 기능이 예상대로 작동하지 않을 수 있음을 알아주세요. 또한 버그, 보안 문제 및 기타 문제가 있을 수 있습니다. 이 기능을 사용할 때는 본인의 책임 하에 사용하세요. 이 기능의 개발에 기여해 주세요.",
|
||||
"P2P.Note.Summary": "이 기능은 무엇인가요? (설명과 참고사항이 적혀있습니다. 한 번 읽어보세요!)",
|
||||
"P2P.NotEnabled": "%{title_p2p_sync}가 활성화되지 않았습니다. 새로운 연결을 열 수 없습니다.",
|
||||
"P2P.P2PReplication": "%{P2P} 복제",
|
||||
"P2P.PaneTitle": "%{long_p2p_sync}",
|
||||
"P2P.ReplicatorInstanceMissing": "P2P 동기화 복제기를 찾을 수 없습니다. 구성되지 않았거나 활성화되지 않았을 수 있습니다.",
|
||||
"P2P.SeemsOffline": "피어 ${name}이(가) 오프라인인 것 같습니다. 건너뜁니다.",
|
||||
"P2P.SyncAlreadyRunning": "P2P 동기화가 이미 실행 중입니다.",
|
||||
"P2P.SyncCompleted": "P2P 동기화가 완료되었습니다.",
|
||||
"P2P.SyncStartedWith": "${name}과의 P2P 동기화가 시작되었습니다.",
|
||||
"paneMaintenance.markDeviceResolvedAfterBackup": "백업 후 장치를 해결됨으로 표시",
|
||||
"paneMaintenance.remoteLockedAndDeviceNotAccepted": "원격 데이터베이스가 잠겨 있으며 이 장치는 아직 승인되지 않았습니다.",
|
||||
"paneMaintenance.remoteLockedResolvedDevice": "원격 데이터베이스가 잠겨 있지만 이 장치는 이미 승인되었습니다.",
|
||||
"paneMaintenance.unlockDatabaseReady": "데이터베이스 잠금 해제",
|
||||
"Passphrase": "패스프레이즈",
|
||||
"Passphrase of sensitive configuration items": "민감한 구성 항목의 패스프레이즈",
|
||||
"password": "비밀번호",
|
||||
"Password": "비밀번호",
|
||||
"Paste a connection string": "연결 문자열 붙여넣기",
|
||||
"Paste the Setup URI generated from one of your active devices.": "현재 사용 중인 장치 중 하나에서 생성한 설정 URI를 붙여 넣으세요。",
|
||||
"Path Obfuscation": "경로 난독화",
|
||||
"Patterns to match files for overwriting instead of merging": "병합 대신 덮어쓸 파일을 판별하는 패턴",
|
||||
"Patterns to match files for syncing": "동기화할 파일을 판별하는 패턴",
|
||||
"Peer-to-Peer only": "Peer-to-Peer 전용",
|
||||
"Peer-to-Peer Synchronisation": "피어 투 피어 동기화",
|
||||
"Per-file-saved customization sync": "파일별 저장 사용자 설정 동기화",
|
||||
"Perform": "실행",
|
||||
"Perform cleanup": "정리 실행",
|
||||
"Perform Garbage Collection": "가비지 컬렉션 실행",
|
||||
"Perform Garbage Collection to remove unused chunks and reduce database size.": "사용하지 않는 청크를 제거하고 데이터베이스 크기를 줄이기 위해 가비지 컬렉션을 실행합니다.",
|
||||
"Periodic Sync interval": "주기적 동기화 간격",
|
||||
"Pick a file to resolve conflict": "충돌을 해결할 파일 선택",
|
||||
"Please disable 'Read chunks online' in settings to use Garbage Collection.": "Garbage Collection을 사용하려면 설정에서 \"Read chunks online\"을 비활성화해 주세요.",
|
||||
"Please enable 'Compute revisions for chunks' in settings to use Garbage Collection.": "Garbage Collection을 사용하려면 설정에서 \"Compute revisions for chunks\"를 활성화해 주세요.",
|
||||
"Please select 'Cancel' explicitly to cancel this operation.": "이 작업을 취소하려면 반드시 \"취소\"를 명시적으로 선택해 주세요.",
|
||||
"Please select a method to import the settings from another device.": "다른 장치에서 설정을 가져올 방법을 선택해 주세요。",
|
||||
"Please select an option to proceed": "계속하려면 항목을 선택해 주세요",
|
||||
"Please select the type of server to which you are connecting.": "연결할 서버 유형을 선택해 주세요。",
|
||||
"Please set device name to identify this device. This name should be unique among your devices. While not configured, we cannot enable this feature.": "이 장치를 식별할 장치 이름을 설정해 주세요. 이 이름은 장치 간에 고유해야 합니다. 설정되기 전까지는 이 기능을 활성화할 수 없습니다.",
|
||||
"Please set this device name": "이 장치 이름을 설정해 주세요",
|
||||
"Plug-in version": "플러그인 버전",
|
||||
"Prepare the 'report' to create an issue": "이슈 생성을 위한 '보고서' 준비",
|
||||
"Presets": "프리셋",
|
||||
"Proceed Garbage Collection": "Garbage Collection 계속",
|
||||
"Proceed with Setup URI": "설정 URI로 계속",
|
||||
"Proceeding with Garbage Collection, ignoring missing nodes.": "누락된 노드를 무시하고 Garbage Collection을 계속 진행합니다.",
|
||||
"Proceeding with Garbage Collection.": "Garbage Collection을 진행합니다.",
|
||||
"Process small files in the foreground": "포그라운드에서 작은 파일 처리",
|
||||
"Progress": "진행 상태",
|
||||
"PureJS fallback (Fast, W/O WebAssembly)": "PureJS 대체 방식 (빠름, WebAssembly 없음)",
|
||||
"Purge all download/upload cache.": "모든 다운로드/업로드 캐시를 제거합니다.",
|
||||
"Purge all journal counter": "모든 저널 카운터 삭제",
|
||||
"Rebuild local and remote database with local files.": "로컬 파일로 로컬 및 원격 데이터베이스를 다시 구축합니다.",
|
||||
"Rebuilding Operations (Remote Only)": "재구축 작업 (원격 전용)",
|
||||
"Recreate all": "모두 다시 생성",
|
||||
"Recreate missing chunks for all files": "모든 파일의 누락된 청크 다시 생성",
|
||||
"RedFlag.Fetch.Method.Desc": "어떻게 가져오시겠습니까?\n- %{RedFlag.Fetch.Method.FetchSafer}. (권장)\n **낮은 트래픽**, **높은 CPU**, **낮은 위험**\n- %{RedFlag.Fetch.Method.FetchSmoother}.\n **낮은 트래픽**, **보통 CPU**, **낮음에서 보통 위험**\n- %{RedFlag.Fetch.Method.FetchTraditional}.\n **높은 트래픽**, **낮은 CPU**, **낮음에서 보통 위험**\n\n>[!INFO]- 세부 사항\n> ## %{RedFlag.Fetch.Method.FetchSafer}. (권장)\n> **낮은 트래픽**, **높은 CPU**, **낮은 위험**\n> 이 옵션은 원격 소스에서 데이터를 가져오기 전에 기존 로컬 파일을 사용하여 로컬 데이터베이스를 먼저 생성합니다.\n> 로컬과 원격 모두에 일치하는 파일이 있으면 둘 사이의 차이점만 전송됩니다.\n> 하지만 두 위치 모두에 있는 파일은 초기에 충돌 파일로 처리됩니다. 실제로 충돌하지 않는다면 자동으로 해결되지만 이 과정은 시간이 걸릴 수 있습니다.\n> 이는 일반적으로 가장 안전한 방법으로 데이터 손실 위험을 최소화합니다.\n> ## %{RedFlag.Fetch.Method.FetchSmoother}.\n> **낮은 트래픽**, **보통 CPU**, **낮음에서 보통 위험** (작업에 따라)\n> 이 옵션은 먼저 로컬 파일에서 데이터베이스용 청크를 생성한 다음 데이터를 가져옵니다. 따라서 로컬에 없는 청크만 전송됩니다. 하지만 모든 메타데이터는 원격 소스에서 가져옵니다.\n> 그런 다음 로컬 파일이 시작 시 이 메타데이터와 비교됩니다. 더 새로운 것으로 간주되는 콘텐츠가 오래된 것을 덮어씁니다(수정 시간 기준). 이 결과는 원격 데이터베이스에 다시 동기화됩니다.\n> 로컬 파일이 실제로 최신 타임스탬프라면 일반적으로 안전합니다. 하지만 파일이 더 새로운 타임스탬프를 가지고 있지만 더 오래된 콘텐츠를 가지고 있다면(초기 `welcome.md`처럼) 문제가 발생할 수 있습니다.\n> 이는 \"%{RedFlag.Fetch.Method.FetchSafer}\"보다 CPU를 덜 사용하고 더 빠르지만 주의 깊게 사용하지 않으면 데이터 손실로 이어질 수 있습니다.\n> ## %{RedFlag.Fetch.Method.FetchTraditional}.\n> **높은 트래픽**, **낮은 CPU**, **낮음에서 보통 위험** (작업에 따라)\n> 모든 것이 원격에서 가져와집니다.\n> %{RedFlag.Fetch.Method.FetchSmoother}와 유사하지만 모든 청크가 원격 소스에서 가져와집니다.\n> 이는 가장 전통적인 가져오기 방법으로 일반적으로 가장 많은 네트워크 트래픽과 시간을 소모합니다. 또한 '%{RedFlag.Fetch.Method.FetchSmoother}' 옵션과 유사하게 원격 파일을 덮어쓸 위험이 있습니다.\n> 하지만 가장 오래되고 가장 직접적인 접근 방식이기 때문에 종종 가장 안정적인 방법으로 간주됩니다.",
|
||||
"RedFlag.Fetch.Method.FetchSafer": "가져오기 전에 로컬 데이터베이스를 한 번 생성",
|
||||
"RedFlag.Fetch.Method.FetchSmoother": "가져오기 전에 로컬 파일 청크 생성",
|
||||
"RedFlag.Fetch.Method.FetchTraditional": "원격에서 모든 것 가져오기",
|
||||
"RedFlag.Fetch.Method.Title": "어떻게 가져오시겠습니까?",
|
||||
"Reduces storage space by discarding all non-latest revisions. This requires the same amount of free space on the remote server and the local client.": "최신 버전이 아닌 모든 리비전을 제거하여 저장 공간을 줄입니다. 이 작업을 수행하려면 원격 서버와 로컬 클라이언트에 동일한 양의 여유 공간이 필요합니다.",
|
||||
"Reducing the frequency with which on-disk changes are reflected into the DB": "디스크 변경 사항이 데이터베이스에 반영되는 빈도를 줄입니다",
|
||||
"Region": "지역",
|
||||
"Remediation": "복구 조치",
|
||||
"Remediation Setting Changed": "복구 설정이 변경됨",
|
||||
"Remote Database Tweak (In sunset)": "원격 데이터베이스 조정 (폐기 예정)",
|
||||
"Remote Databases": "원격 데이터베이스",
|
||||
"Remote name": "원격 이름",
|
||||
"Remote server type": "원격 서버 유형",
|
||||
"Remote Type": "원격 유형",
|
||||
"Rename": "이름 바꾸기",
|
||||
"Replicator.Dialogue.Locked.Action.Dismiss": "재확인을 위해 취소",
|
||||
"Replicator.Dialogue.Locked.Action.Fetch": "원격 데이터베이스에서 모든 것을 다시 가져오기",
|
||||
"Replicator.Dialogue.Locked.Action.Unlock": "원격 데이터베이스 잠금 해제",
|
||||
"Replicator.Dialogue.Locked.Message": "원격 데이터베이스가 잠겨 있습니다. 이는 일부 터미널에서 데이터베이스를 재구축했기 때문입니다.\n따라서 현재 기기는 데이터베이스 손상을 방지하기 위해 연결을 일시적으로 보류해야 합니다.\n\n선택할 수 있는 세 가지 방법이 있습니다:\n\n- %{Replicator.Dialogue.Locked.Action.Fetch}\n 가장 권장되고 신뢰할 수 있는 방법입니다. 로컬 데이터베이스를 초기화한 뒤, 원격 데이터베이스의 전체 데이터를 다시 가져옵니다. 대부분의 경우 안전하게 수행할 수 있으나, 시간이 다소 걸리며 안정적인 네트워크 환경에서 진행해야 합니다.\n- %{Replicator.Dialogue.Locked.Action.Unlock}\n 이 방법은 다른 동기화 방식으로 이미 완전하고 안정적으로 동기화된 경우에만 사용할 수 있습니다. 단순히 파일이 같다는 의미가 아니므로, 확신이 없다면 사용을 피하는 것이 좋습니다.\n- %{Replicator.Dialogue.Locked.Action.Dismiss}\n 이번 작업을 취소하고, 다음 요청 시 다시 안내받습니다.\n",
|
||||
"Replicator.Dialogue.Locked.Message.Fetch": "모든 것 가져오기가 예약되었습니다. 이를 수행하기 위해 플러그인이 재시작됩니다.",
|
||||
"Replicator.Dialogue.Locked.Message.Unlocked": "원격 데이터베이스 잠금이 해제되었습니다. 작업을 다시 시도해 주세요.",
|
||||
"Replicator.Dialogue.Locked.Title": "잠김",
|
||||
"Replicator.Message.Cleaned": "데이터베이스 정리가 진행 중입니다. 복제가 취소되었습니다",
|
||||
"Replicator.Message.InitialiseFatalError": "사용 가능한 복제기가 없습니다. 치명적인 오류입니다.",
|
||||
"Replicator.Message.Pending": "일부 파일 이벤트가 대기 중입니다. 복제가 취소되었습니다.",
|
||||
"Replicator.Message.SomeModuleFailed": "일부 모듈 실패로 복제가 취소되었습니다",
|
||||
"Replicator.Message.VersionUpFlash": "설정을 열고 메시지를 확인해 주세요. 복제가 취소되었습니다.",
|
||||
"Requires restart of Obsidian": "Obsidian 재시작 필요",
|
||||
"Requires restart of Obsidian.": "Obsidian 재시작이 필요합니다.",
|
||||
"Rerun Onboarding Wizard": "온보딩 마법사 다시 실행",
|
||||
"Rerun the onboarding wizard to set up Self-hosted LiveSync again.": "온보딩 마법사를 다시 실행하여 Self-hosted LiveSync를 다시 설정합니다.",
|
||||
"Rerun Wizard": "마법사 다시 실행",
|
||||
"Resend": "다시 보내기",
|
||||
"Resend all chunks to the remote.": "모든 청크를 원격으로 다시 보냅니다.",
|
||||
"Reset": "재설정",
|
||||
"Reset all": "모두 재설정",
|
||||
"Reset all journal counter": "모든 저널 카운터 재설정",
|
||||
"Reset journal received history": "저널 수신 기록 재설정",
|
||||
"Reset journal sent history": "저널 송신 기록 재설정",
|
||||
"Reset notification threshold and check the remote database usage": "알림 임계값을 초기화하고 원격 데이터베이스 사용량 확인",
|
||||
"Reset received": "수신 기록 재설정",
|
||||
"Reset sent history": "송신 기록 재설정",
|
||||
"Reset Synchronisation information": "동기화 정보 재설정",
|
||||
"Reset Synchronisation on This Device": "이 장치의 동기화 상태 재설정",
|
||||
"Reset the remote storage size threshold and check the remote storage size again.": "원격 저장소 크기 임계값을 초기화하고 원격 저장소 크기를 다시 확인합니다.",
|
||||
"Resolve All": "모두 해결",
|
||||
"Resolve all conflicted files": "충돌한 모든 파일 해결",
|
||||
"Resolve All conflicted files by the newer one": "충돌한 모든 파일을 최신 버전으로 해결",
|
||||
"Resolve all conflicted files by the newer one. Caution: This will overwrite the older one, and cannot resurrect the overwritten one.": "충돌한 모든 파일을 더 최신 버전으로 해결합니다. 주의: 이전 버전은 덮어써지며 복원할 수 없습니다.",
|
||||
"Restart Now": "지금 재시작",
|
||||
"Restore or reconstruct local database from remote.": "원격에서 로컬 데이터베이스를 복원하거나 재구축합니다.",
|
||||
"Run Doctor": "진단 실행",
|
||||
"S3/MinIO/R2 Object Storage": "S3/MinIO/R2 객체 스토리지",
|
||||
"Save settings to a markdown file. You will be notified when new settings arrive. You can set different files by the platform.": "설정을 마크다운 파일에 저장합니다. 새로운 설정이 도착하면 알림을 받게 됩니다. 플랫폼별로 다른 파일을 설정할 수 있습니다.",
|
||||
"Saving will be performed forcefully after this number of seconds.": "이 시간(초) 후에 강제로 저장이 수행됩니다.",
|
||||
"Scan a QR Code (Recommended for mobile)": "QR 코드 스캔(모바일 권장)",
|
||||
"Scan changes on customization sync": "사용자 설정 동기화 시 변경 사항 검색",
|
||||
"Scan customization automatically": "사용자 설정 자동 검색",
|
||||
"Scan customization before replicating.": "복제하기 전에 사용자 설정을 검색합니다.",
|
||||
"Scan customization every 1 minute.": "1분마다 사용자 설정을 검색합니다.",
|
||||
"Scan customization periodically": "주기적으로 사용자 설정 검색",
|
||||
"Scan for Broken files": "손상된 파일 검사",
|
||||
"Scan for hidden files before replication": "복제 전 숨겨진 파일 검색",
|
||||
"Scan hidden files periodically": "주기적으로 숨겨진 파일 검색",
|
||||
"Scan the QR code displayed on an active device using this device's camera.": "이 장치의 카메라로 활성 장치에 표시된 QR 코드를 스캔하세요。",
|
||||
"Schedule and Restart": "예약 후 재시작",
|
||||
"Scram Switches": "긴급 전환 스위치",
|
||||
"Scram!": "긴급 조치",
|
||||
"Seconds, 0 to disable": "초 단위, 0으로 설정하면 비활성화",
|
||||
"Seconds. Saving to the local database will be delayed until this value after we stop typing or saving.": "초 단위입니다. 타이핑이나 저장을 중단한 후 이 시간동안 로컬 데이터베이스 저장이 지연됩니다.",
|
||||
"Secret Key": "시크릿 키",
|
||||
"Select the database adapter to use.": "사용할 데이터베이스 어댑터를 선택합니다.",
|
||||
"Send": "보내기",
|
||||
"Send chunks": "청크 보내기",
|
||||
"Server URI": "서버 URI",
|
||||
"Setting.GenerateKeyPair.Desc": "키 페어를 생성했습니다!\n\n참고: 이 키 페어는 다시 표시되지 않습니다. 안전한 곳에 저장해 주세요. 분실하면 새 키 페어를 생성해야 합니다.\n참고 2: 공개 키는 spki 형식이고, 개인 키는 pkcs8 형식입니다. 편의상 공개 키의 줄 바꿈은 `\\n`으로 변환됩니다.\n참고 3: 공개 키는 원격 데이터베이스에서 구성되어야 하고, 개인 키는 로컬 기기에서 구성되어야 합니다.\n\n>[!FOR YOUR EYES ONLY]-\n> <div class=\"sls-keypair\">\n>\n> ### 공개 키\n> ```\n${public_key}\n> ```\n>\n> ### 개인 키\n> ```\n${private_key}\n> ```\n>\n> </div>\n\n>[!Both for copying]-\n>\n> <div class=\"sls-keypair\">\n>\n> ```\n${public_key}\n${private_key}\n> ```\n>\n> </div>\n\n\n",
|
||||
"Setting.GenerateKeyPair.Title": "새 키 페어가 생성되었습니다!",
|
||||
"Setting.TroubleShooting": "문제 해결",
|
||||
"Setting.TroubleShooting.Doctor": "설정 진단 마법사",
|
||||
"Setting.TroubleShooting.Doctor.Desc": "최적화되지 않은 설정을 감지합니다. (데이터 구조 전환 시와 동일)",
|
||||
"Setting.TroubleShooting.ScanBrokenFiles": "손상된 파일 검사",
|
||||
"Setting.TroubleShooting.ScanBrokenFiles.Desc": "데이터베이스에 올바르게 저장되지 않은 파일을 검사합니다.",
|
||||
"SettingTab.Message.AskRebuild": "변경 사항을 적용하려면 원격 데이터베이스에서 가져와야 합니다. 계속 진행하시겠습니까?",
|
||||
"Setup URI dialog cancelled.": "Setup URI 대화 상자가 취소되었습니다.",
|
||||
"Setup.QRCode": "설정을 전송하기 위한 QR 코드를 생성했습니다. 휴대폰이나 다른 기기로 QR 코드를 스캔해 주세요.\n참고: QR 코드는 암호화되지 않았으므로 열 때 주의하세요.\n\n>[!FOR YOUR EYES ONLY]-\n> <div class=\"sls-qr\">${qr_image}</div>",
|
||||
"Setup.RemoteE2EE.AdvancedTitle": "고급",
|
||||
"Setup.RemoteE2EE.AlgorithmWarning": "암호화 알고리즘을 변경하면 다른 알고리즘으로 암호화된 기존 데이터에 접근할 수 없게 됩니다. 모든 기기에서 동일한 알고리즘을 사용하도록 설정해 데이터 접근성을 유지하세요.",
|
||||
"Setup.RemoteE2EE.ButtonCancel": "취소",
|
||||
"Setup.RemoteE2EE.ButtonProceed": "진행",
|
||||
"Setup.RemoteE2EE.DefaultAlgorithmDesc": "대부분의 경우 기본 알고리즘(${algorithm})을 그대로 사용하는 것이 좋습니다. 이 설정은 기존 Vault가 다른 형식으로 암호화되어 있는 경우에만 필요합니다.",
|
||||
"Setup.RemoteE2EE.Guidance": "엔드투엔드 암호화 설정을 구성해 주세요.",
|
||||
"Setup.RemoteE2EE.LabelEncrypt": "엔드투엔드 암호화",
|
||||
"Setup.RemoteE2EE.LabelEncryptionAlgorithm": "암호화 알고리즘",
|
||||
"Setup.RemoteE2EE.LabelObfuscateProperties": "속성 난독화",
|
||||
"Setup.RemoteE2EE.MultiDestinationWarning": "여러 동기화 대상에 연결하는 경우에도 이 설정은 동일해야 합니다.",
|
||||
"Setup.RemoteE2EE.ObfuscatePropertiesDesc": "속성(예: 파일 경로, 크기, 생성일 및 수정일)을 난독화하면 원격 서버에서 파일과 폴더의 구조 및 이름을 식별하기 어렵게 만들어 보안을 한층 강화할 수 있습니다. 이는 개인 정보를 보호하고 권한 없는 사용자가 데이터에 관한 정보를 추론하기 어렵게 만듭니다.",
|
||||
"Setup.RemoteE2EE.PassphraseValidationLine1": "엔드투엔드 암호화 패스프레이즈는 실제 동기화가 시작되기 전까지 검증되지 않는다는 점에 유의하세요. 이것은 데이터를 보호하기 위한 보안 조치입니다.",
|
||||
"Setup.RemoteE2EE.PassphraseValidationLine2": "따라서 서버 정보를 수동으로 구성할 때는 각별히 주의해 주세요. 잘못된 패스프레이즈를 입력하면 서버의 데이터가 손상됩니다. 이는 의도된 동작이니 반드시 이해하고 진행해 주세요.",
|
||||
"Setup.RemoteE2EE.PlaceholderPassphrase": "패스프레이즈를 입력하세요",
|
||||
"Setup.RemoteE2EE.StronglyRecommendedLine1": "엔드투엔드 암호화를 활성화하면 데이터가 원격 서버로 전송되기 전에 이 기기에서 암호화됩니다. 즉, 누군가 서버에 접근하더라도 패스프레이즈 없이는 데이터를 읽을 수 없습니다. 다른 기기에서 데이터를 복호화할 때도 필요하므로 패스프레이즈를 반드시 기억해 두세요.",
|
||||
"Setup.RemoteE2EE.StronglyRecommendedLine2": "또한 Peer-to-Peer 동기화를 사용 중이더라도, 나중에 다른 방식으로 전환하여 원격 서버에 연결하면 이 설정이 그대로 사용됩니다.",
|
||||
"Setup.RemoteE2EE.StronglyRecommendedTitle": "강력 권장",
|
||||
"Setup.RemoteE2EE.Title": "엔드투엔드 암호화",
|
||||
"Setup.ScanQRCode.ButtonClose": "이 대화 상자 닫기",
|
||||
"Setup.ScanQRCode.Guidance": "기존 기기에서 설정을 가져오려면 아래 단계를 따라 주세요.",
|
||||
"Setup.ScanQRCode.Step1": "이 기기에서는 이 Vault를 계속 열어 두세요.",
|
||||
"Setup.ScanQRCode.Step2": "원본 기기에서 Obsidian을 엽니다.",
|
||||
"Setup.ScanQRCode.Step3": "원본 기기에서 명령 팔레트를 열고 \"설정을 QR 코드로 표시\" 명령을 실행합니다.",
|
||||
"Setup.ScanQRCode.Step4": "이 기기에서 카메라 앱으로 전환하거나 QR 코드 스캐너를 사용해 표시된 QR 코드를 스캔하세요.",
|
||||
"Setup.ScanQRCode.Title": "QR 코드 스캔",
|
||||
"Setup.ShowQRCode": "QR 코드 표시",
|
||||
"Setup.ShowQRCode.Desc": "설정을 전송하기 위한 QR 코드를 표시합니다.",
|
||||
"Setup.UseSetupURI.ButtonCancel": "취소",
|
||||
"Setup.UseSetupURI.ButtonProceed": "설정 테스트 후 계속",
|
||||
"Setup.UseSetupURI.ErrorFailedToParse": "Setup URI를 해석하지 못했습니다. URI와 패스프레이즈를 확인해 주세요.",
|
||||
"Setup.UseSetupURI.ErrorPassphraseRequired": "Vault 패스프레이즈를 입력해 주세요.",
|
||||
"Setup.UseSetupURI.GuidanceLine1": "서버 설치 중 또는 다른 기기에서 생성된 Setup URI와 Vault 패스프레이즈를 입력해 주세요.",
|
||||
"Setup.UseSetupURI.GuidanceLine2": "명령 팔레트에서 \"설정을 새 Setup URI로 복사\" 명령을 실행하면 새 Setup URI를 생성할 수 있습니다.",
|
||||
"Setup.UseSetupURI.InvalidInfo": "Setup URI가 올바르지 않습니다. 확인한 뒤 다시 시도해 주세요.",
|
||||
"Setup.UseSetupURI.LabelPassphrase": "Vault 패스프레이즈",
|
||||
"Setup.UseSetupURI.LabelSetupURI": "Setup URI",
|
||||
"Setup.UseSetupURI.PlaceholderPassphrase": "Vault 패스프레이즈를 입력하세요",
|
||||
"Setup.UseSetupURI.Title": "Setup URI 입력",
|
||||
"Setup.UseSetupURI.ValidInfo": "Setup URI가 유효하며 사용할 준비가 되었습니다.",
|
||||
"Should we keep folders that don't have any files inside?": "내부에 파일이 없는 폴더를 유지하시겠습니까?",
|
||||
"Should we only check for conflicts when a file is opened?": "파일을 열 때만 충돌을 확인하시겠습니까?",
|
||||
"Should we prompt you about conflicting files when a file is opened?": "파일을 열 때 충돌하는 파일에 대해 알림을 표시하시겠습니까?",
|
||||
"Should we prompt you for every single merge, even if we can safely merge automatcially?": "안전하게 자동 병합할 수 있는 경우에도 모든 병합에 대해 알림을 받으시겠습니까?",
|
||||
"Show full banner": "전체 배너 표시",
|
||||
"Show only notifications": "알림만 표시",
|
||||
"Show status as icons only": "아이콘으로만 상태 표시",
|
||||
"Show status icon instead of file warnings banner": "파일 경고 배너 대신 상태 아이콘 표시",
|
||||
"Show status inside the editor": "편집기 내부에 상태 표시",
|
||||
"Show status on the status bar": "상태 바에 상태 표시",
|
||||
"Show verbose log. Please enable if you report an issue.": "자세한 로그를 표시합니다. 문제를 신고하는 경우 활성화해 주세요.",
|
||||
"Some devices have differing progress values (max: ${maxProgress}, min: ${minProgress}).\nThis may indicate that some devices have not completed synchronisation, which could lead to conflicts. Strongly recommend confirming that all devices are synchronised before proceeding.": "일부 기기의 진행 값이 다릅니다(최대: ${maxProgress}, 최소: ${minProgress}).\n이는 일부 기기가 동기화를 완료하지 않았음을 의미할 수 있으며, 충돌로 이어질 수 있습니다. 계속 진행하기 전에 모든 기기가 동기화되었는지 반드시 확인하는 것을 강력히 권장합니다.",
|
||||
"Starts synchronisation when a file is saved.": "파일이 저장될 때 동기화를 시작합니다.",
|
||||
"Stop reflecting database changes to storage files.": "데이터베이스 변경 사항을 스토리지 파일에 반영하는 것을 중단합니다.",
|
||||
"Stop watching for file changes.": "파일 변경 사항 감시를 중단합니다.",
|
||||
"Suppress notification of hidden files change": "숨겨진 파일 변경 알림 억제",
|
||||
"Suspend database reflecting": "데이터베이스 반영 일시 중단",
|
||||
"Suspend file watching": "파일 감시 일시 중단",
|
||||
"Switch to IDB": "IDB로 전환",
|
||||
"Switch to IndexedDB": "IndexedDB로 전환",
|
||||
"Sync after merging file": "파일 병합 후 동기화",
|
||||
"Sync automatically after merging files": "파일 병합 후 자동으로 동기화",
|
||||
"Sync Mode": "동기화 모드",
|
||||
"Sync on Editor Save": "편집기 저장 시 동기화",
|
||||
"Sync on File Open": "파일 열기 시 동기화",
|
||||
"Sync on Save": "저장 시 동기화",
|
||||
"Sync on Startup": "시작 시 동기화",
|
||||
"Synchronisation utilising journal files. You must have set up an S3/MinIO/R2 compatible object storage.": "저널 파일을 활용하는 동기화 방식입니다. S3/MinIO/R2 호환 객체 스토리지를 미리 구성해야 합니다。",
|
||||
"Synchronising files": "동기화할 파일",
|
||||
"Syncing": "동기화",
|
||||
"Target patterns": "대상 패턴",
|
||||
"Testing only - Resolve file conflicts by syncing newer copies of the file, this can overwrite modified files. Be Warned.": "테스트 전용 - 파일의 새로운 사본을 동기화하여 파일 충돌을 해결하며, 수정된 파일을 덮어쓸 수 있습니다. 주의하세요.",
|
||||
"The delay for consecutive on-demand fetches": "연속 청크 요청 간 대기 시간",
|
||||
"The following accepted nodes are missing its node information:\n- ${missingNodes}\n\nThis indicates that they have not been connected for some time or have been left on an older version.\nIt is preferable to update all devices if possible. If you have any devices that are no longer in use, you can clear all accepted nodes by locking the remote once.": "다음 승인된 노드에는 노드 정보가 없습니다:\n- ${missingNodes}\n\n이는 해당 노드가 한동안 연결되지 않았거나 이전 버전에 머물러 있음을 의미합니다.\n가능하다면 먼저 모든 기기를 업데이트하는 것이 좋습니다. 더 이상 사용하지 않는 기기가 있다면 원격을 한 번 잠가 승인된 노드를 모두 정리할 수 있습니다.",
|
||||
"The Hash algorithm for chunk IDs": "청크 ID용 해시 알고리즘",
|
||||
"The maximum duration for which chunks can be incubated within the document. Chunks exceeding this period will graduate to independent chunks.": "변경 기록이 문서에 함께 보관될 수 있는 최대 시간입니다. 초과 시 문서에서 분리되어 개별로 저장됩니다.",
|
||||
"The maximum number of chunks that can be incubated within the document. Chunks exceeding this number will immediately graduate to independent chunks.": "문서 안에 임시로 보관할 수 있는 변경 기록의 최대 개수입니다. 이 수를 초과하면 즉시 독립된 청크로 분리되어 저장됩니다.",
|
||||
"The maximum total size of chunks that can be incubated within the document. Chunks exceeding this size will immediately graduate to independent chunks.": "문서 안에 임시로 보관할 수 있는 변경 기록의 전체 크기 제한입니다. 초과 시 자동으로 분리됩니다.",
|
||||
"The minimum interval for automatic synchronisation on event.": "이벤트 발생 시 자동 동기화의 최소 간격입니다.",
|
||||
"This feature enables direct synchronisation between devices. No server is required, but both devices must be online at the same time for synchronisation to occur, and some features may be limited. Internet connection is only required to signalling (detecting peers) and not for data transfer.": "이 기능은 장치 간 직접 동기화를 제공합니다. 서버는 필요 없지만 동기화가 이루어지려면 두 장치가 동시에 온라인 상태여야 하며 일부 기능은 제한될 수 있습니다. 인터넷 연결은 시그널링(피어 감지)에만 필요하며 데이터 전송 자체에는 필요하지 않습니다。",
|
||||
"This is an advanced option for users who do not have a URI or who wish to configure detailed settings.": "URI가 없거나 세부 설정을 직접 구성하려는 사용자를 위한 고급 옵션입니다。",
|
||||
"This is the most suitable synchronisation method for the design. All functions are available. You must have set up a CouchDB instance.": "이 설계에 가장 적합한 동기화 방식입니다. 모든 기능을 사용할 수 있습니다. CouchDB 인스턴스를 미리 구성해야 합니다。",
|
||||
"This passphrase will not be copied to another device. It will be set to `Default` until you configure it again.": "이 패스프레이즈는 다른 기기로 복사되지 않습니다. 다시 구성할 때까지 `기본값`으로 설정됩니다.",
|
||||
"This will recreate chunks for all files. If there were missing chunks, this may fix the errors.": "모든 파일의 청크를 다시 생성합니다. 누락된 청크가 있었다면 이 작업으로 오류가 해결될 수 있습니다.",
|
||||
"Transfer Tweak": "전송 조정",
|
||||
"TweakMismatchResolve.Action.Dismiss": "무시",
|
||||
"TweakMismatchResolve.Action.UseConfigured": "구성된 설정 사용",
|
||||
"TweakMismatchResolve.Action.UseMine": "원격 데이터베이스 설정 업데이트",
|
||||
"TweakMismatchResolve.Action.UseMineAcceptIncompatible": "원격 데이터베이스 설정 업데이트하지만 그대로 유지",
|
||||
"TweakMismatchResolve.Action.UseMineWithRebuild": "원격 데이터베이스 설정 업데이트하고 다시 재구축",
|
||||
"TweakMismatchResolve.Action.UseRemote": "이 기기에 설정 적용",
|
||||
"TweakMismatchResolve.Action.UseRemoteAcceptIncompatible": "이 기기에 설정 적용하지만 호환성 문제 무시",
|
||||
"TweakMismatchResolve.Action.UseRemoteWithRebuild": "이 기기에 설정 적용하고 다시 가져오기",
|
||||
"TweakMismatchResolve.Message.Main": "\n원격 데이터베이스의 설정은 다음과 같습니다. 이 값들은 이 기기와 최소 한 번 동기화된 다른 기기에서 구성된 것입니다.\n\n이 설정을 사용하려면 %{TweakMismatchResolve.Action.UseConfigured}를 선택해 주세요.\n이 기기의 설정을 유지하려면 %{TweakMismatchResolve.Action.Dismiss}를 선택해 주세요.\n\n${table}\n\n>[!TIP]\n> 모든 설정을 동기화하려면 이 기능으로 최소 구성을 적용한 후 `마크다운을 통한 설정 동기화`를 사용해 주세요.\n\n${additionalMessage}",
|
||||
"TweakMismatchResolve.Message.MainTweakResolving": "구성이 원격 서버의 것과 일치하지 않습니다.\n\n다음 구성이 일치해야 합니다:\n\n${table}\n\n결정을 알려주세요.\n\n${additionalMessage}",
|
||||
"TweakMismatchResolve.Message.UseRemote.WarningRebuildRecommended": "\n>[!NOTICE]\n> 일부 변경사항은 호환 가능하지만 추가 스토리지 및 전송량을 소모할 수 있습니다. 재구축을 권장합니다. 하지만 현재 재구축을 수행하지 않더라도 향후 유지보수에서 구현될 수 있습니다.\n> ***시간적 여유가 있고 안정적인 네트워크에 연결된 상태에서 적용해 주세요!***",
|
||||
"TweakMismatchResolve.Message.UseRemote.WarningRebuildRequired": "\n>[!WARNING]\n> 일부 원격 구성이 이 기기의 로컬 데이터베이스와 호환되지 않습니다. 로컬 데이터베이스 재구축이 필요합니다.\n> ***시간적 여유가 있고 안정적인 네트워크에 연결된 상태에서 적용해 주세요!***",
|
||||
"TweakMismatchResolve.Message.WarningIncompatibleRebuildRecommended": "\n>[!NOTICE]\n> 로컬 데이터베이스와 원격 데이터베이스가 호환되지 않도록 만드는 값들이 다른 것을 감지했습니다.\n> 일부 변경사항은 호환 가능하지만 추가 스토리지 및 전송량을 소모할 수 있습니다. 재구축을 권장합니다. 하지만 현재 재구축을 수행하지 않더라도 향후 유지보수에서 구현될 수 있습니다.\n> 재구축을 원한다면 몇 분 이상 소요됩니다. **지금 수행해도 안전한지 확인해 주세요.**",
|
||||
"TweakMismatchResolve.Message.WarningIncompatibleRebuildRequired": "\n>[!WARNING]\n> 로컬 데이터베이스와 원격 데이터베이스가 호환되지 않도록 만드는 값들이 다른 것을 감지했습니다.\n> 로컬 또는 원격 재구축이 필요합니다. 둘 다 몇 분 이상 소요됩니다. **지금 수행해도 안전한지 확인해 주세요.**",
|
||||
"TweakMismatchResolve.Table": "| 값 이름 | 이 기기 | 원격 |\n|: --- |: ---- :|: ---- :|\n${rows}\n\n",
|
||||
"TweakMismatchResolve.Table.Row": "| ${name} | ${self} | ${remote} |",
|
||||
"TweakMismatchResolve.Title": "구성 불일치 감지",
|
||||
"TweakMismatchResolve.Title.TweakResolving": "구성 불일치 감지",
|
||||
"TweakMismatchResolve.Title.UseRemoteConfig": "원격 구성 사용",
|
||||
"Unique name between all synchronized devices. To edit this setting, please disable customization sync once.": "모든 동기화된 기기 간 고유 이름입니다. 이 설정을 편집하려면 사용자 설정 동기화를 한 번 비활성화해 주세요.",
|
||||
"Use a custom passphrase": "사용자 지정 암호문구 사용",
|
||||
"Use a Setup URI (Recommended)": "설정 URI 사용(권장)",
|
||||
"Use Custom HTTP Handler": "커스텀 HTTP 핸들러 사용",
|
||||
"Use dynamic iteration count": "동적 반복 횟수 사용",
|
||||
"Use Segmented-splitter": "의미 기반 분할 사용",
|
||||
"Use splitting-limit-capped chunk splitter": "분할 제한 상한 청크 분할기 사용",
|
||||
"Use the trash bin": "휴지통 사용",
|
||||
"Use timeouts instead of heartbeats": "하트비트 대신 타임아웃 사용",
|
||||
"username": "사용자명",
|
||||
"Username": "사용자명",
|
||||
"Verbose Log": "자세한 로그",
|
||||
"Verify all": "모두 검증",
|
||||
"Verify and repair all files": "모든 파일 검증 및 복구",
|
||||
"Warning! This will have a serious impact on performance. And the logs will not be synchronised under the default name. Please be careful with logs; they often contain your confidential information.": "경고! 이는 성능에 심각한 영향을 미칩니다. 로그는 기본 이름으로 동기화되지 않습니다. 로그에는 종종 기밀 정보가 포함되어 있으므로 주의해 주세요.",
|
||||
"We cannot change the device name while this feature is enabled. Please disable this feature to change the device name.": "이 기능이 활성화되어 있는 동안에는 장치 이름을 변경할 수 없습니다. 장치 이름을 변경하려면 이 기능을 비활성화하세요.",
|
||||
"We will now guide you through a few questions to simplify the synchronisation setup.": "동기화 설정을 더 쉽게 진행할 수 있도록 몇 가지 질문으로 안내해 드리겠습니다。",
|
||||
"We will now proceed with the server configuration.": "이제 서버 구성을 진행하겠습니다。",
|
||||
"Welcome to Self-hosted LiveSync": "Self-hosted LiveSync에 오신 것을 환영합니다",
|
||||
"When you save a file in the editor, start a sync automatically": "편집기에서 파일을 저장할 때 자동으로 동기화를 시작합니다",
|
||||
"Write credentials in the file": "파일에 자격 증명 저장",
|
||||
"Write logs into the file": "파일에 로그 기록",
|
||||
"xxhash32 (Fast but less collision resistance)": "xxhash32 (빠르지만 충돌 저항성은 낮음)",
|
||||
"xxhash64 (Fastest)": "xxhash64 (가장 빠름)",
|
||||
"Yes, I want to add this device to my existing synchronisation": "예, 이 장치를 기존 동기화에 추가하겠습니다",
|
||||
"Yes, I want to set up a new synchronisation": "예, 새 동기화를 설정하겠습니다",
|
||||
"You are adding this device to an existing synchronisation setup.": "이 장치를 기존 동기화 구성에 추가하려고 합니다。"
|
||||
}
|
||||
@@ -0,0 +1,856 @@
|
||||
{
|
||||
"(Active)": "(Активна)",
|
||||
"(BETA) Always overwrite with a newer file": "(БЕТА) Всегда перезаписывать более новым файлом",
|
||||
"(Beta) Use ignore files": "(Бета) Использовать файлы игнорирования",
|
||||
"(Days passed, 0 to disable automatic-deletion)": "(Дней прошло, 0 для отключения автоматического удаления)",
|
||||
"(ex. Read chunks online) If this option is enabled, LiveSync reads chunks online directly instead of replicating them locally. Increasing Custom chunk size is recommended.": "(ex. Read chunks online) If this option is enabled, LiveSync reads chunks online directly instead of replicating them locally. Increasing Custom chunk size is recommended.",
|
||||
"(MB) If this is set, changes to local and remote files that are larger than this will be skipped. If the file becomes smaller again, a newer one will be used.": "(MB) If this is set, changes to local and remote files that are larger than this will be skipped. If the file becomes smaller again, a newer one will be used.",
|
||||
"(Mega chars)": "(Мега символов)",
|
||||
"(Not recommended) If set, credentials will be stored in the file": "(Не рекомендуется) Если установлено, учётные данные будут сохранены в файле",
|
||||
"(Not recommended) If set, credentials will be stored in the file.": "(Not recommended) If set, credentials will be stored in the file.",
|
||||
"(Obsolete) Use an old adapter for compatibility": "(Устарело) Использовать старый адаптер для совместимости",
|
||||
"(RegExp) Empty to sync all files. Set filter as a regular expression to limit synchronising files.": "(RegExp) Оставьте пустым, чтобы синхронизировать все файлы. Укажите регулярное выражение, чтобы ограничить синхронизируемые файлы.",
|
||||
"(RegExp) If this is set, any changes to local and remote files that match this will be skipped.": "(RegExp) Если задано, любые изменения локальных и удалённых файлов, соответствующих этому шаблону, будут пропускаться.",
|
||||
"(Select this if you are already using synchronisation on another computer or smartphone.) This option is suitable if you are new to LiveSync and want to set it up from scratch.": "(Выберите этот вариант, если вы уже используете синхронизацию на другом компьютере или смартфоне.) Он подходит, если вы хотите добавить это устройство к уже существующей конфигурации LiveSync。",
|
||||
"(Select this if you are configuring this device as the first synchronisation device.) This option is suitable if you are new to LiveSync and want to set it up from scratch.": "(Выберите этот вариант, если настраиваете это устройство как первое устройство синхронизации.) Он подходит, если вы впервые используете LiveSync и хотите настроить всё с нуля。",
|
||||
"> [!INFO]- The connected devices have been detected as follows:\n${devices}": "> [!INFO]- Обнаружены следующие подключённые устройства:\n${devices}",
|
||||
"A Setup URI is a single string of text containing your server address and authentication details. Using a URI, if one was generated by your server installation script, provides a simple and secure configuration.": "Setup URI — это одна строка текста, содержащая адрес сервера и данные аутентификации. Если URI был создан скриптом установки сервера, его использование обеспечивает простую и безопасную настройку。",
|
||||
"Access Key": "Ключ доступа",
|
||||
"Activate": "Активировать",
|
||||
"Active Remote Configuration": "Активная удалённая конфигурация",
|
||||
"Add default patterns": "Добавить шаблоны по умолчанию",
|
||||
"Add new connection": "Добавить подключение",
|
||||
"All devices have the same progress value (${progress}). Your devices seem to be synchronised. And be able to proceed with Garbage Collection.": "У всех устройств одинаковое значение прогресса (${progress}). Похоже, ваши устройства синхронизированы, и можно продолжать Garbage Collection.",
|
||||
"Always prompt merge conflicts": "Всегда запрашивать разрешение конфликтов слияния",
|
||||
"Analyse": "Анализировать",
|
||||
"Analyse database usage": "Анализ использования базы данных",
|
||||
"Analyse database usage and generate a TSV report for diagnosis yourself. You can paste the generated report with any spreadsheet you like.": "Проанализируйте использование базы данных и создайте TSV-отчёт для самостоятельной диагностики. Полученный отчёт можно вставить в любую удобную для вас таблицу.",
|
||||
"Apply Latest Change if Conflicting": "Применить последнее изменение при конфликте",
|
||||
"Apply preset configuration": "Применить предустановленную конфигурацию",
|
||||
"Ask a passphrase at every launch": "Запрашивать парольную фразу при каждом запуске",
|
||||
"Automatically Sync all files when opening Obsidian.": "Автоматически синхронизировать все файлы при открытии Obsidian.",
|
||||
"Back": "Назад",
|
||||
"Back to non-configured": "Вернуть в состояние без настройки",
|
||||
"Batch database update": "Пакетное обновление базы данных",
|
||||
"Batch limit": "Пакетный лимит",
|
||||
"Batch size": "Размер пакета",
|
||||
"Batch size of on-demand fetching": "Размер пакета при запросе по требованию",
|
||||
"Before v0.17.16, we used an old adapter for the local database. Now the new adapter is preferred. However, it needs local database rebuilding.": "До v0.17.16 мы использовали старый адаптер для локальной базы данных. Теперь предпочтителен новый адаптер. Однако требуется перестроение локальной базы данных.",
|
||||
"Before v0.17.16, we used an old adapter for the local database. Now the new adapter is preferred. However, it needs local database rebuilding. Please disable this toggle when you have enough time. If leave it enabled, also while fetching from the remote database, you will be asked to disable this.": "Before v0.17.16, we used an old adapter for the local database. Now the new adapter is preferred. However, it needs local database rebuilding. Please disable this toggle when you have enough time. If leave it enabled, also while fetching from the remote database, you will be asked to disable this.",
|
||||
"Bucket Name": "Имя бакета",
|
||||
"Cancel": "Отмена",
|
||||
"Cancel Garbage Collection": "Отменить Garbage Collection",
|
||||
"Check": "Проверить",
|
||||
"Check and convert non-path-obfuscated files": "Проверить и преобразовать файлы без обфускации пути",
|
||||
"Check for documents that have not been converted to path-obfuscated IDs and convert them if necessary.": "Проверяет документы, которые ещё не были преобразованы в path-obfuscated ID, и при необходимости преобразует их.",
|
||||
"cmdConfigSync.showCustomizationSync": "Показать синхронизацию настроек",
|
||||
"Comma separated `.gitignore, .dockerignore`": "Через запятую `.gitignore, .dockerignore`",
|
||||
"Compaction in progress on remote database...": "Выполняется компакция удалённой базы данных...",
|
||||
"Compaction on remote database completed successfully.": "Компакция удалённой базы данных успешно завершена.",
|
||||
"Compaction on remote database failed.": "Компакция удалённой базы данных завершилась ошибкой.",
|
||||
"Compaction on remote database timed out.": "Время ожидания компакции удалённой базы данных истекло.",
|
||||
"Compare the content of files between on local database and storage. If not matched, you will be asked which one you want to keep.": "Сравнивает содержимое файлов между локальной базой данных и хранилищем. Если они не совпадут, вам предложат выбрать, какую версию сохранить.",
|
||||
"Compatibility (Conflict Behaviour)": "Совместимость (поведение при конфликтах)",
|
||||
"Compatibility (Database structure)": "Совместимость (структура базы данных)",
|
||||
"Compatibility (Internal API Usage)": "Совместимость (использование внутреннего API)",
|
||||
"Compatibility (Metadata)": "Совместимость (метаданные)",
|
||||
"Compatibility (Remote Database)": "Совместимость (удалённая база данных)",
|
||||
"Compatibility (Trouble addressed)": "Совместимость (исправленные проблемы)",
|
||||
"Compute revisions for chunks": "Вычислять ревизии для чанков",
|
||||
"Configuration Encryption": "Шифрование конфигурации",
|
||||
"Configure": "Настроить",
|
||||
"Configure And Change Remote": "Настроить и переключить удалённое хранилище",
|
||||
"Configure E2EE": "Настроить сквозное шифрование",
|
||||
"Configure Remote": "Настроить удалённое хранилище",
|
||||
"Configure the same server information as your other devices again, manually, very advanced users only.": "Снова вручную укажите те же параметры сервера, что и на других устройствах. Только для очень опытных пользователей。",
|
||||
"Connection Method": "Способ подключения",
|
||||
"Continue to CouchDB setup": "Перейти к настройке CouchDB",
|
||||
"Continue to Peer-to-Peer only setup": "Перейти к настройке только Peer-to-Peer",
|
||||
"Continue to S3/MinIO/R2 setup": "Перейти к настройке S3/MinIO/R2",
|
||||
"Copy": "Копировать",
|
||||
"Copy Report to clipboard": "Копировать отчёт в буфер обмена",
|
||||
"CouchDB Connection Tweak": "Настройки подключения CouchDB",
|
||||
"Cross-platform": "Кроссплатформенные",
|
||||
"Current adapter: {adapter}": "Текущий адаптер: {adapter}",
|
||||
"Customization Sync": "Синхронизация настроек",
|
||||
"Customization Sync (Beta3)": "Синхронизация настроек (Beta3)",
|
||||
"Data Compression": "Сжатие данных",
|
||||
"Database Adapter": "Адаптер базы данных",
|
||||
"Database Name": "Имя базы данных",
|
||||
"Database suffix": "Суффикс базы данных",
|
||||
"Default": "По умолчанию",
|
||||
"Delay conflict resolution of inactive files": "Отложить разрешение конфликтов для неактивных файлов",
|
||||
"Delay merge conflict prompt for inactive files.": "Отложить запрос конфликта слияния для неактивных файлов.",
|
||||
"Delete": "Удалить",
|
||||
"Delete all customization sync data": "Удалить все данные синхронизации настроек",
|
||||
"Delete all data on the remote server.": "Удалить все данные на удалённом сервере.",
|
||||
"Delete local database to reset or uninstall Self-hosted LiveSync": "Удалить локальную базу данных, чтобы сбросить или удалить Self-hosted LiveSync",
|
||||
"Delete old metadata of deleted files on start-up": "Удалять старые метаданные удалённых файлов при запуске",
|
||||
"Delete Remote Configuration": "Удалить удалённую конфигурацию",
|
||||
"Delete remote configuration '{name}'?": "Удалить удалённую конфигурацию '{name}'?",
|
||||
"descConnectSetupURI": "Это рекомендуемый способ настройки Self-hosted LiveSync с помощью Setup URI.",
|
||||
"descCopySetupURI": "Идеально для настройки нового устройства!",
|
||||
"descEnableLiveSync": "Включайте это только после настройки одного из двух вариантов выше.",
|
||||
"descFetchConfigFromRemote": "Загрузить необходимые настройки с уже настроенного удалённого сервера.",
|
||||
"descManualSetup": "Не рекомендуется, но полезно, если у вас нет Setup URI",
|
||||
"descTestDatabaseConnection": "Открыть подключение к базе данных.",
|
||||
"descValidateDatabaseConfig": "Проверяет и исправляет потенциальные проблемы с конфигурацией базы данных.",
|
||||
"desktop": "рабочий стол",
|
||||
"Developer": "Разработчик",
|
||||
"Device": "Устройство",
|
||||
"Device name": "Имя устройства",
|
||||
"Device Setup Method": "Способ настройки устройства",
|
||||
"dialog.yourLanguageAvailable": "Self-hosted LiveSync имеет переводы для вашего языка, поэтому была включена настройка языка Display language.\n\nПримечание: Не все сообщения переведены. Мы ждём ваших предложений!\nПримечание 2: При создании Issue, пожалуйста, вернитесь к lang-def, затем сделайте скриншоты, сообщения и логи. Это можно сделать в настройках.\nНадеемся, вам будет удобно использовать!",
|
||||
"dialog.yourLanguageAvailable.btnRevertToDefault": "Оставить lang-def",
|
||||
"dialog.yourLanguageAvailable.Title": "Доступен перевод!",
|
||||
"Disables all synchronization and restart.": "Отключает всю синхронизацию и перезапускает приложение.",
|
||||
"Disables logging, only shows notifications. Please disable if you report an issue.": "Отключает логирование, показывает только уведомления. Пожалуйста, отключите при сообщении о проблеме.",
|
||||
"Display Language": "Язык интерфейса",
|
||||
"Display name": "Отображаемое имя",
|
||||
"Do not check configuration mismatch before replication": "Не проверять несовпадение конфигурации перед репликацией",
|
||||
"Do not keep metadata of deleted files.": "Не хранить метаданные удалённых файлов.",
|
||||
"Do not split chunks in the background": "Не разделять чанки в фоновом режиме",
|
||||
"Do not use internal API": "Не использовать внутренний API",
|
||||
"Doctor.Button.DismissThisVersion": "Нет, и не спрашивать до следующего выпуска",
|
||||
"Doctor.Button.Fix": "Исправить",
|
||||
"Doctor.Button.FixButNoRebuild": "Исправить без перестроения",
|
||||
"Doctor.Button.No": "Нет",
|
||||
"Doctor.Button.Skip": "Оставить как есть",
|
||||
"Doctor.Button.Yes": "Да",
|
||||
"Doctor.Dialogue.Main": "Привет! Диагностика настроек активирована из-за activateReason!\nК сожалению, некоторые настройки были обнаружены как потенциальные проблемы.\nНе волнуйтесь. Давайте решим их по очереди.\n\nСообщаем вам заранее, мы спросим о следующих пунктах.\n\nissues\n\nНачнём?",
|
||||
"Doctor.Dialogue.MainFix": "name\n\n| Текущее | Идеальное |\n|:---:|:---:|\n| current | ideal |\n\n**Уровень рекомендации:** level\n\n### Почему это было обнаружено?\n\nreason\n\nnote\n\nИсправить на идеальное значение?",
|
||||
"Doctor.Dialogue.Title": "Диагностика Self-hosted LiveSync",
|
||||
"Doctor.Dialogue.TitleAlmostDone": "Почти готово!",
|
||||
"Doctor.Dialogue.TitleFix": "Исправление проблемы current/total",
|
||||
"Doctor.Level.Must": "Обязательно",
|
||||
"Doctor.Level.Necessary": "Необходимо",
|
||||
"Doctor.Level.Optional": "Опционально",
|
||||
"Doctor.Level.Recommended": "Рекомендуется",
|
||||
"Doctor.Message.NoIssues": "Проблем не обнаружено!",
|
||||
"Doctor.Message.RebuildLocalRequired": "Внимание! Для применения требуется перестроение локальной базы данных!",
|
||||
"Doctor.Message.RebuildRequired": "Внимание! Для применения требуется перестроение!",
|
||||
"Doctor.Message.SomeSkipped": "Некоторые проблемы оставлены как есть. Спросить снова при следующем запуске?",
|
||||
"Doctor.RULES.E2EE_V02500.REASON": "Сквозное шифрование стало более надёжным и быстрым. Предыдущее E2EE было скомпрометировано. Следует применить как можно скорее.",
|
||||
"Duplicate": "Дублировать",
|
||||
"Duplicate remote": "Дублировать удалённую конфигурацию",
|
||||
"E2EE Configuration": "Конфигурация сквозного шифрования",
|
||||
"Edge case addressing (Behaviour)": "Обработка особых случаев (поведение)",
|
||||
"Edge case addressing (Database)": "Обработка особых случаев (база данных)",
|
||||
"Edge case addressing (Processing)": "Обработка особых случаев (обработка)",
|
||||
"Emergency restart": "Аварийный перезапуск",
|
||||
"Enable advanced features": "Включить расширенные функции",
|
||||
"Enable customization sync": "Включить синхронизацию настроек",
|
||||
"Enable Developers' Debug Tools.": "Включить инструменты разработчика.",
|
||||
"Enable edge case treatment features": "Включить функции обработки граничных случаев",
|
||||
"Enable poweruser features": "Включить функции для опытных пользователей",
|
||||
"Enable this if your Object Storage doesn't support CORS": "Включите, если ваше объектное хранилище не поддерживает CORS",
|
||||
"Enable this option to automatically apply the most recent change to documents even when it conflicts": "Включите эту опцию для автоматического применения последних изменений к документам даже при конфликте",
|
||||
"Encrypt contents on the remote database. If you use the plugin's synchronization feature, enabling this is recommended.": "Шифровать содержимое на удалённой базе данных. Рекомендуется включить при использовании функции синхронизации плагина.",
|
||||
"Encrypting sensitive configuration items": "Шифрование конфиденциальных настроек",
|
||||
"Encryption phassphrase. If changed, you should overwrite the server's database with the new (encrypted) files.": "Парольная фраза шифрования. При изменении нужно перезаписать базу данных сервера новыми (зашифрованными) файлами.",
|
||||
"End-to-End Encryption": "Сквозное шифрование",
|
||||
"Endpoint URL": "URL конечной точки",
|
||||
"Enhance chunk size": "Улучшить размер чанка",
|
||||
"Enter Server Information": "Ввести данные сервера",
|
||||
"Enter the server information manually": "Ввести данные сервера вручную",
|
||||
"Export": "Экспорт",
|
||||
"Failed to connect to remote for compaction.": "Не удалось подключиться к удалённой базе данных для компакции.",
|
||||
"Failed to connect to remote for compaction. ${reason}": "Не удалось подключиться к удалённой базе данных для компакции. ${reason}",
|
||||
"Failed to start one-shot replication before Garbage Collection. Garbage Collection Cancelled.": "Не удалось запустить одноразовую репликацию перед Garbage Collection. Garbage Collection отменена.",
|
||||
"Failed to start replication after Garbage Collection.": "Не удалось запустить репликацию после Garbage Collection.",
|
||||
"Fetch": "Получить",
|
||||
"Fetch chunks on demand": "Загружать чанки по требованию",
|
||||
"Fetch database with previous behaviour": "Загрузить базу данных с предыдущим поведением",
|
||||
"Fetch remote settings": "Получить настройки с удалённого хранилища",
|
||||
"File to resolve conflict": "Файл для разрешения конфликта",
|
||||
"Filename": "Имя файла",
|
||||
"First, please select the option that best describes your current situation.": "Сначала выберите вариант, который лучше всего описывает вашу текущую ситуацию。",
|
||||
"Flag and restart": "Пометить и перезапустить",
|
||||
"Forces the file to be synced when opened.": "Принудительно синхронизировать файл при открытии.",
|
||||
"Fresh Start Wipe": "Полный сброс для чистого старта",
|
||||
"Garbage Collection cancelled by user.": "Пользователь отменил Garbage Collection.",
|
||||
"Garbage Collection completed. Deleted chunks: ${deletedChunks} / ${totalChunks}. Time taken: ${seconds} seconds.": "Garbage Collection завершена. Удалено чанков: ${deletedChunks} / ${totalChunks}. Затраченное время: ${seconds} сек.",
|
||||
"Garbage Collection Confirmation": "Подтверждение Garbage Collection",
|
||||
"Garbage Collection V3 (Beta)": "Сборка мусора V3 (Beta)",
|
||||
"Garbage Collection: Found ${unusedChunks} unused chunks to delete.": "Garbage Collection: найдено ${unusedChunks} неиспользуемых чанков для удаления.",
|
||||
"Garbage Collection: Scanned ${scanned} / ~${docCount}": "Garbage Collection: просканировано ${scanned} / ~${docCount}",
|
||||
"Garbage Collection: Scanning completed. Total chunks: ${totalChunks}, Used chunks: ${usedChunks}": "Garbage Collection: сканирование завершено. Всего чанков: ${totalChunks}, используемых чанков: ${usedChunks}",
|
||||
"Handle files as Case-Sensitive": "Обрабатывать файлы с учётом регистра",
|
||||
"Hidden Files": "Скрытые файлы",
|
||||
"How to display network errors when the sync server is unreachable.": "Определяет, как отображать сетевые ошибки, если сервер синхронизации недоступен.",
|
||||
"How would you like to configure the connection to your server?": "Как вы хотите настроить подключение к серверу?",
|
||||
"I am adding a device to an existing synchronisation setup": "Я добавляю устройство к существующей настройке синхронизации",
|
||||
"I am setting this up for the first time": "Я настраиваю это впервые",
|
||||
"I know my server details, let me enter them": "Я знаю параметры сервера, позвольте ввести их вручную",
|
||||
"If disabled(toggled), chunks will be split on the UI thread (Previous behaviour).": "Если отключено, чанки будут разделяться в основном потоке.",
|
||||
"If enabled per-filed efficient customization sync will be used. We need a small migration when enabling this.": "Если включено, будет использоваться эффективная синхронизация настроек для каждого файла.",
|
||||
"If enabled per-filed efficient customization sync will be used. We need a small migration when enabling this. And all devices should be updated to v0.23.18. Once we enabled this, we lost a compatibility with old versions.": "If enabled per-filed efficient customization sync will be used. We need a small migration when enabling this. And all devices should be updated to v0.23.18. Once we enabled this, we lost a compatibility with old versions.",
|
||||
"If enabled, chunks will be split into no more than 100 items. However, dedupe is slightly weaker.": "Если включено, чанки будут разделены не более чем на 100 элементов.",
|
||||
"If enabled, newly created chunks are temporarily kept within the document, and graduated to become independent chunks once stabilised.": "Если включено, вновь созданные чанки временно хранятся в документе.",
|
||||
"If enabled, the ⛔ icon will be shown inside the status instead of the file warnings banner. No details will be shown.": "Если включено, значок будет показан внутри статуса.",
|
||||
"If enabled, the file under 1kb will be processed in the UI thread.": "Если включено, файлы меньше 1КБ будут обрабатываться в основном потоке.",
|
||||
"If enabled, the notification of hidden files change will be suppressed.": "Если включено, уведомление об изменении скрытых файлов будет подавлено.",
|
||||
"If this enabled, all chunks will be stored with the revision made from its content. (Previous behaviour)": "Если включено, все чанки будут храниться с ревизией из содержимого.",
|
||||
"If this enabled, All files are handled as case-Sensitive (Previous behaviour).": "Если включено, все файлы обрабатываются с учётом регистра.",
|
||||
"If this enabled, chunks will be split into semantically meaningful segments. Not all platforms support this feature.": "Если включено, чанки будут разделены на семантически значимые сегменты.",
|
||||
"If this is set, changes to local files which are matched by the ignore files will be skipped.": "Если установлено, изменения файлов из списка игнорирования будут пропущены.",
|
||||
"If this is set, changes to local files which are matched by the ignore files will be skipped. Remote changes are determined using local ignore files.": "If this is set, changes to local files which are matched by the ignore files will be skipped. Remote changes are determined using local ignore files.",
|
||||
"If this option is enabled, PouchDB will hold the connection open for 60 seconds, and if no change arrives in that time, close and reopen the socket, instead of holding it open indefinitely.": "Если эта опция включена, PouchDB будет держать соединение открытым 60 секунд.",
|
||||
"If this option is enabled, PouchDB will hold the connection open for 60 seconds, and if no change arrives in that time, close and reopen the socket, instead of holding it open indefinitely. Useful when a proxy limits request duration but can increase resource usage.": "If this option is enabled, PouchDB will hold the connection open for 60 seconds, and if no change arrives in that time, close and reopen the socket, instead of holding it open indefinitely. Useful when a proxy limits request duration but can increase resource usage.",
|
||||
"Ignore and Proceed": "Игнорировать и продолжить",
|
||||
"Ignore files": "Файлы для игнорирования",
|
||||
"Ignore patterns": "Шаблоны исключения",
|
||||
"Import connection": "Импортировать подключение",
|
||||
"Incubate Chunks in Document": "Инкубировать чанки в документе",
|
||||
"Initialise all journal history, On the next sync, every item will be received and sent.": "Инициализирует всю историю журнала. При следующей синхронизации каждый элемент будет заново получен и отправлен.",
|
||||
"Interval (sec)": "Интервал (сек)",
|
||||
"K.exp": "Экспериментальная",
|
||||
"K.long_p2p_sync": "title_p2p_sync",
|
||||
"K.P2P": "Peer-к-Peer",
|
||||
"K.Peer": "Устройство",
|
||||
"K.ScanCustomization": "Scan customization",
|
||||
"K.short_p2p_sync": "P2P Синхр.",
|
||||
"K.title_p2p_sync": "Синхронизация между устройствами",
|
||||
"Keep empty folder": "Сохранять пустые папки",
|
||||
"lang_def": "По умолчанию",
|
||||
"lang-de": "Deutsch",
|
||||
"lang-def": "lang_def",
|
||||
"lang-es": "Español",
|
||||
"lang-fr": "Français",
|
||||
"lang-ja": "日本語",
|
||||
"lang-ko": "한국어",
|
||||
"lang-ru": "Русский",
|
||||
"lang-zh": "简体中文",
|
||||
"lang-zh-tw": "繁體中文",
|
||||
"Later": "Позже",
|
||||
"Limit: {datetime} ({timestamp})": "Лимит: {datetime} ({timestamp})",
|
||||
"LiveSync could not handle multiple vaults which have same name without different prefix, This should be automatically configured.": "LiveSync не может обработать несколько хранилищ с одинаковым именем без разных префиксов.",
|
||||
"liveSyncReplicator.beforeLiveSync": "Перед LiveSync запускаем OneShot...",
|
||||
"liveSyncReplicator.cantReplicateLowerValue": "Нельзя реплицировать с меньшим значением.",
|
||||
"liveSyncReplicator.checkingLastSyncPoint": "Поиск последней точки синхронизации.",
|
||||
"liveSyncReplicator.couldNotConnectTo": "Не удалось подключиться к uri : name\n(db)",
|
||||
"liveSyncReplicator.couldNotConnectToRemoteDb": "Не удалось подключиться к удалённой базе данных: d",
|
||||
"liveSyncReplicator.couldNotConnectToServer": "Не удалось подключиться к серверу.",
|
||||
"liveSyncReplicator.couldNotConnectToURI": "Не удалось подключиться к uri:dbRet",
|
||||
"liveSyncReplicator.couldNotMarkResolveRemoteDb": "Не удалось отметить удалённую базу данных как разрешённую.",
|
||||
"liveSyncReplicator.liveSyncBegin": "Начало LiveSync...",
|
||||
"liveSyncReplicator.lockRemoteDb": "Блокировка удалённой базы данных для предотвращения повреждения данных",
|
||||
"liveSyncReplicator.markDeviceResolved": "Отметить это устройство как «разрешённое».",
|
||||
"liveSyncReplicator.oneShotSyncBegin": "Начало OneShot синхронизации... (syncMode)",
|
||||
"liveSyncReplicator.remoteDbCorrupted": "Удалённая база данных новее или повреждена, убедитесь, что установлена последняя версия self-hosted-livesync",
|
||||
"liveSyncReplicator.remoteDbCreatedOrConnected": "Удалённая база данных создана или подключена",
|
||||
"liveSyncReplicator.remoteDbDestroyed": "Удалённая база данных уничтожена",
|
||||
"liveSyncReplicator.remoteDbDestroyError": "Произошла ошибка при уничтожении удалённой базы данных:",
|
||||
"liveSyncReplicator.remoteDbMarkedResolved": "Удалённая база данных отмечена как разрешённая.",
|
||||
"liveSyncReplicator.replicationClosed": "Репликация закрыта",
|
||||
"liveSyncReplicator.replicationInProgress": "Репликация уже выполняется",
|
||||
"liveSyncReplicator.retryLowerBatchSize": "Повтор с меньшим размером пакета: batch_size/batches_limit",
|
||||
"liveSyncReplicator.unlockRemoteDb": "Разблокировка удалённой базы данных для предотвращения повреждения данных",
|
||||
"liveSyncSetting.errorNoSuchSettingItem": "Такого параметра настройки не существует: key",
|
||||
"liveSyncSetting.originalValue": "Оригинал: value",
|
||||
"liveSyncSetting.valueShouldBeInRange": "Значение должно быть min < значение < max",
|
||||
"liveSyncSettings.btnApply": "Применить",
|
||||
"Local Database Tweak": "Настройки локальной базы данных",
|
||||
"Lock": "Заблокировать",
|
||||
"Lock Server": "Заблокировать сервер",
|
||||
"Lock the remote server to prevent synchronization with other devices.": "Блокирует удалённый сервер, чтобы запретить синхронизацию с другими устройствами.",
|
||||
"logPane.autoScroll": "Автопрокрутка",
|
||||
"logPane.logWindowOpened": "Окно лога открыто",
|
||||
"logPane.pause": "Пауза",
|
||||
"logPane.title": "Лог Self-hosted LiveSync",
|
||||
"logPane.wrap": "Перенос",
|
||||
"Maximum delay for batch database updating": "Максимальная задержка пакетного обновления базы данных",
|
||||
"Maximum file size": "Максимальный размер файла",
|
||||
"Maximum Incubating Chunk Size": "Максимальный размер инкубируемого чанка",
|
||||
"Maximum Incubating Chunks": "Максимальное количество инкубируемых чанков",
|
||||
"Maximum Incubation Period": "Максимальный период инкубации",
|
||||
"MB (0 to disable).": "МБ (0 для отключения).",
|
||||
"Memory cache": "Кэш в памяти",
|
||||
"Memory cache size (by total characters)": "Размер кэша памяти (по общему количеству символов)",
|
||||
"Memory cache size (by total items)": "Размер кэша памяти (по общему количеству элементов)",
|
||||
"Merge": "Объединить",
|
||||
"Minimum delay for batch database updating": "Минимальная задержка пакетного обновления базы данных",
|
||||
"Minimum interval for syncing": "Минимальный интервал синхронизации",
|
||||
"moduleCheckRemoteSize.logCheckingStorageSizes": "Проверка размеров хранилища",
|
||||
"moduleCheckRemoteSize.logCurrentStorageSize": "Размер удалённого хранилища: measuredSize",
|
||||
"moduleCheckRemoteSize.logExceededWarning": "Размер удалённого хранилища: measuredSize превысил notifySize",
|
||||
"moduleCheckRemoteSize.logThresholdEnlarged": "Порог увеличен до sizeМБ",
|
||||
"moduleCheckRemoteSize.msgConfirmRebuild": "Это может занять некоторое время. Вы действительно хотите перестроить всё сейчас?",
|
||||
"moduleCheckRemoteSize.msgDatabaseGrowing": "Ваша база данных увеличивается! Но не волнуйтесь, мы можем решить это сейчас.",
|
||||
"moduleCheckRemoteSize.msgSetDBCapacity": "Можно установить предупреждение о максимальной ёмкости базы данных.",
|
||||
"moduleCheckRemoteSize.option2GB": "2ГБ (Стандарт)",
|
||||
"moduleCheckRemoteSize.option800MB": "800МБ (Cloudant, fly.io)",
|
||||
"moduleCheckRemoteSize.optionAskMeLater": "Спросить позже",
|
||||
"moduleCheckRemoteSize.optionDismiss": "Отклонить",
|
||||
"moduleCheckRemoteSize.optionIncreaseLimit": "увеличить до newMaxМБ",
|
||||
"moduleCheckRemoteSize.optionNoWarn": "Нет, не уведомлять",
|
||||
"moduleCheckRemoteSize.optionRebuildAll": "Перестроить всё сейчас",
|
||||
"moduleCheckRemoteSize.titleDatabaseSizeLimitExceeded": "Размер удалённого хранилища превысил лимит",
|
||||
"moduleCheckRemoteSize.titleDatabaseSizeNotify": "Настройка уведомления о размере базы данных",
|
||||
"moduleInputUIObsidian.defaultTitleConfirmation": "Подтверждение",
|
||||
"moduleInputUIObsidian.defaultTitleSelect": "Выбор",
|
||||
"moduleInputUIObsidian.optionNo": "Нет",
|
||||
"moduleInputUIObsidian.optionYes": "Да",
|
||||
"moduleLiveSyncMain.logAdditionalSafetyScan": "Дополнительная проверка безопасности...",
|
||||
"moduleLiveSyncMain.logLoadingPlugin": "Загрузка плагина...",
|
||||
"moduleLiveSyncMain.logPluginInitCancelled": "Инициализация плагина отменена модулем",
|
||||
"moduleLiveSyncMain.logPluginVersion": "Self-hosted LiveSync vmanifestVersion packageVersion",
|
||||
"moduleLiveSyncMain.logReadChangelog": "LiveSync обновлён, пожалуйста, прочитайте список изменений!",
|
||||
"moduleLiveSyncMain.logSafetyScanCompleted": "Дополнительная проверка безопасности завершена",
|
||||
"moduleLiveSyncMain.logSafetyScanFailed": "Дополнительная проверка безопасности не удалась в модуле",
|
||||
"moduleLiveSyncMain.logUnloadingPlugin": "Выгрузка плагина...",
|
||||
"moduleLiveSyncMain.logVersionUpdate": "LiveSync обновлён. В случае критических изменений автоматическая синхронизация временно отключена. Убедитесь, что все устройства обновлены перед включением.",
|
||||
"moduleLiveSyncMain.msgScramEnabled": "Self-hosted LiveSync has been configured to ignore some events. Is this correct?\n\n| Type | Status | Note |\n|:---:|:---:|---|\n| Storage Events | ${fileWatchingStatus} | Every modification will be ignored |\n| Database Events | ${parseReplicationStatus} | Every synchronised change will be postponed |\n\nDo you want to resume them and restart Obsidian?\n\n> [!DETAILS]-\n> These flags are set by the plug-in while rebuilding, or fetching. If the process ends abnormally, it may be kept unintended.\n> If you are not sure, you can try to rerun these processes. Make sure to back your vault up.\n",
|
||||
"moduleLiveSyncMain.optionKeepLiveSyncDisabled": "Оставить LiveSync отключённым",
|
||||
"moduleLiveSyncMain.optionResumeAndRestart": "Продолжить и перезапустить Obsidian",
|
||||
"moduleLiveSyncMain.titleScramEnabled": "Экстренная остановка включена",
|
||||
"moduleLocalDatabase.logWaitingForReady": "Ожидание готовности...",
|
||||
"moduleLog.showLog": "Показать лог",
|
||||
"moduleMigration.docUri": "https://github.com/vrtmrz/obsidian-livesync/blob/main/README.md#how-to-use",
|
||||
"moduleMigration.fix0256.buttons.checkItLater": "Проверить позже",
|
||||
"moduleMigration.fix0256.buttons.DismissForever": "Исправлено, больше не спрашивать",
|
||||
"moduleMigration.fix0256.buttons.fix": "Исправить",
|
||||
"moduleMigration.fix0256.message": "Из-за недавней ошибки некоторые файлы могут быть неправильно сохранены.",
|
||||
"moduleMigration.fix0256.messageUnrecoverable": "Файлы не могут быть исправлены на этом устройстве:",
|
||||
"moduleMigration.fix0256.title": "Обнаружены повреждённые файлы",
|
||||
"moduleMigration.insecureChunkExist.buttons.fetch": "Я уже перестроил удалённую. Загрузить с удалённой",
|
||||
"moduleMigration.insecureChunkExist.buttons.later": "Сделаю позже",
|
||||
"moduleMigration.insecureChunkExist.buttons.rebuild": "Перестроить всё",
|
||||
"moduleMigration.insecureChunkExist.laterMessage": "Мы настоятельно рекомендуем обработать это как можно скорее!",
|
||||
"moduleMigration.insecureChunkExist.message": "Некоторые чанки хранятся небезопасно. Пожалуйста, перестройте базу данных.",
|
||||
"moduleMigration.insecureChunkExist.title": "Обнаружены небезопасные чанки!",
|
||||
"moduleMigration.logBulkSendCorrupted": "Отправка чанков пакетами была включена, но эта функция была повреждена. Приносим извинения. Автоматически отключено.",
|
||||
"moduleMigration.logFetchRemoteTweakFailed": "Не удалось загрузить удалённые настройки",
|
||||
"moduleMigration.logLocalDatabaseNotReady": "Что-то пошло не так! Локальная база данных не готова",
|
||||
"moduleMigration.logMigratedSameBehaviour": "Миграция на db:current с тем же поведением, что и раньше",
|
||||
"moduleMigration.logMigrationFailed": "Миграция не удалась или отменена с old на current",
|
||||
"moduleMigration.logRedflag2CreationFail": "Не удалось создать redflag2",
|
||||
"moduleMigration.logRemoteTweakUnavailable": "Не удалось получить удалённые настройки",
|
||||
"moduleMigration.logSetupCancelled": "Настройка отменена, Self-hosted LiveSync ожидает вашей настройки!",
|
||||
"moduleMigration.msgFetchRemoteAgain": "Удалённая база данных, похоже, уже была мигрирована. Конфигурация этого устройства несовместима.",
|
||||
"moduleMigration.msgInitialSetup": "Ваше устройство ещё не настроено. У вас есть Setup URI?",
|
||||
"moduleMigration.msgRecommendSetupUri": "Мы рекомендуем сгенерировать Setup URI.",
|
||||
"moduleMigration.msgSinceV02321": "Начиная с v0.23.21, self-hosted LiveSync изменил поведение и структуру базы данных.",
|
||||
"moduleMigration.optionAdjustRemote": "Настроить под удалённую",
|
||||
"moduleMigration.optionDecideLater": "Решить позже",
|
||||
"moduleMigration.optionEnableBoth": "Включить оба",
|
||||
"moduleMigration.optionEnableFilenameCaseInsensitive": "Включить только #1",
|
||||
"moduleMigration.optionEnableFixedRevisionForChunks": "Включить только #2",
|
||||
"moduleMigration.optionHaveSetupUri": "Да, есть",
|
||||
"moduleMigration.optionKeepPreviousBehaviour": "Сохранить предыдущее поведение",
|
||||
"moduleMigration.optionManualSetup": "Настроить всё вручную",
|
||||
"moduleMigration.optionNoAskAgain": "Нет, спросить снова",
|
||||
"moduleMigration.optionNoSetupUri": "Нет, нет",
|
||||
"moduleMigration.optionRemindNextLaunch": "Напомнить при следующем запуске",
|
||||
"moduleMigration.optionSetupViaP2P": "Использовать short_p2p_sync для настройки",
|
||||
"moduleMigration.optionSetupWizard": "Перейти в мастер настройки",
|
||||
"moduleMigration.optionYesFetchAgain": "Да, загрузить снова",
|
||||
"moduleMigration.titleCaseSensitivity": "Чувствительность к регистру",
|
||||
"moduleMigration.titleRecommendSetupUri": "Рекомендация использовать Setup URI",
|
||||
"moduleMigration.titleWelcome": "Добро пожаловать в Self-hosted LiveSync",
|
||||
"moduleObsidianMenu.replicate": "Реплицировать",
|
||||
"More actions": "Другие действия",
|
||||
"Move remotely deleted files to the trash, instead of deleting.": "Перемещать удалённые на удалённом сервере файлы в корзину вместо удаления.",
|
||||
"Network warning style": "Стиль сетевого предупреждения",
|
||||
"New Remote": "Новое удалённое хранилище",
|
||||
"No connected device information found. Cancelling Garbage Collection.": "Не найдена информация о подключённых устройствах. Garbage Collection отменяется.",
|
||||
"No limit configured": "Лимит не задан",
|
||||
"No, please take me back": "Нет, верните меня назад",
|
||||
"Node ID": "ID узла",
|
||||
"Node Information Missing": "Отсутствует информация об узле",
|
||||
"Non-Synchronising files": "Несинхронизируемые файлы",
|
||||
"Normal Files": "Обычные файлы",
|
||||
"Not all messages have been translated. And, please revert to \"Default\" when reporting errors.": "Не все сообщения переведены. И, пожалуйста, вернитесь к «По умолчанию» при сообщении об ошибках.",
|
||||
"Notify all setting files": "Уведомлять обо всех файлах настроек",
|
||||
"Notify customized": "Уведомлять о настройках",
|
||||
"Notify when other device has newly customized.": "Уведомлять, когда другое устройство изменило настройки.",
|
||||
"Notify when the estimated remote storage size exceeds on start up": "Уведомлять, когда оценочный размер удалённого хранилища превышает при запуске",
|
||||
"Number of batches to process at a time. Defaults to 40. Minimum is 2.": "Количество пакетов для обработки за раз. По умолчанию 40. Минимум 2.",
|
||||
"Number of batches to process at a time. Defaults to 40. Minimum is 2. This along with batch size controls how many docs are kept in memory at a time.": "Number of batches to process at a time. Defaults to 40. Minimum is 2. This along with batch size controls how many docs are kept in memory at a time.",
|
||||
"Number of changes to sync at a time. Defaults to 50. Minimum is 2.": "Количество изменений для синхронизации за раз. По умолчанию 50. Минимум 2.",
|
||||
"Obsidian version": "Версия Obsidian",
|
||||
"obsidianLiveSyncSettingTab.btnApply": "Применить",
|
||||
"obsidianLiveSyncSettingTab.btnCheck": "Проверить",
|
||||
"obsidianLiveSyncSettingTab.btnCopy": "Копировать",
|
||||
"obsidianLiveSyncSettingTab.btnDisable": "Отключить",
|
||||
"obsidianLiveSyncSettingTab.btnDiscard": "Отменить",
|
||||
"obsidianLiveSyncSettingTab.btnEnable": "Включить",
|
||||
"obsidianLiveSyncSettingTab.btnFix": "Исправить",
|
||||
"obsidianLiveSyncSettingTab.btnGotItAndUpdated": "Понял и обновил.",
|
||||
"obsidianLiveSyncSettingTab.btnNext": "Далее",
|
||||
"obsidianLiveSyncSettingTab.btnStart": "Старт",
|
||||
"obsidianLiveSyncSettingTab.btnTest": "Тест",
|
||||
"obsidianLiveSyncSettingTab.btnUse": "Использовать",
|
||||
"obsidianLiveSyncSettingTab.buttonFetch": "Загрузить",
|
||||
"obsidianLiveSyncSettingTab.buttonNext": "Далее",
|
||||
"obsidianLiveSyncSettingTab.defaultLanguage": "По умолчанию",
|
||||
"obsidianLiveSyncSettingTab.descConnectSetupURI": "Это рекомендуемый способ настройки Self-hosted LiveSync с помощью Setup URI.",
|
||||
"obsidianLiveSyncSettingTab.descCopySetupURI": "Идеально подходит для настройки нового устройства!",
|
||||
"obsidianLiveSyncSettingTab.descEnableLiveSync": "Включайте это только после настройки одного из двух вариантов выше или после полного ручного завершения всей конфигурации.",
|
||||
"obsidianLiveSyncSettingTab.descFetchConfigFromRemote": "Получить необходимые настройки с уже настроенного удалённого сервера.",
|
||||
"obsidianLiveSyncSettingTab.descManualSetup": "Не рекомендуется, но полезно, если у вас нет Setup URI.",
|
||||
"obsidianLiveSyncSettingTab.descTestDatabaseConnection": "Открыть подключение к базе данных. Если удалённая база данных не найдена и у вас есть право на её создание, база будет создана.",
|
||||
"obsidianLiveSyncSettingTab.descValidateDatabaseConfig": "Проверяет и исправляет любые потенциальные проблемы в конфигурации базы данных.",
|
||||
"obsidianLiveSyncSettingTab.errAccessForbidden": "❗ Доступ запрещён.",
|
||||
"obsidianLiveSyncSettingTab.errCannotContinueTest": "Мы не можем продолжить тест.",
|
||||
"obsidianLiveSyncSettingTab.errCorsCredentials": "❗ cors.credentials неверно",
|
||||
"obsidianLiveSyncSettingTab.errCorsNotAllowingCredentials": "❗ CORS не разрешает учётные данные",
|
||||
"obsidianLiveSyncSettingTab.errCorsOrigins": "❗ cors.origins неверно",
|
||||
"obsidianLiveSyncSettingTab.errEnableCors": "❗ httpd.enable_cors неверно",
|
||||
"obsidianLiveSyncSettingTab.errEnableCorsChttpd": "❗ chttpd.enable_cors неверно",
|
||||
"obsidianLiveSyncSettingTab.errMaxDocumentSize": "❗ couchdb.max_document_size низкое",
|
||||
"obsidianLiveSyncSettingTab.errMaxRequestSize": "❗ chttpd.max_http_request_size низкое",
|
||||
"obsidianLiveSyncSettingTab.errMissingWwwAuth": "❗ httpd.WWW-Authenticate отсутствует",
|
||||
"obsidianLiveSyncSettingTab.errRequireValidUser": "❗ chttpd.require_valid_user неверно.",
|
||||
"obsidianLiveSyncSettingTab.errRequireValidUserAuth": "❗ chttpd_auth.require_valid_user неверно.",
|
||||
"obsidianLiveSyncSettingTab.labelDisabled": "⏹️ : Отключено",
|
||||
"obsidianLiveSyncSettingTab.labelEnabled": "🔁 : Включено",
|
||||
"obsidianLiveSyncSettingTab.levelAdvanced": " (Расширенные)",
|
||||
"obsidianLiveSyncSettingTab.levelEdgeCase": " (Граничные случаи)",
|
||||
"obsidianLiveSyncSettingTab.levelPowerUser": " (Опытный пользователь)",
|
||||
"obsidianLiveSyncSettingTab.linkOpenInBrowser": "Открыть в браузере",
|
||||
"obsidianLiveSyncSettingTab.linkPageTop": "В начало страницы",
|
||||
"obsidianLiveSyncSettingTab.linkTipsAndTroubleshooting": "Советы и устранение неполадок",
|
||||
"obsidianLiveSyncSettingTab.linkTroubleshooting": "/docs/troubleshooting.md",
|
||||
"obsidianLiveSyncSettingTab.logCannotUseCloudant": "Эта функция недоступна для IBM Cloudant.",
|
||||
"obsidianLiveSyncSettingTab.logCheckingConfigDone": "Проверка конфигурации завершена",
|
||||
"obsidianLiveSyncSettingTab.logCheckingConfigFailed": "Проверка конфигурации не удалась",
|
||||
"obsidianLiveSyncSettingTab.logCheckingDbConfig": "Проверка конфигурации базы данных",
|
||||
"obsidianLiveSyncSettingTab.logCheckPassphraseFailed": "ОШИБКА: Не удалось проверить пароль с удалённым сервером: db.",
|
||||
"obsidianLiveSyncSettingTab.logConfiguredDisabled": "Настроенный режим синхронизации: ОТКЛЮЧЕН",
|
||||
"obsidianLiveSyncSettingTab.logConfiguredLiveSync": "Настроенный режим синхронизации: LiveSync",
|
||||
"obsidianLiveSyncSettingTab.logConfiguredPeriodic": "Настроенный режим синхронизации: Периодический",
|
||||
"obsidianLiveSyncSettingTab.logCouchDbConfigFail": "Конфигурация CouchDB: title не удалась",
|
||||
"obsidianLiveSyncSettingTab.logCouchDbConfigSet": "Конфигурация CouchDB: title -> Установить key в value",
|
||||
"obsidianLiveSyncSettingTab.logCouchDbConfigUpdated": "Конфигурация CouchDB: title успешно обновлена",
|
||||
"obsidianLiveSyncSettingTab.logDatabaseConnected": "База данных подключена",
|
||||
"obsidianLiveSyncSettingTab.logEncryptionNoPassphrase": "Вы не можете включить шифрование без парольной фразы",
|
||||
"obsidianLiveSyncSettingTab.logEncryptionNoSupport": "Ваше устройство не поддерживает шифрование.",
|
||||
"obsidianLiveSyncSettingTab.logErrorOccurred": "Произошла ошибка!!",
|
||||
"obsidianLiveSyncSettingTab.logEstimatedSize": "Примерный размер: size",
|
||||
"obsidianLiveSyncSettingTab.logPassphraseInvalid": "Парольная фраза недействительна, пожалуйста, исправьте.",
|
||||
"obsidianLiveSyncSettingTab.logPassphraseNotCompatible": "ОШИБКА: Парольная фраза несовместима с удалённым сервером!",
|
||||
"obsidianLiveSyncSettingTab.logRebuildNote": "Синхронизация отключена, загрузите и включите снова при желании.",
|
||||
"obsidianLiveSyncSettingTab.logSelectAnyPreset": "Выберите любой пресет.",
|
||||
"obsidianLiveSyncSettingTab.msgAreYouSureProceed": "Вы уверены, что хотите продолжить?",
|
||||
"obsidianLiveSyncSettingTab.msgChangesNeedToBeApplied": "Изменения нужно применить!",
|
||||
"obsidianLiveSyncSettingTab.msgConfigCheck": "--Проверка конфигурации--",
|
||||
"obsidianLiveSyncSettingTab.msgConfigCheckFailed": "Проверка конфигурации не удалась. Вы всё равно хотите продолжить?",
|
||||
"obsidianLiveSyncSettingTab.msgConnectionCheck": "--Проверка подключения--",
|
||||
"obsidianLiveSyncSettingTab.msgConnectionProxyNote": "Если у вас проблемы с проверкой подключения, проверьте конфигурацию обратного прокси.",
|
||||
"obsidianLiveSyncSettingTab.msgCurrentOrigin": "Текущий origin: origin",
|
||||
"obsidianLiveSyncSettingTab.msgDiscardConfirmation": "Вы действительно хотите отменить существующие настройки и базы данных?",
|
||||
"obsidianLiveSyncSettingTab.msgDone": "--Готово--",
|
||||
"obsidianLiveSyncSettingTab.msgEnableCors": "Установить httpd.enable_cors",
|
||||
"obsidianLiveSyncSettingTab.msgEnableCorsChttpd": "Установить chttpd.enable_cors",
|
||||
"obsidianLiveSyncSettingTab.msgEnableEncryptionRecommendation": "Мы рекомендуем включить сквозное шифрование. Вы уверены, что хотите продолжить без шифрования?",
|
||||
"obsidianLiveSyncSettingTab.msgFetchConfigFromRemote": "Вы хотите загрузить конфигурацию с удалённого сервера?",
|
||||
"obsidianLiveSyncSettingTab.msgGenerateSetupURI": "Всё готово! Вы хотите сгенерировать Setup URI для настройки других устройств?",
|
||||
"obsidianLiveSyncSettingTab.msgIfConfigNotPersistent": "Если конфигурация сервера непостоянна, значения здесь могут измениться.",
|
||||
"obsidianLiveSyncSettingTab.msgInvalidPassphrase": "Ваша парольная фраза шифрования может быть недействительна.",
|
||||
"obsidianLiveSyncSettingTab.msgNewVersionNote": "Вы пришли из-за уведомления об обновлении? Просмотрите историю версий.",
|
||||
"obsidianLiveSyncSettingTab.msgNonHTTPSInfo": "Настроено как не-HTTPS URI. Это может не работать на мобильных устройствах.",
|
||||
"obsidianLiveSyncSettingTab.msgNonHTTPSWarning": "Не удаётся подключиться к не-HTTPS URI. Обновите конфигурацию.",
|
||||
"obsidianLiveSyncSettingTab.msgNotice": "---Уведомление---",
|
||||
"obsidianLiveSyncSettingTab.msgObjectStorageWarning": "ПРЕДУПРЕЖДЕНИЕ: Эта функция в разработке.",
|
||||
"obsidianLiveSyncSettingTab.msgOriginCheck": "Проверка origin: org",
|
||||
"obsidianLiveSyncSettingTab.msgRebuildRequired": "Требуется перестроение баз данных для применения изменений.",
|
||||
"obsidianLiveSyncSettingTab.msgSelectAndApplyPreset": "Выберите и примените любой пресет для завершения мастера.",
|
||||
"obsidianLiveSyncSettingTab.msgSetCorsCredentials": "Установить cors.credentials",
|
||||
"obsidianLiveSyncSettingTab.msgSetCorsOrigins": "Установить cors.origins",
|
||||
"obsidianLiveSyncSettingTab.msgSetMaxDocSize": "Установить couchdb.max_document_size",
|
||||
"obsidianLiveSyncSettingTab.msgSetMaxRequestSize": "Установить chttpd.max_http_request_size",
|
||||
"obsidianLiveSyncSettingTab.msgSetRequireValidUser": "Установить chttpd.require_valid_user = true",
|
||||
"obsidianLiveSyncSettingTab.msgSetRequireValidUserAuth": "Установить chttpd_auth.require_valid_user = true",
|
||||
"obsidianLiveSyncSettingTab.msgSettingModified": "Настройка setting была изменена с другого устройства.",
|
||||
"obsidianLiveSyncSettingTab.msgSettingsUnchangeableDuringSync": "Эти настройки нельзя изменить во время синхронизации.",
|
||||
"obsidianLiveSyncSettingTab.msgSetWwwAuth": "Установить httpd.WWW-Authenticate",
|
||||
"obsidianLiveSyncSettingTab.nameApplySettings": "Применить настройки",
|
||||
"obsidianLiveSyncSettingTab.nameConnectSetupURI": "Подключиться через Setup URI",
|
||||
"obsidianLiveSyncSettingTab.nameCopySetupURI": "Копировать текущие настройки в Setup URI",
|
||||
"obsidianLiveSyncSettingTab.nameDisableHiddenFileSync": "Отключить синхронизацию скрытых файлов",
|
||||
"obsidianLiveSyncSettingTab.nameDiscardSettings": "Отменить существующие настройки и базы данных",
|
||||
"obsidianLiveSyncSettingTab.nameEnableHiddenFileSync": "Включить синхронизацию скрытых файлов",
|
||||
"obsidianLiveSyncSettingTab.nameEnableLiveSync": "Включить LiveSync",
|
||||
"obsidianLiveSyncSettingTab.nameHiddenFileSynchronization": "Синхронизация скрытых файлов",
|
||||
"obsidianLiveSyncSettingTab.nameManualSetup": "Ручная настройка",
|
||||
"obsidianLiveSyncSettingTab.nameTestConnection": "Тест подключения",
|
||||
"obsidianLiveSyncSettingTab.nameTestDatabaseConnection": "Тест подключения к базе данных",
|
||||
"obsidianLiveSyncSettingTab.nameValidateDatabaseConfig": "Проверить конфигурацию базы данных",
|
||||
"obsidianLiveSyncSettingTab.okAdminPrivileges": "✔ У вас есть права администратора.",
|
||||
"obsidianLiveSyncSettingTab.okCorsCredentials": "✔ cors.credentials в порядке.",
|
||||
"obsidianLiveSyncSettingTab.okCorsCredentialsForOrigin": "CORS учётные данные в порядке",
|
||||
"obsidianLiveSyncSettingTab.okCorsOriginMatched": "✔ CORS origin в порядке",
|
||||
"obsidianLiveSyncSettingTab.okCorsOrigins": "✔ cors.origins в порядке.",
|
||||
"obsidianLiveSyncSettingTab.okEnableCors": "✔ httpd.enable_cors в порядке.",
|
||||
"obsidianLiveSyncSettingTab.okEnableCorsChttpd": "✔ chttpd.enable_cors в порядке.",
|
||||
"obsidianLiveSyncSettingTab.okMaxDocumentSize": "✔ couchdb.max_document_size в порядке.",
|
||||
"obsidianLiveSyncSettingTab.okMaxRequestSize": "✔ chttpd.max_http_request_size в порядке.",
|
||||
"obsidianLiveSyncSettingTab.okRequireValidUser": "✔ chttpd.require_valid_user в порядке.",
|
||||
"obsidianLiveSyncSettingTab.okRequireValidUserAuth": "✔ chttpd_auth.require_valid_user в порядке.",
|
||||
"obsidianLiveSyncSettingTab.okWwwAuth": "✔ httpd.WWW-Authenticate в порядке.",
|
||||
"obsidianLiveSyncSettingTab.optionApply": "Применить",
|
||||
"obsidianLiveSyncSettingTab.optionCancel": "Отмена",
|
||||
"obsidianLiveSyncSettingTab.optionCouchDB": "CouchDB",
|
||||
"obsidianLiveSyncSettingTab.optionDisableAllAutomatic": "Отключить всё автоматическое",
|
||||
"obsidianLiveSyncSettingTab.optionFetchFromRemote": "Загрузить с удалённого",
|
||||
"obsidianLiveSyncSettingTab.optionHere": "ЗДЕСЬ",
|
||||
"obsidianLiveSyncSettingTab.optionLiveSync": "Синхронизация LiveSync",
|
||||
"obsidianLiveSyncSettingTab.optionMinioS3R2": "Minio,S3,R2",
|
||||
"obsidianLiveSyncSettingTab.optionOkReadEverything": "ОК, я всё прочитал.",
|
||||
"obsidianLiveSyncSettingTab.optionOnEvents": "По событиям",
|
||||
"obsidianLiveSyncSettingTab.optionPeriodicAndEvents": "Периодически и по событиям",
|
||||
"obsidianLiveSyncSettingTab.optionPeriodicWithBatch": "Периодически с пакетами",
|
||||
"obsidianLiveSyncSettingTab.optionRebuildBoth": "Перестроить оба с этого устройства",
|
||||
"obsidianLiveSyncSettingTab.optionSaveOnlySettings": "(Опасно) Сохранить только настройки",
|
||||
"obsidianLiveSyncSettingTab.panelChangeLog": "История изменений",
|
||||
"obsidianLiveSyncSettingTab.panelGeneralSettings": "Основные настройки",
|
||||
"obsidianLiveSyncSettingTab.panelPrivacyEncryption": "Конфиденциальность и шифрование",
|
||||
"obsidianLiveSyncSettingTab.panelRemoteConfiguration": "Удалённая конфигурация",
|
||||
"obsidianLiveSyncSettingTab.panelSetup": "Настройка",
|
||||
"obsidianLiveSyncSettingTab.serverVersion": "Информация о сервере: info",
|
||||
"obsidianLiveSyncSettingTab.titleActiveRemoteServer": "Активный удалённый сервер",
|
||||
"obsidianLiveSyncSettingTab.titleAppearance": "Внешний вид",
|
||||
"obsidianLiveSyncSettingTab.titleConflictResolution": "Разрешение конфликтов",
|
||||
"obsidianLiveSyncSettingTab.titleCongratulations": "Поздравляем!",
|
||||
"obsidianLiveSyncSettingTab.titleCouchDB": "Сервер CouchDB",
|
||||
"obsidianLiveSyncSettingTab.titleDeletionPropagation": "Распространение удалений",
|
||||
"obsidianLiveSyncSettingTab.titleEncryptionNotEnabled": "Шифрование не включено",
|
||||
"obsidianLiveSyncSettingTab.titleEncryptionPassphraseInvalid": "Парольная фраза шифрования недействительна",
|
||||
"obsidianLiveSyncSettingTab.titleExtraFeatures": "Включить дополнительные и расширенные функции",
|
||||
"obsidianLiveSyncSettingTab.titleFetchConfig": "Загрузить конфигурацию",
|
||||
"obsidianLiveSyncSettingTab.titleFetchConfigFromRemote": "Загрузить конфигурацию с удалённого сервера",
|
||||
"obsidianLiveSyncSettingTab.titleFetchSettings": "Загрузить настройки",
|
||||
"obsidianLiveSyncSettingTab.titleHiddenFiles": "Скрытые файлы",
|
||||
"obsidianLiveSyncSettingTab.titleLogging": "Логирование",
|
||||
"obsidianLiveSyncSettingTab.titleMinioS3R2": "MinIO, S3, R2",
|
||||
"obsidianLiveSyncSettingTab.titleNotification": "Уведомления",
|
||||
"obsidianLiveSyncSettingTab.titleOnlineTips": "Онлайн советы",
|
||||
"obsidianLiveSyncSettingTab.titleQuickSetup": "Быстрая настройка",
|
||||
"obsidianLiveSyncSettingTab.titleRebuildRequired": "Требуется перестроение",
|
||||
"obsidianLiveSyncSettingTab.titleRemoteConfigCheckFailed": "Проверка удалённой конфигурации не удалась",
|
||||
"obsidianLiveSyncSettingTab.titleRemoteServer": "Удалённый сервер",
|
||||
"obsidianLiveSyncSettingTab.titleReset": "Сброс",
|
||||
"obsidianLiveSyncSettingTab.titleSetupOtherDevices": "Для настройки других устройств",
|
||||
"obsidianLiveSyncSettingTab.titleSynchronizationMethod": "Метод синхронизации",
|
||||
"obsidianLiveSyncSettingTab.titleSynchronizationPreset": "Пресет синхронизации",
|
||||
"obsidianLiveSyncSettingTab.titleSyncSettings": "Настройки синхронизации",
|
||||
"obsidianLiveSyncSettingTab.titleSyncSettingsViaMarkdown": "Синхронизация настроек через Markdown",
|
||||
"obsidianLiveSyncSettingTab.titleUpdateThinning": "Оптимизация обновлений",
|
||||
"obsidianLiveSyncSettingTab.warnCorsOriginUnmatched": "⚠ CORS Origin не совпадает from->to",
|
||||
"obsidianLiveSyncSettingTab.warnNoAdmin": "⚠ У вас нет прав администратора.",
|
||||
"Ok": "ОК",
|
||||
"Old Algorithm": "Старый алгоритм",
|
||||
"Older fallback (Slow, W/O WebAssembly)": "Старый вариант fallback (медленный, без WebAssembly)",
|
||||
"Open": "Открыть",
|
||||
"Open the dialog": "Открыть диалог",
|
||||
"Overwrite": "Перезаписать",
|
||||
"Overwrite patterns": "Шаблоны перезаписи",
|
||||
"Overwrite remote": "Перезаписать удалённое хранилище",
|
||||
"Overwrite remote with local DB and passphrase.": "Перезаписать удалённое хранилище локальной БД и парольной фразой.",
|
||||
"Overwrite Server Data with This Device's Files": "Перезаписать данные сервера файлами с этого устройства",
|
||||
"P2P.AskPassphraseForDecrypt": "Удалённое устройство предоставило конфигурацию. Введите пароль для расшифровки.",
|
||||
"P2P.AskPassphraseForShare": "Удалённое устройство запрашивает эту конфигурацию. Введите пароль для передачи.",
|
||||
"P2P.DisabledButNeed": "title_p2p_sync отключён. Вы действительно хотите включить?",
|
||||
"P2P.FailedToOpen": "Не удалось открыть P2P подключение к серверу сигнализации.",
|
||||
"P2P.NoAutoSyncPeers": "Автосинхронизируемые устройства не найдены.",
|
||||
"P2P.NoKnownPeers": "Устройства не обнаружены, ожидаем другие устройства...",
|
||||
"P2P.Note.description": "Этот репликатор позволяет синхронизировать хранилище с другими устройствами с использованием однорангового соединения.",
|
||||
"P2P.Note.important_note": "P2P репликатор.",
|
||||
"P2P.Note.important_note_sub": "Эта функция всё ещё на стадии разработки. Пожалуйста, убедитесь, что ваши данные зарезервированы.",
|
||||
"P2P.Note.Summary": "Что это за функция? (важные замечания)",
|
||||
"P2P.NotEnabled": "title_p2p_sync не включён. Мы не можем открыть новое подключение.",
|
||||
"P2P.P2PReplication": "P2P Репликация",
|
||||
"P2P.PaneTitle": "long_p2p_sync",
|
||||
"P2P.ReplicatorInstanceMissing": "P2P Sync репликатор не найден, возможно, не настроен.",
|
||||
"P2P.SeemsOffline": "Устройство name офлайн, пропущено.",
|
||||
"P2P.SyncAlreadyRunning": "P2P Sync уже запущен.",
|
||||
"P2P.SyncCompleted": "P2P Sync завершён.",
|
||||
"P2P.SyncStartedWith": "P2P Sync с name начат.",
|
||||
"paneMaintenance.markDeviceResolvedAfterBackup": "Пометить устройство как обработанное после резервного копирования",
|
||||
"paneMaintenance.remoteLockedAndDeviceNotAccepted": "Удалённая база данных заблокирована, и это устройство ещё не одобрено.",
|
||||
"paneMaintenance.remoteLockedResolvedDevice": "Удалённая база данных заблокирована, но это устройство уже одобрено.",
|
||||
"paneMaintenance.unlockDatabaseReady": "Разблокировать базу данных",
|
||||
"Passphrase": "Парольная фраза",
|
||||
"Passphrase of sensitive configuration items": "Парольная фраза для конфиденциальных настроек",
|
||||
"password": "пароль",
|
||||
"Password": "Пароль",
|
||||
"Paste a connection string": "Вставить строку подключения",
|
||||
"Paste the Setup URI generated from one of your active devices.": "Вставьте Setup URI, созданный на одном из ваших активных устройств。",
|
||||
"Path Obfuscation": "Обфускация путей",
|
||||
"Patterns to match files for overwriting instead of merging": "Шаблоны для файлов, которые нужно перезаписывать вместо объединения",
|
||||
"Patterns to match files for syncing": "Шаблоны для файлов, которые нужно синхронизировать",
|
||||
"Peer-to-Peer only": "Только Peer-to-Peer",
|
||||
"Peer-to-Peer Synchronisation": "Одноранговая синхронизация",
|
||||
"Per-file-saved customization sync": "Синхронизация настроек для каждого файла",
|
||||
"Perform": "Выполнить",
|
||||
"Perform cleanup": "Выполнить очистку",
|
||||
"Perform Garbage Collection": "Выполнить сборку мусора",
|
||||
"Perform Garbage Collection to remove unused chunks and reduce database size.": "Выполняет сборку мусора, чтобы удалить неиспользуемые чанки и уменьшить размер базы данных.",
|
||||
"Periodic Sync interval": "Интервал периодической синхронизации",
|
||||
"Pick a file to resolve conflict": "Выбрать файл для разрешения конфликта",
|
||||
"Please disable 'Read chunks online' in settings to use Garbage Collection.": "Чтобы использовать Garbage Collection, отключите в настройках «Read chunks online».",
|
||||
"Please enable 'Compute revisions for chunks' in settings to use Garbage Collection.": "Чтобы использовать Garbage Collection, включите в настройках «Compute revisions for chunks».",
|
||||
"Please select 'Cancel' explicitly to cancel this operation.": "Чтобы отменить эту операцию, явно выберите «Отмена».",
|
||||
"Please select a method to import the settings from another device.": "Выберите способ импорта настроек с другого устройства。",
|
||||
"Please select an option to proceed": "Чтобы продолжить, выберите вариант",
|
||||
"Please select the type of server to which you are connecting.": "Выберите тип сервера, к которому вы подключаетесь。",
|
||||
"Please set device name to identify this device. This name should be unique among your devices. While not configured, we cannot enable this feature.": "Укажите имя устройства для идентификации этого устройства. Имя должно быть уникальным среди ваших устройств. Пока оно не задано, мы не можем включить эту функцию.",
|
||||
"Please set this device name": "Укажите имя этого устройства",
|
||||
"Plug-in version": "Версия плагина",
|
||||
"Prepare the 'report' to create an issue": "Подготовить «отчёт» для создания Issue",
|
||||
"Presets": "Пресеты",
|
||||
"Proceed Garbage Collection": "Продолжить Garbage Collection",
|
||||
"Proceed with Setup URI": "Продолжить с Setup URI",
|
||||
"Proceeding with Garbage Collection, ignoring missing nodes.": "Продолжаем Garbage Collection, игнорируя отсутствующие узлы.",
|
||||
"Proceeding with Garbage Collection.": "Запускаем Garbage Collection.",
|
||||
"Process small files in the foreground": "Обрабатывать маленькие файлы в основном потоке",
|
||||
"Progress": "Прогресс",
|
||||
"Property Encryption": "Шифрование свойств",
|
||||
"PureJS fallback (Fast, W/O WebAssembly)": "Вариант PureJS (быстрый, без WebAssembly)",
|
||||
"Purge all download/upload cache.": "Очистить весь кэш загрузки/выгрузки.",
|
||||
"Purge all journal counter": "Очистить все счётчики журнала",
|
||||
"Rebuild local and remote database with local files.": "Перестроить локальную и удалённую базы данных на основе локальных файлов.",
|
||||
"Rebuilding Operations (Remote Only)": "Операции перестроения (только удалённое хранилище)",
|
||||
"Recreate all": "Пересоздать всё",
|
||||
"Recreate missing chunks for all files": "Пересоздать отсутствующие чанки для всех файлов",
|
||||
"RedFlag.Fetch.Method.Desc": "Как вы хотите загрузить?",
|
||||
"RedFlag.Fetch.Method.FetchSafer": "Создать локальную базу данных перед загрузкой",
|
||||
"RedFlag.Fetch.Method.FetchSmoother": "Создать локальные чанки перед загрузкой",
|
||||
"RedFlag.Fetch.Method.FetchTraditional": "Загрузить всё с удалённого",
|
||||
"RedFlag.Fetch.Method.Title": "Как вы хотите загрузить?",
|
||||
"RedFlag.FetchRemoteConfig.Buttons.Cancel": "Нет, использовать локальные настройки",
|
||||
"RedFlag.FetchRemoteConfig.Buttons.Fetch": "Да, загрузить и применить удалённые настройки",
|
||||
"RedFlag.FetchRemoteConfig.Message": "Вы хотите загрузить и применить удалённые настройки?",
|
||||
"RedFlag.FetchRemoteConfig.Title": "Загрузить удалённую конфигурацию",
|
||||
"Reducing the frequency with which on-disk changes are reflected into the DB": "Уменьшение частоты отражения изменений с диска в БД",
|
||||
"Region": "Регион",
|
||||
"Remediation": "Исправление",
|
||||
"Remediation Setting Changed": "Настройки исправления изменены",
|
||||
"Remote Database Tweak (In sunset)": "Настройки удалённой базы данных (устаревает)",
|
||||
"Remote Databases": "Удалённые базы данных",
|
||||
"Remote name": "Имя удалённого хранилища",
|
||||
"Remote server type": "Тип удалённого сервера",
|
||||
"Remote Type": "Удалённый тип",
|
||||
"Rename": "Переименовать",
|
||||
"Replicator.Dialogue.Locked.Action.Dismiss": "Отмена для подтверждения",
|
||||
"Replicator.Dialogue.Locked.Action.Fetch": "Сбросить синхронизацию на этом устройстве",
|
||||
"Replicator.Dialogue.Locked.Action.Unlock": "Разблокировать удалённую базу данных",
|
||||
"Replicator.Dialogue.Locked.Message": "Удалённая база данных заблокирована. Это связано с перестроением на одном из устройств.",
|
||||
"Replicator.Dialogue.Locked.Message.Fetch": "Загрузка всего запланирована. Плагин будет перезапущен.",
|
||||
"Replicator.Dialogue.Locked.Message.Unlocked": "Удалённая база данных разблокирована. Повторите операцию.",
|
||||
"Replicator.Dialogue.Locked.Title": "Заблокировано",
|
||||
"Replicator.Message.Cleaned": "Очистка базы данных в процессе. Репликация отменена",
|
||||
"Replicator.Message.InitialiseFatalError": "Репликатор недоступен, это фатальная ошибка.",
|
||||
"Replicator.Message.Pending": "Некоторые события файлов ожидают. Репликация отменена.",
|
||||
"Replicator.Message.SomeModuleFailed": "Репликация отменена из-за сбоя модуля",
|
||||
"Replicator.Message.VersionUpFlash": "Обновление обнаружено. Откройте настройки и проверьте историю изменений.",
|
||||
"Requires restart of Obsidian": "Требуется перезапуск Obsidian",
|
||||
"Requires restart of Obsidian.": "Требуется перезапуск Obsidian.",
|
||||
"Rerun Onboarding Wizard": "Перезапустить мастер настройки",
|
||||
"Rerun the onboarding wizard to set up Self-hosted LiveSync again.": "Перезапустить мастер настройки для повторной настройки Self-hosted LiveSync.",
|
||||
"Rerun Wizard": "Перезапустить мастер",
|
||||
"Resend": "Повторно отправить",
|
||||
"Resend all chunks to the remote.": "Повторно отправить все чанки в удалённое хранилище.",
|
||||
"Reset": "Сброс",
|
||||
"Reset all": "Сбросить всё",
|
||||
"Reset all journal counter": "Сбросить все счётчики журнала",
|
||||
"Reset journal received history": "Сбросить историю полученных записей журнала",
|
||||
"Reset journal sent history": "Сбросить историю отправленных записей журнала",
|
||||
"Reset notification threshold and check the remote database usage": "Сбросить порог уведомления и проверить использование удалённой базы данных",
|
||||
"Reset received": "Сбросить полученные",
|
||||
"Reset sent history": "Сбросить историю отправки",
|
||||
"Reset Synchronisation information": "Сбросить информацию о синхронизации",
|
||||
"Reset Synchronisation on This Device": "Сбросить синхронизацию на этом устройстве",
|
||||
"Reset the remote storage size threshold and check the remote storage size again.": "Сбросить порог размера удалённого хранилища и проверить размер хранилища снова.",
|
||||
"Resolve All": "Разрешить всё",
|
||||
"Resolve all conflicted files": "Разрешить все конфликтующие файлы",
|
||||
"Resolve All conflicted files by the newer one": "Разрешить все конфликтующие файлы в пользу более новой версии",
|
||||
"Resolve all conflicted files by the newer one. Caution: This will overwrite the older one, and cannot resurrect the overwritten one.": "Разрешает все конфликтующие файлы в пользу более новой версии. Внимание: старая версия будет перезаписана и её нельзя будет восстановить.",
|
||||
"Restart Now": "Перезапустить сейчас",
|
||||
"Restore or reconstruct local database from remote.": "Восстановить или перестроить локальную базу данных из удалённой.",
|
||||
"Run Doctor": "Запустить диагностику",
|
||||
"S3/MinIO/R2 Object Storage": "Объектное хранилище S3/MinIO/R2",
|
||||
"Save settings to a markdown file.": "Сохранить настройки в файл markdown.",
|
||||
"Save settings to a markdown file. You will be notified when new settings arrive. You can set different files by the platform.": "Save settings to a markdown file. You will be notified when new settings arrive. You can set different files by the platform.",
|
||||
"Saving will be performed forcefully after this number of seconds.": "Сохранение будет принудительно выполнено после этого количества секунд.",
|
||||
"Scan a QR Code (Recommended for mobile)": "Сканировать QR-код (рекомендуется для мобильных устройств)",
|
||||
"Scan changes on customization sync": "Сканировать изменения при синхронизации настроек",
|
||||
"Scan customization automatically": "Сканировать настройки автоматически",
|
||||
"Scan customization before replicating.": "Сканировать настройки перед репликацией.",
|
||||
"Scan customization every 1 minute.": "Сканировать настройки каждую минуту.",
|
||||
"Scan customization periodically": "Сканировать настройки периодически",
|
||||
"Scan for hidden files before replication": "Сканировать скрытые файлы перед репликацией",
|
||||
"Scan hidden files periodically": "Сканировать скрытые файлы периодически",
|
||||
"Scan the QR code displayed on an active device using this device's camera.": "Отсканируйте QR-код, показанный на активном устройстве, с помощью камеры этого устройства。",
|
||||
"Schedule and Restart": "Запланировать и перезапустить",
|
||||
"Scram!": "Экстренные меры",
|
||||
"Seconds, 0 to disable": "Секунд, 0 для отключения",
|
||||
"Seconds. Saving to the local database will be delayed until this value after we stop typing or saving.": "Секунды. Сохранение в локальную базу данных будет отложено.",
|
||||
"Secret Key": "Секретный ключ",
|
||||
"Select the database adapter to use.": "Выберите используемый адаптер базы данных.",
|
||||
"Send": "Отправить",
|
||||
"Send chunks": "Отправить чанки",
|
||||
"Server URI": "URI сервера",
|
||||
"Setting.GenerateKeyPair.Desc": "Мы сгенерировали пару ключей!",
|
||||
"Setting.GenerateKeyPair.Title": "Новая пара ключей сгенерирована!",
|
||||
"Setting.TroubleShooting": "Устранение неполадок",
|
||||
"Setting.TroubleShooting.Doctor": "Диагностика настроек",
|
||||
"Setting.TroubleShooting.Doctor.Desc": "Обнаруживает неоптимальные настройки.",
|
||||
"Setting.TroubleShooting.ScanBrokenFiles": "Сканировать повреждённые файлы",
|
||||
"Setting.TroubleShooting.ScanBrokenFiles.Desc": "Сканирует файлы, которые неправильно хранятся в базе данных.",
|
||||
"SettingTab.Message.AskRebuild": "Ваши изменения требуют загрузки из удалённой базы данных. Хотите продолжить?",
|
||||
"Setup URI dialog cancelled.": "Диалог Setup URI был отменён.",
|
||||
"Setup.Apply.Buttons.ApplyAndFetch": "Применить и загрузить",
|
||||
"Setup.Apply.Buttons.ApplyAndMerge": "Применить и объединить",
|
||||
"Setup.Apply.Buttons.ApplyAndRebuild": "Применить и перестроить",
|
||||
"Setup.Apply.Buttons.Cancel": "Отменить и отменить",
|
||||
"Setup.Apply.Buttons.OnlyApply": "Только применить",
|
||||
"Setup.Apply.Message": "Новая конфигурация готова. Есть несколько способов применить её.",
|
||||
"Setup.Apply.Title": "Применить новую конфигурацию из method",
|
||||
"Setup.Apply.WarningRebuildRecommended": "ПРИМЕЧАНИЕ: после настройки изменений определено, что требуется перестроение.",
|
||||
"Setup.Doctor.Buttons.No": "Нет, использовать настройки из URI как есть",
|
||||
"Setup.Doctor.Buttons.Yes": "Да, пожалуйста, запустить диагностику",
|
||||
"Setup.Doctor.Message": "Self-hosted LiveSync постепенно набрал историю и некоторые рекомендуемые настройки изменились.",
|
||||
"Setup.Doctor.Title": "Хотите запустить диагностику?",
|
||||
"Setup.FetchRemoteConf.Buttons.Fetch": "Да, загрузить конфигурацию",
|
||||
"Setup.FetchRemoteConf.Buttons.Skip": "Нет, использовать настройки из URI",
|
||||
"Setup.FetchRemoteConf.Message": "Если мы уже синхронизировались с другим устройством, удалённая база данных хранит подходящие значения конфигурации.",
|
||||
"Setup.FetchRemoteConf.Title": "Загрузить конфигурацию с удалённой базы данных?",
|
||||
"Setup.QRCode": "Мы сгенерировали QR-код для передачи настроек. Отсканируйте QR-код телефоном.",
|
||||
"Setup.RemoteE2EE.AdvancedTitle": "Дополнительно",
|
||||
"Setup.RemoteE2EE.AlgorithmWarning": "Изменение алгоритма шифрования лишит доступа к данным, которые ранее были зашифрованы другим алгоритмом. Убедитесь, что все ваши устройства настроены на использование одного и того же алгоритма, чтобы сохранить доступ к данным.",
|
||||
"Setup.RemoteE2EE.ButtonCancel": "Отмена",
|
||||
"Setup.RemoteE2EE.ButtonProceed": "Продолжить",
|
||||
"Setup.RemoteE2EE.DefaultAlgorithmDesc": "В большинстве случаев следует оставить алгоритм по умолчанию (${algorithm}). Этот параметр нужен только в том случае, если у вас уже есть Vault, зашифрованный в другом формате.",
|
||||
"Setup.RemoteE2EE.Guidance": "Пожалуйста, настройте параметры сквозного шифрования.",
|
||||
"Setup.RemoteE2EE.LabelEncrypt": "Сквозное шифрование",
|
||||
"Setup.RemoteE2EE.LabelEncryptionAlgorithm": "Алгоритм шифрования",
|
||||
"Setup.RemoteE2EE.LabelObfuscateProperties": "Обфусцировать свойства",
|
||||
"Setup.RemoteE2EE.MultiDestinationWarning": "Этот параметр должен быть одинаковым даже при подключении к нескольким направлениям синхронизации.",
|
||||
"Setup.RemoteE2EE.ObfuscatePropertiesDesc": "Обфускация свойств (например, пути к файлу, размера, дат создания и изменения) добавляет дополнительный уровень защиты, затрудняя определение структуры и названий ваших файлов и папок на удалённом сервере. Это помогает защитить вашу конфиденциальность и усложняет для посторонних вывод информации о ваших данных.",
|
||||
"Setup.RemoteE2EE.PassphraseValidationLine1": "Обратите внимание: парольная фраза для сквозного шифрования не проверяется до фактического начала процесса синхронизации. Это сделано в целях безопасности ваших данных.",
|
||||
"Setup.RemoteE2EE.PassphraseValidationLine2": "Поэтому при ручной настройке информации о сервере требуется предельная осторожность. Если будет введена неверная парольная фраза, данные на сервере будут повреждены. Пожалуйста, учтите, что это ожидаемое поведение.",
|
||||
"Setup.RemoteE2EE.PlaceholderPassphrase": "Введите парольную фразу",
|
||||
"Setup.RemoteE2EE.StronglyRecommendedLine1": "При включении сквозного шифрования ваши данные шифруются на устройстве до отправки на удалённый сервер. Это означает, что даже если кто-то получит доступ к серверу, он не сможет прочитать ваши данные без парольной фразы. Обязательно запомните парольную фразу, так как она потребуется для расшифровки данных на других устройствах.",
|
||||
"Setup.RemoteE2EE.StronglyRecommendedLine2": "Также обратите внимание: если вы используете синхронизацию Peer-to-Peer, эта конфигурация будет использована, когда вы позже переключитесь на другие методы и подключитесь к удалённому серверу.",
|
||||
"Setup.RemoteE2EE.StronglyRecommendedTitle": "Настоятельно рекомендуется",
|
||||
"Setup.RemoteE2EE.Title": "Сквозное шифрование",
|
||||
"Setup.ScanQRCode.ButtonClose": "Закрыть это окно",
|
||||
"Setup.ScanQRCode.Guidance": "Чтобы импортировать настройки с существующего устройства, выполните следующие шаги.",
|
||||
"Setup.ScanQRCode.Step1": "На этом устройстве оставьте данный Vault открытым.",
|
||||
"Setup.ScanQRCode.Step2": "На исходном устройстве откройте Obsidian.",
|
||||
"Setup.ScanQRCode.Step3": "На исходном устройстве в палитре команд выполните команду «Показать настройки как QR-код».",
|
||||
"Setup.ScanQRCode.Step4": "На этом устройстве откройте приложение камеры или используйте сканер QR-кодов, чтобы считать показанный QR-код.",
|
||||
"Setup.ScanQRCode.Title": "Сканировать QR-код",
|
||||
"Setup.ShowQRCode": "Показать QR код",
|
||||
"Setup.ShowQRCode.Desc": "Показать QR код для передачи настроек.",
|
||||
"Setup.UseSetupURI.ButtonCancel": "Отмена",
|
||||
"Setup.UseSetupURI.ButtonProceed": "Проверить настройки и продолжить",
|
||||
"Setup.UseSetupURI.ErrorFailedToParse": "Не удалось обработать Setup URI. Проверьте URI и парольную фразу.",
|
||||
"Setup.UseSetupURI.ErrorPassphraseRequired": "Пожалуйста, введите парольную фразу Vault.",
|
||||
"Setup.UseSetupURI.GuidanceLine1": "Введите Setup URI, созданный во время установки сервера или на другом устройстве, а также парольную фразу Vault.",
|
||||
"Setup.UseSetupURI.GuidanceLine2": "Новый Setup URI можно создать, выполнив в палитре команд команду «Скопировать настройки как новый Setup URI».",
|
||||
"Setup.UseSetupURI.InvalidInfo": "Setup URI некорректен. Проверьте его и попробуйте снова.",
|
||||
"Setup.UseSetupURI.LabelPassphrase": "Парольная фраза Vault",
|
||||
"Setup.UseSetupURI.LabelSetupURI": "Setup URI",
|
||||
"Setup.UseSetupURI.PlaceholderPassphrase": "Введите парольную фразу Vault",
|
||||
"Setup.UseSetupURI.Title": "Ввести Setup URI",
|
||||
"Setup.UseSetupURI.ValidInfo": "Setup URI корректен и готов к использованию.",
|
||||
"Should we keep folders that don't have any files inside?": "Сохранять папки без файлов?",
|
||||
"Should we only check for conflicts when a file is opened?": "Проверять конфликты только при открытии файла?",
|
||||
"Should we prompt you about conflicting files when a file is opened?": "Спрашивать о конфликтующих файлах при открытии файла?",
|
||||
"Should we prompt you for every single merge, even if we can safely merge automatcially?": "Спрашивать о каждом слиянии, даже если мы можем безопасно слить автоматически?",
|
||||
"Show full banner": "Показывать полный баннер",
|
||||
"Show only notifications": "Показывать только уведомления",
|
||||
"Show status as icons only": "Показывать статус только иконками",
|
||||
"Show status icon instead of file warnings banner": "Показывать иконку статуса вместо предупреждения о файлах",
|
||||
"Show status inside the editor": "Показывать статус внутри редактора",
|
||||
"Show status on the status bar": "Показывать статус в строке состояния",
|
||||
"Show verbose log. Please enable if you report an issue.": "Показывать подробный лог. Пожалуйста, включите при сообщении о проблеме.",
|
||||
"Some devices have differing progress values (max: ${maxProgress}, min: ${minProgress}).\nThis may indicate that some devices have not completed synchronisation, which could lead to conflicts. Strongly recommend confirming that all devices are synchronised before proceeding.": "У некоторых устройств различаются значения прогресса (макс.: ${maxProgress}, мин.: ${minProgress}).\nЭто может означать, что некоторые устройства ещё не завершили синхронизацию, что может привести к конфликтам. Настоятельно рекомендуется перед продолжением убедиться, что все устройства синхронизированы.",
|
||||
"Starts synchronisation when a file is saved.": "Запускать синхронизацию при сохранении файла.",
|
||||
"Stop reflecting database changes to storage files.": "Остановить отражение изменений базы данных в файлы хранилища.",
|
||||
"Stop watching for file changes.": "Остановить отслеживание изменений файлов.",
|
||||
"Suppress notification of hidden files change": "Подавлять уведомления об изменении скрытых файлов",
|
||||
"Suspend database reflecting": "Приостановить отражение базы данных",
|
||||
"Suspend file watching": "Приостановить отслеживание файлов",
|
||||
"Switch to IDB": "Переключиться на IDB",
|
||||
"Switch to IndexedDB": "Переключиться на IndexedDB",
|
||||
"Sync after merging file": "Синхронизировать после слияния файла",
|
||||
"Sync automatically after merging files": "Синхронизировать автоматически после слияния файлов",
|
||||
"Sync Mode": "Режим синхронизации",
|
||||
"Sync on Editor Save": "Синхронизация при сохранении в редакторе",
|
||||
"Sync on File Open": "Синхронизация при открытии файла",
|
||||
"Sync on Save": "Синхронизация при сохранении",
|
||||
"Sync on Startup": "Синхронизация при запуске",
|
||||
"Synchronisation utilising journal files. You must have set up an S3/MinIO/R2 compatible object storage.": "Синхронизация с использованием файлов журнала. Необходимо заранее настроить объектное хранилище, совместимое с S3/MinIO/R2。",
|
||||
"Synchronising files": "Синхронизируемые файлы",
|
||||
"Syncing": "Синхронизация",
|
||||
"Target patterns": "Целевые шаблоны",
|
||||
"Testing only - Resolve file conflicts by syncing newer copies of the file, this can overwrite modified files. Be Warned.": "Только для тестирования - разрешать конфликты файлов синхронизацией новых копий.",
|
||||
"The delay for consecutive on-demand fetches": "Задержка для последовательных запросов по требованию",
|
||||
"The following accepted nodes are missing its node information:\n- ${missingNodes}\n\nThis indicates that they have not been connected for some time or have been left on an older version.\nIt is preferable to update all devices if possible. If you have any devices that are no longer in use, you can clear all accepted nodes by locking the remote once.": "Для следующих принятых узлов отсутствует информация об узле:\n- ${missingNodes}\n\nЭто означает, что они давно не подключались или остались на старой версии.\nПо возможности рекомендуется сначала обновить все устройства. Если у вас есть устройства, которые больше не используются, вы можете очистить список всех принятых узлов, один раз заблокировав удалённую базу.",
|
||||
"The Hash algorithm for chunk IDs": "Хэш-алгоритм для ID чанков",
|
||||
"The maximum duration for which chunks can be incubated within the document.": "Максимальная продолжительность инкубации чанков в документе.",
|
||||
"The maximum duration for which chunks can be incubated within the document. Chunks exceeding this period will graduate to independent chunks.": "The maximum duration for which chunks can be incubated within the document. Chunks exceeding this period will graduate to independent chunks.",
|
||||
"The maximum number of chunks that can be incubated within the document.": "Максимальное количество инкубируемых чанков в документе.",
|
||||
"The maximum number of chunks that can be incubated within the document. Chunks exceeding this number will immediately graduate to independent chunks.": "The maximum number of chunks that can be incubated within the document. Chunks exceeding this number will immediately graduate to independent chunks.",
|
||||
"The maximum total size of chunks that can be incubated within the document.": "Максимальный общий размер инкубируемых чанков в документе.",
|
||||
"The maximum total size of chunks that can be incubated within the document. Chunks exceeding this size will immediately graduate to independent chunks.": "The maximum total size of chunks that can be incubated within the document. Chunks exceeding this size will immediately graduate to independent chunks.",
|
||||
"The minimum interval for automatic synchronisation on event.": "Минимальный интервал автоматической синхронизации по событию.",
|
||||
"This feature enables direct synchronisation between devices. No server is required, but both devices must be online at the same time for synchronisation to occur, and some features may be limited. Internet connection is only required to signalling (detecting peers) and not for data transfer.": "Эта функция обеспечивает прямую синхронизацию между устройствами. Сервер не требуется, но для синхронизации оба устройства должны быть одновременно в сети, а некоторые функции могут быть ограничены. Подключение к Интернету нужно только для сигнализации (обнаружения пиров), а не для передачи данных。",
|
||||
"This is an advanced option for users who do not have a URI or who wish to configure detailed settings.": "Это расширенный вариант для пользователей, у которых нет URI или которые хотят вручную задать подробные параметры。",
|
||||
"This is the most suitable synchronisation method for the design. All functions are available. You must have set up a CouchDB instance.": "Это наиболее подходящий для данной архитектуры способ синхронизации. Доступны все функции. Необходимо заранее развернуть экземпляр CouchDB。",
|
||||
"This passphrase will not be copied to another device. It will be set to until you configure it again.": "Эта парольная фраза не будет скопирована на другое устройство.",
|
||||
"This passphrase will not be copied to another device. It will be set to `Default` until you configure it again.": "This passphrase will not be copied to another device. It will be set to `Default` until you configure it again.",
|
||||
"This will recreate chunks for all files. If there were missing chunks, this may fix the errors.": "Это пересоздаст чанки для всех файлов. Если какие-то чанки отсутствовали, это может исправить ошибки.",
|
||||
"Transfer Tweak": "Настройки передачи",
|
||||
"TweakMismatchResolve.Action.Dismiss": "Отмена",
|
||||
"TweakMismatchResolve.Action.UseConfigured": "Использовать настроенные параметры",
|
||||
"TweakMismatchResolve.Action.UseMine": "Обновить настройки удалённой базы данных",
|
||||
"TweakMismatchResolve.Action.UseMineAcceptIncompatible": "Обновить настройки, но оставить как есть",
|
||||
"TweakMismatchResolve.Action.UseMineWithRebuild": "Обновить настройки и перестроить снова",
|
||||
"TweakMismatchResolve.Action.UseRemote": "Применить настройки к этому устройству",
|
||||
"TweakMismatchResolve.Action.UseRemoteAcceptIncompatible": "Применить настройки, но игнорировать несовместимость",
|
||||
"TweakMismatchResolve.Action.UseRemoteWithRebuild": "Применить настройки и загрузить снова",
|
||||
"TweakMismatchResolve.Message.Main": "Настройки в удалённой базе данных следующие. Эти значения настроены другими устройствами.",
|
||||
"TweakMismatchResolve.Message.MainTweakResolving": "Ваша конфигурация не совпадает с удалённым сервером.",
|
||||
"TweakMismatchResolve.Message.UseRemote.WarningRebuildRecommended": "Некоторые изменения совместимы, но могут потребовать дополнительного хранилища. Рекомендуется перестроение.",
|
||||
"TweakMismatchResolve.Message.UseRemote.WarningRebuildRequired": "Некоторые удалённые конфигурации несовместимы с локальной базой данных. Требуется перестроение.",
|
||||
"TweakMismatchResolve.Message.WarningIncompatibleRebuildRecommended": "Обнаружены значения, несовместимые с удалённой базой данных. Рекомендуется перестроение.",
|
||||
"TweakMismatchResolve.Message.WarningIncompatibleRebuildRequired": "Обнаружены значения, несовместимые с удалённой базой данных. Требуется перестроение.",
|
||||
"TweakMismatchResolve.Table": "| Имя значения | Это устройство | На удалённом |\n|: --- |: ---- :|: ---- :|",
|
||||
"TweakMismatchResolve.Table.Row": "| name | self | remote |",
|
||||
"TweakMismatchResolve.Title": "Обнаружено несоответствие конфигурации",
|
||||
"TweakMismatchResolve.Title.TweakResolving": "Обнаружено несоответствие конфигурации",
|
||||
"TweakMismatchResolve.Title.UseRemoteConfig": "Использовать удалённую конфигурацию",
|
||||
"Unique name between all synchronized devices. To edit this setting, please disable customization sync once.": "Уникальное имя между всеми синхронизируемыми устройствами.",
|
||||
"Use a custom passphrase": "Использовать пользовательскую парольную фразу",
|
||||
"Use a Setup URI (Recommended)": "Использовать Setup URI (рекомендуется)",
|
||||
"Use Custom HTTP Handler": "Использовать пользовательский HTTP обработчик",
|
||||
"Use dynamic iteration count": "Использовать динамическое количество итераций",
|
||||
"Use Segmented-splitter": "Использовать сегментный разделитель",
|
||||
"Use splitting-limit-capped chunk splitter": "Использовать разделитель чанков с ограничением",
|
||||
"Use the trash bin": "Использовать корзину",
|
||||
"Use timeouts instead of heartbeats": "Использовать таймауты вместо пульса",
|
||||
"username": "имя пользователя",
|
||||
"Username": "Имя пользователя",
|
||||
"Verbose Log": "Подробный лог",
|
||||
"Verify all": "Проверить всё",
|
||||
"Verify and repair all files": "Проверить и восстановить все файлы",
|
||||
"Warning! This will have a serious impact on performance. And the logs will not be synchronised under the default name.": "Внимание! Это серьёзно повлияет на производительность.",
|
||||
"Warning! This will have a serious impact on performance. And the logs will not be synchronised under the default name. Please be careful with logs; they often contain your confidential information.": "Warning! This will have a serious impact on performance. And the logs will not be synchronised under the default name. Please be careful with logs; they often contain your confidential information.",
|
||||
"We cannot change the device name while this feature is enabled. Please disable this feature to change the device name.": "Невозможно изменить имя устройства, пока эта функция включена. Отключите её, чтобы изменить имя устройства.",
|
||||
"We will now guide you through a few questions to simplify the synchronisation setup.": "Сейчас мы зададим несколько вопросов, чтобы упростить настройку синхронизации。",
|
||||
"We will now proceed with the server configuration.": "Теперь перейдём к настройке сервера。",
|
||||
"Welcome to Self-hosted LiveSync": "Добро пожаловать в Self-hosted LiveSync",
|
||||
"When you save a file in the editor, start a sync automatically": "Когда вы сохраняете файл в редакторе, автоматически запускать синхронизацию",
|
||||
"Write credentials in the file": "Записывать учётные данные в файл",
|
||||
"Write logs into the file": "Записывать логи в файл",
|
||||
"xxhash32 (Fast but less collision resistance)": "xxhash32 (быстрый, но с меньшей устойчивостью к коллизиям)",
|
||||
"xxhash64 (Fastest)": "xxhash64 (самый быстрый)",
|
||||
"Yes, I want to add this device to my existing synchronisation": "Да, я хочу добавить это устройство к существующей синхронизации",
|
||||
"Yes, I want to set up a new synchronisation": "Да, я хочу настроить новую синхронизацию",
|
||||
"You are adding this device to an existing synchronisation setup.": "Вы добавляете это устройство к существующей настройке синхронизации。"
|
||||
}
|
||||
@@ -0,0 +1,382 @@
|
||||
{
|
||||
"(Active)": "(已啟用)",
|
||||
"(RegExp) Empty to sync all files. Set filter as a regular expression to limit synchronising files.": "(正則表示式)留空即同步所有檔案。設定正則表示式可限制要同步的檔案。",
|
||||
"(RegExp) If this is set, any changes to local and remote files that match this will be skipped.": "(正則表示式)若已設定,所有符合此模式的本機與遠端檔案變更都會被略過。",
|
||||
"(Select this if you are already using synchronisation on another computer or smartphone.) This option is suitable if you are new to LiveSync and want to set it up from scratch.": "(如果你已經在另一台電腦或手機上使用同步,請選擇此項。)此選項適合將目前裝置加入既有 LiveSync 設定的使用者。",
|
||||
"(Select this if you are configuring this device as the first synchronisation device.) This option is suitable if you are new to LiveSync and want to set it up from scratch.": "(如果你正在將此裝置設定為第一台同步裝置,請選擇此項。)此選項適合初次使用 LiveSync,並希望從頭開始設定的使用者。",
|
||||
"> [!INFO]- The connected devices have been detected as follows:\n${devices}": "> [!INFO]- 已偵測到以下已連線裝置:\n${devices}",
|
||||
"A Setup URI is a single string of text containing your server address and authentication details. Using a URI, if one was generated by your server installation script, provides a simple and secure configuration.": "Setup URI 是一段包含伺服器位址與驗證資訊的文字。如果伺服器安裝腳本已經產生 URI,使用它可以更簡單且更安全地完成設定。",
|
||||
"Activate": "啟用",
|
||||
"Active Remote Configuration": "目前啟用的遠端設定",
|
||||
"Add default patterns": "新增預設模式",
|
||||
"Add new connection": "新增連線",
|
||||
"All devices have the same progress value (${progress}). Your devices seem to be synchronised. And be able to proceed with Garbage Collection.": "所有裝置的進度值均相同(${progress})。看起來你的裝置已同步,可以繼續執行垃圾回收。",
|
||||
"Always prompt merge conflicts": "總是提示合併衝突",
|
||||
"Analyse": "分析",
|
||||
"Analyse database usage": "分析資料庫使用情況",
|
||||
"Analyse database usage and generate a TSV report for diagnosis yourself. You can paste the generated report with any spreadsheet you like.": "分析資料庫使用情況並產生 TSV 報告,方便你自行診斷。你可以將產生的報告貼到任何慣用的試算表中查看。",
|
||||
"Apply Latest Change if Conflicting": "發生衝突時套用最新變更",
|
||||
"Apply preset configuration": "套用預設配置",
|
||||
"Ask a passphrase at every launch": "每次啟動時都詢問密語",
|
||||
"Automatically Sync all files when opening Obsidian.": "開啟 Obsidian 時自動同步所有檔案。",
|
||||
"Back": "返回",
|
||||
"Back to non-configured": "恢復為未設定狀態",
|
||||
"Batch database update": "批次更新資料庫",
|
||||
"Batch limit": "批次上限",
|
||||
"Batch size": "批次大小",
|
||||
"Batch size of on-demand fetching": "按需抓取的批次大小",
|
||||
"Bucket Name": "儲存桶名稱",
|
||||
"Cancel": "取消",
|
||||
"Cancel Garbage Collection": "取消垃圾回收",
|
||||
"Check": "檢查",
|
||||
"Check and convert non-path-obfuscated files": "檢查並轉換未進行路徑混淆的檔案",
|
||||
"Check for documents that have not been converted to path-obfuscated IDs and convert them if necessary.": "檢查尚未轉換為路徑混淆 ID 的文件,並在需要時進行轉換。",
|
||||
"cmdConfigSync.showCustomizationSync": "顯示自訂同步",
|
||||
"Compaction in progress on remote database...": "正在遠端資料庫上執行壓縮...",
|
||||
"Compaction on remote database completed successfully.": "遠端資料庫壓縮已成功完成。",
|
||||
"Compaction on remote database failed.": "遠端資料庫壓縮失敗。",
|
||||
"Compaction on remote database timed out.": "遠端資料庫壓縮逾時。",
|
||||
"Compare the content of files between on local database and storage. If not matched, you will be asked which one you want to keep.": "比較本機資料庫與儲存空間中的檔案內容;若不一致,系統會詢問你要保留哪一份。",
|
||||
"Compatibility (Conflict Behaviour)": "相容性(衝突行為)",
|
||||
"Compatibility (Database structure)": "相容性(資料庫結構)",
|
||||
"Compatibility (Internal API Usage)": "相容性(內部 API 使用)",
|
||||
"Compatibility (Metadata)": "相容性(中繼資料)",
|
||||
"Compatibility (Remote Database)": "相容性(遠端資料庫)",
|
||||
"Compatibility (Trouble addressed)": "相容性(問題修復)",
|
||||
"Configuration Encryption": "設定加密",
|
||||
"Configure": "設定",
|
||||
"Configure And Change Remote": "設定並切換遠端",
|
||||
"Configure E2EE": "設定 E2EE",
|
||||
"Configure Remote": "設定遠端",
|
||||
"Configure the same server information as your other devices again, manually, very advanced users only.": "手動重新輸入與其他裝置相同的伺服器資訊。僅適合進階使用者。",
|
||||
"Connection Method": "連線方式",
|
||||
"Continue to CouchDB setup": "繼續進行 CouchDB 設定",
|
||||
"Continue to Peer-to-Peer only setup": "繼續進行僅 Peer-to-Peer 設定",
|
||||
"Continue to S3/MinIO/R2 setup": "繼續進行 S3/MinIO/R2 設定",
|
||||
"Copy": "複製",
|
||||
"Copy Report to clipboard": "將報告複製到剪貼簿",
|
||||
"CouchDB Connection Tweak": "CouchDB 連線調校",
|
||||
"Cross-platform": "跨平台",
|
||||
"Current adapter: {adapter}": "目前的適配器:{adapter}",
|
||||
"Customization Sync": "自訂同步",
|
||||
"Customization Sync (Beta3)": "自訂同步(Beta3)",
|
||||
"Data Compression": "資料壓縮",
|
||||
"Database -> Storage": "資料庫 -> 儲存空間",
|
||||
"Database Adapter": "資料庫適配器",
|
||||
"Database Name": "資料庫名稱",
|
||||
"Database suffix": "資料庫後綴",
|
||||
"Default": "預設",
|
||||
"Delay conflict resolution of inactive files": "延後處理非活動檔案的衝突",
|
||||
"Delay merge conflict prompt for inactive files.": "延後顯示非活動檔案的合併衝突提示。",
|
||||
"Delete": "刪除",
|
||||
"Delete all customization sync data": "刪除所有自訂同步資料",
|
||||
"Delete all data on the remote server.": "刪除遠端伺服器上的所有資料。",
|
||||
"Delete local database to reset or uninstall Self-hosted LiveSync": "刪除本機資料庫以重設或解除安裝 Self-hosted LiveSync",
|
||||
"Delete old metadata of deleted files on start-up": "啟動時刪除已刪除檔案的舊中繼資料",
|
||||
"Delete Remote Configuration": "刪除遠端設定",
|
||||
"Delete remote configuration '{name}'?": "要刪除遠端設定「{name}」嗎?",
|
||||
"desktop": "桌面裝置",
|
||||
"Developer": "開發者",
|
||||
"Device": "裝置",
|
||||
"Device name": "裝置名稱",
|
||||
"Device Setup Method": "裝置設定方式",
|
||||
"dialog.yourLanguageAvailable": "Self-hosted LiveSync 已提供你目前語言的翻譯,因此已啟用顯示語言設定。\n\n注意:並非所有訊息都已完成翻譯,歡迎協助補充!\n注意 2:如果你要回報問題,請先切回預設語言,再附上截圖、訊息與日誌。\n\n希望你使用愉快!",
|
||||
"dialog.yourLanguageAvailable.btnRevertToDefault": "恢復為預設語言",
|
||||
"dialog.yourLanguageAvailable.Title": "已提供你的語言翻譯!",
|
||||
"Disables all synchronization and restart.": "停用所有同步並重新啟動。",
|
||||
"Disables logging, only shows notifications. Please disable if you report an issue.": "停用日誌記錄,只顯示通知。如果你要回報問題,請關閉此選項。",
|
||||
"Display Language": "顯示語言",
|
||||
"Display name": "顯示名稱",
|
||||
"Do not check configuration mismatch before replication": "複寫前不檢查設定是否不一致",
|
||||
"Do not keep metadata of deleted files.": "不保留已刪除檔案的中繼資料。",
|
||||
"Do not split chunks in the background": "不在背景分割 chunks",
|
||||
"Do not use internal API": "不使用內部 API",
|
||||
"Document History": "文件歷程",
|
||||
"Duplicate": "複製",
|
||||
"Duplicate remote": "複製遠端設定",
|
||||
"E2EE Configuration": "E2EE 設定",
|
||||
"Edge case addressing (Behaviour)": "邊緣情況處理(行為)",
|
||||
"Edge case addressing (Database)": "邊緣情況處理(資料庫)",
|
||||
"Edge case addressing (Processing)": "邊緣情況處理(處理)",
|
||||
"Emergency restart": "緊急重新啟動",
|
||||
"Enable advanced features": "啟用進階功能",
|
||||
"Enable customization sync": "啟用自訂同步",
|
||||
"Enable Developers' Debug Tools.": "啟用開發者除錯工具。",
|
||||
"Enable edge case treatment features": "啟用邊緣情況處理功能",
|
||||
"Enable poweruser features": "啟用進階使用者功能",
|
||||
"Enable this if your Object Storage doesn't support CORS": "如果你的物件儲存不支援 CORS,請啟用此選項",
|
||||
"Enable this option to automatically apply the most recent change to documents even when it conflicts": "啟用此選項後,即使發生衝突也會自動套用文件的最新變更",
|
||||
"Encrypt contents on the remote database. If you use the plugin's synchronization feature, enabling this is recommended.": "加密遠端資料庫中的內容。如果你使用外掛的同步功能,建議啟用此選項。",
|
||||
"Encrypting sensitive configuration items": "加密敏感設定項目",
|
||||
"Encryption phassphrase. If changed, you should overwrite the server's database with the new (encrypted) files.": "加密密語。如果變更了它,你應以新的(已加密)檔案覆寫伺服器上的資料庫。",
|
||||
"End-to-End Encryption": "端對端加密",
|
||||
"Endpoint URL": "端點 URL",
|
||||
"Enhance chunk size": "擴大 chunk 大小",
|
||||
"Enter Server Information": "輸入伺服器資訊",
|
||||
"Enter the server information manually": "手動輸入伺服器資訊",
|
||||
"Export": "匯出",
|
||||
"Failed to connect to remote for compaction.": "無法連線到遠端資料庫以執行壓縮。",
|
||||
"Failed to connect to remote for compaction. ${reason}": "無法連線到遠端資料庫以執行壓縮。${reason}",
|
||||
"Failed to start one-shot replication before Garbage Collection. Garbage Collection Cancelled.": "無法在垃圾回收前啟動一次性複寫。垃圾回收已取消。",
|
||||
"Failed to start replication after Garbage Collection.": "垃圾回收後無法啟動複寫。",
|
||||
"Fetch": "抓取",
|
||||
"Fetch chunks on demand": "按需抓取 chunks",
|
||||
"Fetch database with previous behaviour": "以前一種行為抓取資料庫",
|
||||
"Fetch remote settings": "抓取遠端設定",
|
||||
"File to resolve conflict": "要解決衝突的檔案",
|
||||
"File to view History": "要檢視歷程的檔案",
|
||||
"Filename": "檔名",
|
||||
"First, please select the option that best describes your current situation.": "首先,請選擇最符合你目前情況的選項。",
|
||||
"Flag and restart": "標記後重新啟動",
|
||||
"Forces the file to be synced when opened.": "開啟檔案時強制同步該檔案。",
|
||||
"Fresh Start Wipe": "全新開始清除",
|
||||
"Garbage Collection cancelled by user.": "使用者已取消垃圾回收。",
|
||||
"Garbage Collection completed. Deleted chunks: ${deletedChunks} / ${totalChunks}. Time taken: ${seconds} seconds.": "垃圾回收完成。已刪除 chunks:${deletedChunks} / ${totalChunks}。耗時:${seconds} 秒。",
|
||||
"Garbage Collection Confirmation": "垃圾回收確認",
|
||||
"Garbage Collection V3 (Beta)": "垃圾回收 V3(Beta)",
|
||||
"Garbage Collection: Found ${unusedChunks} unused chunks to delete.": "垃圾回收:找到 ${unusedChunks} 個未使用的 chunks 可刪除。",
|
||||
"Garbage Collection: Scanned ${scanned} / ~${docCount}": "垃圾回收:已掃描 ${scanned} / ~${docCount}",
|
||||
"Garbage Collection: Scanning completed. Total chunks: ${totalChunks}, Used chunks: ${usedChunks}": "垃圾回收:掃描完成。總 chunks:${totalChunks},已使用 chunks:${usedChunks}",
|
||||
"Handle files as Case-Sensitive": "將檔案視為區分大小寫",
|
||||
"Hidden Files": "隱藏檔案",
|
||||
"Hide completely": "完全隱藏",
|
||||
"Highlight diff": "醒目顯示差異",
|
||||
"How to display network errors when the sync server is unreachable.": "當同步伺服器無法連線時,如何顯示網路錯誤。",
|
||||
"How would you like to configure the connection to your server?": "你希望如何設定與伺服器的連線?",
|
||||
"I am adding a device to an existing synchronisation setup": "我要將裝置加入既有同步設定",
|
||||
"I am setting this up for the first time": "我是第一次進行設定",
|
||||
"I know my server details, let me enter them": "我知道伺服器資訊,讓我手動輸入",
|
||||
"If disabled(toggled), chunks will be split on the UI thread (Previous behaviour).": "若停用(關閉)此選項,chunks 會在 UI 執行緒上分割(舊有行為)。",
|
||||
"If enabled per-filed efficient customization sync will be used. We need a small migration when enabling this. And all devices should be updated to v0.23.18. Once we enabled this, we lost a compatibility with old versions.": "啟用後會使用以每個檔案為單位的高效率自訂同步。啟用時需要進行一次小型遷移,且所有裝置都應升級到 v0.23.18。啟用後將不再相容舊版本。",
|
||||
"If enabled, chunks will be split into no more than 100 items. However, dedupe is slightly weaker.": "啟用後,chunks 最多會分成 100 個項目,但去重效果會稍微變弱。",
|
||||
"If enabled, newly created chunks are temporarily kept within the document, and graduated to become independent chunks once stabilised.": "啟用後,新建立的 chunks 會暫時保留在文件中,待穩定後再獨立出去。",
|
||||
"If enabled, the ⛔ icon will be shown inside the status instead of the file warnings banner. No details will be shown.": "啟用後,將在狀態列中顯示 ⛔ 圖示,而不是檔案警告橫幅,且不會顯示詳細資訊。",
|
||||
"If enabled, the file under 1kb will be processed in the UI thread.": "啟用後,小於 1KB 的檔案會在 UI 執行緒中處理。",
|
||||
"If enabled, the notification of hidden files change will be suppressed.": "啟用後,將不再通知隱藏檔案變更。",
|
||||
"If this enabled, all chunks will be stored with the revision made from its content. (Previous behaviour)": "啟用後,所有 chunks 都會以其內容產生的修訂版本儲存(舊有行為)。",
|
||||
"If this enabled, All files are handled as case-Sensitive (Previous behaviour).": "啟用後,所有檔案都會以區分大小寫方式處理(舊有行為)。",
|
||||
"If this enabled, chunks will be split into semantically meaningful segments. Not all platforms support this feature.": "啟用後,chunks 會依語意切分成有意義的區段,並非所有平台都支援此功能。",
|
||||
"If you reached the payload size limit when using IBM Cloudant, please decrease batch size and batch limit to a lower value.": "如果你在使用 IBM Cloudant 時遇到負載大小上限,請調低批次大小與批次上限。",
|
||||
"Ignore and Proceed": "忽略並繼續",
|
||||
"Ignore patterns": "忽略模式",
|
||||
"Import connection": "匯入連線",
|
||||
"Initialise all journal history, On the next sync, every item will be received and sent.": "初始化所有日誌歷史。下次同步時,每個項目都會重新接收與傳送。",
|
||||
"Initialise journal received history. On the next sync, every item except this device sent will be downloaded again.": "初始化接收日誌歷程。下次同步時,除了此裝置已送出的項目外,其他項目都會再次下載。",
|
||||
"Initialise journal sent history. On the next sync, every item except this device received will be sent again.": "初始化傳送日誌歷程。下次同步時,除了此裝置已接收的項目外,其他項目都會再次傳送。",
|
||||
"Later": "稍後",
|
||||
"Limit: {datetime} ({timestamp})": "限制:{datetime}({timestamp})",
|
||||
"Lock": "鎖定",
|
||||
"Lock Server": "鎖定伺服器",
|
||||
"Lock the remote server to prevent synchronization with other devices.": "鎖定遠端伺服器,以防止其他裝置進行同步。",
|
||||
"Minimum interval for syncing": "同步最小間隔",
|
||||
"More actions": "更多操作",
|
||||
"Network warning style": "網路警告樣式",
|
||||
"New Remote": "新增遠端",
|
||||
"No connected device information found. Cancelling Garbage Collection.": "找不到已連線裝置的資訊。正在取消垃圾回收。",
|
||||
"No limit configured": "尚未設定限制",
|
||||
"No, please take me back": "不,返回上一步",
|
||||
"Node ID": "節點 ID",
|
||||
"Node Information Missing": "節點資訊缺失",
|
||||
"Non-Synchronising files": "不同步的檔案",
|
||||
"Normal Files": "一般檔案",
|
||||
"Obsidian version": "Obsidian 版本",
|
||||
"obsidianLiveSyncSettingTab.btnApply": "套用",
|
||||
"obsidianLiveSyncSettingTab.btnDisable": "停用",
|
||||
"obsidianLiveSyncSettingTab.btnNext": "下一步",
|
||||
"obsidianLiveSyncSettingTab.buttonNext": "下一步",
|
||||
"obsidianLiveSyncSettingTab.defaultLanguage": "預設語言",
|
||||
"obsidianLiveSyncSettingTab.labelDisabled": "⏹️ : 已停用",
|
||||
"obsidianLiveSyncSettingTab.labelEnabled": "🔁 : 已啟用",
|
||||
"obsidianLiveSyncSettingTab.logConfiguredDisabled": "已設定的同步模式:已停用",
|
||||
"obsidianLiveSyncSettingTab.logConfiguredLiveSync": "已設定的同步模式:LiveSync",
|
||||
"obsidianLiveSyncSettingTab.logConfiguredPeriodic": "已設定的同步模式:定期同步",
|
||||
"obsidianLiveSyncSettingTab.logSelectAnyPreset": "請選擇任一預設項目。",
|
||||
"obsidianLiveSyncSettingTab.msgConfigCheckFailed": "設定檢查失敗。仍要繼續嗎?",
|
||||
"obsidianLiveSyncSettingTab.msgEnableEncryptionRecommendation": "我們建議啟用端對端加密與路徑混淆。你確定要在未加密的情況下繼續嗎?",
|
||||
"obsidianLiveSyncSettingTab.msgFetchConfigFromRemote": "要從遠端伺服器抓取設定嗎?",
|
||||
"obsidianLiveSyncSettingTab.msgGenerateSetupURI": "全部完成!要產生 Setup URI 以便設定其他裝置嗎?",
|
||||
"obsidianLiveSyncSettingTab.msgInvalidPassphrase": "你的加密密語可能無效。你確定要繼續嗎?",
|
||||
"obsidianLiveSyncSettingTab.msgSelectAndApplyPreset": "請選擇並套用任一預設項目以完成精靈。",
|
||||
"obsidianLiveSyncSettingTab.nameDisableHiddenFileSync": "停用隱藏檔案同步",
|
||||
"obsidianLiveSyncSettingTab.nameEnableHiddenFileSync": "啟用隱藏檔案同步",
|
||||
"obsidianLiveSyncSettingTab.nameHiddenFileSynchronization": "隱藏檔案同步",
|
||||
"obsidianLiveSyncSettingTab.optionDisableAllAutomatic": "停用所有自動同步",
|
||||
"obsidianLiveSyncSettingTab.optionLiveSync": "LiveSync 同步",
|
||||
"obsidianLiveSyncSettingTab.optionOnEvents": "事件觸發時",
|
||||
"obsidianLiveSyncSettingTab.optionPeriodicAndEvents": "定期與事件觸發",
|
||||
"obsidianLiveSyncSettingTab.optionPeriodicWithBatch": "定期(批次)",
|
||||
"obsidianLiveSyncSettingTab.titleAppearance": "外觀",
|
||||
"obsidianLiveSyncSettingTab.titleConflictResolution": "衝突處理",
|
||||
"obsidianLiveSyncSettingTab.titleCongratulations": "恭喜!",
|
||||
"obsidianLiveSyncSettingTab.titleCouchDB": "CouchDB 伺服器",
|
||||
"obsidianLiveSyncSettingTab.titleDeletionPropagation": "刪除傳播",
|
||||
"obsidianLiveSyncSettingTab.titleEncryptionNotEnabled": "尚未啟用加密",
|
||||
"obsidianLiveSyncSettingTab.titleEncryptionPassphraseInvalid": "加密密語無效",
|
||||
"obsidianLiveSyncSettingTab.titleFetchConfig": "抓取設定",
|
||||
"obsidianLiveSyncSettingTab.titleHiddenFiles": "隱藏檔案",
|
||||
"obsidianLiveSyncSettingTab.titleLogging": "記錄",
|
||||
"obsidianLiveSyncSettingTab.titleMinioS3R2": "MinIO、S3、R2",
|
||||
"obsidianLiveSyncSettingTab.titleNotification": "通知",
|
||||
"obsidianLiveSyncSettingTab.titleRemoteConfigCheckFailed": "遠端設定檢查失敗",
|
||||
"obsidianLiveSyncSettingTab.titleRemoteServer": "遠端伺服器",
|
||||
"obsidianLiveSyncSettingTab.titleSynchronizationMethod": "同步方式",
|
||||
"obsidianLiveSyncSettingTab.titleSynchronizationPreset": "同步預設",
|
||||
"obsidianLiveSyncSettingTab.titleSyncSettingsViaMarkdown": "透過 Markdown 同步設定",
|
||||
"obsidianLiveSyncSettingTab.titleUpdateThinning": "更新精簡",
|
||||
"Ok": "確定",
|
||||
"Old Algorithm": "舊演算法",
|
||||
"Older fallback (Slow, W/O WebAssembly)": "舊版回退(較慢,無 WebAssembly)",
|
||||
"Overwrite patterns": "覆寫模式",
|
||||
"Overwrite remote": "覆寫遠端",
|
||||
"Overwrite remote with local DB and passphrase.": "使用本機資料庫與密語覆寫遠端。",
|
||||
"Overwrite Server Data with This Device's Files": "以此裝置的檔案覆寫伺服器資料",
|
||||
"paneMaintenance.markDeviceResolvedAfterBackup": "請在完成備份後將此裝置標記為已處理。",
|
||||
"paneMaintenance.remoteLockedAndDeviceNotAccepted": "遠端資料庫已鎖定,且此裝置尚未被接受。",
|
||||
"paneMaintenance.remoteLockedResolvedDevice": "遠端資料庫已鎖定,但此裝置已被接受。",
|
||||
"paneMaintenance.unlockDatabaseReady": "現在可以解鎖資料庫。",
|
||||
"Paste a connection string": "貼上連線字串",
|
||||
"Paste the Setup URI generated from one of your active devices.": "貼上從一台已在使用裝置上產生的 Setup URI。",
|
||||
"Patterns to match files for overwriting instead of merging": "用於匹配需覆寫而非合併檔案的模式",
|
||||
"Patterns to match files for syncing": "用於匹配同步檔案的模式",
|
||||
"Peer-to-Peer only": "僅 Peer-to-Peer",
|
||||
"Peer-to-Peer Synchronisation": "點對點同步",
|
||||
"Perform": "執行",
|
||||
"Perform cleanup": "執行清理",
|
||||
"Perform Garbage Collection": "執行垃圾回收",
|
||||
"Perform Garbage Collection to remove unused chunks and reduce database size.": "執行垃圾回收以移除未使用的 chunks 並減少資料庫大小。",
|
||||
"Pick a file to resolve conflict": "選擇要解決衝突的檔案",
|
||||
"Pick a file to show history": "選擇要顯示歷程的檔案",
|
||||
"Please disable 'Read chunks online' in settings to use Garbage Collection.": "若要使用垃圾回收,請在設定中停用「Read chunks online」。",
|
||||
"Please enable 'Compute revisions for chunks' in settings to use Garbage Collection.": "若要使用垃圾回收,請在設定中啟用「Compute revisions for chunks」。",
|
||||
"Please select 'Cancel' explicitly to cancel this operation.": "若要取消此操作,請明確選擇「取消」。",
|
||||
"Please select a method to import the settings from another device.": "請選擇一種從其他裝置匯入設定的方法。",
|
||||
"Please select an option to proceed": "請選擇一個選項以繼續",
|
||||
"Please select the type of server to which you are connecting.": "請選擇你要連線的伺服器類型。",
|
||||
"Please set this device name": "請設定此裝置名稱",
|
||||
"Plug-in version": "外掛版本",
|
||||
"Prepare the 'report' to create an issue": "準備建立 Issue 用的「報告」",
|
||||
"Proceed Garbage Collection": "繼續執行垃圾回收",
|
||||
"Proceed with Setup URI": "繼續使用 Setup URI",
|
||||
"Proceeding with Garbage Collection, ignoring missing nodes.": "正在繼續執行垃圾回收,並忽略缺失節點。",
|
||||
"Proceeding with Garbage Collection.": "正在執行垃圾回收。",
|
||||
"Progress": "進度",
|
||||
"PureJS fallback (Fast, W/O WebAssembly)": "PureJS 回退(快速,無 WebAssembly)",
|
||||
"Purge all download/upload cache.": "清除所有下載/上傳快取。",
|
||||
"Purge all journal counter": "清除所有日誌計數器",
|
||||
"Rebuild local and remote database with local files.": "以本機檔案重建本機與遠端資料庫。",
|
||||
"Rebuilding Operations (Remote Only)": "重建作業(僅遠端)",
|
||||
"Recovery and Repair": "修復與修補",
|
||||
"Recreate all": "全部重建",
|
||||
"Recreate missing chunks for all files": "為所有檔案重建遺失的 chunks",
|
||||
"Reduces storage space by discarding all non-latest revisions. This requires the same amount of free space on the remote server and the local client.": "透過捨棄所有非最新版本來減少儲存空間占用。執行此操作時,遠端伺服器與本機用戶端都需要具備相同數量的可用空間。",
|
||||
"Remediation": "修復設定",
|
||||
"Remediation Setting Changed": "修復設定已變更",
|
||||
"Remote Database Tweak (In sunset)": "遠端資料庫調校(即將淘汰)",
|
||||
"Remote Databases": "遠端資料庫",
|
||||
"Remote name": "遠端名稱",
|
||||
"Rename": "重新命名",
|
||||
"Rerun Onboarding Wizard": "重新執行導覽精靈",
|
||||
"Rerun the onboarding wizard to set up Self-hosted LiveSync again.": "重新執行導覽精靈以再次設定 Self-hosted LiveSync。",
|
||||
"Rerun Wizard": "重新執行精靈",
|
||||
"Resend": "重新傳送",
|
||||
"Resend all chunks to the remote.": "將所有 chunks 重新傳送到遠端。",
|
||||
"Reset": "重設",
|
||||
"Reset all": "全部重設",
|
||||
"Reset all journal counter": "重設所有日誌計數器",
|
||||
"Reset journal received history": "重設日誌接收歷史",
|
||||
"Reset journal sent history": "重設日誌傳送歷史",
|
||||
"Reset notification threshold and check the remote database usage": "重設通知閾值並檢查遠端資料庫使用情況",
|
||||
"Reset received": "重設接收紀錄",
|
||||
"Reset sent history": "重設傳送歷史",
|
||||
"Reset Synchronisation information": "重設同步資訊",
|
||||
"Reset Synchronisation on This Device": "重設此裝置上的同步",
|
||||
"Reset the remote storage size threshold and check the remote storage size again.": "重設遠端儲存空間大小閾值,並再次檢查遠端儲存空間大小。",
|
||||
"Resolve All": "全部處理",
|
||||
"Resolve all conflicted files": "解決所有衝突檔案",
|
||||
"Resolve All conflicted files by the newer one": "將所有衝突檔案統一為較新的版本",
|
||||
"Resolve all conflicted files by the newer one. Caution: This will overwrite the older one, and cannot resurrect the overwritten one.": "將所有衝突檔案統一保留較新的版本。注意:這會覆寫較舊的版本,且被覆寫的內容無法復原。",
|
||||
"Restart Now": "立即重新啟動",
|
||||
"Restarting Obsidian is strongly recommended. Until restart, some changes may not take effect, and display may be inconsistent. Are you sure to restart now?": "強烈建議重新啟動 Obsidian。在重新啟動之前,部分變更可能尚未生效,顯示也可能不一致。你確定要現在重新啟動嗎?",
|
||||
"Restore or reconstruct local database from remote.": "從遠端還原或重建本機資料庫。",
|
||||
"Run Doctor": "執行診斷",
|
||||
"S3/MinIO/R2 Object Storage": "S3/MinIO/R2 物件儲存",
|
||||
"Scan a QR Code (Recommended for mobile)": "掃描 QR Code(行動裝置推薦)",
|
||||
"Scan for Broken files": "掃描損壞檔案",
|
||||
"Scan the QR code displayed on an active device using this device's camera.": "使用目前裝置的相機掃描另一台已在使用裝置上顯示的 QR Code。",
|
||||
"Schedule and Restart": "排程後重新啟動",
|
||||
"Scram Switches": "緊急處置開關",
|
||||
"Scram!": "緊急處置",
|
||||
"Select the database adapter to use.": "選擇要使用的資料庫適配器。",
|
||||
"Send": "傳送",
|
||||
"Send chunks": "傳送 chunks",
|
||||
"Setting.GenerateKeyPair.Desc": "我們已產生新的金鑰對!\n\n注意:此金鑰對之後將不會再次顯示。請務必妥善保存;若遺失,必須重新產生新的金鑰對。\n注意 2:公鑰採用 spki 格式,私鑰採用 pkcs8 格式。為了方便複製,公鑰中的換行會轉換為 `\\n`。\n注意 3:公鑰應設定在遠端資料庫中,私鑰則應設定在本機裝置上。\n\n>[!僅供本人查看]-\n> <div class=\"sls-keypair\">\n>\n> ### 公鑰\n> ```\n${public_key}\n> ```\n>\n> ### 私鑰\n> ```\n${private_key}\n> ```\n>\n> </div>\n\n>[!便於整段複製]-\n>\n> <div class=\"sls-keypair\">\n>\n> ```\n${public_key}\n${private_key}\n> ```\n>\n> </div>",
|
||||
"Setting.GenerateKeyPair.Title": "已產生新的金鑰對!",
|
||||
"Setup URI dialog cancelled.": "Setup URI 對話框已取消。",
|
||||
"Setup.RemoteE2EE.AdvancedTitle": "進階",
|
||||
"Setup.RemoteE2EE.AlgorithmWarning": "變更加密演算法後,先前以其他演算法加密的資料將無法再存取。請確認所有裝置都設定為使用相同演算法,以維持對資料的存取能力。",
|
||||
"Setup.RemoteE2EE.ButtonCancel": "取消",
|
||||
"Setup.RemoteE2EE.ButtonProceed": "繼續",
|
||||
"Setup.RemoteE2EE.DefaultAlgorithmDesc": "在大多數情況下,建議維持使用預設演算法(${algorithm})。只有當你現有的 Vault 是以不同格式加密時,才需要調整這項設定。",
|
||||
"Setup.RemoteE2EE.Guidance": "請設定你的端對端加密選項。",
|
||||
"Setup.RemoteE2EE.LabelEncrypt": "端對端加密",
|
||||
"Setup.RemoteE2EE.LabelEncryptionAlgorithm": "加密演算法",
|
||||
"Setup.RemoteE2EE.LabelObfuscateProperties": "混淆屬性",
|
||||
"Setup.RemoteE2EE.MultiDestinationWarning": "即使連線到多個同步目標,這項設定也必須保持一致。",
|
||||
"Setup.RemoteE2EE.ObfuscatePropertiesDesc": "混淆屬性(例如檔案路徑、大小、建立時間與修改時間)可以額外增加一層安全保護,讓遠端伺服器上的檔案與資料夾結構及名稱更難被辨識。這有助於保護你的隱私,也讓未授權使用者更難推測你的資料資訊。",
|
||||
"Setup.RemoteE2EE.PassphraseValidationLine1": "請注意,端對端加密的密語要到同步程序實際開始時才會進行驗證。這是為了保護你資料而設計的安全措施。",
|
||||
"Setup.RemoteE2EE.PassphraseValidationLine2": "因此,在手動設定伺服器資訊時請務必格外小心。如果輸入了錯誤的密語,伺服器上的資料將會損毀。請理解這是系統的預期行為。",
|
||||
"Setup.RemoteE2EE.PlaceholderPassphrase": "輸入你的密語",
|
||||
"Setup.RemoteE2EE.StronglyRecommendedLine1": "啟用端對端加密後,資料會先在你的裝置上完成加密,再傳送到遠端伺服器。這表示即使有人取得伺服器存取權,沒有密語也無法讀取你的資料。請務必記住你的密語,因為其他裝置在解密資料時也需要它。",
|
||||
"Setup.RemoteE2EE.StronglyRecommendedLine2": "另外請注意,即使你目前使用的是 Peer-to-Peer 同步,日後若切換到其他方式並連線到遠端伺服器時,也會沿用這組設定。",
|
||||
"Setup.RemoteE2EE.StronglyRecommendedTitle": "強烈建議",
|
||||
"Setup.RemoteE2EE.Title": "端對端加密",
|
||||
"Setup.ScanQRCode.ButtonClose": "關閉此對話框",
|
||||
"Setup.ScanQRCode.Guidance": "請依照以下步驟,從現有裝置匯入設定。",
|
||||
"Setup.ScanQRCode.Step1": "在這台裝置上,請保持此 Vault 開啟。",
|
||||
"Setup.ScanQRCode.Step2": "在來源裝置上開啟 Obsidian。",
|
||||
"Setup.ScanQRCode.Step3": "在來源裝置上,從命令面板執行「將設定顯示為 QR 碼」命令。",
|
||||
"Setup.ScanQRCode.Step4": "在這台裝置上切換到相機 App,或使用 QR 碼掃描器掃描顯示出的 QR 碼。",
|
||||
"Setup.ScanQRCode.Title": "掃描 QR 碼",
|
||||
"Setup.UseSetupURI.ButtonCancel": "取消",
|
||||
"Setup.UseSetupURI.ButtonProceed": "測試設定並繼續",
|
||||
"Setup.UseSetupURI.ErrorFailedToParse": "無法解析 Setup URI,請檢查 URI 與密語。",
|
||||
"Setup.UseSetupURI.ErrorPassphraseRequired": "請輸入 Vault 的密語。",
|
||||
"Setup.UseSetupURI.GuidanceLine1": "請輸入在伺服器安裝期間或其他裝置上產生的 Setup URI,以及 Vault 的密語。",
|
||||
"Setup.UseSetupURI.GuidanceLine2": "你可以在命令面板中執行「將設定複製為新的 Setup URI」命令來產生新的 Setup URI。",
|
||||
"Setup.UseSetupURI.InvalidInfo": "Setup URI 無效,請檢查後再試一次。",
|
||||
"Setup.UseSetupURI.LabelPassphrase": "Vault 密語",
|
||||
"Setup.UseSetupURI.LabelSetupURI": "Setup URI",
|
||||
"Setup.UseSetupURI.PlaceholderPassphrase": "輸入 Vault 密語",
|
||||
"Setup.UseSetupURI.Title": "輸入 Setup URI",
|
||||
"Setup.UseSetupURI.ValidInfo": "Setup URI 有效,可以使用。",
|
||||
"Show full banner": "顯示完整橫幅",
|
||||
"Show history": "顯示歷程",
|
||||
"Show icon only": "僅顯示圖示",
|
||||
"Show status icon instead of file warnings banner": "以狀態圖示取代檔案警告橫幅",
|
||||
"Some devices have differing progress values (max: ${maxProgress}, min: ${minProgress}).\nThis may indicate that some devices have not completed synchronisation, which could lead to conflicts. Strongly recommend confirming that all devices are synchronised before proceeding.": "某些裝置的進度值不同(最大:${maxProgress},最小:${minProgress})。\n這可能表示某些裝置尚未完成同步,進而可能導致衝突。強烈建議在繼續之前先確認所有裝置都已同步。",
|
||||
"Storage -> Database": "儲存空間 -> 資料庫",
|
||||
"Switch to IDB": "切換至 IDB",
|
||||
"Switch to IndexedDB": "切換至 IndexedDB",
|
||||
"Synchronisation utilising journal files. You must have set up an S3/MinIO/R2 compatible object storage.": "透過日誌檔進行同步。你需要事先部署好相容 S3/MinIO/R2 的物件儲存服務。",
|
||||
"Synchronising files": "同步中的檔案",
|
||||
"Syncing": "同步中",
|
||||
"Target patterns": "目標模式",
|
||||
"The following accepted nodes are missing its node information:\n- ${missingNodes}\n\nThis indicates that they have not been connected for some time or have been left on an older version.\nIt is preferable to update all devices if possible. If you have any devices that are no longer in use, you can clear all accepted nodes by locking the remote once.": "以下已接受節點缺少節點資訊:\n- ${missingNodes}\n\n這表示它們已有一段時間未連線,或仍停留在較舊版本。\n如有可能,建議先更新所有裝置。如果有已不再使用的裝置,可以先鎖定一次遠端端以清除全部已接受節點。",
|
||||
"The IndexedDB adapter often offers superior performance in certain scenarios, but it has been found to cause memory leaks when used with LiveSync mode. When using LiveSync mode, please use IDB adapter instead.": "IndexedDB 適配器在某些情況下通常能提供較佳效能,但在 LiveSync 模式下已發現可能導致記憶體洩漏。使用 LiveSync 模式時,請改用 IDB 適配器。",
|
||||
"The minimum interval for automatic synchronisation on event.": "事件觸發自動同步的最小間隔。",
|
||||
"This feature enables direct synchronisation between devices. No server is required, but both devices must be online at the same time for synchronisation to occur, and some features may be limited. Internet connection is only required to signalling (detecting peers) and not for data transfer.": "此功能可在裝置之間直接同步,無需伺服器;但同步時兩台裝置必須同時在線,且部分功能可能受限。網際網路連線僅用於訊號交換(偵測對端),不用於資料傳輸。",
|
||||
"This is an advanced option for users who do not have a URI or who wish to configure detailed settings.": "這是面向沒有 URI 或希望手動設定詳細參數的進階選項。",
|
||||
"This is the most suitable synchronisation method for the design. All functions are available. You must have set up a CouchDB instance.": "這是最符合目前設計的同步方式,所有功能皆可使用。你需要事先部署好 CouchDB 實例。",
|
||||
"This will recreate chunks for all files. If there were missing chunks, this may fix the errors.": "這會為所有檔案重新建立 chunks。若先前有遺失的 chunks,這可能修復相關錯誤。",
|
||||
"Use a Setup URI (Recommended)": "使用 Setup URI(推薦)",
|
||||
"Verify all": "全部驗證",
|
||||
"Verify and repair all files": "驗證並修復所有檔案",
|
||||
"We will now guide you through a few questions to simplify the synchronisation setup.": "接下來我們會透過幾個問題,引導你更輕鬆地完成同步設定。",
|
||||
"We will now proceed with the server configuration.": "接下來將繼續進行伺服器設定。",
|
||||
"Welcome to Self-hosted LiveSync": "歡迎使用 Self-hosted LiveSync",
|
||||
"xxhash32 (Fast but less collision resistance)": "xxhash32(速度快,但抗碰撞能力較弱)",
|
||||
"xxhash64 (Fastest)": "xxhash64(最快)",
|
||||
"Yes, I want to add this device to my existing synchronisation": "是的,我要把這台裝置加入既有同步",
|
||||
"Yes, I want to set up a new synchronisation": "是的,我要設定新的同步",
|
||||
"You are adding this device to an existing synchronisation setup.": "你正在將此裝置加入既有同步設定中。"
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,412 @@
|
||||
(Active): (Aktiv)
|
||||
(RegExp) Empty to sync all files. Set filter as a regular expression to limit synchronising files.:
|
||||
(RegExp) Leer lassen, um alle Dateien zu synchronisieren. Legen Sie einen
|
||||
Filter als regulären Ausdruck fest, um die zu synchronisierenden Dateien
|
||||
einzuschränken.
|
||||
(RegExp) If this is set, any changes to local and remote files that match this will be skipped.:
|
||||
(RegExp) Wenn dies gesetzt ist, werden alle Änderungen an lokalen und
|
||||
Remote-Dateien übersprungen, die diesem Muster entsprechen.
|
||||
Activate: Aktivieren
|
||||
Add default patterns: Standardmuster hinzufügen
|
||||
Add new connection: Neue Verbindung hinzufügen
|
||||
Back: Zurück
|
||||
Back to non-configured: Zurück auf nicht konfiguriert
|
||||
Cancel: Abbrechen
|
||||
Check and convert non-path-obfuscated files: Nicht pfadverschleierte Dateien prüfen und konvertieren
|
||||
Check for documents that have not been converted to path-obfuscated IDs and convert them if necessary.:
|
||||
Prüft Dokumente, die noch nicht in pfadverschleierte IDs umgewandelt wurden,
|
||||
und konvertiert sie bei Bedarf.
|
||||
cmdConfigSync:
|
||||
showCustomizationSync: Anpassungssynchronisation anzeigen
|
||||
Compare the content of files between on local database and storage. If not matched, you will be asked which one you want to keep.:
|
||||
Vergleicht den Inhalt der Dateien zwischen lokaler Datenbank und Speicher. Bei
|
||||
Abweichungen werden Sie gefragt, welche Version behalten werden soll.
|
||||
Compatibility (Conflict Behaviour): Kompatibilität (Konfliktverhalten)
|
||||
Compatibility (Database structure): Kompatibilität (Datenbankstruktur)
|
||||
Compatibility (Internal API Usage): Kompatibilität (interne API-Nutzung)
|
||||
Compatibility (Metadata): Kompatibilität (Metadaten)
|
||||
Compatibility (Remote Database): Kompatibilität (Remote-Datenbank)
|
||||
Compatibility (Trouble addressed): Kompatibilität (Problembehebung)
|
||||
Configure: Konfigurieren
|
||||
Configure And Change Remote: Remote konfigurieren und wechseln
|
||||
Configure E2EE: E2EE konfigurieren
|
||||
Configure Remote: Remote konfigurieren
|
||||
Copy: Kopieren
|
||||
Cross-platform: Plattformübergreifend
|
||||
"Current adapter: {adapter}": "Aktueller Adapter: {adapter}"
|
||||
Customization Sync (Beta3): Anpassungssynchronisation (Beta3)
|
||||
Database Adapter: Datenbankadapter
|
||||
Default: Standard
|
||||
Delete: Löschen
|
||||
Delete all customization sync data: Alle Anpassungssynchronisationsdaten löschen
|
||||
Delete all data on the remote server.: Alle Daten auf dem Remote-Server löschen.
|
||||
Delete local database to reset or uninstall Self-hosted LiveSync:
|
||||
Lokale Datenbank löschen, um Self-hosted LiveSync zurückzusetzen oder zu
|
||||
deinstallieren
|
||||
Delete Remote Configuration: Remote-Konfiguration löschen
|
||||
Delete remote configuration '{name}'?: Remote-Konfiguration „{name}“ löschen?
|
||||
desktop: Desktop
|
||||
Device name: Gerätename
|
||||
Disables all synchronization and restart.: Deaktiviert die gesamte Synchronisation und startet neu.
|
||||
Display name: Anzeigename
|
||||
Duplicate: Duplizieren
|
||||
Duplicate remote: Remote duplizieren
|
||||
E2EE Configuration: E2EE-Konfiguration
|
||||
Edge case addressing (Behaviour): Behandlung von Randfällen (Verhalten)
|
||||
Edge case addressing (Database): Behandlung von Randfällen (Datenbank)
|
||||
Edge case addressing (Processing): Behandlung von Randfällen (Verarbeitung)
|
||||
Emergency restart: Notfallneustart
|
||||
Encrypting sensitive configuration items: Sensible Konfigurationseinträge verschlüsseln
|
||||
Export: Exportieren
|
||||
Fetch remote settings: Remote-Einstellungen abrufen
|
||||
File to resolve conflict: Datei zur Konfliktlösung
|
||||
Flag and restart: Markieren und neu starten
|
||||
Fresh Start Wipe: Für Neustart vollständig bereinigen
|
||||
Garbage Collection V3 (Beta): Datenbereinigung V3 (Beta)
|
||||
Hidden Files: Versteckte Dateien
|
||||
Hide completely: Vollständig ausblenden
|
||||
How to display network errors when the sync server is unreachable.:
|
||||
Legt fest, wie Netzwerkfehler angezeigt werden, wenn der
|
||||
Synchronisationsserver nicht erreichbar ist.
|
||||
If enabled, the ⛔ icon will be shown inside the status instead of the file warnings banner. No details will be shown.:
|
||||
Wenn aktiviert, wird das Symbol ⛔ im Status statt im Dateiwarnungsbanner
|
||||
angezeigt. Es werden keine Details angezeigt.
|
||||
Ignore patterns: Ausschlussmuster
|
||||
Import connection: Verbindung importieren
|
||||
Initialise all journal history, On the next sync, every item will be received and sent.:
|
||||
Gesamte Journal-Historie initialisieren. Beim nächsten Sync werden alle
|
||||
Elemente empfangen und gesendet.
|
||||
Later: Später
|
||||
"Limit: {datetime} ({timestamp})": "Grenze: {datetime} ({timestamp})"
|
||||
Lock: Sperren
|
||||
Lock Server: Server sperren
|
||||
Lock the remote server to prevent synchronization with other devices.:
|
||||
Sperrt den Remote-Server, um die Synchronisation mit anderen Geräten zu
|
||||
verhindern.
|
||||
More actions: Weitere Aktionen
|
||||
Network warning style: Stil der Netzwerkwarnung
|
||||
New Remote: Neues Remote
|
||||
No limit configured: Kein Limit konfiguriert
|
||||
Non-Synchronising files: Nicht zu synchronisierende Dateien
|
||||
Normal Files: Normale Dateien
|
||||
obsidianLiveSyncSettingTab:
|
||||
btnApply: Anwenden
|
||||
btnDisable: Deaktivieren
|
||||
btnNext: Weiter
|
||||
buttonNext: Weiter
|
||||
defaultLanguage: Standardsprache
|
||||
labelDisabled: "⏹️ : Deaktiviert"
|
||||
labelEnabled: "🔁 : Aktiviert"
|
||||
logConfiguredDisabled: "Konfigurierter Synchronisationsmodus: DEAKTIVIERT"
|
||||
logConfiguredLiveSync: "Konfigurierter Synchronisationsmodus: LiveSync"
|
||||
logConfiguredPeriodic: "Konfigurierter Synchronisationsmodus: Periodisch"
|
||||
logSelectAnyPreset: Wählen Sie eine beliebige Voreinstellung aus.
|
||||
msgConfigCheckFailed: Die Konfigurationsprüfung ist fehlgeschlagen. Trotzdem fortfahren?
|
||||
msgEnableEncryptionRecommendation: Wir empfehlen, Ende-zu-Ende-Verschlüsselung
|
||||
und Pfadverschleierung zu aktivieren. Möchten Sie wirklich ohne
|
||||
Verschlüsselung fortfahren?
|
||||
msgFetchConfigFromRemote: Möchten Sie die Konfiguration vom Remote-Server abrufen?
|
||||
msgGenerateSetupURI: Alles fertig! Möchten Sie eine Setup-URI erzeugen, um
|
||||
andere Geräte einzurichten?
|
||||
msgInvalidPassphrase: Ihre Verschlüsselungs-Passphrase könnte ungültig sein.
|
||||
Möchten Sie wirklich fortfahren?
|
||||
msgSelectAndApplyPreset: Bitte wählen und übernehmen Sie eine beliebige
|
||||
Voreinstellung, um den Assistenten abzuschließen.
|
||||
nameDisableHiddenFileSync: Synchronisation versteckter Dateien deaktivieren
|
||||
nameEnableHiddenFileSync: Synchronisation versteckter Dateien aktivieren
|
||||
nameHiddenFileSynchronization: Synchronisation versteckter Dateien
|
||||
optionDisableAllAutomatic: Alle automatischen Vorgänge deaktivieren
|
||||
optionLiveSync: LiveSync-Modus
|
||||
optionOnEvents: Bei Ereignissen
|
||||
optionPeriodicAndEvents: Periodisch und bei Ereignissen
|
||||
optionPeriodicWithBatch: Periodisch mit Stapelverarbeitung
|
||||
titleAppearance: Darstellung
|
||||
titleConflictResolution: Konfliktbehandlung
|
||||
titleCongratulations: Glückwunsch!
|
||||
titleCouchDB: CouchDB-Server
|
||||
titleDeletionPropagation: Weitergabe von Löschungen
|
||||
titleEncryptionNotEnabled: Verschlüsselung ist nicht aktiviert
|
||||
titleEncryptionPassphraseInvalid: Ungültige Verschlüsselungs-Passphrase
|
||||
titleFetchConfig: Konfiguration abrufen
|
||||
titleHiddenFiles: Versteckte Dateien
|
||||
titleLogging: Protokollierung
|
||||
titleMinioS3R2: MinIO / S3 / R2
|
||||
titleNotification: Benachrichtigungen
|
||||
titleRemoteConfigCheckFailed: Prüfung der Remote-Konfiguration fehlgeschlagen
|
||||
titleRemoteServer: Remote-Server
|
||||
titleSynchronizationMethod: Synchronisationsmethode
|
||||
titleSynchronizationPreset: Synchronisationsvorgabe
|
||||
titleSyncSettingsViaMarkdown: Synchronisationseinstellungen per Markdown
|
||||
titleUpdateThinning: Update-Ausdünnung
|
||||
Ok: OK
|
||||
Old Algorithm: Alter Algorithmus
|
||||
Older fallback (Slow, W/O WebAssembly): Älterer Fallback (langsam, ohne WebAssembly)
|
||||
Overwrite patterns: Überschreibungsmuster
|
||||
Overwrite remote: Remote überschreiben
|
||||
Overwrite remote with local DB and passphrase.: Remote mit lokaler Datenbank und Passphrase überschreiben.
|
||||
Overwrite Server Data with This Device's Files: Serverdaten mit den Dateien dieses Geräts überschreiben
|
||||
paneMaintenance:
|
||||
markDeviceResolvedAfterBackup: Markieren Sie das Gerät nach der Sicherung als gelöst.
|
||||
remoteLockedAndDeviceNotAccepted: Die Remote-Datenbank ist gesperrt und dieses
|
||||
Gerät wurde noch nicht akzeptiert.
|
||||
remoteLockedResolvedDevice: Die Remote-Datenbank ist gesperrt. Dieses Gerät wurde bereits akzeptiert.
|
||||
unlockDatabaseReady: Die Datenbank kann jetzt entsperrt werden.
|
||||
Paste a connection string: Verbindungszeichenfolge einfügen
|
||||
Patterns to match files for overwriting instead of merging: Muster zum Erkennen
|
||||
von Dateien, die überschrieben statt zusammengeführt werden sollen
|
||||
Patterns to match files for syncing: Muster zum Erkennen von Dateien für die Synchronisation
|
||||
Peer-to-Peer Synchronisation: Peer-to-Peer-Synchronisation
|
||||
Perform: Ausführen
|
||||
Perform cleanup: Bereinigung ausführen
|
||||
Perform Garbage Collection: Garbage Collection ausführen
|
||||
Perform Garbage Collection to remove unused chunks and reduce database size.:
|
||||
Führt Garbage Collection aus, um ungenutzte Chunks zu entfernen und die
|
||||
Datenbankgröße zu reduzieren.
|
||||
Pick a file to resolve conflict: Datei zur Konfliktlösung auswählen
|
||||
Please set this device name: Bitte legen Sie den Namen dieses Geräts fest
|
||||
PureJS fallback (Fast, W/O WebAssembly): PureJS-Fallback (schnell, ohne WebAssembly)
|
||||
Purge all download/upload cache.: Gesamten Download-/Upload-Cache leeren.
|
||||
Purge all journal counter: Alle Journal-Zähler leeren
|
||||
Rebuild local and remote database with local files.: Lokale und Remote-Datenbank anhand der lokalen Dateien neu aufbauen.
|
||||
Rebuilding Operations (Remote Only): Neuaufbau-Vorgänge (nur Remote)
|
||||
Recreate all: Alle neu erstellen
|
||||
Recreate missing chunks for all files: Fehlende Chunks für alle Dateien neu erstellen
|
||||
Remediation: Problembehebung
|
||||
Remediation Setting Changed: Problembehebungs-Einstellung geändert
|
||||
Remote Database Tweak (In sunset): Remote-Datenbank-Optimierung (wird eingestellt)
|
||||
Remote Databases: Remote-Datenbanken
|
||||
Remote name: Remote-Name
|
||||
Rename: Umbenennen
|
||||
Resend: Erneut senden
|
||||
Resend all chunks to the remote.: Alle Chunks erneut an das Remote senden.
|
||||
Reset: Zurücksetzen
|
||||
Reset all: Alles zurücksetzen
|
||||
Reset all journal counter: Alle Journal-Zähler zurücksetzen
|
||||
Reset journal received history: Empfangsverlauf des Journals zurücksetzen
|
||||
Reset journal sent history: Sendeverlauf des Journals zurücksetzen
|
||||
Reset received: Empfang zurücksetzen
|
||||
Reset sent history: Sendeverlauf zurücksetzen
|
||||
Reset Synchronisation information: Synchronisationsinformationen zurücksetzen
|
||||
Reset Synchronisation on This Device: Synchronisation auf diesem Gerät zurücksetzen
|
||||
Resolve All: Alle auflösen
|
||||
Resolve all conflicted files: Alle Konfliktdateien auflösen
|
||||
Resolve All conflicted files by the newer one: Alle Konfliktdateien mit der neueren Version auflösen
|
||||
"Resolve all conflicted files by the newer one. Caution: This will overwrite the older one, and cannot resurrect the overwritten one.":
|
||||
"Löst alle Konfliktdateien zugunsten der neueren Version auf. Achtung: Dadurch
|
||||
wird die ältere Version überschrieben und kann nicht wiederhergestellt
|
||||
werden."
|
||||
Restart Now: Jetzt neu starten
|
||||
Restore or reconstruct local database from remote.: Lokale Datenbank aus dem Remote wiederherstellen oder neu aufbauen.
|
||||
Schedule and Restart: Planen und neu starten
|
||||
Scram!: Notfallmaßnahmen
|
||||
Select the database adapter to use.: Wählen Sie den zu verwendenden Datenbankadapter aus.
|
||||
Send: Senden
|
||||
Send chunks: Chunks senden
|
||||
Setting:
|
||||
GenerateKeyPair:
|
||||
Desc: >-
|
||||
Wir haben ein Schlüsselpaar erzeugt!
|
||||
|
||||
|
||||
Hinweis: Dieses Schlüsselpaar wird nie wieder angezeigt. Bitte bewahren
|
||||
Sie es an einem sicheren Ort auf. Wenn Sie es verlieren, müssen Sie ein
|
||||
neues Schlüsselpaar erzeugen.
|
||||
|
||||
Hinweis 2: Der öffentliche Schlüssel liegt im SPKI-Format vor, der private
|
||||
Schlüssel im PKCS8-Format. Zur besseren Handhabung werden Zeilenumbrüche
|
||||
im öffentlichen Schlüssel zu `\n` umgewandelt.
|
||||
|
||||
Hinweis 3: Der öffentliche Schlüssel sollte in der Remote-Datenbank
|
||||
hinterlegt werden, der private Schlüssel auf den lokalen Geräten.
|
||||
|
||||
|
||||
>[!NUR FÜR IHRE AUGEN]-
|
||||
|
||||
> <div class="sls-keypair">
|
||||
|
||||
>
|
||||
|
||||
> ### Öffentlicher Schlüssel
|
||||
|
||||
> ```
|
||||
|
||||
${public_key}
|
||||
|
||||
> ```
|
||||
|
||||
>
|
||||
|
||||
> ### Privater Schlüssel
|
||||
|
||||
> ```
|
||||
|
||||
${private_key}
|
||||
|
||||
> ```
|
||||
|
||||
>
|
||||
|
||||
> </div>
|
||||
|
||||
|
||||
>[!Beides zum Kopieren]-
|
||||
|
||||
>
|
||||
|
||||
> <div class="sls-keypair">
|
||||
|
||||
>
|
||||
|
||||
> ```
|
||||
|
||||
${public_key}
|
||||
|
||||
${private_key}
|
||||
|
||||
> ```
|
||||
|
||||
>
|
||||
|
||||
> </div>
|
||||
Title: Neues Schlüsselpaar wurde erzeugt!
|
||||
Show full banner: Vollständiges Banner anzeigen
|
||||
Show icon only: Nur Symbol anzeigen
|
||||
Show status icon instead of file warnings banner: Statussymbol statt Dateiwarnungsbanner anzeigen
|
||||
Switch to IDB: Zu IDB wechseln
|
||||
Switch to IndexedDB: Zu IndexedDB wechseln
|
||||
Synchronising files: Zu synchronisierende Dateien
|
||||
Syncing: Synchronisierung
|
||||
Target patterns: Zielmuster
|
||||
This will recreate chunks for all files. If there were missing chunks, this may fix the errors.:
|
||||
Dadurch werden die Chunks für alle Dateien neu erstellt. Falls Chunks fehlen,
|
||||
können die Fehler dadurch behoben werden.
|
||||
Verify all: Alle prüfen
|
||||
Verify and repair all files: Alle Dateien prüfen und reparieren
|
||||
xxhash32 (Fast but less collision resistance): xxhash32 (schnell, aber geringere Kollisionsresistenz)
|
||||
xxhash64 (Fastest): xxhash64 (am schnellsten)
|
||||
"Welcome to Self-hosted LiveSync": "Willkommen bei Self-hosted LiveSync"
|
||||
"We will now guide you through a few questions to simplify the synchronisation setup.": "Wir führen Sie nun durch einige Fragen, um die Synchronisationseinrichtung zu vereinfachen."
|
||||
"First, please select the option that best describes your current situation.": "Wählen Sie bitte zuerst die Option aus, die Ihre aktuelle Situation am besten beschreibt."
|
||||
"I am setting this up for the first time": "Ich richte dies zum ersten Mal ein"
|
||||
"(Select this if you are configuring this device as the first synchronisation device.) This option is suitable if you are new to LiveSync and want to set it up from scratch.": "(Wählen Sie dies, wenn Sie dieses Gerät als erstes Synchronisationsgerät einrichten.) Diese Option ist geeignet, wenn Sie LiveSync neu verwenden und von Grund auf einrichten möchten."
|
||||
"I am adding a device to an existing synchronisation setup": "Ich füge ein Gerät zu einer bestehenden Synchronisationseinrichtung hinzu"
|
||||
"(Select this if you are already using synchronisation on another computer or smartphone.) This option is suitable if you are new to LiveSync and want to set it up from scratch.": "(Wählen Sie dies, wenn Sie die Synchronisation bereits auf einem anderen Computer oder Smartphone verwenden.) Diese Option ist geeignet, wenn Sie dieses Gerät zu einer bestehenden LiveSync-Einrichtung hinzufügen möchten."
|
||||
"Yes, I want to set up a new synchronisation": "Ja, ich möchte eine neue Synchronisation einrichten"
|
||||
"Yes, I want to add this device to my existing synchronisation": "Ja, ich möchte dieses Gerät zu meiner bestehenden Synchronisation hinzufügen"
|
||||
"No, please take me back": "Nein, bitte zurück"
|
||||
"Device Setup Method": "Einrichtungsmethode für das Gerät"
|
||||
"You are adding this device to an existing synchronisation setup.": "Sie fügen dieses Gerät zu einer bestehenden Synchronisationseinrichtung hinzu."
|
||||
"Please select a method to import the settings from another device.": "Bitte wählen Sie eine Methode, um die Einstellungen von einem anderen Gerät zu importieren."
|
||||
"Use a Setup URI (Recommended)": "Setup-URI verwenden (empfohlen)"
|
||||
"Paste the Setup URI generated from one of your active devices.": "Fügen Sie die Setup-URI ein, die auf einem Ihrer aktiven Geräte erzeugt wurde。"
|
||||
"Scan a QR Code (Recommended for mobile)": "QR-Code scannen (für Mobilgeräte empfohlen)"
|
||||
"Scan the QR code displayed on an active device using this device's camera.": "Scannen Sie den auf einem aktiven Gerät angezeigten QR-Code mit der Kamera dieses Geräts。"
|
||||
"Enter the server information manually": "Serverinformationen manuell eingeben"
|
||||
"Configure the same server information as your other devices again, manually, very advanced users only.": "Geben Sie dieselben Serverinformationen wie auf Ihren anderen Geräten erneut manuell ein. Nur für sehr erfahrene Benutzer。"
|
||||
"Proceed with Setup URI": "Mit Setup-URI fortfahren"
|
||||
"I know my server details, let me enter them": "Ich kenne meine Serverdaten, ich gebe sie selbst ein"
|
||||
"Please select an option to proceed": "Bitte wählen Sie eine Option, um fortzufahren"
|
||||
"Connection Method": "Verbindungsmethode"
|
||||
"We will now proceed with the server configuration.": "Wir fahren nun mit der Serverkonfiguration fort。"
|
||||
"How would you like to configure the connection to your server?": "Wie möchten Sie die Verbindung zu Ihrem Server konfigurieren?"
|
||||
"A Setup URI is a single string of text containing your server address and authentication details. Using a URI, if one was generated by your server installation script, provides a simple and secure configuration.": "Eine Setup-URI ist eine einzelne Zeichenfolge, die Ihre Serveradresse und Authentifizierungsdaten enthält. Wenn Ihre Serverinstallation eine URI erzeugt hat, bietet deren Verwendung eine einfache und sichere Konfiguration。"
|
||||
"This is an advanced option for users who do not have a URI or who wish to configure detailed settings.": "Dies ist eine erweiterte Option für Benutzer, die keine URI haben oder detaillierte Einstellungen manuell konfigurieren möchten。"
|
||||
"Enter Server Information": "Serverinformationen eingeben"
|
||||
"Please select the type of server to which you are connecting.": "Bitte wählen Sie den Servertyp aus, mit dem Sie sich verbinden。"
|
||||
"Continue to CouchDB setup": "Weiter zur CouchDB-Einrichtung"
|
||||
"Continue to S3/MinIO/R2 setup": "Weiter zur S3/MinIO/R2-Einrichtung"
|
||||
"Continue to Peer-to-Peer only setup": "Weiter zur reinen Peer-to-Peer-Einrichtung"
|
||||
"This is the most suitable synchronisation method for the design. All functions are available. You must have set up a CouchDB instance.": "Dies ist die für das Design am besten geeignete Synchronisationsmethode. Alle Funktionen sind verfügbar. Sie müssen eine CouchDB-Instanz eingerichtet haben。"
|
||||
"S3/MinIO/R2 Object Storage": "S3-/MinIO-/R2-Objektspeicher"
|
||||
"Synchronisation utilising journal files. You must have set up an S3/MinIO/R2 compatible object storage.": "Synchronisation über Journaldateien. Sie müssen einen S3/MinIO/R2-kompatiblen Objektspeicher eingerichtet haben。"
|
||||
"Peer-to-Peer only": "Nur Peer-to-Peer"
|
||||
"This feature enables direct synchronisation between devices. No server is required, but both devices must be online at the same time for synchronisation to occur, and some features may be limited. Internet connection is only required to signalling (detecting peers) and not for data transfer.": "Diese Funktion ermöglicht die direkte Synchronisation zwischen Geräten. Es wird kein Server benötigt, aber beide Geräte müssen gleichzeitig online sein, damit synchronisiert werden kann, und einige Funktionen können eingeschränkt sein. Eine Internetverbindung wird nur für das Signalling (Erkennen von Peers) benötigt, nicht für die Datenübertragung。"
|
||||
Setup:
|
||||
RemoteE2EE:
|
||||
Title: Ende-zu-Ende-Verschlüsselung
|
||||
Guidance: Bitte konfigurieren Sie Ihre Einstellungen für die Ende-zu-Ende-Verschlüsselung.
|
||||
LabelEncrypt: Ende-zu-Ende-Verschlüsselung
|
||||
PlaceholderPassphrase: Geben Sie Ihre Passphrase ein
|
||||
StronglyRecommendedTitle: Dringend empfohlen
|
||||
StronglyRecommendedLine1: Wenn Sie die Ende-zu-Ende-Verschlüsselung aktivieren, werden Ihre Daten auf Ihrem Gerät verschlüsselt, bevor sie an den Remote-Server gesendet werden. Das bedeutet, dass selbst bei Zugriff auf den Server niemand Ihre Daten ohne die Passphrase lesen kann. Merken Sie sich Ihre Passphrase unbedingt, da sie auch auf anderen Geräten zum Entschlüsseln Ihrer Daten benötigt wird.
|
||||
StronglyRecommendedLine2: >-
|
||||
Bitte beachten Sie außerdem: Wenn Sie Peer-to-Peer-Synchronisation verwenden, wird diese Konfiguration auch dann genutzt, wenn Sie künftig zu anderen Methoden wechseln und sich mit einem Remote-Server verbinden.
|
||||
MultiDestinationWarning: Diese Einstellung muss auch dann identisch sein, wenn Sie sich mit mehreren Synchronisationszielen verbinden.
|
||||
LabelObfuscateProperties: Eigenschaften verschleiern
|
||||
ObfuscatePropertiesDesc: Das Verschleiern von Eigenschaften (z. B. Dateipfad, Größe sowie Erstellungs- und Änderungsdatum) fügt eine zusätzliche Sicherheitsebene hinzu, da die Struktur und die Namen Ihrer Dateien und Ordner auf dem Remote-Server schwerer erkennbar sind. Das schützt Ihre Privatsphäre und erschwert es unbefugten Personen, Informationen über Ihre Daten abzuleiten.
|
||||
AdvancedTitle: Erweitert
|
||||
LabelEncryptionAlgorithm: Verschlüsselungsalgorithmus
|
||||
DefaultAlgorithmDesc: In den meisten Fällen sollten Sie beim Standardalgorithmus (${algorithm}) bleiben. Diese Einstellung ist nur erforderlich, wenn Sie bereits einen Vault haben, der in einem anderen Format verschlüsselt wurde.
|
||||
AlgorithmWarning: Wenn Sie den Verschlüsselungsalgorithmus ändern, können Sie nicht mehr auf Daten zugreifen, die zuvor mit einem anderen Algorithmus verschlüsselt wurden. Stellen Sie sicher, dass alle Ihre Geräte denselben Algorithmus verwenden, damit der Zugriff auf Ihre Daten erhalten bleibt.
|
||||
PassphraseValidationLine1: Bitte beachten Sie, dass die Passphrase für die Ende-zu-Ende-Verschlüsselung erst geprüft wird, wenn der Synchronisationsvorgang tatsächlich beginnt. Dies ist eine Sicherheitsmaßnahme zum Schutz Ihrer Daten.
|
||||
PassphraseValidationLine2: Daher bitten wir Sie, beim manuellen Konfigurieren der Serverinformationen äußerst vorsichtig zu sein. Wenn eine falsche Passphrase eingegeben wird, werden die Daten auf dem Server beschädigt. Bitte haben Sie Verständnis dafür, dass dies beabsichtigtes Verhalten ist.
|
||||
ButtonProceed: Fortfahren
|
||||
ButtonCancel: Abbrechen
|
||||
UseSetupURI:
|
||||
Title: Setup-URI eingeben
|
||||
GuidanceLine1: Bitte geben Sie die Setup-URI ein, die während der Servereinrichtung oder auf einem anderen Gerät erzeugt wurde, zusammen mit der Passphrase des Vaults.
|
||||
GuidanceLine2: Sie können eine neue Setup-URI erzeugen, indem Sie im Befehlsmenü den Befehl „Einstellungen als neue Setup-URI kopieren“ ausführen.
|
||||
LabelSetupURI: Setup-URI
|
||||
ValidInfo: Die Setup-URI ist gültig und kann verwendet werden.
|
||||
InvalidInfo: Die Setup-URI ist ungültig. Bitte prüfen Sie sie und versuchen Sie es erneut.
|
||||
LabelPassphrase: Vault-Passphrase
|
||||
PlaceholderPassphrase: Geben Sie die Passphrase Ihres Vaults ein
|
||||
ErrorPassphraseRequired: Bitte geben Sie die Passphrase des Vaults ein.
|
||||
ErrorFailedToParse: Die Setup-URI konnte nicht verarbeitet werden. Bitte prüfen Sie URI und Passphrase.
|
||||
ButtonProceed: Einstellungen testen und fortfahren
|
||||
ButtonCancel: Abbrechen
|
||||
ScanQRCode:
|
||||
Title: QR-Code scannen
|
||||
Guidance: Bitte folgen Sie den untenstehenden Schritten, um die Einstellungen von Ihrem vorhandenen Gerät zu importieren.
|
||||
Step1: Lassen Sie auf diesem Gerät bitte diesen Vault geöffnet.
|
||||
Step2: Öffnen Sie auf dem Quellgerät Obsidian.
|
||||
Step3: Führen Sie auf dem Quellgerät im Befehlsmenü den Befehl „Einstellungen als QR-Code anzeigen“ aus.
|
||||
Step4: Wechseln Sie auf diesem Gerät zur Kamera-App oder verwenden Sie einen QR-Code-Scanner, um den angezeigten QR-Code zu scannen.
|
||||
ButtonClose: Diesen Dialog schließen
|
||||
"Please enable 'Compute revisions for chunks' in settings to use Garbage Collection.": Bitte aktivieren Sie „Compute revisions for chunks“ in den Einstellungen, um die Garbage Collection zu verwenden.
|
||||
"Please disable 'Read chunks online' in settings to use Garbage Collection.": Bitte deaktivieren Sie „Read chunks online“ in den Einstellungen, um die Garbage Collection zu verwenden.
|
||||
"Setup URI dialog cancelled.": Setup-URI-Dialog abgebrochen.
|
||||
"Please select 'Cancel' explicitly to cancel this operation.": Bitte wählen Sie ausdrücklich „Abbrechen“, um diesen Vorgang abzubrechen.
|
||||
"Failed to connect to remote for compaction.": Verbindung zur Remote-Datenbank für die Komprimierung fehlgeschlagen.
|
||||
"Failed to connect to remote for compaction. ${reason}": Verbindung zur Remote-Datenbank für die Komprimierung fehlgeschlagen. ${reason}
|
||||
"Compaction in progress on remote database...": Komprimierung auf der Remote-Datenbank läuft...
|
||||
"Compaction on remote database timed out.": Die Komprimierung auf der Remote-Datenbank hat eine Zeitüberschreitung erreicht.
|
||||
"Compaction on remote database completed successfully.": Die Komprimierung auf der Remote-Datenbank wurde erfolgreich abgeschlossen.
|
||||
"Compaction on remote database failed.": Die Komprimierung auf der Remote-Datenbank ist fehlgeschlagen.
|
||||
"Failed to start one-shot replication before Garbage Collection. Garbage Collection Cancelled.": Die Einmal-Replikation vor der Garbage Collection konnte nicht gestartet werden. Die Garbage Collection wurde abgebrochen.
|
||||
"Cancel Garbage Collection": Garbage Collection abbrechen
|
||||
"No connected device information found. Cancelling Garbage Collection.": Keine Informationen zu verbundenen Geräten gefunden. Garbage Collection wird abgebrochen.
|
||||
"The following accepted nodes are missing its node information:\n- ${missingNodes}\n\nThis indicates that they have not been connected for some time or have been left on an older version.\nIt is preferable to update all devices if possible. If you have any devices that are no longer in use, you can clear all accepted nodes by locking the remote once.": |-
|
||||
Für die folgenden akzeptierten Knoten fehlen die Knoteninformationen:
|
||||
- ${missingNodes}
|
||||
|
||||
Das deutet darauf hin, dass sie seit einiger Zeit nicht verbunden waren oder noch eine ältere Version verwenden.
|
||||
Es ist nach Möglichkeit besser, zunächst alle Geräte zu aktualisieren. Wenn Sie Geräte haben, die nicht mehr verwendet werden, können Sie alle akzeptierten Knoten löschen, indem Sie die Remote-Datenbank einmal sperren.
|
||||
"Ignore and Proceed": Ignorieren und fortfahren
|
||||
"Node Information Missing": Knoteninformationen fehlen
|
||||
"Garbage Collection cancelled by user.": Garbage Collection wurde vom Benutzer abgebrochen.
|
||||
"Proceeding with Garbage Collection, ignoring missing nodes.": Garbage Collection wird fortgesetzt, fehlende Knoten werden ignoriert.
|
||||
"Proceed Garbage Collection": Garbage Collection fortsetzen
|
||||
"> [!INFO]- The connected devices have been detected as follows:\n${devices}": |-
|
||||
> [!INFO]- Die folgenden verbundenen Geräte wurden erkannt:
|
||||
${devices}
|
||||
"Device": Gerät
|
||||
"Node ID": Knoten-ID
|
||||
"Obsidian version": Obsidian-Version
|
||||
"Plug-in version": Plugin-Version
|
||||
"Progress": Fortschritt
|
||||
"Some devices have differing progress values (max: ${maxProgress}, min: ${minProgress}).\nThis may indicate that some devices have not completed synchronisation, which could lead to conflicts. Strongly recommend confirming that all devices are synchronised before proceeding.": |-
|
||||
Einige Geräte haben unterschiedliche Fortschrittswerte (max: ${maxProgress}, min: ${minProgress}).
|
||||
Das kann darauf hindeuten, dass einige Geräte die Synchronisation noch nicht abgeschlossen haben, was zu Konflikten führen könnte. Es wird dringend empfohlen, vor dem Fortfahren zu bestätigen, dass alle Geräte synchronisiert sind.
|
||||
"All devices have the same progress value (${progress}). Your devices seem to be synchronised. And be able to proceed with Garbage Collection.": Alle Geräte haben denselben Fortschrittswert (${progress}). Ihre Geräte scheinen synchronisiert zu sein. Die Garbage Collection kann fortgesetzt werden.
|
||||
"Garbage Collection Confirmation": Bestätigung der Garbage Collection
|
||||
"Proceeding with Garbage Collection.": Garbage Collection wird ausgeführt.
|
||||
"Garbage Collection: Scanned ${scanned} / ~${docCount}": |-
|
||||
Garbage Collection: ${scanned} / ~${docCount} gescannt
|
||||
"Garbage Collection: Scanning completed. Total chunks: ${totalChunks}, Used chunks: ${usedChunks}": |-
|
||||
Garbage Collection: Scan abgeschlossen. Gesamtzahl der Chunks: ${totalChunks}, verwendete Chunks: ${usedChunks}
|
||||
"Garbage Collection: Found ${unusedChunks} unused chunks to delete.": |-
|
||||
Garbage Collection: ${unusedChunks} ungenutzte Chunks zum Löschen gefunden.
|
||||
"Garbage Collection completed. Deleted chunks: ${deletedChunks} / ${totalChunks}. Time taken: ${seconds} seconds.": |-
|
||||
Garbage Collection abgeschlossen. Gelöschte Chunks: ${deletedChunks} / ${totalChunks}. Benötigte Zeit: ${seconds} Sekunden.
|
||||
"Failed to start replication after Garbage Collection.": Die Replikation nach der Garbage Collection konnte nicht gestartet werden.
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,443 @@
|
||||
(Active): (已啟用)
|
||||
(RegExp) Empty to sync all files. Set filter as a regular expression to limit synchronising files.: (正則表示式)留空即同步所有檔案。設定正則表示式可限制要同步的檔案。
|
||||
(RegExp) If this is set, any changes to local and remote files that match this will be skipped.: (正則表示式)若已設定,所有符合此模式的本機與遠端檔案變更都會被略過。
|
||||
Activate: 啟用
|
||||
Active Remote Configuration: 目前啟用的遠端設定
|
||||
Add default patterns: 新增預設模式
|
||||
Always prompt merge conflicts: 總是提示合併衝突
|
||||
Analyse: 分析
|
||||
Apply Latest Change if Conflicting: 發生衝突時套用最新變更
|
||||
Apply preset configuration: 套用預設配置
|
||||
Ask a passphrase at every launch: 每次啟動時都詢問密語
|
||||
Automatically Sync all files when opening Obsidian.: 開啟 Obsidian 時自動同步所有檔案。
|
||||
Batch database update: 批次更新資料庫
|
||||
Batch limit: 批次上限
|
||||
Batch size: 批次大小
|
||||
Batch size of on-demand fetching: 按需抓取的批次大小
|
||||
Bucket Name: 儲存桶名稱
|
||||
Check: 檢查
|
||||
Configuration Encryption: 設定加密
|
||||
CouchDB Connection Tweak: CouchDB 連線調校
|
||||
Customization Sync: 自訂同步
|
||||
Data Compression: 資料壓縮
|
||||
Database Name: 資料庫名稱
|
||||
Database suffix: 資料庫後綴
|
||||
Delay conflict resolution of inactive files: 延後處理非活動檔案的衝突
|
||||
Delay merge conflict prompt for inactive files.: 延後顯示非活動檔案的合併衝突提示。
|
||||
Delete old metadata of deleted files on start-up: 啟動時刪除已刪除檔案的舊中繼資料
|
||||
Developer: 開發者
|
||||
Disables logging, only shows notifications. Please disable if you report an issue.: 停用日誌記錄,只顯示通知。如果你要回報問題,請關閉此選項。
|
||||
Display Language: 顯示語言
|
||||
Do not check configuration mismatch before replication: 複寫前不檢查設定是否不一致
|
||||
Do not keep metadata of deleted files.: 不保留已刪除檔案的中繼資料。
|
||||
Do not split chunks in the background: 不在背景分割 chunks
|
||||
Do not use internal API: 不使用內部 API
|
||||
Add new connection: 新增連線
|
||||
Back: 返回
|
||||
Back to non-configured: 恢復為未設定狀態
|
||||
Cancel: 取消
|
||||
Check and convert non-path-obfuscated files: 檢查並轉換未進行路徑混淆的檔案
|
||||
Check for documents that have not been converted to path-obfuscated IDs and convert them if necessary.: 檢查尚未轉換為路徑混淆 ID 的文件,並在需要時進行轉換。
|
||||
cmdConfigSync:
|
||||
showCustomizationSync: 顯示自訂同步
|
||||
Compare the content of files between on local database and storage. If not matched, you will be asked which one you want to keep.: 比較本機資料庫與儲存空間中的檔案內容;若不一致,系統會詢問你要保留哪一份。
|
||||
Compatibility (Conflict Behaviour): 相容性(衝突行為)
|
||||
Compatibility (Database structure): 相容性(資料庫結構)
|
||||
Compatibility (Internal API Usage): 相容性(內部 API 使用)
|
||||
Compatibility (Metadata): 相容性(中繼資料)
|
||||
Compatibility (Remote Database): 相容性(遠端資料庫)
|
||||
Compatibility (Trouble addressed): 相容性(問題修復)
|
||||
Configure: 設定
|
||||
Configure And Change Remote: 設定並切換遠端
|
||||
Configure E2EE: 設定 E2EE
|
||||
Configure Remote: 設定遠端
|
||||
Copy: 複製
|
||||
Cross-platform: 跨平台
|
||||
"Current adapter: {adapter}": 目前的適配器:{adapter}
|
||||
Customization Sync (Beta3): 自訂同步(Beta3)
|
||||
Database Adapter: 資料庫適配器
|
||||
Default: 預設
|
||||
Delete: 刪除
|
||||
Delete all customization sync data: 刪除所有自訂同步資料
|
||||
Delete all data on the remote server.: 刪除遠端伺服器上的所有資料。
|
||||
Delete local database to reset or uninstall Self-hosted LiveSync: 刪除本機資料庫以重設或解除安裝 Self-hosted LiveSync
|
||||
Delete Remote Configuration: 刪除遠端設定
|
||||
Delete remote configuration '{name}'?: 要刪除遠端設定「{name}」嗎?
|
||||
desktop: 桌面裝置
|
||||
Device name: 裝置名稱
|
||||
Disables all synchronization and restart.: 停用所有同步並重新啟動。
|
||||
Display name: 顯示名稱
|
||||
Duplicate: 複製
|
||||
Duplicate remote: 複製遠端設定
|
||||
dialog:
|
||||
yourLanguageAvailable:
|
||||
_value: |-
|
||||
Self-hosted LiveSync 已提供你目前語言的翻譯,因此已啟用顯示語言設定。
|
||||
|
||||
注意:並非所有訊息都已完成翻譯,歡迎協助補充!
|
||||
注意 2:如果你要回報問題,請先切回預設語言,再附上截圖、訊息與日誌。
|
||||
|
||||
希望你使用愉快!
|
||||
btnRevertToDefault: 恢復為預設語言
|
||||
Title: 已提供你的語言翻譯!
|
||||
E2EE Configuration: E2EE 設定
|
||||
Enable advanced features: 啟用進階功能
|
||||
Enable customization sync: 啟用自訂同步
|
||||
Enable Developers' Debug Tools.: 啟用開發者除錯工具。
|
||||
Enable edge case treatment features: 啟用邊緣情況處理功能
|
||||
Enable poweruser features: 啟用進階使用者功能
|
||||
Enable this if your Object Storage doesn't support CORS: 如果你的物件儲存不支援 CORS,請啟用此選項
|
||||
Enable this option to automatically apply the most recent change to documents even when it conflicts: 啟用此選項後,即使發生衝突也會自動套用文件的最新變更
|
||||
Encrypt contents on the remote database. If you use the plugin's synchronization feature, enabling this is recommended.: 加密遠端資料庫中的內容。如果你使用外掛的同步功能,建議啟用此選項。
|
||||
Encryption phassphrase. If changed, you should overwrite the server's database with the new (encrypted) files.: 加密密語。如果變更了它,你應以新的(已加密)檔案覆寫伺服器上的資料庫。
|
||||
End-to-End Encryption: 端對端加密
|
||||
Endpoint URL: 端點 URL
|
||||
Enhance chunk size: 擴大 chunk 大小
|
||||
Fetch: 抓取
|
||||
Fetch chunks on demand: 按需抓取 chunks
|
||||
Fetch database with previous behaviour: 以前一種行為抓取資料庫
|
||||
Filename: 檔名
|
||||
Forces the file to be synced when opened.: 開啟檔案時強制同步該檔案。
|
||||
Handle files as Case-Sensitive: 將檔案視為區分大小寫
|
||||
Highlight diff: 醒目顯示差異
|
||||
If disabled(toggled), chunks will be split on the UI thread (Previous behaviour).: 若停用(關閉)此選項,chunks 會在 UI 執行緒上分割(舊有行為)。
|
||||
If enabled per-filed efficient customization sync will be used. We need a small migration when enabling this. And all devices should be updated to v0.23.18. Once we enabled this, we lost a compatibility with old versions.: 啟用後會使用以每個檔案為單位的高效率自訂同步。啟用時需要進行一次小型遷移,且所有裝置都應升級到 v0.23.18。啟用後將不再相容舊版本。
|
||||
If enabled, chunks will be split into no more than 100 items. However, dedupe is slightly weaker.: 啟用後,chunks 最多會分成 100 個項目,但去重效果會稍微變弱。
|
||||
If enabled, newly created chunks are temporarily kept within the document, and graduated to become independent chunks once stabilised.: 啟用後,新建立的 chunks 會暫時保留在文件中,待穩定後再獨立出去。
|
||||
If enabled, the file under 1kb will be processed in the UI thread.: 啟用後,小於 1KB 的檔案會在 UI 執行緒中處理。
|
||||
If enabled, the notification of hidden files change will be suppressed.: 啟用後,將不再通知隱藏檔案變更。
|
||||
If this enabled, all chunks will be stored with the revision made from its content. (Previous behaviour): 啟用後,所有 chunks 都會以其內容產生的修訂版本儲存(舊有行為)。
|
||||
If this enabled, All files are handled as case-Sensitive (Previous behaviour).: 啟用後,所有檔案都會以區分大小寫方式處理(舊有行為)。
|
||||
If this enabled, chunks will be split into semantically meaningful segments. Not all platforms support this feature.: 啟用後,chunks 會依語意切分成有意義的區段,並非所有平台都支援此功能。
|
||||
If you reached the payload size limit when using IBM Cloudant, please decrease batch size and batch limit to a lower value.: 如果你在使用 IBM Cloudant 時遇到負載大小上限,請調低批次大小與批次上限。
|
||||
Initialise journal received history. On the next sync, every item except this device sent will be downloaded again.: 初始化接收日誌歷程。下次同步時,除了此裝置已送出的項目外,其他項目都會再次下載。
|
||||
Initialise journal sent history. On the next sync, every item except this device received will be sent again.: 初始化傳送日誌歷程。下次同步時,除了此裝置已接收的項目外,其他項目都會再次傳送。
|
||||
Edge case addressing (Behaviour): 邊緣情況處理(行為)
|
||||
Edge case addressing (Database): 邊緣情況處理(資料庫)
|
||||
Edge case addressing (Processing): 邊緣情況處理(處理)
|
||||
Emergency restart: 緊急重新啟動
|
||||
Encrypting sensitive configuration items: 加密敏感設定項目
|
||||
Export: 匯出
|
||||
Fetch remote settings: 抓取遠端設定
|
||||
File to resolve conflict: 要解決衝突的檔案
|
||||
Flag and restart: 標記後重新啟動
|
||||
Fresh Start Wipe: 全新開始清除
|
||||
Garbage Collection V3 (Beta): 垃圾回收 V3(Beta)
|
||||
Hidden Files: 隱藏檔案
|
||||
Hide completely: 完全隱藏
|
||||
How to display network errors when the sync server is unreachable.: 當同步伺服器無法連線時,如何顯示網路錯誤。
|
||||
If enabled, the ⛔ icon will be shown inside the status instead of the file warnings banner. No details will be shown.: 啟用後,將在狀態列中顯示 ⛔ 圖示,而不是檔案警告橫幅,且不會顯示詳細資訊。
|
||||
Ignore patterns: 忽略模式
|
||||
Import connection: 匯入連線
|
||||
Initialise all journal history, On the next sync, every item will be received and sent.: 初始化所有日誌歷史。下次同步時,每個項目都會重新接收與傳送。
|
||||
Later: 稍後
|
||||
"Limit: {datetime} ({timestamp})": 限制:{datetime}({timestamp})
|
||||
Lock: 鎖定
|
||||
Lock Server: 鎖定伺服器
|
||||
Lock the remote server to prevent synchronization with other devices.: 鎖定遠端伺服器,以防止其他裝置進行同步。
|
||||
More actions: 更多操作
|
||||
Network warning style: 網路警告樣式
|
||||
New Remote: 新增遠端
|
||||
No limit configured: 尚未設定限制
|
||||
Non-Synchronising files: 不同步的檔案
|
||||
Normal Files: 一般檔案
|
||||
obsidianLiveSyncSettingTab:
|
||||
btnApply: 套用
|
||||
btnDisable: 停用
|
||||
btnNext: 下一步
|
||||
buttonNext: 下一步
|
||||
defaultLanguage: 預設語言
|
||||
labelDisabled: "⏹️ : 已停用"
|
||||
labelEnabled: "🔁 : 已啟用"
|
||||
logConfiguredDisabled: 已設定的同步模式:已停用
|
||||
logConfiguredLiveSync: 已設定的同步模式:LiveSync
|
||||
logConfiguredPeriodic: 已設定的同步模式:定期同步
|
||||
logSelectAnyPreset: 請選擇任一預設項目。
|
||||
msgConfigCheckFailed: 設定檢查失敗。仍要繼續嗎?
|
||||
msgEnableEncryptionRecommendation: 我們建議啟用端對端加密與路徑混淆。你確定要在未加密的情況下繼續嗎?
|
||||
msgFetchConfigFromRemote: 要從遠端伺服器抓取設定嗎?
|
||||
msgGenerateSetupURI: 全部完成!要產生 Setup URI 以便設定其他裝置嗎?
|
||||
msgInvalidPassphrase: 你的加密密語可能無效。你確定要繼續嗎?
|
||||
msgSelectAndApplyPreset: 請選擇並套用任一預設項目以完成精靈。
|
||||
nameDisableHiddenFileSync: 停用隱藏檔案同步
|
||||
nameEnableHiddenFileSync: 啟用隱藏檔案同步
|
||||
nameHiddenFileSynchronization: 隱藏檔案同步
|
||||
optionDisableAllAutomatic: 停用所有自動同步
|
||||
optionLiveSync: LiveSync 同步
|
||||
optionOnEvents: 事件觸發時
|
||||
optionPeriodicAndEvents: 定期與事件觸發
|
||||
optionPeriodicWithBatch: 定期(批次)
|
||||
titleAppearance: 外觀
|
||||
titleConflictResolution: 衝突處理
|
||||
titleCongratulations: 恭喜!
|
||||
titleCouchDB: CouchDB 伺服器
|
||||
titleDeletionPropagation: 刪除傳播
|
||||
titleEncryptionNotEnabled: 尚未啟用加密
|
||||
titleEncryptionPassphraseInvalid: 加密密語無效
|
||||
titleFetchConfig: 抓取設定
|
||||
titleHiddenFiles: 隱藏檔案
|
||||
titleLogging: 記錄
|
||||
titleMinioS3R2: MinIO、S3、R2
|
||||
titleNotification: 通知
|
||||
titleRemoteConfigCheckFailed: 遠端設定檢查失敗
|
||||
titleRemoteServer: 遠端伺服器
|
||||
titleSynchronizationMethod: 同步方式
|
||||
titleSynchronizationPreset: 同步預設
|
||||
titleSyncSettingsViaMarkdown: 透過 Markdown 同步設定
|
||||
titleUpdateThinning: 更新精簡
|
||||
Ok: 確定
|
||||
Old Algorithm: 舊演算法
|
||||
Older fallback (Slow, W/O WebAssembly): 舊版回退(較慢,無 WebAssembly)
|
||||
Overwrite patterns: 覆寫模式
|
||||
Overwrite remote: 覆寫遠端
|
||||
Overwrite remote with local DB and passphrase.: 使用本機資料庫與密語覆寫遠端。
|
||||
Overwrite Server Data with This Device's Files: 以此裝置的檔案覆寫伺服器資料
|
||||
paneMaintenance:
|
||||
markDeviceResolvedAfterBackup: 請在完成備份後將此裝置標記為已處理。
|
||||
remoteLockedAndDeviceNotAccepted: 遠端資料庫已鎖定,且此裝置尚未被接受。
|
||||
remoteLockedResolvedDevice: 遠端資料庫已鎖定,但此裝置已被接受。
|
||||
unlockDatabaseReady: 現在可以解鎖資料庫。
|
||||
Paste a connection string: 貼上連線字串
|
||||
Patterns to match files for overwriting instead of merging: 用於匹配需覆寫而非合併檔案的模式
|
||||
Patterns to match files for syncing: 用於匹配同步檔案的模式
|
||||
Peer-to-Peer Synchronisation: 點對點同步
|
||||
Perform: 執行
|
||||
Perform cleanup: 執行清理
|
||||
Perform Garbage Collection: 執行垃圾回收
|
||||
Perform Garbage Collection to remove unused chunks and reduce database size.: 執行垃圾回收以移除未使用的 chunks 並減少資料庫大小。
|
||||
Pick a file to resolve conflict: 選擇要解決衝突的檔案
|
||||
Please set this device name: 請設定此裝置名稱
|
||||
PureJS fallback (Fast, W/O WebAssembly): PureJS 回退(快速,無 WebAssembly)
|
||||
Purge all download/upload cache.: 清除所有下載/上傳快取。
|
||||
Purge all journal counter: 清除所有日誌計數器
|
||||
Rebuild local and remote database with local files.: 以本機檔案重建本機與遠端資料庫。
|
||||
Rebuilding Operations (Remote Only): 重建作業(僅遠端)
|
||||
Recreate all: 全部重建
|
||||
Recreate missing chunks for all files: 為所有檔案重建遺失的 chunks
|
||||
Remediation: 修復設定
|
||||
Remediation Setting Changed: 修復設定已變更
|
||||
Remote Database Tweak (In sunset): 遠端資料庫調校(即將淘汰)
|
||||
Remote Databases: 遠端資料庫
|
||||
Remote name: 遠端名稱
|
||||
Rename: 重新命名
|
||||
Resend: 重新傳送
|
||||
Resend all chunks to the remote.: 將所有 chunks 重新傳送到遠端。
|
||||
Reset: 重設
|
||||
Reset all: 全部重設
|
||||
Reset all journal counter: 重設所有日誌計數器
|
||||
Reset journal received history: 重設日誌接收歷史
|
||||
Reset journal sent history: 重設日誌傳送歷史
|
||||
Reset received: 重設接收紀錄
|
||||
Reset sent history: 重設傳送歷史
|
||||
Reset Synchronisation information: 重設同步資訊
|
||||
Reset Synchronisation on This Device: 重設此裝置上的同步
|
||||
Resolve All: 全部處理
|
||||
Resolve all conflicted files: 解決所有衝突檔案
|
||||
Resolve All conflicted files by the newer one: 將所有衝突檔案統一為較新的版本
|
||||
"Resolve all conflicted files by the newer one. Caution: This will overwrite the older one, and cannot resurrect the overwritten one.": 將所有衝突檔案統一保留較新的版本。注意:這會覆寫較舊的版本,且被覆寫的內容無法復原。
|
||||
Restart Now: 立即重新啟動
|
||||
Restore or reconstruct local database from remote.: 從遠端還原或重建本機資料庫。
|
||||
Schedule and Restart: 排程後重新啟動
|
||||
Scram!: 緊急處置
|
||||
Select the database adapter to use.: 選擇要使用的資料庫適配器。
|
||||
Send: 傳送
|
||||
Send chunks: 傳送 chunks
|
||||
Setting:
|
||||
GenerateKeyPair:
|
||||
Desc: |-
|
||||
我們已產生新的金鑰對!
|
||||
|
||||
注意:此金鑰對之後將不會再次顯示。請務必妥善保存;若遺失,必須重新產生新的金鑰對。
|
||||
注意 2:公鑰採用 spki 格式,私鑰採用 pkcs8 格式。為了方便複製,公鑰中的換行會轉換為 `\n`。
|
||||
注意 3:公鑰應設定在遠端資料庫中,私鑰則應設定在本機裝置上。
|
||||
|
||||
>[!僅供本人查看]-
|
||||
> <div class="sls-keypair">
|
||||
>
|
||||
> ### 公鑰
|
||||
> ```
|
||||
${public_key}
|
||||
> ```
|
||||
>
|
||||
> ### 私鑰
|
||||
> ```
|
||||
${private_key}
|
||||
> ```
|
||||
>
|
||||
> </div>
|
||||
|
||||
>[!便於整段複製]-
|
||||
>
|
||||
> <div class="sls-keypair">
|
||||
>
|
||||
> ```
|
||||
${public_key}
|
||||
${private_key}
|
||||
> ```
|
||||
>
|
||||
> </div>
|
||||
Title: 已產生新的金鑰對!
|
||||
Show full banner: 顯示完整橫幅
|
||||
Show icon only: 僅顯示圖示
|
||||
Show status icon instead of file warnings banner: 以狀態圖示取代檔案警告橫幅
|
||||
Switch to IDB: 切換至 IDB
|
||||
Switch to IndexedDB: 切換至 IndexedDB
|
||||
Synchronising files: 同步中的檔案
|
||||
Syncing: 同步中
|
||||
Target patterns: 目標模式
|
||||
This will recreate chunks for all files. If there were missing chunks, this may fix the errors.: 這會為所有檔案重新建立 chunks。若先前有遺失的 chunks,這可能修復相關錯誤。
|
||||
Verify all: 全部驗證
|
||||
Verify and repair all files: 驗證並修復所有檔案
|
||||
Reduces storage space by discarding all non-latest revisions. This requires the same amount of free space on the remote server and the local client.:
|
||||
透過捨棄所有非最新版本來減少儲存空間占用。執行此操作時,遠端伺服器與本機用戶端都需要具備相同數量的可用空間。
|
||||
Run Doctor: 執行診斷
|
||||
Scan for Broken files: 掃描損壞檔案
|
||||
Prepare the 'report' to create an issue: 準備建立 Issue 用的「報告」
|
||||
Copy Report to clipboard: 將報告複製到剪貼簿
|
||||
Analyse database usage: 分析資料庫使用情況
|
||||
Analyse database usage and generate a TSV report for diagnosis yourself. You can paste the generated report with any spreadsheet you like.:
|
||||
分析資料庫使用情況並產生 TSV 報告,方便你自行診斷。你可以將產生的報告貼到任何慣用的試算表中查看。
|
||||
Rerun Onboarding Wizard: 重新執行導覽精靈
|
||||
Rerun the onboarding wizard to set up Self-hosted LiveSync again.: 重新執行導覽精靈以再次設定 Self-hosted LiveSync。
|
||||
Rerun Wizard: 重新執行精靈
|
||||
Reset notification threshold and check the remote database usage: 重設通知閾值並檢查遠端資料庫使用情況
|
||||
Reset the remote storage size threshold and check the remote storage size again.: 重設遠端儲存空間大小閾值,並再次檢查遠端儲存空間大小。
|
||||
Document History: 文件歷程
|
||||
File to view History: 要檢視歷程的檔案
|
||||
Pick a file to show history: 選擇要顯示歷程的檔案
|
||||
Recovery and Repair: 修復與修補
|
||||
Database -> Storage: 資料庫 -> 儲存空間
|
||||
Storage -> Database: 儲存空間 -> 資料庫
|
||||
Show history: 顯示歷程
|
||||
Restarting Obsidian is strongly recommended. Until restart, some changes may not take effect, and display may be inconsistent. Are you sure to restart now?: 強烈建議重新啟動 Obsidian。在重新啟動之前,部分變更可能尚未生效,顯示也可能不一致。你確定要現在重新啟動嗎?
|
||||
The IndexedDB adapter often offers superior performance in certain scenarios, but it has been found to cause memory leaks when used with LiveSync mode. When using LiveSync mode, please use IDB adapter instead.: IndexedDB 適配器在某些情況下通常能提供較佳效能,但在 LiveSync 模式下已發現可能導致記憶體洩漏。使用 LiveSync 模式時,請改用 IDB 適配器。
|
||||
Scram Switches: 緊急處置開關
|
||||
Minimum interval for syncing: 同步最小間隔
|
||||
The minimum interval for automatic synchronisation on event.: 事件觸發自動同步的最小間隔。
|
||||
xxhash32 (Fast but less collision resistance): xxhash32(速度快,但抗碰撞能力較弱)
|
||||
xxhash64 (Fastest): xxhash64(最快)
|
||||
"Welcome to Self-hosted LiveSync": "歡迎使用 Self-hosted LiveSync"
|
||||
"We will now guide you through a few questions to simplify the synchronisation setup.": "接下來我們會透過幾個問題,引導你更輕鬆地完成同步設定。"
|
||||
"First, please select the option that best describes your current situation.": "首先,請選擇最符合你目前情況的選項。"
|
||||
"I am setting this up for the first time": "我是第一次進行設定"
|
||||
"(Select this if you are configuring this device as the first synchronisation device.) This option is suitable if you are new to LiveSync and want to set it up from scratch.": "(如果你正在將此裝置設定為第一台同步裝置,請選擇此項。)此選項適合初次使用 LiveSync,並希望從頭開始設定的使用者。"
|
||||
"I am adding a device to an existing synchronisation setup": "我要將裝置加入既有同步設定"
|
||||
"(Select this if you are already using synchronisation on another computer or smartphone.) This option is suitable if you are new to LiveSync and want to set it up from scratch.": "(如果你已經在另一台電腦或手機上使用同步,請選擇此項。)此選項適合將目前裝置加入既有 LiveSync 設定的使用者。"
|
||||
"Yes, I want to set up a new synchronisation": "是的,我要設定新的同步"
|
||||
"Yes, I want to add this device to my existing synchronisation": "是的,我要把這台裝置加入既有同步"
|
||||
"No, please take me back": "不,返回上一步"
|
||||
"Device Setup Method": "裝置設定方式"
|
||||
"You are adding this device to an existing synchronisation setup.": "你正在將此裝置加入既有同步設定中。"
|
||||
"Please select a method to import the settings from another device.": "請選擇一種從其他裝置匯入設定的方法。"
|
||||
"Use a Setup URI (Recommended)": "使用 Setup URI(推薦)"
|
||||
"Paste the Setup URI generated from one of your active devices.": "貼上從一台已在使用裝置上產生的 Setup URI。"
|
||||
"Scan a QR Code (Recommended for mobile)": "掃描 QR Code(行動裝置推薦)"
|
||||
"Scan the QR code displayed on an active device using this device's camera.": "使用目前裝置的相機掃描另一台已在使用裝置上顯示的 QR Code。"
|
||||
"Enter the server information manually": "手動輸入伺服器資訊"
|
||||
"Configure the same server information as your other devices again, manually, very advanced users only.": "手動重新輸入與其他裝置相同的伺服器資訊。僅適合進階使用者。"
|
||||
"Proceed with Setup URI": "繼續使用 Setup URI"
|
||||
"I know my server details, let me enter them": "我知道伺服器資訊,讓我手動輸入"
|
||||
"Please select an option to proceed": "請選擇一個選項以繼續"
|
||||
"Connection Method": "連線方式"
|
||||
"We will now proceed with the server configuration.": "接下來將繼續進行伺服器設定。"
|
||||
"How would you like to configure the connection to your server?": "你希望如何設定與伺服器的連線?"
|
||||
"A Setup URI is a single string of text containing your server address and authentication details. Using a URI, if one was generated by your server installation script, provides a simple and secure configuration.": "Setup URI 是一段包含伺服器位址與驗證資訊的文字。如果伺服器安裝腳本已經產生 URI,使用它可以更簡單且更安全地完成設定。"
|
||||
"This is an advanced option for users who do not have a URI or who wish to configure detailed settings.": "這是面向沒有 URI 或希望手動設定詳細參數的進階選項。"
|
||||
"Enter Server Information": "輸入伺服器資訊"
|
||||
"Please select the type of server to which you are connecting.": "請選擇你要連線的伺服器類型。"
|
||||
"Continue to CouchDB setup": "繼續進行 CouchDB 設定"
|
||||
"Continue to S3/MinIO/R2 setup": "繼續進行 S3/MinIO/R2 設定"
|
||||
"Continue to Peer-to-Peer only setup": "繼續進行僅 Peer-to-Peer 設定"
|
||||
"This is the most suitable synchronisation method for the design. All functions are available. You must have set up a CouchDB instance.": "這是最符合目前設計的同步方式,所有功能皆可使用。你需要事先部署好 CouchDB 實例。"
|
||||
"S3/MinIO/R2 Object Storage": "S3/MinIO/R2 物件儲存"
|
||||
"Synchronisation utilising journal files. You must have set up an S3/MinIO/R2 compatible object storage.": "透過日誌檔進行同步。你需要事先部署好相容 S3/MinIO/R2 的物件儲存服務。"
|
||||
"Peer-to-Peer only": "僅 Peer-to-Peer"
|
||||
"This feature enables direct synchronisation between devices. No server is required, but both devices must be online at the same time for synchronisation to occur, and some features may be limited. Internet connection is only required to signalling (detecting peers) and not for data transfer.": "此功能可在裝置之間直接同步,無需伺服器;但同步時兩台裝置必須同時在線,且部分功能可能受限。網際網路連線僅用於訊號交換(偵測對端),不用於資料傳輸。"
|
||||
Setup:
|
||||
RemoteE2EE:
|
||||
Title: 端對端加密
|
||||
Guidance: 請設定你的端對端加密選項。
|
||||
LabelEncrypt: 端對端加密
|
||||
PlaceholderPassphrase: 輸入你的密語
|
||||
StronglyRecommendedTitle: 強烈建議
|
||||
StronglyRecommendedLine1: 啟用端對端加密後,資料會先在你的裝置上完成加密,再傳送到遠端伺服器。這表示即使有人取得伺服器存取權,沒有密語也無法讀取你的資料。請務必記住你的密語,因為其他裝置在解密資料時也需要它。
|
||||
StronglyRecommendedLine2: 另外請注意,即使你目前使用的是 Peer-to-Peer 同步,日後若切換到其他方式並連線到遠端伺服器時,也會沿用這組設定。
|
||||
MultiDestinationWarning: 即使連線到多個同步目標,這項設定也必須保持一致。
|
||||
LabelObfuscateProperties: 混淆屬性
|
||||
ObfuscatePropertiesDesc: 混淆屬性(例如檔案路徑、大小、建立時間與修改時間)可以額外增加一層安全保護,讓遠端伺服器上的檔案與資料夾結構及名稱更難被辨識。這有助於保護你的隱私,也讓未授權使用者更難推測你的資料資訊。
|
||||
AdvancedTitle: 進階
|
||||
LabelEncryptionAlgorithm: 加密演算法
|
||||
DefaultAlgorithmDesc: 在大多數情況下,建議維持使用預設演算法(${algorithm})。只有當你現有的 Vault 是以不同格式加密時,才需要調整這項設定。
|
||||
AlgorithmWarning: 變更加密演算法後,先前以其他演算法加密的資料將無法再存取。請確認所有裝置都設定為使用相同演算法,以維持對資料的存取能力。
|
||||
PassphraseValidationLine1: 請注意,端對端加密的密語要到同步程序實際開始時才會進行驗證。這是為了保護你資料而設計的安全措施。
|
||||
PassphraseValidationLine2: 因此,在手動設定伺服器資訊時請務必格外小心。如果輸入了錯誤的密語,伺服器上的資料將會損毀。請理解這是系統的預期行為。
|
||||
ButtonProceed: 繼續
|
||||
ButtonCancel: 取消
|
||||
UseSetupURI:
|
||||
Title: 輸入 Setup URI
|
||||
GuidanceLine1: 請輸入在伺服器安裝期間或其他裝置上產生的 Setup URI,以及 Vault 的密語。
|
||||
GuidanceLine2: 你可以在命令面板中執行「將設定複製為新的 Setup URI」命令來產生新的 Setup URI。
|
||||
LabelSetupURI: Setup URI
|
||||
ValidInfo: Setup URI 有效,可以使用。
|
||||
InvalidInfo: Setup URI 無效,請檢查後再試一次。
|
||||
LabelPassphrase: Vault 密語
|
||||
PlaceholderPassphrase: 輸入 Vault 密語
|
||||
ErrorPassphraseRequired: 請輸入 Vault 的密語。
|
||||
ErrorFailedToParse: 無法解析 Setup URI,請檢查 URI 與密語。
|
||||
ButtonProceed: 測試設定並繼續
|
||||
ButtonCancel: 取消
|
||||
ScanQRCode:
|
||||
Title: 掃描 QR 碼
|
||||
Guidance: 請依照以下步驟,從現有裝置匯入設定。
|
||||
Step1: 在這台裝置上,請保持此 Vault 開啟。
|
||||
Step2: 在來源裝置上開啟 Obsidian。
|
||||
Step3: 在來源裝置上,從命令面板執行「將設定顯示為 QR 碼」命令。
|
||||
Step4: 在這台裝置上切換到相機 App,或使用 QR 碼掃描器掃描顯示出的 QR 碼。
|
||||
ButtonClose: 關閉此對話框
|
||||
"Please enable 'Compute revisions for chunks' in settings to use Garbage Collection.": 若要使用垃圾回收,請在設定中啟用「Compute revisions for chunks」。
|
||||
"Please disable 'Read chunks online' in settings to use Garbage Collection.": 若要使用垃圾回收,請在設定中停用「Read chunks online」。
|
||||
"Setup URI dialog cancelled.": Setup URI 對話框已取消。
|
||||
"Please select 'Cancel' explicitly to cancel this operation.": 若要取消此操作,請明確選擇「取消」。
|
||||
"Failed to connect to remote for compaction.": 無法連線到遠端資料庫以執行壓縮。
|
||||
"Failed to connect to remote for compaction. ${reason}": 無法連線到遠端資料庫以執行壓縮。${reason}
|
||||
"Compaction in progress on remote database...": 正在遠端資料庫上執行壓縮...
|
||||
"Compaction on remote database timed out.": 遠端資料庫壓縮逾時。
|
||||
"Compaction on remote database completed successfully.": 遠端資料庫壓縮已成功完成。
|
||||
"Compaction on remote database failed.": 遠端資料庫壓縮失敗。
|
||||
"Failed to start one-shot replication before Garbage Collection. Garbage Collection Cancelled.": 無法在垃圾回收前啟動一次性複寫。垃圾回收已取消。
|
||||
"Cancel Garbage Collection": 取消垃圾回收
|
||||
"No connected device information found. Cancelling Garbage Collection.": 找不到已連線裝置的資訊。正在取消垃圾回收。
|
||||
"The following accepted nodes are missing its node information:\n- ${missingNodes}\n\nThis indicates that they have not been connected for some time or have been left on an older version.\nIt is preferable to update all devices if possible. If you have any devices that are no longer in use, you can clear all accepted nodes by locking the remote once.": |-
|
||||
以下已接受節點缺少節點資訊:
|
||||
- ${missingNodes}
|
||||
|
||||
這表示它們已有一段時間未連線,或仍停留在較舊版本。
|
||||
如有可能,建議先更新所有裝置。如果有已不再使用的裝置,可以先鎖定一次遠端端以清除全部已接受節點。
|
||||
"Ignore and Proceed": 忽略並繼續
|
||||
"Node Information Missing": 節點資訊缺失
|
||||
"Garbage Collection cancelled by user.": 使用者已取消垃圾回收。
|
||||
"Proceeding with Garbage Collection, ignoring missing nodes.": 正在繼續執行垃圾回收,並忽略缺失節點。
|
||||
"Proceed Garbage Collection": 繼續執行垃圾回收
|
||||
"> [!INFO]- The connected devices have been detected as follows:\n${devices}": |-
|
||||
> [!INFO]- 已偵測到以下已連線裝置:
|
||||
${devices}
|
||||
"Device": 裝置
|
||||
"Node ID": 節點 ID
|
||||
"Obsidian version": Obsidian 版本
|
||||
"Plug-in version": 外掛版本
|
||||
"Progress": 進度
|
||||
"Some devices have differing progress values (max: ${maxProgress}, min: ${minProgress}).\nThis may indicate that some devices have not completed synchronisation, which could lead to conflicts. Strongly recommend confirming that all devices are synchronised before proceeding.": |-
|
||||
某些裝置的進度值不同(最大:${maxProgress},最小:${minProgress})。
|
||||
這可能表示某些裝置尚未完成同步,進而可能導致衝突。強烈建議在繼續之前先確認所有裝置都已同步。
|
||||
"All devices have the same progress value (${progress}). Your devices seem to be synchronised. And be able to proceed with Garbage Collection.": 所有裝置的進度值均相同(${progress})。看起來你的裝置已同步,可以繼續執行垃圾回收。
|
||||
"Garbage Collection Confirmation": 垃圾回收確認
|
||||
"Proceeding with Garbage Collection.": 正在執行垃圾回收。
|
||||
"Garbage Collection: Scanned ${scanned} / ~${docCount}": |-
|
||||
垃圾回收:已掃描 ${scanned} / ~${docCount}
|
||||
"Garbage Collection: Scanning completed. Total chunks: ${totalChunks}, Used chunks: ${usedChunks}": |-
|
||||
垃圾回收:掃描完成。總 chunks:${totalChunks},已使用 chunks:${usedChunks}
|
||||
"Garbage Collection: Found ${unusedChunks} unused chunks to delete.": |-
|
||||
垃圾回收:找到 ${unusedChunks} 個未使用的 chunks 可刪除。
|
||||
"Garbage Collection completed. Deleted chunks: ${deletedChunks} / ${totalChunks}. Time taken: ${seconds} seconds.": |-
|
||||
垃圾回收完成。已刪除 chunks:${deletedChunks} / ${totalChunks}。耗時:${seconds} 秒。
|
||||
"Failed to start replication after Garbage Collection.": 垃圾回收後無法啟動複寫。
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,20 @@
|
||||
import { ConnectionStringParser } from "@vrtmrz/livesync-commonlib/compat/common/ConnectionString";
|
||||
import {
|
||||
REMOTE_P2P,
|
||||
type ObsidianLiveSyncSettings,
|
||||
} from "@vrtmrz/livesync-commonlib/compat/common/types";
|
||||
|
||||
/** Returns whether the selected main remote represents the P2P-only setup. */
|
||||
export function isP2PMainRemote(settings: ObsidianLiveSyncSettings): boolean {
|
||||
if (settings.remoteType === REMOTE_P2P) return true;
|
||||
|
||||
const activeId = settings.activeConfigurationId?.trim();
|
||||
const activeConfiguration = activeId ? settings.remoteConfigurations?.[activeId] : undefined;
|
||||
if (!activeConfiguration) return false;
|
||||
|
||||
try {
|
||||
return ConnectionStringParser.parse(activeConfiguration.uri).type === "p2p";
|
||||
} catch {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,117 @@
|
||||
/**
|
||||
# Rosetta stone
|
||||
- To localise messages to your language, please write a translation to this file and submit a PR.
|
||||
- Please order languages in alphabetic order, if you write multiple items.
|
||||
|
||||
## Notice to ensure that your favours are not wasted.
|
||||
|
||||
If you plan to utilise machine translation engines to contribute translated resources,
|
||||
please ensure the engine's terms of service are compatible with our project's license.
|
||||
Your diligence in this matter helps maintain compliance and avoid potential licensing issues.
|
||||
Thank you for your consideration.
|
||||
|
||||
Usually, our projects (Self-hosted LiveSync and its families) are licensed under MIT License.
|
||||
To see details, please refer to the LICENSES file on each repository.
|
||||
|
||||
## How to internationalise untranslated items?
|
||||
1. Change the message literal to use `$msg`
|
||||
"Could not parse YAML" -> $msg('anyKey')
|
||||
2. Create `ls-debug` folder under the `.obsidian` folder of your vault.
|
||||
3. Run Self-hosted LiveSync in dev mode (npm run dev).
|
||||
4. You will get the `missing-translation-YYYY-MM-DD.jsonl` under `ls-debug`. Please copy and paste inside `allMessages` and write the translations.
|
||||
5. Send me the PR!
|
||||
*/
|
||||
|
||||
const LANG_DE = "de";
|
||||
const LANG_ES = "es";
|
||||
const LANG_FR = "fr";
|
||||
const LANG_HE = "he";
|
||||
const LANG_JA = "ja";
|
||||
const LANG_RU = "ru";
|
||||
const LANG_ZH = "zh";
|
||||
const LANG_KO = "ko";
|
||||
const LANG_ZH_TW = "zh-tw";
|
||||
const LANG_DEF = "def"; // Default language: English
|
||||
|
||||
// Also please order in alphabetic order except for the default language.
|
||||
|
||||
export const SUPPORTED_I18N_LANGS = [
|
||||
LANG_DEF,
|
||||
LANG_DE,
|
||||
LANG_ES,
|
||||
LANG_FR,
|
||||
LANG_HE,
|
||||
LANG_JA,
|
||||
LANG_KO,
|
||||
LANG_RU,
|
||||
LANG_ZH,
|
||||
LANG_ZH_TW,
|
||||
];
|
||||
|
||||
// Also this.
|
||||
export type I18N_LANGS =
|
||||
| typeof LANG_DEF // Default language: English
|
||||
| typeof LANG_DE
|
||||
| typeof LANG_ES
|
||||
| typeof LANG_FR
|
||||
| typeof LANG_HE
|
||||
| typeof LANG_JA
|
||||
| typeof LANG_KO
|
||||
| typeof LANG_RU
|
||||
| typeof LANG_ZH
|
||||
| typeof LANG_ZH_TW
|
||||
| "";
|
||||
|
||||
export type MESSAGE = { [key in I18N_LANGS]?: string };
|
||||
|
||||
import { Logger } from "octagonal-wheels/common/logger";
|
||||
import type { MessageKeys } from "./messages/combinedMessages.dev.ts";
|
||||
|
||||
export function expandKeywords<T extends Record<string, U>, U extends Record<string, string>>(
|
||||
message: T,
|
||||
lang: I18N_LANGS,
|
||||
recurseLimit = 10
|
||||
): T {
|
||||
if (recurseLimit <= 0) {
|
||||
Logger(
|
||||
`ExpandKeywords hit the recursion limit, returning the current state. but this is not expected. May recursive referenced.`
|
||||
);
|
||||
return message;
|
||||
}
|
||||
// const DEFAULT_ENGLISH = "en-GB"; //This is to balance the books with existing messages.
|
||||
// const langCode = (lang == "def" || lang == "") ? DEFAULT_ENGLISH : lang;
|
||||
|
||||
// Generate keywords from all messages
|
||||
// This can handles the case where the message itself contains a keyword:
|
||||
// - task:`Some procedure`
|
||||
// - check: `%{task} checking`
|
||||
// - checkfailed: `%{check} failed`
|
||||
// If in this case `checkfailed` may `Some procedure checking failed`.
|
||||
// And, it can compress the rosetta stone: the message table.
|
||||
const keywordMap = new Map<string, string>();
|
||||
for (const [key, value] of Object.entries(message)) {
|
||||
const messageValue = value[lang];
|
||||
if (typeof messageValue !== "string") continue;
|
||||
const normalizedKey = key.startsWith("K.") ? key.substring("K.".length) : key;
|
||||
keywordMap.set(`%{${normalizedKey}}`, messageValue);
|
||||
}
|
||||
|
||||
const ret = {
|
||||
...message,
|
||||
} as Record<string, Record<string, string>>;
|
||||
let isChanged = false;
|
||||
for (const key of Object.keys(message)) {
|
||||
if (!(lang in ret[key])) continue;
|
||||
if (!ret[key][lang].includes("%{")) continue;
|
||||
const replaced = ret[key][lang].replace(/%\{[^}]+\}/g, (token) => keywordMap.get(token) ?? token);
|
||||
if (replaced !== ret[key][lang]) {
|
||||
ret[key][lang] = replaced;
|
||||
isChanged = true;
|
||||
}
|
||||
}
|
||||
if (isChanged) return expandKeywords(ret, lang, recurseLimit--) as T;
|
||||
|
||||
return ret as T;
|
||||
}
|
||||
|
||||
export type AllMessageKeys = MessageKeys;
|
||||
+129
-5
@@ -1,6 +1,130 @@
|
||||
import { $msg } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import type { MessageTranslator } from "@vrtmrz/livesync-commonlib/context";
|
||||
// Avoid using Obsidian's native function for CLIs.
|
||||
import { getLanguage } from "@vrtmrz/livesync-commonlib/compat/common/coreEnvFunctions";
|
||||
import { englishMessageTranslator, type MessageTranslator } from "@vrtmrz/livesync-commonlib/context";
|
||||
import { LOG_KIND_WARNING, notice } from "octagonal-wheels/common/logger";
|
||||
import type { TaggedType } from "octagonal-wheels/common/types";
|
||||
import type { AllMessageKeys, I18N_LANGS } from "./rosetta";
|
||||
import { allMessages } from "./messages/combinedMessages.prod.ts";
|
||||
|
||||
/** Supplies the LiveSync language catalogue through the Commonlib host boundary. */
|
||||
export const translateLiveSyncMessage: MessageTranslator = (key, params) =>
|
||||
$msg(key as Parameters<typeof $msg>[0], params === undefined ? undefined : { ...params });
|
||||
const obsidianLangMap: Record<string, I18N_LANGS> = {
|
||||
de: "de",
|
||||
es: "es",
|
||||
ja: "ja",
|
||||
ko: "ko",
|
||||
ru: "ru",
|
||||
zh: "zh",
|
||||
"zh-cn": "zh",
|
||||
"zh-hans": "zh",
|
||||
"zh-tw": "zh-tw",
|
||||
"zh-hk": "zh-tw",
|
||||
"zh-mo": "zh-tw",
|
||||
"zh-hant": "zh-tw",
|
||||
};
|
||||
|
||||
function resolveLanguage(lang: I18N_LANGS): I18N_LANGS {
|
||||
if (lang !== "") return lang;
|
||||
const obsidianLanguage = getLanguage().toLowerCase();
|
||||
return obsidianLangMap[obsidianLanguage] ?? "def";
|
||||
}
|
||||
|
||||
export let currentLang: I18N_LANGS = resolveLanguage("");
|
||||
const missingTranslations = [] as string[];
|
||||
let __onMissingTranslations = (key: string) => notice(key, LOG_KIND_WARNING);
|
||||
const msgCache = new Map<string, string>();
|
||||
|
||||
export function getResolvedLang(lang: I18N_LANGS = currentLang): I18N_LANGS {
|
||||
return resolveLanguage(lang);
|
||||
}
|
||||
|
||||
export function isAutoDisplayLanguage(lang: I18N_LANGS): boolean {
|
||||
return lang === "";
|
||||
}
|
||||
|
||||
export function __getMissingTranslations() {
|
||||
return missingTranslations;
|
||||
}
|
||||
|
||||
export function __onMissingTranslation(callback: (key: string) => void) {
|
||||
__onMissingTranslations = callback;
|
||||
}
|
||||
|
||||
export function setLang(lang: I18N_LANGS) {
|
||||
const resolvedLang = resolveLanguage(lang);
|
||||
if (resolvedLang === currentLang) return;
|
||||
currentLang = resolvedLang;
|
||||
msgCache.clear();
|
||||
}
|
||||
|
||||
function _getMessage(key: string, lang: I18N_LANGS) {
|
||||
if (key.trim() == "") return key;
|
||||
|
||||
const msgs = allMessages[key] ?? undefined;
|
||||
const resolvedLang = resolveLanguage(lang);
|
||||
let msg = msgs?.[resolvedLang];
|
||||
|
||||
if (!msg) {
|
||||
if (missingTranslations.indexOf(key) === -1) {
|
||||
__onMissingTranslations(key);
|
||||
missingTranslations.push(key);
|
||||
}
|
||||
msg = msgs?.def;
|
||||
}
|
||||
return msg ?? key;
|
||||
}
|
||||
|
||||
function getMessage(key: string) {
|
||||
if (msgCache.has(key)) return msgCache.get(key) as string;
|
||||
const msg = _getMessage(key, currentLang);
|
||||
msgCache.set(key, msg);
|
||||
return msg;
|
||||
}
|
||||
|
||||
export function $t(message: string, lang?: I18N_LANGS) {
|
||||
if (lang !== undefined) {
|
||||
return _getMessage(message, lang);
|
||||
}
|
||||
return getMessage(message);
|
||||
}
|
||||
|
||||
export function translateIfAvailable(message: string, lang?: I18N_LANGS) {
|
||||
if (message.trim() == "" || allMessages[message] === undefined) return message;
|
||||
return $t(message, lang);
|
||||
}
|
||||
|
||||
function isLiveSyncMessageKey(key: string): key is AllMessageKeys {
|
||||
return key in allMessages;
|
||||
}
|
||||
|
||||
/**
|
||||
* TagFunction to Automatically translate.
|
||||
* @param strings
|
||||
* @param values
|
||||
* @returns
|
||||
*/
|
||||
export function $f(strings: TemplateStringsArray, ...values: string[]) {
|
||||
let result = "";
|
||||
for (let i = 0; i < values.length; i++) {
|
||||
result += getMessage(strings[i]) + values[i];
|
||||
}
|
||||
result += getMessage(strings[strings.length - 1]);
|
||||
return result;
|
||||
}
|
||||
|
||||
export function $msg<T extends AllMessageKeys>(
|
||||
key: T,
|
||||
params: Record<string, string> = {},
|
||||
lang?: I18N_LANGS
|
||||
): TaggedType<string, T> {
|
||||
let msg = $t(key, lang);
|
||||
for (const [placeholder, value] of Object.entries(params)) {
|
||||
const regex = new RegExp(`\\\${${placeholder}}`, "g");
|
||||
msg = msg.replace(regex, value);
|
||||
}
|
||||
return msg as TaggedType<string, T>;
|
||||
}
|
||||
|
||||
/** Supplies the LiveSync-owned language catalogue through the Commonlib host boundary. */
|
||||
export const translateLiveSyncMessage: MessageTranslator = (key, params) => {
|
||||
if (!isLiveSyncMessageKey(key)) return englishMessageTranslator(key, params);
|
||||
return $msg(key, params === undefined ? undefined : { ...params });
|
||||
};
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
import { afterEach, describe, expect, it } from "vitest";
|
||||
|
||||
import { englishMessageTranslator } from "@vrtmrz/livesync-commonlib/context";
|
||||
import { $msg, setLang, translateLiveSyncMessage } from "@/common/translation";
|
||||
import { SUPPORTED_I18N_LANGS } from "@/common/rosetta";
|
||||
|
||||
describe("LiveSync-owned translation catalogue", () => {
|
||||
afterEach(() => setLang("def"));
|
||||
|
||||
it("selects a translated language without delegating catalogue ownership to Commonlib", () => {
|
||||
setLang("es");
|
||||
|
||||
expect(translateLiveSyncMessage("moduleCheckRemoteSize.optionIncreaseLimit", { newMax: "800" })).toBe(
|
||||
"aumentar a 800MB"
|
||||
);
|
||||
expect(SUPPORTED_I18N_LANGS).toContain("es");
|
||||
});
|
||||
|
||||
it("retains typed placeholder substitution", () => {
|
||||
expect($msg("moduleCheckRemoteSize.optionIncreaseLimit", { newMax: "800" }, "def")).toBe("increase to 800MB");
|
||||
});
|
||||
|
||||
it("uses Commonlib's canonical English when the application catalogue has no translation", () => {
|
||||
setLang("es");
|
||||
|
||||
expect(translateLiveSyncMessage("Active Remote Type")).toBe(englishMessageTranslator("Active Remote Type"));
|
||||
});
|
||||
});
|
||||
@@ -73,7 +73,7 @@ import { ConflictResolveModal } from "@/modules/features/InteractiveConflictReso
|
||||
import { Semaphore } from "octagonal-wheels/concurrency/semaphore";
|
||||
import { EVENT_REQUEST_OPEN_PLUGIN_SYNC_DIALOG, eventHub } from "@/common/events.ts";
|
||||
import { PluginDialogModal } from "./PluginDialogModal.ts";
|
||||
import { $msg } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { $msg } from "@/common/translation";
|
||||
import type { InjectableServiceHub } from "@vrtmrz/livesync-commonlib/compat/services/implements/injectable/InjectableServiceHub";
|
||||
import type { LiveSyncCore } from "@/main.ts";
|
||||
import { LiveSyncError } from "@vrtmrz/livesync-commonlib/compat/common/LSError";
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
EVENT_P2P_REPLICATOR_STATUS,
|
||||
} from "@vrtmrz/livesync-commonlib/compat/replication/trystero/TrysteroReplicatorP2PServer";
|
||||
import type { P2PReplicatorStatus } from "@vrtmrz/livesync-commonlib/compat/replication/trystero/TrysteroReplicator";
|
||||
import { $msg as _msg } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { $msg as _msg } from "@/common/translation";
|
||||
import { SETTING_KEY_P2P_DEVICE_NAME } from "@vrtmrz/livesync-commonlib/compat/common/types";
|
||||
import { generateP2PRoomId } from "@vrtmrz/livesync-commonlib/compat/common/utils";
|
||||
import type { LiveSyncBaseCore } from "@/LiveSyncBaseCore";
|
||||
|
||||
@@ -11,7 +11,7 @@ import { type EntryDoc, type RemoteType } from "@vrtmrz/livesync-commonlib/compa
|
||||
import { scheduleTask } from "octagonal-wheels/concurrency/task";
|
||||
import { EVENT_FILE_SAVED, EVENT_SETTING_SAVED, eventHub } from "@/common/events";
|
||||
|
||||
import { $msg } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { $msg } from "@/common/translation";
|
||||
import type { LiveSyncCore } from "@/main";
|
||||
import { ReplicateResultProcessor } from "./ReplicateResultProcessor";
|
||||
import { UnresolvedErrorManager } from "@vrtmrz/livesync-commonlib/compat/services/base/UnresolvedErrorManager";
|
||||
|
||||
@@ -13,7 +13,7 @@ import {
|
||||
} from "@vrtmrz/livesync-commonlib/compat/common/types";
|
||||
import { escapeMarkdownValue } from "@vrtmrz/livesync-commonlib/compat/common/utils";
|
||||
import { AbstractModule } from "@/modules/AbstractModule.ts";
|
||||
import { $msg } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { $msg } from "@/common/translation";
|
||||
import type { InjectableServiceHub } from "@vrtmrz/livesync-commonlib/compat/services/implements/injectable/InjectableServiceHub";
|
||||
import type { LiveSyncCore } from "@/main.ts";
|
||||
import { REMOTE_P2P } from "@vrtmrz/livesync-commonlib/compat/common/models/setting.const";
|
||||
|
||||
@@ -13,7 +13,7 @@ import {
|
||||
eventHub,
|
||||
} from "@/common/events.ts";
|
||||
import { AbstractModule } from "@/modules/AbstractModule.ts";
|
||||
import { $msg } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { $msg } from "@/common/translation";
|
||||
import { performDoctorConsultation, RebuildOptions } from "@vrtmrz/livesync-commonlib/compat/common/configForDoc";
|
||||
import { isValidPath } from "@/common/utils.ts";
|
||||
import { isMetaEntry } from "@vrtmrz/livesync-commonlib/compat/common/types";
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { type Editor, type MarkdownFileInfo, type MarkdownView } from "@/deps.ts";
|
||||
import { addIcon } from "@/deps.ts";
|
||||
import { type FilePathWithPrefix } from "@vrtmrz/livesync-commonlib/compat/common/types";
|
||||
import { $msg } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { $msg } from "@/common/translation";
|
||||
import type { LiveSyncCore } from "@/main.ts";
|
||||
import { AbstractModule } from "@/modules/AbstractModule.ts";
|
||||
// Obsidian specific menu commands.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { delay } from "octagonal-wheels/promises";
|
||||
import { __onMissingTranslation } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { __onMissingTranslation } from "@/common/translation";
|
||||
import { AbstractObsidianModule } from "@/modules/AbstractObsidianModule.ts";
|
||||
import { LOG_LEVEL_VERBOSE } from "octagonal-wheels/common/logger";
|
||||
// import { enableTestFunction } from "./devUtil/testUtils.ts";
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
import { logMessages } from "@vrtmrz/livesync-commonlib/compat/mock_and_interop/stores";
|
||||
import { reactive, type ReactiveInstance } from "octagonal-wheels/dataobject/reactive";
|
||||
import { Logger } from "@vrtmrz/livesync-commonlib/compat/common/logger";
|
||||
import { $msg as msg, currentLang as lang } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { $msg as msg, currentLang as lang } from "@/common/translation";
|
||||
import { compatGlobal } from "@vrtmrz/livesync-commonlib/compat/common/coreEnvFunctions";
|
||||
|
||||
let unsubscribe: () => void;
|
||||
|
||||
@@ -2,7 +2,7 @@ import { WorkspaceLeaf } from "@/deps.ts";
|
||||
import LogPaneComponent from "./LogPane.svelte";
|
||||
import type ObsidianLiveSyncPlugin from "@/main.ts";
|
||||
import { SvelteItemView } from "@/common/SvelteItemView.ts";
|
||||
import { $msg } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { $msg } from "@/common/translation";
|
||||
import { mount } from "svelte";
|
||||
export const VIEW_TYPE_LOG = "log-log";
|
||||
//Log view
|
||||
|
||||
@@ -29,7 +29,7 @@ import { addIcon, debounce, normalizePath, Notice, stringifyYaml, type Workspace
|
||||
import { LOG_LEVEL_NOTICE, setGlobalLogFunction } from "octagonal-wheels/common/logger";
|
||||
import { LogPaneView, VIEW_TYPE_LOG } from "./Log/LogPaneView.ts";
|
||||
import { serialized } from "octagonal-wheels/concurrency/lock";
|
||||
import { $msg } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { $msg } from "@/common/translation";
|
||||
import { P2PLogCollector } from "@vrtmrz/livesync-commonlib/compat/replication/trystero/P2PLogCollector";
|
||||
import {
|
||||
REMOTE_REQUEST_ACTIVITY_MINIMUM_VISIBLE_MS,
|
||||
|
||||
@@ -18,7 +18,7 @@ import {
|
||||
type AllNumericItemKey,
|
||||
type AllBooleanItemKey,
|
||||
} from "./settingConstants.ts";
|
||||
import { $msg } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { $msg } from "@/common/translation";
|
||||
import { wrapMemo, type AutoWireOption, type OnUpdateResult } from "./SettingPane.ts";
|
||||
|
||||
export class LiveSyncSetting extends Setting {
|
||||
|
||||
@@ -30,7 +30,7 @@ import {
|
||||
type OnDialogSettings,
|
||||
getConfName,
|
||||
} from "./settingConstants.ts";
|
||||
import { $msg } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { $msg } from "@/common/translation";
|
||||
import { LiveSyncSetting as Setting } from "./LiveSyncSetting.ts";
|
||||
import { fireAndForget, yieldNextAnimationFrame } from "octagonal-wheels/promises";
|
||||
import { EVENT_REQUEST_RELOAD_SETTING_TAB, eventHub } from "@/common/events.ts";
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { $msg, $t } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { SUPPORTED_I18N_LANGS, type I18N_LANGS } from "@vrtmrz/livesync-commonlib/compat/common/rosetta";
|
||||
import { $msg, $t } from "@/common/translation";
|
||||
import { SUPPORTED_I18N_LANGS, type I18N_LANGS } from "@/common/rosetta";
|
||||
import { LiveSyncSetting as Setting } from "./LiveSyncSetting.ts";
|
||||
import type { ObsidianLiveSyncSettingTab } from "./ObsidianLiveSyncSettingTab.ts";
|
||||
import type { PageFunctions } from "./SettingPane.ts";
|
||||
|
||||
@@ -11,7 +11,7 @@ import {
|
||||
import { createBlob, getFileRegExp, isDocContentSame, readAsBlob } from "@vrtmrz/livesync-commonlib/compat/common/utils";
|
||||
import { Logger } from "@vrtmrz/livesync-commonlib/compat/common/logger";
|
||||
import { addPrefix, shouldBeIgnored, stripAllPrefixes } from "@vrtmrz/livesync-commonlib/compat/string_and_binary/path";
|
||||
import { $msg } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { $msg } from "@/common/translation";
|
||||
import { Semaphore } from "octagonal-wheels/concurrency/semaphore";
|
||||
import { LiveSyncSetting as Setting } from "./LiveSyncSetting.ts";
|
||||
import {
|
||||
|
||||
@@ -8,7 +8,7 @@ import {
|
||||
LOG_LEVEL_VERBOSE,
|
||||
} from "@vrtmrz/livesync-commonlib/compat/common/types";
|
||||
import { Menu, type ButtonComponent } from "@/deps.ts";
|
||||
import { $msg } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { $msg } from "@/common/translation";
|
||||
import { LiveSyncSetting as Setting } from "./LiveSyncSetting.ts";
|
||||
import type { ObsidianLiveSyncSettingTab } from "./ObsidianLiveSyncSettingTab.ts";
|
||||
import type { PageFunctions } from "./SettingPane.ts";
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { MarkdownRenderer } from "@/deps.ts";
|
||||
import { $msg } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { $msg } from "@/common/translation";
|
||||
import { LiveSyncSetting as Setting } from "./LiveSyncSetting.ts";
|
||||
import { fireAndForget } from "octagonal-wheels/promises";
|
||||
import {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { type ObsidianLiveSyncSettings, LOG_LEVEL_NOTICE, REMOTE_COUCHDB, LEVEL_ADVANCED } from "@vrtmrz/livesync-commonlib/compat/common/types";
|
||||
import { Logger } from "@vrtmrz/livesync-commonlib/compat/common/logger";
|
||||
import { $msg } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { $msg } from "@/common/translation";
|
||||
import { LiveSyncSetting as Setting } from "./LiveSyncSetting.ts";
|
||||
import { EVENT_REQUEST_COPY_SETUP_URI, eventHub } from "@/common/events.ts";
|
||||
import type { ObsidianLiveSyncSettingTab } from "./ObsidianLiveSyncSettingTab.ts";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { $msg } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { $msg } from "@/common/translation";
|
||||
import { LEVEL_ADVANCED, LEVEL_EDGE_CASE, LEVEL_POWER_USER, type ConfigLevel } from "@vrtmrz/livesync-commonlib/compat/common/types";
|
||||
import type { AllSettingItemKey, AllSettings } from "./settingConstants";
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { requestToCouchDBWithCredentials } from "@/common/utils";
|
||||
import { $msg } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { $msg } from "@/common/translation";
|
||||
import {
|
||||
LOG_LEVEL_INFO,
|
||||
LOG_LEVEL_NOTICE,
|
||||
|
||||
@@ -43,6 +43,7 @@ import {
|
||||
applySettingsAndFetchOnActivation,
|
||||
applySettingsWithScheduledInitialisation,
|
||||
} from "@/serviceFeatures/setupObsidian/setupActivationLifecycle.ts";
|
||||
import { isP2PMainRemote } from "@/common/remoteConfiguration.ts";
|
||||
|
||||
function copySettingsForRemoteProfileUpdate(settings: ObsidianLiveSyncSettings): ObsidianLiveSyncSettings {
|
||||
return {
|
||||
@@ -368,10 +369,7 @@ export class SetupManager extends AbstractModule {
|
||||
userMode = UserMode.ExistingUser;
|
||||
} else if (userModeResult === "compatible-existing-user") {
|
||||
extra();
|
||||
const applied = await this.applySettingAndScheduleFetchOnActivation(
|
||||
newConf,
|
||||
UserMode.ExistingUser
|
||||
);
|
||||
const applied = await this.applySettingAndScheduleFetchOnActivation(newConf, UserMode.ExistingUser);
|
||||
if (applied) this._log("Settings from wizard applied.", LOG_LEVEL_NOTICE);
|
||||
return applied;
|
||||
} else if (userModeResult === "cancelled") {
|
||||
@@ -382,8 +380,9 @@ export class SetupManager extends AbstractModule {
|
||||
}
|
||||
const component = userMode === UserMode.NewUser ? OutroNewUser : OutroExistingUser;
|
||||
const confirm = await this.dialogManager.openWithExplicitCancel<
|
||||
OutroNewUserResultType | OutroExistingUserResultType
|
||||
>(component);
|
||||
OutroNewUserResultType | OutroExistingUserResultType,
|
||||
{ isP2P: boolean }
|
||||
>(component, { isP2P: isP2PMainRemote(newConf) });
|
||||
if (confirm === "cancelled") {
|
||||
this._log("User cancelled applying settings from wizard..", LOG_LEVEL_NOTICE);
|
||||
return false;
|
||||
|
||||
@@ -2,6 +2,7 @@ import { beforeEach, describe, expect, it, vi } from "vitest";
|
||||
import {
|
||||
DEFAULT_SETTINGS,
|
||||
REMOTE_COUCHDB,
|
||||
REMOTE_P2P,
|
||||
type ObsidianLiveSyncSettings,
|
||||
} from "@vrtmrz/livesync-commonlib/compat/common/types";
|
||||
import { SettingService } from "@vrtmrz/livesync-commonlib/compat/services/base/SettingService";
|
||||
@@ -194,6 +195,37 @@ describe("SetupManager", () => {
|
||||
expect(setting.currentSettings().isConfigured).toBe(true);
|
||||
});
|
||||
|
||||
it("identifies P2P when opening the new-user initialisation confirmation", async () => {
|
||||
const { manager, setting, dialogManager } = createSetupManager();
|
||||
setting.settings = { ...setting.currentSettings(), isConfigured: false };
|
||||
dialogManager.openWithExplicitCancel.mockResolvedValueOnce(true);
|
||||
const p2pProfileId = "p2p-profile";
|
||||
|
||||
await manager.onConfirmApplySettingsFromWizard(
|
||||
{
|
||||
...setting.currentSettings(),
|
||||
isConfigured: true,
|
||||
// Imported profile settings can still carry the previous compatibility field
|
||||
// until the selected profile is projected by the setting lifecycle.
|
||||
remoteType: REMOTE_COUCHDB,
|
||||
activeConfigurationId: p2pProfileId,
|
||||
remoteConfigurations: {
|
||||
[p2pProfileId]: {
|
||||
id: p2pProfileId,
|
||||
name: "P2P room",
|
||||
uri: "sls+p2p://:secret@team-room?relays=wss%3A%2F%2Frelay.example",
|
||||
isEncrypted: false,
|
||||
},
|
||||
},
|
||||
},
|
||||
UserMode.NewUser
|
||||
);
|
||||
|
||||
expect(dialogManager.openWithExplicitCancel).toHaveBeenCalledWith(expect.anything(), {
|
||||
isP2P: true,
|
||||
});
|
||||
});
|
||||
|
||||
it("reserves Fetch when compatible imported settings activate an unconfigured device", async () => {
|
||||
const { manager, setting, dialogManager, core } = createSetupManager();
|
||||
setting.settings = { ...setting.currentSettings(), isConfigured: false };
|
||||
|
||||
@@ -5,33 +5,59 @@
|
||||
import Question from "@/modules/services/LiveSyncUI/components/Question.svelte";
|
||||
import Instruction from "@/modules/services/LiveSyncUI/components/Instruction.svelte";
|
||||
import UserDecisions from "@/modules/services/LiveSyncUI/components/UserDecisions.svelte";
|
||||
import { $msg as msg } from "@/common/translation";
|
||||
import { TYPE_APPLY, TYPE_CANCELLED, type OutroNewUserResultType } from "./setupDialogTypes";
|
||||
|
||||
type Props = {
|
||||
setResult: (result: OutroNewUserResultType) => void;
|
||||
getInitialData?: () => { isP2P?: boolean } | undefined;
|
||||
};
|
||||
const { setResult }: Props = $props();
|
||||
const { setResult, getInitialData }: Props = $props();
|
||||
const isP2P = $derived(getInitialData?.()?.isP2P === true);
|
||||
// let userType = $state<OutroNewUserResultType>(TYPE_CANCELLED);
|
||||
</script>
|
||||
|
||||
<DialogHeader title="Setup Complete: Preparing to Initialise Server" />
|
||||
<Guidance>
|
||||
<p>
|
||||
The connection to the server has been configured successfully. As the next step, <strong
|
||||
>the synchronisation data on the server will be built based on the current data on this device.</strong
|
||||
>
|
||||
</p>
|
||||
<p>
|
||||
<strong>IMPORTANT</strong>
|
||||
<br />
|
||||
After restarting, the data on this device will be uploaded to the server as the 'master copy'. Please be aware that
|
||||
any unintended data currently on the server will be completely overwritten.
|
||||
</p>
|
||||
</Guidance>
|
||||
<Instruction>
|
||||
<Question>Please select the button below to restart and proceed to the final confirmation.</Question>
|
||||
</Instruction>
|
||||
<UserDecisions>
|
||||
<Decision title="Restart and Initialise Server" important={true} commit={() => setResult(TYPE_APPLY)} />
|
||||
<Decision title="No, please take me back" commit={() => setResult(TYPE_CANCELLED)} />
|
||||
</UserDecisions>
|
||||
{#if isP2P}
|
||||
<DialogHeader title={msg("Ui.SetupWizard.OutroNewP2PUser.Title")} />
|
||||
<Guidance>
|
||||
<p>{msg("Ui.SetupWizard.OutroNewP2PUser.GuidancePrimary")}</p>
|
||||
<p>
|
||||
<strong>{msg("Ui.SetupWizard.OutroNewP2PUser.Important")}</strong>
|
||||
<br />
|
||||
{msg("Ui.SetupWizard.OutroNewP2PUser.GuidanceNotice")}
|
||||
</p>
|
||||
</Guidance>
|
||||
<Instruction>
|
||||
<Question>{msg("Ui.SetupWizard.OutroNewP2PUser.Question")}</Question>
|
||||
</Instruction>
|
||||
<UserDecisions>
|
||||
<Decision
|
||||
title={msg("Ui.SetupWizard.OutroNewP2PUser.Proceed")}
|
||||
important={true}
|
||||
commit={() => setResult(TYPE_APPLY)}
|
||||
/>
|
||||
<Decision title="No, please take me back" commit={() => setResult(TYPE_CANCELLED)} />
|
||||
</UserDecisions>
|
||||
{:else}
|
||||
<DialogHeader title="Setup Complete: Preparing to Initialise Server" />
|
||||
<Guidance>
|
||||
<p>
|
||||
The connection to the server has been configured successfully. As the next step, <strong
|
||||
>the synchronisation data on the server will be built based on the current data on this device.</strong
|
||||
>
|
||||
</p>
|
||||
<p>
|
||||
<strong>IMPORTANT</strong>
|
||||
<br />
|
||||
After restarting, the data on this device will be uploaded to the server as the 'master copy'. Please be aware
|
||||
that any unintended data currently on the server will be completely overwritten.
|
||||
</p>
|
||||
</Guidance>
|
||||
<Instruction>
|
||||
<Question>Please select the button below to restart and proceed to the final confirmation.</Question>
|
||||
</Instruction>
|
||||
<UserDecisions>
|
||||
<Decision title="Restart and Initialise Server" important={true} commit={() => setResult(TYPE_APPLY)} />
|
||||
<Decision title="No, please take me back" commit={() => setResult(TYPE_CANCELLED)} />
|
||||
</UserDecisions>
|
||||
{/if}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
import InfoNote from "@/modules/services/LiveSyncUI/components/InfoNote.svelte";
|
||||
import ExtraItems from "@/modules/services/LiveSyncUI/components/ExtraItems.svelte";
|
||||
import Check from "@/modules/services/LiveSyncUI/components/Check.svelte";
|
||||
import { $msg as msg } from "@/common/translation";
|
||||
import {
|
||||
TYPE_CANCEL,
|
||||
TYPE_BACKUP_DONE,
|
||||
@@ -21,20 +22,19 @@
|
||||
|
||||
type Props = {
|
||||
setResult: (result: RebuildEverythingResult) => void;
|
||||
getInitialData?: () => { isP2P?: boolean } | undefined;
|
||||
};
|
||||
const { setResult }: Props = $props();
|
||||
const { setResult, getInitialData }: Props = $props();
|
||||
const isP2P = $derived(getInitialData?.()?.isP2P === true);
|
||||
|
||||
let backupType = $state<ResultTypeBackup>(TYPE_CANCEL);
|
||||
let confirmationCheck1 = $state(false);
|
||||
let confirmationCheck2 = $state(false);
|
||||
let confirmationCheck3 = $state(false);
|
||||
const canProceed = $derived.by(() => {
|
||||
return (
|
||||
(backupType === TYPE_BACKUP_DONE || backupType === TYPE_BACKUP_SKIPPED) &&
|
||||
confirmationCheck1 &&
|
||||
confirmationCheck2 &&
|
||||
confirmationCheck3
|
||||
);
|
||||
const backupConfirmed = backupType === TYPE_BACKUP_DONE || backupType === TYPE_BACKUP_SKIPPED;
|
||||
if (isP2P) return backupConfirmed && confirmationCheck1;
|
||||
return backupConfirmed && confirmationCheck1 && confirmationCheck2 && confirmationCheck3;
|
||||
});
|
||||
let preventFetchingConfig = $state(false);
|
||||
|
||||
@@ -48,33 +48,44 @@
|
||||
}
|
||||
</script>
|
||||
|
||||
<DialogHeader title="Final Confirmation: Overwrite Server Data with This Device's Files" />
|
||||
<Guidance
|
||||
>This procedure will first delete all existing synchronisation data from the server. Following this, the server data
|
||||
will be completely rebuilt, using the current state of your Vault on this device (including its local database) as
|
||||
<strong>the single, authoritative master copy</strong>.</Guidance
|
||||
>
|
||||
<InfoNote>
|
||||
You should perform this operation only in exceptional circumstances, such as when the server data is completely
|
||||
corrupted, when changes on all other devices are no longer needed, or when the database size has become unusually
|
||||
large in comparison to the Vault size.
|
||||
</InfoNote>
|
||||
<Guidance important title="⚠️ Please Confirm the Following">
|
||||
<Check
|
||||
title="I understand that all changes made on other smartphones or computers possibly could be lost."
|
||||
bind:value={confirmationCheck1}
|
||||
{#if isP2P}
|
||||
<DialogHeader title={msg("Ui.SetupWizard.RebuildEverythingP2P.Title")} />
|
||||
<Guidance>{msg("Ui.SetupWizard.RebuildEverythingP2P.Guidance")}</Guidance>
|
||||
<InfoNote>{msg("Ui.SetupWizard.RebuildEverythingP2P.Note")}</InfoNote>
|
||||
<Guidance important title={msg("Ui.SetupWizard.RebuildEverythingP2P.ConfirmTitle")}>
|
||||
<Check title={msg("Ui.SetupWizard.RebuildEverythingP2P.ConfirmLocalReset")} bind:value={confirmationCheck1}>
|
||||
<InfoNote>{msg("Ui.SetupWizard.RebuildEverythingP2P.ConfirmLocalResetNote")}</InfoNote>
|
||||
</Check>
|
||||
</Guidance>
|
||||
{:else}
|
||||
<DialogHeader title="Final Confirmation: Overwrite Server Data with This Device's Files" />
|
||||
<Guidance
|
||||
>This procedure will first delete all existing synchronisation data from the server. Following this, the server
|
||||
data will be completely rebuilt, using the current state of your Vault on this device (including its local
|
||||
database) as <strong>the single, authoritative master copy</strong>.</Guidance
|
||||
>
|
||||
<InfoNote>There is a way to resolve this on other devices.</InfoNote>
|
||||
<InfoNote>Of course, we can back up the data before proceeding.</InfoNote>
|
||||
</Check>
|
||||
<Check
|
||||
title="I understand that other devices will no longer be able to synchronise, and will need to be reset the synchronisation information."
|
||||
bind:value={confirmationCheck2}
|
||||
>
|
||||
<InfoNote>by resetting the remote, you will be informed on other devices.</InfoNote>
|
||||
</Check>
|
||||
<Check title="I understand that this action is irreversible once performed." bind:value={confirmationCheck3} />
|
||||
</Guidance>
|
||||
<InfoNote>
|
||||
You should perform this operation only in exceptional circumstances, such as when the server data is completely
|
||||
corrupted, when changes on all other devices are no longer needed, or when the database size has become unusually
|
||||
large in comparison to the Vault size.
|
||||
</InfoNote>
|
||||
<Guidance important title="⚠️ Please Confirm the Following">
|
||||
<Check
|
||||
title="I understand that all changes made on other smartphones or computers possibly could be lost."
|
||||
bind:value={confirmationCheck1}
|
||||
>
|
||||
<InfoNote>There is a way to resolve this on other devices.</InfoNote>
|
||||
<InfoNote>Of course, we can back up the data before proceeding.</InfoNote>
|
||||
</Check>
|
||||
<Check
|
||||
title="I understand that other devices will no longer be able to synchronise, and will need to be reset the synchronisation information."
|
||||
bind:value={confirmationCheck2}
|
||||
>
|
||||
<InfoNote>by resetting the remote, you will be informed on other devices.</InfoNote>
|
||||
</Check>
|
||||
<Check title="I understand that this action is irreversible once performed." bind:value={confirmationCheck3} />
|
||||
</Guidance>
|
||||
{/if}
|
||||
<hr />
|
||||
<Instruction>
|
||||
<Question>Have you created a backup before proceeding?</Question>
|
||||
@@ -103,12 +114,19 @@
|
||||
</Option>
|
||||
</Options>
|
||||
</Instruction>
|
||||
<Instruction>
|
||||
<ExtraItems title="Advanced">
|
||||
<Check title="Prevent fetching configuration from server" bind:value={preventFetchingConfig} />
|
||||
</ExtraItems>
|
||||
</Instruction>
|
||||
{#if !isP2P}
|
||||
<Instruction>
|
||||
<ExtraItems title="Advanced">
|
||||
<Check title="Prevent fetching configuration from server" bind:value={preventFetchingConfig} />
|
||||
</ExtraItems>
|
||||
</Instruction>
|
||||
{/if}
|
||||
<UserDecisions>
|
||||
<Decision title="I Understand, Overwrite Server" important disabled={!canProceed} commit={() => commit()} />
|
||||
<Decision
|
||||
title={isP2P ? msg("Ui.SetupWizard.RebuildEverythingP2P.Proceed") : "I Understand, Overwrite Server"}
|
||||
important
|
||||
disabled={!canProceed}
|
||||
commit={() => commit()}
|
||||
/>
|
||||
<Decision title="Cancel" commit={() => setResult(TYPE_CANCEL)} />
|
||||
</UserDecisions>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { requestToCouchDBWithCredentials } from "@/common/utils";
|
||||
import { $msg } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { $msg } from "@/common/translation";
|
||||
import { Logger } from "@vrtmrz/livesync-commonlib/compat/common/logger";
|
||||
import type { ObsidianLiveSyncSettings } from "@vrtmrz/livesync-commonlib/compat/common/types";
|
||||
import { parseHeaderValues } from "@vrtmrz/livesync-commonlib/compat/common/utils";
|
||||
|
||||
@@ -11,7 +11,7 @@ import {
|
||||
EVENT_SETTING_SAVED,
|
||||
eventHub,
|
||||
} from "@/common/events.ts";
|
||||
import { $msg, setLang } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { $msg, setLang } from "@/common/translation";
|
||||
import { AbstractModule } from "@/modules/AbstractModule.ts";
|
||||
import type { InjectableServiceHub } from "@vrtmrz/livesync-commonlib/compat/services/implements/injectable/InjectableServiceHub";
|
||||
import type { LiveSyncCore } from "@/main.ts";
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import { translateIfAvailable as translate } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { translateIfAvailable as translate } from "@/common/translation";
|
||||
|
||||
type Props = {
|
||||
title: string;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import { translateIfAvailable as translate } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { translateIfAvailable as translate } from "@/common/translation";
|
||||
import { fireAndForget } from "octagonal-wheels/promises";
|
||||
|
||||
type Props = {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<script lang="ts">
|
||||
import { onMount, tick } from "svelte";
|
||||
import { translateIfAvailable as translate } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { translateIfAvailable as translate } from "@/common/translation";
|
||||
import { getDialogContext } from "@/modules/services/LiveSyncUI/svelteDialog";
|
||||
import { _activeDocument } from "@vrtmrz/livesync-commonlib/compat/common/coreEnvFunctions";
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import { translateIfAvailable as translate } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { translateIfAvailable as translate } from "@/common/translation";
|
||||
|
||||
type Props = {
|
||||
title?: string;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import { translateIfAvailable as translate } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { translateIfAvailable as translate } from "@/common/translation";
|
||||
|
||||
type Props = {
|
||||
children?: () => any;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import { translateIfAvailable as translate } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { translateIfAvailable as translate } from "@/common/translation";
|
||||
|
||||
type SignalWord = "danger" | "warning" | "caution" | "notice";
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import { translateIfAvailable as translate } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { translateIfAvailable as translate } from "@/common/translation";
|
||||
|
||||
type Props = {
|
||||
label: string;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<script lang="ts">
|
||||
import { getContext } from "svelte";
|
||||
import { translateIfAvailable as translate } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { translateIfAvailable as translate } from "@/common/translation";
|
||||
|
||||
type Props = {
|
||||
title: string;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import { translateIfAvailable as translate } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { translateIfAvailable as translate } from "@/common/translation";
|
||||
|
||||
type Props = {
|
||||
value: string;
|
||||
|
||||
@@ -1,14 +1,11 @@
|
||||
import { type App, type Plugin, Notice } from "@/deps";
|
||||
import { scheduleTask, memoIfNotExist, memoObject, retrieveMemoObject, disposeMemoObject } from "@/common/utils";
|
||||
import { EVENT_PLUGIN_UNLOADED } from "@/common/events";
|
||||
import { $msg } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { $msg } from "@/common/translation";
|
||||
import type { Confirm, ConfirmActionLayout } from "@vrtmrz/livesync-commonlib/compat/interfaces/Confirm";
|
||||
import { confirmAction, pickOne, promptPassword, promptText } from "@vrtmrz/obsidian-plugin-kit";
|
||||
import type { ObsidianServiceContext } from "@/modules/services/ObsidianServiceContext";
|
||||
import {
|
||||
confirmWithMessageWithWideButton,
|
||||
confirmWithMessage as confirmWithLegacyMessage,
|
||||
} from "@/modules/coreObsidian/UILib/dialogs";
|
||||
import { confirmWithMessageWithWideButton } from "@/modules/coreObsidian/UILib/dialogs";
|
||||
|
||||
export class ObsidianConfirm<T extends ObsidianServiceContext = ObsidianServiceContext> implements Confirm {
|
||||
private _context: T;
|
||||
@@ -49,6 +46,7 @@ export class ObsidianConfirm<T extends ObsidianServiceContext = ObsidianServiceC
|
||||
yes: $msg("moduleInputUIObsidian.optionYes"),
|
||||
no: $msg("moduleInputUIObsidian.optionNo"),
|
||||
},
|
||||
actionLayout: "vertical",
|
||||
defaultAction: "no",
|
||||
sourcePath: "/",
|
||||
},
|
||||
@@ -92,6 +90,7 @@ export class ObsidianConfirm<T extends ObsidianServiceContext = ObsidianServiceC
|
||||
message,
|
||||
actions: ["Yes", "No"] as const,
|
||||
labels: { Yes: yesLabel, No: noLabel },
|
||||
actionLayout: "vertical",
|
||||
defaultAction: opt.defaultOption === "Yes" ? "Yes" : "No",
|
||||
sourcePath: "/",
|
||||
},
|
||||
@@ -136,6 +135,7 @@ export class ObsidianConfirm<T extends ObsidianServiceContext = ObsidianServiceC
|
||||
title: opt.title || defaultTitle,
|
||||
message,
|
||||
actions: buttons,
|
||||
actionLayout: "vertical",
|
||||
defaultAction: opt.defaultAction,
|
||||
sourcePath: "/",
|
||||
},
|
||||
@@ -210,7 +210,7 @@ export class ObsidianConfirm<T extends ObsidianServiceContext = ObsidianServiceC
|
||||
actionLayout?: ConfirmActionLayout
|
||||
): Promise<(typeof buttons)[number] | false> {
|
||||
if (this.hasCountdown(timeout)) {
|
||||
return confirmWithLegacyMessage(this._plugin, title, contentMd, buttons, defaultAction, timeout);
|
||||
return confirmWithMessageWithWideButton(this._plugin, title, contentMd, buttons, defaultAction, timeout);
|
||||
}
|
||||
const result = await confirmAction(
|
||||
this._app,
|
||||
@@ -220,7 +220,7 @@ export class ObsidianConfirm<T extends ObsidianServiceContext = ObsidianServiceC
|
||||
actions: buttons,
|
||||
defaultAction,
|
||||
sourcePath: "/",
|
||||
...(actionLayout === undefined ? {} : { actionLayout }),
|
||||
actionLayout: actionLayout ?? "vertical",
|
||||
},
|
||||
this.dialogueLifecycle
|
||||
);
|
||||
|
||||
@@ -93,6 +93,7 @@ describe("ObsidianConfirm Fancy Kit adapter", () => {
|
||||
expect.objectContaining({
|
||||
message: "Continue?",
|
||||
actions: ["yes", "no"],
|
||||
actionLayout: "vertical",
|
||||
defaultAction: "no",
|
||||
}),
|
||||
{ signal: expect.any(AbortSignal) }
|
||||
@@ -109,15 +110,14 @@ describe("ObsidianConfirm Fancy Kit adapter", () => {
|
||||
expect(mocks.legacyAskSelectString).not.toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it("uses Kit for untimed action dialogues and retains the legacy countdown path", async () => {
|
||||
it("keeps untimed and countdown action dialogues vertically stacked", async () => {
|
||||
const { confirm, app, plugin } = createConfirm();
|
||||
mocks.confirmAction.mockResolvedValueOnce("Apply").mockResolvedValueOnce("Yes");
|
||||
mocks.legacyConfirm.mockResolvedValueOnce("Cancel");
|
||||
mocks.legacyWideConfirm.mockResolvedValueOnce("No");
|
||||
mocks.legacyWideConfirm.mockResolvedValueOnce("Cancel").mockResolvedValueOnce("No");
|
||||
|
||||
await expect(
|
||||
confirm.confirmWithMessage("Review", "**Apply?**", ["Apply", "Cancel"], "Cancel", undefined, "vertical")
|
||||
).resolves.toBe("Apply");
|
||||
await expect(confirm.confirmWithMessage("Review", "**Apply?**", ["Apply", "Cancel"], "Cancel")).resolves.toBe(
|
||||
"Apply"
|
||||
);
|
||||
await expect(confirm.askYesNoDialog("Continue?", { title: "Question", defaultOption: "Yes" })).resolves.toBe(
|
||||
"yes"
|
||||
);
|
||||
@@ -139,8 +139,29 @@ describe("ObsidianConfirm Fancy Kit adapter", () => {
|
||||
},
|
||||
{ signal: expect.any(AbortSignal) }
|
||||
);
|
||||
expect(mocks.legacyConfirm).toHaveBeenCalledWith(plugin, "Timed", "Wait", ["Apply", "Cancel"], "Cancel", 30);
|
||||
expect(mocks.legacyWideConfirm).toHaveBeenCalledWith(
|
||||
expect(mocks.confirmAction).toHaveBeenNthCalledWith(
|
||||
2,
|
||||
app,
|
||||
expect.objectContaining({
|
||||
title: "Question",
|
||||
message: "Continue?",
|
||||
actions: ["Yes", "No"],
|
||||
actionLayout: "vertical",
|
||||
defaultAction: "Yes",
|
||||
}),
|
||||
{ signal: expect.any(AbortSignal) }
|
||||
);
|
||||
expect(mocks.legacyWideConfirm).toHaveBeenNthCalledWith(
|
||||
1,
|
||||
plugin,
|
||||
"Timed",
|
||||
"Wait",
|
||||
["Apply", "Cancel"],
|
||||
"Cancel",
|
||||
30
|
||||
);
|
||||
expect(mocks.legacyWideConfirm).toHaveBeenNthCalledWith(
|
||||
2,
|
||||
plugin,
|
||||
expect.any(String),
|
||||
"Timed?",
|
||||
@@ -148,6 +169,7 @@ describe("ObsidianConfirm Fancy Kit adapter", () => {
|
||||
expect.any(String),
|
||||
10
|
||||
);
|
||||
expect(mocks.legacyConfirm).not.toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it("uses Kit for untimed multi-action selection and keeps timed wide actions on the countdown dialogue", async () => {
|
||||
@@ -176,6 +198,7 @@ describe("ObsidianConfirm Fancy Kit adapter", () => {
|
||||
title: "Next step",
|
||||
message: "Choose the next step",
|
||||
actions,
|
||||
actionLayout: "vertical",
|
||||
defaultAction: "Review later",
|
||||
sourcePath: "/",
|
||||
},
|
||||
|
||||
@@ -26,6 +26,7 @@ import { createScreenWakeLockManager } from "octagonal-wheels/browser/wakeLock";
|
||||
import { PouchDB } from "@vrtmrz/livesync-commonlib/compat/pouchdb/pouchdb-browser";
|
||||
import { OpenKeyValueDatabase } from "@/common/KeyValueDB";
|
||||
import { ObsidianNoticeGroupManager } from "./ObsidianNoticeGroups";
|
||||
import { setLang } from "@/common/translation";
|
||||
|
||||
// InjectableServiceHub
|
||||
|
||||
@@ -42,6 +43,7 @@ export class ObsidianServiceHub extends InjectableServiceHub<ObsidianServiceCont
|
||||
|
||||
const setting = new ObsidianSettingService(context, {
|
||||
APIService: API,
|
||||
onDisplayLanguageChanged: setLang,
|
||||
});
|
||||
const appLifecycle = new ObsidianAppLifecycleService(context, {
|
||||
settingService: setting,
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { getLanguage, requireApiVersion } from "@/deps";
|
||||
import { createServiceFeature } from "@vrtmrz/livesync-commonlib/compat/interfaces/ServiceModule";
|
||||
import { SUPPORTED_I18N_LANGS, type I18N_LANGS } from "@vrtmrz/livesync-commonlib/compat/common/rosetta";
|
||||
import { $msg, __onMissingTranslation, setLang } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { SUPPORTED_I18N_LANGS, type I18N_LANGS } from "@/common/rosetta";
|
||||
import { $msg, __onMissingTranslation, setLang } from "@/common/translation";
|
||||
import { LOG_LEVEL_VERBOSE } from "octagonal-wheels/common/logger";
|
||||
|
||||
function tryGetLanguage(onError: (error: unknown) => void) {
|
||||
|
||||
@@ -1,7 +1,10 @@
|
||||
import { LOG_LEVEL_INFO, LOG_LEVEL_NOTICE, LOG_LEVEL_VERBOSE } from "octagonal-wheels/common/logger";
|
||||
import type { NecessaryServices } from "@vrtmrz/livesync-commonlib/compat/interfaces/ServiceModule";
|
||||
import { createInstanceLogFunction, type LogFunction } from "@vrtmrz/livesync-commonlib/compat/services/lib/logUtils";
|
||||
import { FlagFilesHumanReadable, FlagFilesOriginal } from "@vrtmrz/livesync-commonlib/compat/common/models/redflag.const";
|
||||
import {
|
||||
FlagFilesHumanReadable,
|
||||
FlagFilesOriginal,
|
||||
} from "@vrtmrz/livesync-commonlib/compat/common/models/redflag.const";
|
||||
import FetchEverything from "@/modules/features/SetupWizard/dialogs/FetchEverything.svelte";
|
||||
import RebuildEverything from "@/modules/features/SetupWizard/dialogs/RebuildEverything.svelte";
|
||||
import { extractObject } from "octagonal-wheels/object";
|
||||
@@ -15,6 +18,7 @@ import type {
|
||||
import { askAndPerformFastSetupOnScheduledFetchAll } from "./redFlag.simpleFetch";
|
||||
import { ConnectionStringParser } from "@vrtmrz/livesync-commonlib/compat/common/ConnectionString";
|
||||
import { activateRemoteConfiguration } from "@vrtmrz/livesync-commonlib/remote-configurations";
|
||||
import { isP2PMainRemote } from "@/common/remoteConfiguration";
|
||||
|
||||
/**
|
||||
* Flag file handler interface, similar to target filter pattern.
|
||||
@@ -382,8 +386,11 @@ export function createRebuildFlagHandler(
|
||||
|
||||
// Handle the rebuild everything scheduled operation
|
||||
const onScheduled = async () => {
|
||||
const method =
|
||||
await host.services.UI.dialogManager.openWithExplicitCancel<RebuildEverythingResult>(RebuildEverything);
|
||||
const settings = host.services.setting.currentSettings();
|
||||
const method = await host.services.UI.dialogManager.openWithExplicitCancel<
|
||||
RebuildEverythingResult,
|
||||
{ isP2P: boolean }
|
||||
>(RebuildEverything, { isP2P: isP2PMainRemote(settings) });
|
||||
if (method === "cancelled") {
|
||||
log("Rebuild everything cancelled by user.", LOG_LEVEL_NOTICE);
|
||||
await cleanupFlag();
|
||||
@@ -391,7 +398,6 @@ export function createRebuildFlagHandler(
|
||||
return false;
|
||||
}
|
||||
const { extra } = method;
|
||||
const settings = host.services.setting.currentSettings();
|
||||
await adjustSettingToRemoteIfNeeded(host, log, extra, settings);
|
||||
return await processVaultInitialisation(host, log, async () => {
|
||||
await host.serviceModules.rebuilder.$rebuildEverything();
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
import { describe, it, expect, vi } from "vitest";
|
||||
import { createServiceContext } from "@vrtmrz/livesync-commonlib/context";
|
||||
import type { LogFunction } from "@vrtmrz/livesync-commonlib/compat/services/lib/logUtils";
|
||||
import { FlagFilesHumanReadable, FlagFilesOriginal } from "@vrtmrz/livesync-commonlib/compat/common/models/redflag.const";
|
||||
import { REMOTE_MINIO } from "@vrtmrz/livesync-commonlib/compat/common/models/setting.const";
|
||||
import {
|
||||
FlagFilesHumanReadable,
|
||||
FlagFilesOriginal,
|
||||
} from "@vrtmrz/livesync-commonlib/compat/common/models/redflag.const";
|
||||
import { REMOTE_MINIO, REMOTE_P2P } from "@vrtmrz/livesync-commonlib/compat/common/models/setting.const";
|
||||
import {
|
||||
createFetchAllFlagHandler,
|
||||
createRebuildFlagHandler,
|
||||
@@ -868,6 +871,20 @@ describe("Red Flag Feature", () => {
|
||||
});
|
||||
|
||||
describe("Rebuild All Flag Handler", () => {
|
||||
it("identifies P2P when opening the scheduled rebuild confirmation", async () => {
|
||||
const host = createHostMock();
|
||||
const log = createLoggerMock();
|
||||
host.mocks.setting.settings.remoteType = REMOTE_P2P;
|
||||
host.mocks.storageAccess.files.add(FlagFilesOriginal.REBUILD_ALL);
|
||||
host.mocks.ui.dialogManager.openWithExplicitCancel.mockResolvedValueOnce("cancelled");
|
||||
|
||||
await createRebuildFlagHandler(host as any, log).handle();
|
||||
|
||||
expect(host.mocks.ui.dialogManager.openWithExplicitCancel).toHaveBeenCalledWith(expect.anything(), {
|
||||
isP2P: true,
|
||||
});
|
||||
});
|
||||
|
||||
it("should detect rebuild all flag using original filename", async () => {
|
||||
const host = createHostMock();
|
||||
const log = createLoggerMock();
|
||||
|
||||
@@ -6,7 +6,7 @@ import {
|
||||
} from "@vrtmrz/livesync-commonlib/compat/events/coreEvents";
|
||||
import { fireAndForget } from "@vrtmrz/livesync-commonlib/compat/common/utils";
|
||||
import type { NecessaryServices } from "@vrtmrz/livesync-commonlib/compat/interfaces/ServiceModule";
|
||||
import { $msg } from "@vrtmrz/livesync-commonlib/compat/common/i18n";
|
||||
import { $msg } from "@/common/translation";
|
||||
|
||||
const ONBOARDING_NOTICE_DURATION_MS = 60_000;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user