diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-07-23 19:33:10 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-07-23 19:33:10 +0000 |
commit | 3695aa1b4890d798acd1948884e7f296e523c464 (patch) | |
tree | 93c4a93a8b4cadbff76cd99dceeb2f70231e1df6 /unicode/src/menu | |
parent | b748a9db4fdb9777ecb1e123ef4ff2262b7a84fc (diff) | |
download | usdx-3695aa1b4890d798acd1948884e7f296e523c464.tar.gz usdx-3695aa1b4890d798acd1948884e7f296e523c464.tar.xz usdx-3695aa1b4890d798acd1948884e7f296e523c464.zip |
- Translations added
- Info popup added
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1895 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'unicode/src/menu')
-rw-r--r-- | unicode/src/menu/UDisplay.pas | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/unicode/src/menu/UDisplay.pas b/unicode/src/menu/UDisplay.pas index e8bcecfb..6f29d2e1 100644 --- a/unicode/src/menu/UDisplay.pas +++ b/unicode/src/menu/UDisplay.pas @@ -124,6 +124,7 @@ uses UMain, UTexture, UTime, + ULanguage, UPathUtils; constructor TDisplay.Create; @@ -220,6 +221,8 @@ begin //popup mod if (ScreenPopupError <> nil) and ScreenPopupError.Visible then ScreenPopupError.Draw + else if (ScreenPopupInfo <> nil) and ScreenPopupInfo.Visible then + ScreenPopupInfo.Draw else if (ScreenPopupCheck <> nil) and ScreenPopupCheck.Visible then ScreenPopupCheck.Draw; @@ -545,9 +548,9 @@ begin // Success := WriteBMPImage(FileName, Surface); Success := WritePNGImage(FileName, Surface); if Success then - ScreenPopupError.ShowPopup('Screenshot saved: ' + FileName.GetName.ToUTF8()) + ScreenPopupInfo.ShowPopup(Format(Language.Translate('SCREENSHOT_SAVED'), [FileName.GetName.ToUTF8()])) else - ScreenPopupError.ShowPopup('Screenshot failed'); + ScreenPopupError.ShowPopup(Language.Translate('SCREENSHOT_FAILED')); SDL_FreeSurface(Surface); FreeMem(ScreenData); |