Skip to content

Commit

Permalink
app: Fix translator-credits
Browse files Browse the repository at this point in the history
Empty strings cannot be translatable
  • Loading branch information
yakushabb committed Apr 22, 2024
1 parent e9f77ca commit 1dd93ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/window.vala
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ namespace Colorway {

public void action_about () {
// TRANSLATORS: 'Name <email@domain.com>' or 'Name https://website.example'
string translators = (_(""));
string translators = (_("translator-credits"));

var about = new He.AboutWindow (
this,
Expand Down

0 comments on commit 1dd93ce

Please sign in to comment.