Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix translate 14.10.24 #578

Merged
merged 1 commit into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading