-
Notifications
You must be signed in to change notification settings - Fork 400
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
5 changed files
with
271 additions
and
92 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,26 @@ | ||
name: GitHub Actions Demo | ||
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 | ||
on: [push] | ||
jobs: | ||
Explore-GitHub-Actions: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
cache: 'yarn' | ||
- name: Install gettext | ||
run: apt-get install gettext | ||
- name: Install node_modules | ||
run: yarn install --frozen-lockfile --prefer-offline | ||
- name: Extract locales | ||
run: yarn extract-locales | ||
- name: Inspect file | ||
run: cat ./locale/templates/LC_MESSAGES/amo.pot | ||
- id: diff | ||
name: Diff changes | ||
run: yarn run zx ./bin/locales.mjs | ||
|
||
|
||
|
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,41 @@ | ||
#!/usr/bin/env zx | ||
|
||
import {$, path, echo, within, glob} from 'zx'; | ||
|
||
const localeDir = path.join(__dirname, '..', 'locale'); | ||
const templateFile = path.join(localeDir, '/templates/LC_MESSAGES/amo.pot'); | ||
|
||
// git diff --numstat returns the number of insertions and deletions for each file | ||
// this regex extracts the numbers from the output | ||
const regex = /([0-9]+).*([0-9]+)/; | ||
|
||
within(async () => { | ||
const {stdout: output} = await $`git diff --numstat -- ${templateFile}`; | ||
|
||
const [, insertions = 0, deletions = 0] = output.match(regex) || []; | ||
|
||
const isLocaleClean = insertions < 2 && deletions < 2; | ||
|
||
if (isLocaleClean) { | ||
return echo('No locale changes, nothing to update, ending process'); | ||
} | ||
|
||
const poFiles = await glob(`${localeDir}/**/amo.po`); | ||
|
||
for await (const poFile of poFiles) { | ||
const dir = path.dirname(poFile); | ||
const stem = path.basename(poFile, '.po'); | ||
const tempFile = path.join(dir, `${stem}.po.tmp`); | ||
|
||
try { | ||
await $`msgmerge --no-fuzzy-matching -q -o ${tempFile} ${poFile} ${templateFile}` | ||
await $`mv ${tempFile} ${poFile}` | ||
} catch (error) { | ||
await $`rm ${tempFile}`; | ||
throw new Error(`Error merging ${poFile}`); | ||
} | ||
} | ||
|
||
return true; | ||
}); | ||
|
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
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
Oops, something went wrong.