Skip to content

Commit

Permalink
Fix incorrect header and senctence capitalization (#963)
Browse files Browse the repository at this point in the history
  • Loading branch information
rdbende authored Sep 22, 2024
1 parent e5190e1 commit b4acf18
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cozy/ui/file_not_found_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def __init__(self, chapter: Chapter):
self.missing_chapter = chapter

super().__init__(
heading=_("File Not Found"),
heading=_("File not Found"),
body=_("This file could not be found. Do you want to locate it manually?"),
default_response="locate",
close_response="cancel",
Expand Down
8 changes: 4 additions & 4 deletions data/ui/main_window.blp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Adw.ApplicationWindow app_window {

Adw.StatusPage {
icon-name: 'library-symbolic';
title: _("Drop Audio Books Here to Add Them to Your Library");
title: _("Drop audiobooks here to add them to your library");

styles [
"drag-overlay-status-page",
Expand Down Expand Up @@ -178,7 +178,7 @@ Adw.ApplicationWindow app_window {

child: Adw.StatusPage {
icon-name: 'library-symbolic';
title: _("No Recent Books Yet");
title: _("No Recent Books yet");
description: _("Explore your library by switching to the Author or Reader view");
};
}
Expand Down Expand Up @@ -235,8 +235,8 @@ Adw.ApplicationWindow app_window {

content: Adw.StatusPage welcome_status_page {
icon-name: 'com.github.geigi.cozy';
title: _("Let's get cozy");
description: _("Select a Folder, or Drag Audiobooks Here to Add Them to Your Library");
title: _("Let's Get Cozy");
description: _("Select a folder, or drop audiobooks here to add them to your library");
};
};
}
Expand Down

0 comments on commit b4acf18

Please sign in to comment.