Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
8de52f7
Add logic
hotinglok Jun 26, 2026
389d409
Add afaanoromoo translation
hotinglok Jun 26, 2026
af88d8f
Add arabic translation
hotinglok Jun 26, 2026
bde81c9
Add amharic translation
hotinglok Jun 26, 2026
e4e864f
Add azeri translation
hotinglok Jun 26, 2026
1372ff5
Add bengali translation
hotinglok Jun 26, 2026
50179e5
Add burmese translation
hotinglok Jun 26, 2026
cf3e3cb
Add dari translation
hotinglok Jun 26, 2026
aa5d97c
Add gahuza translation
hotinglok Jun 26, 2026
db2edf1
Add gujarati translation
hotinglok Jun 26, 2026
543010c
Add hausa translation
hotinglok Jun 26, 2026
5df3eef
Add hindi translation
hotinglok Jun 26, 2026
b385e74
Add indonesia translation
hotinglok Jun 26, 2026
438e68d
Add japanese translation
hotinglok Jun 26, 2026
33582d2
Add korean translation
hotinglok Jun 26, 2026
7c21f22
Add kyrgyz translation
hotinglok Jun 26, 2026
9f23345
Add magyarul translation
hotinglok Jun 26, 2026
0b590ae
Add marathi translation
hotinglok Jun 26, 2026
d753bd9
Add mundo translation
hotinglok Jun 26, 2026
80cb77e
Add nepail translation
hotinglok Jun 26, 2026
5ebcc94
Add pashto translation
hotinglok Jun 26, 2026
296685d
Add persian translation
hotinglok Jun 26, 2026
b87c40d
Add pidgin translation
hotinglok Jun 26, 2026
5120f40
Add polska translation
hotinglok Jun 26, 2026
a83abad
Add portuguese translation
hotinglok Jun 26, 2026
6a63b0c
Add punjabi translation
hotinglok Jun 26, 2026
236c090
Add romania translation
hotinglok Jun 26, 2026
e71fb3f
Add russian translation
hotinglok Jun 26, 2026
d5b3bf2
Add serbian translations
hotinglok Jun 26, 2026
a521c4e
Add sinhala translations
hotinglok Jun 26, 2026
3a3f6ec
Add somali translations
hotinglok Jun 26, 2026
4c69db8
Add swahili translation
hotinglok Jun 26, 2026
ba0f513
Add tamil translation
hotinglok Jun 26, 2026
b15aa27
Add telegu translation
hotinglok Jun 26, 2026
ee6b02f
Add thai translation
hotinglok Jun 26, 2026
4dce6ba
Add tigrinya translation
hotinglok Jun 26, 2026
96bf863
Add turkce translation
hotinglok Jun 26, 2026
b8acc43
Add ukrainian translation
hotinglok Jun 26, 2026
1f7775c
Add urdu translation
hotinglok Jun 26, 2026
95a47da
Add uzbek translation
hotinglok Jun 26, 2026
f36484a
Add vietnamese translation
hotinglok Jun 26, 2026
1caffe8
Add yoruba translation
hotinglok Jun 26, 2026
4dbe136
Add zhongwen translation
hotinglok Jun 26, 2026
7fe0a1a
Merge branch 'latest' into WS-2878-key-events-translations
Isabella-Mitchell Jun 26, 2026
af29086
Merge branch 'latest' into WS-2878-key-events-translations
eagerterrier Jun 26, 2026
b61c495
Refactor destructuring
hotinglok Jun 29, 2026
75ad6b9
Rename translations, remove serbian translation
hotinglok Jun 29, 2026
2a2d35f
Merge branch 'latest' into WS-2878-key-events-translations
HarveyPeachey Jul 2, 2026
90be355
Merge branch 'latest' into WS-2878-key-events-translations
HarveyPeachey Jul 3, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interface ActionsProps {

export const Actions = ({ data }: ActionsProps) => {
const { translations } = use(ServiceContext);

const sportTranslations = translations?.sport;
const homeKeyEvents = data.home?.actions || [];
const awayKeyEvents = data.away?.actions || [];

Expand All @@ -29,14 +29,15 @@ export const Actions = ({ data }: ActionsProps) => {
awayName={data.away.fullName}
homeRunningScores={data.home.runningScores}
awayRunningScores={data.away.runningScores}
translations={translations?.sport}
translations={sportTranslations}
/>
{hasKeyEvents && (
<KeyEvents
homeKeyEvents={homeKeyEvents}
awayKeyEvents={awayKeyEvents}
homeName={data.home.fullName}
awayName={data.away.fullName}
keyEventsTitle={sportTranslations?.keyEventsTitle}
/>
)}
</ActionGrid>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,29 @@ interface KeyEventsProps {
awayKeyEvents: PlayerActions[];
homeName: string;
awayName: string;
keyEventsTitle?: string;
}

export const KeyEvents = ({
homeKeyEvents,
awayKeyEvents,
homeName,
awayName,
}: KeyEventsProps) => (
<>
<VisuallyHiddenText as="h3">Key Events</VisuallyHiddenText>
<div css={styles.keyEventsHome}>
<VisuallyHiddenText as="h4">{homeName}</VisuallyHiddenText>
<Action contestantActions={homeKeyEvents} alignment="home" />
</div>
<div css={styles.keyEventsAway}>
<VisuallyHiddenText as="h4">{awayName}</VisuallyHiddenText>
<Action contestantActions={awayKeyEvents} alignment="away" />
</div>
</>
);
keyEventsTitle,
}: KeyEventsProps) => {
const title = keyEventsTitle || 'Key Events';

return (
<>
<VisuallyHiddenText as="h3">{title}</VisuallyHiddenText>
<div css={styles.keyEventsHome}>
<VisuallyHiddenText as="h4">{homeName}</VisuallyHiddenText>
<Action contestantActions={homeKeyEvents} alignment="home" />
</div>
<div css={styles.keyEventsAway}>
<VisuallyHiddenText as="h4">{awayName}</VisuallyHiddenText>
<Action contestantActions={awayKeyEvents} alignment="away" />
</div>
</>
);
};
1 change: 1 addition & 0 deletions src/app/lib/config/services/afaanoromoo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,7 @@ export const service: DefaultServiceConfig = {
featuresAnalysisTitle: `Maaltu haasa'ama?`,
latestMediaTitle: 'Haaraa',
sport: {
keyEventsTitle: 'Taateewwan Ijoo',
matchSummary: 'Cuunfaa Taphaa',
assists: 'Gargaarsota',
penalties: 'Penaaltii',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/afrique.ts
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,7 @@ export const service: DefaultServiceConfig = {
topStoriesTitle: 'À la une',
featuresAnalysisTitle: 'Le choix de la rédaction',
sport: {
keyEventsTitle: 'Faits marquants',
matchSummary: 'Résumé du match',
assists: 'Passes décisives',
penalties: 'Tirs au but',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/amharic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,7 @@ export const service: DefaultServiceConfig = {
closedDescription: 'ይህ የተዘጋው {{date}} ነው።',
},
sport: {
keyEventsTitle: 'አስፈላጊ ክስተቶች',
matchSummary: 'የጨዋታ ማጠቃለያ',
assists: 'አስተላላፊ አግባብ',
penalties: 'ፔናልቲ',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/arabic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,7 @@ export const service: DefaultServiceConfig = {
closedDescription: 'أغلق باب المشاركة يوم {{date}}.',
},
sport: {
keyEventsTitle: 'الأحداث الرئيسية',
matchSummary: 'ملخص المباراة',
assists: 'تمريرات حاسمة',
penalties: 'العقوبات',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/azeri.ts
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ export const service: DefaultServiceConfig = {
privacyPolicyLinkText: 'Məxfilik siyasətimizi',
},
sport: {
keyEventsTitle: 'Əsas hadisələr',
matchSummary: 'Matçın xülasəsi',
assists: 'Asistlər',
penalties: 'Penaltilər',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/bengali.ts
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,7 @@ export const service: DefaultServiceConfig = {
featuresAnalysisTitle: 'নির্বাচিত খবর',
latestMediaTitle: 'সর্বশেষ',
sport: {
keyEventsTitle: 'গুরুত্বপূর্ণ ঘটনা',
matchSummary: 'ম্যাচের সারসংক্ষেপ',
assists: 'অ্যাসিস্ট',
penalties: 'পেনাল্টি',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/burmese.ts
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,7 @@ export const service: DefaultServiceConfig = {
featuresAnalysisTitle: 'ဆောင်းပါး',
latestMediaTitle: 'နောက်ဆုံးရ',
sport: {
keyEventsTitle: 'အဓိကဖြစ်ရပ်များ',
matchSummary: 'ပွဲအကျဉ်းချုပ်',
assists: 'ဂိုးဖန်တီးမှုများ',
penalties: 'ပင်နယ်တီး',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/dari.ts
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,7 @@ export const service: DefaultServiceConfig = {
closedDescription: 'امکان ارسال در {{date}} تمام شد.',
},
sport: {
keyEventsTitle: 'رویدادهای مهم',
matchSummary: 'خلاصه مسابقه',
assists: 'پاس گل',
penalties: 'پنالتی',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/gahuza.ts
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,7 @@ export const service: DefaultServiceConfig = {
featuresAnalysisTitle: 'Ivyo BBC Gahuza ibahitiramwo',
latestMediaTitle: 'Ibiheruka',
sport: {
keyEventsTitle: "Ibyabaye by'ingenzi",
matchSummary: 'Incamake y’umukino',
assists: 'Imipira yatanze ibitego',
penalties: 'Penaliti',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/gujarati.ts
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,7 @@ export const service: DefaultServiceConfig = {
featuresAnalysisTitle: 'બીબીસી વિશેષ',
latestMediaTitle: 'લેટેસ્ટ',
sport: {
keyEventsTitle: 'મુખ્ય ઘટનાઓ',
matchSummary: 'મેચનો સારાંશ',
assists: 'આસિસ્ટ',
penalties: 'પેનલ્ટી',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/hausa.ts
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,7 @@ export const service: DefaultServiceConfig = {
closedDescription: 'This closed on {{date}}.',
},
sport: {
keyEventsTitle: 'Muhimman abubuwa',
matchSummary: 'Takaitaccen Bayanin Wasa',
assists: 'Ba da ƙwallo a ci',
penalties: 'Fenariti',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/hindi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,7 @@ export const service: DefaultServiceConfig = {
closedDescription: 'ये इस तारीख़ को बंद हो चुका है {{date}}.',
},
sport: {
keyEventsTitle: 'प्रमुख घटनाएँ',
matchSummary: 'मैच का सारांश',
assists: 'असिस्ट',
penalties: 'पेनल्टी',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/igbo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,7 @@ export const service: DefaultServiceConfig = {
featuresAnalysisTitle: 'Kọwaara m isi akụkọ',
latestMediaTitle: 'Kachasị ọhụrụ',
sport: {
keyEventsTitle: 'Ihe omume dị mkpa',
matchSummary: 'Nchịkọta Asọmpi',
assists: 'Nye enyemaka',
penalties: 'Penariti',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/indonesia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,7 @@ export const service: DefaultServiceConfig = {
featuresAnalysisTitle: 'Majalah',
latestMediaTitle: 'Terbaru',
sport: {
keyEventsTitle: 'Peristiwa penting',
matchSummary: 'Ringkasan Pertandingan',
assists: 'Assist',
penalties: 'Penalti',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/japanese.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@ export const service: DefaultServiceConfig = {
featuresAnalysisTitle: '読み物・解説',
latestMediaTitle: '最新動画',
sport: {
keyEventsTitle: '主な出来事',
assists: 'アシスト',
penalties: 'PK',
ht: '前半終了',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/korean.ts
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ export const service: DefaultServiceConfig = {
featuresAnalysisTitle: '이 시간 이슈',
latestMediaTitle: '최신 뉴스',
sport: {
keyEventsTitle: '주요 이벤트',
matchSummary: '경기 요약',
assists: '도움',
penalties: '승부차기',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/kyrgyz.ts
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,7 @@ export const service: DefaultServiceConfig = {
featuresAnalysisTitle: 'Редактордун тандоосу',
latestMediaTitle: 'Соңку',
sport: {
keyEventsTitle: 'Негизги окуялар',
matchSummary: 'Оюндун жыйынтыгы',
assists: 'Пас берүү',
penalties: 'Пенальти',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/magyarul.ts
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,7 @@ export const service: DefaultServiceConfig = {
closedDescription: 'Bezárt {{date}}.',
},
sport: {
keyEventsTitle: 'Fő események',
matchSummary: 'Mérkőzés összefoglaló',
assists: 'Gólpasszok',
penalties: 'Büntetők',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/marathi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,7 @@ export const service: DefaultServiceConfig = {
featuresAnalysisTitle: 'बीबीसी मराठी स्पेशल',
latestMediaTitle: 'नवीनतम',
sport: {
keyEventsTitle: 'प्रमुख घटना',
matchSummary: 'सामन्याचा सारांश',
assists: 'असिस्ट',
penalties: 'पेनल्टी',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/mundo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,7 @@ export const service: DefaultServiceConfig = {
closedDescription: 'Esto cierra el {{date}}.',
},
sport: {
keyEventsTitle: 'Eventos clave',
matchSummary: 'Resumen del partido',
assists: 'Asistencias',
penalties: 'Penales',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/nepali.ts
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@ export const service: DefaultServiceConfig = {
topStoriesTitle: 'मुख्य समाचार',
featuresAnalysisTitle: 'अन‌ि यो पनि',
sport: {
keyEventsTitle: 'प्रमुख घंटनाहरू',
matchSummary: 'खेलको सारांश',
assists: 'असिस्ट',
penalties: 'पेनाल्टी',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/pashto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,7 @@ export const service: DefaultServiceConfig = {
topStoriesTitle: 'مهم خبرونه',
featuresAnalysisTitle: 'ځانګړي مطالب',
sport: {
keyEventsTitle: 'مهمے پېړې',
matchSummary: 'د لوبې لنډیز',
assists: 'اسسټ',
penalties: 'پنالټي',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/persian.ts
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,7 @@ export const service: DefaultServiceConfig = {
closedDescription: 'امکان ارسال در {{date}} تمام شد.',
},
sport: {
keyEventsTitle: 'رویدادهای کلیدی',
matchSummary: 'خلاصه مسابقه',
assists: 'پاس گل',
penalties: 'پنالتی',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/pidgin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,7 @@ export const service: DefaultServiceConfig = {
featuresAnalysisTitle: 'Informate me',
latestMediaTitle: 'New things',
sport: {
keyEventsTitle: 'Key events',
matchSummary: 'Match Summary',
assists: 'Assist',
penalties: 'Penalty',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/polska.ts
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,7 @@ export const service: DefaultServiceConfig = {
closedDescription: 'Zamknięto dnia {{date}}.',
},
sport: {
keyEventsTitle: 'Kluczowe wydarzenia',
matchSummary: 'Podsumowanie meczu',
assists: 'Asysty',
penalties: 'Rzuty karne',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/portuguese.ts
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,7 @@ export const service: DefaultServiceConfig = {
closedDescription: 'Foi encerrado em {{date}}.',
},
sport: {
keyEventsTitle: 'Principais eventos',
matchSummary: 'Resumo da partida',
assists: 'Assistências',
penalties: 'Pênaltis',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/punjabi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,7 @@ export const service: DefaultServiceConfig = {
featuresAnalysisTitle: 'ਦ੍ਰਿਸ਼ਟੀਕੋਣ',
latestMediaTitle: 'ਬਿਲਕੁਲ ਨਵਾਂ',
sport: {
keyEventsTitle: 'ਮੁੱਖ ਘਟਨਾਵਾਂ',
matchSummary: 'ਮੈਚ ਦਾ ਸਾਰ',
assists: 'ਅਸਿਸਟ',
penalties: 'ਪੈਨਲਟੀ',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/romania.ts
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,7 @@ export const service: DefaultServiceConfig = {
closedDescription: 'Campania s-a încheiat la data {{date}}.',
},
sport: {
keyEventsTitle: 'Evenimente cheie',
matchSummary: 'Rezumatul meciului',
worldCupTeamNames: {
algeria: 'Algeria',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/russian.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ export const service: DefaultServiceConfig = {
fetchErrorMessage: 'Не удалось загрузить. Пожалуйста, попробуйте снова',
},
sport: {
keyEventsTitle: 'Ключевые события',
matchSummary: 'Обзор матча',
assists: 'Голевые передачи',
penalties: 'Пенальти',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/sinhala.ts
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,7 @@ export const service: DefaultServiceConfig = {
featuresAnalysisTitle: 'විශේෂාංග',
latestMediaTitle: 'අලුත්ම',
sport: {
keyEventsTitle: 'ප්‍රධාන සිදුවීම්',
matchSummary: 'තරඟ සාරාංශය',
assists: 'ඇසිස්ට්',
penalties: 'පෙනල්ටි',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/somali.ts
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,7 @@ export const service: DefaultServiceConfig = {
featuresAnalysisTitle: 'Xul',
latestMediaTitle: 'Arrimhii u danbeeyey',
sport: {
keyEventsTitle: 'Dhacdooyinka muhiimka ah',
matchSummary: 'Soo koobidda ciyaarta',
assists: 'Caawin',
penalties: 'Rigoore',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/swahili.ts
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,7 @@ export const service: DefaultServiceConfig = {
topStoriesTitle: 'Habari kuu',
featuresAnalysisTitle: 'Gumzo mitandaoni',
sport: {
keyEventsTitle: 'Matukio muhimu',
matchSummary: 'Muhtasari wa mechi',
assists: 'Pasi za mabao',
penalties: 'Penalti',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/tamil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,7 @@ export const service: DefaultServiceConfig = {
closedDescription: 'அன்று இது நிறைவடையும் {{date}}.',
},
sport: {
keyEventsTitle: 'முக்கிய நிகழ்வுகள்',
matchSummary: 'போட்டி சுருக்கம்',
assists: 'உதவிகள்',
penalties: 'பெனால்டி',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/telugu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,7 @@ export const service: DefaultServiceConfig = {
featuresAnalysisTitle: 'ఫీచర్లు',
latestMediaTitle: 'తాజా వార్తలు',
sport: {
keyEventsTitle: 'కీలక సంఘటనలు',
matchSummary: 'మ్యాచ్ సారాంశం',
assists: 'అసిస్టులు',
penalties: 'పెనాల్టీలు',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/thai.ts
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,7 @@ export const service: DefaultServiceConfig = {
topStoriesTitle: 'ข่าวเด่น',
featuresAnalysisTitle: 'เรื่องน่าสนใจ',
sport: {
keyEventsTitle: 'เหตุการณ์สำคัญ',
matchSummary: 'สรุปการแข่งขัน',
assists: 'แอสซิสต์',
penalties: 'จุดโทษ',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/tigrinya.ts
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,7 @@ export const service: DefaultServiceConfig = {
featuresAnalysisTitle: 'ኣዘራረብቲ ዛዕባታት',
latestMediaTitle: 'ናይ መወዳእታ',
sport: {
keyEventsTitle: 'ኣገዳሲ ፍጻመታት',
matchSummary: 'ሓፈሻዊ ጸብጻብ ግጥሚ',
assists: 'ኣሊዓሊያ',
penalties: 'ፔናልቲ',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/turkce.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@ export const service: DefaultServiceConfig = {
topStoriesTitle: 'Manşet haber',
featuresAnalysisTitle: 'Seçtiklerimiz',
sport: {
keyEventsTitle: 'Önemli anlar',
matchSummary: 'Maç Özeti',
assists: 'Asistler',
penalties: 'Penaltılar',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/ukrainian.ts
Original file line number Diff line number Diff line change
Expand Up @@ -455,6 +455,7 @@ export const service: UkrainianConfig = {
...secondaryColumnTranslations,
relatedTopics: 'Темы',
sport: {
keyEventsTitle: 'Ключові події',
worldCupTeamNames: {
algeria: 'Алжир',
argentina: 'Аргентина',
Expand Down
1 change: 1 addition & 0 deletions src/app/lib/config/services/urdu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,7 @@ export const service: DefaultServiceConfig = {
closedDescription: 'یہ {{date}} کو بند ہوا',
},
sport: {
keyEventsTitle: 'اہم واقعات',
matchSummary: 'میچ کا خلاصہ',
assists: 'اسسٹ',
penalties: 'پنالٹی',
Expand Down
2 changes: 2 additions & 0 deletions src/app/lib/config/services/uzbek.ts
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,7 @@ const defaultCyrillicConfig = {
linkText: 'View the full version of the page to see all the content.',
},
sport: {
keyEventsTitle: 'Асосий воқеалар',
matchSummary: 'Ўйин хулосаси',
assists: 'Ассистлар',
penalties: 'Пенальти',
Expand Down Expand Up @@ -699,6 +700,7 @@ export const service: UzbekConfig = {
linkText: 'View the full version of the page to see all the content.',
},
sport: {
keyEventsTitle: 'Asosiy voqealar',
matchSummary: 'O‘yin xulosasi',
assists: 'Assistlar',
penalties: 'Penaltilar',
Expand Down
Loading
Loading