summaryrefslogtreecommitdiffstats
path: root/po/et.po
blob: 0b8183769fddf426aacf89a5164b7af11195ce40 (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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
#ifndef vbe_h
#define vbe_h
#ident "$Id$"
#include <sys/types.h>

/* Record returned by int 0x10, function 0x4f, subfunction 0x00. */
struct vbe_info {
	unsigned char signature[4];
	unsigned char version[2];
	union {
		struct {
			u_int16_t ofs;
			u_int16_t seg;
		} addr;
		const char *string;
	} oem_name;
	u_int32_t capabilities;
	union {
		struct {
			u_int16_t ofs;
			u_int16_t seg;
		} addr;
		u_int16_t *list;
	} mode_list;
	u_int16_t memory_size;
	/* VESA 3.0+ */
	u_int16_t vbe_revision;
	union {
		struct {
			u_int16_t ofs;
			u_int16_t seg;
		} addr;
		const char *string;
	} vendor_name;
	union {
		struct {
			u_int16_t ofs;
			u_int16_t seg;
		} addr;
		const char *string;
	} product_name;
	union {
		struct {
			u_int16_t ofs;
			u_int16_t seg;
		} addr;
		const char *string;
	} product_revision;
	char reserved1[222];
	char reserved2[256];
} __attribute__ ((packed));

/* Stuff returned by int 0x10, function 0x4f, subfunction 0x01. */
struct vbe_mode_info {
	/* required for all VESA versions */
	struct {
		/* VBE 1.0+ */
		u_int16_t supported: 1;
		u_int16_t optional_info_available: 1;
		u_int16_t bios_output_supported: 1;
		u_int16_t color: 1;
		u_int16_t graphics: 1;
		/* VBE 2.0+ */
		u_int16_t not_vga_compatible: 1;
		u_int16_t not_bank_switched: 1;
		u_int16_t lfb: 1;
		/* VBE 1.0+ */
		u_int16_t unknown: 1;
		u_int16_t must_enable_directaccess_in_10: 1;
	} mode_attributes;
	struct {
		unsigned char exists: 1;
		unsigned char readable: 1;
		unsigned char writeable: 1;
		unsigned char reserved: 5;
	} windowa_attributes, windowb_attributes;
	u_int16_t window_granularity;
	u_int16_t window_size;
	u_int16_t windowa_start_segment, windowb_start_segment;
	u_int16_t window_positioning_seg, window_positioning_ofs;
	u_int16_t bytes_per_scanline;
	/* optional for VESA 1.0/1.1, required for OEM modes */
	u_int16_t w, h;
	unsigned char cell_width, cell_height;
	unsigned char memory_planes;
	unsigned char bpp;
	unsigned char banks;
	enum {
		memory_model_text = 0,
		memory_model_cga = 1,
		memory_model_hgc = 2,
		memory_model_ega16 = 3,
		memory_model_packed_pixel = 4,
		memory_model_sequ256 = 5,
		memory_model_direct_color = 6,
		memory_model_yuv = 7,
	} memory_model: 8;
	unsigned char bank_size;
	unsigned char image_pages;
	unsigned char reserved1;
	/* required for VESA 1.2+ */
	unsigned char red_mask, red_field;
	unsigned char green_mask, green_field;
	unsigned char blue_mask, blue_field;
	unsigned char reserved_mask, reserved_field;
	unsigned char direct_color_mode_info;
	/* VESA 2.0+ */
	u_int32_t linear_buffer_address;
	u_int32_t offscreen_memory_address;
	u_int16_t offscreen_memory_size;
	unsigned char reserved2[206];
} __attribute__ ((packed));

/* Modeline information used by XFree86. */
struct vbe_modeline {
	u_int16_t width, height;
	unsigned char interlaced;
	float refresh;
	char *modeline;
	float hfreq, vfreq, pixel_clock;
};

/* Aspect ratios used in EDID info. */
enum vbe_edid_aspect {
	aspect_unknown = 0,
	aspect_75,
	aspect_8,
	aspect_5625,
};

/* Detailed timing information used in EDID v1.x */
struct vbe_edid_detailed_timing {
	u_int16_t pixel_clock;
#define VBE_EDID_DETAILED_TIMING_PIXEL_CLOCK(_x) \
	((_x).pixel_clock * 10000)
	unsigned char horizontal_active;
	unsigned char horizontal_blanking;
	unsigned char horizontal_active_hi: 4;
	unsigned char horizontal_blanking_hi: 4;
#define VBE_EDID_DETAILED_TIMING_HORIZONTAL_ACTIVE(_x) \
	(((_x).horizontal_active_hi << 8) + (_x).horizontal_active)
#define VBE_EDID_DETAILED_TIMING_HORIZONTAL_BLANKING(_x) \
	(((_x).horizontal_blanking_hi << 8) + (_x).horizontal_blanking)
	unsigned char vertical_active;
	unsigned char vertical_blanking;
	unsigned char vertical_active_hi: 4;
	unsigned char vertical_blanking_hi: 4;
#define VBE_EDID_DETAILED_TIMING_VERTICAL_ACTIVE(_x) \
	(((_x).vertical_active_hi << 8) + (_x).vertical_active)
#define VBE_EDID_DETAILED_TIMING_VERTICAL_BLANKING(_x) \
	(((_x).vertical_blanking_hi << 8) + (_x).vertical_blanking)
	unsigned char hsync_offset;
	unsigned char hsync_pulse_width;
	unsigned char vsync_offset: 4;
	unsigned char vsync_pulse_width: 4;
	unsigned char hsync_offset_hi: 2;
	unsigned char hsync_pulse_width_hi: 2;
	unsigned char vsync_offset_hi: 2;
	unsigned char vsync_pulse_width_hi: 2;
#define VBE_EDID_DETAILED_TIMING_HSYNC_OFFSET(_x) \
	(((_x).hsync_offset_hi << 8) + (_x).hsync_offset)
#define VBE_EDID_DETAILED_TIMING_HSYNC_PULSE_WIDTH(_x) \
	(((_x).hsync_pulse_width_hi << 8) + (_x).hsync_pulse_width)
#define VBE_EDID_DETAILED_TIMING_VSYNC_OFFSET(_x) \
	(((_x).vsync_offset_hi << 4) + (_x).vsync_offset)
#define VBE_EDID_DETAILED_TIMING_VSYNC_PULSE_WIDTH(_x) \
	(((_x).vsync_pulse_width_hi << 4) + (_x).vsync_pulse_width)
	unsigned char himage_size;
	unsigned char vimage_size;
	unsigned char himage_size_hi: 4;
	unsigned char vimage_size_hi: 4;
#define VBE_EDID_DETAILED_TIMING_HIMAGE_SIZE(_x) \
	(((_x).himage_size_hi << 8) + (_x).himage_size)
#define VBE_EDID_DETAILED_TIMING_VIMAGE_SIZE(_x) \
	(((_x).vimage_size_hi << 8) + (_x).vimage_size)
	unsigned char hborder;
	unsigned char vborder;
	struct {
		unsigned char interlaced: 1;
		unsigned char stereo: 2;
		unsigned char digital_composite: 2;
		unsigned char variant: 2;
		unsigned char zero: 1;
	} flags __attribute__ ((packed));
} __attribute__ ((packed));

enum {
	vbe_edid_monitor_descriptor_serial = 0xff,
	vbe_edid_monitor_descriptor_ascii = 0xfe,
	vbe_edid_monitor_descriptor_range = 0xfd,
	vbe_edid_monitor_descriptor_name = 0xfc,
} vbe_edid_monitor_descriptor_types;

struct vbe_edid_monitor_descriptor {
	u_int16_t zero_flag_1;
	unsigned char zero_flag_2;
	unsigned char type;
	unsigned char zero_flag_3;
	union {
		char string[13];
		struct {
			unsigned char vertical_min;
			unsigned char vertical_max;
			unsigned char horizontal_min;
			unsigned char horizontal_max;
			unsigned char pixel_clock_max;
			unsigned char gtf_data[8];
		} range_data;
	} data;
} __attribute__ ((packed));

struct vbe_edid1_info {
	unsigned char header[8];
	struct {
		u_int16_t char3: 5;
		u_int16_t char2: 5;
		u_int16_t char1: 5;
		u_int16_t zero: 1;
	} manufacturer_name __attribute__ ((packed));
	u_int16_t product_code;
	u_int32_t serial_number;
	unsigned char week;
	unsigned char year;
	unsigned char version;
	unsigned char revision;
	struct {
		unsigned char separate_sync: 1;
		unsigned char composite_sync: 1;
		unsigned char sync_on_green: 1;
		unsigned char unused: 2;
		unsigned char voltage_level: 2;
		unsigned char digital: 1;
	} video_input_definition __attribute__ ((packed));
	unsigned char max_size_horizontal;
	unsigned char max_size_vertical;
	unsigned char gamma;
	struct {
		unsigned char unused1: 3;
		unsigned char rgb: 1;
		unsigned char unused2: 1;
		unsigned char active_off: 1;
		unsigned char suspend: 1;
		unsigned char standby: 1;
	} feature_support __attribute__ ((packed));
	unsigned char color_characteristics[10];
	struct {
		unsigned char timing_720x400_70: 1;
		unsigned char timing_720x400_88: 1;
		unsigned char timing_640x480_60: 1;
		unsigned char timing_640x480_67: 1;
		unsigned char timing_640x480_72: 1;
		unsigned char timing_640x480_75: 1;
		unsigned char timing_800x600_56: 1;
		unsigned char timing_800x600_60: 1;
		unsigned char timing_800x600_72: 1;
		unsigned char timing_800x600_75: 1;
		unsigned char timing_832x624_75: 1;
		unsigned char timing_1024x768_87i: 1;
		unsigned char timing_1024x768_60: 1;
		unsigned char timing_1024x768_70: 1;
		unsigned char timing_1024x768_75: 1;
		unsigned char timing_1280x1024_75: 1;
	} established_timings __attribute__ ((packed));
	struct {
		unsigned char timing_1152x870_75: 1;
		unsigned char reserved: 7;
	} manufacturer_timings __attribute__ ((packed));
	struct {
		u_int16_t xresolution: 8;
		u_int16_t vfreq: 6;
		u_int16_t aspect: 2;
	} standard_timing[8] __attribute__ ((packed));
	union {
		struct vbe_edid_detailed_timing detailed_timing[4];
		struct vbe_edid_monitor_descriptor monitor_descriptor[4];
	} monitor_details __attribute__ ((packed));
	unsigned char extension_flag;
	unsigned char checksum;
	unsigned char padding[128];
} __attribute__ ((packed));

#define VBE_LINEAR_FRAMEBUFFER 0x4000

/* Get VESA information. */
struct vbe_info *vbe_get_vbe_info();

/* Get information about a particular video mode, bitwise or with
   VBE_LINEAR_FRAMEBUFFER to check if LFB version is supported. */
struct vbe_mode_info *vbe_get_mode_info(u_int16_t mode);

/* Check if EDID reads are supported, and do them. */
int vbe_get_edid_supported();
struct vbe_edid1_info *vbe_get_edid_info();

/* Get the current video mode, -1 on error. */
int32_t vbe_get_mode();
/* Set a new video mode, bitwise or with VBE_LINEAR_FRAMEBUFFER. */
void vbe_set_mode(u_int16_t mode);

/* Save/restore the SVGA state.  Call free() on the state record when done. */
const void *vbe_save_svga_state();
void vbe_restore_svga_state(const void *state);

/* Get the ranges of values suitable for the attached monitor. */
void vbe_get_edid_ranges(struct vbe_edid1_info *edid,
			 unsigned char *hmin, unsigned char *hmax,
			 unsigned char *vmin, unsigned char *vmax);

/* Get a list of modelines that will work with this monitor. */
struct vbe_modeline *vbe_get_edid_modelines();

#endif
c-format msgid "unable to find list file for \"%s\", medium ignored" msgstr "" #: po/placeholder.h:33 #, fuzzy, c-format msgid "unable to parse hdlist file of \"%s\"" msgstr "ei saa uuendada andmekandjat \"%s\"\n" #: po/placeholder.h:34 #, c-format msgid "nothing written in list file for \"%s\"" msgstr "" #: po/placeholder.h:35 urpm.pm:1951 #, c-format msgid "" "removing %s to upgrade ...\n" " to %s since it will not upgrade correctly!" msgstr "" #: po/placeholder.h:39 urpm.pm:839 #, c-format msgid "read provides file [%s]" msgstr "" #: po/placeholder.h:40 #, fuzzy, c-format msgid "trying to remove inexistant medium \"%s\"" msgstr "ei saa luua andmekandjat \"%s\"\n" #: po/placeholder.h:41 urpm.pm:1692 #, c-format msgid "package %s is not found." msgstr "" #: po/placeholder.h:42 #, c-format msgid "unable to copy source of [%s] from [%s]" msgstr "" #: po/placeholder.h:43 urpm.pm:870 #, fuzzy, c-format msgid "unable to write compss file [%s]" msgstr "ei saa luua andmekandjat \"%s\"\n" #: po/placeholder.h:44 urpm.pm:813 #, c-format msgid "unmounting %s" msgstr "" #: po/placeholder.h:45 #, c-format msgid "removing %d obsolete headers in cache" msgstr "" #: po/placeholder.h:46 urpm.pm:919 urpm.pm:1634 #, c-format msgid "no hdlist file found for medium \"%s\"" msgstr "" #: po/placeholder.h:47 urpm.pm:176 #, c-format msgid "unable to take medium \"%s\" into account as no list file [%s] exists" msgstr "" #: po/placeholder.h:48 msgid "keeping only files referenced in provides" msgstr "" #: po/placeholder.h:49 #, fuzzy, c-format msgid "unable to build synthesis file for medium \"%s\"" msgstr "ei saa uuendada andmekandjat \"%s\"\n" #: po/placeholder.h:50 #, c-format msgid "found %d headers in cache" msgstr "" #: po/placeholder.h:51 urpm.pm:836 #, fuzzy, c-format msgid "unable to read provides file [%s]" msgstr "ei saa luua andmekandjat \"%s\"\n" #: po/placeholder.h:52 urpm.pm:2034 #, c-format msgid "avoid selecting %s as its locales language is not already selected" msgstr "" #: po/placeholder.h:53 urpm.pm:311 #, c-format msgid "medium \"%s\" already exists" msgstr "" #: po/placeholder.h:54 urpm.pm:295 #, c-format msgid "write config file [%s]" msgstr "" #: po/placeholder.h:55 #, fuzzy, c-format msgid "unable to write list file of \"%s\"" msgstr "ei saa luua andmekandjat \"%s\"\n" #: po/placeholder.h:56 urpm.pm:1817 #, c-format msgid "retrieving [%s]" msgstr "" #: po/placeholder.h:57 urpm.pm:1819 #, c-format msgid "wget of [%s] failed" msgstr "" #: po/placeholder.h:58 urpm.pm:1101 #, fuzzy, c-format msgid "no package named %s" msgstr "paketti %s ei leitud\n" #: po/placeholder.h:59 urpm.pm:848 #, fuzzy, c-format msgid "unable to read compss file [%s]" msgstr "ei saa luua andmekandjat \"%s\"\n" #: po/placeholder.h:60 urpm.pm:213 #, c-format msgid "unable to find hdlist file for \"%s\", medium ignored" msgstr "" #: po/placeholder.h:61 #, c-format msgid "built hdlist synthesis file for medium \"%s\"" msgstr "" #: po/placeholder.h:62 msgid "computing dependencies" msgstr "" #: po/placeholder.h:63 urpm.pm:868 #, c-format msgid "write provides file [%s]" msgstr "" #: po/placeholder.h:64 urpm.pm:803 #, fuzzy, c-format msgid "mounting %s" msgstr "installitakse %s\n" #: po/placeholder.h:65 urpm.pm:163 #, c-format msgid "" "unable to take care of medium \"%s\" as list file is already used by another " "medium" msgstr "" #: po/placeholder.h:66 urpm.pm:148 #, c-format msgid "medium \"%s\" try to use an already used list, medium ignored" msgstr "" #: po/placeholder.h:67 #, c-format msgid "reading hdlist file [%s]" msgstr "" #: po/placeholder.h:68 urpm.pm:873 #, c-format msgid "write compss file [%s]" msgstr "" #: po/placeholder.h:69 urpm.pm:827 #, c-format msgid "read depslist file [%s]" msgstr "" #: po/placeholder.h:70 #, fuzzy, c-format msgid "trying to select inexistant medium \"%s\"" msgstr "ei saa luua andmekandjat \"%s\"\n" #: po/placeholder.h:71 urpm.pm:1812 #, c-format msgid "malformed input: [%s]" msgstr "" #: po/placeholder.h:72 urpm.pm:145 #, c-format msgid "medium \"%s\" try to use an already used hdlist, medium ignored" msgstr "" #: po/placeholder.h:73 urpm.pm:1943 #, c-format msgid "" "removing %s to upgrade ...\n" " to %s since it will not be updated otherwise" msgstr "" #: po/placeholder.h:77 urpm.pm:865 #, fuzzy, c-format msgid "unable to write provides file [%s]" msgstr "ei saa luua andmekandjat \"%s\"\n" #: po/placeholder.h:78 urpm.pm:191 #, c-format msgid "unable to access hdlist file of \"%s\", medium ignored" msgstr "" #: po/placeholder.h:79 urpm.pm:1005 #, fuzzy msgid "unable to register rpm file" msgstr "ei saa luua andmekandjat \"%s\"\n" #: po/placeholder.h:80 urpm.pm:1362 msgid "unable to find all synthesis file, using parsehdlist server" msgstr "" #: po/placeholder.h:81 urpm.pm:241 #, c-format msgid "unable to inspect list file for \"%s\", medium ignored" msgstr "" #: po/placeholder.h:82 urpm.pm:233 #, c-format msgid "incoherent list file for \"%s\", medium ignored" msgstr "" #: po/placeholder.h:83 #, c-format msgid "copy of [%s] failed" msgstr "" #: po/placeholder.h:84 urpm.pm:907 urpm.pm:1338 urpm.pm:1616 urpm.pm:1623 #, fuzzy, c-format msgid "unable to parse correctly [%s]" msgstr "ei saa uuendada andmekandjat \"%s\"\n" #: po/placeholder.h:85 urpm.pm:824 #, fuzzy, c-format msgid "unable to read depslist file [%s]" msgstr "ei saa luua andmekandjat \"%s\"\n" #: po/placeholder.h:86 msgid "removable medium not selected" msgstr "" #: po/placeholder.h:87 urpm.pm:851 #, c-format msgid "read compss file [%s]" msgstr "" #: po/placeholder.h:88 urpm.pm:124 urpm.pm:136 #, c-format msgid "syntax error in config file at line %s" msgstr "" #: po/placeholder.h:89 #, c-format msgid "building hdlist [%s]" msgstr "" #: po/placeholder.h:90 urpm.pm:1746 #, fuzzy, c-format msgid "unable to read rpm file [%s] from medium \"%s\"" msgstr "ei saa luua andmekandjat \"%s\"\n" #: po/placeholder.h:91 urpm.pm:1009 msgid "error registering local packages" msgstr "" #: po/placeholder.h:92 urpm.pm:1762 #, c-format msgid "incoherent medium \"%s\" marked removable but not really" msgstr "" #: po/placeholder.h:93 #, fuzzy, c-format msgid "unable to build hdlist: %s" msgstr "ei saa uuendada andmekandjat \"%s\"\n" #: po/placeholder.h:94 urpm.pm:1000 #, c-format msgid "invalid rpm file name [%s]" msgstr "" #: po/placeholder.h:95 urpm.pm:1736 urpm.pm:1739 urpm.pm:1758 #, c-format msgid "medium \"%s\" is not selected" msgstr "" #: po/placeholder.h:96 urpm.pm:207 #, c-format msgid "trying to bypass existing medium \"%s\", avoiding" msgstr "" #: po/placeholder.h:97 urpm.pm:863 #, c-format msgid "write depslist file [%s]" msgstr "" #: po/placeholder.h:98 urpm.pm:1322 #, c-format msgid "unknown data associated with %s" msgstr "" #: po/placeholder.h:99 #, c-format msgid "source of [%s] not found as [%s]" msgstr "" #: po/placeholder.h:100 urpm.pm:193 #, c-format msgid "unable to access list file of \"%s\", medium ignored" msgstr "" #: po/placeholder.h:101 urpm.pm:2024 #, c-format msgid "avoid selecting %s as not enough files will be updated" msgstr "" #: po/placeholder.h:102 #, c-format msgid "wget of [%s] failed (maybe wget is missing?)" msgstr "" #: po/placeholder.h:103 urpm.pm:1001 #, fuzzy, c-format msgid "unable to access rpm file [%s]" msgstr "ei saa luua andmekandjat \"%s\"\n" #: po/placeholder.h:104 urpm.pm:860 #, fuzzy, c-format msgid "unable to write depslist file [%s]" msgstr "ei saa luua andmekandjat \"%s\"\n" #: po/placeholder.h:105 urpm.pm:327 urpm.pm:1773 #, fuzzy, c-format msgid "unable to access medium \"%s\"" msgstr "ei saa uuendada andmekandjat \"%s\"\n" #: po/placeholder.h:106 urpm.pm:988 #, c-format msgid "relocated %s entries in depslist" msgstr "" #: po/placeholder.h:107 urpm.pm:914 urpm.pm:1629 urpm.pm:1680 #, c-format msgid "unable to parse correctly [%s] on value \"%s\"" msgstr "" #: po/placeholder.h:108 #, c-format msgid "no rpm files found from [%s]" msgstr "" #: po/placeholder.h:109 urpm.pm:1104 #, fuzzy, c-format msgid "The following packages contain %s: %s" msgstr "%s sisaldub järmistes pakettides: %s\n" #: po/placeholder.h:110 urpm.pm:1645 urpm.pm:1671 #, c-format msgid "there are multiples packages with the same rpm filename \"%s\"" msgstr "" #: po/placeholder.h:111 urpm.pm:1920 #, c-format msgid "selecting %s using obsoletes" msgstr "" #: po/placeholder.h:112 urpm.pm:2031 #, c-format msgid "selecting %s by selection on files" msgstr "" #: po/placeholder.h:113 urpm.pm:180 #, c-format msgid "unable to determine medium of this hdlist file [%s]" msgstr "" #: po/placeholder.h:114 urpmi:308 urpmi:315 urpmi:328 urpmi:339 urpmi:352 msgid "Installation failed" msgstr "Installimine ebaõnnestus" #: po/placeholder.h:115 urpmi:279 msgid "Press enter when it's done..." msgstr "Vajutage Enter kui see on tehtud..." #: po/placeholder.h:117 urpmi:201 msgid "Sorry, bad choice, try again\n" msgstr "Selline valik ei ole lubatud, proovige uuesti\n" #: po/placeholder.h:120 #, fuzzy, c-format msgid "" "urpmi version %s\n" "Copyright (C) 1999, 2000, 2001 MandrakeSoft.\n" "This is free software and may be redistributed under the terms of the GNU " "GPL.\n" "usage:\n" " --help - print this help message.\n" " --update - use only update media.\n" " --auto - automatically select a good package in choices.\n" " --auto-select - automatically select packages for upgrading the " "system.\n" " --force - force invocation even if some package do not exist.\n" " --X - use X interface.\n" " --best-output - choose best interface according to the environment:\n" " X or text mode.\n" " -a - select all matches on command line.\n" " -m - choose minimum closure of requires (default).\n" " -M - choose maximun closure of requires.\n" " -c - choose complete method for resolving requires closure.\n" " -p - allow search in provides to find package.\n" " -q - quiet mode.\n" " -v - verbose mode.\n" " names or rpm files (only for root) given on command line are installed.\n" msgstr "" "urpmi versioon %s\n" "Kõik õigused (C) 1999, 2000, 2001 MandrakeSoft.\n" "See on vaba tarkvara mida võib levitada vastavalt GNU Üldisele Avalikule " "Litsentsile (GPL).\n" "kasutamiseks:\n" " --help - see abitekst.\n" " --auto - vali automaatselt pakett installimiseks.\n" " --auto-select - vali automaatselt paketid süsteemi uuendamiseks\n" " --force - installi paketid iga hinna eest.\n" " --X - kasuta graafilist X liidest.\n" " --best-output - vali parim võimalik kasutajaliides:\n" " X või tekstiresiim.\n" " -a - vali kõik käsureal leiduv.\n" " -m - vali minimaalne hulk sõltuvusi (vaikimisi).\n" " -M - vali maksimaalne hulk sõltuvusi.\n" " -c - lahenda täielikult kõik nõutavad sõltuvused.\n" " -q - vaikne resiim.\n" " -v - jutukas resiim.\n" " paketinimed või rpm-failid (ainult juurkasutaja) installimiseks.\n" #: po/placeholder.h:142 urpmi:362 msgid "everything already installed" msgstr "kõik on juba installitud" #: po/placeholder.h:143 urpmi:247 #, c-format msgid "" "To satisfy dependencies, the following packages are going to be installed (%" "d MB)" msgstr "Sõltuvuste lahendamiseks installitakse järgmised paketid (%d MB)" #: po/placeholder.h:144 urpmi:296 #, c-format msgid "installing %s\n" msgstr "installitakse %s\n" #: po/placeholder.h:145 urpmi:198 #, c-format msgid "What is your choice? (1-%d) " msgstr "Millise(d) valite? (1-%d)" #: po/placeholder.h:146 urpmi:321 urpmi:345 msgid "Try installation without checking dependencies? (y/N) " msgstr "Proovin paigaldada ilma sõltuvust kontrollimata? (j/E)" #: po/placeholder.h:147 urpmi:190 msgid "One of the following packages is needed:" msgstr "Vajalik on vähemalt üks järgnevatest pakettidest:" #: po/placeholder.h:148 urpmi:149 msgid "Only superuser is allowed to install local packages" msgstr "Ainult juurkasutaja saab lokaalseid pakette installida" #: po/placeholder.h:149 urpmi:278 #, c-format msgid "Please insert the medium named \"%s\" on device [%s]" msgstr "Palun pange andmekandja nimega %s seadmess [%s]" #: po/placeholder.h:150 po/placeholder.h:205 urpmi:268 urpmq:153 msgid "unable to get source packages, aborting" msgstr "ei leia pakette, katkestan" #: po/placeholder.h:151 urpmi:329 urpmi:353 msgid "Try installation even more strongly (--force)? (y/N) " msgstr "Proovin paigaldada veel jõulisemalt (--force)? (j/E) " #: po/placeholder.h:155 urpmi.addmedia:46 #, c-format msgid "" "%s\n" "`with' missing for ftp media\n" msgstr "" "%s\n" "`with' puudub ftp asukoha jaoks\n" #: po/placeholder.h:159 msgid "" "usage: urpmi.addmedia [--update] <name> <url>\n" "where <url> is one of\n" " file://<path>\n" " ftp://<login>:<password>@<host>/<path> with <relative filename of " "hdlist>\n" " ftp://<host>/<path> with <relative filename of hdlist>\n" " http://<host>/<path> with <relative filename of hdlist>\n" " removable_<device>://<path>\n" msgstr "" "kasutamiseks: urpmi.addmedia [--update] <nimi> <url>\n" "kus <url> on esitatud kujul\n" " file://<tee>\n" " ftp://<kasutaja>:<salasõna>@<masin>/<tee> with <suhteline tee hdlist " "juurde>\n" " ftp://<masin>/<tee> with <suhteline tee hdlist juurde>\n" " http://<masin>/<tee> with <suhteline tee hdlist juurde>\n" " removable_<seade>://<tee>\n" #: po/placeholder.h:168 urpmi.addmedia:57 #, c-format msgid "unable to create medium \"%s\"\n" msgstr "ei saa luua andmekandjat \"%s\"\n" #: po/placeholder.h:169 urpmi.addmedia:58 #, c-format msgid "unable to update medium \"%s\"\n" msgstr "ei saa uuendada andmekandjat \"%s\"\n" #: po/placeholder.h:170 urpmi.addmedia:42 #, c-format msgid "" "%s\n" "device `%s' do not exist\n" msgstr "" "%s\n" "seadet `%s' ei ole olemas\n" #: po/placeholder.h:174 urpmi.addmedia:44 #, c-format msgid "" "%s\n" "<relative path of hdlist> missing\n" msgstr "" "%s\n" "Puudub <suhteline tee hdlist -ni>\n" #: po/placeholder.h:178 #, fuzzy, c-format msgid "" "usage: urpmi.update [-a] <name> ...\n" "where <name> is a medium name to update.\n" " -a select all non-removable media.\n" " -c clean headers cache directory.\n" " -f force generation of base files, use another -f for hdlist files.\n" "\n" "unknown options '%s'\n" msgstr "" "kasutamiseks: urpmi.update [-a] <nimi> ...\n" "kus <nimi> on uuendatava andmekandja nimi.\n" " -a vali kõik mitte-ird andmekandjad.\n" "\n" "tundmatu(d) '%s'\n" #: po/placeholder.h:187 urpmi.update:51 msgid "nothing to update (use urpmi.addmedia to add a media)\n" msgstr "ei ole midagi uuendada (andmekandja lisamiseks urpmi.addmedia)\n" #: po/placeholder.h:188 urpmi.update:53 #, c-format msgid "" "the entry to update is missing\n" "(one of %s)\n" msgstr "" "puudub uuendatava nimi\n" "(võimalikke %s)\n" #: po/placeholder.h:192 urpmi.removemedia:44 msgid "nothing to remove (use urpmi.addmedia to add a media)\n" msgstr "ei ole midagi eemaldada (andmekandja lisamiseks urpmi.addmedia)\n" #: po/placeholder.h:193 urpmi.removemedia:46 #, c-format msgid "" "the entry to remove is missing\n" "(one of %s)\n" msgstr "" "puudub eemaldatava nimi\n" "(võimalikke %s)\n" #: po/placeholder.h:197 #, c-format msgid "" "usage: urpmi.removemedia [-a] <name> ...\n" "where <name> is a medium name to remove.\n" " -a select all media.\n" "\n" "unknown options '%s'\n" msgstr "" "kasutamiseks: urpmi.removemedia [-a] <nimi> ...\n" "kus <nimi> on eemaldatava andmekandja nimi.\n" " -a vali kõik andmekandjad.\n" "\n" "tundmatu(d) '%s'\n" #: po/placeholder.h:204 urpmq:85 #, fuzzy, c-format msgid "urpmq: cannot read rpm file \"%s\"\n" msgstr "urpmq: ei saa lugeda rpm-faili \"$_\"\n" #: po/placeholder.h:206 urpmq:82 #, fuzzy, c-format msgid "urpmq: unknown option \"-%s\", check usage with --help\n" msgstr "urpmq: tundmatu võti \"-$1\", vaata igaks juhuks --help\n" #: po/placeholder.h:207 urpmq:131 msgid "" "some package have to be removed for being upgraded, this is not supported " "yet\n" msgstr "" "uuendamiseks tuleks osa pakette eemaldada, kahjuks ei ole see aga veel " "võimalik\n" #: po/placeholder.h:208 #, c-format msgid "" "urpmq version %s\n" "Copyright (C) 2000, 2001 MandrakeSoft.\n" "This is free software and may be redistributed under the terms of the GNU " "GPL.\n" "usage:\n" " -h - print this help message.\n" " -v - verbose mode.\n" " -d - extend query to package dependencies.\n" " -u - remove package if a better version is already installed.\n" " -m - extend query to package dependencies, remove already\n" " installed package that provide what is necessary, add\n" " packages that may be block the upgrade.\n" " -M - extend query to package dependencies and remove already\n" " installed package only if they are newer or the same.\n" " -c - choose complete method for resolving requires closure.\n" " -p - allow search in provides to find package.\n" " -g - print groups too with name.\n" " -r - print version and release too with name.\n" " --update - use only update media.\n" " --auto-select - automatically select packages for upgrading the system.\n" " --headers - extract headers for package listed from urpmi db to\n" " stdout (root only).\n" " --sources - give all source packages before downloading (root only).\n" " --force - force invocation even if some package do not exist.\n" " names or rpm files given on command line are queried.\n" msgstr "" #: urpm.pm:257 #, c-format msgid "too many mount points for removable medium \"%s\"" msgstr "" #: urpm.pm:258 #, c-format msgid "taking removable device as \"%s\"" msgstr "" #: urpm.pm:262 #, c-format msgid "using different removable device [%s] for \"%s\"" msgstr "" #: urpm.pm:266 urpm.pm:269 #, fuzzy, c-format msgid "unable to retrieve pathname for removable medium \"%s\"" msgstr "ei saa luua andmekandjat \"%s\"\n" #: urpm.pm:1339 #, fuzzy, c-format msgid "read synthesis file [%s]" msgstr "ei saa luua andmekandjat \"%s\"\n" #: urpmi:49 #, c-format msgid "urpmi version %s" msgstr "urpmi versioon %s" #: urpmi:98 #, fuzzy, c-format msgid "urpmi: unknown option \"-%s\", check usage with --help\n" msgstr "urpmq: tundmatu võti \"-$1\", vaata igaks juhuks --help\n" #: urpmi:102 #, fuzzy msgid "Only superuser is allowed to install packages" msgstr "Ainult juurkasutaja saab lokaalseid pakette installida" #: urpmi:189 #, fuzzy, c-format msgid "One of the following packages is needed to install %s:" msgstr "Vajalik on vähemalt üks järgnevatest pakettidest:" #: urpmi:301 msgid "" "Installation failed, some files are missing.\n" "You may want to update your urpmi database" msgstr "" #: urpmi.addmedia:30 #, fuzzy msgid "usage: urpmi.addmedia [--update] <name> <url>" msgstr "kasutamiseks: urpmi.addmedia <nimi> <url>" #. <path> #. <login>:<password>@<host>/<path> with <relative filename of hdlist> #. <host>/<path> with <relative filename of hdlist> #. <host>/<path> with <relative filename of hdlist> #. <path> #: urpmi.addmedia:37 msgid ");" msgstr ");" #: urpmi.update:38 msgid "usage: urpmi.update [-a] <name> ..." msgstr "kasutamiseks: urpmi.update [-a] <nimi> ..." #: urpmi.removemedia:32 msgid "usage: urpmi.removemedia [-a] <name> ..." msgstr "kasutamiseks: urpmi.removemedia [-a] <nimi> ..." #: urpmi.removemedia:35 msgid ", $_);" msgstr ", $_);" #: urpmq:34 #, c-format msgid "urpmq version %s" msgstr "urpmq versioon %s" #~ msgid "));" #~ msgstr "));" #~ msgid "), $_);" #~ msgstr "), $_);" #~ msgid "unknown options \"%s\"\n" #~ msgstr "tundmatu võti \"%s\"\n" #~ msgid "" #~ "usage: urpmi [-h] [--auto] [--force] [-a] package_name " #~ "[package_names...]\n" #~ msgstr "" #~ "kasutamine: urpmi [-h] [--auto] [--force] [-a] paketi_nimi " #~ "[paketi_nimed...]\n" #~ msgid "rpm database query failed\n" #~ msgstr "rpm andmebaasi päring ebaõnnestus\n" #~ msgid "Sorry can't find file %s, exiting" #~ msgstr "Ei ole võimalik leida faili %s, väljun" #~ msgid "Failed dependencies: %s requires %s" #~ msgstr "Sõltuvuste viga: %s jaoks on vajalik %s"