Skip to content

Commit c2d436f

Browse files
committed
Better wording in UI
1 parent 114de45 commit c2d436f

2 files changed

Lines changed: 15 additions & 14 deletions

File tree

Program.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public AppContext() {
7979
sortedTimes = times.OrderByDescending(i => i);
8080
}
8181

82-
var activateForItem = new MenuItem("&Activate for");
82+
var activateForItem = new MenuItem("&Stay awake for");
8383
foreach (var time in sortedTimes) {
8484
var item = new MenuItem(Duration.ToDescription(time));
8585
item.Tag = time;
@@ -189,7 +189,7 @@ void activate(int duration) {
189189
this.timer.Start();
190190
}
191191
this.notifyIcon.Icon = onIcon;
192-
this.notifyIcon.Text = "Caffeinated: active";
192+
this.notifyIcon.Text = "Caffeinated: sleep not allowed!";
193193
}
194194

195195
void deactivate() {
@@ -202,7 +202,7 @@ void deactivate() {
202202
}
203203
}
204204
this.notifyIcon.Icon = offIcon;
205-
this.notifyIcon.Text = "Caffeinated: inactive";
205+
this.notifyIcon.Text = "Caffeinated: sleep allowed";
206206
}
207207

208208
private void exitItem_Click(object Sender, EventArgs e) {

SettingsForm.Designer.cs

Lines changed: 12 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)