1
0
Fork 0
mirror of synced 2024-04-27 17:22:13 +12:00

Improve English for "Ask in future" button (#261)

This commit is contained in:
Dan Dascalescu 2021-02-19 22:56:23 -10:00 committed by GitHub
parent 2e7c5c2dcb
commit c035514a0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,7 +31,7 @@ pub fn connect_button_delete(gui_data: &GuiData) {
if check_button_settings_confirm_deletion.get_active() {
let confirmation_dialog_delete = gtk::Dialog::with_buttons(Some("Delete confirmation"), Some(&window_main), gtk::DialogFlags::MODAL, &[("Ok", gtk::ResponseType::Ok), ("Close", gtk::ResponseType::Cancel)]);
let label: gtk::Label = gtk::Label::new(Some("Are you sure that you want to delete files?"));
let check_button: gtk::CheckButton = gtk::CheckButton::with_label("Ask in future");
let check_button: gtk::CheckButton = gtk::CheckButton::with_label("Ask next time");
check_button.set_active(true);
for widgets in confirmation_dialog_delete.get_children() {