mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-11 01:10:11 +01:00
610c87ce19
* Init support of i18n and English and mandarin * Update common.js (#1320) * add General Appearance and Chat setting zh translate (#1414) * add config zh translate (#1461) * patch some translation pages * Update locality fixes * update: complete login page Mandarin translation. (#1709) update: complete Mandarin translation. * complete translation * update github to run validator * bump to test workflow failure * bump to fix tests * update workflow * refactor lang selector support * add Spanish and French * add dictionaries --------- Co-authored-by: GetOffer.help <13744916+getofferhelp@users.noreply.github.com> Co-authored-by: AIR <129256286+KochabStar@users.noreply.github.com> Co-authored-by: Ezio T <ezio5600@gmail.com>
38 lines
990 B
YAML
38 lines
990 B
YAML
# This Github action is for validation of all languages which translations are offered for
|
|
# in the locales folder in `frontend/src`. All languages are compared to the EN translation
|
|
# schema since that is the fallback language setting. This workflow will run on all PRs that
|
|
# modify any files in the translation directory
|
|
name: Verify translations files
|
|
|
|
concurrency:
|
|
group: build-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
paths:
|
|
- "frontend/src/locales/**.js"
|
|
|
|
jobs:
|
|
run-script:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '18'
|
|
|
|
- name: Run verifyTranslations.mjs script
|
|
run: |
|
|
cd frontend/src/locales
|
|
node verifyTranslations.mjs
|
|
|
|
- name: Fail job on error
|
|
if: failure()
|
|
run: exit 1
|