Skip to content

Commit

Permalink
minor translation + fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ros_Sample committed Nov 1, 2024
1 parent 4889a96 commit 14fe7e2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion modular_bandastation/cryosleep/code/admin.dm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/// Send player in not-quiet cryopod. If with_paper = TRUE, place a paper with notification under player.
/mob/proc/send_to_cryo(with_paper = FALSE)
//effect
playsound(loc, 'sound/magic/Repulse.ogg', 100, 1)
playsound(loc, 'sound/effects/magic/Repulse.ogg', 100, 1)
var/datum/effect_system/spark_spread/quantum/sparks = new
sparks.set_up(10, 1, loc)
sparks.attach(loc)
Expand Down
6 changes: 3 additions & 3 deletions modular_bandastation/cryosleep/code/cryopod.dm
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/computer/cryopod, 32)
..(target)
var/mob/living/mob_occupant = occupant
if(mob_occupant && mob_occupant.stat != DEAD)
to_chat(occupant, span_notice("<b>You feel cool air surround you. You go numb as your senses turn inward.</b>"))
to_chat(occupant, span_notice("<b>Вы чувствуете, как холодный воздух обволакивает вас. Чувства затухают и ваше тело немеет.</b>"))

COOLDOWN_START(src, despawn_world_time, time_till_despawn)

Expand Down Expand Up @@ -416,15 +416,15 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/computer/cryopod, 32)
to_chat(user, span_danger("You can't put [target] into [src]. [target.p_Theyre()] conscious."))
return

if(target == user && (tgui_alert(target, "Would you like to enter cryosleep?", "Enter Cryopod?", list("Yes", "No")) != "Yes"))
if(target == user && (tgui_alert(target, "Войти в криохранилище?", "Войти в криокапсулу?", list("Да", "Нет")) != "Да"))
return

if(target == user)
if(target.mind.assigned_role.req_admin_notify)
tgui_alert(target, "Вы играете на важной роли! Вы уверены что хотите покинуть раунд?")
var/datum/antagonist/antag = target.mind.has_antag_datum(/datum/antagonist)
if(antag)
tgui_alert(target, "Вы \a [antag.name]! Вы уверены что хотите покинуть раунд?")
tgui_alert(target, "Вы [antag.name]! Вы уверены что хотите покинуть раунд?")

if(LAZYLEN(target.buckled_mobs) > 0)
if(target == user)
Expand Down

0 comments on commit 14fe7e2

Please sign in to comment.