-
Notifications
You must be signed in to change notification settings - Fork 35
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
Перевод кухонной машинерии #292
Conversation
This PR has been inactive for long enough to be automatically marked as stale. This means it is at risk of being auto closed in ~ 7 days, please address any outstanding review items and ensure your PR is finished, if these are all true and you are auto-staled anyway, you need to actively ask maintainers if your PR will be merged. Once you have done any of the previous actions then you should request a maintainer remove the stale label on your PR, to reset the stale timer. If you feel no maintainer will respond in that time, you may wish to close this PR youself, while you seek maintainer comment, as you will then be able to reopen the PR yourself |
не забыть бы холодосик полностью перевести |
@larentoun ревью бы... |
Я боюсь ревьювить после твоей мафии. |
Исправишь перевод мафии - я сделаю ревью здесь |
мафия вмержена уже, я её вообще дропнуть хотел |
гахер по итогу попросил твои правки вбахать и мержанул |
Всё ещё, ты не выполнил мою просьбу пройтись по всем абилкам и исправить. Мне за тебя код писать? |
Ревертать смысла нет, но перевод просто ужасен. "Вы готовитесь Разговаривайте с духами, чтобы узнать бла-бла" |
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.
Я посмотрел первые два файла, и мне не понравилось, как твой личный ревьювер говорю тебе: плохо. Если потом будет время, посмотрю оставшиеся файлы, чтобы не висеть мертвым в pending пока оставлю ревью так
Co-authored-by: awkwardsocialist <[email protected]>
Co-authored-by: awkwardsocialist <[email protected]>
Co-authored-by: awkwardsocialist <[email protected]>
Co-authored-by: awkwardsocialist <[email protected]>
Co-authored-by: awkwardsocialist <[email protected]>
Co-authored-by: awkwardsocialist <[email protected]>
Co-authored-by: awkwardsocialist <[email protected]>
Co-authored-by: awkwardsocialist <[email protected]>
Co-authored-by: awkwardsocialist <[email protected]>
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.
Если что-то стоит в начале предложения, стоит к нему применять capitalize(), как в примерах выше
code/datums/components/bakeable.dm
Outdated
|
||
if(positive_result) | ||
used_oven.visible_message( | ||
span_notice("You smell something great coming from [used_oven]."), | ||
blind_message = span_notice("You smell something great..."), | ||
span_notice("Вы чувствует как [used_oven] источает приятный запах."), |
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.
span_notice("Вы чувствует как [used_oven] источает приятный запах."), | |
span_notice("Вы чувствуете, как [used_oven.name] источает приятный запах."), |
code/datums/components/bakeable.dm
Outdated
|
||
if(positive_result) | ||
used_oven.visible_message( | ||
span_notice("You smell something great coming from [used_oven]."), | ||
blind_message = span_notice("You smell something great..."), | ||
span_notice("Вы чувствует как [used_oven.name] источает приятный запах."), |
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.
span_notice("Вы чувствует как [used_oven.name] источает приятный запах."), | |
span_notice("Вы чувствуете, как [used_oven.name] источает приятный запах."), |
code/datums/components/bakeable.dm
Outdated
ignored_mobs = asomnia_hadders, | ||
) | ||
BLACKBOX_LOG_FOOD_MADE(baked_result.type) | ||
else | ||
used_oven.visible_message( | ||
span_warning("You smell a burnt smell coming from [used_oven]."), | ||
blind_message = span_warning("You smell a burnt smell..."), | ||
span_warning("Вы чувствует как [used_oven.name] испускает горелое зловоние."), |
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.
span_warning("Вы чувствует как [used_oven.name] испускает горелое зловоние."), | |
span_warning("Вы чувствуете, как [used_oven.name] испускает горелое зловоние."), |
code/datums/components/bakeable.dm
Outdated
@@ -118,15 +118,15 @@ | |||
if(!current_bake_time) //Not baked yet | |||
if(positive_result) | |||
if(initial(bake_result.gender) == PLURAL) | |||
examine_list += span_notice("[parent] can be [span_bold("baked")] into some [initial(bake_result.name)].") | |||
examine_list += span_notice("Это [parent.name]. [initial(bake_result.name)] могут [span_bold("готовиться")] из нее.") |
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.
Я не уверен, что это компилируется. parent
является просто датумом, у него почти нет переменных никаких.
Так как это сигнал, нам повезло. Скорее всего, source
и является нашим parent
.
examine_list += span_notice("Это [parent.name]. [initial(bake_result.name)] могут [span_bold("готовиться")] из нее.") | |
examine_list += span_notice("Это [source.name], и [initial(bake_result.name)] могут [span_bold("готовиться")] из нее.") |
code/datums/components/bakeable.dm
Outdated
else | ||
examine_list += span_notice("[parent] can be [span_bold("baked")] into \a [initial(bake_result.name)].") | ||
examine_list += span_notice("Это [parent.name]. [span_bold("Готовится")] в [initial(bake_result.name)].") |
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.
examine_list += span_notice("Это [parent.name]. [span_bold("Готовится")] в [initial(bake_result.name)].") | |
examine_list += span_notice("Это [source.name]. [span_bold("Готовится")] в [initial(bake_result.name)].") |
@@ -192,7 +192,7 @@ GLOBAL_LIST_INIT(oilfry_blacklisted_items, typecacheof(list( | |||
fry_loop.start() | |||
|
|||
/obj/machinery/deepfryer/proc/blow_up() | |||
visible_message(span_userdanger("[src] blows up from the entropic reaction!")) | |||
visible_message(span_userdanger("[src.name] взрывается в результате энтропийной реакции!")) |
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.
visible_message(span_userdanger("[src.name] взрывается в результате энтропийной реакции!")) | |
visible_message(span_userdanger("[capitalize(src.name)] взрывается в результате энтропийной реакции!")) |
if(istype(frying_item, /obj/item/freeze_cube)) | ||
log_bomber(user, "put a freeze cube in a", src) | ||
visible_message(span_userdanger("[src] starts glowing... Oh no...")) | ||
visible_message(span_userdanger("[src.name] начинает пылать... О нет...")) |
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.
visible_message(span_userdanger("[src.name] начинает пылать... О нет...")) | |
visible_message(span_userdanger("[capitalize(src.name)] начинает пылать... О нет...")) |
reagents.expose(dunking_target, TOUCH) | ||
var/bio_multiplier = dunking_target.getarmor(BODY_ZONE_HEAD, BIO) * 0.01 | ||
var/target_temp = dunking_target.bodytemperature | ||
var/cold_multiplier = 1 | ||
if(target_temp < TCMB + 10) // a tiny bit of leeway | ||
dunking_target.visible_message(span_userdanger("[dunking_target] explodes from the entropic difference! Holy fuck!")) | ||
dunking_target.investigate_log("has been gibbed by entropic difference (being dunked into [src]).", INVESTIGATE_DEATHS) | ||
dunking_target.visible_message(span_userdanger("[dunking_target.name] взрывается от энтропийной разницы! Блять!")) |
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.
dunking_target.visible_message(span_userdanger("[dunking_target.name] взрывается от энтропийной разницы! Блять!")) | |
dunking_target.visible_message(span_userdanger("[capitalize(dunking_target.name)] взрывается от энтропийной разницы! Блять!")) |
dunking_target.visible_message(span_userdanger("[dunking_target] explodes from the entropic difference! Holy fuck!")) | ||
dunking_target.investigate_log("has been gibbed by entropic difference (being dunked into [src]).", INVESTIGATE_DEATHS) | ||
dunking_target.visible_message(span_userdanger("[dunking_target.name] взрывается от энтропийной разницы! Блять!")) | ||
dunking_target.investigate_log("has been gibbed by entropic difference (being dunked into [src.name]).", INVESTIGATE_DEATHS) |
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.
dunking_target.investigate_log("has been gibbed by entropic difference (being dunked into [src.name]).", INVESTIGATE_DEATHS) | |
dunking_target.investigate_log("has been gibbed by entropic difference (being dunked into [src]).", INVESTIGATE_DEATHS) |
не трогаем логи
dunking_target.gib(DROP_ALL_REMAINS) | ||
log_combat(user, dunking_target, "blew up", null, "by dunking them into [src]") | ||
log_combat(user, dunking_target, "blew up", null, "by dunking them into [src.name]") |
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.
log_combat(user, dunking_target, "blew up", null, "by dunking them into [src.name]") | |
log_combat(user, dunking_target, "blew up", null, "by dunking them into [src]") |
Проверить бы |
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.
Пока что те же проблемы - нет капитализации для .name
в начале предложения
code/datums/components/bakeable.dm
Outdated
|
||
if(positive_result) | ||
used_oven.visible_message( | ||
span_notice("You smell something great coming from [used_oven]."), | ||
blind_message = span_notice("You smell something great..."), | ||
span_notice("Вы чувствуете как [used_oven.name] источает приятный запах."), |
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.
span_notice("Вы чувствуете как [used_oven.name] источает приятный запах."), | |
span_notice("Вы чувствуете, как [used_oven.name] источает приятный запах."), |
code/datums/components/bakeable.dm
Outdated
ignored_mobs = asomnia_hadders, | ||
) | ||
BLACKBOX_LOG_FOOD_MADE(baked_result.type) | ||
else | ||
used_oven.visible_message( | ||
span_warning("You smell a burnt smell coming from [used_oven]."), | ||
blind_message = span_warning("You smell a burnt smell..."), | ||
span_warning("Вы чувствуете как [used_oven.name] испускает горелое зловоние."), |
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.
span_warning("Вы чувствуете как [used_oven.name] испускает горелое зловоние."), | |
span_warning("Вы чувствуете, как [used_oven.name] испускает горелое зловоние."), |
if(!current_bake_time) //Not baked yet | ||
if(positive_result) | ||
if(initial(bake_result.gender) == PLURAL) | ||
examine_list += span_notice("[parent] can be [span_bold("baked")] into some [initial(bake_result.name)].") | ||
examine_list += span_notice("Это [sourceobj.name]. [initial(bake_result.name)] могут [span_bold("готовиться")] из нее.") |
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.
atom/source
и является уже parent
. Посмотри сигнал COMSIG_ATOM_EXAMINE.
|
||
/obj/machinery/food_cart/proc/pack_up() | ||
if(!unpacked) | ||
return | ||
visible_message(span_notice("[src] retracts all of it's unpacked components.")) | ||
visible_message(span_notice("[src.name] втягивает все свои распакованные части.")) |
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.
visible_message(span_notice("[src.name] втягивает все свои распакованные части.")) | |
visible_message(span_notice("[capitalize(src.name)] втягивает все свои распакованные части.")) |
This PR has been inactive for long enough to be automatically marked as stale. This means it is at risk of being auto closed in ~ 7 days, please address any outstanding review items and ensure your PR is finished, if these are all true and you are auto-staled anyway, you need to actively ask maintainers if your PR will be merged. Once you have done any of the previous actions then you should request a maintainer remove the stale label on your PR, to reset the stale timer. If you feel no maintainer will respond in that time, you may wish to close this PR youself, while you seek maintainer comment, as you will then be able to reopen the PR yourself |
This PR has been inactive for long enough to be automatically marked as stale. This means it is at risk of being auto closed in ~ 7 days, please address any outstanding review items and ensure your PR is finished, if these are all true and you are auto-staled anyway, you need to actively ask maintainers if your PR will be merged. Once you have done any of the previous actions then you should request a maintainer remove the stale label on your PR, to reset the stale timer. If you feel no maintainer will respond in that time, you may wish to close this PR youself, while you seek maintainer comment, as you will then be able to reopen the PR yourself |
This PR has been inactive for long enough to be automatically marked as stale. This means it is at risk of being auto closed in ~ 7 days, please address any outstanding review items and ensure your PR is finished, if these are all true and you are auto-staled anyway, you need to actively ask maintainers if your PR will be merged. Once you have done any of the previous actions then you should request a maintainer remove the stale label on your PR, to reset the stale timer. If you feel no maintainer will respond in that time, you may wish to close this PR youself, while you seek maintainer comment, as you will then be able to reopen the PR yourself |
d63a1d4
to
e0f44a8
Compare
9bac678
to
d63a1d4
Compare
## About The Pull Request Продолжение перевода кухни от каркарчеса ## Why It's Good For The Game РУССКИЙ ## Changelog Пока не русский :cl: /:cl: #292 --------- Co-authored-by: Kar4es <[email protected]> Co-authored-by: Kar4es <[email protected]> Co-authored-by: awkwardsocialist <[email protected]> Co-authored-by: larentoun <[email protected]>
About The Pull Request
периважу куханую машинерию
🆑
fix: Кухня на правильном русском языке
/:cl: