Skip to content

Commit

Permalink
translate: fix gettext string for other languages
Browse files Browse the repository at this point in the history
  • Loading branch information
Rirusha committed Aug 30, 2024
1 parent bd0e6d7 commit 343ef1b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/widgets/cache-indicator/job-info-badge.vala
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,11 @@ namespace Cassette {

void update_info (int saved, int total, int now) {
// Translators: n track from n tracks saved
progress_label.label = _("%d / %d saved%s").printf (
progress_label.label = ngettext (
"%d / %d saved%s",
"%d / %d saved%s",
saved
).printf (
saved,
total,
(now != 0? ngettext (
Expand Down

0 comments on commit 343ef1b

Please sign in to comment.