]> git.sur5r.net Git - i3/i3lock/commitdiff
Labels are now replaced with capital letters in the beginning 219/head
authorEdward P <edwardp@mirroredstudios.tk>
Mon, 14 Jan 2019 22:11:19 +0000 (00:11 +0200)
committerGitHub <noreply@github.com>
Mon, 14 Jan 2019 22:11:19 +0000 (00:11 +0200)
unlock_indicator.c

index a6a603f13c8cf0d7beb72028b96927002a6943e2..8ff8173c333334d03291bd6416a1b431c41ab3dc 100644 (file)
@@ -207,20 +207,20 @@ xcb_pixmap_t draw_image(uint32_t *resolution) {
         cairo_set_font_size(ctx, 28.0);
         switch (auth_state) {
             case STATE_AUTH_VERIFY:
-                text = "verifying…";
+                text = "Verifying…";
                 break;
             case STATE_AUTH_LOCK:
-                text = "locking…";
+                text = "Locking…";
                 break;
             case STATE_AUTH_WRONG:
-                text = "wrong!";
+                text = "Wrong!";
                 break;
             case STATE_I3LOCK_LOCK_FAILED:
-                text = "lock failed!";
+                text = "Lock failed!";
                 break;
             default:
                 if (unlock_state == STATE_NOTHING_TO_DELETE) {
-                    text = "no input";
+                    text = "No input";
                 }
                 if (show_failed_attempts && failed_attempts > 0) {
                     if (failed_attempts > 999) {