diff --git a/code/modules/tutorials/tutorials/switch_hands.dm b/code/modules/tutorials/tutorials/switch_hands.dm index fd7d2a6ee8bfe..577c94da65782 100644 --- a/code/modules/tutorials/tutorials/switch_hands.dm +++ b/code/modules/tutorials/tutorials/switch_hands.dm @@ -53,8 +53,8 @@ var/hand_name = hand_to_watch % 2 == 0 ? "правую" : "левую" show_instruction(keybinding_message( /datum/keybinding/mob/swap_hands, - "Нажмите '%KEY%', чтобы сменить активную руку", - "Кликните по 'SWAP', чтобы сменить активную руку", + "Нажмите '%KEY%', чтобы сделать [hand_name] руку активной", + "Кликните по 'SWAP', чтобы сделать [hand_name] руку активной", )) if (STAGE_PICK_UP_ITEM) show_instruction("Возьмите что-нибудь!") diff --git a/tgui/packages/tgui/interfaces/PreferencesMenu/antagonists/antagonists/wizard.ts b/tgui/packages/tgui/interfaces/PreferencesMenu/antagonists/antagonists/wizard.ts index db7aaa2e11916..5adeadfa08b9d 100644 --- a/tgui/packages/tgui/interfaces/PreferencesMenu/antagonists/antagonists/wizard.ts +++ b/tgui/packages/tgui/interfaces/PreferencesMenu/antagonists/antagonists/wizard.ts @@ -9,7 +9,7 @@ export const WIZARD_MECHANICAL_DESCRIPTION = multiline` const Wizard: Antagonist = { key: 'wizard', - name: 'Маг', + name: 'Волшебник', description: [ `"GREETINGS. WE'RE THE WIZARDS OF THE WIZARD'S FEDERATION."`, WIZARD_MECHANICAL_DESCRIPTION, diff --git a/tgui/packages/tgui/interfaces/PreferencesMenu/antagonists/antagonists/wizardmidround.ts b/tgui/packages/tgui/interfaces/PreferencesMenu/antagonists/antagonists/wizardmidround.ts index fe25f8119480f..9df02c3431894 100644 --- a/tgui/packages/tgui/interfaces/PreferencesMenu/antagonists/antagonists/wizardmidround.ts +++ b/tgui/packages/tgui/interfaces/PreferencesMenu/antagonists/antagonists/wizardmidround.ts @@ -3,9 +3,9 @@ import { WIZARD_MECHANICAL_DESCRIPTION } from './wizard'; const WizardMidround: Antagonist = { key: 'wizardmidround', - name: 'Маг (Мидраунд)', + name: 'Волшебник (Мидраунд)', description: [ - 'Вариант мага, который могут получить призраки в любой момент во время смены.', + 'Вариант волшебника, который могут получить призраки в любой момент во время смены.', WIZARD_MECHANICAL_DESCRIPTION, ], category: Category.Midround,