Created connection_view.py

pull/713/head
sTiKyt 2020-08-13 22:58:05 +03:00
parent 8c00d509c7
commit 64c3ab248e
No known key found for this signature in database
GPG Key ID: 510E1C3C9B2414B4
1 changed files with 13 additions and 0 deletions

13
views/connection_view.py Normal file
View File

@ -0,0 +1,13 @@
from controllers.localization_controller import LocalizationController
# noinspection PyProtectedMember
_ = LocalizationController()._
class ConnectionView:
def __init__(self):
self.connection_messages = {
# TODO add verbose messages for model
"connection_is_detected": _("You have internet connection, proceeding..."),
"connection_is_not_detected": _("Please verify your internet connection before launching")
}