diff --git a/code/modules/mob/new_player/new_player.dm b/code/modules/mob/new_player/new_player.dm index 25bc1931d9fd..bc2317e7e168 100644 --- a/code/modules/mob/new_player/new_player.dm +++ b/code/modules/mob/new_player/new_player.dm @@ -54,36 +54,36 @@ set waitfor = FALSE var/real_name = client.prefs.active_character.real_name if(client.prefs.toggles2 & PREFTOGGLE_2_RANDOMSLOT) - real_name = "Random Character Slot" - var/output = "

Setup Character
[real_name]

" + real_name = "Случайный персонаж" + var/output = "

Настройка персонажа
[real_name]

" if(!SSticker || SSticker.current_state <= GAME_STATE_PREGAME) - if(!ready) output += "

Declare Ready

" - else output += "

You are ready (Cancel)

" + if(!ready) output += "

Нажмите, если готовы

" + else output += "

Вы готовы (Отмена)

" else - output += "

View the Crew Manifest

" - output += "

Join Game!

" + output += "

Просмотр списка экипажа

" + output += "

Присоединиться к игре!

" var/list/antags = client.prefs.be_special if(antags && antags.len) - if(!client.skip_antag) output += "

Global Antag Candidacy" + if(!client.skip_antag) output += "

Глобальная настройка антагов" else output += "

Global Antag Candidacy" - output += "
You are [client.skip_antag ? "ineligible" : "eligible"] for all antag roles.

" + output += "
Вы [client.skip_antag ? "не готовы" : "готовы"] для всех антаг ролей.

" if(!SSticker || SSticker.current_state == GAME_STATE_STARTUP) - output += "

Observe (Please wait...)

" + output += "

Наблюдать (Ожидайте...)

" else - output += "

Observe

" + output += "

Наблюдать

" if(GLOB.join_tos) - output += "

Terms of Service

" + output += "

Условия использования

" if(length(GLOB.configuration.system.region_map)) output += "

Set region (reduces ping)

" output += "
" - var/datum/browser/popup = new(src, "playersetup", "
New Player Options
", 240, 340) + var/datum/browser/popup = new(src, "playersetup", "
Новый игрок
", 240, 340) popup.set_window_options("can_close=0") popup.set_content(output) popup.open(0)