https://github.com/dliocode/translate-md
Translate the Readme to another language
https://github.com/dliocode/translate-md
Last synced: 3 months ago
JSON representation
Translate the Readme to another language
- Host: GitHub
- URL: https://github.com/dliocode/translate-md
- Owner: dliocode
- License: mit
- Created: 2023-04-03T13:16:47.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-04T11:27:33.000Z (about 3 years ago)
- Last Synced: 2025-08-18T23:26:02.285Z (11 months ago)
- Size: 1.88 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# translate-md
Translate the Readme to another language
### Example Action Workflows
```yml
name: dliocode-translate-md
on:
push:
branches:
- main
- master
paths:
- 'README.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 12.x
# ISO Langusge Codes: https://cloud.google.com/translate/docs/languages
- name: Adding README - Português
uses: dliocode/translate-md@main
with:
LANG_TO: pt
- name: Adding README - English
uses: dliocode/translate-md@main
with:
LANG_TO: en
- name: Adding README - Français
uses: dliocode/translate-md@main
with:
LANG_TO: fr
- name: Adding README - Italiano
uses: dliocode/translate-md@main
with:
LANG_TO: it
- name: Adding README - Deutsch
uses: dliocode/translate-md@main
with:
LANG_TO: de
```