From 62c1ac3e96032e355b0f95f572b442e6ebb16132 Mon Sep 17 00:00:00 2001 From: abakkk Date: Mon, 1 Apr 2019 22:09:33 +0200 Subject: [PATCH] '%s' -> '%d' --- locale/draw-on-your-screen.pot | 2 +- prefs.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/locale/draw-on-your-screen.pot b/locale/draw-on-your-screen.pot index 7082c32..4e519b4 100644 --- a/locale/draw-on-your-screen.pot +++ b/locale/draw-on-your-screen.pot @@ -251,7 +251,7 @@ msgstr "" #msgid "Draw On You Screen" #msgstr "" -msgid "Version %s" +msgid "Version %d" msgstr "" msgid "Start drawing with Super+Alt+D and save your beautiful work by taking a screenshot" diff --git a/prefs.js b/prefs.js index e86b761..222dc3c 100644 --- a/prefs.js +++ b/prefs.js @@ -135,7 +135,7 @@ var AboutPage = new GObject.Class({ this.add(vbox); let name = " " + _(Metadata.name) + ""; - let version = _("Version %s").format(Metadata.version.toString()); + let version = _("Version %d").format(Metadata.version); let description = _(Metadata.description); let link = "" + Metadata.url + ""; let licenceName = _GTK("GNU General Public License, version 2 or later");