diff options
| author | Ben Beltran <ben@nsovocal.com> | 2020-06-20 16:20:31 +0200 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2020-06-20 16:20:31 +0200 |
| commit | 862a5f9cdbbda522c608ea63c1e296e81f44de10 (patch) | |
| tree | 126b943ec581a556dd4ff71d9403da47bb40299e /app/components/forum_list | |
| parent | 7372fe18d4fb901d3ebb86e7a73443d4dc3afb70 (diff) | |
Add internationalization support
Diffstat (limited to 'app/components/forum_list')
| -rw-r--r-- | app/components/forum_list/forum_list.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/components/forum_list/forum_list.svelte b/app/components/forum_list/forum_list.svelte index c218bac..5ce4dc1 100644 --- a/app/components/forum_list/forum_list.svelte +++ b/app/components/forum_list/forum_list.svelte @@ -13,7 +13,7 @@ <li> <a href="/f/{forum.id}"> <span aria-hidden="true" class="navigation-glyph {forum.glyph}">{forum.glyph}</span> - <span class="navigation-label">{forum.label}</span> + <span class="navigation-label">{$_(forum.label)}</span> </a> </li> {/each} |