File size: 318 Bytes
e13700e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | from facefusion.types import Locales
LOCALES : Locales =\
{
'en':
{
'help':
{
'model': 'choose the model responsible for swapping the face',
'morph': 'morph between source face and target faces'
},
'uis':
{
'model_dropdown': 'DEEP SWAPPER MODEL',
'morph_slider': 'DEEP SWAPPER MORPH'
}
}
}
|