Skip to content

Commit 4ce0da8

Browse files
committed
fix #1461
1 parent 7288ac4 commit 4ce0da8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/Views/Filter.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public class Views.Filter : Adw.Bin {
8181
var listbox_placeholder = new Adw.StatusPage ();
8282
listbox_placeholder.icon_name = "check-round-outline-symbolic";
8383
listbox_placeholder.title = _("Add Some Tasks");
84-
listbox_placeholder.description = _("Press a to create a new task");
84+
listbox_placeholder.description = _("Press 'a' to create a new task");
8585

8686
listbox_stack = new Gtk.Stack () {
8787
hexpand = true,

src/Views/Label/Label.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public class Views.Label : Adw.Bin {
6767
var listbox_placeholder = new Adw.StatusPage ();
6868
listbox_placeholder.icon_name = "check-round-outline-symbolic";
6969
listbox_placeholder.title = _("Add Some Tasks");
70-
listbox_placeholder.description = _("Press a to create a new task");
70+
listbox_placeholder.description = _("Press 'a' to create a new task");
7171

7272
listbox_stack = new Gtk.Stack () {
7373
vexpand = true,

src/Views/Project/List.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public class Views.List : Adw.Bin {
8989
var listbox_placeholder = new Adw.StatusPage () {
9090
icon_name = "check-round-outline-symbolic",
9191
title = _("Add Some Tasks"),
92-
description = _("Press a to create a new task")
92+
description = _("Press 'a' to create a new task")
9393
};
9494

9595
listbox_placeholder_stack = new Gtk.Stack () {

src/Views/Today.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ public class Views.Today : Adw.Bin {
220220
var listbox_placeholder = new Adw.StatusPage ();
221221
listbox_placeholder.icon_name = "check-round-outline-symbolic";
222222
listbox_placeholder.title = _("Add Some Tasks");
223-
listbox_placeholder.description = _("Press a to create a new task");
223+
listbox_placeholder.description = _("Press 'a' to create a new task");
224224

225225
listbox_placeholder_stack = new Gtk.Stack () {
226226
vexpand = true,

0 commit comments

Comments
 (0)