summaryrefslogtreecommitdiff
path: root/locale/en/rpmorphan_trans.pl
blob: f03300ddbdff2b866f43d8e896186b6e940653ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/usr/bin/perl 
###############################################################################
#   rpmorphan-curses-lib.pl
#
#    Copyright (C) 2006 by Eric Gerbier
#    Bug reports to: gerbier@users.sourceforge.net
#    $Id: rpmorphan-curses-lib.pl 170 2010-01-14 12:13:48Z gerbier $
#
#    This program is free software; you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation; either version 2 of the License, or
#    (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
###############################################################################
use strict;
use warnings;

use English '-no_match_vars';

use vars qw( %TRANS );

$TRANS{'help'} = <<'EOF';
rpmorphan will help you to clean unused package
it will show you orphaned packages (without any rpm dependencies to them)

buttons are :
-------------
remove : remove selected package(s) 
info 	: show informations about current package
select all : select all packages (dangerous)
unselect all : unselect all packages
log    : display list of suppressed packages
help   : this help screen
quit   : exit rpmorphan

mouse use :
-----------
- left click to select/unselect a package
- right click to display rpm informations

hotkeys :
---------
x/r : remove package
i : show package information
S : show package summary in a popup
s : select all
u : unselect all
l : display log
h : help
q : quit

status window
-------------
total : total number of packages (filtered by guess filter and exclude list)
orphans : number of packages resolved as orphans
selected : number of selected orphans

notes
-----
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

website
-------
http://rpmorphan.sourceforge.net
EOF

###############################################################################
1;