Skip to content

Commit 4b5bc2f

Browse files
authored
feat(i18n): add Tamil, Japanese, French languages and fix Korean labels (JhaSourav07#2024)
## Description Fixes JhaSourav07#2012 ## Pillar - [x] 🛠️ Other (New Functionality) ## Visual Preview N/A (translation labels, no SVG structure changes) ## Checklist - [x] I have read the `CONTRIBUTING.md` file. - [x] I have tested these changes locally (`localhost:3000/api/streak?user=janievinod`). - [x] I have run `npm run format` and `npm run lint` locally and resolved all errors. - [x] I have run `npm run test` and all tests pass locally. - [x] I have run `npm run test:coverage` and branch coverage is at or above 70%. - [x] My commits follow the Conventional Commits format. - [x] I have updated `README.md` if I added a new theme or URL parameter. - [x] I have starred the repo. - [x] I have made sure that I have only one commit to merge in this PR. - [x] The SVG output matches the CommitPulse "premium quality" aesthetic standard.
2 parents e3787f1 + 29a6aa8 commit 4b5bc2f

1 file changed

Lines changed: 14 additions & 7 deletions

File tree

lib/i18n/badgeLabels.ts

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,24 +44,31 @@ export const labels: Record<string, BadgeLabels> = {
4444
},
4545
ko: {
4646
CURRENT_STREAK: '현재_연속',
47-
ANNUAL_SYNC_TOTAL: '연간_총합',
47+
ANNUAL_SYNC_TOTAL: '연간_총계',
4848
PEAK_STREAK: '최고_연속',
4949
COMMITS_THIS_MONTH: '이번 달 커밋',
5050
VS_LAST_MONTH: '지난달 대비',
5151
},
52+
ja: {
53+
CURRENT_STREAK: '現在のストリーク',
54+
ANNUAL_SYNC_TOTAL: '年間合計',
55+
PEAK_STREAK: '最高ストリーク',
56+
COMMITS_THIS_MONTH: '今月のコミット数',
57+
VS_LAST_MONTH: '先月比',
58+
},
5259
fr: {
5360
CURRENT_STREAK: 'SÉRIE_ACTUELLE',
5461
ANNUAL_SYNC_TOTAL: 'TOTAL_ANNUEL',
5562
PEAK_STREAK: 'SÉRIE_MAXIMALE',
5663
COMMITS_THIS_MONTH: 'COMMITS CE MOIS',
5764
VS_LAST_MONTH: 'vs mois dernier',
5865
},
59-
ja: {
60-
CURRENT_STREAK: '現在_ストリーク',
61-
ANNUAL_SYNC_TOTAL: '年間_合計',
62-
PEAK_STREAK: '最高_ストリーク',
63-
COMMITS_THIS_MONTH: '今月のコミット数',
64-
VS_LAST_MONTH: '先月比',
66+
ta: {
67+
CURRENT_STREAK: 'தற்போதைய_தொடர்',
68+
ANNUAL_SYNC_TOTAL: 'ஆண்டு_மொத்தம்',
69+
PEAK_STREAK: 'உச்ச_தொடர்',
70+
COMMITS_THIS_MONTH: 'இம்மாத கமிட்கள்',
71+
VS_LAST_MONTH: 'கடந்த மாதத்துடன்',
6572
},
6673
de: {
6774
CURRENT_STREAK: 'AKTUELLE_SERIE',

0 commit comments

Comments
 (0)