# sd-webui-bilingual-localization
**Repository Path**: jASSSSSSON/sd-webui-bilingual-localization
## Basic Information
- **Project Name**: sd-webui-bilingual-localization
- **Description**: 官方镜像仓库,使用所造成的一切问题与本人无关
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2023-03-29
- **Last Updated**: 2023-03-29
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## 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.

## 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 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.

After that, switch to the Installed panel and click the Apply and restart UI button.

#### 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.

## 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.