mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 04:50:36 +03:00
11 lines
283 B
Python
11 lines
283 B
Python
''' Utility: Text messages. '''
|
|
# pylint: skip-file
|
|
|
|
|
|
def passwordAuthFailed():
|
|
return 'Неизвестное сочетание имени пользователя и пароля'
|
|
|
|
|
|
def passwordsNotMatch():
|
|
return 'Введенные пароли не совпадают'
|