-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
81 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Crowdin | ||
|
||
on: | ||
push: | ||
# branches: [main] # TODO: あとで戻す | ||
|
||
jobs: | ||
synchronize-with-crowdin: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: crowdin action | ||
uses: crowdin/github-action@v2 | ||
with: | ||
upload_sources: true | ||
download_translations: true | ||
create_pull_request: true | ||
pull_request_base_branch_name: "try-crowdin" # TODO: あとでmasterにする | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.CROWDIN_GITHUB_TOKEN }} | ||
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} | ||
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
"project_id_env": "CROWDIN_PROJECT_ID" | ||
"api_token_env": "CROWDIN_PERSONAL_TOKEN" | ||
"base_path": "." | ||
|
||
"preserve_hierarchy": true | ||
|
||
"files": | ||
[ | ||
{ | ||
"source": "locales/en.yml", | ||
"translation": "locales/%two_letters_code%.yml", | ||
}, | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"key1": "サンプルバリュー1", | ||
"key2": "サンプルバリュー2", | ||
"key3": [ | ||
"サンプルバリュー3-1", | ||
"サンプルバリュー3-2", | ||
"サンプルバリュー3-3" | ||
], | ||
"key4": { | ||
"key4-1": "サンプルバリュー4-1", | ||
"key4-2": "サンプルバリュー4-2", | ||
"key4-3": "サンプルバリュー4-3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
layout: "@/layouts/OneSectionMarkdown.astro" | ||
title: 使い方 | VOICEVOX | ||
description: VOICEVOXソフトウェアの使い方です | ||
--- | ||
|
||
テスト1行、後ろ空白なし | ||
テスト2行、後ろ空白なし | ||
|
||
テスト1行、後ろ空白なし | ||
テスト2行、後ろ空白なし | ||
|
||
テスト1行、後ろ空白あり | ||
テスト2行、後ろ空白なし | ||
|
||
これはテキスト音声合成ソフトウェア「VOICEVOX」の使い方を紹介するドキュメントです。 | ||
最初に[利用規約](https://voicevox.hiroshiba.jp/term)をご確認ください。 | ||
|
||
また、[使い方を軽めに紹介した動画](https://youtu.be/4yVpklclxwU)もあるので、よかったらご覧ください。 | ||
|
||
## インストール・起動方法 | ||
|
||
### Windows 版 | ||
|
||
<details><summary>クリックで展開</summary> | ||
|
||
起動しようとすると「Windows によって PC が保護されました」というダイアログが表示されるかもしれません。その際は「詳細情報」をクリックし、発行元が「Kazuyuki Hiroshiba」であることを確認してから「実行」を選んでください。 | ||
|
||
</details> |