Skip to content

Commit fc728f7

Browse files
zigzagdevclaude
andcommitted
refactor: localize sort options and Reload button in TopPageTitleBar
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 5f4643b commit fc728f7

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

client/src/app/features/top/components/TopPageTitleBar.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ export function TopPageTitleBar({
3131
shadow-sm hover:bg-zinc-50
3232
focus:outline-none focus:ring-2 focus:ring-indigo-200 focus:border-indigo-300
3333
"
34-
aria-label="Sort by ID"
34+
aria-label={text.sortById}
3535
>
36-
<option value="asc">Ascending</option>
37-
<option value="desc">Descending</option>
36+
<option value="asc">{text.ascending}</option>
37+
<option value="desc">{text.descending}</option>
3838
</select>
3939

4040
{onReload && (
@@ -47,7 +47,7 @@ export function TopPageTitleBar({
4747
focus:outline-none focus:ring-2 focus:ring-indigo-200 focus:ring-offset-2 focus:ring-offset-white
4848
"
4949
>
50-
Reload
50+
{text.reload}
5151
</button>
5252
)}
5353

0 commit comments

Comments
 (0)