Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dliocode/translate-md
Translate the Readme to another language
https://github.com/dliocode/translate-md
Last synced: 16 days 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 (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-04T11:27:33.000Z (almost 2 years ago)
- Last Synced: 2024-05-01T17:02:51.879Z (8 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-mdon:
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
```