mirror of
https://github.com/facefusion/facefusion.git
synced 2026-08-07 17:48:39 +02:00
* ignore set state for non api scope * replace 404 with 422 * remove two loops * use HTTP_422_UNPROCESSABLE_CONTENT
16 lines
393 B
Python
16 lines
393 B
Python
from facefusion.types import Locales
|
|
|
|
LOCALES : Locales =\
|
|
{
|
|
'en':
|
|
{
|
|
'ok': 'ok',
|
|
'something_went_wrong': 'something went wrong',
|
|
'invalid_access_token': 'invalid access token',
|
|
'invalid_refresh_token': 'invalid refresh token',
|
|
'source_asset_not_found': 'source asset not found',
|
|
'target_asset_not_found': 'target asset not found',
|
|
'invalid_state_key': 'invalid state key'
|
|
}
|
|
}
|