Skip to content

Commit

Permalink
fix #1461
Browse files Browse the repository at this point in the history
  • Loading branch information
alainm23 committed Oct 14, 2024
1 parent 7288ac4 commit 4ce0da8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Views/Filter.vala
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public class Views.Filter : Adw.Bin {
var listbox_placeholder = new Adw.StatusPage ();
listbox_placeholder.icon_name = "check-round-outline-symbolic";
listbox_placeholder.title = _("Add Some Tasks");
listbox_placeholder.description = _("Press a to create a new task");
listbox_placeholder.description = _("Press 'a' to create a new task");

listbox_stack = new Gtk.Stack () {
hexpand = true,
Expand Down
2 changes: 1 addition & 1 deletion src/Views/Label/Label.vala
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public class Views.Label : Adw.Bin {
var listbox_placeholder = new Adw.StatusPage ();
listbox_placeholder.icon_name = "check-round-outline-symbolic";
listbox_placeholder.title = _("Add Some Tasks");
listbox_placeholder.description = _("Press a to create a new task");
listbox_placeholder.description = _("Press 'a' to create a new task");

listbox_stack = new Gtk.Stack () {
vexpand = true,
Expand Down
2 changes: 1 addition & 1 deletion src/Views/Project/List.vala
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public class Views.List : Adw.Bin {
var listbox_placeholder = new Adw.StatusPage () {
icon_name = "check-round-outline-symbolic",
title = _("Add Some Tasks"),
description = _("Press a to create a new task")
description = _("Press 'a' to create a new task")
};

listbox_placeholder_stack = new Gtk.Stack () {
Expand Down
2 changes: 1 addition & 1 deletion src/Views/Today.vala
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ public class Views.Today : Adw.Bin {
var listbox_placeholder = new Adw.StatusPage ();
listbox_placeholder.icon_name = "check-round-outline-symbolic";
listbox_placeholder.title = _("Add Some Tasks");
listbox_placeholder.description = _("Press a to create a new task");
listbox_placeholder.description = _("Press 'a' to create a new task");

listbox_placeholder_stack = new Gtk.Stack () {
vexpand = true,
Expand Down

0 comments on commit 4ce0da8

Please sign in to comment.