Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions frontend/src/pages/org/crawl-config-editor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ export class CrawlConfigEditor extends LiteElement {

render() {
const tabLabels: Record<StepName, string> = {
crawlSetup: msg("Crawl Setup"),
crawlSetup: msg("Crawl Scope"),
browserSettings: msg("Browser Settings"),
crawlScheduling: msg("Crawl Scheduling"),
crawlInformation: msg("Crawl Information"),
Expand Down Expand Up @@ -944,7 +944,7 @@ https://example.com/path`}
${this.renderFormCol(html`
<sl-select
name="scopeType"
label=${msg("Crawl Scope")}
label=${msg("Start URL Scope")}
defaultValue=${this.formState.scopeType}
value=${this.formState.scopeType}
@sl-select=${(e: Event) =>
Expand Down Expand Up @@ -987,7 +987,7 @@ https://example.net`}
></sl-textarea>
`)}
${this.renderHelpTextCol(
html`Crawl pages outside of Crawl Scope that begin with these URLs.`
html`If the crawler finds pages outside of the Start URL Scope they will only be saved if they begin with URLs listed here.`
)}
${this.renderFormCol(html`
<sl-checkbox
Expand Down Expand Up @@ -1096,8 +1096,8 @@ https://example.net`}
</sl-radio-group>
`)}
${this.renderHelpTextCol(
html`Increasing parallel crawler instances will speed up crawls, but
take up more system resources.`
html`Increasing parallel crawler instances can speed up crawls, but
may increase the chances of getting rate limited.`
)}
`;
}
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/pages/org/crawl-configs-new.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export class CrawlTemplatesNew extends LiteElement {
<div class="text-lg font-medium my-3">${msg("URL List")}</div>
<p class="text-sm text-neutral-500">
${msg(
"The crawler visits every URL you tell it to and optionally every URL linked on those pages."
"The crawler visits every URL specified in a list, and optionally every URL linked on those pages."
)}
</p>
</figcaption>
Expand All @@ -169,7 +169,7 @@ export class CrawlTemplatesNew extends LiteElement {
<div class="text-lg font-medium my-3">${msg("Seeded Crawl")}</div>
<p class="text-sm text-neutral-500">
${msg(
"The crawler automatically finds new pages and archives them."
"The crawler automatically discovers and archives pages starting from a single seed URL."
)}
</p>
</figcaption>
Expand Down