diff --git a/data/images/buttons/bluecurve/color.png b/data/images/buttons/bluecurve/color.png new file mode 100644 index 000000000..e5d1b82b5 Binary files /dev/null and b/data/images/buttons/bluecurve/color.png differ diff --git a/data/images/buttons/bluecurve/help.png b/data/images/buttons/bluecurve/help.png new file mode 100644 index 000000000..945e58b18 Binary files /dev/null and b/data/images/buttons/bluecurve/help.png differ diff --git a/data/images/buttons/bluecurve/next.png b/data/images/buttons/bluecurve/next.png new file mode 100644 index 000000000..0acba7e49 Binary files /dev/null and b/data/images/buttons/bluecurve/next.png differ diff --git a/data/images/buttons/bluecurve/save.png b/data/images/buttons/bluecurve/save.png new file mode 100644 index 000000000..62b2a51dc Binary files /dev/null and b/data/images/buttons/bluecurve/save.png differ diff --git a/data/images/buttons/bluecurve/statistics.png b/data/images/buttons/bluecurve/statistics.png new file mode 100644 index 000000000..bfb68b589 Binary files /dev/null and b/data/images/buttons/bluecurve/statistics.png differ diff --git a/data/images/buttons/remix/color.png b/data/images/buttons/remix/color.png new file mode 100644 index 000000000..0023aeab4 Binary files /dev/null and b/data/images/buttons/remix/color.png differ diff --git a/data/images/buttons/remix/help.png b/data/images/buttons/remix/help.png new file mode 100644 index 000000000..d9bcab26c Binary files /dev/null and b/data/images/buttons/remix/help.png differ diff --git a/data/images/buttons/remix/next.png b/data/images/buttons/remix/next.png new file mode 100644 index 000000000..9977c70c0 Binary files /dev/null and b/data/images/buttons/remix/next.png differ diff --git a/data/images/buttons/remix/save.png b/data/images/buttons/remix/save.png new file mode 100644 index 000000000..32753becf Binary files /dev/null and b/data/images/buttons/remix/save.png differ diff --git a/data/images/buttons/remix/statistics.png b/data/images/buttons/remix/statistics.png new file mode 100644 index 000000000..f980ec302 Binary files /dev/null and b/data/images/buttons/remix/statistics.png differ diff --git a/pysollib/app.py b/pysollib/app.py index aa64d3bdd..c8cfb6f20 100644 --- a/pysollib/app.py +++ b/pysollib/app.py @@ -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)