Skip to content

Commit

Permalink
Fix radio prefix + non-radio prefxixes (#631)
Browse files Browse the repository at this point in the history
## About The Pull Request
Я, оказывается, некоторые вещи убрал в транслейт, возвращаю.
  • Loading branch information
larentoun authored Oct 30, 2024
1 parent b985a2d commit e8081f5
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 37 deletions.
1 change: 1 addition & 0 deletions modular_bandastation/translations/_translations.dme
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
#include "code/moustache.dm"
#include "code/pronouns.dm"
#include "code/restaurant_customer.dm"
#include "code/saymode.dm"
#include "code/translate_attack_verb.dm"
#include "code/translate_eat_verb.dm"
#include "code/translate_say.dm"
Expand Down
14 changes: 14 additions & 0 deletions modular_bandastation/translations/code/saymode.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/datum/saymode/changeling/russian
key = "п"

/datum/saymode/xeno/russian
key = "ф"

/datum/saymode/vocalcords/russian
key = "ч"

/datum/saymode/binary/russian
key = "и"

/datum/saymode/holopad/russian
key = "р"
42 changes: 8 additions & 34 deletions tgui/packages/tgui-say/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,54 +23,28 @@ export const RADIO_PREFIXES = {
':e ': 'Инж',
':g ': 'Ген',
':m ': 'Мед',
':n ': 'Науч',
':n ': 'Иссл',
':o ': 'ИИ',
':p ': 'Раз',
':s ': 'СБ',
':p ': 'Разв',
':s ': 'Без',
':t ': 'Синд',
':u ': 'Снаб',
':v ': 'Серв',
':v ': 'Обсл',
':y ': 'ЦК',
// BANDASTATION ADDITION START
'.a ': 'Рой',
'.b ': 'вв',
'.c ': 'Ком',
'.e ': 'Инж',
'.g ': 'Ген',
'.m ': 'Мед',
'.n ': 'Науч',
'.o ': 'ИИ',
'.p ': 'Раз',
'.s ': 'СБ',
'.t ': 'Синд',
'.u ': 'Снаб',
'.v ': 'Серв',
'.y ': 'ЦК',
':ф ': 'Рой',
':и ': 'вв',
':с ': 'Ком',
':у ': 'Инж',
':п ': 'Ген',
':ь ': 'Мед',
':т ': 'Науч',
':т ': 'Иссл',
':щ ': 'ИИ',
':ы ': 'СБ',
':з ': 'Разв',
':ы ': 'Без',
':е ': 'Синд',
':г ': 'Снаб',
':м ': 'Серв',
':м ': 'Обсл',
':н ': 'ЦК',
'.ф ': 'Рой',
'.и ': 'вв',
'.с ': 'Ком',
'.у ': 'Инж',
'.п ': 'Ген',
'.ь ': 'Мед',
'.т ': 'Науч',
'.щ ': 'ИИ',
'.ы ': 'СБ',
'.е ': 'Синд',
'.г ': 'Снаб',
'.м ': 'Серв',
'.н ': 'ЦК',
// BANDASTATION EDIT END
} as const;
7 changes: 4 additions & 3 deletions tgui/packages/tgui-say/styles/colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,13 @@ $_channel_map: (
'вв': #1e90ff,
'Эмоц': #5975da,
'Мед': #57b8f0,
'Разв': #5c8a87,
'Рац': #1ecc43,
'Гов': #a4bad6,
'Науч': #c68cfa,
'СБ': #dd3535,
'Иссл': #c68cfa,
'Без': #dd3535,
'Снаб': #b88646,
'Серв': #6ca729,
'Обсл': #6ca729,
'Синд': #8f4a4b,
// BANDASTATION EDIT END
);
Expand Down

0 comments on commit e8081f5

Please sign in to comment.