{#if $fileInfo}
{#if $status.status === "download-pending"} {:else if $status.status === "downloading"} {:else if $status.status === "decryption-pending"} {:else if $status.status === "decrypting"} {:else if $status.status === "decrypted"} {:else if $status.status === "error"} {/if}

{$fileInfo.name}

{#if $status.status === "download-pending"} 다운로드를 기다리는 중 {:else if $status.status === "downloading"} 전송됨 {Math.floor(($status.progress ?? 0) * 100)}% · {formatNetworkSpeed(($status.rate ?? 0) * 8)} {:else if $status.status === "decryption-pending"} 복호화를 기다리는 중 {:else if $status.status === "decrypting"} 복호화하는 중 {:else if $status.status === "decrypted"} 다운로드 완료 {:else if $status.status === "error"} 다운로드 실패 {/if}

{/if}