{countLabel} · {$currentLanguage === "ru" ? "Скажи «Джарвис» + любую фразу из карточки" : "Say \"Jarvis\" + any phrase from a card"}
{#if loading}
{:else if errorMessage}
{errorMessage}
{:else if visible.length === 0}
{$currentLanguage === "ru" ? "Ничего не найдено" : "Nothing found"}
{:else}
{#each visible as cmd (cmd.id)}
{cmd.id} {cmd.type} {#if cmd.sandbox} {cmd.sandbox} {/if}
{#if cmd.description}
{cmd.description}
{/if}
    {#each phrasesForLang(cmd, $currentLanguage) as p}
  • «{p}»
  • {/each}
{/each}
{/if}