瀏覽代碼

ImageViewer: Kindly ask the user if they want to delete a file

Musab Kılıç 3 年之前
父節點
當前提交
7b45653331
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Userland/Applications/ImageViewer/main.cpp

+ 1 - 1
Userland/Applications/ImageViewer/main.cpp

@@ -128,7 +128,7 @@ int main(int argc, char** argv)
                 return;
 
             auto msgbox_result = GUI::MessageBox::show(window,
-                String::formatted("Really delete {}?", path),
+                String::formatted("Are you sure you want to delete {}?", path),
                 "Confirm deletion",
                 GUI::MessageBox::Type::Warning,
                 GUI::MessageBox::InputType::OKCancel);