Skip to content

Commit 5431064

Browse files
authored
Adjust app copy to comply with our naming conventions
Removes "recording" from verbage
2 parents 99a3902 + 03a0d4d commit 5431064

File tree

9 files changed

+64
-64
lines changed

9 files changed

+64
-64
lines changed

src/electron/app-popup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class AppRecPopup extends RecPopup
7171
}
7272

7373
get notRecordingMessage() {
74-
return "Not Recording this Window";
74+
return "Not Archiving this Window";
7575
}
7676

7777
getHomePage() {

src/electron/electron-recorder-app.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,11 @@ class ElectronRecorderApp extends ElectronReplayApp
113113
async handleClose(theWindow) {
114114
const res = await dialog.showMessageBox(theWindow, {
115115
type: "question",
116-
buttons: ["Cancel", "Stop Recording and Quit"],
116+
buttons: ["Cancel", "Stop Archiving and Quit"],
117117
defaultId: 1,
118118
cancelId: 0,
119-
title: "Stop Recording and Quit",
120-
message: `There are still ${this.recorders.size} active recording sessions. Stop all and quit?`
119+
title: "Stop Archiving and Quit",
120+
message: `There are still ${this.recorders.size} active archiving sessions. Stop all and quit?`
121121
});
122122

123123
// not closing

src/ext/browser-recorder.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -185,26 +185,26 @@ class BrowserRecorder extends Recorder {
185185

186186
if (this.running) {
187187
if (this.behaviorState === BEHAVIOR_RUNNING) {
188-
title = "Recording: Autopilot Running!";
188+
title = "Archiving: Autopilot Running!";
189189
color = "#3298dc";
190190
text = " ";
191191

192192
} else if (this.numPending === 0) {
193-
title = "Recording: No URLs pending, can continue";
193+
title = "Archiving: No URLs pending, can continue";
194194
color = "#64e986";
195195
text = " ";
196196

197197
} else {
198-
title = `Recording: ${this.numPending} URLs pending, please wait`;
198+
title = `Archiving: ${this.numPending} URLs pending, please wait`;
199199
color = "#bb9f08";
200200
text = "" + this.numPending;
201201
}
202202
} else if (this.failureMsg) {
203-
title = "Error: Can't Record this page";
203+
title = "Error: Can't Archive this page";
204204
text = "X";
205205
color = "#F00";
206206
} else {
207-
title = "Not Recording";
207+
title = "Not Archiving";
208208
text = "";
209209
color = "#64e986";
210210
}

src/popup.js

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ class RecPopup extends LitElement
220220
}
221221

222222
get notRecordingMessage() {
223-
return "Not Recording this Tab";
223+
return "Not Archiving this Tab";
224224
}
225225

226226
static get styles() {
@@ -359,7 +359,7 @@ class RecPopup extends LitElement
359359
}
360360

361361
if (this.recording) {
362-
return html`<b>${this.waitingForStop ? "Finishing " : ""} Recording:&nbsp;</b>${this.status && this.status.numPending ? html`
362+
return html`<b>${this.waitingForStop ? "Finishing " : ""} Archiving:&nbsp;</b>${this.status && this.status.numPending ? html`
363363
<span class="status-pending">${this.status.numPending} URLs pending${this.waitingForStop ? "." : ", please wait before loading a new page."}</span>
364364
` :
365365
html`
@@ -369,7 +369,7 @@ class RecPopup extends LitElement
369369
if (this.failureMsg) {
370370
return html`
371371
<div class="error">
372-
<p>Sorry, there was an error starting recording on this page. Please try again or try a different page.</p>
372+
<p>Sorry, there was an error starting archiving on this page. Please try again or try a different page.</p>
373373
<p class="error-msg">Error Details: <i>${this.failureMsg}</i></p>
374374
<p>If the error persists, check the <a href="https://archiveweb.page/guide/troubleshooting/errors" target="_blank">Common Errors and Issues</a> page in the guide for
375375
known issues and possible solutions.
@@ -381,18 +381,18 @@ class RecPopup extends LitElement
381381
if (!this.canRecord) {
382382
if (this.pageUrl && this.pageUrl.startsWith(this.extRoot)) {
383383
return html`
384-
<p class="is-size-7">This page is part of the extension. You can view existing archives from here.
385-
To start a new recording, click the
386-
<wr-icon .src="${wrRec}"></wr-icon> button and enter a new URL.
384+
<p class="is-size-7">This page is part of the extension. You can view existing archived items from here.
385+
To start a new archiving session, click the
386+
<wr-icon .src="${wrRec}"></wr-icon> Start Archiving button and enter a new URL.
387387
</p>
388388
`;
389389
}
390390

391-
return html`<i>Can't record this page.</i>`;
391+
return html`<i>Can't archive this page.</i>`;
392392
}
393393

394394
if (this.waitingForStart) {
395-
return html`<i>Recording will start after the page reloads...</i>`;
395+
return html`<i>Archiving will start after the page reloads...</i>`;
396396
}
397397

398398
return html`<i>${this.notRecordingMessage}</i>`;
@@ -401,7 +401,7 @@ class RecPopup extends LitElement
401401
renderCollDropdown() {
402402
return html`
403403
<div class="coll-select">
404-
<div class="is-size-7">${this.recording ? "Recording" : "Record"} To:&nbsp;</div>
404+
<div class="is-size-7">${this.recording ? "Currently archiving" : "Save"} to:&nbsp;</div>
405405
<div class="dropdown ${this.collDrop === "show" ? "is-active" : ""}">
406406
<div class="dropdown-trigger">
407407
<button @click="${this.onShowDrop}" class="coll button is-small" aria-haspopup="true" aria-controls="dropdown-menu" ?disabled="${this.recording}">
@@ -418,7 +418,7 @@ class RecPopup extends LitElement
418418
<a @click="${() => this.collDrop = "create"}" class="dropdown-item">
419419
<span class="icon is-small">
420420
<wr-icon .src="${fasPlus}"></wr-icon>
421-
</span>Create New Archive...
421+
</span>New Archiving Session
422422
</a>
423423
<hr class="dropdown-divider">` : ""}
424424
${this.collections.map((coll) => html`
@@ -455,9 +455,9 @@ class RecPopup extends LitElement
455455
<div class="view-row is-marginless" style="background-color: #ddddff">
456456
<form @submit="${this.onNewColl}">
457457
<div class="flex-form">
458-
<label for="new-name" class="is-size-7 is-italic">Create New Archive:</label>
458+
<label for="new-name" class="is-size-7 is-italic">New Archiving Session:</label>
459459
<div class="control">
460-
<input class="input is-small" id="new-name" type="text" required placeholder="Enter Archive Name">
460+
<input class="input is-small" id="new-name" type="text" required placeholder="Enter Archiving Session Name">
461461
</div>
462462
<button class="button is-small is-outlined" type="submit">
463463
<wr-icon .src=${fasCheck}></wr-icon>
@@ -500,15 +500,15 @@ class RecPopup extends LitElement
500500
<wr-icon .src=${wrRec}></wr-icon>` : html`
501501
<wr-icon .src=${fasBox}></wr-icon>`}
502502
</span>
503-
<span>${!this.recording ? "Start" : "Stop"}</span>
503+
<span>${!this.recording ? "Start Archiving" : "Stop Archiving"}</span>
504504
</button>
505505
` : ""}
506506
</div>
507507
${this.renderCollCreate()}
508508
<div class="view-row is-marginless">
509509
<div>
510510
${this.canRecord ? html`
511-
<p><a target="_blank" href="${this.getCollPage()}" class="is-size-6">Browse Archive</a></p>` : ""}
511+
<p><a target="_blank" href="${this.getCollPage()}" class="is-size-6">View Archived Pages</a></p>` : ""}
512512
</div>
513513
${this.renderStartOpt()}
514514
</div>
@@ -525,9 +525,9 @@ class RecPopup extends LitElement
525525
526526
${this.status && this.status.sizeTotal ? html`
527527
<div class="view-row underline">
528-
<div class="session-head">Recorded in this tab</div>
528+
<div class="session-head">Archived in this tab</div>
529529
${this.replayUrl ?
530-
html`<a target="_blank" class="is-size-6" href="${this.replayUrl}">View Recorded Page</a>` : ""}
530+
html`<a target="_blank" class="is-size-6" href="${this.replayUrl}">Replay Current Page</a>` : ""}
531531
</div>
532532
<div class="view-row">
533533
<table class="status">

src/ui/app.js

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -317,26 +317,26 @@ class ArchiveWebApp extends ReplayWebApp
317317
<div class="message is-small">
318318
<div class="message-body">
319319
<div class="buttons">
320-
<button class="button is-small no-pad-mobile" title="Create New..." @click="${() => this.showNew = "show"}">
320+
<button class="button is-small no-pad-mobile" title="New Archiving Session" @click="${() => this.showNew = "show"}">
321321
<span class="icon">
322322
<fa-icon .svg=${fasPlus}></fa-icon>
323323
</span>
324-
<span class="is-hidden-mobile">Create New...</span>
324+
<span class="is-hidden-mobile">New Archiving Session</span>
325325
</button>
326-
<button class="button is-small no-pad-mobile" title="Import Archive..." @click="${() => this.showImport = true}">
326+
<button class="button is-small no-pad-mobile" title="Import File" @click="${() => this.showImport = true}">
327327
<span class="icon">
328328
<fa-icon .svg=${fasUpload}></fa-icon>
329329
</span>
330-
<span class="is-hidden-mobile">Import Archive...</span>
330+
<span class="is-hidden-mobile">Import File</span>
331331
</button>
332-
<button class="button is-small no-pad-mobile" title="Start Recording..." ?disabled="${!this.colls}" @click="${this.onShowStart}">
332+
<button class="button is-small no-pad-mobile" title="Start Archiving" ?disabled="${!this.colls}" @click="${this.onShowStart}">
333333
<span class="icon">
334334
<fa-icon size="1.0em" aria-hidden="true" .svg="${wrRec}"></fa-icon>
335335
</span>
336-
<span class="is-hidden-mobile">Start Recording...</span>
336+
<span class="is-hidden-mobile">Start Archiving</span>
337337
</button>
338338
<div class="rightbar">
339-
<div class="infomsg is-hidden-mobile">The ArchiveWeb.page ${IS_APP ? "App" : "Extension"} allows you to create web archives directly in your browser!</div>
339+
<div class="infomsg is-hidden-mobile">The ArchiveWeb.page ${IS_APP ? "App" : "Extension"} allows you to archive webpages directly in your browser!</div>
340340
<button class="button is-small" @click="${() => this.showSettings = true}">
341341
<fa-icon .svg=${fasCog}></fa-icon>
342342
</button>
@@ -348,7 +348,7 @@ class ArchiveWebApp extends ReplayWebApp
348348
349349
<wr-rec-coll-index
350350
dateName="Date Created"
351-
headerName="Current Web Archives"
351+
headerName="Archived Items"
352352
.shareOpts=${{ipfsOpts: this.ipfsOpts, btrixOpts: this.btrixOpts}}
353353
@show-start=${this.onShowStart}
354354
@show-import=${this.onShowImport}
@@ -415,8 +415,8 @@ class ArchiveWebApp extends ReplayWebApp
415415

416416
renderStartModal() {
417417
return html`
418-
<wr-modal @modal-closed="${() => this.showStartRecord = false}" title="Start Recording">
419-
${this.renderCollList("Archive To:")}
418+
<wr-modal @modal-closed="${() => this.showStartRecord = false}" title="Start Archiving">
419+
${this.renderCollList("Save To:")}
420420
<div class="field">
421421
<label class="checkbox is-size-7">
422422
<input type="checkbox" ?checked="${this.autorun}" @change="${(e) => this.autorun = e.currentTarget.checked}">
@@ -429,7 +429,7 @@ class ArchiveWebApp extends ReplayWebApp
429429
<p class="control is-expanded">
430430
<input class="input" type="url" required
431431
name="url" id="url" value="${this.recordUrl}"
432-
placeholder="Enter a URL to Start Recording">
432+
placeholder="Enter a URL to Start Archiving">
433433
</p>
434434
<div class="control">
435435
<button type="submit" class="button is-hidden-mobile is-outlined is-link">
@@ -442,22 +442,22 @@ class ArchiveWebApp extends ReplayWebApp
442442
</div>
443443
${IS_APP ? html`
444444
<label class="checkbox">
445-
<input id="preview" type="checkbox"><span>&nbsp;Start in Preview Mode (without recording.)</span>
445+
<input id="preview" type="checkbox"><span>&nbsp;Start in Preview Mode (without archiving.)</span>
446446
</label>` : ""}
447447
</form>
448448
</wr-modal>`;
449449
}
450450

451451
renderNewCollModal() {
452452
return html`
453-
<wr-modal @modal-closed="${() => this.showNew = null}" title="Create New Archive">
453+
<wr-modal @modal-closed="${() => this.showNew = null}" title="New Archiving Session">
454454
<form @submit="${this.onNewColl}" class="create-new">
455455
<div class="field has-addons">
456456
<p class="control is-expanded">
457-
<input type="text" id="new-title" name="new-title" class="input" required placeholder="Enter the title for the new archive">
457+
<input type="text" id="new-title" name="new-title" class="input" required placeholder="Give this archiving session a name">
458458
</p>
459459
<div class="control">
460-
<button type="submit" class="button is-hidden-mobile is-primary ${this.showNew === "loading" ? "is-loading " : ""}" ?disabled="${this.showNew === "loading"}">Create New</button>
460+
<button type="submit" class="button is-hidden-mobile is-primary ${this.showNew === "loading" ? "is-loading " : ""}" ?disabled="${this.showNew === "loading"}">Create</button>
461461
</div>
462462
</div>
463463
</form>
@@ -466,7 +466,7 @@ class ArchiveWebApp extends ReplayWebApp
466466

467467
renderImportModal() {
468468
return html`
469-
<wr-modal style="--modal-width: 740px" @modal-closed="${() => this.showImport = false}" title="Import an Existing Archive">
469+
<wr-modal style="--modal-width: 740px" @modal-closed="${() => this.showImport = false}" title="Import File">
470470
<wr-chooser
471471
style="flex: auto"
472472
.newFullImport="${true}"
@@ -477,7 +477,7 @@ class ArchiveWebApp extends ReplayWebApp
477477
<div class="control">
478478
<label class="checkbox">
479479
<input type="checkbox" name="add-existing" .checked="${this.isImportExisting}" @change="${(e) => this.isImportExisting = e.currentTarget.checked}">
480-
Add to an existing archive collection${this.isImportExisting ? ":" : ""}
480+
Add to an existing archived item${this.isImportExisting ? ":" : ""}
481481
</label>
482482
</div>
483483
${this.isImportExisting ? this.renderCollList() : ""}
@@ -596,10 +596,10 @@ class ArchiveWebApp extends ReplayWebApp
596596
</div>
597597
598598
${IS_APP ? html`
599-
<p>ArchiveWeb.page App is a standalone app for Mac, Windows and Linux that allows users to create web archives as they browse</p>
599+
<p>ArchiveWeb.page App is a standalone app for Mac, Windows and Linux that allows users to archive webpages as they browse</p>
600600
601601
` : html`
602-
<p>ArchiveWeb.page allows users to create web archives directly in your browser!</p>`}
602+
<p>ArchiveWeb.page allows users to archive webpages directly in your browser!</p>`}
603603
</div>
604604
605605
<p>See the <a href="https://archiveweb.page/guide" target="_blank">ArchiveWeb.page Guide</a> for more info on how to use this tool.</p>
@@ -611,13 +611,13 @@ class ArchiveWebApp extends ReplayWebApp
611611
<p>ArchiveWeb.page is part of the <a href="https://webrecorder.net/" target="_blank">Webrecorder Project</a>.</p>
612612
613613
<h3>Privacy Policy</h3>
614-
<p class="is-size-7">ArchiveWeb.page allows users to archive what they browse, this archive data is stored directly in the browser.
615-
Users can downloaded this data as files to their harddrive. Users can also delete any and all archived data at any time.
614+
<p class="is-size-7">ArchiveWeb.page allows users to archive what they browse, storing captured data directly in the browser.
615+
Users can downloaded this data as files to their hard drive. Users can also delete any and all archived data at any time.
616616
ArchiveWeb.page does not collect any usage or tracking data.</p>
617617
618618
<p class="is-size-7">ArchiveWeb.page includes an experimental sharing option for each archive collection. Users can choose to share select archives on a peer-to-peer network (IPFS) via a unique id.
619619
Once shared on this network, the data may become accessible to others.
620-
All archives are private and not shared by default, unless explicitly opted-in by the user. (A warning is displayed when sharing via IPFS.)</p>
620+
All archived items are private and not shared by default, unless explicitly opted-in by the user. (A warning is displayed when sharing via IPFS.)</p>
621621
622622
<h4>Disclaimer of Warranties</h4>
623623
<p class="is-size-7">The application is provided "as is" without any guarantees.</p>
@@ -656,7 +656,7 @@ class ArchiveWebApp extends ReplayWebApp
656656
<form class="is-flex is-flex-direction-column is-size-7" @submit="${this.onSaveSettings}">
657657
658658
${this.settingsTab === "ipfs" ? html`
659-
<p class="is-size-6 mb-3">Configure IPFS settings for sharing archives to IPFS.</p>
659+
<p class="is-size-6 mb-3">Configure settings for sharing archived items to IPFS.</p>
660660
<fieldset>
661661
<div class="field">
662662
<input name="ipfsAutoDetect" id="ipfsAutoDetect" class="checkbox is-small" type="checkbox" ?checked="${this.ipfsOpts.autoDetect}"><span class="ml-1">Auto-Detect IPFS</span>
@@ -680,7 +680,7 @@ class ArchiveWebApp extends ReplayWebApp
680680
</fieldset>` : ""}
681681
682682
${this.settingsTab === "browsertrix" ? html`
683-
<p class="is-size-6 mb-3">Configure your credentials to upload archives to Browsertrix Cloud.</p>
683+
<p class="is-size-6 mb-3">Configure your credentials to upload archived items to Browsertrix Cloud.</p>
684684
<fieldset>
685685
<div class="field has-addons">
686686
<p class="is-expanded">

src/ui/coll-index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ class WrRecCollIndex extends CollIndex
131131
}
132132

133133
renderEmpty() {
134-
return html`No Archives. Click "Create New" above to create a new archive and start recording!`;
134+
return html`No archived items. Click "New Archiving Session" above to begin archiving pages!`;
135135
}
136136
}
137137

138-
customElements.define("wr-rec-coll-index", WrRecCollIndex);
138+
customElements.define("wr-rec-coll-index", WrRecCollIndex);

0 commit comments

Comments
 (0)