about summary refs log tree commit diff stats
path: root/browse-slack/environment.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-08-13 16:58:01 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-08-13 16:58:01 -0700
commitd626043a2d6eb80a75e0368439d8d4349c825632 (patch)
tree0626f9a7644e907d1b42160251e0677f74500936 /browse-slack/environment.mu
parent028b7aa7832bfcc34e13600117947be5c3e43f42 (diff)
downloadmu-d626043a2d6eb80a75e0368439d8d4349c825632.tar.gz
.
Diffstat (limited to 'browse-slack/environment.mu')
-rw-r--r--browse-slack/environment.mu12
1 files changed, 6 insertions, 6 deletions
diff --git a/browse-slack/environment.mu b/browse-slack/environment.mu
index 460c8fc2..2e177f97 100644
--- a/browse-slack/environment.mu
+++ b/browse-slack/environment.mu
@@ -249,15 +249,15 @@ fn render-main-menu screen: (addr screen), _env: (addr environment) {
   draw-text-rightward-from-cursor screen, " / ", width, 0/fg 0xf/bg
   draw-text-rightward-from-cursor screen, " search  ", width, 0xf/fg, 0/bg
   draw-text-rightward-from-cursor screen, " Tab ", width, 0/fg 0xf/bg
-  draw-text-rightward-from-cursor screen, " to channels  ", width, 0xf/fg, 0/bg
+  draw-text-rightward-from-cursor screen, " go to channels  ", width, 0xf/fg, 0/bg
   draw-text-rightward-from-cursor screen, " ^b ", width, 0/fg 0xf/bg
-  draw-text-rightward-from-cursor screen, " << previous page  ", width, 0xf/fg, 0/bg
+  draw-text-rightward-from-cursor screen, " << page  ", width, 0xf/fg, 0/bg
   draw-text-rightward-from-cursor screen, " ^p ", width, 0/fg 0xf/bg
-  draw-text-rightward-from-cursor screen, " < previous item  ", width, 0xf/fg, 0/bg
+  draw-text-rightward-from-cursor screen, " < item  ", width, 0xf/fg, 0/bg
   draw-text-rightward-from-cursor screen, " ^n ", width, 0/fg 0xf/bg
-  draw-text-rightward-from-cursor screen, " next item >  ", width, 0xf/fg, 0/bg
+  draw-text-rightward-from-cursor screen, " item >  ", width, 0xf/fg, 0/bg
   draw-text-rightward-from-cursor screen, " ^f ", width, 0/fg 0xf/bg
-  draw-text-rightward-from-cursor screen, " next page >>  ", width, 0xf/fg, 0/bg
+  draw-text-rightward-from-cursor screen, " page >>  ", width, 0xf/fg, 0/bg
 }
 
 fn render-channels-menu screen: (addr screen), _env: (addr environment) {
@@ -277,7 +277,7 @@ fn render-channels-menu screen: (addr screen), _env: (addr environment) {
   draw-text-rightward-from-cursor screen, " / ", width, 0/fg 0xf/bg
   draw-text-rightward-from-cursor screen, " search  ", width, 0xf/fg, 0/bg
   draw-text-rightward-from-cursor screen, " Tab ", width, 0/fg 0xf/bg
-  draw-text-rightward-from-cursor screen, " to items  ", width, 0xf/fg, 0/bg
+  draw-text-rightward-from-cursor screen, " go to items  ", width, 0xf/fg, 0/bg
   draw-text-rightward-from-cursor screen, " Enter ", width, 0/fg 0xf/bg
   draw-text-rightward-from-cursor screen, " select  ", width, 0xf/fg, 0/bg
 }