-
-
Notifications
You must be signed in to change notification settings - Fork 233
feat: show translation progress in locale picker #1303
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
serhalp
wants to merge
1
commit into
main
Choose a base branch
from
feat/language-picker-translation-progress
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| import type { I18nLocaleStatus } from '#shared/types' | ||
|
|
||
| /** | ||
| * Format a locale label for the language selector, appending the completion | ||
| * percentage when the locale is not fully translated. | ||
| */ | ||
| export function formatLocaleLabel(name: string, localeStatus: I18nLocaleStatus | null): string { | ||
| if (localeStatus && localeStatus.percentComplete < 100) { | ||
| return `${name} (${localeStatus.percentComplete}%)` | ||
| } | ||
| return name | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| import { describe, it, expect } from 'vitest' | ||
| import { formatLocaleLabel } from '../../../../app/utils/locale-label' | ||
| import type { I18nLocaleStatus } from '#shared/types' | ||
|
|
||
| function makeStatus(percentComplete: number): I18nLocaleStatus { | ||
| return { | ||
| lang: 'fr-FR', | ||
| label: 'Français', | ||
| totalKeys: 200, | ||
| completedKeys: Math.round((percentComplete / 100) * 200), | ||
| missingKeys: [], | ||
| percentComplete, | ||
| githubEditUrl: '', | ||
| githubHistoryUrl: '', | ||
| } | ||
| } | ||
|
|
||
| describe('formatLocaleLabel', () => { | ||
| it('appends percentage when locale is partially translated', () => { | ||
| expect(formatLocaleLabel('Français', makeStatus(85))).toBe('Français (85%)') | ||
| }) | ||
|
|
||
| it('appends percentage when locale is 0% translated', () => { | ||
| expect(formatLocaleLabel('العربية', makeStatus(0))).toBe('العربية (0%)') | ||
| }) | ||
|
|
||
| it('does not append percentage when locale is 100% complete', () => { | ||
| expect(formatLocaleLabel('English (US)', makeStatus(100))).toBe('English (US)') | ||
| }) | ||
|
|
||
| it('returns plain name when locale status is null', () => { | ||
| expect(formatLocaleLabel('English', null)).toBe('English') | ||
| }) | ||
| }) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: npmx-dev/npmx.dev
Length of output: 1844
🏁 Script executed:
Repository: npmx-dev/npmx.dev
Length of output: 194
🏁 Script executed:
Repository: npmx-dev/npmx.dev
Length of output: 307
🏁 Script executed:
Repository: npmx-dev/npmx.dev
Length of output: 43
🏁 Script executed:
Repository: npmx-dev/npmx.dev
Length of output: 677
🏁 Script executed:
Repository: npmx-dev/npmx.dev
Length of output: 560
🏁 Script executed:
Repository: npmx-dev/npmx.dev
Length of output: 2797
🏁 Script executed:
Repository: npmx-dev/npmx.dev
Length of output: 43
🏁 Script executed:
# Check useI18nStatus composable cat -n app/composables/useI18nStatus.tsRepository: npmx-dev/npmx.dev
Length of output: 2814
🏁 Script executed:
Repository: npmx-dev/npmx.dev
Length of output: 43
🏁 Script executed:
Repository: npmx-dev/npmx.dev
Length of output: 88
🏁 Script executed:
Repository: npmx-dev/npmx.dev
Length of output: 502
🏁 Script executed:
Repository: npmx-dev/npmx.dev
Length of output: 10479
🏁 Script executed:
Repository: npmx-dev/npmx.dev
Length of output: 502
🏁 Script executed:
# Verify formatLocaleLabel with empty string cat -n app/utils/locale-label.tsRepository: npmx-dev/npmx.dev
Length of output: 572
🏁 Script executed:
# Check the i18n config file to see currentLocales structure cat -n config/i18n.tsRepository: npmx-dev/npmx.dev
Length of output: 14333
🏁 Script executed:
Repository: npmx-dev/npmx.dev
Length of output: 1610
Use locale code as fallback when name is missing.
If a locale lacks
name, the current empty string fallback results in a blank label (or just "(x%)"). Use the locale code as fallback for better UX.Suggested change
const localeItems = computed(() => locales.value.map(loc => ({ - label: formatLocaleLabel(loc.name ?? '', getLocaleStatus(loc.code)), + label: formatLocaleLabel(loc.name ?? loc.code, getLocaleStatus(loc.code)), value: loc.code, })), )📝 Committable suggestion