diff --git a/paramecio/console.py b/paramecio/console.py index 7f18660..6cdbf17 100644 --- a/paramecio/console.py +++ b/paramecio/console.py @@ -67,6 +67,14 @@ def start(): print('Error: cannot copy the file padmin.py. Check if exists and if you have permissions for this task') + try: + + shutil.copy(workdir+'/frontend/i18nadmin.py', args.path+'/i18nadmin.py') + + except: + + print('Error: cannot copy the file i18nadmin.py. Check if exists and if you have permissions for this task') + if args.symlink!=None: try: os.symlink(workdir, args.path+'/paramecio', True) diff --git a/paramecio/frontend/i18nadmin.py b/paramecio/frontend/i18nadmin.py new file mode 100644 index 0000000..2166744 --- /dev/null +++ b/paramecio/frontend/i18nadmin.py @@ -0,0 +1,7 @@ +#!/usr/bin/python3 + +from paramecio.citoplasma.check_i18n import start + +start() + +