From 703e2a2a575fadfaeb81c6a2716ea6ff2f98bb5c Mon Sep 17 00:00:00 2001 From: Serhii Pylypchuk Date: Fri, 17 Jul 2026 22:15:32 +0300 Subject: [PATCH 1/4] [add] i18n glossary and unify admonition titles MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - add i18n/GLOSSARY.md with canonical translations of recurring template phrases (section labels, API/changelog/nav headings, admonition titles) for ru/de/ko/zh - unify theme.admonition.* labels in code.json: capitalize ru/de first letter, drop caution/warning duplicates (ru caution→Осторожно, danger→Опасно; de nouns capitalized; zh swap caution→注意, warning→警告); ko already canonical --- i18n/GLOSSARY.md | 69 +++++++++++++++++++++++++++++++++++++++++++++++ i18n/de/code.json | 10 +++---- i18n/ru/code.json | 12 ++++----- i18n/zh/code.json | 4 +-- 4 files changed, 82 insertions(+), 13 deletions(-) create mode 100644 i18n/GLOSSARY.md diff --git a/i18n/GLOSSARY.md b/i18n/GLOSSARY.md new file mode 100644 index 0000000..2140d1b --- /dev/null +++ b/i18n/GLOSSARY.md @@ -0,0 +1,69 @@ +# Translation Glossary — All documentation template phrases + +Purpose: a single reference for translations of recurring template phrases in the documentation +([../docs/](../docs/)). Consult it when translating new articles and when reviewing localizations — +the wording and markdown markup (`**...**`, `### ...`, full-width `:` for zh) must match verbatim. + +The **canonical** (most frequent) variant is given. + +--- + +## 1. Section labels (bold lead before a list) + +The colon stays **outside** the bold markers (`**...**:`); zh uses a full-width colon `:`. + +| EN | ru | de | ko | zh | +|---|---|---|---|---| +| `**Related articles**:` | `**Связанные статьи**:` | `**Verwandte Artikel**:` | `**관련 문서**:` | `**相关文章**:` | + +## 2. Section headings + +Headings keep the original English slug as a `{#...}` anchor (e.g. `### Описание {#description}`) so +cross-page `#anchor` links stay valid — only the visible title is translated. + +**API-page template:** + +| EN | ru | de | ko | zh | +|---|---|---|---|---| +| `### Description` | `### Описание` | `### Beschreibung` | `### 설명` | `### 描述` | +| `### Usage` | `### Использование` | `### Verwendung` | `### 사용법` | `### 用法` | +| `### Example` | `### Пример` | `### Beispiel` | `### 예제` | `### 示例` | +| `### Parameters` | `### Параметры` | `### Parameter` | `### 파라미터` | `### 参数` | +| `### Returns` | `### Возвращает` | `### Rückgabewert` | `### 반환값` | `### 返回值` | +| `### Default config` | `### Конфигурация по умолчанию` | `### Standardkonfiguration` | `### 기본 설정` | `### 默认配置` | + +ko: `파라미터` is canonical; the variants `매개변수` and untranslated `Parameters` also occur and +should be normalized to `파라미터`. + +**Changelog headings (`news/whats_new.md`):** + +| EN | ru | de | ko | zh | +|---|---|---|---|---| +| `### New functionality` | `### Новая функциональность` | `### Neue Funktionalität` | `### 새로운 기능` | `### 新功能` | +| `### Initial functionality` | `### Начальная функциональность` | `### Initiale Funktionalität` | `### 초기 기능` | `### 初始功能` | +| `### Fixes` | `### Исправления` | `### Fehlerbehebungen` | `### 수정 사항` | `### 修复` | + +**Navigation heading:** + +| EN | ru | de | ko | zh | +|---|---|---|---|---| +| `## What's next` | `## Что дальше` | `## Wie geht es weiter?` | `## 다음 단계` | `## 下一步` | + +## 3. Admonition block titles (`:::note`, `:::tip` …) + +The titles of these blocks come **not from markdown**, but from the `theme.admonition.*` keys in +`i18n//code.json` (in EN — Docusaurus built-in defaults). In `.md` the block type (`:::note`, +`:::tip`, …) is not translated — only the `message` in `code.json` changes. + +The Docusaurus theme renders the title with `text-transform: uppercase`, so for ru/de the visible +title is always UPPERCASE, while ko/zh have no letter case. Canon: **capitalized first letter**, with +words distinct between types (no `caution`/`warning` duplicates). + +| Type | ru | de | ko | zh | +|---|---|---|---|---| +| `:::note` | `Примечание` | `Hinweis` | `노트` | `备注` | +| `:::tip` | `Подсказка` | `Tipp` | `팁` | `提示` | +| `:::info` | `К сведению` | `Info` | `정보` | `信息` | +| `:::warning` | `Предупреждение` | `Warnung` | `경고` | `警告` | +| `:::caution` | `Осторожно` | `Vorsicht` | `주의` | `注意` | +| `:::danger` | `Опасно` | `Gefahr` | `위험` | `危险` | diff --git a/i18n/de/code.json b/i18n/de/code.json index 344c9d5..b7c565b 100644 --- a/i18n/de/code.json +++ b/i18n/de/code.json @@ -139,11 +139,11 @@ "description": "The label alongside a tag list" }, "theme.admonition.caution": { - "message": "vorsicht", + "message": "Vorsicht", "description": "The default label used for the Caution admonition (:::caution)" }, "theme.admonition.danger": { - "message": "gefahr", + "message": "Gefahr", "description": "The default label used for the Danger admonition (:::danger)" }, "theme.admonition.info": { @@ -151,15 +151,15 @@ "description": "The default label used for the Info admonition (:::info)" }, "theme.admonition.note": { - "message": "hinweis", + "message": "Hinweis", "description": "The default label used for the Note admonition (:::note)" }, "theme.admonition.tip": { - "message": "tipp", + "message": "Tipp", "description": "The default label used for the Tip admonition (:::tip)" }, "theme.admonition.warning": { - "message": "warnung", + "message": "Warnung", "description": "The default label used for the Warning admonition (:::warning)" }, "theme.AnnouncementBar.closeButtonAriaLabel": { diff --git a/i18n/ru/code.json b/i18n/ru/code.json index 525b13e..e489c0e 100644 --- a/i18n/ru/code.json +++ b/i18n/ru/code.json @@ -139,27 +139,27 @@ "description": "The label alongside a tag list" }, "theme.admonition.caution": { - "message": "предупреждение", + "message": "Осторожно", "description": "The default label used for the Caution admonition (:::caution)" }, "theme.admonition.danger": { - "message": "осторожно", + "message": "Опасно", "description": "The default label used for the Danger admonition (:::danger)" }, "theme.admonition.info": { - "message": "к сведению", + "message": "К сведению", "description": "The default label used for the Info admonition (:::info)" }, "theme.admonition.note": { - "message": "примечание", + "message": "Примечание", "description": "The default label used for the Note admonition (:::note)" }, "theme.admonition.tip": { - "message": "подсказка", + "message": "Подсказка", "description": "The default label used for the Tip admonition (:::tip)" }, "theme.admonition.warning": { - "message": "предупреждение", + "message": "Предупреждение", "description": "The default label used for the Warning admonition (:::warning)" }, "theme.AnnouncementBar.closeButtonAriaLabel": { diff --git a/i18n/zh/code.json b/i18n/zh/code.json index b8f261b..541ba03 100644 --- a/i18n/zh/code.json +++ b/i18n/zh/code.json @@ -139,7 +139,7 @@ "description": "The label alongside a tag list" }, "theme.admonition.caution": { - "message": "警告", + "message": "注意", "description": "The default label used for the Caution admonition (:::caution)" }, "theme.admonition.danger": { @@ -159,7 +159,7 @@ "description": "The default label used for the Tip admonition (:::tip)" }, "theme.admonition.warning": { - "message": "注意", + "message": "警告", "description": "The default label used for the Warning admonition (:::warning)" }, "theme.AnnouncementBar.closeButtonAriaLabel": { From 25eadf3ae21603588f902f5827a10144e0613951 Mon Sep 17 00:00:00 2001 From: Serhii Pylypchuk Date: Fri, 17 Jul 2026 22:34:33 +0300 Subject: [PATCH 2/4] [update] align doc translations with i18n glossary MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Normalize recurring template phrases across ru/de/ko/zh per i18n/GLOSSARY.md (headings and section labels); anchors untouched. - ko: 매개변수 and untranslated "Parameters" -> 파라미터 (13), 기본 구성 -> 기본 설정 - ru: Возвращаемое значение -> Возвращает, Конфиг по умолчанию -> Конфигурация по умолчанию - number agreement: plural "Related articles" -> singular where a single article is listed (EN + ru + de, 4 blocks); ko/zh label is number-agnostic - glossary: add singular **Related article** form and a note on number agreement --- docs/api/config/booking-data.md | 2 +- docs/api/events/booking-confirmslot-event.md | 2 +- docs/api/internal/booking-setnext.md | 2 +- docs/api/methods/booking-setconfirmhandler-method.md | 2 +- i18n/GLOSSARY.md | 5 +++++ .../current/api/config/booking-data.md | 2 +- .../current/api/events/booking-confirmslot-event.md | 2 +- .../current/api/internal/booking-setnext.md | 2 +- .../current/api/methods/booking-setconfirmhandler-method.md | 2 +- .../current/api/config/booking-cardshape.md | 2 +- .../current/api/config/booking-filtershape.md | 2 +- .../current/api/config/booking-formshape.md | 2 +- .../current/api/config/booking-infoshape.md | 2 +- .../current/api/config/booking-rendertype.md | 2 +- .../current/api/config/booking-start.md | 2 +- .../current/api/events/booking-confirmslot-event.md | 2 +- .../current/api/events/booking-filterdata-event.md | 2 +- .../current/api/events/booking-selectitemdate-event.md | 2 +- .../current/api/internal/booking-detach.md | 2 +- .../current/api/internal/booking-exec.md | 2 +- .../current/api/internal/booking-setnext.md | 2 +- .../current/api/methods/booking-setconfirmhandler-method.md | 2 +- .../current/api/methods/booking-setlocale-method.md | 2 +- .../current/api/config/booking-cardshape.md | 2 +- .../current/api/config/booking-data.md | 2 +- .../current/api/events/booking-confirmslot-event.md | 2 +- .../current/api/internal/booking-getreactivestate.md | 2 +- .../current/api/internal/booking-setnext.md | 2 +- .../current/api/methods/booking-setconfirmhandler-method.md | 2 +- 29 files changed, 33 insertions(+), 28 deletions(-) diff --git a/docs/api/config/booking-data.md b/docs/api/config/booking-data.md index 86b688c..186092f 100644 --- a/docs/api/config/booking-data.md +++ b/docs/api/config/booking-data.md @@ -130,4 +130,4 @@ new booking.Booking("#root", { }); ~~~ -**Related articles**: [Defining slot rules](guides/configuration.md#define-slot-rules) +**Related article**: [Defining slot rules](guides/configuration.md#define-slot-rules) diff --git a/docs/api/events/booking-confirmslot-event.md b/docs/api/events/booking-confirmslot-event.md index 9dd7b61..de3e90e 100644 --- a/docs/api/events/booking-confirmslot-event.md +++ b/docs/api/events/booking-confirmslot-event.md @@ -57,4 +57,4 @@ widget.api.on("confirm-slot", (obj) => { }); ~~~ -**Related articles**: [`setConfirmHandler`](api/methods/booking-setconfirmhandler-method.md) method +**Related article**: [`setConfirmHandler`](api/methods/booking-setconfirmhandler-method.md) method diff --git a/docs/api/internal/booking-setnext.md b/docs/api/internal/booking-setnext.md index bbd0228..61d0832 100644 --- a/docs/api/internal/booking-setnext.md +++ b/docs/api/internal/booking-setnext.md @@ -38,4 +38,4 @@ fetch(server + "/data").then((res) => res.json()).then((data) => { widget.api.setNext(someServerService); ~~~ -**Related articles**: [Loading data](guides/loading-data.md) +**Related article**: [Loading data](guides/loading-data.md) diff --git a/docs/api/methods/booking-setconfirmhandler-method.md b/docs/api/methods/booking-setconfirmhandler-method.md index 90414c3..f3ea453 100644 --- a/docs/api/methods/booking-setconfirmhandler-method.md +++ b/docs/api/methods/booking-setconfirmhandler-method.md @@ -35,4 +35,4 @@ widget.setConfirmHandler((ev) => { -**Related articles**: [Saving reservations to the server](guides/saving-reservations.md) +**Related article**: [Saving reservations to the server](guides/saving-reservations.md) diff --git a/i18n/GLOSSARY.md b/i18n/GLOSSARY.md index 2140d1b..3e1ca85 100644 --- a/i18n/GLOSSARY.md +++ b/i18n/GLOSSARY.md @@ -12,9 +12,14 @@ The **canonical** (most frequent) variant is given. The colon stays **outside** the bold markers (`**...**:`); zh uses a full-width colon `:`. +Use the **singular** form when a single article is listed, the **plural** form for a list of two or +more. ko/zh have no number inflection — the same label serves both. The number must agree with the +number of links in the block. + | EN | ru | de | ko | zh | |---|---|---|---|---| | `**Related articles**:` | `**Связанные статьи**:` | `**Verwandte Artikel**:` | `**관련 문서**:` | `**相关文章**:` | +| `**Related article**:` | `**Связанная статья**:` | `**Verwandter Artikel**:` | `**관련 문서**:` | `**相关文章**:` | ## 2. Section headings diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-data.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-data.md index 5f112e2..e1d250c 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-data.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-data.md @@ -130,4 +130,4 @@ new booking.Booking("#root", { }); ~~~ -**Verwandte Artikel**: [Slot-Regeln definieren](guides/configuration.md#define-slot-rules) +**Verwandter Artikel**: [Slot-Regeln definieren](guides/configuration.md#define-slot-rules) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md index c1cad42..1d64fdc 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md @@ -57,4 +57,4 @@ widget.api.on("confirm-slot", (obj) => { }); ~~~ -**Verwandte Artikel**: [`setConfirmHandler`](api/methods/booking-setconfirmhandler-method.md)-Methode +**Verwandter Artikel**: [`setConfirmHandler`](api/methods/booking-setconfirmhandler-method.md)-Methode diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md b/i18n/de/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md index a297de1..60408fc 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md @@ -38,4 +38,4 @@ fetch(server + "/data").then((res) => res.json()).then((data) => { widget.api.setNext(someServerService); ~~~ -**Verwandte Artikel**: [Daten laden](guides/loading-data.md) +**Verwandter Artikel**: [Daten laden](guides/loading-data.md) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md index e4f1228..d28a5c0 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md @@ -35,4 +35,4 @@ widget.setConfirmHandler((ev) => { -**Verwandte Artikel**: [Reservierungen auf dem Server speichern](guides/saving-reservations.md) +**Verwandter Artikel**: [Reservierungen auf dem Server speichern](guides/saving-reservations.md) diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md index 6dfe96e..5b2fd01 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md @@ -24,7 +24,7 @@ cardShape?: { }; ~~~ -### Parameters {#parameters} +### 파라미터 {#parameters} `cardShape` 객체에서 다음 parameters(필드)를 지정할 수 있습니다: diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-filtershape.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-filtershape.md index 3893ac8..f129f8f 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-filtershape.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-filtershape.md @@ -29,7 +29,7 @@ filterShape: { }; ~~~ -### Parameters {#parameters} +### 파라미터 {#parameters} - `text` - (선택 사항) `true`이면 텍스트 입력 필드가 표시됩니다(기본값). `false`이면 텍스트 필드가 숨겨집니다. - `id` - (필수) 필터링할 카드 필드의 이름 (`data` 속성으로, 예: `category` 또는 `title`) diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-formshape.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-formshape.md index b3495d1..a27d95d 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-formshape.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-formshape.md @@ -34,7 +34,7 @@ formShape: [{ - `validation` - (선택 사항) 필드 값을 인수로 받아 boolean을 반환하는 함수입니다. 함수가 `true`를 반환하면 해당 필드는 유효한 것으로 간주됩니다. - `errorMessage` - (선택 사항) 값이 유효성 검사를 통과하지 못했을 때 표시되는 메시지 -### 기본 구성 {#default-config} +### 기본 설정 {#default-config} ~~~jsx {} const defaultFormShape = [ diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-infoshape.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-infoshape.md index b6e9e4c..b61119a 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-infoshape.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-infoshape.md @@ -22,7 +22,7 @@ infoShape?: { }; ~~~ -### 매개변수 {#parameters} +### 파라미터 {#parameters} 객체에는 다음 매개변수가 있습니다: diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-rendertype.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-rendertype.md index f0778e5..d97fdab 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-rendertype.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-rendertype.md @@ -18,7 +18,7 @@ description: DHTMLX JavaScript Booking 라이브러리 문서에서 renderType renderType?: "default" | "lazy"; ~~~ -### 매개변수 {#parameters} +### 파라미터 {#parameters} - `default` - 위젯에 로드된 모든 카드를 렌더링합니다 (기본값으로 설정됨) - `lazy` - 화면에 보이는 카드만 렌더링합니다 diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-start.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-start.md index bb469e3..f0de6e5 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-start.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-start.md @@ -16,7 +16,7 @@ description: DHTMLX JavaScript Booking 라이브러리 문서에서 시작 날 start?: Date; ~~~ -### 매개변수 {#parameters} +### 파라미터 {#parameters} - `Date` - (선택 사항) 사용 가능한 슬롯을 표시하기 시작할 날짜입니다. 기본값은 현재 날짜입니다. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md index d52eb87..5b01967 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md @@ -29,7 +29,7 @@ description: DHTMLX JavaScript Booking 라이브러리 문서에서 confirm-slot }) => void; ~~~ -### 매개변수 {#parameters} +### 파라미터 {#parameters} `confirm-slot` 이벤트의 callback은 다음 매개변수를 가진 객체를 받을 수 있습니다: diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-filterdata-event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-filterdata-event.md index 6f5a3d9..075eaef 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-filterdata-event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-filterdata-event.md @@ -27,7 +27,7 @@ description: DHTMLX JavaScript Booking 라이브러리의 filter-data 이벤트 }) => void; ~~~ -### 매개변수 {#parameters} +### 파라미터 {#parameters} `filter-data` 이벤트의 callback은 다음 매개변수를 포함하는 객체를 받을 수 있습니다: diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-selectitemdate-event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-selectitemdate-event.md index 6eadc80..8e948d0 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-selectitemdate-event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-selectitemdate-event.md @@ -19,7 +19,7 @@ description: DHTMLX JavaScript Booking 라이브러리의 문서에서 select-it }) => void; ~~~ -### 매개변수 {#parameters} +### 파라미터 {#parameters} `select-item-date` 이벤트의 callback은 다음 매개변수를 포함하는 객체를 받을 수 있습니다: diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-detach.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-detach.md index 0248c7a..e62c921 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-detach.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-detach.md @@ -16,7 +16,7 @@ description: DHTMLX JavaScript Booking 라이브러리 문서에서 detach 메 api.detach(tag: number | string ): void; ~~~ -### Parameters {#parameters} +### 파라미터 {#parameters} - `tag` - (필수) 액션 태그의 이름 diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-exec.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-exec.md index dac2795..76d56eb 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-exec.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-exec.md @@ -21,7 +21,7 @@ api.exec( ): Promise; ~~~ -### 매개변수 {#parameters} +### 파라미터 {#parameters} - `event` - (필수) 실행할 이벤트 - `config` - (필수) 매개변수가 포함된 config 객체 (실행할 이벤트를 참조하세요) diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md index f3cb77b..851faed 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md @@ -16,7 +16,7 @@ description: DHTMLX JavaScript Booking 라이브러리 문서에서 setNext 메 api.setNext(next: any): void; ~~~ -### 매개변수 {#parameters} +### 파라미터 {#parameters} - `next` - (필수) **Event Bus** 순서에 포함될 동작 diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md index b297e6b..63b1608 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md @@ -16,7 +16,7 @@ description: DHTMLX JavaScript Booking 라이브러리 문서에서 setConfirmHa setConfirmHandler(confirmHandler: (ev) => any): void; ~~~ -### 매개변수 {#parameters} +### 파라미터 {#parameters} 이 메서드는 슬롯 예약을 확정할 때 호출될 `confirmHandler` 함수를 인수로 받습니다. 해당 함수는 [`confirm-slot`](api/events/booking-confirmslot-event.md) 이벤트와 동일한 객체를 매개변수로 받습니다. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/booking-setlocale-method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/booking-setlocale-method.md index 6e2834d..4613f83 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/booking-setlocale-method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/booking-setlocale-method.md @@ -16,7 +16,7 @@ description: DHTMLX JavaScript Booking 라이브러리 문서에서 setLocale() setLocale(locale?: object | null): void; ~~~ -### 매개변수 {#parameters} +### 파라미터 {#parameters} - `null` - (선택 사항) 기본 로케일(영어)로 초기화합니다 - `locale` - (선택 사항) 적용할 새 로케일 데이터 객체 diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md index 0ca4c29..891672b 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md @@ -36,7 +36,7 @@ cardShape?: { - `subtitle` - (необязательный) показывает/скрывает подзаголовок карточки - `title` - (необязательный) показывает/скрывает заголовок карточки -### Конфиг по умолчанию {#default-config} +### Конфигурация по умолчанию {#default-config} ~~~jsx {} const defaultCardShape = { diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-data.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-data.md index e19174f..03f781b 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-data.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-data.md @@ -130,4 +130,4 @@ new booking.Booking("#root", { }); ~~~ -**Связанные статьи**: [Определение правил слотов](guides/configuration.md#define-slot-rules) +**Связанная статья**: [Определение правил слотов](guides/configuration.md#define-slot-rules) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md index 43711fa..404c430 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md @@ -57,4 +57,4 @@ widget.api.on("confirm-slot", (obj) => { }); ~~~ -**Связанные статьи**: метод [`setConfirmHandler`](api/methods/booking-setconfirmhandler-method.md) +**Связанная статья**: метод [`setConfirmHandler`](api/methods/booking-setconfirmhandler-method.md) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-getreactivestate.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-getreactivestate.md index e8297bf..187832d 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-getreactivestate.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-getreactivestate.md @@ -16,7 +16,7 @@ description: В документации библиотеки DHTMLX JavaScript api.getReactiveState(): object; ~~~ -### Возвращаемое значение {#returns} +### Возвращает {#returns} Метод возвращает объект, в котором каждое поле является реактивным записываемым хранилищем (`IPublicWritable`), оборачивающим соответствующее значение состояния. Подпишитесь на хранилище с помощью `.subscribe(callback)`, чтобы реагировать на его изменения. Хранимые значения: diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md index 03a94c4..054f7bf 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md @@ -38,4 +38,4 @@ fetch(server + "/data").then((res) => res.json()).then((data) => { widget.api.setNext(someServerService); ~~~ -**Связанные статьи**: [Загрузка данных](guides/loading-data.md) +**Связанная статья**: [Загрузка данных](guides/loading-data.md) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md index 45f2b2b..b74e825 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md @@ -35,4 +35,4 @@ widget.setConfirmHandler((ev) => { -**Связанные статьи**: [Сохранение бронирований на сервере](guides/saving-reservations.md) +**Связанная статья**: [Сохранение бронирований на сервере](guides/saving-reservations.md) From 785e287b3eaa8e7de7609f034b656134ff36e067 Mon Sep 17 00:00:00 2001 From: Serhii Pylypchuk Date: Fri, 17 Jul 2026 22:47:07 +0300 Subject: [PATCH 3/4] [update] enforce do-not-translate terms across locales MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add a "Do not translate" section to i18n/GLOSSARY.md (products, modules, frameworks, tooling, data formats, services) and revert terms that had been localized back to English. - ru: АПИ -> API (60), "шины событий" -> Event Bus (module name) - glossary: list Booking/DHTMLX/dhx/Event Bus, React/Vue/Svelte/ Angular, Node.js/Vite, JS/TS/npm/yarn/CLI, JSON, GitHub/CDN, API Left untouched: generic concept EN itself localizes (booking act -> ru бронирование), false-positive substrings (ru записи, реактивный, превью), de (Event-Bus compound is valid German), ko/zh (already English "Event Bus"). --- i18n/GLOSSARY.md | 30 +++++++++++++++++++ .../current/api/config/booking-cardshape.md | 2 +- .../api/config/booking-cardtemplate.md | 2 +- .../current/api/config/booking-data.md | 2 +- .../current/api/config/booking-end.md | 2 +- .../current/api/config/booking-filtershape.md | 2 +- .../current/api/config/booking-formshape.md | 2 +- .../current/api/config/booking-infoshape.md | 2 +- .../api/config/booking-infotemplate.md | 2 +- .../current/api/config/booking-locale.md | 2 +- .../current/api/config/booking-rendertype.md | 2 +- .../current/api/config/booking-slotgap.md | 2 +- .../current/api/config/booking-slotsize.md | 2 +- .../current/api/config/booking-start.md | 2 +- .../api/events/booking-confirmslot-event.md | 2 +- .../api/events/booking-filterdata-event.md | 2 +- .../api/events/booking-selectitem-event.md | 2 +- .../events/booking-selectitemdate-event.md | 2 +- .../api/events/booking-selectslot-event.md | 2 +- .../current/api/internal/booking-detach.md | 2 +- .../current/api/internal/booking-exec.md | 2 +- .../api/internal/booking-getreactivestate.md | 2 +- .../current/api/internal/booking-getstate.md | 2 +- .../current/api/internal/booking-intercept.md | 2 +- .../current/api/internal/booking-on.md | 2 +- .../current/api/internal/booking-setnext.md | 2 +- .../api/methods/booking-serialize-method.md | 2 +- .../api/methods/booking-setconfig-method.md | 2 +- .../booking-setconfirmhandler-method.md | 2 +- .../api/methods/booking-setlocale-method.md | 2 +- .../api/overview/booking-api-overview.md | 10 +++---- .../api/overview/booking-events-overview.md | 2 +- .../booking-internal-eventbus-overview.md | 2 +- .../booking-internal-state-overview.md | 2 +- .../api/overview/booking-methods-overview.md | 2 +- .../overview/booking-properties-overview.md | 2 +- .../current/guides/configuration.md | 2 +- .../current/guides/initialization.md | 2 +- .../guides/integration-with-angular.md | 2 +- .../guides/integration-with-eventcalendar.md | 2 +- .../current/guides/integration-with-react.md | 2 +- .../guides/integration-with-scheduler.md | 2 +- .../current/guides/integration-with-svelte.md | 2 +- .../current/guides/integration-with-vue.md | 2 +- .../current/guides/loading-data.md | 2 +- .../current/guides/localization.md | 2 +- .../current/guides/saving-reservations.md | 4 +-- .../current/guides/styling.md | 2 +- .../current/how-to-start.md | 6 ++-- .../current/index.md | 4 +-- .../current/news/whats_new.md | 2 +- 51 files changed, 88 insertions(+), 58 deletions(-) diff --git a/i18n/GLOSSARY.md b/i18n/GLOSSARY.md index 3e1ca85..d3afc76 100644 --- a/i18n/GLOSSARY.md +++ b/i18n/GLOSSARY.md @@ -72,3 +72,33 @@ words distinct between types (no `caution`/`warning` duplicates). | `:::warning` | `Предупреждение` | `Warnung` | `경고` | `警告` | | `:::caution` | `Осторожно` | `Vorsicht` | `주의` | `注意` | | `:::danger` | `Опасно` | `Gefahr` | `위험` | `危险` | + +## 5. Do not translate + +Keep these terms in English across all locales. + +**Product & modules:** +- `Booking` — the widget/product name (e.g. "DHTMLX Booking"). *The generic concept* — the act of + booking/reserving — may be localized (ru `бронирование`, ko `예약`, zh `预约`); only the product name + stays `Booking`. +- `DHTMLX`, `dhx` (the `dhx.*` code namespace) +- `Event Bus` — the module name. Keep the English spelling; German may hyphenate it inside a compound + (`Event-Bus-Methoden`). + +**Frameworks & libraries:** +- `React`, `Vue`, `Svelte`, `Angular` + +**Runtime, languages & tooling:** +- `Node.js`, `Vite` +- `JavaScript`, `TypeScript` +- `npm`, `yarn`, `CLI` + +**Data formats:** +- `JSON` + +**Services:** +- `GitHub`, `CDN` + +**Other:** +- `API` — always the Latin `API`, never the Cyrillic transliteration `АПИ`. +- Code identifiers (method / config / event names, `dhx.*`) inside backticks are never translated. diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md index 891672b..c5c04d8 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md @@ -1,7 +1,7 @@ --- sidebar_label: cardShape title: cardShape -description: Вы можете узнать о конфиге cardShape в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник АПИ, пробуйте примеры кода и живые демо, и загружайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: Вы можете узнать о конфиге cardShape в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник API, пробуйте примеры кода и живые демо, и загружайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # cardShape diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-cardtemplate.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-cardtemplate.md index f1a54fb..2639fd9 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-cardtemplate.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-cardtemplate.md @@ -1,7 +1,7 @@ --- sidebar_label: cardTemplate title: cardTemplate -description: Вы можете узнать о конфигурации cardTemplate в документации библиотеки DHTMLX JavaScript Booking. Просматривайте руководства разработчика и справочник АПИ, пробуйте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: Вы можете узнать о конфигурации cardTemplate в документации библиотеки DHTMLX JavaScript Booking. Просматривайте руководства разработчика и справочник API, пробуйте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # cardTemplate diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-data.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-data.md index 03f781b..8493ff4 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-data.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-data.md @@ -1,7 +1,7 @@ --- sidebar_label: data title: data -description: В документации по библиотеке DHTMLX JavaScript Booking вы можете узнать о конфигурации карточек. Изучайте руководства разработчика и справочник АПИ, пробуйте примеры кода и живые демо, загружайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации по библиотеке DHTMLX JavaScript Booking вы можете узнать о конфигурации карточек. Изучайте руководства разработчика и справочник API, пробуйте примеры кода и живые демо, загружайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # data diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-end.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-end.md index 925d280..d80f9c9 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-end.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-end.md @@ -1,7 +1,7 @@ --- sidebar_label: end title: end -description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать о конечной дате. Просматривайте руководства разработчика и справочник АПИ, изучайте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать о конечной дате. Просматривайте руководства разработчика и справочник API, изучайте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # end diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-filtershape.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-filtershape.md index 9dca398..0339e5f 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-filtershape.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-filtershape.md @@ -1,7 +1,7 @@ --- sidebar_label: filterShape title: filterShape -description: Вы можете узнать о конфигурационном параметре filterShape в документации библиотеки DHTMLX JavaScript Booking. Изучите руководства разработчика и справочник АПИ, попробуйте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: Вы можете узнать о конфигурационном параметре filterShape в документации библиотеки DHTMLX JavaScript Booking. Изучите руководства разработчика и справочник API, попробуйте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # filterShape diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-formshape.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-formshape.md index 7ec14c5..dd5340a 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-formshape.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-formshape.md @@ -1,7 +1,7 @@ --- sidebar_label: formShape title: formShape -description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать о конфиге formShape. Изучайте руководства разработчика и справочник АПИ, пробуйте примеры кода и живые демо, загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать о конфиге formShape. Изучайте руководства разработчика и справочник API, пробуйте примеры кода и живые демо, загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # formShape diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-infoshape.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-infoshape.md index c0ecc2e..c701c28 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-infoshape.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-infoshape.md @@ -1,7 +1,7 @@ --- sidebar_label: infoShape title: infoShape -description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать о конфигурации infoShape. Изучайте руководства разработчика и справочник АПИ, пробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать о конфигурации infoShape. Изучайте руководства разработчика и справочник API, пробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # infoShape diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-infotemplate.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-infotemplate.md index ae3d62e..8e6b985 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-infotemplate.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-infotemplate.md @@ -1,7 +1,7 @@ --- sidebar_label: infoTemplate title: infoTemplate -description: Узнайте о конфигурационном параметре infoTemplate в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник АПИ, смотрите примеры кода и демонстрации, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: Узнайте о конфигурационном параметре infoTemplate в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник API, смотрите примеры кода и демонстрации, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # infoTemplate diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-locale.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-locale.md index f9522e0..813ab5e 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-locale.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-locale.md @@ -1,7 +1,7 @@ --- sidebar_label: locale title: locale -description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать о настройке локали. Изучайте руководства разработчика и справочник АПИ, пробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать о настройке локали. Изучайте руководства разработчика и справочник API, пробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # locale diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-rendertype.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-rendertype.md index a4cbd3f..c6b6877 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-rendertype.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-rendertype.md @@ -1,7 +1,7 @@ --- sidebar_label: renderType title: renderType -description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать о свойстве renderType. Изучайте руководства разработчика и справочник АПИ, просматривайте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать о свойстве renderType. Изучайте руководства разработчика и справочник API, просматривайте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # renderType diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-slotgap.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-slotgap.md index b2ee4c2..1574ed9 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-slotgap.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-slotgap.md @@ -1,7 +1,7 @@ --- sidebar_label: slotGap title: slotGap -description: В документации DHTMLX JavaScript Booking библиотеки вы можете узнать о параметре slotGap. Изучите руководства разработчика и справочник АПИ, попробуйте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации DHTMLX JavaScript Booking библиотеки вы можете узнать о параметре slotGap. Изучите руководства разработчика и справочник API, попробуйте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # slotGap diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-slotsize.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-slotsize.md index 4cf8e4e..465dae7 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-slotsize.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-slotsize.md @@ -1,7 +1,7 @@ --- sidebar_label: slotSize title: slotSize -description: В документации DHTMLX JavaScript Booking вы можете узнать о параметре slotSize. Изучайте руководства для разработчиков и справочник АПИ, пробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации DHTMLX JavaScript Booking вы можете узнать о параметре slotSize. Изучайте руководства для разработчиков и справочник API, пробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # slotSize diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-start.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-start.md index 08efc62..ee41db2 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-start.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-start.md @@ -1,7 +1,7 @@ --- sidebar_label: start title: start -description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать о начальной дате. Изучайте руководства разработчика и справочник АПИ, просматривайте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать о начальной дате. Изучайте руководства разработчика и справочник API, просматривайте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # start diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md index 404c430..a51e4da 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md @@ -1,7 +1,7 @@ --- sidebar_label: confirm-slot title: Событие confirm-slot -description: Вы можете узнать о событии confirm-slot в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник АПИ, пробуйте примеры кода и живые демо, а также загружайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: Вы можете узнать о событии confirm-slot в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник API, пробуйте примеры кода и живые демо, а также загружайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # confirm-slot diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-filterdata-event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-filterdata-event.md index 8dcf016..fb004ec 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-filterdata-event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-filterdata-event.md @@ -1,7 +1,7 @@ --- sidebar_label: filter-data title: filter-data Event -description: Вы можете узнать о событии filter-data в документации JavaScript-библиотеки DHTMLX Booking. Изучайте руководства разработчика и справочник АПИ, запускайте примеры кода и живые демо, загружайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: Вы можете узнать о событии filter-data в документации JavaScript-библиотеки DHTMLX Booking. Изучайте руководства разработчика и справочник API, запускайте примеры кода и живые демо, загружайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # filter-data diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-selectitem-event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-selectitem-event.md index 873a538..7b0a03e 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-selectitem-event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-selectitem-event.md @@ -1,7 +1,7 @@ --- sidebar_label: select-item title: События select-item -description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать о событии select-item. Изучайте руководства разработчика и справочник АПИ, пробуйте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать о событии select-item. Изучайте руководства разработчика и справочник API, пробуйте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # select-item diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-selectitemdate-event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-selectitemdate-event.md index 21bc5a7..04160bd 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-selectitemdate-event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-selectitemdate-event.md @@ -1,7 +1,7 @@ --- sidebar_label: select-item-date title: Событие select-item-date -description: В документации DHTMLX JavaScript Booking можно узнать о событии select-item-date. Изучайте руководства разработчика и справочник АПИ, пробуйте примеры кода и живые демо, скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации DHTMLX JavaScript Booking можно узнать о событии select-item-date. Изучайте руководства разработчика и справочник API, пробуйте примеры кода и живые демо, скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # select-item-date diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-selectslot-event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-selectslot-event.md index f593bd1..fca1c55 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-selectslot-event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-selectslot-event.md @@ -1,7 +1,7 @@ --- sidebar_label: select-slot title: События select-slot -description: В документации DHTMLX JavaScript Booking вы можете узнать о событии select-slot. Изучайте руководства для разработчиков и справочник АПИ, просматривайте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации DHTMLX JavaScript Booking вы можете узнать о событии select-slot. Изучайте руководства для разработчиков и справочник API, просматривайте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # select-slot diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-detach.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-detach.md index 13d438d..8b063ad 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-detach.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-detach.md @@ -1,7 +1,7 @@ --- sidebar_label: api.detach() title: Метод detach() -description: Вы можете узнать о методе detach в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник АПИ, пробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: Вы можете узнать о методе detach в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник API, пробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # api.detach() diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-exec.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-exec.md index 368b413..6d64b45 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-exec.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-exec.md @@ -1,7 +1,7 @@ --- sidebar_label: api.exec() title: Метод exec() -description: Вы можете ознакомиться с методом exec в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник АПИ, просматривайте примеры кода и живые демо, загружайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: Вы можете ознакомиться с методом exec в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник API, просматривайте примеры кода и живые демо, загружайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # api.exec() diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-getreactivestate.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-getreactivestate.md index 187832d..9664f85 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-getreactivestate.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-getreactivestate.md @@ -1,7 +1,7 @@ --- sidebar_label: api.getReactiveState() title: Метод getReactiveState() -description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать о методе getReactiveState. Изучайте руководства разработчика и справочник АПИ, просматривайте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать о методе getReactiveState. Изучайте руководства разработчика и справочник API, просматривайте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # api.getReactiveState() diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-getstate.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-getstate.md index f599bc1..b86676b 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-getstate.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-getstate.md @@ -1,7 +1,7 @@ --- sidebar_label: api.getState() title: Метод getState() -description: В документации DHTMLX JavaScript Booking вы можете узнать о методе getState. Изучайте руководства разработчика и справочник АПИ, просматривайте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации DHTMLX JavaScript Booking вы можете узнать о методе getState. Изучайте руководства разработчика и справочник API, просматривайте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # api.getState() diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-intercept.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-intercept.md index 284ee6c..a24010a 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-intercept.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-intercept.md @@ -1,7 +1,7 @@ --- sidebar_label: api.intercept() title: Метод intercept() -description: Вы можете узнать о методе intercept в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник АПИ, пробуйте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: Вы можете узнать о методе intercept в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник API, пробуйте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # api.intercept() diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-on.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-on.md index 22e0e26..ba3409f 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-on.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-on.md @@ -1,7 +1,7 @@ --- sidebar_label: api.on() title: Метод on() -description: В документации DHTMLX JavaScript Booking можно узнать о методе on. Просматривайте руководства разработчика и справочник АПИ, пробуйте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации DHTMLX JavaScript Booking можно узнать о методе on. Просматривайте руководства разработчика и справочник API, пробуйте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # api.on() diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md index 054f7bf..b797e3b 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md @@ -1,7 +1,7 @@ --- sidebar_label: api.setNext() title: Метод setNext() -description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать о методе setNext. Изучите руководства для разработчиков и справочник АПИ, ознакомьтесь с примерами кода и живыми демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать о методе setNext. Изучите руководства для разработчиков и справочник API, ознакомьтесь с примерами кода и живыми демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # api.setNext() diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-serialize-method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-serialize-method.md index fea6fe5..b5c66cd 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-serialize-method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-serialize-method.md @@ -1,7 +1,7 @@ --- sidebar_label: serialize() title: Метод serialize() -description: Вы можете узнать о методе serialize() в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник АПИ, пробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: Вы можете узнать о методе serialize() в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник API, пробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # serialize() diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-setconfig-method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-setconfig-method.md index 8c26f52..eb64fe1 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-setconfig-method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-setconfig-method.md @@ -1,7 +1,7 @@ --- sidebar_label: setConfig() title: Метод setConfig() -description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать о методе setConfig(). Изучайте руководства разработчика и справочник АПИ, смотрите примеры кода и живые демо, скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать о методе setConfig(). Изучайте руководства разработчика и справочник API, смотрите примеры кода и живые демо, скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # setConfig() diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md index b74e825..9c00f99 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md @@ -1,7 +1,7 @@ --- sidebar_label: setConfirmHandler() title: Метод setConfirmHandler() -description: В документации DHTMLX JavaScript Booking вы можете узнать о методе setConfirmHandler(). Просматривайте руководства разработчика и справочник АПИ, изучайте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации DHTMLX JavaScript Booking вы можете узнать о методе setConfirmHandler(). Просматривайте руководства разработчика и справочник API, изучайте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # setConfirmHandler() diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-setlocale-method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-setlocale-method.md index 44fe07d..e4e368d 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-setlocale-method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-setlocale-method.md @@ -1,7 +1,7 @@ --- sidebar_label: setLocale() title: Метод setLocale() -description: В документации DHTMLX JavaScript Booking вы можете узнать о методе setLocale(). Изучайте руководства разработчика и справочник АПИ, запускайте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации DHTMLX JavaScript Booking вы можете узнать о методе setLocale(). Изучайте руководства разработчика и справочник API, запускайте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # setLocale() diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/booking-api-overview.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/booking-api-overview.md index 5d85325..82e279d 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/booking-api-overview.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/booking-api-overview.md @@ -1,10 +1,10 @@ --- -sidebar_label: Обзор АПИ -title: Обзор АПИ -description: Вы можете ознакомиться с обзором АПИ JavaScript Booking в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник АПИ, пробуйте примеры кода и живые демо, а также загружайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +sidebar_label: Обзор API +title: Обзор API +description: Вы можете ознакомиться с обзором API JavaScript Booking в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник API, пробуйте примеры кода и живые демо, а также загружайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- -# Обзор АПИ {#api-overview} +# Обзор API {#api-overview} ## Конструктор Booking {#booking-constructor} @@ -28,7 +28,7 @@ new booking.Booking("#root", { | [](api/methods/booking-setconfirmhandler-method.md) | @getshort(../methods/booking-setconfirmhandler-method.md) | | [](api/methods/booking-setlocale-method.md) | @getshort(../methods/booking-setlocale-method.md) | -## Внутреннее АПИ Booking {#booking-internal-api} +## Внутреннее API Booking {#booking-internal-api} ### Методы Event Bus {#event-bus-methods} diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/booking-events-overview.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/booking-events-overview.md index a0b4aeb..ef7db9d 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/booking-events-overview.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/booking-events-overview.md @@ -1,7 +1,7 @@ --- sidebar_label: Обзор событий title: Обзор событий -description: В документации библиотеки DHTMLX JavaScript Booking представлен обзор событий. Просматривайте руководства разработчика и справочник АПИ, изучайте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации библиотеки DHTMLX JavaScript Booking представлен обзор событий. Просматривайте руководства разработчика и справочник API, изучайте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # Обзор событий diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/booking-internal-eventbus-overview.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/booking-internal-eventbus-overview.md index d5b4884..7c706c4 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/booking-internal-eventbus-overview.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/booking-internal-eventbus-overview.md @@ -1,7 +1,7 @@ --- sidebar_label: Обзор методов Event Bus title: Обзор методов Event Bus -description: В документации библиотеки DHTMLX JavaScript Booking вы найдёте обзор методов шины событий. Изучите руководства разработчика и справочник АПИ, попробуйте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации библиотеки DHTMLX JavaScript Booking вы найдёте обзор методов Event Bus. Изучите руководства разработчика и справочник API, попробуйте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # Обзор методов Event Bus {#event-bus-methods-overview} diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/booking-internal-state-overview.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/booking-internal-state-overview.md index 1c4b490..ca67e19 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/booking-internal-state-overview.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/booking-internal-state-overview.md @@ -1,7 +1,7 @@ --- sidebar_label: Обзор методов состояния title: Обзор методов состояния -description: Вы можете ознакомиться с обзором АПИ JavaScript Booking в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник АПИ, пробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: Вы можете ознакомиться с обзором API JavaScript Booking в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник API, пробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # Обзор методов состояния diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/booking-methods-overview.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/booking-methods-overview.md index 52cd144..0a58d7f 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/booking-methods-overview.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/booking-methods-overview.md @@ -1,7 +1,7 @@ --- sidebar_label: Обзор методов title: Обзор методов -description: В документации библиотеки DHTMLX JavaScript Booking доступен обзор методов. Изучайте руководства разработчика и справочник АПИ, пробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации библиотеки DHTMLX JavaScript Booking доступен обзор методов. Изучайте руководства разработчика и справочник API, пробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # Обзор методов diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/booking-properties-overview.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/booking-properties-overview.md index 3b8bc3f..66f9469 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/booking-properties-overview.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/booking-properties-overview.md @@ -1,7 +1,7 @@ --- sidebar_label: Обзор свойств title: Обзор свойств -description: Вы можете ознакомиться с обзором свойств JavaScript Booking в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник АПИ, пробуйте примеры кода и живые демо, и скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: Вы можете ознакомиться с обзором свойств JavaScript Booking в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник API, пробуйте примеры кода и живые демо, и скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # Обзор свойств diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/guides/configuration.md b/i18n/ru/docusaurus-plugin-content-docs/current/guides/configuration.md index a8f6b41..dbd6657 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/guides/configuration.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/guides/configuration.md @@ -1,7 +1,7 @@ --- sidebar_label: Конфигурация title: Конфигурация -description: Вы можете узнать о конфигурации в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник АПИ, пробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: Вы можете узнать о конфигурации в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник API, пробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # Конфигурация diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/guides/initialization.md b/i18n/ru/docusaurus-plugin-content-docs/current/guides/initialization.md index 699e831..9655cfb 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/guides/initialization.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/guides/initialization.md @@ -1,7 +1,7 @@ --- sidebar_label: Инициализация title: Инициализация -description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать об инициализации. Изучайте руководства разработчика и справочник АПИ, пробуйте примеры кода и живые демо, загружайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать об инициализации. Изучайте руководства разработчика и справочник API, пробуйте примеры кода и живые демо, загружайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # Инициализация {#initialization} diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/guides/integration-with-angular.md b/i18n/ru/docusaurus-plugin-content-docs/current/guides/integration-with-angular.md index 8a50368..ff50d5c 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/guides/integration-with-angular.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/guides/integration-with-angular.md @@ -1,7 +1,7 @@ --- sidebar_label: Интеграция с Angular title: Интеграция с Angular -description: Вы можете узнать об интеграции с Angular в документации библиотеки DHTMLX JavaScript Booking. Ознакомьтесь с руководствами разработчика и справочником АПИ, попробуйте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: Вы можете узнать об интеграции с Angular в документации библиотеки DHTMLX JavaScript Booking. Ознакомьтесь с руководствами разработчика и справочником API, попробуйте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # Интеграция с Angular {#integration-with-angular} diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/guides/integration-with-eventcalendar.md b/i18n/ru/docusaurus-plugin-content-docs/current/guides/integration-with-eventcalendar.md index 1a9153b..1397f44 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/guides/integration-with-eventcalendar.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/guides/integration-with-eventcalendar.md @@ -1,7 +1,7 @@ --- sidebar_label: Интеграция с Event Calendar title: Интеграция с DHTMLX Event Calendar -description: Вы можете узнать об интеграции с DHTMLX Event Calendar в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства для разработчиков и справочник АПИ, пробуйте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: Вы можете узнать об интеграции с DHTMLX Event Calendar в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства для разработчиков и справочник API, пробуйте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # Интеграция с DHTMLX Event Calendar diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/guides/integration-with-react.md b/i18n/ru/docusaurus-plugin-content-docs/current/guides/integration-with-react.md index ee0fc1e..132fbc8 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/guides/integration-with-react.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/guides/integration-with-react.md @@ -1,7 +1,7 @@ --- sidebar_label: Интеграция с React title: Интеграция с React -description: Вы можете узнать об интеграции с React в документации библиотеки DHTMLX JavaScript Booking. Ознакомьтесь с руководствами разработчика и справочником АПИ, попробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: Вы можете узнать об интеграции с React в документации библиотеки DHTMLX JavaScript Booking. Ознакомьтесь с руководствами разработчика и справочником API, попробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # Интеграция с React {#integration-with-react} diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/guides/integration-with-scheduler.md b/i18n/ru/docusaurus-plugin-content-docs/current/guides/integration-with-scheduler.md index 4817ef3..8b61985 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/guides/integration-with-scheduler.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/guides/integration-with-scheduler.md @@ -1,7 +1,7 @@ --- sidebar_label: Интеграция с Scheduler title: Интеграция с DHTMLX Scheduler -description: Вы можете узнать об интеграции с DHTMLX Scheduler в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства для разработчиков и справочник АПИ, пробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: Вы можете узнать об интеграции с DHTMLX Scheduler в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства для разработчиков и справочник API, пробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # Интеграция с DHTMLX Scheduler {#integration-with-dhtmlx-scheduler} diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/guides/integration-with-svelte.md b/i18n/ru/docusaurus-plugin-content-docs/current/guides/integration-with-svelte.md index 14e91cd..5461931 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/guides/integration-with-svelte.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/guides/integration-with-svelte.md @@ -1,7 +1,7 @@ --- sidebar_label: Интеграция со Svelte title: Интеграция со Svelte -description: Вы можете узнать об интеграции со Svelte в документации библиотеки DHTMLX JavaScript Booking. Просматривайте руководства разработчика и справочник АПИ, изучайте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: Вы можете узнать об интеграции со Svelte в документации библиотеки DHTMLX JavaScript Booking. Просматривайте руководства разработчика и справочник API, изучайте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # Интеграция со Svelte {#integration-with-svelte} diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/guides/integration-with-vue.md b/i18n/ru/docusaurus-plugin-content-docs/current/guides/integration-with-vue.md index f6e8288..990705d 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/guides/integration-with-vue.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/guides/integration-with-vue.md @@ -1,7 +1,7 @@ --- sidebar_label: Интеграция с Vue title: Интеграция с Vue -description: Вы можете узнать об интеграции с Vue в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник АПИ, пробуйте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: Вы можете узнать об интеграции с Vue в документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник API, пробуйте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # Интеграция с Vue {#integration-with-vue} diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/guides/loading-data.md b/i18n/ru/docusaurus-plugin-content-docs/current/guides/loading-data.md index 40018ca..5a2861f 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/guides/loading-data.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/guides/loading-data.md @@ -1,7 +1,7 @@ --- sidebar_label: Загрузка данных title: Загрузка данных -description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать, как загружать данные в Booking. Изучайте руководства разработчика и справочник АПИ, пробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать, как загружать данные в Booking. Изучайте руководства разработчика и справочник API, пробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # Загрузка данных {#loading-data} diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/guides/localization.md b/i18n/ru/docusaurus-plugin-content-docs/current/guides/localization.md index 29b08c2..33cc81c 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/guides/localization.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/guides/localization.md @@ -1,7 +1,7 @@ --- sidebar_label: Локализация title: Локализация -description: Вы можете узнать о локализации в документации библиотеки DHTMLX JavaScript Booking. Просматривайте руководства разработчика и справочник АПИ, изучайте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: Вы можете узнать о локализации в документации библиотеки DHTMLX JavaScript Booking. Просматривайте руководства разработчика и справочник API, изучайте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # Локализация {#localization} diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/guides/saving-reservations.md b/i18n/ru/docusaurus-plugin-content-docs/current/guides/saving-reservations.md index e4aad2d..cd2c6ef 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/guides/saving-reservations.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/guides/saving-reservations.md @@ -1,7 +1,7 @@ --- sidebar_label: Работа с сервером title: Работа с сервером -description: В документации по библиотеке DHTMLX JavaScript Booking вы найдёте информацию о работе с сервером. Изучайте руководства разработчика и справочник АПИ, пробуйте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации по библиотеке DHTMLX JavaScript Booking вы найдёте информацию о работе с сервером. Изучайте руководства разработчика и справочник API, пробуйте примеры кода и живые демо, а также загрузите бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # Работа с сервером @@ -10,7 +10,7 @@ description: В документации по библиотеке DHTMLX JavaSc ## Загрузка данных с сервера {#load-data-from-the-server} -Получите данные карточек с помощью нативного АПИ `fetch` (или любого другого HTTP-клиента) и передайте разобранный JSON в виджет через метод [`setConfig()`](api/methods/booking-setconfig-method.md). +Получите данные карточек с помощью нативного API `fetch` (или любого другого HTTP-клиента) и передайте разобранный JSON в виджет через метод [`setConfig()`](api/methods/booking-setconfig-method.md). Следующий фрагмент кода инициализирует пустой экземпляр Booking и загружает набор данных после получения ответа: diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/guides/styling.md b/i18n/ru/docusaurus-plugin-content-docs/current/guides/styling.md index 21b3d6c..36bb639 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/guides/styling.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/guides/styling.md @@ -1,7 +1,7 @@ --- sidebar_label: Стилизация title: Стилизация -description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать о стилизации виджета. Изучите руководства разработчика и справочник АПИ, попробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации библиотеки DHTMLX JavaScript Booking вы можете узнать о стилизации виджета. Изучите руководства разработчика и справочник API, попробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # Стилизация {#styling} diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/how-to-start.md b/i18n/ru/docusaurus-plugin-content-docs/current/how-to-start.md index 02e1ff3..023ecb5 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/how-to-start.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/how-to-start.md @@ -1,7 +1,7 @@ --- sidebar_label: Начало работы title: Начало работы -description: Узнайте, как начать работу с DHTMLX Booking, из документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник АПИ, просматривайте примеры кода и живые демонстрации, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: Узнайте, как начать работу с DHTMLX Booking, из документации библиотеки DHTMLX JavaScript Booking. Изучайте руководства разработчика и справочник API, просматривайте примеры кода и живые демонстрации, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # Начало работы {#how-to-start} @@ -153,7 +153,7 @@ new booking.Booking("#root", { ## Что дальше {#whats-next} -Это всё, что нужно для создания простого Booking на странице. Далее изучите АПИ Booking: +Это всё, что нужно для создания простого Booking на странице. Далее изучите API Booking: - страницы [руководств](/category/guides) содержат инструкции по установке, загрузке данных, настройке стилей и другие полезные советы по конфигурации Booking -- [справочник АПИ](api/overview/booking-api-overview.md) описывает функциональность Booking +- [справочник API](api/overview/booking-api-overview.md) описывает функциональность Booking diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/index.md b/i18n/ru/docusaurus-plugin-content-docs/current/index.md index e1cb6ba..0aa1be5 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/index.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/index.md @@ -2,7 +2,7 @@ sidebar_label: Обзор Booking title: Обзор JavaScript Booking slug: / -description: В документации вы найдёте обзор библиотеки DHTMLX JavaScript Booking. Изучите руководства разработчика и справочник АПИ, попробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: В документации вы найдёте обзор библиотеки DHTMLX JavaScript Booking. Изучите руководства разработчика и справочник API, попробуйте примеры кода и живые демо, а также скачайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # Обзор DHTMLX Booking @@ -55,7 +55,7 @@ JavaScript Booking — это готовый компонент, предназ - from: 12, to: 17 (Afternoon) - from: 17, to: 20 (Evening) -Настроить параметры фильтра можно через АПИ: [Настройка фильтра](guides/configuration.md#configure-the-filter) +Настроить параметры фильтра можно через API: [Настройка фильтра](guides/configuration.md#configure-the-filter) ## Запись на приём {#making-an-appointment} diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/news/whats_new.md b/i18n/ru/docusaurus-plugin-content-docs/current/news/whats_new.md index ac8edea..755ff55 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/news/whats_new.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/news/whats_new.md @@ -1,7 +1,7 @@ --- sidebar_label: Что нового title: Что нового -description: Вы можете узнать, что нового появилось в DHTMLX Booking, а также ознакомиться с историей релизов в документации библиотеки интерфейсных компонентов DHTMLX JavaScript. Изучайте руководства для разработчиков и справочник АПИ, просматривайте примеры кода и живые демо, а также загружайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. +description: Вы можете узнать, что нового появилось в DHTMLX Booking, а также ознакомиться с историей релизов в документации библиотеки интерфейсных компонентов DHTMLX JavaScript. Изучайте руководства для разработчиков и справочник API, просматривайте примеры кода и живые демо, а также загружайте бесплатную 30-дневную ознакомительную версию DHTMLX Booking. --- # Что нового {#whats-new} From a49f246d9e97dd42938f2f5350b05dc2dec3bda5 Mon Sep 17 00:00:00 2001 From: Serhii Pylypchuk Date: Tue, 21 Jul 2026 10:48:44 +0300 Subject: [PATCH 4/4] [update] align doc translations with i18n glossary MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - normalize section labels/headings to the updated GLOSSARY.md template phrases across EN/ru/de/ko/zh (88 .md files): - move the colon inside the bold "Related …" labels - ru: Связанные статьи -> Полезные статьи, Возвращает -> Возвращаемое значение, Новая функциональность -> Новый функционал - de: drop "?" in "Wie geht es weiter" - ko: Parameters heading 파라미터 -> 매개변수 - retarget GLOSSARY.md "Do not translate" section to Booking: restore Booking/Event Bus terms, add Scheduler/Event Calendar, drop Spreadsheet-specific entries (Excel/XLSX/CSV/Redux/Sheet Manager) --- docs/api/config/booking-cardshape.md | 2 +- docs/api/config/booking-cardtemplate.md | 2 +- docs/api/config/booking-data.md | 2 +- docs/api/config/booking-infoshape.md | 2 +- docs/api/config/booking-infotemplate.md | 2 +- docs/api/config/booking-locale.md | 2 +- docs/api/events/booking-confirmslot-event.md | 2 +- docs/api/internal/booking-setnext.md | 2 +- .../booking-setconfirmhandler-method.md | 2 +- docs/api/methods/booking-setlocale-method.md | 2 +- docs/guides/loading-data.md | 2 +- docs/guides/localization.md | 2 +- docs/guides/saving-reservations.md | 2 +- i18n/GLOSSARY.md | 63 ++++++++++--------- .../current/api/config/booking-cardshape.md | 2 +- .../api/config/booking-cardtemplate.md | 2 +- .../current/api/config/booking-data.md | 2 +- .../current/api/config/booking-infoshape.md | 2 +- .../api/config/booking-infotemplate.md | 2 +- .../current/api/config/booking-locale.md | 2 +- .../api/events/booking-confirmslot-event.md | 2 +- .../current/api/internal/booking-setnext.md | 2 +- .../booking-setconfirmhandler-method.md | 2 +- .../api/methods/booking-setlocale-method.md | 2 +- .../current/guides/loading-data.md | 2 +- .../current/guides/localization.md | 2 +- .../current/guides/saving-reservations.md | 2 +- .../current/how-to-start.md | 2 +- .../current/index.md | 2 +- .../current/api/config/booking-cardshape.md | 4 +- .../api/config/booking-cardtemplate.md | 4 +- .../current/api/config/booking-data.md | 4 +- .../current/api/config/booking-end.md | 2 +- .../current/api/config/booking-filtershape.md | 2 +- .../current/api/config/booking-formshape.md | 2 +- .../current/api/config/booking-infoshape.md | 4 +- .../api/config/booking-infotemplate.md | 4 +- .../current/api/config/booking-locale.md | 2 +- .../current/api/config/booking-rendertype.md | 2 +- .../current/api/config/booking-slotgap.md | 2 +- .../current/api/config/booking-slotsize.md | 2 +- .../current/api/config/booking-start.md | 2 +- .../api/events/booking-confirmslot-event.md | 4 +- .../api/events/booking-filterdata-event.md | 2 +- .../api/events/booking-selectitem-event.md | 2 +- .../events/booking-selectitemdate-event.md | 2 +- .../api/events/booking-selectslot-event.md | 2 +- .../current/api/internal/booking-detach.md | 2 +- .../current/api/internal/booking-exec.md | 2 +- .../current/api/internal/booking-intercept.md | 2 +- .../current/api/internal/booking-on.md | 2 +- .../current/api/internal/booking-setnext.md | 4 +- .../api/methods/booking-setconfig-method.md | 2 +- .../booking-setconfirmhandler-method.md | 4 +- .../api/methods/booking-setlocale-method.md | 4 +- .../api/overview/booking-api-overview.md | 2 +- .../current/guides/loading-data.md | 2 +- .../current/guides/localization.md | 2 +- .../current/guides/saving-reservations.md | 2 +- .../current/api/config/booking-cardshape.md | 2 +- .../api/config/booking-cardtemplate.md | 2 +- .../current/api/config/booking-data.md | 2 +- .../current/api/config/booking-infoshape.md | 2 +- .../api/config/booking-infotemplate.md | 2 +- .../current/api/config/booking-locale.md | 2 +- .../api/events/booking-confirmslot-event.md | 2 +- .../api/internal/booking-getreactivestate.md | 2 +- .../current/api/internal/booking-getstate.md | 2 +- .../current/api/internal/booking-setnext.md | 2 +- .../api/methods/booking-serialize-method.md | 2 +- .../booking-setconfirmhandler-method.md | 2 +- .../api/methods/booking-setlocale-method.md | 2 +- .../current/guides/loading-data.md | 2 +- .../current/guides/localization.md | 2 +- .../current/guides/saving-reservations.md | 2 +- .../current/news/whats_new.md | 2 +- .../current/api/config/booking-cardshape.md | 2 +- .../api/config/booking-cardtemplate.md | 2 +- .../current/api/config/booking-data.md | 2 +- .../current/api/config/booking-infoshape.md | 2 +- .../api/config/booking-infotemplate.md | 2 +- .../current/api/config/booking-locale.md | 2 +- .../api/events/booking-confirmslot-event.md | 2 +- .../current/api/internal/booking-setnext.md | 2 +- .../booking-setconfirmhandler-method.md | 2 +- .../api/methods/booking-setlocale-method.md | 2 +- .../current/guides/loading-data.md | 2 +- .../current/guides/localization.md | 2 +- .../current/guides/saving-reservations.md | 2 +- 89 files changed, 131 insertions(+), 126 deletions(-) diff --git a/docs/api/config/booking-cardshape.md b/docs/api/config/booking-cardshape.md index 65bc2a9..5e121c7 100644 --- a/docs/api/config/booking-cardshape.md +++ b/docs/api/config/booking-cardshape.md @@ -73,7 +73,7 @@ The snippet below demonstrates how to configure what fields to display on the le You can also configure the appearance of a card using the [`cardTemplate`](api/config/booking-cardtemplate.md) property. If both `cardTemplate` and `cardShape` are applied, `cardTemplate` will override the `cardShape` settings. ::: -**Related articles**: +**Related articles:** - [Defining the structure of cards](guides/configuration.md#define-the-structure-of-cards) - [`cardTemplate`](api/config/booking-cardtemplate.md) diff --git a/docs/api/config/booking-cardtemplate.md b/docs/api/config/booking-cardtemplate.md index 3b19c55..21065e6 100644 --- a/docs/api/config/booking-cardtemplate.md +++ b/docs/api/config/booking-cardtemplate.md @@ -83,7 +83,7 @@ The snippet below demonstrates how to apply a template to the left block of a ca -**Related articles**: +**Related articles:** - [Defining the structure of cards](guides/configuration.md#define-the-structure-of-cards) - [`cardShape`](api/config/booking-cardshape.md) diff --git a/docs/api/config/booking-data.md b/docs/api/config/booking-data.md index 186092f..95633a3 100644 --- a/docs/api/config/booking-data.md +++ b/docs/api/config/booking-data.md @@ -130,4 +130,4 @@ new booking.Booking("#root", { }); ~~~ -**Related article**: [Defining slot rules](guides/configuration.md#define-slot-rules) +**Related article:** [Defining slot rules](guides/configuration.md#define-slot-rules) diff --git a/docs/api/config/booking-infoshape.md b/docs/api/config/booking-infoshape.md index 6f2860a..db20542 100644 --- a/docs/api/config/booking-infoshape.md +++ b/docs/api/config/booking-infoshape.md @@ -67,7 +67,7 @@ The snippet below shows how to configure what to display on the left side of the You can also control which fields to display in the information block of the Booking dialog using the [`infoTemplate`](api/config/booking-infotemplate.md) property. But if both properties are applied, `infoTemplate` will override the `infoShape` settings. ::: -**Related articles**: +**Related articles:** - [Configuring the Booking dialog](guides/configuration.md#configure-the-booking-dialog) - [`infoTemplate`](api/config/booking-infotemplate.md) diff --git a/docs/api/config/booking-infotemplate.md b/docs/api/config/booking-infotemplate.md index ddb245c..7f9ee7e 100644 --- a/docs/api/config/booking-infotemplate.md +++ b/docs/api/config/booking-infotemplate.md @@ -86,7 +86,7 @@ The snippet below shows how to apply a template to the information block of the You can also control which fields to display in the information block of the Booking dialog using the [`infoShape`](api/config/booking-infoshape.md) property. But if both properties are applied, `infoTemplate` will override the `infoShape` settings. ::: -**Related articles**: +**Related articles:** - [Configuring the Booking dialog](guides/configuration.md#configure-the-booking-dialog) - [`infoShape`](api/config/booking-infoshape.md) diff --git a/docs/api/config/booking-locale.md b/docs/api/config/booking-locale.md index e201272..0bb8f33 100644 --- a/docs/api/config/booking-locale.md +++ b/docs/api/config/booking-locale.md @@ -34,6 +34,6 @@ const widget = new booking.Booking("#root", { }); ~~~ -**Related articles**: +**Related articles:** - [setLocale()](api/methods/booking-setlocale-method.md) - [Localization](guides/localization.md) diff --git a/docs/api/events/booking-confirmslot-event.md b/docs/api/events/booking-confirmslot-event.md index de3e90e..0aba858 100644 --- a/docs/api/events/booking-confirmslot-event.md +++ b/docs/api/events/booking-confirmslot-event.md @@ -57,4 +57,4 @@ widget.api.on("confirm-slot", (obj) => { }); ~~~ -**Related article**: [`setConfirmHandler`](api/methods/booking-setconfirmhandler-method.md) method +**Related article:** [`setConfirmHandler`](api/methods/booking-setconfirmhandler-method.md) method diff --git a/docs/api/internal/booking-setnext.md b/docs/api/internal/booking-setnext.md index 61d0832..55b72ea 100644 --- a/docs/api/internal/booking-setnext.md +++ b/docs/api/internal/booking-setnext.md @@ -38,4 +38,4 @@ fetch(server + "/data").then((res) => res.json()).then((data) => { widget.api.setNext(someServerService); ~~~ -**Related article**: [Loading data](guides/loading-data.md) +**Related article:** [Loading data](guides/loading-data.md) diff --git a/docs/api/methods/booking-setconfirmhandler-method.md b/docs/api/methods/booking-setconfirmhandler-method.md index f3ea453..99cac54 100644 --- a/docs/api/methods/booking-setconfirmhandler-method.md +++ b/docs/api/methods/booking-setconfirmhandler-method.md @@ -35,4 +35,4 @@ widget.setConfirmHandler((ev) => { -**Related article**: [Saving reservations to the server](guides/saving-reservations.md) +**Related article:** [Saving reservations to the server](guides/saving-reservations.md) diff --git a/docs/api/methods/booking-setlocale-method.md b/docs/api/methods/booking-setlocale-method.md index fe5a8e7..a82b87c 100644 --- a/docs/api/methods/booking-setlocale-method.md +++ b/docs/api/methods/booking-setlocale-method.md @@ -37,6 +37,6 @@ widget.setLocale(booking.locales.de); widget.setLocale(); // or setLocale(null); ~~~ -**Related articles**: +**Related articles:** - [locale](api/config/booking-locale.md) - [Localization](guides/localization.md) diff --git a/docs/guides/loading-data.md b/docs/guides/loading-data.md index ae87d08..1b076ce 100644 --- a/docs/guides/loading-data.md +++ b/docs/guides/loading-data.md @@ -197,7 +197,7 @@ For server-side persistence of bookings, see the [Saving reservations to the ser --- -**Related articles**: +**Related articles:** - [`confirm-slot`](api/events/booking-confirmslot-event.md) — handle slot booking confirmation - [`setConfig()`](api/methods/booking-setconfig-method.md) — update the widget configuration after initialization diff --git a/docs/guides/localization.md b/docs/guides/localization.md index 30cd7e5..5bae5f2 100644 --- a/docs/guides/localization.md +++ b/docs/guides/localization.md @@ -488,7 +488,7 @@ The snippet below switches between the `en` and `de` locales: -**Related articles**: +**Related articles:** - [`locale`](api/config/booking-locale.md) — set the active locale at initialization - [`setLocale()`](api/methods/booking-setlocale-method.md) — change or reset the active locale at runtime diff --git a/docs/guides/saving-reservations.md b/docs/guides/saving-reservations.md index 524e81f..a240104 100644 --- a/docs/guides/saving-reservations.md +++ b/docs/guides/saving-reservations.md @@ -179,7 +179,7 @@ The snippet below demonstrates a full server-side booking flow: -**Related articles**: +**Related articles:** - [`confirm-slot`](api/events/booking-confirmslot-event.md) — event fired when a user confirms a slot - [`setConfig()`](api/methods/booking-setconfig-method.md) — update the widget configuration with fetched data diff --git a/i18n/GLOSSARY.md b/i18n/GLOSSARY.md index d3afc76..55c225d 100644 --- a/i18n/GLOSSARY.md +++ b/i18n/GLOSSARY.md @@ -2,7 +2,7 @@ Purpose: a single reference for translations of recurring template phrases in the documentation ([../docs/](../docs/)). Consult it when translating new articles and when reviewing localizations — -the wording and markdown markup (`**...**`, `### ...`, full-width `:` for zh) must match verbatim. +the wording and markdown markup (`**...**`, `### ...`, full-width `:` for zh/ko) must match verbatim. The **canonical** (most frequent) variant is given. @@ -10,51 +10,51 @@ The **canonical** (most frequent) variant is given. ## 1. Section labels (bold lead before a list) -The colon stays **outside** the bold markers (`**...**:`); zh uses a full-width colon `:`. - -Use the **singular** form when a single article is listed, the **plural** form for a list of two or -more. ko/zh have no number inflection — the same label serves both. The number must agree with the -number of links in the block. - | EN | ru | de | ko | zh | |---|---|---|---|---| -| `**Related articles**:` | `**Связанные статьи**:` | `**Verwandte Artikel**:` | `**관련 문서**:` | `**相关文章**:` | -| `**Related article**:` | `**Связанная статья**:` | `**Verwandter Artikel**:` | `**관련 문서**:` | `**相关文章**:` | - -## 2. Section headings +| `**Related articles:**` | `**Полезные статьи:**` | `**Verwandte Artikel:**` | `**관련 문서:**` | `**相关文章:**` | +| `**Related article:**` | `**Полезная статья:**` | `**Verwandter Artikel:**` | `**관련 문서:**` | `**相关文章:**` | +| `**Related sample:**` | `**Связанный пример:**` | `**Verwandtes Beispiel:**` | `**관련 샘플:**` | `**相关示例:**` | +| `**Related samples:**` | `**Связанные примеры:**` | `**Verwandte Beispiele:**` | `**관련 예제:**` | `**相关示例:**` | +| `**Related API:**` | `**Похожее API:**` | `**Verwandte API:**` | `**관련 API:**` | `**相关 API:**` | +| `**Change log:**` | `**Журнал изменений:**` | `**Changelog:**` | `**변경 로그:**` | `**更新日志:**` | +| `**Example:**` | `**Пример:**` | `**Beispiel:**` | `**예제:**` | `**示例:**` | +| `**Example on GitHub**` | `**Пример на GitHub**` | `**Beispiel auf GitHub**` | `**GitHub 예제**` | `**GitHub 示例**` | -Headings keep the original English slug as a `{#...}` anchor (e.g. `### Описание {#description}`) so -cross-page `#anchor` links stay valid — only the visible title is translated. - -**API-page template:** +## 2. Section headings (API-page template) | EN | ru | de | ko | zh | |---|---|---|---|---| | `### Description` | `### Описание` | `### Beschreibung` | `### 설명` | `### 描述` | | `### Usage` | `### Использование` | `### Verwendung` | `### 사용법` | `### 用法` | | `### Example` | `### Пример` | `### Beispiel` | `### 예제` | `### 示例` | -| `### Parameters` | `### Параметры` | `### Parameter` | `### 파라미터` | `### 参数` | -| `### Returns` | `### Возвращает` | `### Rückgabewert` | `### 반환값` | `### 返回值` | +| `### Parameters` | `### Параметры` | `### Parameter` | `### 매개변수` | `### 参数` | +| `### Returns` | `### Возвращаемое значение` | `### Rückgabewert` | `### 반환값` | `### 返回值` | +| `### Fixes` | `### Исправления` | `### Fehlerbehebungen` | `### 수정 사항` | `### 修复` | +| `### New functionality` | `### Новый функционал` | `### Neue Funktionalität` | `### 새로운 기능` | `### 新功能` | +| `### Updates` | `### Обновления` | `### Aktualisierungen` | `### 업데이트` | `### 更新` | | `### Default config` | `### Конфигурация по умолчанию` | `### Standardkonfiguration` | `### 기본 설정` | `### 默认配置` | +| `### Breaking changes` | `### Критические изменения` | `### Breaking Changes` | `### 주요 변경 사항` | `### 重大变更` | +| `## Related API and guides` | `## Связанные API и гайды` | `## Verwandte API und Anleitungen` | `## 관련 API 및 가이드` | `## 相关 API 和指南` | +| `## What's next` | `## Что дальше` | `## Wie geht es weiter` | `## 다음 단계` | `## 下一步` | +| `## API reference` | `## Справочник API` | `## API-Referenz` | `## API 참조` | `## API 参考` | -ko: `파라미터` is canonical; the variants `매개변수` and untranslated `Parameters` also occur and -should be normalized to `파라미터`. +## 3. Version notes (inside `**Change log:**`) -**Changelog headings (`news/whats_new.md`):** +Format ` in vX.X` — the "action" word is translated, the version number stays as is. -| EN | ru | de | ko | zh | -|---|---|---|---|---| -| `### New functionality` | `### Новая функциональность` | `### Neue Funktionalität` | `### 새로운 기능` | `### 新功能` | -| `### Initial functionality` | `### Начальная функциональность` | `### Initiale Funktionalität` | `### 초기 기능` | `### 初始功能` | -| `### Fixes` | `### Исправления` | `### Fehlerbehebungen` | `### 수정 사항` | `### 修复` | - -**Navigation heading:** +The forms below are verified against actual occurrences in the locales (e.g. `Добавлено в v5.2`, +`v5.2에서 추가`, `v5.2 中新增`). The version number is not translated. | EN | ru | de | ko | zh | |---|---|---|---|---| -| `## What's next` | `## Что дальше` | `## Wie geht es weiter?` | `## 다음 단계` | `## 下一步` | +| `Added in vX.X` | `Добавлено в vX.X` | `Hinzugefügt in vX.X` | `vX.X에서 추가` | `vX.X 中新增` | +| `Updated in vX.X` | `Обновлено в vX.X` | `Aktualisiert in vX.X` | `vX.X에서 업데이트` | `vX.X 中更新` | +| `Deprecated in vX.X` | `Устарело в vX.X` | `Veraltet in vX.X` | `vX.X에서 지원 중단` | `vX.X 中弃用` | +| `Removed in vX.X` | `Удалено в vX.X` | `Entfernt in vX.X` | `vX.X에서 제거` | `vX.X 中移除` | +| `Starting from vX.X, …` | `Начиная с vX.X, …` | `Ab vX.X …` | `vX.X부터 …` | `从 vX.X 起,…` | -## 3. Admonition block titles (`:::note`, `:::tip` …) +## 4. Admonition block titles (`:::note`, `:::tip` …) The titles of these blocks come **not from markdown**, but from the `theme.admonition.*` keys in `i18n//code.json` (in EN — Docusaurus built-in defaults). In `.md` the block type (`:::note`, @@ -84,6 +84,8 @@ Keep these terms in English across all locales. - `DHTMLX`, `dhx` (the `dhx.*` code namespace) - `Event Bus` — the module name. Keep the English spelling; German may hyphenate it inside a compound (`Event-Bus-Methoden`). +- `Scheduler`, `Event Calendar` — related DHTMLX products referenced by the integration guides; keep + the English names (`DHTMLX Scheduler`, `DHTMLX Event Calendar`). **Frameworks & libraries:** - `React`, `Vue`, `Svelte`, `Angular` @@ -102,3 +104,6 @@ Keep these terms in English across all locales. **Other:** - `API` — always the Latin `API`, never the Cyrillic transliteration `АПИ`. - Code identifiers (method / config / event names, `dhx.*`) inside backticks are never translated. + +> Not in this list — the generic act of *booking / reserving* **is** localized (ru `бронирование`, +> ko `예약`, zh `预约`); only the product name `Booking` and the `dhx.*` code identifiers stay English. diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md index e9275cd..bc74a70 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md @@ -73,7 +73,7 @@ Das folgende Snippet zeigt, wie Sie konfigurieren, welche Felder auf der linken Sie können das Erscheinungsbild einer Karte auch mithilfe der Eigenschaft [`cardTemplate`](api/config/booking-cardtemplate.md) konfigurieren. Wenn sowohl `cardTemplate` als auch `cardShape` angewendet werden, überschreibt `cardTemplate` die `cardShape`-Einstellungen. ::: -**Verwandte Artikel**: +**Verwandte Artikel:** - [Struktur der Karten definieren](guides/configuration.md#define-the-structure-of-cards) - [`cardTemplate`](api/config/booking-cardtemplate.md) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-cardtemplate.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-cardtemplate.md index f3014d4..fba39df 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-cardtemplate.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-cardtemplate.md @@ -83,7 +83,7 @@ Das folgende Snippet zeigt, wie eine Vorlage auf den linken Block einer Karte an -**Verwandte Artikel**: +**Verwandte Artikel:** - [Struktur der Karten definieren](guides/configuration.md#define-the-structure-of-cards) - [`cardShape`](api/config/booking-cardshape.md) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-data.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-data.md index e1d250c..dec56b5 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-data.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-data.md @@ -130,4 +130,4 @@ new booking.Booking("#root", { }); ~~~ -**Verwandter Artikel**: [Slot-Regeln definieren](guides/configuration.md#define-slot-rules) +**Verwandter Artikel:** [Slot-Regeln definieren](guides/configuration.md#define-slot-rules) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-infoshape.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-infoshape.md index b7d8138..c6f9630 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-infoshape.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-infoshape.md @@ -67,7 +67,7 @@ Der folgende Ausschnitt zeigt, wie Sie konfigurieren, was auf der linken Seite d Sie können auch steuern, welche Felder im Informationsblock des Booking-Dialogs angezeigt werden, indem Sie die Eigenschaft [`infoTemplate`](api/config/booking-infotemplate.md) verwenden. Wenn jedoch beide Eigenschaften angewendet werden, überschreibt `infoTemplate` die `infoShape`-Einstellungen. ::: -**Verwandte Artikel**: +**Verwandte Artikel:** - [Den Booking-Dialog konfigurieren](guides/configuration.md#configure-the-booking-dialog) - [`infoTemplate`](api/config/booking-infotemplate.md) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-infotemplate.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-infotemplate.md index ee1d571..cad0574 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-infotemplate.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-infotemplate.md @@ -86,7 +86,7 @@ Das folgende Snippet zeigt, wie Sie eine Vorlage auf den Informationsblock des B Sie können auch steuern, welche Felder im Informationsblock des Booking-Dialogs angezeigt werden, indem Sie die Eigenschaft [`infoShape`](api/config/booking-infoshape.md) verwenden. Wenn jedoch beide Eigenschaften angewendet werden, überschreibt `infoTemplate` die `infoShape`-Einstellungen. ::: -**Verwandte Artikel**: +**Verwandte Artikel:** - [Den Booking-Dialog konfigurieren](guides/configuration.md#configure-the-booking-dialog) - [`infoShape`](api/config/booking-infoshape.md) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-locale.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-locale.md index 1060608..c5f8146 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-locale.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/booking-locale.md @@ -34,6 +34,6 @@ const widget = new booking.Booking("#root", { }); ~~~ -**Verwandte Artikel**: +**Verwandte Artikel:** - [setLocale()](api/methods/booking-setlocale-method.md) - [Lokalisierung](guides/localization.md) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md index 1d64fdc..d849e4e 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md @@ -57,4 +57,4 @@ widget.api.on("confirm-slot", (obj) => { }); ~~~ -**Verwandter Artikel**: [`setConfirmHandler`](api/methods/booking-setconfirmhandler-method.md)-Methode +**Verwandter Artikel:** [`setConfirmHandler`](api/methods/booking-setconfirmhandler-method.md)-Methode diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md b/i18n/de/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md index 60408fc..fef5aeb 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md @@ -38,4 +38,4 @@ fetch(server + "/data").then((res) => res.json()).then((data) => { widget.api.setNext(someServerService); ~~~ -**Verwandter Artikel**: [Daten laden](guides/loading-data.md) +**Verwandter Artikel:** [Daten laden](guides/loading-data.md) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md index d28a5c0..95e38ca 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md @@ -35,4 +35,4 @@ widget.setConfirmHandler((ev) => { -**Verwandter Artikel**: [Reservierungen auf dem Server speichern](guides/saving-reservations.md) +**Verwandter Artikel:** [Reservierungen auf dem Server speichern](guides/saving-reservations.md) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/booking-setlocale-method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/booking-setlocale-method.md index 5adfe11..f9c5d6f 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/booking-setlocale-method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/booking-setlocale-method.md @@ -37,6 +37,6 @@ widget.setLocale(booking.locales.de); widget.setLocale(); // oder setLocale(null); ~~~ -**Verwandte Artikel**: +**Verwandte Artikel:** - [locale](api/config/booking-locale.md) - [Lokalisierung](guides/localization.md) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/guides/loading-data.md b/i18n/de/docusaurus-plugin-content-docs/current/guides/loading-data.md index 77f451e..31a6a20 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/guides/loading-data.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/guides/loading-data.md @@ -197,7 +197,7 @@ Informationen zur serverseitigen Speicherung von Buchungen finden Sie im Leitfad --- -**Verwandte Artikel**: +**Verwandte Artikel:** - [`confirm-slot`](api/events/booking-confirmslot-event.md) — Slot-Buchungsbestätigung behandeln - [`setConfig()`](api/methods/booking-setconfig-method.md) — Widget-Konfiguration nach der Initialisierung aktualisieren diff --git a/i18n/de/docusaurus-plugin-content-docs/current/guides/localization.md b/i18n/de/docusaurus-plugin-content-docs/current/guides/localization.md index fa44520..ee04308 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/guides/localization.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/guides/localization.md @@ -488,7 +488,7 @@ Der folgende Ausschnitt wechselt zwischen der `en`- und der `de`-Locale: -**Verwandte Artikel**: +**Verwandte Artikel:** - [`locale`](api/config/booking-locale.md) — aktive Locale bei der Initialisierung festlegen - [`setLocale()`](api/methods/booking-setlocale-method.md) — aktive Locale zur Laufzeit ändern oder zurücksetzen diff --git a/i18n/de/docusaurus-plugin-content-docs/current/guides/saving-reservations.md b/i18n/de/docusaurus-plugin-content-docs/current/guides/saving-reservations.md index e003a40..59d8ece 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/guides/saving-reservations.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/guides/saving-reservations.md @@ -179,7 +179,7 @@ Das folgende Snippet zeigt einen vollständigen serverseitigen Buchungsablauf: -**Verwandte Artikel**: +**Verwandte Artikel:** - [`confirm-slot`](api/events/booking-confirmslot-event.md) — Ereignis, das ausgelöst wird, wenn ein Benutzer einen Slot bestätigt - [`setConfig()`](api/methods/booking-setconfig-method.md) — Widget-Konfiguration mit abgerufenen Daten aktualisieren diff --git a/i18n/de/docusaurus-plugin-content-docs/current/how-to-start.md b/i18n/de/docusaurus-plugin-content-docs/current/how-to-start.md index f0df548..a32d24e 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/how-to-start.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/how-to-start.md @@ -151,7 +151,7 @@ new booking.Booking("#root", { }); ~~~ -## Wie geht es weiter? {#whats-next} +## Wie geht es weiter {#whats-next} Das ist alles, was Sie benötigen, um ein einfaches Booking auf einer Seite zu erstellen. Erkunden Sie nun die Booking-API: diff --git a/i18n/de/docusaurus-plugin-content-docs/current/index.md b/i18n/de/docusaurus-plugin-content-docs/current/index.md index 085905a..b377e1b 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/index.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/index.md @@ -70,6 +70,6 @@ Sie können einen Termin auch über die Einzelkartenansicht vereinbaren: ![Ausgefülltes Buchungsformular im DHTMLX Booking-Dialog](/img/booking-2.png) -## Wie geht es weiter? {#whats-next} +## Wie geht es weiter {#whats-next} Jetzt können Sie [mit der Erstellung eines einfachen Booking-Widgets auf Ihrer Seite beginnen](how-to-start.md). diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md index 5b2fd01..58a5562 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md @@ -24,7 +24,7 @@ cardShape?: { }; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} `cardShape` 객체에서 다음 parameters(필드)를 지정할 수 있습니다: @@ -73,7 +73,7 @@ new booking.Booking("#root", { [`cardTemplate`](api/config/booking-cardtemplate.md) 속성을 사용하여 카드의 외관을 구성할 수도 있습니다. `cardTemplate`과 `cardShape`이 모두 적용된 경우, `cardTemplate`이 `cardShape` 설정을 재정의합니다. ::: -**관련 문서**: +**관련 문서:** - [카드 구조 정의하기](guides/configuration.md#define-the-structure-of-cards) - [`cardTemplate`](api/config/booking-cardtemplate.md) diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-cardtemplate.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-cardtemplate.md index ef44869..66b5093 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-cardtemplate.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-cardtemplate.md @@ -22,7 +22,7 @@ description: DHTMLX JavaScript Booking 라이브러리 문서에서 cardTemplate cardTemplate?: ({item: obj}) => string; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} `cardTemplate`는 `item`(카드) 객체를 입력으로 받아 카드의 표시 방식을 정의하는 HTML 문자열을 반환하는 함수를 받습니다. @@ -83,7 +83,7 @@ cardTemplate?: ({item: obj}) => string; -**관련 문서**: +**관련 문서:** - [카드 구조 정의](guides/configuration.md#define-the-structure-of-cards) - [`cardShape`](api/config/booking-cardshape.md) diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-data.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-data.md index 04acf9a..e5be41f 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-data.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-data.md @@ -44,7 +44,7 @@ data: [ ]; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} 각 카드 객체에 대해 다음 파라미터를 지정할 수 있습니다: @@ -130,4 +130,4 @@ new booking.Booking("#root", { }); ~~~ -**관련 문서**: [슬롯 규칙 정의](guides/configuration.md#define-slot-rules) +**관련 문서:** [슬롯 규칙 정의](guides/configuration.md#define-slot-rules) diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-end.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-end.md index 89f8561..ebb93c0 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-end.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-end.md @@ -16,7 +16,7 @@ description: DHTMLX JavaScript Booking 라이브러리 문서에서 종료 날 end?: Date; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} - `end` - (선택 사항) 예약 가능한 슬롯을 표시할 종료 날짜입니다. 기본값은 현재 날짜로부터 1년 후입니다. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-filtershape.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-filtershape.md index f129f8f..4355530 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-filtershape.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-filtershape.md @@ -29,7 +29,7 @@ filterShape: { }; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} - `text` - (선택 사항) `true`이면 텍스트 입력 필드가 표시됩니다(기본값). `false`이면 텍스트 필드가 숨겨집니다. - `id` - (필수) 필터링할 카드 필드의 이름 (`data` 속성으로, 예: `category` 또는 `title`) diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-formshape.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-formshape.md index a27d95d..47ed925 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-formshape.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-formshape.md @@ -23,7 +23,7 @@ formShape: [{ }]; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} 각 필드에 대해 다음 파라미터를 지정할 수 있습니다: diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-infoshape.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-infoshape.md index b61119a..fa42950 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-infoshape.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-infoshape.md @@ -22,7 +22,7 @@ infoShape?: { }; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} 객체에는 다음 매개변수가 있습니다: @@ -67,7 +67,7 @@ new booking.Booking("#root", { [`infoTemplate`](api/config/booking-infotemplate.md) 속성을 사용하여 Booking 대화 상자의 정보 블록에 표시할 필드를 제어할 수도 있습니다. 단, 두 속성이 모두 적용되면 `infoTemplate`이 `infoShape` 설정을 재정의합니다. ::: -**관련 문서**: +**관련 문서:** - [Booking 대화 상자 구성하기](guides/configuration.md#configure-the-booking-dialog) - [`infoTemplate`](api/config/booking-infotemplate.md) diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-infotemplate.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-infotemplate.md index fddd6b4..a6a143c 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-infotemplate.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-infotemplate.md @@ -16,7 +16,7 @@ description: DHTMLX JavaScript Booking 라이브러리 문서에서 infoTemplate infoTemplate?: ({item: obj, slot: number}) => string; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} `infoTemplate`은 `card` 항목 객체와 선택된 `slot` 타임스탬프를 입력으로 받아 HTML 문자열을 반환합니다. @@ -86,7 +86,7 @@ infoTemplate?: ({item: obj, slot: number}) => string; [`infoShape`](api/config/booking-infoshape.md) 속성을 사용하여 Booking 대화 상자의 정보 블록에 표시할 필드를 제어할 수도 있습니다. 단, 두 속성이 모두 적용된 경우 `infoTemplate`이 `infoShape` 설정을 재정의합니다. ::: -**관련 문서**: +**관련 문서:** - [Booking 대화 상자 구성하기](guides/configuration.md#configure-the-booking-dialog) - [`infoShape`](api/config/booking-infoshape.md) diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-locale.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-locale.md index c2ae212..0e61895 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-locale.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-locale.md @@ -34,6 +34,6 @@ const widget = new booking.Booking("#root", { }); ~~~ -**관련 문서**: +**관련 문서:** - [setLocale()](api/methods/booking-setlocale-method.md) - [지역화](guides/localization.md) diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-rendertype.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-rendertype.md index d97fdab..f0778e5 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-rendertype.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-rendertype.md @@ -18,7 +18,7 @@ description: DHTMLX JavaScript Booking 라이브러리 문서에서 renderType renderType?: "default" | "lazy"; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} - `default` - 위젯에 로드된 모든 카드를 렌더링합니다 (기본값으로 설정됨) - `lazy` - 화면에 보이는 카드만 렌더링합니다 diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-slotgap.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-slotgap.md index 504e239..c5fda71 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-slotgap.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-slotgap.md @@ -20,7 +20,7 @@ description: DHTMLX JavaScript Booking 라이브러리 문서에서 slotGap에 slotGap?: number; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} - `number` - (선택 사항) 슬롯 사이의 간격(분 단위); 기본값은 0 diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-slotsize.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-slotsize.md index b4d45cd..5105568 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-slotsize.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-slotsize.md @@ -20,7 +20,7 @@ description: DHTMLX JavaScript Booking 라이브러리 문서에서 slotSize에 slotSize?: number; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} - `number` - (선택 사항) 예약 슬롯의 지속 시간(분 단위); 기본값은 60분입니다 diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-start.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-start.md index f0de6e5..bb469e3 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-start.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/booking-start.md @@ -16,7 +16,7 @@ description: DHTMLX JavaScript Booking 라이브러리 문서에서 시작 날 start?: Date; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} - `Date` - (선택 사항) 사용 가능한 슬롯을 표시하기 시작할 날짜입니다. 기본값은 현재 날짜입니다. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md index 5b01967..2de0e15 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md @@ -29,7 +29,7 @@ description: DHTMLX JavaScript Booking 라이브러리 문서에서 confirm-slot }) => void; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} `confirm-slot` 이벤트의 callback은 다음 매개변수를 가진 객체를 받을 수 있습니다: @@ -57,4 +57,4 @@ widget.api.on("confirm-slot", (obj) => { }); ~~~ -**관련 문서**: [`setConfirmHandler`](api/methods/booking-setconfirmhandler-method.md) 메서드 +**관련 문서:** [`setConfirmHandler`](api/methods/booking-setconfirmhandler-method.md) 메서드 diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-filterdata-event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-filterdata-event.md index 075eaef..6f5a3d9 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-filterdata-event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-filterdata-event.md @@ -27,7 +27,7 @@ description: DHTMLX JavaScript Booking 라이브러리의 filter-data 이벤트 }) => void; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} `filter-data` 이벤트의 callback은 다음 매개변수를 포함하는 객체를 받을 수 있습니다: diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-selectitem-event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-selectitem-event.md index 727fc20..92315aa 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-selectitem-event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-selectitem-event.md @@ -18,7 +18,7 @@ description: DHTMLX JavaScript Booking 라이브러리의 공식 문서에서 se }) => void; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} `select-item` 이벤트의 callback은 다음 파라미터를 포함하는 객체를 받을 수 있습니다: diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-selectitemdate-event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-selectitemdate-event.md index 8e948d0..6eadc80 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-selectitemdate-event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-selectitemdate-event.md @@ -19,7 +19,7 @@ description: DHTMLX JavaScript Booking 라이브러리의 문서에서 select-it }) => void; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} `select-item-date` 이벤트의 callback은 다음 매개변수를 포함하는 객체를 받을 수 있습니다: diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-selectslot-event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-selectslot-event.md index 3081045..96d57e9 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-selectslot-event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/booking-selectslot-event.md @@ -19,7 +19,7 @@ description: DHTMLX JavaScript Booking 라이브러리 문서에서 select-slot }) => void; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} `select-slot` 이벤트의 callback은 다음 파라미터를 포함하는 객체를 받을 수 있습니다: diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-detach.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-detach.md index e62c921..f744ac1 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-detach.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-detach.md @@ -16,7 +16,7 @@ description: DHTMLX JavaScript Booking 라이브러리 문서에서 detach 메 api.detach(tag: number | string ): void; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} - `tag` - (필수) 액션 태그의 이름 diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-exec.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-exec.md index 76d56eb..dac2795 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-exec.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-exec.md @@ -21,7 +21,7 @@ api.exec( ): Promise; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} - `event` - (필수) 실행할 이벤트 - `config` - (필수) 매개변수가 포함된 config 객체 (실행할 이벤트를 참조하세요) diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-intercept.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-intercept.md index 4805e0c..90ab0fd 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-intercept.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-intercept.md @@ -20,7 +20,7 @@ api.intercept( ): void; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} - `event` - (필수) 발생시킬 이벤트 - `callback` - (필수) 실행할 callback (callback 인수는 발생하는 이벤트에 따라 달라집니다) diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-on.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-on.md index dfe55b6..a04e3e8 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-on.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-on.md @@ -20,7 +20,7 @@ api.on( ): void; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} - `event` - (필수) 실행될 이벤트 - `handler` - (필수) 연결할 핸들러 (핸들러 인수는 실행되는 이벤트에 따라 달라집니다) diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md index 851faed..b023295 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md @@ -16,7 +16,7 @@ description: DHTMLX JavaScript Booking 라이브러리 문서에서 setNext 메 api.setNext(next: any): void; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} - `next` - (필수) **Event Bus** 순서에 포함될 동작 @@ -38,4 +38,4 @@ fetch(server + "/data").then((res) => res.json()).then((data) => { widget.api.setNext(someServerService); ~~~ -**관련 문서**: [데이터 로딩](guides/loading-data.md) +**관련 문서:** [데이터 로딩](guides/loading-data.md) diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/booking-setconfig-method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/booking-setconfig-method.md index 8192a93..7b48128 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/booking-setconfig-method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/booking-setconfig-method.md @@ -18,7 +18,7 @@ description: DHTMLX JavaScript Booking 라이브러리 문서에서 setConfig() setConfig(config: object): void; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} - `config` - (필수) Booking 구성 객체. 전체 속성 목록은 [여기](api/overview/booking-properties-overview.md)를 참조하세요 diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md index 63b1608..ecfb671 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md @@ -16,7 +16,7 @@ description: DHTMLX JavaScript Booking 라이브러리 문서에서 setConfirmHa setConfirmHandler(confirmHandler: (ev) => any): void; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} 이 메서드는 슬롯 예약을 확정할 때 호출될 `confirmHandler` 함수를 인수로 받습니다. 해당 함수는 [`confirm-slot`](api/events/booking-confirmslot-event.md) 이벤트와 동일한 객체를 매개변수로 받습니다. @@ -35,4 +35,4 @@ widget.setConfirmHandler((ev) => { -**관련 문서**: [서버에 예약 저장하기](guides/saving-reservations.md) +**관련 문서:** [서버에 예약 저장하기](guides/saving-reservations.md) diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/booking-setlocale-method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/booking-setlocale-method.md index 4613f83..b9191de 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/booking-setlocale-method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/booking-setlocale-method.md @@ -16,7 +16,7 @@ description: DHTMLX JavaScript Booking 라이브러리 문서에서 setLocale() setLocale(locale?: object | null): void; ~~~ -### 파라미터 {#parameters} +### 매개변수 {#parameters} - `null` - (선택 사항) 기본 로케일(영어)로 초기화합니다 - `locale` - (선택 사항) 적용할 새 로케일 데이터 객체 @@ -37,6 +37,6 @@ widget.setLocale(booking.locales.de); widget.setLocale(); // 또는 setLocale(null); ~~~ -**관련 문서**: +**관련 문서:** - [locale](api/config/booking-locale.md) - [로컬라이제이션](guides/localization.md) diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/overview/booking-api-overview.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/overview/booking-api-overview.md index 129fca8..029eaca 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/overview/booking-api-overview.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/overview/booking-api-overview.md @@ -14,7 +14,7 @@ new booking.Booking("#root", { }); ~~~ -**파라미터**: +**매개변수**: - HTML 컨테이너 또는 해당 ID 선택자 (`HTMLElement | string`) - 구성 파라미터 객체 ([여기서 확인](#booking-properties)) diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/guides/loading-data.md b/i18n/ko/docusaurus-plugin-content-docs/current/guides/loading-data.md index d29bcf3..471eed8 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/guides/loading-data.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/guides/loading-data.md @@ -197,7 +197,7 @@ fetch("/api/cards") --- -**관련 문서**: +**관련 문서:** - [`confirm-slot`](api/events/booking-confirmslot-event.md) — 슬롯 예약 확인 처리 - [`setConfig()`](api/methods/booking-setconfig-method.md) — 초기화 이후 위젯 구성 업데이트 diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/guides/localization.md b/i18n/ko/docusaurus-plugin-content-docs/current/guides/localization.md index 60054bf..9ad46f6 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/guides/localization.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/guides/localization.md @@ -488,7 +488,7 @@ Booking은 다음 문자들을 사용하여 날짜 및 시간 형식 문자열 -**관련 문서**: +**관련 문서:** - [`locale`](api/config/booking-locale.md) — 초기화 시 활성 로케일 설정 - [`setLocale()`](api/methods/booking-setlocale-method.md) — 런타임에 활성 로케일 변경 또는 재설정 diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/guides/saving-reservations.md b/i18n/ko/docusaurus-plugin-content-docs/current/guides/saving-reservations.md index bd7a5fe..b5c7c14 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/guides/saving-reservations.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/guides/saving-reservations.md @@ -179,7 +179,7 @@ fetch( serverURL + "/units") -**관련 문서**: +**관련 문서:** - [`confirm-slot`](api/events/booking-confirmslot-event.md) — 사용자가 슬롯을 확인할 때 발생하는 이벤트 - [`setConfig()`](api/methods/booking-setconfig-method.md) — 가져온 데이터로 위젯 구성을 업데이트합니다 diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md index c5c04d8..cc5772d 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md @@ -73,7 +73,7 @@ new booking.Booking("#root", { Вы также можете настроить внешний вид карточки с помощью свойства [`cardTemplate`](api/config/booking-cardtemplate.md). Если применены оба свойства — `cardTemplate` и `cardShape`, — `cardTemplate` переопределит настройки `cardShape`. ::: -**Связанные статьи**: +**Полезные статьи:** - [Определение структуры карточек](guides/configuration.md#define-the-structure-of-cards) - [`cardTemplate`](api/config/booking-cardtemplate.md) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-cardtemplate.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-cardtemplate.md index 2639fd9..aaab0d8 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-cardtemplate.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-cardtemplate.md @@ -83,7 +83,7 @@ cardTemplate?: ({item: obj}) => string; -**Связанные статьи**: +**Полезные статьи:** - [Определение структуры карточек](guides/configuration.md#define-the-structure-of-cards) - [`cardShape`](api/config/booking-cardshape.md) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-data.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-data.md index 8493ff4..21faa92 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-data.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-data.md @@ -130,4 +130,4 @@ new booking.Booking("#root", { }); ~~~ -**Связанная статья**: [Определение правил слотов](guides/configuration.md#define-slot-rules) +**Полезная статья:** [Определение правил слотов](guides/configuration.md#define-slot-rules) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-infoshape.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-infoshape.md index c701c28..27a946e 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-infoshape.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-infoshape.md @@ -67,7 +67,7 @@ new booking.Booking("#root", { Вы также можете управлять тем, какие поля отображать в информационном блоке диалога Booking, используя свойство [`infoTemplate`](api/config/booking-infotemplate.md). Однако если применяются оба свойства, `infoTemplate` переопределит настройки `infoShape`. ::: -**Связанные статьи**: +**Полезные статьи:** - [Настройка диалога Booking](guides/configuration.md#configure-the-booking-dialog) - [`infoTemplate`](api/config/booking-infotemplate.md) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-infotemplate.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-infotemplate.md index 8e6b985..ff8f4ce 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-infotemplate.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-infotemplate.md @@ -86,7 +86,7 @@ infoTemplate?: ({item: obj, slot: number}) => string; Вы также можете управлять тем, какие поля отображаются в информационном блоке диалога Booking, используя свойство [`infoShape`](api/config/booking-infoshape.md). Однако если применены оба свойства, `infoTemplate` переопределит настройки `infoShape`. ::: -**Связанные статьи**: +**Полезные статьи:** - [Настройка диалога Booking](guides/configuration.md#configure-the-booking-dialog) - [`infoShape`](api/config/booking-infoshape.md) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-locale.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-locale.md index 813ab5e..076a382 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-locale.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/booking-locale.md @@ -34,6 +34,6 @@ const widget = new booking.Booking("#root", { }); ~~~ -**Связанные статьи**: +**Полезные статьи:** - [setLocale()](api/methods/booking-setlocale-method.md) - [Локализация](guides/localization.md) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md index a51e4da..ca00480 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md @@ -57,4 +57,4 @@ widget.api.on("confirm-slot", (obj) => { }); ~~~ -**Связанная статья**: метод [`setConfirmHandler`](api/methods/booking-setconfirmhandler-method.md) +**Полезная статья:** метод [`setConfirmHandler`](api/methods/booking-setconfirmhandler-method.md) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-getreactivestate.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-getreactivestate.md index 9664f85..19f5d72 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-getreactivestate.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-getreactivestate.md @@ -16,7 +16,7 @@ description: В документации библиотеки DHTMLX JavaScript api.getReactiveState(): object; ~~~ -### Возвращает {#returns} +### Возвращаемое значение {#returns} Метод возвращает объект, в котором каждое поле является реактивным записываемым хранилищем (`IPublicWritable`), оборачивающим соответствующее значение состояния. Подпишитесь на хранилище с помощью `.subscribe(callback)`, чтобы реагировать на его изменения. Хранимые значения: diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-getstate.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-getstate.md index b86676b..f939d10 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-getstate.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-getstate.md @@ -16,7 +16,7 @@ description: В документации DHTMLX JavaScript Booking вы може api.getState(): object; ~~~ -### Возвращает {#returns} +### Возвращаемое значение {#returns} Метод возвращает объект со следующими полями состояния: diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md index b797e3b..dbc994d 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md @@ -38,4 +38,4 @@ fetch(server + "/data").then((res) => res.json()).then((data) => { widget.api.setNext(someServerService); ~~~ -**Связанная статья**: [Загрузка данных](guides/loading-data.md) +**Полезная статья:** [Загрузка данных](guides/loading-data.md) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-serialize-method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-serialize-method.md index b5c66cd..2a7e714 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-serialize-method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-serialize-method.md @@ -16,7 +16,7 @@ description: Вы можете узнать о методе serialize() в до serialize(): object[]; ~~~ -### Возвращает {#returns} +### Возвращаемое значение {#returns} Возвращает массив [data](api/config/booking-data.md). diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md index 9c00f99..94de092 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md @@ -35,4 +35,4 @@ widget.setConfirmHandler((ev) => { -**Связанная статья**: [Сохранение бронирований на сервере](guides/saving-reservations.md) +**Полезная статья:** [Сохранение бронирований на сервере](guides/saving-reservations.md) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-setlocale-method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-setlocale-method.md index e4e368d..f4ded4f 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-setlocale-method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/booking-setlocale-method.md @@ -37,6 +37,6 @@ widget.setLocale(booking.locales.de); widget.setLocale(); // или setLocale(null); ~~~ -**Связанные статьи**: +**Полезные статьи:** - [locale](api/config/booking-locale.md) - [Локализация](guides/localization.md) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/guides/loading-data.md b/i18n/ru/docusaurus-plugin-content-docs/current/guides/loading-data.md index 5a2861f..4091ed3 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/guides/loading-data.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/guides/loading-data.md @@ -197,7 +197,7 @@ fetch("/api/cards") --- -**Связанные статьи**: +**Полезные статьи:** - [`confirm-slot`](api/events/booking-confirmslot-event.md) — обработка подтверждения бронирования слота - [`setConfig()`](api/methods/booking-setconfig-method.md) — обновление конфигурации виджета после инициализации diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/guides/localization.md b/i18n/ru/docusaurus-plugin-content-docs/current/guides/localization.md index 33cc81c..38a2cd6 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/guides/localization.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/guides/localization.md @@ -488,7 +488,7 @@ Booking использует следующие символы для соста -**Связанные статьи**: +**Полезные статьи:** - [`locale`](api/config/booking-locale.md) — установка активной локали при инициализации - [`setLocale()`](api/methods/booking-setlocale-method.md) — изменение или сброс активной локали во время выполнения diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/guides/saving-reservations.md b/i18n/ru/docusaurus-plugin-content-docs/current/guides/saving-reservations.md index cd2c6ef..6c40f46 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/guides/saving-reservations.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/guides/saving-reservations.md @@ -179,7 +179,7 @@ fetch( serverURL + "/units") -**Связанные статьи**: +**Полезные статьи:** - [`confirm-slot`](api/events/booking-confirmslot-event.md) — событие, возникающее при подтверждении пользователем слота - [`setConfig()`](api/methods/booking-setconfig-method.md) — обновление конфигурации виджета загруженными данными diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/news/whats_new.md b/i18n/ru/docusaurus-plugin-content-docs/current/news/whats_new.md index 755ff55..fb7e8f9 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/news/whats_new.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/news/whats_new.md @@ -10,7 +10,7 @@ description: Вы можете узнать, что нового появило Выпущена 12 марта 2025 г. -### Новая функциональность {#new-functionality} +### Новый функционал {#new-functionality} - Ленивый рендеринг карточек через свойство [`renderType`](api/config/booking-rendertype.md) - Возможность встраивать шаблоны через свойства [`cardTemplate`](api/config/booking-cardtemplate.md) и [`infoTemplate`](api/config/booking-infotemplate.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md index c01d618..f69087c 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/booking-cardshape.md @@ -73,7 +73,7 @@ new booking.Booking("#root", { 您也可以使用 [`cardTemplate`](api/config/booking-cardtemplate.md) 属性配置卡片的外观。如果同时应用了 `cardTemplate` 和 `cardShape`,`cardTemplate` 将覆盖 `cardShape` 的设置。 ::: -**相关文章**: +**相关文章:** - [定义卡片结构](guides/configuration.md#define-the-structure-of-cards) - [`cardTemplate`](api/config/booking-cardtemplate.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/booking-cardtemplate.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/booking-cardtemplate.md index 90059bc..7c03817 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/booking-cardtemplate.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/booking-cardtemplate.md @@ -83,7 +83,7 @@ cardTemplate?: ({item: obj}) => string; -**相关文章**: +**相关文章:** - [定义卡片结构](guides/configuration.md#define-the-structure-of-cards) - [`cardShape`](api/config/booking-cardshape.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/booking-data.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/booking-data.md index 47722ef..7bed323 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/booking-data.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/booking-data.md @@ -130,4 +130,4 @@ new booking.Booking("#root", { }); ~~~ -**相关文章**:[定义时间槽规则](guides/configuration.md#define-slot-rules) +**相关文章:**[定义时间槽规则](guides/configuration.md#define-slot-rules) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/booking-infoshape.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/booking-infoshape.md index 19d6040..edc315c 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/booking-infoshape.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/booking-infoshape.md @@ -67,7 +67,7 @@ new booking.Booking("#root", { 您也可以使用 [`infoTemplate`](api/config/booking-infotemplate.md) 属性控制 Booking 对话框信息块中显示的字段。但如果两个属性同时应用,`infoTemplate` 将覆盖 `infoShape` 的设置。 ::: -**相关文章**: +**相关文章:** - [配置 Booking 对话框](guides/configuration.md#configure-the-booking-dialog) - [`infoTemplate`](api/config/booking-infotemplate.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/booking-infotemplate.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/booking-infotemplate.md index 145cc22..2a2d6a6 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/booking-infotemplate.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/booking-infotemplate.md @@ -86,7 +86,7 @@ infoTemplate?: ({item: obj, slot: number}) => string; 您也可以使用 [`infoShape`](api/config/booking-infoshape.md) 属性控制 Booking 对话框信息块中显示的字段。但如果两个属性同时使用,`infoTemplate` 将覆盖 `infoShape` 的设置。 ::: -**相关文章**: +**相关文章:** - [配置 Booking 对话框](guides/configuration.md#configure-the-booking-dialog) - [`infoShape`](api/config/booking-infoshape.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/booking-locale.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/booking-locale.md index 3870d02..9325d3f 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/booking-locale.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/booking-locale.md @@ -34,6 +34,6 @@ const widget = new booking.Booking("#root", { }); ~~~ -**相关文章**: +**相关文章:** - [setLocale()](api/methods/booking-setlocale-method.md) - [本地化](guides/localization.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md index d5a40c0..f3fcd52 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/booking-confirmslot-event.md @@ -57,4 +57,4 @@ widget.api.on("confirm-slot", (obj) => { }); ~~~ -**相关文章**:[`setConfirmHandler`](api/methods/booking-setconfirmhandler-method.md) 方法 +**相关文章:**[`setConfirmHandler`](api/methods/booking-setconfirmhandler-method.md) 方法 diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md index 26d499b..c5b76ff 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/booking-setnext.md @@ -38,4 +38,4 @@ fetch(server + "/data").then((res) => res.json()).then((data) => { widget.api.setNext(someServerService); ~~~ -**相关文章**:[加载数据](guides/loading-data.md) +**相关文章:**[加载数据](guides/loading-data.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md index b16791f..bb119c8 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/booking-setconfirmhandler-method.md @@ -35,4 +35,4 @@ widget.setConfirmHandler((ev) => { -**相关文章**:[将预约信息保存到服务器](guides/saving-reservations.md) +**相关文章:**[将预约信息保存到服务器](guides/saving-reservations.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/booking-setlocale-method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/booking-setlocale-method.md index 1329342..453d1c4 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/booking-setlocale-method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/booking-setlocale-method.md @@ -37,6 +37,6 @@ widget.setLocale(booking.locales.de); widget.setLocale(); // 或 setLocale(null); ~~~ -**相关文章**: +**相关文章:** - [locale](api/config/booking-locale.md) - [本地化](guides/localization.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/guides/loading-data.md b/i18n/zh/docusaurus-plugin-content-docs/current/guides/loading-data.md index 44d47e0..9830c86 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/guides/loading-data.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/guides/loading-data.md @@ -197,7 +197,7 @@ fetch("/api/cards") --- -**相关文章**: +**相关文章:** - [`confirm-slot`](api/events/booking-confirmslot-event.md) — 处理时间段预约确认 - [`setConfig()`](api/methods/booking-setconfig-method.md) — 初始化后更新 widget 配置 diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/guides/localization.md b/i18n/zh/docusaurus-plugin-content-docs/current/guides/localization.md index ee40099..434a67c 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/guides/localization.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/guides/localization.md @@ -488,7 +488,7 @@ Booking 使用以下字符组合日期和时间格式字符串: -**相关文章**: +**相关文章:** - [`locale`](api/config/booking-locale.md) — 在初始化时设置当前语言环境 - [`setLocale()`](api/methods/booking-setlocale-method.md) — 在运行时更改或重置当前语言环境 diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/guides/saving-reservations.md b/i18n/zh/docusaurus-plugin-content-docs/current/guides/saving-reservations.md index ec5d4e1..49d6baf 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/guides/saving-reservations.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/guides/saving-reservations.md @@ -179,7 +179,7 @@ fetch( serverURL + "/units") -**相关文章**: +**相关文章:** - [`confirm-slot`](api/events/booking-confirmslot-event.md) — 用户确认时间段时触发的事件 - [`setConfig()`](api/methods/booking-setconfig-method.md) — 使用获取的数据更新组件配置