{#if dismissed}

{i18n.t("activation.pausedTitle")}

{i18n.t("activation.pausedBody")}

{:else if visible}
{i18n.t("activation.title")} {i18n.t("activation.valueProp")}

{i18n.t("activation.corePathLabel")}: {" "}{i18n.t("activation.corePath")}

{i18n.t("activation.descriptionShort")}

{i18n.t("activation.progress", { done: completedCount, total })} {pct}%
    {#each steps as step, index (step.id)} {@const done = index < completedCount} {@const current = index === currentIndex && completedCount < total} {@const core = coreStepIds.has(step.id)} {#if showAllSteps || done || current}
  1. {i18n.t(`activation.step.${step.id}.title`)} {#if step.optional && (current || showAllSteps)} ({i18n.t("common.optional")}) {:else if core && current} ({i18n.t("activation.corePathLabel")}) {/if}

    {#if current || showAllSteps}

    {i18n.t(`activation.step.${step.id}.body`)}

    {#if step.id === "store-connect" && (current || showAllSteps)}

    {i18n.t("activation.storeWizardHint")}

    {/if} {/if}
    {#if current}
    {:else if !done && showAllSteps} {/if}
  2. {/if} {/each}
{#if !showAllSteps && completedCount < total} {:else if showAllSteps && completedCount < total} {/if}
{/if}