Skip to content

Commit

Permalink
Add possible icons for remaining buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
joeraz committed Jul 15, 2024
1 parent 885b292 commit 3a35667
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 0 deletions.
Binary file added data/images/buttons/bluecurve/color.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/images/buttons/bluecurve/help.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/images/buttons/bluecurve/next.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/images/buttons/bluecurve/save.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/images/buttons/bluecurve/statistics.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/images/buttons/remix/color.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/images/buttons/remix/help.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/images/buttons/remix/next.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/images/buttons/remix/save.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/images/buttons/remix/statistics.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions pysollib/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -531,12 +531,29 @@ def loadImages1(self):
for n, f in (
(_('&OK'), 'ok'),
(_('&Select'), 'ok'),
(_('&Nice'), 'ok'),
(_('&Enjoy'), 'ok'),
(_("&Great"), 'ok'),
(_("&Cool"), 'ok'),
(_("&Yeah"), 'ok'),
(_("&Wow"), 'ok'),
(_("&Oh well"), 'ok'),
(_("&That's life"), 'ok'),
(_("&Hmm"), 'ok'),
(_('&Cancel'), 'cancel'),
(_('&Close'), 'cancel'),
(_('&New game'), 'new'),
(_('&Back to game'), 'back'),
(_('&Reset...'), 'reset'),
(_('&Restart'), 'reset'),
(_('&Rules'), 'help'),
(_('&Info...'), 'help'),
(_('&Credits'), 'help'),
(_('&Next number'), 'next'),
(_('&Play this game'), 'next'),
(_('&Solid color...'), 'color'),
(_('&Save to file'), 'save'),
(_('&Statistics...'), 'statistics'),
):
fn = self.dataloader.findImage(f, dirname)
im = loadImage(fn)
Expand Down

0 comments on commit 3a35667

Please sign in to comment.