[I18n zh_cn] "测试版" vs "开发版"? "快照版" vs "预览版"? #3973
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
name: Check Translations | |
on: | |
push: | |
paths: | |
- '**.properties' | |
pull_request: | |
paths: | |
- '**.properties' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '11' | |
java-package: 'jdk+fx' | |
- name: Check style test | |
run: ./gradlew checkTranslations --no-daemon |