1
0
mirror of https://github.com/altlinux/gpupdate.git synced 2025-01-27 10:03:46 +03:00

messages/__init__.py: added logs for drive link display policies

This commit is contained in:
Valery Sinelnikov 2022-12-28 16:21:31 +04:00
parent 4f1c2f288e
commit 43c8031da5
2 changed files with 8 additions and 0 deletions

View File

@ -795,6 +795,12 @@ msgstr "Процесс GPOA запущен для компьютера"
msgid "Running networkshare applier for machine will not be started" msgid "Running networkshare applier for machine will not be started"
msgstr "Применение настроек сетевых каталогов для машины не будет запущено" msgstr "Применение настроек сетевых каталогов для машины не будет запущено"
msgid "Failed to create a link for the users network resources"
msgstr "Не удалось создать ссылку на сетевые ресурсы пользователя"
msgid "Failed to create a link to the network resources of the computer"
msgstr "Не удалось создать ссылку на сетевые ресурсы компьютера"
# Debug_end # Debug_end
# Warning # Warning

View File

@ -298,6 +298,8 @@ def debug_code(code):
debug_ids[191] = 'File copy' debug_ids[191] = 'File copy'
debug_ids[192] = 'File update' debug_ids[192] = 'File update'
debug_ids[193] = 'Deleting a file' debug_ids[193] = 'Deleting a file'
debug_ids[194] = 'Failed to create a link for the users network resources'
debug_ids[195] = 'Failed to create a link to the network resources of the computer'
return debug_ids.get(code, 'Unknown debug code') return debug_ids.get(code, 'Unknown debug code')