mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
6 lines
264 B
Python
6 lines
264 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
error = "\033[31m\033[1m" + _("Error:") + "\033[m "
|
|
interrupt = "\033[31m\033[1m" + _("Interrupt:") + "\033[m "
|
|
notice = "\033[34m\033[1m" + _("Notice:") + "\033[m "
|
|
success = "\033[33m\033[1m" + _("Success:") + "\033[m "
|