3ru / gpt-translate

💬Translate Markdown into Any Languages with AI
https://g-t.vercel.app
MIT License
166 stars 30 forks source link
actions gitbook github-actions i18n language openai translation

🌎 Markdown Translation BOT

Maintainability GPT Translate

OpenAI Azure Anthropic Perplexity Google Groq Fireworks Mistral Cohere

English | 简体中文 | 繁體中文 | Español | हिंदी, हिन्दी | 한국어 | 日本語

This GitHub action translates your markdown files into multiple languages using multiple AI models.

[!TIP] Now Available: AI Models from Multiple Providers✨ \ We've expanded beyond OpenAI to support various AI model providers. \ For a comprehensive list of supported providers and detailed information, please refer to our release notes.


🧐 Current Status

- The action supports translating **markdown(`.md`), markdown-jsx(`.mdx`), json(`.json`) files only**. - The command can be executed exclusively by individuals with **write permissions to the repository**. These limitations prevent API abuse by non-trusted parties.

🔧 Setup

Repository Settings

1. Settings > Actions > General

2. Settings > Secrets and variables > Actions

GitHub Actions Workflow Settings

Required

Recommended (To minimize unnecessary run time)

👇 Here is a minimal workflow example:

# .github/workflows/gpt-translate.yml
name: GPT Translate

on:
  issue_comment:
    types: [ created ]

jobs:
  gpt_translate:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v4

      - name: Run GPT Translate
        if: |
          contains(github.event.comment.body, '/gpt-translate') || 
          contains(github.event.comment.body, '/gt')
        uses: 3ru/gpt-translate@master
        with:
          apikey: ${{ secrets.OPENAI_API_KEY }}

💡 Usage

/gpt-translate [input filepath] [output filepath] [target language] 

You can use /gt as a shorthand for /gpt-translate.

1.Create a comment with /gpt-translate or /gt in an issue or pull request.

2.【On issue】Translated files will be created as a pull request.

2.【On pull request】Translated files will be added to the pull request with new commit.

In other words, if you keep commenting on an issue, new PRs will continuously be created. If you keep commenting on a PR, new commits will continuously be added to that PR.

📝 Example

/gpt-translate README.md zh-TW/README.md traditional-chinese

Translate README.md into traditional Chinese and place it under the zh-TW directory.

Multiple file support

You can translate multiple files at once by specifying a wildcard in the input file path.

Here is a sample

/gpt-translate *.md *.ja.md Japanese

If A.md and B.md are in the root directory, the output will be A.ja.md and B.ja.md. The file names are inherited from the input files. I am considering outputting the file with an arbitrary file name, but if you have a smart idea, please suggest it through the issue!

For more information, please refer to the website

🌐 Supported Languages

Any language interpreted by GPT-4 or GPT-3.5

🏘️ Community

📃 License

MIT License