Skip to content

Commit 4cd0c7a

Browse files
Merge pull request #1338 from internetarchive/webdev-5079/fix/make-visual-adjustment-text-consistent
Rephrase visual adjustment text to improve consistency
2 parents 4e04eac + d16f2dd commit 4cd0c7a

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/BookNavigator/visual-adjustments/visual-adjustments-provider.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ const visualAdjustmentOptions = [{
2020
value: 100,
2121
}, {
2222
id: 'invert',
23-
name: 'Inverted colors (dark mode)',
23+
name: 'Invert colors (dark mode)',
2424
active: false,
2525
}, {
2626
id: 'grayscale',
27-
name: 'Grayscale',
27+
name: 'Convert to grayscale',
2828
active: false,
2929
}];
3030

src/BookNavigator/visual-adjustments/visual-adjustments.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ export class IABookVisualAdjustments extends LitElement {
157157

158158
get zoomControls() {
159159
return html`
160-
<h4>Zoom</h4>
160+
<h4>Adjust zoom</h4>
161161
<button class="zoom_out" @click=${this.emitZoomOut} title="zoom out">
162162
<ia-icon-magnify-minus></ia-icon-magnify-minus>
163163
</button>

tests/jest/BookNavigator/visual-adjustments.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const options = [{
1616
value: 100,
1717
}, {
1818
id: 'invert',
19-
name: 'Invert colors',
19+
name: 'Invert colors (dark mode)',
2020
active: false,
2121
}, {
2222
id: 'brightness',

0 commit comments

Comments
 (0)