def response_password_updated(language):
    return response_success({'message': translate_text('password updated', language)})
def response_password_wrong(language):
    return response_failed({'message': translate_text('password wrong', language)})
def response_user_api_fail(language):
    return response_failed(
        {'message': translate_text('user api failed', language)})
def response_new_user_created(language):
    return response_success(
        {'message': translate_text('user created successfully', language)})
def response_user_not_found(language):
    return response_failed(
        {'message': translate_text('user not found', language)})