mirror of
https://github.com/facefusion/facefusion.git
synced 2026-08-19 23:37:13 +02:00
22 lines
501 B
Python
22 lines
501 B
Python
from facefusion.types import Locales
|
|
|
|
LOCALES : Locales =\
|
|
{
|
|
'en':
|
|
{
|
|
'help':
|
|
{
|
|
'model': 'choose the model responsible for removing the background',
|
|
'color': 'apply red, green blue and alpha values to the background'
|
|
},
|
|
'uis':
|
|
{
|
|
'model_dropdown': 'BACKGROUND REMOVER MODEL',
|
|
'color_red_number': 'BACKGROUND COLOR RED',
|
|
'color_green_number': 'BACKGROUND COLOR GREEN',
|
|
'color_blue_number': 'BACKGROUND COLOR BLUE',
|
|
'color_alpha_number': 'BACKGROUND COLOR ALPHA'
|
|
}
|
|
}
|
|
}
|