Skip to content

Commit 018f130

Browse files
fix(ui): fix icon group names not localized
1 parent 67e2818 commit 018f130

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/renderer/src/lib/SettingControl/IconSettingControl.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
}}
4444
>
4545
{#each groups as group}
46-
<optgroup label={group}>
46+
<optgroup label={$t(group)}>
4747
{#each iconOptions.filter((opt) => opt.group === group) as option (option.id)}
4848
<option value={option.id}>{option.literalName ?? $t(option.name)}</option>
4949
{/each}

0 commit comments

Comments
 (0)