Radish alpha
r
rad:z4V1sjrXqjvFdnCUbxPFqd5p4DtH5
Radicle web interface
Radicle
Git
Copy fixes
Merged did:key:z6MksFqX...wzpT opened 2 years ago
5 files changed +10 -10 55d64af8 cc2ff9aa
modified src/components/ScopePolicyExplainer.svelte
@@ -11,7 +11,7 @@
  Only repositories marked as such will get seeded,
{/if}
{#if scope === "all"}
-
  and all changes in those repos, made by any peer, will be synced.
+
  and all changes in those repositories, made by any peer, will be synced.
{:else if scope === "followed"}
  and only changes made by explicitly followed peers will be synced.
{/if}
modified src/views/home/Index.svelte
@@ -206,7 +206,7 @@
        preferredSeedProjects?.length === 0}
      title="Explore">
      <svelte:fragment slot="subtitle">
-
        Pinned projects on your selected seed node
+
        Pinned repositories on your selected seed node
        {#if !nodeId}
          <div class="global-hide-on-mobile">
            <Popover
modified src/views/nodes/View.svelte
@@ -157,7 +157,7 @@
            {/each}
          </div>
          <div class="version">
-
            v{version}
+
            {version}
          </div>
        </div>
      </div>
modified src/views/projects/Header/CloneButton.svelte
@@ -77,7 +77,7 @@
      <label for="rad-clone-url">
        Use the <ExternalLink href="https://radicle.xyz">
          Radicle CLI
-
        </ExternalLink> to clone this project.
+
        </ExternalLink> to clone this repository.
      </label>
      <Command command={radCloneUrl} />
    {:else}
modified src/views/projects/Header/SeedButton.svelte
@@ -32,12 +32,12 @@
            component: ErrorModal,
            props: {
              title: seeding
-
                ? "Stop seeding project failed"
-
                : "Seeding project failed",
+
                ? "Stop seeding repository failed"
+
                : "Seeding repository failed",
              subtitle: [
                `There was an error while trying to ${
                  seeding ? "stop seeding" : "seed"
-
                } this project.`,
+
                } this repository.`,
                "Check your radicle-httpd logs for details.",
              ],
              error: {
@@ -125,8 +125,8 @@
    {#if $experimental && canEditSeeding && seeding}
      <div class="seed-label txt-bold">Stop seeding</div>
      <div class="seed-label">
-
        Are you sure you want to stop seeding this project? If you don't seed a
-
        project it won't appear in the local projects section anymore and any
+
        Are you sure you want to stop seeding this repository? If you don't seed a
+
        repository it won't appear in the local repositories section anymore and any
        changes you make to it won't propagate to the network.
      </div>
      <Button
@@ -142,7 +142,7 @@
      <span class="seed-label">
        Use the <ExternalLink href="https://radicle.xyz">
          Radicle CLI
-
        </ExternalLink> to {seeding ? "stop" : "start"} seeding this project.
+
        </ExternalLink> to {seeding ? "stop" : "start"} seeding this repository.
      </span>
      <Command command={`rad ${seeding ? "unseed" : "seed"} ${projectId}`} />
    {/if}