chore(frontend): i18n pass on mostly-translated frontend components (#6786)

* i18n pass on mostly-translated frontend components

* Run prepr

* Fix SRV-records text and unescape tooltip braces

* Fix changed wording

* Remove unneeded strings

* Use ICU-safe placeholder
This commit is contained in:
Arthur
2026-07-21 11:36:06 -07:00
committed by GitHub
parent b14fad4237
commit 84b4f8e474
40 changed files with 1338 additions and 307 deletions
@@ -213,6 +213,10 @@ export const analyticsMessages = defineMessages({
id: 'analytics.filter.game-version-type.all',
defaultMessage: 'All',
},
dependentProjectSearchFailedTitle: {
id: 'analytics.filter.dependent-project-search-failed-title',
defaultMessage: 'Dependent projects failed to load',
},
})
export const analyticsStatMessages = defineMessages({
@@ -492,7 +492,7 @@ watch(dependentProjectSearchError, (error) => {
if (!error) return
addNotification({
title: 'Dependent projects failed to load',
title: formatMessage(analyticsMessages.dependentProjectSearchFailedTitle),
text: getDependentProjectSearchErrorMessage(error),
type: 'error',
})