Skip to content

Commit

Permalink
chore: gettext
Browse files Browse the repository at this point in the history
  • Loading branch information
anig1scur committed Oct 24, 2024
1 parent d3fc6f0 commit ee60b6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/window.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@ export class Window extends Adw.ApplicationWindow {
this,
"title",
GObject.BindingFlags.SYNC_CREATE,
(_, title) => {
(binding, title) => {
if (!title) {
return [true, "Untitled Note"];
return [true, _("Sticky Note")];
}
return [true, title];
},
Expand Down

0 comments on commit ee60b6f

Please sign in to comment.