From fd5df871ed6423eaf53ad128da32dc070f255c85 Mon Sep 17 00:00:00 2001 From: jules Date: Wed, 23 Apr 2014 16:32:18 +0100 Subject: [PATCH] Fixed a couple of typos in file chooser messages. --- .../juce_gui_basics/filebrowser/juce_FileChooserDialogBox.cpp | 2 +- modules/juce_gui_extra/documents/juce_FileBasedDocument.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/juce_gui_basics/filebrowser/juce_FileChooserDialogBox.cpp b/modules/juce_gui_basics/filebrowser/juce_FileChooserDialogBox.cpp index adf1a74750..29618a367a 100644 --- a/modules/juce_gui_basics/filebrowser/juce_FileChooserDialogBox.cpp +++ b/modules/juce_gui_basics/filebrowser/juce_FileChooserDialogBox.cpp @@ -203,7 +203,7 @@ void FileChooserDialogBox::okButtonPressed() { AlertWindow::showOkCancelBox (AlertWindow::WarningIcon, TRANS("File already exists"), - TRANS("There's already a file called: FLMN") + TRANS("There's already a file called: FLNM") .replace ("FLNM", content->chooserComponent.getSelectedFile(0).getFullPathName()) + "\n\n" + TRANS("Are you sure you want to overwrite it?"), diff --git a/modules/juce_gui_extra/documents/juce_FileBasedDocument.cpp b/modules/juce_gui_extra/documents/juce_FileBasedDocument.cpp index 1e9d8697d5..a9c26be84e 100644 --- a/modules/juce_gui_extra/documents/juce_FileBasedDocument.cpp +++ b/modules/juce_gui_extra/documents/juce_FileBasedDocument.cpp @@ -119,7 +119,7 @@ static bool askToOverwriteFile (const File& newFile) { return AlertWindow::showOkCancelBox (AlertWindow::WarningIcon, TRANS("File already exists"), - TRANS("There's already a file called: FLMN") + TRANS("There's already a file called: FLNM") .replace ("FLNM", newFile.getFullPathName()) + "\n\n" + TRANS("Are you sure you want to overwrite it?"),