Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improve Japanese Translation #21

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
58 changes: 29 additions & 29 deletions .commitlintrc.yml
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
# commitlint.config.yml
extends:
- "@commitlint/config-conventional"

rules:
# Basic rules
header-max-length: [2, "always", 72]
body-max-line-length: [2, "always", 100]

# Commit type
type-enum:
- 2
- "always"
- [
"feat", # New feature
"fix", # Bug fix
"docs", # Documentation changes
"style", # Code formatting, white spaces, etc.
"refactor", # Code refactoring
"perf", # Performance improvement
"test", # Adding or fixing tests
"build", # Changes affecting the build system or external dependencies
"ci", # Changes to CI configuration files and scripts
"chore", # Other changes that don't modify src or test files
"delete", # Deleting unused files
"revert", # Reverting to a previous commit
]

scope-empty: [2, "never"]
# commitlint.config.yml
extends:
- "@commitlint/config-conventional"
rules:
# Basic rules
header-max-length: [2, "always", 72]
body-max-line-length: [2, "always", 100]
# Commit type
type-enum:
- 2
- "always"
- [
"feat", # New feature
"fix", # Bug fix
"docs", # Documentation changes
"style", # Code formatting, white spaces, etc.
"refactor", # Code refactoring
"perf", # Performance improvement
"test", # Adding or fixing tests
"build", # Changes affecting the build system or external dependencies
"ci", # Changes to CI configuration files and scripts
"chore", # Other changes that don't modify src or test files
"delete", # Deleting unused files
"revert", # Reverting to a previous commit
]
scope-empty: [2, "never"]
subject-empty: [2, "never"]
48 changes: 24 additions & 24 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
---
name: Bug report 🐛
about: Create a report to help us improve
title: "[BUG] All its on fire!."
labels: bug
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.
---
name: Bug report 🐛
about: Create a report to help us improve
title: "[BUG] All its on fire!."
labels: bug
assignees: ''
---
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
40 changes: 20 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: "[FEAT] Include a pandora box"
labels: enhancement, feature request
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
---
name: Feature request
about: Suggest an idea for this project
title: "[FEAT] Include a pandora box"
labels: enhancement, feature request
assignees: ''
---
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.
54 changes: 27 additions & 27 deletions .github/ISSUE_TEMPLATE/translation.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
---
name: Translation Error Report 📝
about: Report a translation error in the application
title: "[LANG] Descriptive Title"
labels: translation, bug
assignees: ''

---

**Description of the Error** 🛠️
A clear and concise description of what the translation error is.

**To Reproduce** 🔍
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '...'
3. Scroll to '...'
4. Observe the error

**Expected Behavior** ✨
A clear and concise description of what you expected to happen instead of the translation error.

**Screenshots** 📸
If applicable, add screenshots to help explain the issue.

**Additional Context** ℹ️
Add any other context about the problem here, such as the language you are using the application in and any other relevant information.
---
name: Translation Error Report 📝
about: Report a translation error in the application
title: "[LANG] Descriptive Title"
labels: translation, bug
assignees: ''
---
**Description of the Error** 🛠️
A clear and concise description of what the translation error is.
**To Reproduce** 🔍
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '...'
3. Scroll to '...'
4. Observe the error
**Expected Behavior** ✨
A clear and concise description of what you expected to happen instead of the translation error.
**Screenshots** 📸
If applicable, add screenshots to help explain the issue.
**Additional Context** ℹ️
Add any other context about the problem here, such as the language you are using the application in and any other relevant information.
114 changes: 57 additions & 57 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,57 +1,57 @@
name: Continuous Integration

on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:

jobs:
check-js:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- run: npm install
- run: npm run lint
- run: npm run test

check-rust:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4

- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2024-06-25
- uses: Swatinem/rust-cache@v2

- uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"

- name: Build
run: |-
npm install
npm run build:ui
cargo build

- name: Run linter
run: |-
rustup component add rustfmt
cargo fmt -- --check

- name: Run clippy
run: |-
rustup component add clippy
cargo clippy --all-targets -- -D warnings

- name: Run tests
run: cargo test --verbose
name: Continuous Integration
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
check-js:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- run: npm install
- run: npm run lint
- run: npm run test
check-rust:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2024-06-25
- uses: Swatinem/rust-cache@v2
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Build
run: |-
npm install
npm run build:ui
cargo build
- name: Run linter
run: |-
rustup component add rustfmt
cargo fmt -- --check
- name: Run clippy
run: |-
rustup component add clippy
cargo clippy --all-targets -- -D warnings
- name: Run tests
run: cargo test --verbose
Loading