mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00

* chore: add @inlang/paraglide-sveltekit to @kksh/ui * feat: add i18n to desktop * fix: add shrink-0 class to mode-toggle button for consistent styling * feat: add i18n to settings, not working yet * feat: i18 working * feat: add i18n for about * feat: migrate all goto to use i18n.resolveRoute * feat: finish translating settings to chinese * feat: add Chinese i18n for troubleshooters * feat: add russian translation (by AI) * format: run prettier * format * chore: update .prettierignore to exclude src/lib/paraglide/**
23 lines
677 B
YAML
23 lines
677 B
YAML
|
|
name: Ninja i18n action
|
|
|
|
on: pull_request_target
|
|
|
|
# explicitly configure permissions, in case your GITHUB_TOKEN workflow permissions are set to read-only in repository settings
|
|
permissions:
|
|
pull-requests: write # Necessary to comment on PRs
|
|
issues: read # Necessary to read issue comments
|
|
contents: read # Necessary to access the repo content
|
|
|
|
jobs:
|
|
ninja-i18n:
|
|
name: Ninja i18n - GitHub Lint Action
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Run Ninja i18n
|
|
# @main ensures that the latest version of the action is used
|
|
uses: opral/ninja-i18n-action@main
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|