Skip to content

Commit a81a958

Browse files
committed
adjust wording from task to item
1 parent a6cf272 commit a81a958

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/App.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const nonJSONimportAttemptedErrMsg1 = "Please select a valid JSON file.";
3131
const mismatchDetectedMsg1 = "The link list and local storage list do not match. Which will you keep?";
3232
const confirmListDelete = "Are you sure you want to delete your list? This action cannot be undone.";
3333
const clickDiskToClose = "Click on the 'disk' icon above to close this window.";
34-
const instructions = "Add new items to your list by typing into the input box and clicking 'Add Task'. To prioritize your list, click 'Prioritize List'. To mark the next actionable item as complete, click 'Mark Done'. To delete all items from your list, click 'Delete List'.";
34+
const instructions = "Add new items to your list by typing into the input box and clicking 'Add Item'. To prioritize your list, click 'Prioritize'. To mark the next actionable item as complete, click 'Mark Done'. To delete all items from your list, click 'Delete List'.";
3535
const instructions2 = "Click the 'disk' icon to see options for list import/export. Click the 'i' icon to learn more about AutoFocus. Click the 'lightbulb' icon to toggle light/dark mode. Click the 'question mark' icon for instructions on how to use this app.";
3636
const clickQuestionCircleToClose = "Click on the 'question mark' icon above to close this window.";
3737
const clickIcircleToClose = "Click on the 'i' icon above to close this window.";
@@ -492,10 +492,10 @@ function App() {
492492
<section className="pt2 pb2 flex justify-center flex-wrap measure-wide ml-auto mr-auto">
493493
<div className="dib">
494494
<div className="ma1 dib"><button type="submit"
495-
title="add a task to your list"
495+
title="add a new item to your list"
496496
className={`br3 w4 fw6 ba bw1 b--gray button-reset ${theme === 'light' ? 'bg-moon-gray black' : 'bg-dark-gray white'} pa2 ph1 ${isPrioritizing ? 'o-50' : 'pointer grow'}`}
497497
disabled={isPrioritizing || showingDeleteModal || showingMoreInfo || showingConflictModal || showingSaveModal}
498-
onClick={handleAddTaskUI}>Add Task</button></div>
498+
onClick={handleAddTaskUI}>Add Item</button></div>
499499

500500
<div className="ma1 dib"><button type="button"
501501
title="delete all tasks from your list"
@@ -509,7 +509,7 @@ function App() {
509509
title="start a list prioritizing session"
510510
className={`br3 w4 fw6 ba bw1 b--gray button-reset ${theme === 'light' ? 'bg-moon-gray black' : 'bg-dark-gray white'} pa2 ph1 ${isPrioritizableList(tasks) ? 'pointer grow' : 'o-50'}`}
511511
disabled={isPrioritizing || showingDeleteModal || showingMoreInfo || showingConflictModal || showingSaveModal}
512-
onClick={handlePrioritizeUI}>Prioritize List</button></div>
512+
onClick={handlePrioritizeUI}>Prioritize</button></div>
513513

514514
<div className="ma1 dib"><button type="button"
515515
title="mark the next actionable item as complete"
@@ -651,7 +651,7 @@ function App() {
651651
{/*TODO: implement keyboard shortcuts for prioritization review*/}
652652
{/*<p className="fw6 pb2 ma0 lh-135">Keyboard shortcuts:</p>
653653
<ul className="ma0 pl3">
654-
<li className="pb1">Add Task: <span className="fw6">Enter</span></li>
654+
<li className="pb1">Add Item: <span className="fw6">Enter</span></li>
655655
<li className="pb1">Prioritize List: <span className="fw6">p</span></li>
656656
<li className="pb1">Mark Done: <span className="fw6">d</span></li>
657657
<li className="pb1">Delete List: <span className="fw6">x</span></li>

0 commit comments

Comments
 (0)