Skip to content

Commit 7d5b53e

Browse files
authored
Merge pull request #3424 from ClickHouse/translate_ja
Japanese translations
2 parents 0bcb9a4 + 73aca1e commit 7d5b53e

File tree

2,468 files changed

+246405
-754
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,468 files changed

+246405
-754
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,5 @@ docs/whats-new/changelog/index.md
5555

5656
# Don't ignore generated table of contents files
5757
!toc.json
58+
**.translated
59+
**.translate

docs/integrations/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ We are actively compiling this list of ClickHouse integrations below, so it's no
188188
[contribute](https://github.com/ClickHouse/clickhouse-docs#contributing) any relevant ClickHouse integration to the list.
189189
:::
190190

191-
<span style={{fontSize: '1.5rem', fontWeight: 'bold'}}>Core integrations</span>
191+
## Core integrations
192192

193193
<div className="adopters-table">
194194

@@ -243,7 +243,7 @@ We are actively compiling this list of ClickHouse integrations below, so it's no
243243
</div>
244244
<br/>
245245

246-
<span style={{fontSize: '1.5rem', fontWeight: 'bold'}}>Partner integrations</span>
246+
## Partner integrations
247247

248248
<div className="adopters-table">
249249

@@ -326,7 +326,7 @@ We are actively compiling this list of ClickHouse integrations below, so it's no
326326

327327
<br/>
328328

329-
<span style={{fontSize: '1.5rem', fontWeight: 'bold'}}>Community integrations</span>
329+
## Community integrations
330330

331331
<div className="adopters-table">
332332

docs/integrations/language-clients/java/client-v1.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import CodeBlock from '@theme/CodeBlock';
44

55
# Client (0.7.x and earlier)
66

7-
Java client library to communicate with a DB server thru its protocols. Current implementation supports only [HTTP interface](/interfaces/http). The library provides own API to send requests to a server.
7+
Java client library to communicate with a DB server thru its protocols. Current implementation supports only [HTTP interface](/interfaces/http). The library provides own API to send requests to a server.
88

99
:::warning Deprecation
1010
This library will be deprecated soon. Use the latest [Java Client](/integrations/language-clients/java/client.md) for new projects
@@ -13,9 +13,9 @@ This library will be deprecated soon. Use the latest [Java Client](/integrations
1313
## Setup {#setup}
1414

1515
<Tabs groupId="client-v1-setup">
16-
<TabItem value="maven" label="Maven" >
16+
<TabItem value="maven" label="Maven">
1717

18-
```xml
18+
```xml
1919
<!-- https://mvnrepository.com/artifact/com.clickhouse/clickhouse-http-client -->
2020
<dependency>
2121
<groupId>com.clickhouse</groupId>
@@ -46,9 +46,9 @@ Since version `0.5.0`, the driver uses a new client http library that needs to b
4646

4747

4848
<Tabs groupId="client-v1-http-client">
49-
<TabItem value="maven" label="Maven" >
49+
<TabItem value="maven" label="Maven">
5050

51-
```xml
51+
```xml
5252
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents.client5/httpclient5 -->
5353
<dependency>
5454
<groupId>org.apache.httpcomponents.client5</groupId>
@@ -147,7 +147,7 @@ try (ClickHouseClient client = ClickHouseClient.newInstance(ClickHouseProtocol.H
147147
}
148148
```
149149

150-
See [complete code example](https://github.com/ClickHouse/clickhouse-java/blob/main/examples/client/src/main/java/com/clickhouse/examples/jdbc/Main.java#L39) in the [repo](https://github.com/ClickHouse/clickhouse-java/tree/main/examples/client).
150+
See [complete code example](https://github.com/ClickHouse/clickhouse-java/blob/main/examples/client/src/main/java/com/clickhouse/examples/jdbc/Main.java#L39) in the [repo](https://github.com/ClickHouse/clickhouse-java/tree/main/examples/client).
151151

152152
**RowBinary Encoding**
153153

@@ -164,7 +164,7 @@ The client will by default use LZ4 compression, which requires this dependency:
164164
<Tabs groupId="client-v1-compression-deps">
165165
<TabItem value="maven" label="Maven" >
166166

167-
```xml
167+
```xml
168168
<!-- https://mvnrepository.com/artifact/org.lz4/lz4-java -->
169169
<dependency>
170170
<groupId>org.lz4</groupId>
@@ -343,4 +343,3 @@ options.put("custom_http_headers", "X-ClickHouse-Quota=test, X-ClickHouse-Test=t
343343
```java
344344
properties.setProperty("custom_http_headers", "X-ClickHouse-Quota=test, X-ClickHouse-Test=test");
345345
```
346-

docs/whats-new/changelog/index.md

Lines changed: 0 additions & 407 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)