Skip to content

Commit

Permalink
locale strings because we can
Browse files Browse the repository at this point in the history
  • Loading branch information
eyeseast committed Mar 29, 2024
1 parent 83b535e commit a958e76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/app/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@
on:change={selectAll}
/>
{#if $selected.length > 0}
{$selected.length} selected
{$selected.length.toLocaleString()} selected
{:else}
Select all
{/if}
</label>

<svelte:fragment slot="center">
{#if $visible && $total}
Showing {$visible.size} of {$total} results
Showing {$visible.size.toLocaleString()} of {$total.toLocaleString()} results
{/if}
</svelte:fragment>
</PageToolbar>
Expand Down

0 comments on commit a958e76

Please sign in to comment.