diff options
author | Thierry Vignaud <tv@mandriva.org> | 2010-02-03 17:16:04 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2010-02-03 17:16:04 +0000 |
commit | 488e4fa23f69878d62ad154eac9187586fc1f9a4 (patch) | |
tree | 08cf6bdbd641b2468520a6a7d3131526123b5203 | |
parent | 30cf8c96b3047bbc07229d104f84cc60b28337a6 (diff) | |
download | mgaonline-488e4fa23f69878d62ad154eac9187586fc1f9a4.tar mgaonline-488e4fa23f69878d62ad154eac9187586fc1f9a4.tar.gz mgaonline-488e4fa23f69878d62ad154eac9187586fc1f9a4.tar.bz2 mgaonline-488e4fa23f69878d62ad154eac9187586fc1f9a4.tar.xz mgaonline-488e4fa23f69878d62ad154eac9187586fc1f9a4.zip |
(no_more_supported_choice) fix missing %s in a string (spot by bedi)
-rwxr-xr-x | mdkapplet | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -516,7 +516,10 @@ sub no_more_supported_choice() { text => get_obsolete_message() . "\n", @common), if_($extended_maintenance_url, $b1 = gtknew('RadioButton', - text => N("Purchase a maintenance extension for this version (%s) and keep it running until.", $product_id->{version}), + text => N("Purchase a maintenance extension for this version (%s) and keep it running until %s.", + $product_id->{version}, + iso8601_date_to_locale($extended_maintenance_end)), + toggled => sub { ($choice, $warn_me) = ('extended', undef) if $_[0]->get_active; }, |