Skip to content

Commit

Permalink
Unify quote style (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
meisenzahl committed Apr 10, 2021
1 parent 313cb24 commit 75de80d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Views/SuccessView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public class Sideload.SuccessView : AbstractView {

var app = ((Gtk.Application) GLib.Application.get_default ());
var file = ((Sideload.MainWindow) app.active_window).file;
var trash_check = new Gtk.CheckButton.with_label (_("Move \"%s\" to Trash").printf (file.file.get_basename ()));
var trash_check = new Gtk.CheckButton.with_label (_("Move %s to Trash").printf (file.file.get_basename ()));
content_area.add (trash_check);

var settings = new Settings ("io.elementary.sideload");
Expand Down

0 comments on commit 75de80d

Please sign in to comment.