mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
messages + gitignore
This commit is contained in:
parent
e527bf71f6
commit
ebf1e7d684
2 changed files with 7 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -3,6 +3,7 @@
|
|||
# Packages
|
||||
*.egg
|
||||
*.egg-info
|
||||
*.swp
|
||||
dist
|
||||
build
|
||||
eggs
|
||||
|
|
6
lib/yunohost_messages.py
Normal file
6
lib/yunohost_messages.py
Normal file
|
@ -0,0 +1,6 @@
|
|||
# -*- 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 "
|
Loading…
Reference in a new issue