Skip to content

Commit

Permalink
Fix #689 - Hangman game. Untranslated string.
Browse files Browse the repository at this point in the history
  • Loading branch information
ignaciogros committed May 29, 2023
1 parent cf0f860 commit e4325e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ intef-exe (3:2.8.1) lucid; urgency=medium
- Fixed: DL lists. 'Show/Hide all' links removed and presentation revision. (#683)
- Fixed: TinyMCE. Wrong font-family in tables. (#680)
- Fixed: Avoid 'No clientHandleId in request' exception when reloading the main area. (#685)
- Fixed: Hangman game. Untranslated string. (#689)

* Pablo Amaya
- AppImage source files for Debian package creation. Helped by Esteban Navas (@algodelinux)
Expand Down
1 change: 1 addition & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ intef-exe (3:2.8.1) lucid; urgency=medium
- Fixed: DL lists. 'Show/Hide all' links removed and presentation revision. (#683)
- Fixed: TinyMCE. Wrong font-family in tables. (#680)
- Fixed: Avoid 'No clientHandleId in request' exception when reloading the main area. (#685)
- Fixed: Hangman game. Untranslated string. (#689)

* Pablo Amaya
- AppImage source files for Debian package creation. Helped by Esteban Navas (@algodelinux)
Expand Down
2 changes: 1 addition & 1 deletion exe/webui/scripts/exe_games/exe_games.js
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ var hangMan = {
},
doClean : function(id) {
var s = document.getElementById("start-"+id);
s.value = "Jugar";
s.value = $exe_i18n.exeGames.play;
s.style.display = "inline";
$("#hangManResults"+id).hide();
$("#hangManWrapper"+id).hide();
Expand Down

0 comments on commit e4325e3

Please sign in to comment.