Skip to content
This repository has been archived by the owner on Nov 7, 2022. It is now read-only.

Add japanese translation #116

Closed
wants to merge 7 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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM debian:10
WORKDIR /work
RUN apt-get update && apt-get install -y po4a
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@
"format": "prettier --write src/*.ts",
"format-check": "prettier --check src/*.ts",
"prepare": "npx npm-run-all clean build",
"watch": "parcel serve src/index.ts --out-dir lib/ --target node"
"watch": "parcel serve src/index.ts --out-dir lib/ --target node",
"po:docker": "docker build . -t po4a",
"po:update": "docker run --rm -v `pwd`:/work po4a po4a-updatepo -f text -m readme.md -p po/ja.po",
"po:translate": "docker run --rm -v `pwd`:/work po4a po4a-translate -f text -m readme.md -p po/ja.po -l readme_ja.md"
},
"activationEvents": [
"onLanguage:scala",
Expand Down
Loading