Skip to content

Commit c0a8981

Browse files
authored
New translation batch for ja (#25732)
* Add crowdin translations * Run script/i18n/homogenize-frontmatter.js * Run script/i18n/lint-translation-files.js --check parsing * run script/i18n/reset-files-with-broken-liquid-tags.js --language=ja * run script/i18n/reset-known-broken-translation-files.js * Check in ja CSV report
1 parent 94d53d0 commit c0a8981

File tree

389 files changed

+2117
-2463
lines changed

Some content is hidden

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

389 files changed

+2117
-2463
lines changed

translations/ja-JP/content/actions/automating-builds-and-tests/building-and-testing-java-with-ant.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ jobs:
7878

7979
The default starter workflows are excellent starting points when creating your build and test workflow, and you can customize the starter workflow to suit your project’s needs.
8080

81-
{% data reusables.github-actions.example-github-runner %}
81+
{% data reusables.actions.example-github-runner %}
8282

83-
{% data reusables.github-actions.java-jvm-architecture %}
83+
{% data reusables.actions.java-jvm-architecture %}
8484

8585
## コードのビルドとテスト
8686

translations/ja-JP/content/actions/automating-builds-and-tests/building-and-testing-java-with-gradle.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ jobs:
8383

8484
The default starter workflows are excellent starting points when creating your build and test workflow, and you can customize the starter workflow to suit your project’s needs.
8585

86-
{% data reusables.github-actions.example-github-runner %}
86+
{% data reusables.actions.example-github-runner %}
8787

88-
{% data reusables.github-actions.java-jvm-architecture %}
88+
{% data reusables.actions.java-jvm-architecture %}
8989

9090
## コードのビルドとテスト
9191

translations/ja-JP/content/actions/automating-builds-and-tests/building-and-testing-java-with-maven.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ jobs:
7878

7979
The default starter workflows are excellent starting points when creating your build and test workflow, and you can customize the starter workflow to suit your project’s needs.
8080

81-
{% data reusables.github-actions.example-github-runner %}
81+
{% data reusables.actions.example-github-runner %}
8282

83-
{% data reusables.github-actions.java-jvm-architecture %}
83+
{% data reusables.actions.java-jvm-architecture %}
8484

8585
## コードのビルドとテスト
8686

translations/ja-JP/content/actions/automating-builds-and-tests/building-and-testing-nodejs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
```
7474
{% endraw %}
7575

76-
{% data reusables.github-actions.example-github-runner %}
76+
{% data reusables.actions.example-github-runner %}
7777

7878
## Node.jsのバージョンの指定
7979

@@ -204,7 +204,7 @@ steps:
204204

205205
### プライベートレジストリの利用と.npmrcファイルの作成の例
206206

207-
{% data reusables.github-actions.setup-node-intro %}
207+
{% data reusables.actions.setup-node-intro %}
208208

209209
プライベートレジストリに対して認証するには、npm 認証トークンをシークレットとして保存する必要があります。 たとえば、`NPM_TOKEN` というリポジトリシークレットを作成します。 詳しい情報については、「[暗号化されたシークレットの作成と利用](/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets)」を参照してください。
210210

translations/ja-JP/content/actions/automating-builds-and-tests/building-and-testing-xamarin-applications.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ For a full list of available Xamarin SDK versions on the {% data variables.produ
3131
* [macOS 10.15](https://github.com/actions/virtual-environments/blob/main/images/macos/macos-10.15-Readme.md#xamarin-bundles)
3232
* [macOS 11](https://github.com/actions/virtual-environments/blob/main/images/macos/macos-11-Readme.md#xamarin-bundles)
3333

34-
{% data reusables.github-actions.macos-runner-preview %}
34+
{% data reusables.actions.macos-runner-preview %}
3535

3636
## 必要な環境
3737

translations/ja-JP/content/actions/creating-actions/about-custom-actions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ Docker containers package the environment with the {% data variables.product.pro
4747

4848
A Docker container allows you to use specific versions of an operating system, dependencies, tools, and code. For actions that must run in a specific environment configuration, Docker is an ideal option because you can customize the operating system and tools. Because of the latency to build and retrieve the container, Docker container actions are slower than JavaScript actions.
4949

50-
Docker container actions can only execute on runners with a Linux operating system. {% data reusables.github-actions.self-hosted-runner-reqs-docker %}
50+
Docker container actions can only execute on runners with a Linux operating system. {% data reusables.actions.self-hosted-runner-reqs-docker %}
5151

5252
### JavaScript actions
5353

5454
JavaScript actions can run directly on a runner machine, and separate the action code from the environment used to run the code. Using a JavaScript action simplifies the action code and executes faster than a Docker container action.
5555

56-
{% data reusables.github-actions.pure-javascript %}
56+
{% data reusables.actions.pure-javascript %}
5757

5858
If you're developing a Node.js project, the {% data variables.product.prodname_actions %} Toolkit provides packages that you can use in your project to speed up development. For more information, see the [actions/toolkit](https://github.com/actions/toolkit) repository.
5959

translations/ja-JP/content/actions/creating-actions/creating-a-composite-action.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ In this guide, you'll learn about the basic components needed to create and use
2323

2424
Once you complete this project, you should understand how to build your own composite action and test it in a workflow.
2525

26-
{% data reusables.github-actions.context-injection-warning %}
26+
{% data reusables.actions.context-injection-warning %}
2727

2828
## 必要な環境
2929

translations/ja-JP/content/actions/creating-actions/creating-a-docker-container-action.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ shortTitle: Docker container action
2727

2828
このプロジェクトを完了すると、あなたの Docker コンテナのアクションをビルドして、ワークフローでテストする方法が理解できます。
2929

30-
{% data reusables.github-actions.self-hosted-runner-reqs-docker %}
30+
{% data reusables.actions.self-hosted-runner-reqs-docker %}
3131

32-
{% data reusables.github-actions.context-injection-warning %}
32+
{% data reusables.actions.context-injection-warning %}
3333

3434
## 必要な環境
3535

translations/ja-JP/content/actions/creating-actions/creating-a-javascript-action.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ shortTitle: JavaScript action
2929

3030
このプロジェクトを完了すると、あなたの JavaScript コンテナのアクションをビルドして、ワークフローでテストする方法が理解できます
3131

32-
{% data reusables.github-actions.pure-javascript %}
32+
{% data reusables.actions.pure-javascript %}
3333

34-
{% data reusables.github-actions.context-injection-warning %}
34+
{% data reusables.actions.context-injection-warning %}
3535

3636
## 必要な環境
3737

translations/ja-JP/content/actions/creating-actions/dockerfile-support-for-github-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Error response from daemon: OCI runtime create failed: container_linux.go:348: s
105105

106106
`Dockerfile`中で`CMD`を使っているなら、以下のガイドラインに従ってください。
107107

108-
{% data reusables.github-actions.dockerfile-guidelines %}
108+
{% data reusables.actions.dockerfile-guidelines %}
109109

110110
## サポートされているLinuxの機能
111111

0 commit comments

Comments
 (0)