mirror of
https://github.com/facefusion/facefusion.git
synced 2026-07-28 21:08:54 +02:00
21 lines
488 B
Python
21 lines
488 B
Python
from facefusion.types import Locales
|
|
|
|
LOCALES : Locales =\
|
|
{
|
|
'en':
|
|
{
|
|
'help':
|
|
{
|
|
'model': 'choose the model responsible for restoring the expression',
|
|
'factor': 'restore factor of expression from the target face',
|
|
'areas': 'choose the items used for the expression areas (choices: {choices})'
|
|
},
|
|
'uis':
|
|
{
|
|
'model_dropdown': 'EXPRESSION RESTORER MODEL',
|
|
'factor_slider': 'EXPRESSION RESTORER FACTOR',
|
|
'areas_checkbox_group': 'EXPRESSION RESTORER AREAS'
|
|
}
|
|
}
|
|
}
|