Skip to content

Commit

Permalink
Fix: Capitilize Cyrillic TGUI Title (#776)
Browse files Browse the repository at this point in the history
## Что этот PR делает
Русские титульники в ТГУИ теперь с большой буквы

## Почему это хорошо для игры
Красивость

## Изображения изменений
Раньше:

![282970207-acb1943e-0059-461d-9cd2-d4a05be73c08](https://github.com/ss220club/Paradise-SS220/assets/47046463/a38a8f2b-eedb-450e-a3fd-14d786ff0535)

Теперь:

![283504935-2a817b90-06bb-4649-8e09-0fb2aa16a305](https://github.com/ss220club/Paradise-SS220/assets/47046463/0c7b49f5-9a86-4d0e-99ea-6b1b7015f09c)

## Тестирование
Локалка и дебаггер локалок

## Changelog

:cl: Romains
fix: Русские титульники в ТГУИ теперь с большой буквы
/:cl:
  • Loading branch information
MrRomainzZ authored Dec 1, 2023
1 parent 79b6371 commit 7d1478d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion code/modules/tgui/tgui_datum.dm
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,14 @@
src.interface = interface

if(title)
src.title = sanitize(title)

// SS220 EDIT - START
if(findtext_char(title, regex(@"[А-Яа-я]")))
src.title = capitalize(sanitize(title, list("\proper"="", "\improper"="")))
else
src.title = sanitize(title)
// SS220 EDIT -END

if(width)
src.width = width
if(height)
Expand Down

0 comments on commit 7d1478d

Please sign in to comment.