]> git.saurik.com Git - wxWidgets.git/commitdiff
Applied patch [ 791847 ] Missing translation in filedlg.cpp
authorJulian Smart <julian@anthemion.co.uk>
Thu, 11 Sep 2003 09:25:57 +0000 (09:25 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Thu, 11 Sep 2003 09:25:57 +0000 (09:25 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23495 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

locale/de.po
src/msw/filedlg.cpp

index fd658cd85b8cc4bdcedb1ef7009eb097c4998d23..3dcfcd86c382c6ca442b0db7937f391694dc7216 100644 (file)
@@ -1571,6 +1571,11 @@ msgid "File '%s' already exists.\n"
 msgstr "Datei '%s' existiert bereits.\n"
 "Möchten Sie sie wirklich überschreiben?"
 
+#: ../src/msw/filedlg.cpp:373
+#, c-format
+msgid "Save File As"
+msgstr "Datei speichern unter"
+
 #: ../src/common/textcmn.cpp:158
 msgid "File couldn't be loaded."
 msgstr "Datei konnte nicht geladen werden."
index 52ea32407628d1a54aa58f6a01f78fbeae6f30dd..eb513c4001031f474c90f96922fcb95d22d38730 100644 (file)
@@ -370,7 +370,7 @@ int wxFileDialog::ShowModal()
              {
              wxString messageText;
              messageText.Printf(_("File '%s' already exists.\nDo you want to replace it?"), fileNameBuffer);
-             if ( wxMessageBox(messageText, wxT("Save File As"), wxYES_NO | wxICON_EXCLAMATION  ) != wxYES )
+             if ( wxMessageBox(messageText, _("Save File As"), wxYES_NO | wxICON_EXCLAMATION    ) != wxYES )
              {
                  success = FALSE;
              }