Added new i18n files
This commit is contained in:
parent
59083cdd3a
commit
df9a71e450
12 changed files with 232 additions and 171 deletions
40
paramecio/i18n/admin.py
Normal file
40
paramecio/i18n/admin.py
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from paramecio.citoplasma.i18n import I18n
|
||||
|
||||
I18n.l['en-US']={'admin': {}}
|
||||
|
||||
I18n.l['en-US']['admin']['welcome_to_paramecio']='Welcome to Paramecio Admin!!!'
|
||||
|
||||
I18n.l['en-US']['admin']['administrator']='Administrator'
|
||||
|
||||
I18n.l['en-US']['admin']['remember_login']='Remember login?'
|
||||
|
||||
I18n.l['en-US']['admin']['login']='Paramecio Login'
|
||||
|
||||
I18n.l['en-US']['admin']['selected_privileges']='Selected privileges'
|
||||
|
||||
I18n.l['en-US']['admin']['without_privileges']='Without privileges'
|
||||
|
||||
I18n.l['en-US']['admin']['sign_up']='Paramecio Sign up'
|
||||
|
||||
I18n.l['en-US']['admin']['applications']='Applications'
|
||||
|
||||
I18n.l['es-ES']={'admin': {}}
|
||||
|
||||
I18n.l['es-ES']['admin']['welcome_to_paramecio']='Welcome to Paramecio Admin!!!'
|
||||
|
||||
I18n.l['es-ES']['admin']['administrator']='Administrador'
|
||||
|
||||
I18n.l['es-ES']['admin']['remember_login']='Remember login?'
|
||||
|
||||
I18n.l['es-ES']['admin']['login']='Paramecio Login'
|
||||
|
||||
I18n.l['es-ES']['admin']['selected_privileges']='Selected privileges'
|
||||
|
||||
I18n.l['es-ES']['admin']['without_privileges']='Without privileges'
|
||||
|
||||
I18n.l['es-ES']['admin']['sign_up']='Paramecio Sign up'
|
||||
|
||||
I18n.l['es-ES']['admin']['applications']='Aplicaciones'
|
||||
|
||||
84
paramecio/i18n/common.py
Normal file
84
paramecio/i18n/common.py
Normal file
|
|
@ -0,0 +1,84 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from paramecio.citoplasma.i18n import I18n
|
||||
|
||||
I18n.l['en-US']={'common': {}}
|
||||
|
||||
I18n.l['en-US']['common']['delete']='Delete'
|
||||
|
||||
I18n.l['en-US']['common']['password_no_match']='Passwords doesn't match'
|
||||
|
||||
I18n.l['en-US']['common']['error_login']='Error, wrong username or password'
|
||||
|
||||
I18n.l['en-US']['common']['yes']='Yes'
|
||||
|
||||
I18n.l['en-US']['common']['task_successful']='Task successful'
|
||||
|
||||
I18n.l['en-US']['common']['error_passwords_no_match']='Error: passwords doesn't match'
|
||||
|
||||
I18n.l['en-US']['common']['options']='Options'
|
||||
|
||||
I18n.l['en-US']['common']['add_new_item']='Add new item'
|
||||
|
||||
I18n.l['en-US']['common']['add_item']='Add new item'
|
||||
|
||||
I18n.l['en-US']['common']['home']='Home'
|
||||
|
||||
I18n.l['en-US']['common']['search']='Search'
|
||||
|
||||
I18n.l['en-US']['common']['error_username_or_password_exists']='Error: username or email exists in database'
|
||||
|
||||
I18n.l['en-US']['common']['no']='No'
|
||||
|
||||
I18n.l['en-US']['common']['login']='Login'
|
||||
|
||||
I18n.l['en-US']['common']['edit_new_item']='Edit item'
|
||||
|
||||
I18n.l['en-US']['common']['sign_up']='Sign up'
|
||||
|
||||
I18n.l['en-US']['common']['last']='Last'
|
||||
|
||||
I18n.l['en-US']['common']['edit']='Edit'
|
||||
|
||||
I18n.l['en-US']['common']['repeat_password']='Repeat Password'
|
||||
|
||||
I18n.l['es-ES']={'common': {}}
|
||||
|
||||
I18n.l['es-ES']['common']['delete']='Delete'
|
||||
|
||||
I18n.l['es-ES']['common']['password_no_match']='Passwords doesn't match'
|
||||
|
||||
I18n.l['es-ES']['common']['error_login']='Error, wrong username or password'
|
||||
|
||||
I18n.l['es-ES']['common']['yes']='Yes'
|
||||
|
||||
I18n.l['es-ES']['common']['task_successful']='Task successful'
|
||||
|
||||
I18n.l['es-ES']['common']['error_passwords_no_match']='Error: passwords doesn't match'
|
||||
|
||||
I18n.l['es-ES']['common']['options']='Options'
|
||||
|
||||
I18n.l['es-ES']['common']['add_new_item']='Add new item'
|
||||
|
||||
I18n.l['es-ES']['common']['add_item']='Add new item'
|
||||
|
||||
I18n.l['es-ES']['common']['home']='Home'
|
||||
|
||||
I18n.l['es-ES']['common']['search']='Search'
|
||||
|
||||
I18n.l['es-ES']['common']['error_username_or_password_exists']='Error: username or email exists in database'
|
||||
|
||||
I18n.l['es-ES']['common']['no']='No'
|
||||
|
||||
I18n.l['es-ES']['common']['login']='Login'
|
||||
|
||||
I18n.l['es-ES']['common']['edit_new_item']='Edit item'
|
||||
|
||||
I18n.l['es-ES']['common']['sign_up']='Sign up'
|
||||
|
||||
I18n.l['es-ES']['common']['last']='Last'
|
||||
|
||||
I18n.l['es-ES']['common']['edit']='Edit'
|
||||
|
||||
I18n.l['es-ES']['common']['repeat_password']='Repeat Password'
|
||||
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from paramecio.citoplasma.i18n import I18n
|
||||
|
||||
I18n.l['admin']['users_admin']='User's Admin'
|
||||
|
||||
I18n.l['admin']['applications']='Applications'
|
||||
|
||||
I18n.l['admin']['administrator']='Administrator'
|
||||
|
||||
I18n.l['admin']['login']='Paramecio Login'
|
||||
|
||||
I18n.l['admin']['sign_up']='Paramecio Sign up'
|
||||
|
||||
I18n.l['admin']['without_privileges']='Without privileges'
|
||||
|
||||
I18n.l['admin']['welcome_to_paramecio']='Welcome to Paramecio Admin!!!'
|
||||
|
||||
I18n.l['admin']['selected_privileges']='Selected privileges'
|
||||
|
||||
|
|
@ -1,42 +0,0 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from paramecio.citoplasma.i18n import I18n
|
||||
|
||||
I18n.l['common']['search']='Search'
|
||||
|
||||
I18n.l['common']['delete']='Delete'
|
||||
|
||||
I18n.l['common']['error_login']='Error, wrong username or password'
|
||||
|
||||
I18n.l['common']['add_item']='Add new item'
|
||||
|
||||
I18n.l['common']['edit']='Edit'
|
||||
|
||||
I18n.l['common']['edit_new_item']='Edit item'
|
||||
|
||||
I18n.l['common']['error_username_or_password_exists']='Error: username or email exists in database'
|
||||
|
||||
I18n.l['common']['last']='Last'
|
||||
|
||||
I18n.l['common']['no']='No'
|
||||
|
||||
I18n.l['common']['add_new_item']='Add new item'
|
||||
|
||||
I18n.l['common']['yes']='Yes'
|
||||
|
||||
I18n.l['common']['options']='Options'
|
||||
|
||||
I18n.l['common']['password_no_match']='Passwords doesn't match'
|
||||
|
||||
I18n.l['common']['login']='Login'
|
||||
|
||||
I18n.l['common']['error_passwords_no_match']='Error: passwords doesn't match'
|
||||
|
||||
I18n.l['common']['sign_up']='Sign up'
|
||||
|
||||
I18n.l['common']['task_successful']='Task successful'
|
||||
|
||||
I18n.l['common']['repeat_password']='Repeat Password'
|
||||
|
||||
I18n.l['common']['home']='Home'
|
||||
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from paramecio.citoplasma.i18n import I18n
|
||||
|
||||
I18n.l['admin']['users_admin']='Usuarios de administración'
|
||||
|
||||
I18n.l['admin']['applications']='Applications'
|
||||
|
||||
I18n.l['admin']['administrator']='Administrador'
|
||||
|
||||
I18n.l['admin']['login']='Entrar en Paramecio'
|
||||
|
||||
I18n.l['admin']['sign_up']='Entrar en Paramecio'
|
||||
|
||||
I18n.l['admin']['without_privileges']='Without privileges'
|
||||
|
||||
I18n.l['admin']['welcome_to_paramecio']='Bienvenido a la administración de este site!!'
|
||||
|
||||
I18n.l['admin']['selected_privileges']='Selected privileges'
|
||||
|
||||
|
|
@ -1,42 +0,0 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from paramecio.citoplasma.i18n import I18n
|
||||
|
||||
I18n.l['common']['search']='Search'
|
||||
|
||||
I18n.l['common']['delete']='Delete'
|
||||
|
||||
I18n.l['common']['error_login']='Error, wrong username or password'
|
||||
|
||||
I18n.l['common']['add_item']='Add new item'
|
||||
|
||||
I18n.l['common']['edit']='Edit'
|
||||
|
||||
I18n.l['common']['edit_new_item']='Edit item'
|
||||
|
||||
I18n.l['common']['error_username_or_password_exists']='Error: username or email exists in database'
|
||||
|
||||
I18n.l['common']['last']='Last'
|
||||
|
||||
I18n.l['common']['no']='No'
|
||||
|
||||
I18n.l['common']['add_new_item']='Add new item'
|
||||
|
||||
I18n.l['common']['yes']='Yes'
|
||||
|
||||
I18n.l['common']['options']='Options'
|
||||
|
||||
I18n.l['common']['password_no_match']='Passwords doesn't match'
|
||||
|
||||
I18n.l['common']['login']='Login'
|
||||
|
||||
I18n.l['common']['error_passwords_no_match']='Error: passwords doesn't match'
|
||||
|
||||
I18n.l['common']['sign_up']='Sign up'
|
||||
|
||||
I18n.l['common']['task_successful']='Task successful'
|
||||
|
||||
I18n.l['common']['repeat_password']='Repeat Password'
|
||||
|
||||
I18n.l['common']['home']='Home'
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue