GithubHelp home page GithubHelp logo

chrysfay / aigodlike-comfyui-sdtranslation Goto Github PK

View Code? Open in Web Editor NEW

This project forked from aigodlike/aigodlike-comfyui-translation

0.0 0.0 0.0 887 KB

A plugin for multilingual translation of ComfyUI,This plugin implements translation of resident menu bar/search bar/right-click context menu/node, etc

Home Page: https://www.aigodlike.com/

JavaScript 88.99% Python 11.01%

aigodlike-comfyui-sdtranslation's Introduction

AIGODLIKE-ComfyUI-Translation

A plugin for multilingual translation of ComfyUI,This plugin implements translation of resident menu bar/search bar/right-click context menu/node, etc

ComfyUI users in other languages, I need your help

I hope ComfyUI can support more languages besides Chinese and English, such as French, German, Japanese, Korean, etc. However, I believe that translation should be done by native speakers of each language. So I need your help, let's go fight for ComfyUI together!

[Korean] Korean translation needs help~

[Japanese] Japanese translation needs help~

Language supported

COMFYUI Translation 简体中文 繁體中文 English 日本語 한국어 Русский Your language
Menu TODO
NodeCategory TODO
Nodes TODO

Function

  1. Translate all UI of ComfyUI image image image
  2. Direct language switching (limitation: custom names will be removed) https://github.com/AIGODLIKE/AIGODLIKE-COMFYUI-TRANSLATION/assets/116185401/e43182b7-8932-4358-bc65-ade7bddf27c5
  3. Support for adding other languages
  4. Support translation custom nodes
  5. (2023/8/16) Support one-click switching between English/currently set language
  6. (2023/8/19) Support for multilingual translation of custom nodes * (in production)
Custom Node Name 简中 繁中 English 日本語 한국어 Русский
3D-Pack TODO TODO TODO TODO
Advanced Encode TODO TODO TODO
Advanced ControlNet TODO TODO TODO
AGL-ComfyUI-Translation TODO TODO
AlekPet Nodes TODO TODO
AnimateAnyone TODO TODO TODO TODO
AnimateDiff TODO TODO
AnimateDiff-Evolved TODO TODO TODO
Automatic CFG TODO TODO TODO TODO
BiRefNet TODO TODO TODO TODO
Champ TODO TODO TODO TODO
CLIP Seg TODO TODO
ComfyRoll TODO TODO TODO
ControlNet LLLite TODO TODO TODO
ControlNet Preprocessors TODO TODO
ControlNet Preprocessors AUX TODO TODO
Crystools TODO TODO TODO
Cutoff TODO TODO
Custom-Scripts TODO TODO TODO
cg-use-everywhere TODO TODO TODO TODO
cg-image-picker TODO TODO TODO TODO
Davemane42 Nodes TODO TODO
Dagthomas Nodes TODO TODO
Dynamic Thresholding TODO TODO TODO
Easy Tools TODO TODO TODO TODO
Easy Use TODO TODO TODO TODO
Efficiency Nodes TODO TODO
ELLA TODO TODO TODO TODO
EllangoK Postprocessing TODO TODO TODO
Essentials TODO TODO TODO TODO
ExLlama nodes TODO TODO TODO
experiments TODO TODO TODO
Fast Decode TODO TODO
FlowtyTripoSR TODO TODO TODO TODO
Frame Interpolation TODO TODO TODO TODO
FreeU Advanced TODO TODO TODO TODO
IPAdapter TODO TODO TODO
IPAdapter_plus TODO TODO TODO
Image Grid TODO TODO TODO
Impact Pack TODO TODO TODO
Impact Subpack TODO TODO TODO
Inspire Pack TODO TODO TODO
InstantID (cubiq) TODO TODO TODO TODO
InstantID (ZHO) TODO TODO TODO TODO
KJ Nodes TODO TODO TODO TODO
LaMa Preprocessor TODO TODO TODO TODO
Latent2RGB TODO TODO
LayerDiffuse TODO TODO TODO TODO
LayerStyle TODO TODO TODO TODO
LCM TODO TODO TODO TODO
Literals TODO TODO TODO TODO
LoadLoraWithTags TODO TODO TODO TODO
LoraAutoTrigger TODO TODO TODO TODO
Manager TODO TODO
Masquerade Nodes TODO TODO TODO
Math TODO TODO TODO TODO
Mixlab Nodes TODO TODO TODO TODO
MoonDream TODO TODO TODO TODO
MotionCtrl TODO TODO TODO TODO
MotionCtrl-SVD TODO TODO TODO TODO
MTB TODO TODO TODO TODO
Noise TODO TODO TODO
NormalLighting TODO TODO TODO TODO
Portrai Master TODO TODO TODO TODO
Power Noise Suite TODO TODO TODO TODO
Prompt Reader TODO TODO TODO TODO
QR TODO TODO TODO
OneButtonPrompt TODO TODO TODO TODO
ReActor TODO TODO TODO TODO
ResAdapter TODO TODO TODO TODO
Restart-Sampling TODO TODO TODO
Roop TODO TODO TODO TODO
rgthree TODO TODO TODO TODO
SD-Latent-Interposer TODO TODO TODO TODO
SDXL_prompt_styler TODO TODO TODO
SeargeSDXL TODO TODO TODO
Segment Anything TODO TODO TODO TODO
StabilityNodes TODO TODO TODO
TiledDiffusion TODO TODO TODO TODO
TiledKSampler TODO TODO
TinyTerra TODO TODO TODO TODO
UltimateSDUpscale TODO TODO TODO
Vextra Nodes TODO TODO TODO
VLM Nodes TODO TODO TODO TODO
WAS Suite TODO TODO TODO
WD14-Tagger TODO TODO TODO
zfkun TODO TODO TODO TODO

The above only includes translations for the UI. If you are a developer and need me to help you translate your interface, you can go directly to the ComfyUI Plugins List to add your custom node project, or send an issue, as long as I can see it, I will translate it (it will take some time)

How to install

AIGODLIKE-COMFYUI-TRANSLATION is equivalent to a custom node, you can use any method you like, just put it in folder custom_nodes Then run:

cd ComfyUI/custom_nodes
git clone https://github.com/AIGODLIKE/AIGODLIKE-COMFYUI-TRANSLATION.git

image

How to use

Launch ComfyUI and open the menu. Click on the language option to switch languages. image

How to add other languages(translator)

  1. Create a new 'Language Name' folder in the plugin directory (e.g. example folder) image

  2. Find the LocaleMap.js file and add the language code with the same name as the first step folder in it image

    export const LOCALES = {
        "zh-CN": {
            "nativeName": "中文",
            "englishName": "Chinese Simplified"
        },
        "en-US": {
            "nativeName": "English (US)",
            "englishName": "English (US)"                    
        },
        "example": {
            "nativeName": "exampleDisplayName",
            "englishName": "enName"
        },
    }
  3. After completing the above two steps, restart the ComfyUI service to find the 'exampleDisplayName' language type in the 'AGLTranslation language' settings bar image

How to add custom node translations(translator)

  1. Translation files are currently divided into three types
    1. Node information translation (including node name, node connector, node component) corresponding translation file Your language folder/Nodes/somenode.json
    2. Node classification information (used for right-click the new node menu) corresponds to the translation file Your language folder/NodeCategory.json
    3. Menu information (including resident menu, settings panel, right-click context menu, search menu, etc.) corresponds to translated files Your language folder/Menu.json
  2. Node information translation can be placed in multiple JSON files under 'Your language folder/Nodes/' based on different nodes
  3. All translation files are in JSON format, please fill in strictly according to the JSON file format

Translation examples

  1. Node Translation Format
    {
        "KSampler": {
            "title": "KSampler[example translation]",
            "inputs": {
                "model": "模型",
                "positive": "正向提示词",
                "negative": "反向提示词",
                "latent_image": "潜空间"
            },
            "widgets": {
                "seed": "随机种",
                "control_after_generate": "运行后操作",
                "steps": "步数",
                "cfg": "CFG",
                "sampler_name": "采样器",
                "scheduler": "调度器",
                "denoise": "降噪"
            },
            "outputs": {
                "LATENT": "潜空间",
            }
        },
        "Load VAE": {}
    }
  2. Node classification translation format
    {
        "Add Node": "Add Node[example]",
        "Add Group": "Add Group[example]",
        "Search": "Search[example]",
        "Queue size:": "Queue size[example]:",
        "Queue Prompt": "Queue Prompt[example]",
        "Extra options": "Extra options[example]"
    }
  3. Menu information translation format
    {
        "conditioning": "conditioning[example]",
        "latent": "latent[example]",
        "loaders": "loaders[example]",
        "image": "image[example]"
    }

Limitations

  1. Supports direct switching of any language node to the target language, but will lose custom names
  2. A small portion of options that use Enum type data cannot be translated image

aigodlike-comfyui-sdtranslation's People

Contributors

dorotaluna avatar yorha4d avatar karrycharon avatar ltdrdata avatar nestorchik avatar shiertier avatar akegarasu avatar mcmonkey4eva avatar soulteary avatar nightaway avatar ytchen175 avatar zfkun avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.