104 lines
2.9 KiB
Python
104 lines
2.9 KiB
Python
#!/usr/bin/env python3
|
|
|
|
from paramecio.libraries.i18n import I18n
|
|
|
|
I18n.l['en-US']=I18n.l.get('en-US', {})
|
|
|
|
I18n.l['en-US']['common']=I18n.l['en-US'].get('common', {})
|
|
|
|
I18n.l['en-US']['common']['password_no_match']='Passwords doesn\'t match'
|
|
|
|
I18n.l['en-US']['common']['recovery_password']='Recovery password'
|
|
|
|
I18n.l['en-US']['common']['error_login']='Error, wrong username or password'
|
|
|
|
I18n.l['en-US']['common']['login']='Login'
|
|
|
|
I18n.l['en-US']['common']['sign_up']='Sign up'
|
|
|
|
I18n.l['en-US']['common']['yes']='Yes'
|
|
|
|
I18n.l['en-US']['common']['no']='No'
|
|
|
|
I18n.l['en-US']['common']['repeat_password']='Repeat Password'
|
|
|
|
I18n.l['en-US']['common']['error_passwords_no_match']='Error: passwords doesn\'t match'
|
|
|
|
I18n.l['en-US']['common']['error_username_exists']='Error: username already exists'
|
|
|
|
I18n.l['en-US']['common']['error_email_exists']='Error: this email is already being used'
|
|
|
|
I18n.l['en-US']['common']['last']='Last'
|
|
|
|
I18n.l['en-US']['common']['options']='Options'
|
|
|
|
I18n.l['en-US']['common']['edit']='Edit'
|
|
|
|
I18n.l['en-US']['common']['delete']='Delete'
|
|
|
|
I18n.l['en-US']['common']['home']='Home'
|
|
|
|
I18n.l['en-US']['common']['add_new_item']='Add new item'
|
|
|
|
I18n.l['en-US']['common']['edit_new_item']='Edit item'
|
|
|
|
I18n.l['en-US']['common']['task_successful']='Task successful'
|
|
|
|
I18n.l['en-US']['common']['add_item']='Add new item'
|
|
|
|
I18n.l['en-US']['common']['search']='Search'
|
|
|
|
I18n.l['en-US']['common']['pages']='Pages'
|
|
|
|
I18n.l['en-US']['common']['delete_item_you_sure']='Are you sure for delete this item?'
|
|
|
|
I18n.l['es-ES']=I18n.l.get('es-ES', {})
|
|
|
|
I18n.l['es-ES']['common']=I18n.l['es-ES'].get('common', {})
|
|
|
|
I18n.l['es-ES']['common']['password_no_match']='Passwords doesn\'t match'
|
|
|
|
I18n.l['es-ES']['common']['recovery_password']='Recovery password'
|
|
|
|
I18n.l['es-ES']['common']['error_login']='Error, wrong username or password'
|
|
|
|
I18n.l['es-ES']['common']['login']='Login'
|
|
|
|
I18n.l['es-ES']['common']['sign_up']='Sign up'
|
|
|
|
I18n.l['es-ES']['common']['yes']='Yes'
|
|
|
|
I18n.l['es-ES']['common']['no']='No'
|
|
|
|
I18n.l['es-ES']['common']['repeat_password']='Repeat Password'
|
|
|
|
I18n.l['es-ES']['common']['error_passwords_no_match']='Error: passwords doesn\'t match'
|
|
|
|
I18n.l['es-ES']['common']['error_username_exists']='Error: username already exists'
|
|
|
|
I18n.l['es-ES']['common']['error_email_exists']='Error: this email is already being used'
|
|
|
|
I18n.l['es-ES']['common']['last']='Last'
|
|
|
|
I18n.l['es-ES']['common']['options']='Options'
|
|
|
|
I18n.l['es-ES']['common']['edit']='Edit'
|
|
|
|
I18n.l['es-ES']['common']['delete']='Delete'
|
|
|
|
I18n.l['es-ES']['common']['home']='Home'
|
|
|
|
I18n.l['es-ES']['common']['add_new_item']='Add new item'
|
|
|
|
I18n.l['es-ES']['common']['edit_new_item']='Edit item'
|
|
|
|
I18n.l['es-ES']['common']['task_successful']='Task successful'
|
|
|
|
I18n.l['es-ES']['common']['add_item']='Add new item'
|
|
|
|
I18n.l['es-ES']['common']['search']='Search'
|
|
|
|
I18n.l['es-ES']['common']['pages']='Pages'
|
|
|
|
I18n.l['es-ES']['common']['delete_item_you_sure']='Are you sure for delete this item?'
|
|
|