diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-04-14 18:51:46 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-04-14 18:51:46 +0200 |
commit | 9e7cd144725a270e0460b21747619f447ca87684 (patch) | |
tree | 77916a766425839c1a2466afd2eb1244371b6b9b /src/AppWindow.vala | |
parent | 3253d99365813f2d2ffd05e10cbb8c11f53d746e (diff) |
New upstream version 0.26.1upstream/0.26.1
Diffstat (limited to 'src/AppWindow.vala')
-rw-r--r-- | src/AppWindow.vala | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/AppWindow.vala b/src/AppWindow.vala index a151c9a..bfdfcaf 100644 --- a/src/AppWindow.vala +++ b/src/AppWindow.vala @@ -592,7 +592,8 @@ public abstract class AppWindow : PageWindow { protected void on_about() { const string[] artists = { "Aachen logo under public domain license https://www.flickr.com/photos/30784528@N04/10860988196/", null }; Gtk.show_about_dialog(this, - "version", Resources.APP_VERSION + " \u2013 \"Aachen\"", + // translators: %s will be replaced by application version + "version", _("%s \u2013 “Aachen”".printf(Resources.APP_VERSION)), "comments", get_app_role(), "copyright", Resources.COPYRIGHT, "website", Resources.HOME_URL, |