From a0fcb0df9bfb4ebda975fdf1302a7e80865b632d Mon Sep 17 00:00:00 2001 From: dave-theunsub Date: Tue, 20 Sep 2016 16:56:50 -0500 Subject: [PATCH] Begin 5.23 - add missing translation string for About dialog --- CHANGES | 4 ++++ lib/App.pm | 6 ++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 06e648a..7ef8729 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,9 @@ CHANGELOG for ClamTk: +5.23 - XXX XX 2016 +------------------ + * Add missing language string from About dialog + 5.22 - Sep 17 2016 ------------------ * Directories not scanning if users home includes diff --git a/lib/App.pm b/lib/App.pm index 54ee34d..73086c4 100644 --- a/lib/App.pm +++ b/lib/App.pm @@ -1,6 +1,6 @@ # ClamTk, copyright (C) 2004-2016 Dave M # -# This file is part of ClamTk (https://github.com/dave-theunsub/clamtk/wiki). +# This file is part of ClamTk (https://dave-theunsub.github.io/clamtk). # # ClamTk is free software; you can redistribute it and/or modify it # under the terms of either: @@ -24,7 +24,7 @@ use Encode 'decode'; sub get_TK_version { # Stick with %.2f format - 4.50 vice 4.5 - return '5.22'; + return '5.23'; } sub get_path { @@ -455,6 +455,8 @@ sub translate { $a = _( 'Advanced' ); $a = _( 'Scan a file' ); $a = _( 'Scan a directory' ); + # From the About dialog + $a = _( 'ClamTk is a graphical front-end for Clam Antivirus' ); return $a; }