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

Update translation debug logs for create symlinks mountpoints in cifs_applier

This commit is contained in:
Evgeny Sinelnikov 2022-12-29 05:25:00 +04:00
parent c5c80b9091
commit 34d7124a46
3 changed files with 16 additions and 8 deletions

View File

@ -304,7 +304,7 @@ class cifs_applier_user(applier_frontend):
try:
os.symlink(dUserMountpointHide, dUserHide, True)
except Exception as exc:
log('D194', {'exc': exc})
log('D196', {'exc': exc})
else:
if dUser.is_symlink() and dUser.owner() == 'root':
dUser.unlink()
@ -328,7 +328,7 @@ class cifs_applier_user(applier_frontend):
try:
os.symlink(dMachineMountpointHide, dMachineHide, True)
except Exception as exc:
log('D195', {'exc': exc})
log('D197', {'exc': exc})
else:
if dMachine.is_symlink() and dMachine.owner() == 'root':
dMachine.unlink()

View File

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

View File

@ -298,8 +298,10 @@ def debug_code(code):
debug_ids[191] = 'File copy'
debug_ids[192] = 'File update'
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'
debug_ids[194] = 'Failed to create a symlink to the network drives mountpoint'
debug_ids[195] = 'Failed to create a symlink to the system network drives mountpoint'
debug_ids[196] = 'Failed to create a symlink to the hidden network drives mountpoint'
debug_ids[197] = 'Failed to create a symlink to the hidden system network drives mountpoint'
return debug_ids.get(code, 'Unknown debug code')