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

{info.name}

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