/usr/share/perl5/Lire/UI/CommandWidget.pm is in lire 2:2.1.1-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | package Lire::UI::CommandWidget;
use strict;
use base qw/ Lire::UI::ExecutableWidget /;
use Locale::TextDomain 'lire';
sub invalid_label_str {
return __( 'Invalid command' );
}
sub browser_title_str {
return __( 'Select a Command');
}
1;
|