Skip to content

Commit

Permalink
PartitionMenu: Correct gettext format (#829)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryonakano authored Oct 7, 2024
1 parent 15e2a28 commit 4c179cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Widgets/PartitionMenu.vala
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public class Installer.PartitionMenu : Gtk.Popover {
};
use_as.append_text (_("Root (/)"));
use_as.append_text (_("Home (/home)"));
use_as.append_text (_("Boot (%s)".printf (boot_partition)));
use_as.append_text (_("Boot (%s)").printf (boot_partition));
use_as.append_text (_("Swap"));
use_as.append_text (_("Custom"));
use_as.active = 0;
Expand Down

0 comments on commit 4c179cf

Please sign in to comment.