File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff 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] ;
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 : {
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ const sortableFields: Record<
8181export 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 = {
Original file line number Diff line number Diff 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 = [
105105export 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 ;
You can’t perform that action at this time.
0 commit comments