aboutsummaryrefslogtreecommitdiffstats
path: root/pythoneggs.py
blob: 1627cd2fd792462fc4cea2be3895a0643a0d0ec2 (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright 2010 Per Øyvind Karlsen <peroyvind@mandriva.org>
#
# This program is free software. It may be redistributed and/or modified under
# the terms of the LGPL version 2.1 (or later).
#
# RPM5 python (egg) dependency generator.
#

from getopt import getopt
from os.path import basename, dirname, isdir, sep, splitext
from sys import argv, stdin, version
from pkg_resources import Distribution, FileMetadata, PathMetadata
from distutils.sysconfig import get_python_lib


opts, args = getopt(argv[1:], 'hPRSCOE',
        ['help', 'provides', 'requires', 'suggests', 'conflicts', 'obsoletes', 'extras'])

Provides = False
Requires = False
Suggests = False
Conflicts = False
Obsoletes = False
Extras = False

for o, a in opts:
    if o in ('-h', '--help'):
        print '-h, --help\tPrint help'
        print '-P, --provides\tPrint Provides'
        print '-R, --requires\tPrint Requires'
        print '-S, --suggests\tPrint Suggests'
        print '-C, --conflicts\tPrint Conflicts'
        print '-O, --obsoletes\tPrint Obsoletes (unused)'
        print '-E, --extras\tPrint Extras '
        exit(1)
    elif o in ('-P', '--provides'):
        Provides = True
    elif o in ('-R', '--requires'):
        Requires = True
    elif o in ('-S', '--suggests'):
        Suggests = True
    elif o in ('-C', '--conflicts'):
        Conflicts = True
    elif o in ('-O', '--obsoletes'):
        Obsoletes = True
    elif o in ('-E', '--extras'):
        Extras = True

if Requires:
    py_abi = True
else:
    py_abi = False
py_deps = {}
if args:
    files = args
else:
    files = stdin.readlines()
for f in files:
    f = f.strip()
    lower = f.lower()
    name = 'python(abi)'
    # add dependency based on path, versioned if within versioned python directory
    if py_abi and (lower.endswith('.py') or lower.endswith('.pyc') or lower.endswith('.pyo')):
        if not name in py_deps:
            py_deps[name] = []
        purelib = get_python_lib(standard_lib=1, plat_specific=0).split(version[:3])[0]
        platlib = get_python_lib(standard_lib=1, plat_specific=1).split(version[:3])[0]
        for lib in (purelib, platlib):
            if lib in f:
                spec = ('==',f.split(lib)[1].split(sep)[0])
                if not spec in py_deps[name]:
                    py_deps[name].append(spec)
    # Determine provide, requires, conflicts & suggests based on egg metadata
    if lower.endswith('.egg') or \
            lower.endswith('.egg-info') or \
            lower.endswith('.egg-link'):
        dist_name = basename(f)
        if isdir(f):
            path_item = dirname(f)
            metadata = PathMetadata(path_item, f)
        else:
            path_item = f
            metadata = FileMetadata(f)
        dist = Distribution.from_location(path_item, dist_name, metadata)
        if Provides:
            # If egg metadata says package name is python, we provide python(abi)
            if dist.key == 'python':
                name = 'python(abi)'
                if not name in py_deps:
                    py_deps[name] = []
                py_deps[name].append(('==', dist.py_version))
            name = 'pythonegg(%s)' % dist.key
            if not name in py_deps:
                py_deps[name] = []
            if dist.version:
                spec = ('==', dist.version)
                if not spec in py_deps[name]:
                    py_deps[name].append(spec)
        if Requires or (Suggests and dist.extras):
            name = 'python(abi)'
            # If egg metadata says package name is python, we don't add dependency on python(abi)
            if dist.key == 'python':
                py_abi = False
                if name in py_deps:
                    py_deps.pop(name)
            elif py_abi and dist.py_version:
                if not name in py_deps:
                    py_deps[name] = []
                spec = ('==', dist.py_version)
                if not spec in py_deps[name]:
                    py_deps[name].append(spec)
            deps = dist.requires()
            if Suggests:
                depsextras = dist.requires(extras=dist.extras)
                if not Requires:
                    for dep in reversed(depsextras):
                        if dep in deps:
                            depsextras.remove(dep)
                deps = depsextras
            # add requires/suggests based on egg metadata
            for dep in deps:
                name = 'pythonegg(%s)' % dep.key
                for spec in dep.specs:
                    if spec[0] != '!=':
                        if not name in py_deps:
                            py_deps[name] = []
                        if not spec in py_deps[name]:
                            py_deps[name].append(spec)
                if not dep.specs:
                    py_deps[name] = []
        # Unused, for automatic sub-package generation based on 'extras' from egg metadata
        # TODO: implement in rpm later, or...?
        if Extras:
            deps = dist.requires()
            extras = dist.extras
            print extras
            for extra in extras:
                print '%%package\textras-%s' % extra
                print 'Summary:\t%s extra for %s python egg' % (extra, dist.key)
                print 'Group:\t\tDevelopment/Python'
                depsextras = dist.requires(extras=[extra])
                for dep in reversed(depsextras):
                    if dep in deps:
                        depsextras.remove(dep)
                deps = depsextras
                for dep in deps:
                    for spec in dep.specs:
                        if spec[0] == '!=':
                            print 'Conflicts:\t%s %s %s' % (dep.key, '==', spec[1])
                        else:
                            print 'Requires:\t%s %s %s' % (dep.key, spec[0], spec[1])
                print '%%description\t%s' % extra
                print '%s extra for %s python egg' % (extra, dist.key)
                print '%%files\t\textras-%s\n' % extra
        if Conflicts:
            # Should we really add conflicts for extras?
            # Creating a meta package per extra with suggests on, which has
            # the requires/conflicts in stead might be a better solution...
            for dep in dist.requires(extras=dist.extras):
                name = dep.key
                for spec in dep.specs:
                    if spec[0] == '!=':
                        if not name in py_deps:
                            py_deps[name] = []
                        spec = ('==', spec[1])
                        if not spec in py_deps[name]:
                            py_deps[name].append(spec)
names = py_deps.keys()
names.sort()
for name in names:
    if py_deps[name]:
        # Print out versioned provides, requires, suggests, conflicts
        for spec in py_deps[name]:
            print '%s %s %s' % (name, spec[0], spec[1])
    else:
        # Print out unversioned provides, requires, suggests, conflicts
        print name
8'>898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470
# translation of DrakX-sc.po to Sardu
# Copyright (C) 2005 Free Software Foundation, Inc.
# Antoni Pistis <antonio.pistis@virgilio.it>, 2005.
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX-sc\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2007-09-04 17:16+0200\n"
"PO-Revision-Date: 2005-09-14 11:29+0100\n"
"Last-Translator: Antoni Pistis <antonio.pistis@virgilio.it>\n"
"Language-Team: Sardu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3\n"

#: any.pm:159
#, c-format
msgid "Do you have further supplementary media?"
msgstr ""

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: any.pm:162
#, c-format
msgid ""
"The following media have been found and will be used during install: %s.\n"
"\n"
"\n"
"Do you have a supplementary installation medium to configure?"
msgstr ""

#: any.pm:170
#, c-format
msgid "CD-ROM"
msgstr "CD-ROM"

#: any.pm:171
#, c-format
msgid "Network (HTTP)"
msgstr "Arretza (HTTP)"

#: any.pm:172
#, c-format
msgid "Network (FTP)"
msgstr "Arretza (FTP)"

#: any.pm:173
#, c-format
msgid "Network (NFS)"
msgstr "Arretza (NFS)"

#: any.pm:215
#, c-format
msgid "URL of the mirror?"
msgstr "URL de su sprigu?"

#: any.pm:221
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr ""

#: any.pm:232
#, c-format
msgid ""
"Contacting Mandriva Linux web site to get the list of available mirrors..."
msgstr ""
"Cuntatu su jassu web de Mandriva Linux po tenni sa lista de is sprigus..."

#: any.pm:237
#, fuzzy, c-format
msgid ""
"Failed contacting Mandriva Linux web site to get the list of available "
"mirrors"
msgstr ""
"Cuntatu su jassu web de Mandriva Linux po tenni sa lista de is sprigus..."

#: any.pm:247
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr ""

#: any.pm:277
#, c-format
msgid "NFS setup"
msgstr "Assètiu NFS"

#: any.pm:278
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""

#: any.pm:282
#, c-format
msgid "Hostname missing"
msgstr ""

#: any.pm:283
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""

#: any.pm:287
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr ""

#: any.pm:288
#, c-format
msgid "Directory"
msgstr "Directory"

#: any.pm:310
#, c-format
msgid "Supplementary"
msgstr ""

#: any.pm:345
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr ""

#: any.pm:379
#, c-format
msgid "Looking at packages already installed..."
msgstr "Càstiu is pakitus jai aposentaus..."

#: any.pm:386
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Srèxinu is pakitus ki dui funt po ajorronai..."

#: any.pm:428
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Agatu is pakitus po ajorronai..."

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: any.pm:614
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
"\n"
"\n"
"These servers are activated by default. They do not have any known security\n"
"issues, but some new ones could be found. In that case, you must make sure\n"
"to upgrade as soon as possible.\n"
"\n"
"\n"
"Do you really want to install these servers?\n"
msgstr ""

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: any.pm:637
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
"\n"
"\n"
"Do you really want to remove these packages?\n"
msgstr ""

#: any.pm:1059
#, c-format
msgid "The following disk(s) were renamed:"
msgstr "Apu arrenominau is discus ki sighint:"

#: any.pm:1061
#, c-format
msgid "%s (previously named as %s)"
msgstr "%s (innantis nominau %s)"

#: any.pm:1118
#, c-format
msgid "HTTP"
msgstr "HTTP"

#: any.pm:1118
#, c-format
msgid "FTP"
msgstr "FTP"

#: any.pm:1118
#, c-format
msgid "NFS"
msgstr "NFS"

#: any.pm:1137 steps_interactive.pm:846
#, c-format
msgid "Network"
msgstr "Arretza"

#: any.pm:1141
#, c-format
msgid "Please choose a media"
msgstr "Sçobera unu suportu, po praxeri"

#: any.pm:1157
#, c-format
msgid "File already exists. Overwrite it?"
msgstr "Su file esistit jai. Nci scriu apitzus?"

#: any.pm:1161
#, c-format
msgid "Permission denied"
msgstr "Permissu dennegau"

#: any.pm:1209
#, c-format
msgid "Bad NFS name"
msgstr ""

#: any.pm:1230
#, c-format
msgid "Bad media %s"
msgstr ""

#: any.pm:1272
#, c-format
msgid "Can not make screenshots before partitioning"
msgstr "No fait a fai fotografias innantis de pratzidurai"

#: any.pm:1279
#, c-format
msgid "Screenshots will be available after install in %s"
msgstr "As a podi biri is fotografias apustis de s'aposentada in %s"

#: gtk.pm:136
#, fuzzy, c-format
msgid "Installation"
msgstr "Seu aposentendi"

#: gtk.pm:139 share/meta-task/compssUsers.pl:54
#, c-format
msgid "Configuration"
msgstr "Assètiu"

#: install2.pm:165
#, c-format
msgid "You must also format %s"
msgstr "Depis formatai %s puru"

#: interactive.pm:16
#, c-format
msgid ""
"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
"You can find some information about them at: %s"
msgstr ""
"A cancu parti hardware serbint driver ``proprietàrius''po traballai.\n"
"Podis agatai cancu sceda apitzus a: %s"

#: interactive.pm:22
#, c-format
msgid "Bringing up the network"
msgstr "Alluu s'arretza"

#: interactive.pm:27
#, c-format
msgid "Bringing down the network"
msgstr "Studu s'arretza"

#: media.pm:699 media.pm:710
#, c-format
msgid "Downloading file %s..."
msgstr ""

#: media.pm:804
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""

#: media.pm:857
#, c-format
msgid "Copying in progress"
msgstr "Còpia in cursu"

#: pkgs.pm:33
#, c-format
msgid "must have"
msgstr ""

#: pkgs.pm:34
#, c-format
msgid "important"
msgstr ""

#: pkgs.pm:35
#, c-format
msgid "very nice"
msgstr ""

#: pkgs.pm:36
#, c-format
msgid "nice"
msgstr ""

#: pkgs.pm:37
#, c-format
msgid "maybe"
msgstr ""

#: share/meta-task/compssUsers.pl:23
#, c-format
msgid "Workstation"
msgstr "Workstation"

#: share/meta-task/compssUsers.pl:25
#, c-format
msgid "Office Workstation"
msgstr ""

#: share/meta-task/compssUsers.pl:27
#, c-format
msgid ""
"Office programs: wordprocessors (OpenOffice.org Writer, Kword), spreadsheets "
"(OpenOffice.org Calc, Kspread), PDF viewers, etc"
msgstr ""

#: share/meta-task/compssUsers.pl:28
#, c-format
msgid ""
"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
"gnumeric), pdf viewers, etc"
msgstr ""

#: share/meta-task/compssUsers.pl:33
#, c-format
msgid "Game station"
msgstr ""

#: share/meta-task/compssUsers.pl:34
#, c-format
msgid "Amusement programs: arcade, boards, strategy, etc"
msgstr ""

#: share/meta-task/compssUsers.pl:37
#, c-format
msgid "Multimedia station"
msgstr ""

#: share/meta-task/compssUsers.pl:38
#, c-format
msgid "Sound and video playing/editing programs"
msgstr ""

#: share/meta-task/compssUsers.pl:43
#, c-format
msgid "Internet station"
msgstr ""

#: share/meta-task/compssUsers.pl:44
#, c-format
msgid ""
"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
"Web"
msgstr ""

#: share/meta-task/compssUsers.pl:49
#, c-format
msgid "Network Computer (client)"
msgstr ""

#: share/meta-task/compssUsers.pl:50
#, c-format
msgid "Clients for different protocols including ssh"
msgstr ""

#: share/meta-task/compssUsers.pl:55
#, c-format
msgid "Tools to ease the configuration of your computer"
msgstr ""

#: share/meta-task/compssUsers.pl:59
#, c-format
msgid "Console Tools"
msgstr ""

#: share/meta-task/compssUsers.pl:60
#, c-format
msgid "Editors, shells, file tools, terminals"
msgstr ""

#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:166
#: share/meta-task/compssUsers.pl:168
#, c-format
msgid "Development"
msgstr "Adelantamentu"

#: share/meta-task/compssUsers.pl:65 share/meta-task/compssUsers.pl:169
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr ""

#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:173
#, c-format
msgid "Documentation"
msgstr "Documentadura"

#: share/meta-task/compssUsers.pl:70 share/meta-task/compssUsers.pl:174
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr ""

#: share/meta-task/compssUsers.pl:74 share/meta-task/compssUsers.pl:177
#, c-format
msgid "LSB"
msgstr "LSB"

#: share/meta-task/compssUsers.pl:75 share/meta-task/compssUsers.pl:178
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr ""

#: share/meta-task/compssUsers.pl:84
#, c-format
msgid "Web Server"
msgstr "Server Web"

#: share/meta-task/compssUsers.pl:85
#, c-format
msgid "Apache"
msgstr "Apache"

#: share/meta-task/compssUsers.pl:88
#, c-format
msgid "Groupware"
msgstr "Traballu in Grupu"

#: share/meta-task/compssUsers.pl:89
#, c-format
msgid "Kolab Server"
msgstr "Server Kolab"

#: share/meta-task/compssUsers.pl:92 share/meta-task/compssUsers.pl:133
#, c-format
msgid "Firewall/Router"
msgstr "Firewall/Router"

#: share/meta-task/compssUsers.pl:93 share/meta-task/compssUsers.pl:134
#, c-format
msgid "Internet gateway"
msgstr "Gateway po Internet"

#: share/meta-task/compssUsers.pl:96
#, c-format
msgid "Mail/News"
msgstr "Curreu/Noas"

#: share/meta-task/compssUsers.pl:97
#, c-format
msgid "Postfix mail server, Inn news server"
msgstr "Server de curreu Postfix, server de noas Inn"

#: share/meta-task/compssUsers.pl:100
#, c-format
msgid "Directory Server"
msgstr "Server de Directory"

#: share/meta-task/compssUsers.pl:104
#, c-format
msgid "FTP Server"
msgstr "Server FTP"

#: share/meta-task/compssUsers.pl:105
#, c-format
msgid "ProFTPd"
msgstr "ProFTPd"

#: share/meta-task/compssUsers.pl:108
#, c-format
msgid "DNS/NIS"
msgstr "DNS/NIS"

#: share/meta-task/compssUsers.pl:109
#, c-format
msgid "Domain Name and Network Information Server"
msgstr ""

#: share/meta-task/compssUsers.pl:112
#, c-format
msgid "File and Printer Sharing Server"
msgstr ""

#: share/meta-task/compssUsers.pl:113
#, c-format
msgid "NFS Server, Samba server"
msgstr "Server NFS, server Samba"

#: share/meta-task/compssUsers.pl:116 share/meta-task/compssUsers.pl:129
#, c-format
msgid "Database"
msgstr "Database"

#: share/meta-task/compssUsers.pl:117
#, c-format
msgid "PostgreSQL and MySQL Database Server"
msgstr "Server po Database PostGreSQL e MySQL"

#: share/meta-task/compssUsers.pl:121
#, c-format
msgid "Web/FTP"
msgstr "Web/FTP"

#: share/meta-task/compssUsers.pl:122
#, c-format
msgid "Apache, Pro-ftpd"
msgstr "Apache, Pro-ftpd"

#: share/meta-task/compssUsers.pl:125
#, c-format
msgid "Mail"
msgstr "Curreu"

#: share/meta-task/compssUsers.pl:126
#, c-format
msgid "Postfix mail server"
msgstr "Server de curreu Postfix"

#: share/meta-task/compssUsers.pl:130
#, c-format
msgid "PostgreSQL or MySQL database server"
msgstr "Server po Database PostGreSQL e MySQL"

#: share/meta-task/compssUsers.pl:137
#, c-format
msgid "Network Computer server"
msgstr ""

#: share/meta-task/compssUsers.pl:138
#, c-format
msgid "NFS server, SMB server, Proxy server, ssh server"
msgstr ""

#: share/meta-task/compssUsers.pl:144
#, c-format
msgid "Graphical Environment"
msgstr "Ambienti Gràfigu"

#: share/meta-task/compssUsers.pl:146
#, c-format
msgid "KDE Workstation"
msgstr "KDE Workstation"

#: share/meta-task/compssUsers.pl:147
#, c-format
msgid ""
"The K Desktop Environment, the basic graphical environment with a collection "
"of accompanying tools"
msgstr ""

#: share/meta-task/compssUsers.pl:151
#, c-format
msgid "GNOME Workstation"
msgstr "GNOME Workstation"

#: share/meta-task/compssUsers.pl:152
#, c-format
msgid ""
"A graphical environment with user-friendly set of applications and desktop "
"tools"
msgstr ""

#: share/meta-task/compssUsers.pl:155
#, c-format
msgid "IceWm Desktop"
msgstr "IceWm Desktop"

#: share/meta-task/compssUsers.pl:159
#, c-format
msgid "Other Graphical Desktops"
msgstr "Atras scrianias gràfigas"

#: share/meta-task/compssUsers.pl:160
#, c-format
msgid "Window Maker, Enlightenment, Fvwm, etc"
msgstr "Window Maker, Enlightenment, Fvwm, etc"

#: share/meta-task/compssUsers.pl:183
#, c-format
msgid "Utilities"
msgstr ""

#: share/meta-task/compssUsers.pl:185 share/meta-task/compssUsers.pl:186
#, c-format
msgid "SSH Server"
msgstr "Server SSH"

#: share/meta-task/compssUsers.pl:190
#, c-format
msgid "Webmin"
msgstr "Webmin"

#: share/meta-task/compssUsers.pl:191
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr ""

#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Network Utilities/Monitoring"
msgstr ""

#: share/meta-task/compssUsers.pl:196
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""

#: share/meta-task/compssUsers.pl:200
#, c-format
msgid "Mandriva Wizards"
msgstr ""

#: share/meta-task/compssUsers.pl:201
#, c-format
msgid "Wizards to configure server"
msgstr ""

#: steps.pm:85
#, c-format
msgid ""
"An error occurred, but I do not know how to handle it nicely.\n"
"Continue at your own risk."
msgstr ""
"Faddina. No sciu comenti ndi bessiri beni.\n"
"Sighi a perìgulu tuu."

#: steps.pm:432
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
"Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm"
"\"\n"
msgstr ""

#: steps_auto_install.pm:71 steps_stdio.pm:27
#, c-format
msgid "Entering step `%s'\n"
msgstr ""

#: steps_curses.pm:22
#, c-format
msgid "Mandriva Linux Installation %s"
msgstr "Aposentadura de Mandriva Linux %s"

#: steps_curses.pm:32
#, c-format
msgid "<Tab>/<Alt-Tab> between elements"
msgstr "<Tab>/<Alt-Tab> intr''e elementus"

#: steps_gtk.pm:155 steps_gtk.pm:156
#, c-format
msgid "Localization"
msgstr ""

#: steps_gtk.pm:159 steps_list.pm:20
#, c-format
msgid ""
"_: Keep these entry short\n"
"Installation class"
msgstr ""

#: steps_gtk.pm:160 steps_gtk.pm:243 steps_interactive.pm:511
#, c-format
msgid "Package Group Selection"
msgstr ""

#: steps_gtk.pm:161 steps_gtk.pm:460 steps_interactive.pm:543
#, c-format
msgid "Installing"
msgstr "Seu aposentendi"

#: steps_gtk.pm:162 steps_gtk.pm:576 steps_interactive.pm:735
#, c-format
msgid "Summary"
msgstr "Arresùmini"

#: steps_gtk.pm:164 steps_gtk.pm:165 steps_list.pm:30
#, c-format
msgid ""
"_: Keep these entry short\n"
"Bootloader"
msgstr "Bootloader"

#: steps_gtk.pm:166 steps_interactive.pm:644
#, c-format
msgid "Updates"
msgstr "Ajorronus"

#: steps_gtk.pm:213
#, c-format
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandriva Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""

#: steps_gtk.pm:264 steps_interactive.pm:529
#, c-format
msgid "Individual package selection"
msgstr "Sçoberu pakitus unu a unu"

#: steps_gtk.pm:268 steps_interactive.pm:454
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Mesura totali: %d / %d MB"

#: steps_gtk.pm:313
#, c-format
msgid "Bad package"
msgstr "Pakitu malu"

#: steps_gtk.pm:315
#, c-format
msgid "Version: "
msgstr "Versioni: "

#: steps_gtk.pm:316
#, c-format
msgid "Size: "
msgstr "Mesura: "

#: steps_gtk.pm:316
#, c-format
msgid "%d KB\n"
msgstr "%d KB\n"

#: steps_gtk.pm:317
#, c-format
msgid "Importance: "
msgstr "Importu: "

#: steps_gtk.pm:351
#, c-format
msgid "You can not select/unselect this package"
msgstr "No podis scerai/disiscerai custu pakitu"

#: steps_gtk.pm:355
#, c-format
msgid "due to missing %s"
msgstr "ca amancat %s"

#: steps_gtk.pm:356
#, c-format
msgid "due to unsatisfied %s"
msgstr "ca no est satisfatu %s"

#: steps_gtk.pm:357
#, c-format
msgid "trying to promote %s"
msgstr "provu a sçoberai %s"

#: steps_gtk.pm:358
#, c-format
msgid "in order to keep %s"
msgstr "po podi apoderai %s"

#: steps_gtk.pm:363
#, c-format
msgid ""
"You can not select this package as there is not enough space left to install "
"it"
msgstr ""
"No podis sçoberai custu pakitu, ca no dui at spàtziu abasta po d'aposentai"

#: steps_gtk.pm:366
#, c-format
msgid "The following packages are going to be installed"
msgstr "Megu a aposentai is pakitus ki sighint"

#: steps_gtk.pm:367
#, c-format
msgid "The following packages are going to be removed"
msgstr "Megu a srexinai is pakitus ki sighint"

#: steps_gtk.pm:392
#, c-format
msgid "This is a mandatory package, it can not be unselected"
msgstr "Custu est unu palitu necessàriu, no fait a du disiscerai"

#: steps_gtk.pm:394
#, c-format
msgid "You can not unselect this package. It is already installed"
msgstr "No fait a disiscerai custu pakitu. Est jai aposentau"

#: steps_gtk.pm:396
#, c-format
msgid "You can not unselect this package. It must be upgraded"
msgstr "No fait a disiscerai custu pakitu. Bolit ajorronau"

#: steps_gtk.pm:400
#, c-format
msgid "Show automatically selected packages"
msgstr "Amosta in automàtigu is pakitus sçoberaus"

#: steps_gtk.pm:402 steps_interactive.pm:133
#, c-format
msgid "Install"
msgstr "Aposenta"

#: steps_gtk.pm:405
#, c-format
msgid "Load/Save selection"
msgstr "Càrriga/Sarva su sçoberu"

#: steps_gtk.pm:406
#, c-format
msgid "Updating package selection"
msgstr "Ajorronu su sçoberu de is pakitus"

#: steps_gtk.pm:411
#, c-format
msgid "Minimal install"
msgstr "Aposentadura minimali"

#: steps_gtk.pm:425
#, c-format
msgid "Software Management"
msgstr "Maniju de is programas"

#: steps_gtk.pm:425 steps_interactive.pm:373
#, c-format
msgid "Choose the packages you want to install"
msgstr "Sçobera is pakitus ki bolis aposentai"

#: steps_gtk.pm:487
#, c-format
msgid "No details"
msgstr ""

#: steps_gtk.pm:483
#, c-format
msgid "Time remaining "
msgstr "Tempus ki abarrat "

#: steps_gtk.pm:484
#, c-format
msgid "Estimating"
msgstr "Seu carculendi"

#: steps_gtk.pm:511
#, fuzzy, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d pakitus"
msgstr[1] "%d pakitus"

#: steps_gtk.pm:589
#, c-format
msgid "Configure"
msgstr "Assètia"

#: steps_gtk.pm:580 steps_interactive.pm:731 steps_interactive.pm:858
#, c-format
msgid "not configured"
msgstr "no assetiau"

#: steps_gtk.pm:612 steps_interactive.pm:268
#, c-format
msgid ""
"The following installation media have been found.\n"
"If you want to skip some of them, you can unselect them now."
msgstr ""

#: steps_gtk.pm:621 steps_interactive.pm:274
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard drive "
"before installation.\n"
"It will then continue from the hard drive and the packages will remain "
"available once the system is fully installed."
msgstr ""

#: steps_gtk.pm:623 steps_interactive.pm:276
#, c-format
msgid "Copy whole CDs"
msgstr "Còpia totu is CD"

#: steps_interactive.pm:38
#, c-format
msgid "An error occurred"
msgstr "Faddina"

#: steps_interactive.pm:97
#, c-format
msgid "Please choose your keyboard layout."
msgstr "Sçobera su skema de su tecrau."

#: steps_interactive.pm:99
#, c-format
msgid "Here is the full list of available keyboards"
msgstr "Innoi sa lista de totu is tecraus a disposta"

#: steps_interactive.pm:128
#, c-format
msgid "Install/Upgrade"
msgstr "Aposenta/Ajorrona"

#: steps_interactive.pm:129
#, c-format
msgid "Is this an install or an upgrade?"
msgstr "Est una aposentadura o una ajorronadura?"

#: steps_interactive.pm:135
#, c-format
msgid "Upgrade %s"
msgstr "Ajorrona %s"

#: steps_interactive.pm:148
#, c-format
msgid "Encryption key for %s"
msgstr "Crai de cuadura po %s"

#: steps_interactive.pm:184
#, c-format
msgid "IDE"
msgstr "IDE"

#: steps_interactive.pm:184
#, c-format
msgid "Configuring IDE"
msgstr "Assètiu IDE"

#: steps_interactive.pm:221
#, c-format
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""

#: steps_interactive.pm:226
#, c-format
msgid ""
"You'll need to create a PPC PReP Boot bootstrap! Install will continue, but "
"to boot your system, you'll need to create the bootstrap partition in "
"DiskDrake"
msgstr ""

#: steps_interactive.pm:318
#, c-format
msgid ""
"Change your Cd-Rom!\n"
"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
"done.\n"
"If you do not have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
"Càmbia su Cd-Rom!\n"
"Intra su Cd-Rom etiketau \"%s\" in su ligidori e craca Ok candu as fatu.\n"
"Ki no du tenis, craca Annudda po scampai s'aposentadura de custu Cd-Rom."

#: steps_interactive.pm:340
#, c-format
msgid "Looking for available packages..."
msgstr ""

#: steps_interactive.pm:349
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%"
"dMB > %dMB)"
msgstr ""

#: steps_interactive.pm:385
#, c-format
msgid ""
"Please choose load or save package selection.\n"
"The format is the same as auto_install generated files."
msgstr ""

#: steps_interactive.pm:387
#, c-format
msgid "Load"
msgstr "Càrriga"

#: steps_interactive.pm:387
#, c-format
msgid "Save"
msgstr "Sarva"

#: steps_interactive.pm:395
#, c-format
msgid "Bad file"
msgstr "File malu"

#: steps_interactive.pm:413
#, c-format
msgid "Install Mandriva KDE Desktop"
msgstr ""

#: steps_interactive.pm:414
#, c-format
msgid "Install Mandriva GNOME Desktop"
msgstr ""

#: steps_interactive.pm:415
#, fuzzy, c-format
msgid "Custom install"
msgstr "Aposentadura minimali"

#: steps_interactive.pm:418
#, c-format
msgid "You can choose your workstation desktop profile: KDE, GNOME or Custom"
msgstr ""

#: steps_interactive.pm:503
#, c-format
msgid "Selected size is larger than available space"
msgstr ""

#: steps_interactive.pm:483
#, c-format
msgid "Type of install"
msgstr "Tipu de aposentadura"

#: steps_interactive.pm:484
#, c-format
msgid ""
"You have not selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""

#: steps_interactive.pm:487
#, c-format
msgid "With X"
msgstr "Cun X"

#: steps_interactive.pm:488
#, c-format
msgid "With basic documentation (recommended!)"
msgstr ""

#: steps_interactive.pm:489
#, c-format
msgid "Truly minimal install (especially no urpmi)"
msgstr ""

#: steps_interactive.pm:528
#, c-format
msgid "All"
msgstr "Totu"

#: steps_interactive.pm:544
#, c-format
msgid "Preparing installation"
msgstr "Apariçu s'aposentadura"

#: steps_interactive.pm:552
#, c-format
msgid "Installing package %s"
msgstr ""

#: steps_interactive.pm:576
#, c-format
msgid "There was an error ordering packages:"
msgstr "Faddina in s'ordinadura de is pakitus:"

#: steps_interactive.pm:576
#, c-format
msgid "Go on anyway?"
msgstr "Sigu comuncas?"

#: steps_interactive.pm:580
#, c-format
msgid "Retry"
msgstr ""

#: steps_interactive.pm:581
#, c-format
msgid "Skip this package"
msgstr ""

#: steps_interactive.pm:582
#, c-format
msgid "Skip all packages from medium \"%s\""
msgstr ""

#: steps_interactive.pm:583
#, fuzzy, c-format
msgid "Go back to media and packages selection"
msgstr "Sarva su sçoberu de is pakitus"

#: steps_interactive.pm:586
#, fuzzy, c-format
msgid "There was an error installing package %s."
msgstr "Faddina in s'aposentadura de is pakitus:"

#: steps_interactive.pm:604
#, c-format
msgid "Post-install configuration"
msgstr "Assètiu pusti-aposentadura"

#: steps_interactive.pm:611
#, c-format
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""

#: steps_interactive.pm:645
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been updated after the distribution was released. They may\n"
"contain security or bug fixes.\n"
"\n"
"To download these packages, you will need to have a working Internet \n"
"connection.\n"
"\n"
"Do you want to install the updates?"
msgstr ""

#: steps_interactive.pm:666
#, c-format
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Cuntatu su sprigu po tenni sa lista de is pakitus a disposta..."

#: steps_interactive.pm:672
#, c-format
msgid "Unable to contact mirror %s"
msgstr "No potzu cuntatai su sprigu %s"

#. -PO: example: lilo-graphic on /dev/hda1
#: steps_interactive.pm:777
#, c-format
msgid "%s on %s"
msgstr "%s in %s"

#: steps_interactive.pm:810 steps_interactive.pm:817 steps_interactive.pm:830
#: steps_interactive.pm:847 steps_interactive.pm:863 steps_interactive.pm:874
#, c-format
msgid "Hardware"
msgstr "Hardware"

#: steps_interactive.pm:795 steps_interactive.pm:812
#, c-format
msgid "Sound card"
msgstr "Skeda de Sonu"

#: steps_interactive.pm:815
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Tenis una skeda de sonu ISA?"

#: steps_interactive.pm:817
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr ""

#: steps_interactive.pm:819
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""

#: steps_interactive.pm:828
#, c-format
msgid "TV card"
msgstr "Skeda TV"

#: steps_interactive.pm:839
#, c-format
msgid "Graphical interface"
msgstr "Interfaci Gràfiga"

#: steps_interactive.pm:845 steps_interactive.pm:856
#, c-format
msgid "Network & Internet"
msgstr "Arretza & Internet"

#: steps_interactive.pm:857
#, c-format
msgid "Proxies"
msgstr "Proxy"

#: steps_interactive.pm:858
#, c-format
msgid "configured"
msgstr "assetiau"

#: steps_interactive.pm:868
#, c-format
msgid "Security Level"
msgstr "Arrasu de Siguresa"

#: steps_interactive.pm:882
#, c-format
msgid "Firewall"
msgstr "Firewall"

#: steps_interactive.pm:886
#, c-format
msgid "activated"
msgstr "abivau"

#: steps_interactive.pm:886
#, c-format
msgid "disabled"
msgstr "disabivau"

#: steps_interactive.pm:939