Changeset 61
- Timestamp:
- Sep 26, 2014, 12:36:53 AM (10 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Languages/xtactics.cs.po
r59 r61 90 90 #: tformmain.astatusbarvisible.caption 91 91 msgid "Statusbar visible" 92 msgstr " "92 msgstr "Viditelná stavová lišta" 93 93 94 94 #: tformmain.atoolbarbigicons.caption … … 98 98 #: tformmain.atoolbarvisible.caption 99 99 msgid "Toolbar visible" 100 msgstr " "100 msgstr "Viditelný nástrojový panel" 101 101 102 102 #: tformmain.azoomall.caption … … 192 192 #: tformmove.label3.caption 193 193 msgid "Win probability:" 194 msgstr " "194 msgstr "Pravděpodobnost vítězství:" 195 195 196 196 #: tformmove.labelwinprobability.caption 197 197 msgid " " 198 msgstr " "198 msgstr " " 199 199 200 200 #: tformnew.aplayeradd.caption … … 355 355 msgstr "Jazyk:" 356 356 357 #: ucore.sendgame 358 msgid "End game?" 359 msgstr "Ukončit hru?" 360 361 #: ucore.sendgamequestion 362 msgid "Do you want to end current game?" 363 msgstr "Chcete ukončit aktuální hru?" 364 357 365 #: ucore.splayerwins 358 366 msgctxt "ucore.splayerwins" … … 471 479 msgid "Unfinished battle" 472 480 msgstr "Neukončená bitva" 473 -
trunk/Languages/xtactics.po
r59 r61 343 343 msgstr "" 344 344 345 #: ucore.sendgame 346 msgid "End game?" 347 msgstr "" 348 349 #: ucore.sendgamequestion 350 msgid "Do you want to end current game?" 351 msgstr "" 352 345 353 #: ucore.splayerwins 346 354 msgctxt "ucore.splayerwins" -
trunk/UCore.pas
r60 r61 72 72 resourcestring 73 73 SPlayerWins = 'Player %s wins'; 74 SEndGame = 'End game?'; 75 SEndGameQuestion = 'Do you want to end current game?'; 74 76 75 77 … … 122 124 procedure TCore.AGameEndExecute(Sender: TObject); 123 125 begin 124 Game.Running := False; 125 FormMain.Redraw; 126 UpdateActions; 126 if MessageDlg(SEndGame, SEndGameQuestion, mtConfirmation, mbYesNo, 0) = mrYes then begin 127 Game.Running := False; 128 FormMain.Redraw; 129 UpdateActions; 130 end; 127 131 end; 128 132
Note:
See TracChangeset
for help on using the changeset viewer.