mirror of
https://github.com/processing/processing4.git
synced 2026-02-14 02:45:36 +01:00
Merge pull request #2745 from federicobond/fix-okay
Change prompt.okay to prompt.ok
This commit is contained in:
@@ -1103,7 +1103,7 @@ public class Sketch {
|
||||
|
||||
// check whether this file already exists
|
||||
if (destFile.exists()) {
|
||||
Object[] options = { Language.text("prompt.okay"), Language.text("prompt.cancel") };
|
||||
Object[] options = { Language.text("prompt.ok"), Language.text("prompt.cancel") };
|
||||
String prompt = "Replace the existing version of " + filename + "?";
|
||||
int result = JOptionPane.showOptionDialog(editor,
|
||||
prompt,
|
||||
|
||||
Reference in New Issue
Block a user