Skip to content

Commit

Permalink
Fix translate 14.10.24 (#578)
Browse files Browse the repository at this point in the history
## About The Pull Request
Фикс после мерге апстриме
  • Loading branch information
larentoun authored Oct 14, 2024
1 parent fe92173 commit bb79e68
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions code/datums/mutations/hot.dm
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/datum/mutation/human/cindikinesis
name = "Cindikinesis"
desc = "Allows the user to concentrate nearby heat into a pile of ash. Wow. Very interesting."
desc = "Позволяет обладателю мутации сконцентрировать рядом находящееся тепло в кучу пепла. Вау. Очень интересно."
quality = POSITIVE
text_gain_indication = span_notice("Your hand feels warm.")
text_gain_indication = span_notice("Твоя рука кажется тёплой.")
instability = POSITIVE_INSTABILITY_MINOR
difficulty = 10
synchronizer_coeff = 1
Expand All @@ -23,9 +23,9 @@

/datum/mutation/human/pyrokinesis
name = "Pyrokinesis"
desc = "Draws positive energy from the surroundings to heat surrounding temperatures at subject's will."
desc = "Притягивает положительную энергию окружения для повышения температуры вокруг субъекта."
quality = POSITIVE
text_gain_indication = span_notice("Your hand feels hot!")
text_gain_indication = span_notice("Твоя рука кажется горячей!")
instability = POSITIVE_INSTABILITY_MODERATE
difficulty = 12
synchronizer_coeff = 1
Expand Down
6 changes: 3 additions & 3 deletions code/modules/mob/living/carbon/inventory.dm
Original file line number Diff line number Diff line change
Expand Up @@ -441,9 +441,9 @@
if(offered_item.on_offered(src)) // see if the item interrupts with its own behavior
return

balloon_alert_to_viewers("offers something")
visible_message(span_notice("[src] is offering [offered ? "[offered] " : ""][offered_item]."), \
span_notice("You offer [offered ? "[offered] " : ""][offered_item]."), null, 2)
balloon_alert_to_viewers("что-то предлагает")
visible_message(span_notice("[capitalize(declent_ru(NOMINATIVE))] предлагает [offered ? "[offered.declent_ru(DATIVE)] " : ""][offered_item.declent_ru(ACCUSATIVE)]."), \
span_notice("Вы предлагаете [offered ? "[offered.declent_ru(DATIVE)] " : ""][offered_item.declent_ru(ACCUSATIVE)]."), null, 2)

apply_status_effect(/datum/status_effect/offering, offered_item, null, offered)

Expand Down

0 comments on commit bb79e68

Please sign in to comment.