-
Notifications
You must be signed in to change notification settings - Fork 130
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
TWEAK: official station goals translation #682
Conversation
|
||
/datum/proc/pluralize_ru(gender, single_word, plural_word) | ||
return gender == PLURAL ? plural_word : single_word | ||
|
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.
Вот это отдельным ПРом в модуль, и в мастер
И только потом перевод
{data.notice} | ||
</LabeledList.Item> | ||
)} | ||
{satellites.map((sat) => ( | ||
<LabeledList.Item key={sat.id} label={'#' + sat.id}> | ||
{sat.mode}{' '} | ||
<Button | ||
content={sat.active ? 'Deactivate' : 'Activate'} | ||
content={sat.active ? 'Деактивировать' : 'Активировать'} |
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.
TGUI кстати не трогаем пока. Оно не пересобирается автоматом из-за чего будут вечные непонятные конфликты
return multiple_name // 5, 6, 7, 8, 9, 0 | ||
|
||
/datum/proc/genderize_ru(gender, male_word, female_word, neuter_word, multiple_word) | ||
return gender == MALE ? male_word : (gender == FEMALE ? female_word : (gender == NEUTER ? neuter_word : multiple_word)) |
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.
Не стоит так делать. Раздели по пунктам и вынеси лучше в IF.
Одна строка не всегда круто.
@@ -481,15 +481,15 @@ | |||
|
|||
/datum/game_mode/proc/send_station_goals_message() | |||
var/message_text = "<div style='text-align:center;'><img src='ntlogo.png'>" | |||
message_text += "<h3>NAS Trurl Orders</h3></div><hr>" | |||
message_text += "<b>Special Orders for [station_name()]:</b><br><br>" | |||
message_text += "<h3>Приказы АКН «Трурль»</h3></div><hr>" |
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.
Трурль? в данном случае "r" не читается и будет Труль/Трулл же.
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.
Перевод взят из wiki ss220.club
Оригинальная отсылка - Кибериада
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.
Перевод пока не успел детально посмотреть
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.
у нас тгуи не пересоберется сам
Месяц стоим, откроешь как будут сподвижки |
Что этот PR делает
Добавляет процедуры для перевода из вики (кроме склонения по падежам —
declent_ru
)Перевод офф. целей станции и интерфейсов (хранилище ДНК, метеоритные щиты и т.д.)
Почему это хорошо для игры
Русский язык - это хорошо
Тестирование
Скомпилировал, заспавнил изменённые объекты (в том числе тех, что обладают своим tgui), проверил работоспособность взаимодействий
Changelog
🆑
tweak: Перевод офф. целей станции
/:cl: