-
Notifications
You must be signed in to change notification settings - Fork 442
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
qol: engineering tools translation #6196
base: master220
Are you sure you want to change the base?
qol: engineering tools translation #6196
Conversation
Основной перевод всех инженерных инструментов вместе с суицидами и сообщениями.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Дописать.
…/Dimempers/Paradise into Translation-of-engineering-tools
Забыл прописать list в ru_names, поправил
Случайно поставил не тот падеж в переключении насадки, исправил
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Заставляет задуматься...
Поправил косяки и ошибки, перевел заодно РЦД(УБС), РЦЛ(БУП) и провода.
…/Dimempers/Paradise into Translation-of-engineering-tools
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
косяков не найдено
Поменял в нект. балунах деклент_ру на обобщённое название для сокращения первых.
В прошлый раз забыл сохранить это, только щас увидел что не сохранилось, исправляю. Так же кое-где поправил ошибки.
+1-1 Буковка ё в 1 месте.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Далеко от идеала.
@@ -96,14 +96,14 @@ | |||
|
|||
/obj/item/weldingtool/attack_self(mob/user) | |||
if(tool_enabled) //Turn off the welder if it's on | |||
to_chat(user, span_notice("Вы выключили [declent_ru(NOMINATIVE)].")) | |||
balloon_alert(user, ("Вы выключили сварочный аппарат.")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
balloon_alert(user, ("Вы выключили сварочный аппарат.")) | |
balloon_alert(user, ("выключено")) |
toggle_welder() | ||
return | ||
else if(GET_FUEL) //The welder is off, but we need to check if there is fuel in the tank | ||
to_chat(user, span_notice("Вы включили [declent_ru(NOMINATIVE)].")) | ||
balloon_alert(user, ("Вы включили сварочный аппарат.")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
balloon_alert(user, ("Вы включили сварочный аппарат.")) | |
balloon_alert(user, "выключено") |
toggle_welder() | ||
else //The welder is off and unfuelled | ||
to_chat(user, span_notice("В [declent_ru(PREPOSITIONAL)] закончилось топливо!")) | ||
balloon_alert(user, ("В сварочном аппарате закончилось топливо!")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
balloon_alert(user, ("В сварочном аппарате закончилось топливо!")) | |
balloon_alert(user, "закончилось топливо!") |
code/modules/power/cable.dm
Outdated
@@ -166,14 +174,14 @@ By design, d1 is the smallest direction and d2 is the highest | |||
return ATTACK_CHAIN_BLOCKED_ALL | |||
|
|||
if((our_turf.transparent_floor == TURF_TRANSPARENT) || our_turf.intact) | |||
to_chat(user, span_danger("You cannot interact with something that's under the floor!")) | |||
to_chat(user, span_danger("Вы не можете взаимодействовать с тем, что находится под полом!")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to_chat(user, span_danger("Вы не можете взаимодействовать с тем, что находится под полом!")) | |
balloon_alert(user, "невозможно!") |
code/modules/power/cable.dm
Outdated
return ATTACK_CHAIN_BLOCKED_ALL | ||
|
||
if(iscoil(I)) | ||
add_fingerprint(user) | ||
var/obj/item/stack/cable_coil/coil = I | ||
if(coil.get_amount() < 1) | ||
to_chat(user, span_warning("Not enough cable!")) | ||
balloon_alert(user, ("Не хватает провода!")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
balloon_alert(user, ("Не хватает провода!")) | |
balloon_alert(user, "недостаточно проводов!") |
code/modules/power/cable.dm
Outdated
@@ -182,7 +190,7 @@ By design, d1 is the smallest direction and d2 is the highest | |||
add_fingerprint(user) | |||
var/obj/item/twohanded/rcl/rcl = I | |||
if(!rcl.loaded) | |||
to_chat(user, span_warning("The [rcl.name] has no cable!")) | |||
to_chat(user, span_warning("В [rcl.declent_ru(PREPOSITIONAL)] нет проводов!")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to_chat(user, span_warning("В [rcl.declent_ru(PREPOSITIONAL)] нет проводов!")) | |
balloon_alert(user, "недостаточно проводов!") |
code/modules/power/cable.dm
Outdated
shock(user, 5, 0.2) | ||
|
||
/obj/structure/cable/wirecutter_act(mob/user, obj/item/I) | ||
. = TRUE | ||
var/turf/T = get_turf(src) | ||
if((T.transparent_floor == TURF_TRANSPARENT) || T.intact) | ||
to_chat(user, "<span class='danger'>You can't interact with something that's under the floor!</span>") | ||
to_chat(user, span_danger("Вы не можете взаимодействовать с тем, что находится под полом!")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to_chat(user, span_danger("Вы не можете взаимодействовать с тем, что находится под полом!")) | |
balloon_alert(user, "невозможно!") |
code/modules/power/cable.dm
Outdated
return | ||
if(!I.use_tool(src, user, 0, volume = I.tool_volume)) | ||
return | ||
if(shock(user, 50)) | ||
return | ||
user.visible_message("[user] cuts the cable.", "<span class='notice'>You cut the cable.</span>") | ||
user.visible_message("[user] обрезал провода.", span_notice("Вы обрезали провода.")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
user.visible_message("[user] обрезал провода.", span_notice("Вы обрезали провода.")) | |
visible_message("[user] срезал[genderize_ru(user.gender, "", "а", "о", "и")] [declent_ru(ACCUSATIVE)].") | |
balloon_alert(user, "провод срезан!") |
Основной перевод всех инженерных инструментов вместе с суицидами и сообщениями.
Описание
Основной перевод всех инженерных инструментов вместе с суицидами и сообщениями в чате.
Причина создания ПР / Почему это хорошо для игры
Локализация игры
Демонстрация изменений
Тесты
Зашел на локалку, осмотрел перебрал все инструменты, все на русском, все чики пуки.