Skip to content

Commit d0130af

Browse files
committed
switch to generic label
1 parent 201f42f commit d0130af

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

frontend/src/features/collections/collection-items-dialog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const crawlSortOptions: SortOptions = [
5050
},
5151
{
5252
field: "firstSeed",
53-
label: msg("Crawl Start URL"),
53+
label: msg("First Page URL"),
5454
defaultDirection: 1,
5555
},
5656
];

frontend/src/features/crawl-workflows/workflow-action-menu/workflow-action-menu.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ export class WorkflowActionMenu extends BtrixElement {
181181
@click=${() => ClipboardController.copyToClipboard(workflow.firstSeed)}
182182
>
183183
<sl-icon name="link" slot="prefix"></sl-icon>
184-
${msg("Copy Crawl Start URL")}
184+
${msg("Copy First Page URL")}
185185
</sl-menu-item>
186186
187187
<sl-menu-item

frontend/src/pages/crawls.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const sortableFields: Record<
2626
defaultDirection: "desc",
2727
},
2828
firstSeed: {
29-
label: msg("Crawl Start URL"),
29+
label: msg("First Page URL"),
3030
defaultDirection: "desc",
3131
},
3232
fileSize: {

frontend/src/pages/org/archived-items.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ const sortableFields: Record<
8181
export class CrawlsList extends BtrixElement {
8282
static FieldLabels: Record<SearchFields, string> = {
8383
name: msg("Name"),
84-
firstSeed: msg("Crawl Start URL"),
84+
firstSeed: msg("First Page URL"),
8585
};
8686

8787
@property({ type: Boolean })
@@ -540,8 +540,8 @@ export class CrawlsList extends BtrixElement {
540540
placeholder=${this.itemType === "upload"
541541
? msg("Search all uploads by name")
542542
: this.itemType === "crawl"
543-
? msg("Search all crawls by name or Crawl Start URL")
544-
: msg("Search all items by name or Crawl Start URL")}
543+
? msg("Search all crawls by name or first page URL")
544+
: msg("Search all items by name or first page URL")}
545545
@btrix-select=${(e: CustomEvent) => {
546546
const { key, value } = e.detail;
547547
this.filterBy = {

frontend/src/pages/org/workflows-list.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const sortableFields: Record<
7575
defaultDirection: "asc",
7676
},
7777
firstSeed: {
78-
label: msg("Crawl Start URL"),
78+
label: msg("First Page URL"),
7979
defaultDirection: "asc",
8080
},
8181
created: {
@@ -105,7 +105,7 @@ const USED_FILTERS = [
105105
export class WorkflowsList extends BtrixElement {
106106
static FieldLabels: Record<SearchFields, string> = {
107107
name: msg("Name"),
108-
firstSeed: msg("Crawl Start URL"),
108+
firstSeed: msg("First Page URL"),
109109
};
110110

111111
@state()
@@ -742,7 +742,7 @@ export class WorkflowsList extends BtrixElement {
742742
.searchOptions=${this.searchOptions}
743743
.keyLabels=${WorkflowsList.FieldLabels}
744744
selectedKey=${ifDefined(this.selectedSearchFilterKey)}
745-
placeholder=${msg("Search all Workflows by name or Crawl Start URL")}
745+
placeholder=${msg("Search all workflows by name or first page URL")}
746746
@btrix-select=${(e: SelectEvent<typeof this.searchKeys>) => {
747747
const { key, value } = e.detail;
748748
if (key == null) return;

0 commit comments

Comments
 (0)