Converted all static strings to translation keys. (#2284)

This commit is contained in:
gir489
2023-10-20 12:24:44 -04:00
committed by GitHub
parent cc911253d0
commit 79df8bc021
133 changed files with 1027 additions and 1021 deletions

View File

@ -43,7 +43,7 @@ namespace big
{
char notification[500]{};// I don't like using sprintf but there isn't an alternative afaik
snprintf(notification, sizeof(notification), m_notify_message, attacker->get_name(), victim->get_name());
g_notification_service->push_warning("Protections", notification);
g_notification_service->push_warning("PROTECTIONS"_T.data(), notification);
}
process_common(attacker);

View File

@ -80,7 +80,7 @@ namespace big
{
char notification[500]{}; // I don't like using sprintf but there isn't an alternative afaik
snprintf(notification, sizeof(notification), m_notify_message, player->get_name());
g_notification_service->push_warning("Protections", notification);
g_notification_service->push_warning("PROTECTIONS"_T.data(), notification);
}
process_common(player);