Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/journey-ad/sd-webui-bilingual-localization
Stable Diffusion web UI bilingual localization extensions. SD WebUI双语对照翻译插件
https://github.com/journey-ad/sd-webui-bilingual-localization
automatic1111 localization stable-diffusion stable-diffusion-webui stable-diffusion-webui-plugin
Last synced: 3 months ago
JSON representation
Stable Diffusion web UI bilingual localization extensions. SD WebUI双语对照翻译插件
- Host: GitHub
- URL: https://github.com/journey-ad/sd-webui-bilingual-localization
- Owner: journey-ad
- License: mit
- Created: 2023-02-26T07:26:55.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-06T08:01:46.000Z (7 months ago)
- Last Synced: 2024-04-24T17:24:40.175Z (7 months ago)
- Topics: automatic1111, localization, stable-diffusion, stable-diffusion-webui, stable-diffusion-webui-plugin
- Language: JavaScript
- Homepage:
- Size: 186 KB
- Stars: 808
- Watchers: 5
- Forks: 72
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-stable-diffusion-webui - journey-ad/sd-webui-bilingual-localization - Bilingual localization extensions for Stable Diffusion WebUI, provides English and Chinese translations for better user experience. (GitHub projects)
README
[中文文档](README_ZH.md) / [日本語](README_JA.md)
# sd-webui-bilingual-localization
[Stable Diffusion web UI](https://github.com/AUTOMATIC1111/stable-diffusion-webui) bilingual localization extensions.![Snipaste_2023-03-30_01-05-45](https://user-images.githubusercontent.com/16256221/228617304-3107244b-ce13-4b96-b665-1d13090d24a7.png)
## Features
- Bilingual translation, no need to worry about how to find the original button.
- Compatible with language pack extensions, no need to re-import.
- Support dynamic translation of title hints.
- Additional support Scoped and RegExp pattern, more flexible translation.## Installation
Choose one of the following methods, Need to use webui with extension support (Versions after 2023)
#### Method 1
Use the `Install from URL` provided by webui to install
Click in order Extensions - Install from URL
Then fill in the first text box with `https://github.com/journey-ad/sd-webui-bilingual-localization`, click the Install button.
![Snipaste_2023-02-28_00-27-48](https://user-images.githubusercontent.com/16256221/221625310-a6ef0b4c-a1e0-46bb-be9c-6d88cd0ad684.png)
After that, switch to the Installed panel and click the Apply and restart UI button.
![Snipaste_2023-02-28_00-29-14](https://user-images.githubusercontent.com/16256221/221625345-9e656f25-89dd-4361-8ee5-f4ab39d18ca4.png)
#### Method 2
Clone to your extension directory manually.
```bash
git clone https://github.com/journey-ad/sd-webui-bilingual-localization extensions/sd-webui-bilingual-localization
```## Usage
> **⚠️Important⚠️**
> Make sure Settings - User interface - Localization is set to `None`In Settings - Bilingual Localization panel, select the localization file you want to enable and click on the Apply settings and Reload UI buttons in turn.
![Snipaste_2023-02-28_00-04-21](https://user-images.githubusercontent.com/16256221/221625729-73519629-8c1f-4eb5-99db-a1d3f4b58a87.png)
## Scoped
Localization supports scoped to prevent global polluting. The syntax rules are as follows:
- `####` Scoped text will only take effect when the ancestor element ID matches the specified scope.
- `##@##` Scoped text will only take effect when the ancestor element matches the specified CSS selector.```json
{
...
"##tab_ti##Normal": "正态", // only the text `Normal` under the element with id="tab_ti" will be translated to `正态`.
"##tab_threedopenpose##Normal": "法线图", // only the text `Normal` under the element with id="tab_threedopenpose" will be translated to `法线图`.
"##@.extra-networks .tab-nav button##Lora": "Lora模型", // only the text `Lora` under the element with class=".extra-networks .tab-nav button" will be translated to `Lora模型`.
...
}
```## RegExp pattern
Localization support RegExp pattern, syntax rule is `@@`, capturing group is `$n`, doc: [String.prototype.replace()](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String/replace)
```json
{
...
"@@/^(\\d+) images in this directory, divided into (\\d+) pages$/": "目录中有$1张图片,共$2页",
"@@/^Favorites path from settings: (.*)$/": "设置的收藏夹目录:$1",
...
}
```## How to get localization file
Localization files are no longer provided with the plugin, please install a third-party language extensions and set-up as described in the [Usage](#usage) section of this article.