<script>
- export let topic;
+ export let topic;
- import { _ } from 'svelte-i18n';
- import { readableTime } from '../../utils/readable_time.js';
+ import { _ } from 'svelte-i18n';
+ import { readableTime } from '$/utils/readable_time.js';
- $: remainingTime = (topic.updated_at + topic.ttl) - Date.now();
- $: remaining = readableTime(remainingTime);
+ $: remainingTime = topic.updated_at + topic.ttl - Date.now();
+ $: remaining = readableTime(remainingTime);
</script>
-<li class="h-entry" title="{$_('topic.title')}">
- <span class="p-name"><a class="u-url u-uid" title="{$_('topic.permalink_title')}" href="/t/{topic.id}">{topic.title}</a></span>
- <span class="topic-ttl">({$_('topic.remaining_time', { values: { remaining: $_(remaining.label, { values: { count: remaining.count } }) } })})</span>
+<li class="h-entry" title={$_('topic.title')}>
+ <span class="p-name">
+ <a class="u-url u-uid" title={$_('topic.permalink_title')} href="/t/{topic.id}">
+ {topic.title}
+ </a></span>
+ <span class="topic-ttl">({$_('topic.remaining_time', {
+ values: { remaining: $_(remaining.label, { values: { count: remaining.count } }) }
+ })})
+ </span>
</li>
<style>