aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/filesystem/filesystem.php
blob: 2112882d1d985fdb0acf8a6b5f8eec54cec54638 (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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
<?php
/**
 *
 * This file is part of the phpBB Forum Software package.
 *
 * @copyright (c) phpBB Limited <https://www.phpbb.com>
 * @license GNU General Public License, version 2 (GPL-2.0)
 *
 * For full copyright and license information, please see
 * the docs/CREDITS.txt file.
 *
 */

namespace phpbb\filesystem;

use phpbb\filesystem\exception\filesystem_exception;

/**
 * A class with various functions that are related to paths, files and the filesystem
 */
class filesystem implements filesystem_interface
{
	/**
	 * Store some information about file ownership for phpBB's chmod function
	 *
	 * @var array
	 */
	protected $chmod_info;

	/**
	 * Stores current working directory
	 *
	 * @var string|bool		current working directory or false if it cannot be recovered
	 */
	protected $working_directory;

	/**
	 * Symfony's Filesystem component
	 *
	 * @var \Symfony\Component\Filesystem\Filesystem
	 */
	protected $symfony_filesystem;

	/**
	 * Constructor
	 */
	public function __construct()
	{
		$this->chmod_info			= array();
		$this->symfony_filesystem	= new \Symfony\Component\Filesystem\Filesystem();
		$this->working_directory	= null;
	}

	/**
	 * {@inheritdoc}
	 */
	public function chgrp($files, $group, $recursive = false)
	{
		try
		{
			$this->symfony_filesystem->chgrp($files, $group, $recursive);
		}
		catch (\Symfony\Component\Filesystem\Exception\IOException $e)
		{
			// Try to recover filename
			// By the time this is written that is at the end of the message
			$error = trim($e->getMessage());
			$file = substr($error, strrpos($error, ' '));

			throw new filesystem_exception('CANNOT_CHANGE_FILE_GROUP', $file, array(), $e);
		}
	}

	/**
	 * {@inheritdoc}
	 */
	public function chmod($files, $perms = null, $recursive = false, $force_chmod_link = false)
	{
		if (is_null($perms))
		{
			// Default to read permission for compatibility reasons
			$perms = self::CHMOD_READ;
		}

		// Check if we got a permission flag
		if ($perms > self::CHMOD_ALL)
		{
			$file_perm = $perms;

			// Extract permissions
			//$owner = ($file_perm >> 6) & 7; // This will be ignored
			$group = ($file_perm >> 3) & 7;
			$other = ($file_perm >> 0) & 7;

			// Does any permissions provided? if so we add execute bit for directories
			$group = ($group !== 0) ? ($group | self::CHMOD_EXECUTE) : $group;
			$other = ($other !== 0) ? ($other | self::CHMOD_EXECUTE) : $other;

			// Compute directory permissions
			$dir_perm = (self::CHMOD_ALL << 6) + ($group << 3) + ($other << 3);
		}
		else
		{
			// Add execute bit to owner if execute bit is among perms
			$owner_perm	= (self::CHMOD_READ | self::CHMOD_WRITE) | ($perms & self::CHMOD_EXECUTE);
			$file_perm	= ($owner_perm << 6) + ($perms << 3) + ($perms << 0);

			// Compute directory permissions
			$perm = ($perms !== 0) ? ($perms | self::CHMOD_EXECUTE) : $perms;
			$dir_perm = (($owner_perm | self::CHMOD_EXECUTE) << 6) + ($perm << 3) + ($perm << 0);
		}

		// Symfony's filesystem component does not support extra execution flags on directories
		// so we need to implement it again
		foreach ($this->to_iterator($files) as $file)
		{
			if ($recursive && is_dir($file) && !is_link($file))
			{
				$this->chmod(new \FilesystemIterator($file), $perms, true);
			}

			// Don't chmod links as mostly those require 0777 and that cannot be changed
			if (is_dir($file) || (is_link($file) && $force_chmod_link))
			{
				if (true !== @chmod($file, $dir_perm))
				{
					throw new filesystem_exception('CANNOT_CHANGE_FILE_PERMISSIONS', $file,  array());
				}
			}
			else if (is_file($file))
			{
				if (true !== @chmod($file, $file_perm))
				{
					throw new filesystem_exception('CANNOT_CHANGE_FILE_PERMISSIONS', $file,  array());
				}
			}
		}
	}

	/**
	 * {@inheritdoc}
	 */
	public function chown($files, $user, $recursive = false)
	{
		try
		{
			$this->symfony_filesystem->chown($files, $user, $recursive);
		}
		catch (\Symfony\Component\Filesystem\Exception\IOException $e)
		{
			// Try to recover filename
			// By the time this is written that is at the end of the message
			$error = trim($e->getMessage());
			$file = substr($error, strrpos($error, ' '));

			throw new filesystem_exception('CANNOT_CHANGE_FILE_GROUP', $file, array(), $e);
		}
	}

	/**
	 * {@inheritdoc}
	 */
	public function clean_path($path)
	{
		$exploded = explode('/', $path);
		$filtered = array();
		foreach ($exploded as $part)
		{
			if ($part === '.' && !empty($filtered))
			{
				continue;
			}

			if ($part === '..' && !empty($filtered) && $filtered[sizeof($filtered) - 1] !== '.' && $filtered[sizeof($filtered) - 1] !== '..')
			{
				array_pop($filtered);
			}
			else
			{
				$filtered[] = $part;
			}
		}
		$path = implode('/', $filtered);
		return $path;
	}

	/**
	 * {@inheritdoc}
	 */
	public function copy($origin_file, $target_file, $override = false)
	{
		try
		{
			$this->symfony_filesystem->copy($origin_file, $target_file, $override);
		}
		catch (\Symfony\Component\Filesystem\Exception\IOException $e)
		{
			throw new filesystem_exception('CANNOT_COPY_FILES', '', array(), $e);
		}
	}

	/**
	 * {@inheritdoc}
	 */
	public function dump_file($filename, $content)
	{
		try
		{
			$this->symfony_filesystem->dumpFile($filename, $content);
		}
		catch (\Symfony\Component\Filesystem\Exception\IOException $e)
		{
			throw new filesystem_exception('CANNOT_DUMP_FILE', $filename, array(), $e);
		}
	}

	/**
	 * {@inheritdoc}
	 */
	public function exists($files)
	{
		return $this->symfony_filesystem->exists($files);
	}

	/**
	 * {@inheritdoc}
	 */
	public function is_absolute_path($path)
	{
		return (isset($path[0]) && $path[0] === '/' || preg_match('#^[a-z]:[/\\\]#i', $path)) ? true : false;
	}

	/**
	 * {@inheritdoc}
	 */
	public function is_readable($files, $recursive = false)
	{
		foreach ($this->to_iterator($files) as $file)
		{
			if ($recursive && is_dir($file) && !is_link($file))
			{
				if (!$this->is_readable(new \FilesystemIterator($file), true))
				{
					return false;
				}
			}

			if (!is_readable($file))
			{
				return false;
			}
		}

		return true;
	}

	/**
	 * {@inheritdoc}
	 */
	public function is_writable($files, $recursive = false)
	{
		if (defined('PHP_WINDOWS_VERSION_MAJOR') || !function_exists('is_writable'))
		{
			foreach ($this->to_iterator($files) as $file)
			{
				if ($recursive && is_dir($file) && !is_link($file))
				{
					if (!$this->is_writable(new \FilesystemIterator($file), true))
					{
						return false;
					}
				}

				if (!$this->phpbb_is_writable($file))
				{
					return false;
				}
			}
		}
		else
		{
			// use built in is_writable
			foreach ($this->to_iterator($files) as $file)
			{
				if ($recursive && is_dir($file) && !is_link($file))
				{
					if (!$this->is_writable(new \FilesystemIterator($file), true))
					{
						return false;
					}
				}

				if (!is_writable($file))
				{
					return false;
				}
			}
		}

		return true;
	}

	/**
	 * {@inheritdoc}
	 */
	public function make_path_relative($end_path, $start_path)
	{
		return $this->symfony_filesystem->makePathRelative($end_path, $start_path);
	}

	/**
	 * {@inheritdoc}
	 */
	public function mirror($origin_dir, $target_dir, \Traversable $iterator = null, $options = array())
	{
		try
		{
			$this->symfony_filesystem->mirror($origin_dir, $target_dir, $iterator, $options);
		}
		catch (\Symfony\Component\Filesystem\Exception\IOException $e)
		{
			$msg = $e->getMessage();
			$filename = substr($msg, strpos($msg, '"'), strrpos($msg, '"'));

			throw new filesystem_exception('CANNOT_MIRROR_DIRECTORY', $filename, array(), $e);
		}
	}

	/**
	 * {@inheritdoc}
	 */
	public function mkdir($dirs, $mode = 0777)
	{
		try
		{
			$this->symfony_filesystem->mkdir($dirs, $mode);
		}
		catch (\Symfony\Component\Filesystem\Exception\IOException $e)
		{
			$msg = $e->getMessage();
			$filename = substr($msg, strpos($msg, '"'), strrpos($msg, '"'));

			throw new filesystem_exception('CANNOT_CREATE_DIRECTORY', $filename, array(), $e);
		}
	}

	/**
	 * {@inheritdoc}
	 */
	public function phpbb_chmod($files, $perms = null, $recursive = false, $force_chmod_link = false)
	{
		if (is_null($perms))
		{
			// Default to read permission for compatibility reasons
			$perms = self::CHMOD_READ;
		}

		if (empty($this->chmod_info))
		{
			if (!function_exists('fileowner') || !function_exists('filegroup'))
			{
				$this->chmod_info['process'] = false;
			}
			else
			{
				$common_php_owner	= @fileowner(__FILE__);
				$common_php_group	= @filegroup(__FILE__);

				// And the owner and the groups PHP is running under.
				$php_uid	= (function_exists('posic_getuid')) ? @posix_getuid() : false;
				$php_gids	= (function_exists('posix_getgroups')) ? @posix_getgroups() : false;

				// If we are unable to get owner/group, then do not try to set them by guessing
				if (!$php_uid || empty($php_gids) || !$common_php_owner || !$common_php_group)
				{
					$this->chmod_info['process'] = false;
				}
				else
				{
					$this->chmod_info = array(
						'process'		=> true,
						'common_owner'	=> $common_php_owner,
						'common_group'	=> $common_php_group,
						'php_uid'		=> $php_uid,
						'php_gids'		=> $php_gids,
					);
				}
			}
		}

		if ($this->chmod_info['process'])
		{
			try
			{
				foreach ($this->to_iterator($files) as $file)
				{
					$file_uid = @fileowner($file);
					$file_gid = @filegroup($file);

					// Change owner
					if ($file_uid !== $this->chmod_info['common_owner'])
					{
						$this->chown($file, $this->chmod_info['common_owner'], $recursive);
					}

					// Change group
					if ($file_gid !== $this->chmod_info['common_group'])
					{
						$this->chgrp($file, $this->chmod_info['common_group'], $recursive);
					}

					clearstatcache();
					$file_uid = @fileowner($file);
					$file_gid = @filegroup($file);
				}
			}
			catch (filesystem_exception $e)
			{
				$this->chmod_info['process'] = false;
			}
		}

		// Still able to process?
		if ($this->chmod_info['process'])
		{
			if ($file_uid === $this->chmod_info['php_uid'])
			{
				$php = 'owner';
			}
			else if (in_array($file_gid, $this->chmod_info['php_gids']))
			{
				$php = 'group';
			}
			else
			{
				// Since we are setting the everyone bit anyway, no need to do expensive operations
				$this->chmod_info['process'] = false;
			}
		}

		// We are not able to determine or change something
		if (!$this->chmod_info['process'])
		{
			$php = 'other';
		}

		switch ($php)
		{
			case 'owner':
				try
				{
					$this->chmod($files, $perms, $recursive, $force_chmod_link);
					clearstatcache();
					if ($this->is_readable($files) && $this->is_writable($files))
					{
						break;
					}
				}
				catch (filesystem_exception $e)
				{
					// Do nothing
				}
			case 'group':
				try
				{
					$this->chmod($files, $perms, $recursive, $force_chmod_link);
					clearstatcache();
					if ((!($perms & self::CHMOD_READ) || $this->is_readable($files, $recursive)) && (!($perms & self::CHMOD_WRITE) || $this->is_writable($files, $recursive)))
					{
						break;
					}
				}
				catch (filesystem_exception $e)
				{
					// Do nothing
				}
			case 'other':
			default:
				$this->chmod($files, $perms, $recursive, $force_chmod_link);
			break;
		}
	}

	/**
	 * {@inheritdoc}
	 */
	public function realpath($path)
	{
		if (!function_exists('realpath'))
		{
			return $this->phpbb_own_realpath($path);
		}

		$realpath = realpath($path);

		// Strangely there are provider not disabling realpath but returning strange values. :o
		// We at least try to cope with them.
		if ((!$this->is_absolute_path($path) && $realpath === $path) || $realpath === false)
		{
			return $this->phpbb_own_realpath($path);
		}

		// Check for DIRECTORY_SEPARATOR at the end (and remove it!)
		if (substr($realpath, -1) === DIRECTORY_SEPARATOR)
		{
			$realpath = substr($realpath, 0, -1);
		}

		return $realpath;
	}

	/**
	 * {@inheritdoc}
	 */
	public function remove($files)
	{
		try
		{
			$this->symfony_filesystem->remove($files);
		}
		catch (\Symfony\Component\Filesystem\Exception\IOException $e)
		{
			// Try to recover filename
			// By the time this is written that is at the end of the message
			$error = trim($e->getMessage());
			$file = substr($error, strrpos($error, ' '));

			throw new filesystem_exception('CANNOT_DELETE_FILES', $file, array(), $e);
		}
	}

	/**
	 * {@inheritdoc}
	 */
	public function rename($origin, $target, $overwrite = false)
	{
		try
		{
			$this->symfony_filesystem->rename($origin, $target, $overwrite);
		}
		catch (\Symfony\Component\Filesystem\Exception\IOException $e)
		{
			$msg = $e->getMessage();
			$filename = substr($msg, strpos($msg, '"'), strrpos($msg, '"'));

			throw new filesystem_exception('CANNOT_RENAME_FILE', $filename, array(), $e);
		}
	}

	/**
	 * {@inheritdoc}
	 */
	public function symlink($origin_dir, $target_dir, $copy_on_windows = false)
	{
		try
		{
			$this->symfony_filesystem->symlink($origin_dir, $target_dir, $copy_on_windows);
		}
		catch (\Symfony\Component\Filesystem\Exception\IOException $e)
		{
			throw new filesystem_exception('CANNOT_CREATE_SYMLINK', $origin_dir, array(), $e);
		}
	}

	/**
	 * {@inheritdoc}
	 */
	public function touch($files, $time = null, $access_time = null)
	{
		try
		{
			$this->symfony_filesystem->touch($files, $time, $access_time);
		}
		catch (\Symfony\Component\Filesystem\Exception\IOException $e)
		{
			// Try to recover filename
			// By the time this is written that is at the end of the message
			$error = trim($e->getMessage());
			$file = substr($error, strrpos($error, ' '));

			throw new filesystem_exception('CANNOT_TOUCH_FILES', $file, array(), $e);
		}
	}

	/**
	 * phpBB's implementation of is_writable
	 *
	 * @todo Investigate if is_writable is still buggy
	 *
	 * @param string	$file	file/directory to check if writable
	 *
	 * @return bool	true if the given path is writable
	 */
	protected function phpbb_is_writable($file)
	{
		if (file_exists($file))
		{
			// Canonicalise path to absolute path
			$file = $this->realpath($file);

			if (is_dir($file))
			{
				// Test directory by creating a file inside the directory
				$result = @tempnam($file, 'i_w');

				if (is_string($result) && file_exists($result))
				{
					unlink($result);

					// Ensure the file is actually in the directory (returned realpathed)
					return (strpos($result, $file) === 0) ? true : false;
				}
			}
			else
			{
				$handle = @fopen($file, 'c');

				if (is_resource($handle))
				{
					fclose($handle);
					return true;
				}
			}
		}
		else
		{
			// file does not exist test if we can write to the directory
			$dir = dirname($file);

			if (file_exists($dir) && is_dir($dir) && $this->phpbb_is_writable($dir))
			{
				return true;
			}
		}

		return false;
	}

	/**
	 * Try to resolve real path when PHP's realpath failes to do so
	 *
	 * @param string	$path
	 * @return bool|string
	 */
	protected function phpbb_own_realpath($path)
	{
		// Replace all directory separators with '/'
		$path = str_replace(DIRECTORY_SEPARATOR, '/', $path);

		$is_absolute_path = false;
		$path_prefix = '';

		if ($this->is_absolute_path($path))
		{
			$is_absolute_path = true;
		}
		else
		{
			// Resolve working directory and store it
			if (is_null($this->working_directory))
			{
				if (function_exists('getcwd'))
				{
					$this->working_directory = str_replace(DIRECTORY_SEPARATOR, '/', getcwd());
				}

				//
				// From this point on we really just guessing
				// If chdir were called we screwed
				//
				else if (function_exists('debug_backtrace'))
				{
					$call_stack = debug_backtrace(0);
					$this->working_directory = str_replace(DIRECTORY_SEPARATOR, '/', dirname($call_stack[sizeof($call_stack) - 1]['file']));
				}
				else
				{
					//
					// Assuming that the working directory is phpBB root
					// we could use this as a fallback, when phpBB will use controllers
					// everywhere this will be a safe assumption
					//
					//$dir_parts = explode(DIRECTORY_SEPARATOR, __DIR__);
					//$namespace_parts = explode('\\', trim(__NAMESPACE__, '\\'));

					//$namespace_part_count = sizeof($namespace_parts);

					// Check if we still loading from root
					//if (array_slice($dir_parts, -$namespace_part_count) === $namespace_parts)
					//{
					//	$this->working_directory = implode('/', array_slice($dir_parts, 0, -$namespace_part_count));
					//}
					//else
					//{
					//	$this->working_directory = false;
					//}

					$this->working_directory = false;
				}
			}

			if ($this->working_directory !== false)
			{
				$is_absolute_path = true;
				$path = $this->working_directory . '/' . $path;
			}
		}

		if ($is_absolute_path)
		{
			if (defined('PHP_WINDOWS_VERSION_MAJOR'))
			{
				$path_prefix = $path[0] . ':';
				$path = substr($path, 2);
			}
			else
			{
				$path_prefix = '';
			}
		}

		$resolved_path = $this->resolve_path($path, $path_prefix, $is_absolute_path);
		if ($resolved_path === false)
		{
			return false;
		}

		if (!@file_exists($resolved_path) || (!@is_dir($resolved_path . '/') && !is_file($resolved_path)))
		{
			return false;
		}

		// Return OS specific directory separators
		$resolved = str_replace('/', DIRECTORY_SEPARATOR, $resolved_path);

		// Check for DIRECTORY_SEPARATOR at the end (and remove it!)
		if (substr($resolved, -1) === DIRECTORY_SEPARATOR)
		{
			return substr($resolved, 0, -1);
		}

		return $resolved;
	}

	/**
	 * Convert file(s) to \Traversable object
	 *
	 * This is the same function as Symfony's toIterator, but that is private
	 * so we cannot use it.
	 *
	 * @param string|array|\Traversable	$files	filename/list of filenames
	 * @return \Traversable
	 */
	protected function to_iterator($files)
	{
		if (!$files instanceof \Traversable)
		{
			$files = new \ArrayObject(is_array($files) ? $files : array($files));
		}

		return $files;
	}

	/**
	 * Try to resolve symlinks in path
	 *
	 * @param string	$path			The path to resolve
	 * @param string	$prefix			The path prefix (on windows the drive letter)
	 * @param bool 		$absolute		Whether or not the path is absolute
	 * @param bool		$return_array	Whether or not to return path parts
	 *
	 * @return string|array|bool	returns the resolved path or an array of parts of the path if $return_array is true
	 * 								or false if path cannot be resolved
	 */
	protected function resolve_path($path, $prefix = '', $absolute = false, $return_array = false)
	{
		if ($return_array)
		{
			$path = str_replace(DIRECTORY_SEPARATOR, '/', $path);
		}

		trim ($path, '/');
		$path_parts = explode('/', $path);
		$resolved = array();
		$resolved_path = $prefix;
		$file_found = false;

		foreach ($path_parts as $path_part)
		{
			if ($file_found)
			{
				return false;
			}

			if (empty($path_part) || ($path_part === '.' && ($absolute || !empty($resolved))))
			{
				continue;
			}
			else if ($absolute && $path_part === '..')
			{
				if (empty($resolved))
				{
					// No directories above root
					return false;
				}

				array_pop($resolved);
				$resolved_path = false;
			}
			else if ($path_part === '..' && !empty($resolved) && !in_array($resolved[sizeof($resolved) - 1], array('.', '..')))
			{
				array_pop($resolved);
				$resolved_path = false;
			}
			else
			{
				if ($resolved_path === false)
				{
					if (empty($resolved))
					{
						$resolved_path = ($absolute) ? $prefix . '/' . $path_part : $path_part;
					}
					else
					{
						$tmp_array = $resolved;
						if ($absolute)
						{
							array_unshift($tmp_array, $prefix);
						}

						$resolved_path = implode('/', $tmp_array);
					}
				}

				$current_path = $resolved_path . '/' . $path_part;

				// Resolve symlinks
				if (is_link($current_path))
				{
					if (!function_exists('readlink'))
					{
						return false;
					}

					$link = readlink($current_path);

					// Is link has an absolute path in it?
					if ($this->is_absolute_path($link))
					{
						if (defined('PHP_WINDOWS_VERSION_MAJOR'))
						{
							$prefix = $link[0] . ':';
							$link = substr($link, 2);
						}
						else
						{
							$prefix = '';
						}

						$resolved = $this->resolve_path($link, $prefix, true, true);
						$absolute = true;
					}
					else
					{
						$resolved = $this->resolve_path($resolved_path . '/' . $link, $prefix, $absolute, true);
					}

					if (!$resolved)
					{
						return false;
					}

					$resolved_path = false;
				}
				else if (is_dir($current_path . '/'))
				{
					$resolved[] = $path_part;
					$resolved_path = $current_path;
				}
				else if (is_file($current_path))
				{
					$resolved[] = $path_part;
					$resolved_path = $current_path;
					$file_found = true;
				}
				else
				{
					return false;
				}
			}
		}

		// If at the end of the path there were a .. or .
		// we need to build the path again.
		// Only doing this when a string is expected in return
		if ($resolved_path === false && $return_array === false)
		{
			if (empty($resolved))
			{
				$resolved_path = ($absolute) ? $prefix . '/' : './';
			}
			else
			{
				$tmp_array = $resolved;
				if ($absolute)
				{
					array_unshift($tmp_array, $prefix);
				}

				$resolved_path = implode('/', $tmp_array);
			}
		}

		return ($return_array) ? $resolved : $resolved_path;
	}
}
quot;Language-Team: Amharic <am-translate@geez.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: drakauth:24 drakauth:26 draksec:164 #, fuzzy, c-format msgid "Authentication" msgstr "ማስረጃ" #: drakauth:37 drakclock:111 drakclock:125 drakdvb:74 drakfont:213 #: drakfont:226 drakfont:264 draksplash:202 finish-install:119 logdrake:170 #: logdrake:445 logdrake:450 scannerdrake:59 scannerdrake:101 scannerdrake:142 #: scannerdrake:200 scannerdrake:259 scannerdrake:729 scannerdrake:740 #: scannerdrake:879 scannerdrake:890 scannerdrake:960 #, c-format msgid "Error" msgstr "ስህተት" #: drakboot:53 #, c-format msgid "No bootloader found, creating a new configuration" msgstr "" #: drakboot:88 harddrake2:198 harddrake2:199 logdrake:71 #, c-format msgid "/_File" msgstr "/ፋይል (_F)" #: drakboot:89 logdrake:77 #, c-format msgid "/File/_Quit" msgstr "/ፋይል (F)/ውጣ (_Q)" #: drakboot:89 harddrake2:199 logdrake:77 #, c-format msgid "<control>Q" msgstr "<control>Q" #: drakboot:129 #, c-format msgid "Text only" msgstr "ጽሑፉን ብቻ" #: drakboot:130 #, c-format msgid "Verbose" msgstr "" #: drakboot:131 #, c-format msgid "Silent" msgstr "" #: drakboot:137 drakbug:260 drakdvb:57 drakfont:682 drakperm:376 drakperm:386 #: drakups:27 harddrake2:527 localedrake:43 notify-x11-free-driver-switch:15 #: scannerdrake:51 scannerdrake:54 scannerdrake:297 scannerdrake:302 #: scannerdrake:954 #, c-format msgid "Warning" msgstr "ማስጠንቀቂያ" #: drakboot:138 #, c-format msgid "" "Your system bootloader is not in framebuffer mode. To activate graphical " "boot, select a graphic video mode from the bootloader configuration tool." msgstr "" #: drakboot:139 #, fuzzy, c-format msgid "Do you want to configure it now?" msgstr "ምርጫውን መሞከር ይፈልጋሉ?" #: drakboot:148 #, fuzzy, c-format msgid "Install themes" msgstr "ሲስተም ትከል" #: drakboot:150 #, c-format msgid "Graphical boot theme selection" msgstr "" #: drakboot:153 #, fuzzy, c-format msgid "Graphical boot mode:" msgstr "ከቀኝ ወደ ግራ ተራ ተጠቀም" #: drakboot:155 #, c-format msgid "Theme" msgstr "ጭብጥ" #: drakboot:158 #, c-format msgid "" "Display theme\n" "under console" msgstr "" #: drakboot:163 draksplash:26 #, fuzzy, c-format msgid "Create new theme" msgstr "አዲስ ሰነድ ፍጠር" #: drakboot:195 #, fuzzy, c-format msgid "Default user" msgstr "የተጠቃሚ ስም" #: drakboot:196 #, fuzzy, c-format msgid "Default desktop" msgstr "የነበረው _ሠሌዳ" #: drakboot:199 #, c-format msgid "No, I do not want autologin" msgstr "" #: drakboot:200 #, c-format msgid "Yes, I want autologin with this (user, desktop)" msgstr "" #: drakboot:207 #, fuzzy, c-format msgid "System mode" msgstr "የመሸፈኛ ዘዴ" #: drakboot:210 #, c-format msgid "Launch the graphical environment when your system starts" msgstr "" #: drakboot:262 #, c-format msgid "Boot Style Configuration" msgstr "የአጀማመር ዘይቤ ምርጫ" #: drakboot:264 drakboot:268 #, c-format msgid "Video mode" msgstr "የቪዲዮ አሰራር ዘዴ" #: drakboot:265 #, c-format msgid "" "Please choose a video mode, it will be applied to each of the boot entries " "selected below.\n" "Be sure your video card supports the mode you choose." msgstr "" #: drakbug:65 drakbug:152 #, c-format msgid "The \"%s\" program has crashed with the following error:" msgstr "" #: drakbug:76 #, fuzzy, c-format msgid "Mandriva Linux Bug Report Tool" msgstr "አንቀጹን መሀል ኩልኩል አድርግ" #: drakbug:81 #, c-format msgid "Mandriva Linux Control Center" msgstr "የMandriva Linux ቁጥጥር ማእከል" #: drakbug:82 #, fuzzy, c-format msgid "First Time Wizard" msgstr "ቀን እና ሰዓት" #: drakbug:83 #, fuzzy, c-format msgid "Synchronization tool" msgstr "የመስሪያውን ምልክት" #: drakbug:84 drakbug:216 #, fuzzy, c-format msgid "Standalone Tools" msgstr "/መሣሪያዎች/Toolbox" #: drakbug:86 drakbug:87 #, c-format msgid "Mandriva Online" msgstr "Mandriva Online" #: drakbug:88 #, fuzzy, c-format msgid "Remote Control" msgstr "ምስል መቆጣጠሪያ" #: drakbug:89 #, fuzzy, c-format msgid "Software Manager" msgstr "ማውጫዎች &አስተዳዳሪ" #: drakbug:90 #, fuzzy, c-format msgid "Windows Migration tool" msgstr "የመስሪያውን ፍንጭ አሳይ" #: drakbug:91 #, fuzzy, c-format msgid "Configuration Wizards" msgstr "የማስተካከያው አራሚ" #: drakbug:113 #, c-format msgid "Select Mandriva Tool:" msgstr "" #: drakbug:114 #, c-format msgid "" "or Application Name\n" "(or Full Path):" msgstr "" #: drakbug:117 #, fuzzy, c-format msgid "Find Package" msgstr "ሐረጉን ፈልግ" #: drakbug:119 #, fuzzy, c-format msgid "Package: " msgstr "ጥቅል" #: drakbug:120 #, c-format msgid "Kernel:" msgstr "" #: drakbug:151 #, c-format msgid "The \"%s\" program has segfaulted with the following error:" msgstr "" #: drakbug:155 #, c-format msgid "Its GDB trace is:" msgstr "" #: drakbug:158 #, c-format msgid "" "To submit a bug report, click on the report button. \n" "This will open a web browser window on %s where you'll find a form to fill " "in. The information displayed above will be transferred to that server" msgstr "" #: drakbug:160 #, c-format msgid "" "It would be very useful to attach to your report the output of the following " "command: %s." msgid_plural "" "Things useful to attach to your report are the output of the following " "commands: %s." msgstr[0] "" msgstr[1] "" #: drakbug:163 #, c-format msgid "'%s'" msgstr "" #: drakbug:166 #, fuzzy, c-format msgid "You should also attach the following files: %s as well as %s." msgstr "ምርጫዎችን ማስቀመጥ አልተቻለም" #: drakbug:173 #, c-format msgid "Please describe what you were doing when it crashed:" msgstr "" #: drakbug:185 drakperm:136 #, c-format msgid "Help" msgstr "መረጃ" #: drakbug:189 #, c-format msgid "Report" msgstr "ሪፖርት" #: drakbug:190 drakfont:506 #, c-format msgid "Close" msgstr "ዝጋ" #: drakbug:223 #, fuzzy, c-format msgid "Not installed" msgstr "አልተገኘም" #: drakbug:236 #, fuzzy, c-format msgid "Package not installed" msgstr "ማንበብ አልቻለም፦ " #: drakbug:261 #, c-format msgid "" "You must type in what you were doing when this bug happened in order to " "enable us to reproduce this bug and to increase the odds of fixing it" msgstr "" #: drakbug:262 #, c-format msgid "Thanks." msgstr "" #: drakclock:30 draksec:170 #, c-format msgid "Date, Clock & Time Zone Settings" msgstr "" #: drakclock:39 #, fuzzy, c-format msgid "not defined" msgstr "አልተገኘም" #: drakclock:41 #, fuzzy, c-format msgid "Change Time Zone" msgstr "ቀን እና ሰዓት" #: drakclock:44 #, c-format msgid "Timezone - DrakClock" msgstr "" #: drakclock:44 #, c-format msgid "Which is your timezone?" msgstr "የሰአት ክልሎት የትኛው ነው?" #: drakclock:45 #, c-format msgid "GMT - DrakClock" msgstr "" #: drakclock:45 #, c-format msgid "Is your hardware clock set to GMT?" msgstr "" #: drakclock:70 #, fuzzy, c-format msgid "Network Time Protocol" msgstr "ቀን እና ሰዓት" #: drakclock:72 #, c-format msgid "" "Your computer can synchronize its clock\n" " with a remote time server using NTP" msgstr "" #: drakclock:73 #, c-format msgid "Enable Network Time Protocol" msgstr "" #: drakclock:81 #, c-format msgid "Server:" msgstr "ተጠሪ፦" #: drakclock:95 #, c-format msgid "Timezone" msgstr "የሰአት ክልል" #: drakclock:111 #, c-format msgid "Please enter a valid NTP server address." msgstr "" #: drakclock:126 #, c-format msgid "Could not synchronize with %s." msgstr "" #: drakclock:127 drakdvb:149 draksplash:125 logdrake:175 scannerdrake:491 #, c-format msgid "Quit" msgstr "ውጣ" #: drakclock:128 #, fuzzy, c-format msgid "Retry" msgstr "ወደ መጀመሪያው መልስ" #: drakclock:151 drakclock:161 #, c-format msgid "Reset" msgstr "እንደነበረ አድረግ" #: drakdvb:30 #, fuzzy, c-format msgid "DVB" msgstr "ዲቪዲ" #: drakdvb:39 harddrake2:101 #, c-format msgid "Channel" msgstr "ጣቢያ" #: drakdvb:57 #, c-format msgid "%s already exists and its contents will be lost" msgstr "" #: drakdvb:74 #, c-format msgid "Could not get the list of available channels" msgstr "" #: drakdvb:80 draksec:73 drakups:99 harddrake2:381 scannerdrake:66 #: scannerdrake:70 scannerdrake:78 scannerdrake:319 scannerdrake:368 #: scannerdrake:504 scannerdrake:508 scannerdrake:530 service_harddrake:264 #, c-format msgid "Please wait" msgstr "እባክዎ ይጠብቁ" #: drakdvb:84 #, c-format msgid "Detecting DVB channels, this will take a few minutes" msgstr "" #: drakdvb:85 drakfont:572 drakfont:652 drakfont:736 draksplash:213 #: drakups:217 logdrake:175 #, c-format msgid "Cancel" msgstr "ተወው" #: drakdvb:148 #, fuzzy, c-format msgid "Detect Channels" msgstr "ጣቢያ" #: drakdvb:150 #, fuzzy, c-format msgid "View Channel" msgstr "ጣቢያ" #: drakedm:41 #, c-format msgid "GDM (GNOME Display Manager)" msgstr "" #: drakedm:42 #, c-format msgid "KDM (KDE Display Manager)" msgstr "" #: drakedm:43 #, fuzzy, c-format msgid "XDM (X Display Manager)" msgstr "የአቢወርድ የተጨማሪ ፕሮግራም አስተዳደር" #: drakedm:54 #, fuzzy, c-format msgid "Choosing a display manager" msgstr "የአቢወርድ የተጨማሪ ፕሮግራም አስተዳደር" #: drakedm:55 #, c-format msgid "" "X11 Display Manager allows you to graphically log\n" "into your system with the X Window System running and supports running\n" "several different X sessions on your local machine at the same time." msgstr "" #: drakedm:74 #, c-format msgid "The change is done, do you want to restart the dm service?" msgstr "" #: drakedm:75 #, c-format msgid "" "You are going to close all running programs and lose your current session. " "Are you really sure that you want to restart the dm service?" msgstr "" #: drakfont:187 #, fuzzy, c-format msgid "Search installed fonts" msgstr "&መረጃውን አስስ" #: drakfont:189 #, c-format msgid "Unselect fonts installed" msgstr "" #: drakfont:213 #, fuzzy, c-format msgid "No fonts found" msgstr "ምንም ጽሑፍ አልተገኘም" #: drakfont:217 #, fuzzy, c-format msgid "parse all fonts" msgstr "ሁሉንም የምስል ፋይሎች" #: drakfont:222 drakfont:263 drakfont:338 drakfont:379 drakfont:383 #: drakfont:409 drakfont:427 drakfont:435 #, c-format msgid "done" msgstr "አልቋል" #: drakfont:226 #, c-format msgid "Could not find any font in your mounted partitions" msgstr "" #: drakfont:261 #, fuzzy, c-format msgid "Reselect correct fonts" msgstr "ይህ ትክክል ነው?" #: drakfont:264 #, c-format msgid "Could not find any font.\n" msgstr "" #: drakfont:274 #, c-format msgid "Search for fonts in installed list" msgstr "" #: drakfont:298 #, c-format msgid "%s fonts conversion" msgstr "%s የፊደላት ለውጥ" #: drakfont:336 #, c-format msgid "Fonts copy" msgstr "የፊደላት ቅጂ" #: drakfont:339 #, c-format msgid "True Type fonts installation" msgstr "" #: drakfont:347 #, fuzzy, c-format msgid "please wait during ttmkfdir..." msgstr "ሲያትም እባክዎ ይጠብቁ\n" #: drakfont:348 #, c-format msgid "True Type install done" msgstr "" #: drakfont:354 drakfont:369 #, fuzzy, c-format msgid "type1inst building" msgstr "የሰነድ ግንባታ..." #: drakfont:363 #, c-format msgid "Ghostscript referencing" msgstr "" #: drakfont:380 #, fuzzy, c-format msgid "Suppress Temporary Files" msgstr "ሁሉንም የምስል ፋይሎች" #: drakfont:425 drakfont:431 #, fuzzy, c-format msgid "Suppress Fonts Files" msgstr "ሁሉንም የምስል ፋይሎች" #: drakfont:439 #, c-format msgid "" "Before installing any fonts, be sure that you have the right to use and " "install them on your system.\n" "\n" "You can install the fonts the normal way. In rare cases, bogus fonts may " "hang up your X Server." msgstr "" #: drakfont:478 #, fuzzy, c-format msgid "Font Installation" msgstr "ሲስተም ትከል" #: drakfont:489 #, c-format msgid "DrakFont" msgstr "" #: drakfont:490 drakfont:642 #, c-format msgid "Font List" msgstr "የፊደል ዝርዝር" #: drakfont:493 #, c-format msgid "Get Windows Fonts" msgstr "" #: drakfont:499 #, c-format msgid "About" msgstr "ስለ" #: drakfont:500 drakfont:541 #, c-format msgid "Options" msgstr "ምርጫዎች" #: drakfont:501 drakfont:721 #, c-format msgid "Uninstall" msgstr "አፍርስ" #: drakfont:502 #, c-format msgid "Import" msgstr "ከውጭ አስገባ" #: drakfont:520 #, c-format msgid "Drakfont" msgstr "" #: drakfont:522 harddrake2:236 #, c-format msgid "Copyright (C) %s by Mandriva" msgstr "" #: drakfont:524 #, fuzzy, c-format msgid "Font installer." msgstr "አልተገኘም" #: drakfont:526 harddrake2:240 #, fuzzy, c-format msgid "Mandriva Linux" msgstr "Mandriva Online" #. -PO: put here name(s) and email(s) of translator(s) (eg: "John Smith <jsmith@nowhere.com>") #. -PO: put here name(s) and email(s) of translator(s) (eg: "John Smith <jsmith@nowhere.com>") #: drakfont:533 harddrake2:245 #, c-format msgid "_: Translator(s) name(s) & email(s)\n" msgstr "Alemayehu <alemayehu@gmx.at>\n" #: drakfont:543 #, c-format msgid "Choose the applications that will support the fonts:" msgstr "" #: drakfont:554 #, c-format msgid "Ghostscript" msgstr "ጎስትስክሪፕት" #: drakfont:555 #, c-format msgid "OpenOffice.org" msgstr "" #: drakfont:556 #, c-format msgid "Abiword" msgstr "አቢወርድ" #: drakfont:557 #, fuzzy, c-format msgid "Generic Printers" msgstr "ሁሉም ማተሚያዎች" #: drakfont:562 drakfont:572 draksplash:213 drakups:210 #, c-format msgid "Ok" msgstr "እሺ" #: drakfont:571 #, c-format msgid "Select the font file or directory and click on 'Add'" msgstr "" #: drakfont:572 #, fuzzy, c-format msgid "File Selection" msgstr "የተመረጠውን አጥፉ" #: drakfont:576 #, c-format msgid "Fonts" msgstr "የፊደል ቅርጾች" #: drakfont:640 draksec:166 #, fuzzy, c-format msgid "Import fonts" msgstr "የፊደል ቅርጽ ክተቱ" #: drakfont:646 drakups:299 drakups:361 drakups:381 #, c-format msgid "Add" msgstr "ጨምር" #: drakfont:647 drakfont:735 drakups:301 drakups:363 drakups:383 #, c-format msgid "Remove" msgstr "አስወግድ" #: drakfont:653 #, c-format msgid "Install" msgstr "ትከል" #: drakfont:684 #, c-format msgid "Are you sure you want to uninstall the following fonts?" msgstr "" #: drakfont:688 draksec:60 harddrake2:326 #, c-format msgid "Yes" msgstr "አዎ" #: drakfont:690 draksec:59 harddrake2:327 #, c-format msgid "No" msgstr "አይ" #: drakfont:729 #, fuzzy, c-format msgid "Unselect All" msgstr "ሁሉንም &ተዉት" #: drakfont:732 #, fuzzy, c-format msgid "Select All" msgstr "ሁሉንም &ተዉት" #: drakfont:749 #, fuzzy, c-format msgid "Importing fonts" msgstr "የፊደል ቅርጽ ክተቱ" #: drakfont:753 drakfont:773 #, c-format msgid "Initial tests" msgstr "የመጀመሪያ ሙከራዎች" #: drakfont:754 #, c-format msgid "Copy fonts on your system" msgstr "ፊደላትን ወደ ሲስተሜ ቅዳ" #: drakfont:755 #, c-format msgid "Install & convert Fonts" msgstr "ፊደላትን ትከል እና ለውጥ" #: drakfont:756 #, fuzzy, c-format msgid "Post Install" msgstr "ሲስተም ትከል" #: drakfont:768 #, fuzzy, c-format msgid "Removing fonts" msgstr "የፊደል ቅርጽ ክተቱ" #: drakfont:774 #, c-format msgid "Remove fonts on your system" msgstr "ከሲስተሜ ውስጥ ፊደላትን አስወግድ" #: drakfont:775 #, fuzzy, c-format msgid "Post Uninstall" msgstr "ፖስታ ቤት" #: drakhelp:17 #, c-format msgid "" " drakhelp 0.1\n" "Copyright (C) %s Mandriva.\n" "This is free software and may be redistributed under the terms of the GNU " "GPL.\n" "\n" "Usage: \n" msgstr "" #: drakhelp:22 #, fuzzy, c-format msgid " --help - display this help \n" msgstr "የመረጃ ማውጫ አሳይ" #: drakhelp:23 #, c-format msgid "" " --id <id_label> - load the html help page which refers to id_label\n" msgstr "" #: drakhelp:24 #, c-format msgid "" " --doc <link> - link to another web page ( for WM welcome " "frontend)\n" msgstr "" #: drakhelp:52 #, fuzzy, c-format msgid "Mandriva Linux Help Center" msgstr "አንቀጹን መሀል ኩልኩል አድርግ" #: drakhelp:52 #, c-format msgid "No Help entry for %s\n" msgstr "" #: drakperm:23 #, c-format msgid "System settings" msgstr "የስይስተም ምርጫዎች" #: drakperm:24 #, fuzzy, c-format msgid "Custom settings" msgstr "የአሁኑን ምርጫዎች" #: drakperm:25 #, fuzzy, c-format msgid "Custom & system settings" msgstr "Comment=የመደቡ ይዞታዎች" #: drakperm:33 #, fuzzy, c-format msgid "Security Permissions" msgstr "ፈቃዶች" #: drakperm:45 #, c-format msgid "Editable" msgstr "" #: drakperm:50 drakperm:320 #, c-format msgid "Path" msgstr "መተላለፊያ" #: drakperm:50 drakperm:249 #, c-format msgid "User" msgstr "ተጠቃሚ" #: drakperm:50 drakperm:249 #, c-format msgid "Group" msgstr "የውይይት መድረክ" #: drakperm:50 drakperm:109 drakperm:332 draksec:181 #, c-format msgid "Permissions" msgstr "ፈቃዶች" #: drakperm:60 #, c-format msgid "Add a new rule" msgstr "" #: drakperm:67 drakperm:102 drakperm:128 #, fuzzy, c-format msgid "Edit current rule" msgstr "የአሁኑን ግለ መግለጫ _ያስተካክሉ..." #: drakperm:110 #, c-format msgid "" "Here you can see files to use in order to fix permissions, owners, and " "groups via msec.\n" "You can also edit your own rules which will owerwrite the default rules." msgstr "" #: drakperm:112 #, c-format msgid "" "The current security level is %s.\n" "Select permissions to see/edit" msgstr "" #: drakperm:124 #, c-format msgid "Up" msgstr "ወደላይ" #: drakperm:124 #, c-format msgid "Move selected rule up one level" msgstr "" #: drakperm:125 #, c-format msgid "Down" msgstr "ወደታች" #: drakperm:125 #, c-format msgid "Move selected rule down one level" msgstr "" #: drakperm:126 #, fuzzy, c-format msgid "Add a rule" msgstr "ሰነዶችን ጨምር" #: drakperm:126 #, c-format msgid "Add a new rule at the end" msgstr "" #: drakperm:127 #, c-format msgid "Delete" msgstr "አጥፋ" #: drakperm:127 #, fuzzy, c-format msgid "Delete selected rule" msgstr "የተመረጠው መለያ ምልክቶች አጥፉ" #: drakperm:128 drakups:300 drakups:362 drakups:382 #, c-format msgid "Edit" msgstr "አስተካክል" #: drakperm:241 #, c-format msgid "browse" msgstr "ቃኝ" #: drakperm:246 #, fuzzy, c-format msgid "user" msgstr "ጥቅም" #: drakperm:246 #, c-format msgid "group" msgstr "መድረክ" #: drakperm:246 #, c-format msgid "other" msgstr "ሌላ" #: drakperm:249 #, c-format msgid "Other" msgstr "ሌላ" #: drakperm:251 #, c-format msgid "Read" msgstr "አንብብ" #. -PO: here %s will be either "user", "group" or "other" #: drakperm:254 #, fuzzy, c-format msgid "Enable \"%s\" to read the file" msgstr "ለፋይል %s መጻፍ አልተቻለም" #: drakperm:258 #, c-format msgid "Write" msgstr "ይጻፍ" #. -PO: here %s will be either "user", "group" or "other" #: drakperm:261 #, fuzzy, c-format msgid "Enable \"%s\" to write the file" msgstr "ለፋይል %s መጻፍ አልተቻለም" #: drakperm:265 #, c-format msgid "Execute" msgstr "አስኪድ" #. -PO: here %s will be either "user", "group" or "other" #: drakperm:268 #, fuzzy, c-format msgid "Enable \"%s\" to execute the file" msgstr "ለፋይል %s መጻፍ አልተቻለም" #: drakperm:271 #, fuzzy, c-format msgid "Sticky-bit" msgstr "8 _bit PCM" #: drakperm:271 #, c-format msgid "" "Used for directory:\n" " only owner of directory or file in this directory can delete it" msgstr "" #: drakperm:272 #, fuzzy, c-format msgid "Set-UID" msgstr "ቋንቋን &ይምረጡ" #: drakperm:272 #, c-format msgid "Use owner id for execution" msgstr "" #: drakperm:273 #, fuzzy, c-format msgid "Set-GID" msgstr "ቋንቋን &ይምረጡ" #: drakperm:273 #, c-format msgid "Use group id for execution" msgstr "" #: drakperm:290 #, c-format msgid "User:" msgstr "ተጠቃሚ፦" #: drakperm:291 #, c-format msgid "Group:" msgstr "የውይይት መድረክ፦" #: drakperm:295 #, c-format msgid "Current user" msgstr "የአሁኑ ተጠቃሚ" #: drakperm:296 #, c-format msgid "When checked, owner and group will not be changed" msgstr "" #: drakperm:306 #, c-format msgid "Path selection" msgstr "የመንገድ ምርጫ" #: drakperm:326 #, c-format msgid "Property" msgstr "ፀባይ" #: drakperm:376 #, c-format msgid "" "The first character of the path must be a slash (\"/\"):\n" "\"%s\"" msgstr "" #: drakperm:386 #, c-format msgid "Both the username and the group must valid!" msgstr "" #: drakperm:387 #, c-format msgid "User: %s" msgstr "" #: drakperm:388 #, c-format msgid "Group: %s" msgstr "" #: draksec:54 #, c-format msgid "ALL" msgstr "ሁሉም" #: draksec:55 #, c-format msgid "LOCAL" msgstr "የቅርብ" #: draksec:56 #, c-format msgid "NONE" msgstr "ምንም" #: draksec:57 #, c-format msgid "Default" msgstr "ቀዳሚ" #: draksec:58 #, c-format msgid "Ignore" msgstr "ይተዉ" #: draksec:91 #, fuzzy, c-format msgid "Security Level and Checks" msgstr "የደህንነት ደረጃ፦" #: draksec:114 #, c-format msgid "Configure authentication required to access Mandriva tools" msgstr "" #: draksec:117 #, c-format msgid "No password" msgstr "ሚስጢራዊ ቃል የለም" #: draksec:118 #, c-format msgid "Root password" msgstr "" #: draksec:119 #, c-format msgid "User password" msgstr "" #: draksec:149 draksec:204 #, fuzzy, c-format msgid "Software Management" msgstr "ማውጫዎች &አስተዳዳሪ" #: draksec:150 #, fuzzy, c-format msgid "Mandriva Update" msgstr "Mandriva Online" #: draksec:151 #, fuzzy, c-format msgid "Software Media Manager" msgstr "ማውጫዎች &አስተዳዳሪ" #: draksec:152 #, c-format msgid "Configure 3D Desktop effects" msgstr "" #: draksec:153 #, fuzzy, c-format msgid "Graphical Server Configuration" msgstr "ፈጣን ደብዳቤ" #: draksec:154 #, fuzzy, c-format msgid "Mouse Configuration" msgstr "በእጅ ምርጫ" #: draksec:155 #, fuzzy, c-format msgid "Keyboard Configuration" msgstr "የመረብ ምርጫ" #: draksec:156 #, fuzzy, c-format msgid "UPS Configuration" msgstr "ተስተካክሎ የተቀመጠውን ባዕድ መነሻ ጥቀስ" #: draksec:157 #, fuzzy, c-format msgid "Network Configuration" msgstr "የማስተካከያው አራሚ" #: draksec:158 #, c-format msgid "Hosts definitions" msgstr "" #: draksec:159 #, fuzzy, c-format msgid "Network Center" msgstr "መረብ እና ኢንተርኔት" #: draksec:160 #, c-format msgid "Wireless Network Roaming" msgstr "" #: draksec:161 #, c-format msgid "VPN" msgstr "" #: draksec:162 #, fuzzy, c-format msgid "Proxy Configuration" msgstr "የማስተካከያው አራሚ" #: draksec:163 #, fuzzy, c-format msgid "Connection Sharing" msgstr "ግንኙነት" #: draksec:165 #, c-format msgid "Backups" msgstr "" #: draksec:167 logdrake:52 #, fuzzy, c-format msgid "Logs" msgstr "Log" #: draksec:168 #, c-format msgid "Services" msgstr "አገልግሎቶች" #: draksec:169 #, fuzzy, c-format msgid "Users" msgstr "ተጠቃሚ" #: draksec:171 #, fuzzy, c-format msgid "Boot Configuration" msgstr "የማስተካከያው አራሚ" #: draksec:205 #, c-format msgid "Hardware" msgstr "ሀርድዌር" #: draksec:206 #, fuzzy, c-format msgid "Network" msgstr "ምርጫዎችን አስገባ" #: draksec:207 #, c-format msgid "System" msgstr "ሲስተም" #: draksec:208 #, c-format msgid "Boot" msgstr "ጀምር" #: draksound:48 #, c-format msgid "No Sound Card detected!" msgstr "" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX #: draksound:51 #, c-format msgid "" "No Sound Card has been detected on your machine. Please verify that a Linux-" "supported Sound Card is correctly plugged in.\n" "\n" "\n" "You can visit our hardware database at:\n" "\n" "\n" "http://www.mandrivalinux.com/en/hardware.php3" msgstr "" #: draksound:58 #, c-format msgid "" "\n" "\n" "\n" "Note: if you've an ISA PnP sound card, you'll have to use the alsaconf or " "the sndconfig program. Just type \"alsaconf\" or \"sndconfig\" in a console." msgstr "" #: draksplash:33 #, c-format msgid "X coordinate of text box" msgstr "" #: draksplash:34 #, c-format msgid "Y coordinate of text box" msgstr "" #: draksplash:35 #, c-format msgid "Text box width" msgstr "" #: draksplash:36 #, fuzzy, c-format msgid "Text box height" msgstr "በእርዝማኔው ልክ" #: draksplash:37 #, c-format msgid "" "The progress bar X coordinate\n" "of its upper left corner" msgstr "" #: draksplash:38 #, c-format msgid "" "The progress bar Y coordinate\n" "of its upper left corner" msgstr "" #: draksplash:39 #, fuzzy, c-format msgid "The width of the progress bar" msgstr "&ስታቱስ ባር አሳይ" #: draksplash:40 #, fuzzy, c-format msgid "The height of the progress bar" msgstr "&ስታቱስ ባር አሳይ" #: draksplash:41 #, c-format msgid "X coordinate of the text" msgstr "" #: draksplash:42 #, c-format msgid "Y coordinate of the text" msgstr "" #: draksplash:43 #, c-format msgid "Text box transparency" msgstr "" #: draksplash:44 #, c-format msgid "Progress box transparency" msgstr "" #: draksplash:45 #, c-format msgid "Text size" msgstr "" #: draksplash:62 #, c-format msgid "Progress Bar" msgstr "" #: draksplash:65 #, c-format msgid "Choose progress bar color 1" msgstr "" #: draksplash:67 #, c-format msgid "Choose progress bar color 2" msgstr "" #: draksplash:69 #, c-format msgid "Choose progress bar background" msgstr "" #: draksplash:72 #, c-format msgid "Gradient type" msgstr "" #: draksplash:78 #, fuzzy, c-format msgid "Text" msgstr "ጽሑፉን ብቻ" #: draksplash:80 #, c-format msgid "Choose text color" msgstr "" #: draksplash:83 draksplash:102 #, c-format msgid "Choose picture" msgstr "" #: draksplash:87 #, c-format msgid "Silent bootsplash" msgstr "" #: draksplash:90 #, c-format msgid "Choose text zone color" msgstr "" #: draksplash:93 #, c-format msgid "Text color" msgstr "የጽሑፍ ቀለም" #: draksplash:97 #, c-format msgid "Background color" msgstr "የመደቡ ቀለም" #: draksplash:103 #, c-format msgid "Verbose bootsplash" msgstr "" #: draksplash:110 #, fuzzy, c-format msgid "Theme name" msgstr "የጭብጥ ስም" #: draksplash:115 #, c-format msgid "Final resolution" msgstr "" #: draksplash:119 #, c-format msgid "Display logo on Console" msgstr "" #: draksplash:124 #, fuzzy, c-format msgid "Save theme" msgstr "ጭብጥን አስቀምጥ (_S)" #: draksplash:187 #, c-format msgid "Please enter a theme name" msgstr "" #: draksplash:190 #, c-format msgid "Please select a splash image" msgstr "" #: draksplash:193 #, fuzzy, c-format msgid "saving Bootsplash theme..." msgstr "ጭብጥን በሌላ ስም _አስቀምጥ..." #: draksplash:202 #, c-format msgid "Unable to load image file %s" msgstr "" #: draksplash:213 #, c-format msgid "choose image" msgstr "ምስል ይመረጥ" #: draksplash:228 #, c-format msgid "Color selection" msgstr "" #: drakups:71 #, c-format msgid "Connected through a serial port or an usb cable" msgstr "" #: drakups:72 #, c-format msgid "Manual configuration" msgstr "በእጅ ምርጫ" #: drakups:78 #, fuzzy, c-format msgid "Add an UPS device" msgstr "አምድ በኋላ ጨምር" #: drakups:81 #, c-format msgid "" "Welcome to the UPS configuration utility.\n" "\n" "Here, you'll add a new UPS to your system.\n" msgstr "" #: drakups:88 #, c-format msgid "" "We're going to add an UPS device.\n" "\n" "Do you want to autodetect UPS devices connected to this machine or to " "manually select them?" msgstr "" #: drakups:91 #, c-format msgid "Autodetection" msgstr "" #: drakups:99 harddrake2:381 #, fuzzy, c-format msgid "Detection in progress" msgstr "የተሻሻለ ዊድጌት ፍጠር" #: drakups:118 drakups:157 logdrake:457 logdrake:463 #, c-format msgid "Congratulations" msgstr "እንኳን ደስ ያለዎ!" #: drakups:119 #, c-format msgid "The wizard successfully added the following UPS devices:" msgstr "" #: drakups:121 #, c-format msgid "No new UPS devices was found" msgstr "" #: drakups:126 drakups:138 #, fuzzy, c-format msgid "UPS driver configuration" msgstr "ተስተካክሎ የተቀመጠውን ባዕድ መነሻ ጥቀስ" #: drakups:126 #, c-format msgid "Please select your UPS model." msgstr "" #: drakups:127 #, fuzzy, c-format msgid "Manufacturer / Model:" msgstr "<b>ሞዴል</b>፦ %s<br>" #: drakups:138 #, c-format msgid "" "We are configuring the \"%s\" UPS from \"%s\".\n" "Please fill in its name, its driver and its port." msgstr "" #: drakups:143 #, c-format msgid "Name:" msgstr "ስም፦" #: drakups:143 #, fuzzy, c-format msgid "The name of your ups" msgstr "ኤ-መልዕክት አድራሻዎ" #: drakups:144 #, c-format msgid "Driver:" msgstr "" #: drakups:144 #, c-format msgid "The driver that manages your ups" msgstr "" #: drakups:145 #, c-format msgid "Port:" msgstr "ፖርት፦" #: drakups:147 #, c-format msgid "The port on which is connected your ups" msgstr "" #: drakups:157 #, c-format msgid "The wizard successfully configured the new \"%s\" UPS device." msgstr "" #: drakups:248 #, c-format msgid "UPS devices" msgstr "" #: drakups:249 drakups:268 drakups:284 harddrake2:89 harddrake2:115 #: harddrake2:122 #, c-format msgid "Name" msgstr "ስም" #: drakups:249 harddrake2:137 #, c-format msgid "Driver" msgstr "" #: drakups:249 harddrake2:55 #, c-format msgid "Port" msgstr "ፖርት" #: drakups:267 #, c-format msgid "UPS users" msgstr "" #: drakups:283 #, fuzzy, c-format msgid "Access Control Lists" msgstr "አፈንጋጭ እንግዳ መቆጣጠሪያ" #: drakups:284 #, c-format msgid "IP address" msgstr "IP አድራሻ" #: drakups:284 #, fuzzy, c-format msgid "IP mask" msgstr "የማተሚያ IP" #: drakups:296 #, c-format msgid "Rules" msgstr "" #: drakups:297 #, c-format msgid "Action" msgstr "ተግባር" #: drakups:297 harddrake2:86 #, c-format msgid "Level" msgstr "ደረጃ" #: drakups:297 #, fuzzy, c-format msgid "ACL name" msgstr "የፋይል ስም" #: drakups:297 finish-install:179 #, c-format msgid "Password" msgstr "ሚስጢራዊ ቃል" #: drakups:329 #, fuzzy, c-format msgid "UPS Management" msgstr "የመምሪያው ጉባኤ" #: drakups:333 drakups:342 #, c-format msgid "DrakUPS" msgstr "" #: drakups:339 #, c-format msgid "Welcome to the UPS configuration tools" msgstr "" #: drakxtv:67 #, c-format msgid "No TV Card detected!" msgstr "" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX #: drakxtv:69 #, c-format msgid "" "No TV Card has been detected on your machine. Please verify that a Linux-" "supported Video/TV Card is correctly plugged in.\n" "\n" "\n" "You can visit our hardware database at:\n" "\n" "\n" "http://www.mandrivalinux.com/en/hardware.php3" msgstr "" #: finish-install:56 #, c-format msgid "Keyboard" msgstr "የፊደል ገበታ" #: finish-install:57 #, fuzzy, c-format msgid "Please, choose your keyboard layout." msgstr "እባክዎ ሀገሮን ይምረጡ።" #: finish-install:177 finish-install:195 finish-install:207 #, c-format msgid "Encrypted home partition" msgstr "" #: finish-install:177 #, c-format msgid "Please enter a password for the %s user" msgstr "" #: finish-install:180 #, c-format msgid "Password (again)" msgstr "ሚስጢራዊ ቃል (እንደገና)" #: finish-install:195 #, c-format msgid "Creating encrypted home partition" msgstr "" #: finish-install:207 #, c-format msgid "Formatting encrypted home partition" msgstr "" #: harddrake2:29 #, c-format msgid "Alternative drivers" msgstr "" #: harddrake2:30 #, c-format msgid "the list of alternative drivers for this sound card" msgstr "" #: harddrake2:32 harddrake2:124 #, c-format msgid "Bus" msgstr "" #: harddrake2:33 #, c-format msgid "" "this is the physical bus on which the device is plugged (eg: PCI, USB, ...)" msgstr "" #: harddrake2:35 harddrake2:150 #, c-format msgid "Bus identification" msgstr "" #: harddrake2:36 #, c-format msgid "" "- PCI and USB devices: this lists the vendor, device, subvendor and " "subdevice PCI/USB ids" msgstr "" #: harddrake2:38 #, fuzzy, c-format msgid "Location on the bus" msgstr "መረጃ በ%s መጠቀሚያ ፕሮግራም ላይ" #: harddrake2:39 #, c-format msgid "" "- pci devices: this gives the PCI slot, device and function of this card\n" "- eide devices: the device is either a slave or a master device\n" "- scsi devices: the scsi bus and the scsi device ids" msgstr "" #: harddrake2:42 #, c-format msgid "Drive capacity" msgstr "" #: harddrake2:42 #, c-format msgid "special capacities of the driver (burning ability and or DVD support)" msgstr "" #: harddrake2:43 #, c-format msgid "Description" msgstr "መግለጫ" #: harddrake2:43 #, c-format msgid "this field describes the device" msgstr "" #: harddrake2:44 #, fuzzy, c-format msgid "Old device file" msgstr "ጥሩው የፋይል ዓይነት" #: harddrake2:45 #, c-format msgid "old static device name used in dev package" msgstr "" #. -PO: here "module" is the "jargon term" for a kernel driver #: harddrake2:48 #, c-format msgid "Module" msgstr "አቅድ" #: harddrake2:48 #, c-format msgid "the module of the GNU/Linux kernel that handles the device" msgstr "" #: harddrake2:49 #, fuzzy, c-format msgid "Extended partitions" msgstr "አዲስ ሰነድ ፍጠር" #: harddrake2:49 #, fuzzy, c-format msgid "the number of extended partitions" msgstr "የዐምድ ብዛት" #: harddrake2:50 #, fuzzy, c-format msgid "Geometry" msgstr "እንደገና ይሞከር" #: harddrake2:50 #, c-format msgid "Cylinder/head/sectors geometry of the disk" msgstr "" #: harddrake2:51 #, fuzzy, c-format msgid "Disk controller" msgstr "የSMBus ተቆጣጣሪዎች" #: harddrake2:51 #, c-format msgid "the disk controller on the host side" msgstr "" #: harddrake2:52 #, fuzzy, c-format msgid "Identifier" msgstr "የኔ ቇቋንቋዎች" #: harddrake2:52 #, c-format msgid "usually the device serial number" msgstr "" #: harddrake2:53 #, c-format msgid "Media class" msgstr "" #: harddrake2:53 #, fuzzy, c-format msgid "class of hardware device" msgstr "እንደ ሀርድዌር አሳይ" #: harddrake2:54 harddrake2:87 #, c-format msgid "Model" msgstr "ሞዴል" #: harddrake2:54 #, fuzzy, c-format msgid "hard disk model" msgstr "የማተሚያውን ሞዴል ምረጡ" #: harddrake2:55 #, fuzzy, c-format msgid "network printer port" msgstr "ማተሚያውን አልተገኘም።" #: harddrake2:56 #, fuzzy, c-format msgid "Primary partitions" msgstr "የጽሑፍ ማስተካከያ" #: harddrake2:56 #, fuzzy, c-format msgid "the number of the primary partitions" msgstr "የዐምድ ብዛት" #: harddrake2:57 harddrake2:92 #, fuzzy, c-format msgid "Vendor" msgstr "መለያ አስገባ" #: harddrake2:57 #, fuzzy, c-format msgid "the vendor name of the device" msgstr "ህገ ወጥ የዶሴ ስም" #: harddrake2:58 #, c-format msgid "PCI domain" msgstr "" #: harddrake2:58 #, fuzzy, c-format msgid "the PCI domain of the device" msgstr "ህገ ወጥ የዶሴ ስም" #: harddrake2:59 #, c-format msgid "Bus PCI #" msgstr "" #: harddrake2:59 #, c-format msgid "the PCI bus on which the device is plugged" msgstr "" #: harddrake2:60 #, fuzzy, c-format msgid "PCI device #" msgstr "መሳሪያ" #: harddrake2:60 #, fuzzy, c-format msgid "PCI device number" msgstr "የዐምድ ብዛት" #: harddrake2:61 #, c-format msgid "PCI function #" msgstr "" #: harddrake2:61 #, fuzzy, c-format msgid "PCI function number" msgstr "የፋይል ስም" #: harddrake2:62 #, fuzzy, c-format msgid "Vendor ID" msgstr "መለያ አስገባ" #: harddrake2:62 #, c-format msgid "this is the standard numerical identifier of the vendor" msgstr "" #: harddrake2:63 #, fuzzy, c-format msgid "Device ID" msgstr "መሳሪያ: " #: harddrake2:63 #, fuzzy, c-format msgid "this is the numerical identifier of the device" msgstr "ህገ ወጥ የዶሴ ስም" #: harddrake2:64 #, c-format msgid "Sub vendor ID" msgstr "" #: harddrake2:64 #, c-format msgid "this is the minor numerical identifier of the vendor" msgstr "" #: harddrake2:65 #, fuzzy, c-format msgid "Sub device ID" msgstr "መሳሪያ" #: harddrake2:65 #, fuzzy, c-format msgid "this is the minor numerical identifier of the device" msgstr "ህገ ወጥ የዶሴ ስም" #: harddrake2:66 #, fuzzy, c-format msgid "Device USB ID" msgstr "መሳሪያ: " #: harddrake2:66 #, c-format msgid ".." msgstr "" #: harddrake2:70 #, c-format msgid "Bogomips" msgstr "Bogomips" #: harddrake2:70 #, c-format msgid "" "the GNU/Linux kernel needs to run a calculation loop at boot time to " "initialize a timer counter. Its result is stored as bogomips as a way to " "\"benchmark\" the cpu." msgstr "" #: harddrake2:71 #, fuzzy, c-format msgid "Cache size" msgstr "የፊደል ቅርጽ መጠን፦" #: harddrake2:71 #, c-format msgid "size of the (second level) cpu cache" msgstr "" #. -PO: here "comas" is the medical coma, not the lexical coma!! #: harddrake2:74 #, fuzzy, c-format msgid "Coma bug" msgstr "የሶፍትዌሩን ችግር ዘግብ" #: harddrake2:74 #, c-format msgid "whether this cpu has the Cyrix 6x86 Coma bug" msgstr "" #: harddrake2:75 #, fuzzy, c-format msgid "Cpuid family" msgstr "የፊደል ቅርጽ ቤተሰብ" #: harddrake2:75 #, c-format msgid "family of the cpu (eg: 6 for i686 class)" msgstr "" #: harddrake2:76 #, c-format msgid "Cpuid level" msgstr "Cpuid ደረጃ" #: harddrake2:76 #, c-format msgid "information level that can be obtained through the cpuid instruction" msgstr "" #: harddrake2:77 #, c-format msgid "Frequency (MHz)" msgstr "" #: harddrake2:77 #, c-format msgid "" "the CPU frequency in MHz (Megahertz which in first approximation may be " "coarsely assimilated to number of instructions the cpu is able to execute " "per second)" msgstr "" #: harddrake2:78 #, c-format msgid "Flags" msgstr "ባንዲራዎች፦" #: harddrake2:78 #, c-format msgid "CPU flags reported by the kernel" msgstr "" #: harddrake2:79 #, fuzzy, c-format msgid "Fdiv bug" msgstr "የሶፍትዌሩን ችግር ዘግብ" #: harddrake2:80 #, c-format msgid "" "Early Intel Pentium chips manufactured have a bug in their floating point " "processor which did not achieve the required precision when performing a " "Floating point DIVision (FDIV)" msgstr "" #: harddrake2:81 #, fuzzy, c-format msgid "Is FPU present" msgstr "ባትሪ፦ የለም" #: harddrake2:81 #, c-format msgid "yes means the processor has an arithmetic coprocessor" msgstr "" #: harddrake2:82 #, c-format msgid "Whether the FPU has an irq vector" msgstr "" #: harddrake2:82 #, c-format msgid "yes means the arithmetic coprocessor has an exception vector attached" msgstr "" #: harddrake2:83 #, fuzzy, c-format msgid "F00f bug" msgstr "የሶፍትዌሩን ችግር ዘግብ" #: harddrake2:83 #, c-format msgid "early pentiums were buggy and freezed when decoding the F00F bytecode" msgstr "" #: harddrake2:84 #, fuzzy, c-format msgid "Halt bug" msgstr "የሶፍትዌሩን ችግር ዘግብ" #: harddrake2:85 #, c-format msgid "" "Some of the early i486DX-100 chips cannot reliably return to operating mode " "after the \"halt\" instruction is used" msgstr "" #: harddrake2:86 #, c-format msgid "sub generation of the cpu" msgstr "" #: harddrake2:87 #, c-format msgid "generation of the cpu (eg: 8 for Pentium III, ...)" msgstr "" #: harddrake2:88 #, c-format msgid "Model name" msgstr "የሞዴል ስም" #: harddrake2:88 #, c-format msgid "official vendor name of the cpu" msgstr "" #: harddrake2:89 #, fuzzy, c-format msgid "the name of the CPU" msgstr "Name=ሲፒዩ" #: harddrake2:90 #, fuzzy, c-format msgid "Processor ID" msgstr "መለያ አስገባ" #: harddrake2:90 #, fuzzy, c-format msgid "the number of the processor" msgstr "የዐምድ ብዛት" #: harddrake2:91 #, fuzzy, c-format msgid "Model stepping" msgstr "<b>ሞዴል</b>፦ %s<br>" #: harddrake2:91 #, c-format msgid "stepping of the cpu (sub model (generation) number)" msgstr "" #: harddrake2:92 #, fuzzy, c-format msgid "the vendor name of the processor" msgstr "ሰነዶች/Word Processor" #: harddrake2:93 #, c-format msgid "Write protection" msgstr "መጻፍ ከልካይ" #: harddrake2:93 #, c-format msgid "" "the WP flag in the CR0 register of the cpu enforce write protection at the " "memory page level, thus enabling the processor to prevent unchecked kernel " "accesses to user memory (aka this is a bug guard)" msgstr "" #: harddrake2:97 #, fuzzy, c-format msgid "Floppy format" msgstr "ሠንጠረዥ ፎርማቱ" #: harddrake2:97 #, c-format msgid "format of floppies supported by the drive" msgstr "" #: harddrake2:101 #, fuzzy, c-format msgid "EIDE/SCSI channel" msgstr "/ደረጃ/አልፋ/Add Alpha Channel" #: harddrake2:102 #, fuzzy, c-format msgid "Disk identifier" msgstr "የኔ ቇቋንቋዎች" #: harddrake2:102 #, c-format msgid "usually the disk serial number" msgstr "" #: harddrake2:103 #, fuzzy, c-format msgid "Logical unit number" msgstr "ህገ ወጥ የዶሴ ስም" #: harddrake2:103 #, c-format msgid "" "the SCSI target number (LUN). SCSI devices connected to a host are uniquely " "identified by a\n" "channel number, a target id and a logical unit number" msgstr "" #. -PO: here, "size" is the size of the ram chip (eg: 128Mo, 256Mo, ...) #: harddrake2:110 #, fuzzy, c-format msgid "Installed size" msgstr "ሲስተም ትከል" #: harddrake2:110 #, c-format msgid "Installed size of the memory bank" msgstr "" #: harddrake2:111 #, fuzzy, c-format msgid "Enabled Size" msgstr "ይቻል" #: harddrake2:111 #, c-format msgid "Enabled size of the memory bank" msgstr "" #: harddrake2:112 harddrake2:121 #, c-format msgid "Type" msgstr "አይነት" #: harddrake2:112 #, fuzzy, c-format msgid "type of the memory device" msgstr "የምስክር አካል አይደለም" #: harddrake2:113 #, c-format msgid "Speed" msgstr "ፍጥነት" #: harddrake2:113 #, c-format msgid "Speed of the memory bank" msgstr "" #: harddrake2:114 #, fuzzy, c-format msgid "Bank connections" msgstr "ተጨማሪ ፕሮግራሞችን ተቆጣጠሩ" #: harddrake2:115 #, c-format msgid "Socket designation of the memory bank" msgstr "" #: harddrake2:119 #, fuzzy, c-format msgid "Device file" msgstr "ጥሩው የፋይል ዓይነት" #: harddrake2:119 #, c-format msgid "" "the device file used to communicate with the kernel driver for the mouse" msgstr "" #: harddrake2:120 #, c-format msgid "Emulated wheel" msgstr "" #: harddrake2:120 #, fuzzy, c-format msgid "whether the wheel is emulated or not" msgstr "አኃዞች (ከክፍተት ጋር)" #: harddrake2:121 #, fuzzy, c-format msgid "the type of the mouse" msgstr "Comment=የመክፈቻና የመፈለጊያው ምርጫዎች" #: harddrake2:122 #, fuzzy, c-format msgid "the name of the mouse" msgstr "Name=ሲፒዩ" #: harddrake2:123 #, fuzzy, c-format msgid "Number of buttons" msgstr "የዐምድ ብዛት" #: harddrake2:123 #, c-format msgid "the number of buttons the mouse has" msgstr "" #: harddrake2:124 #, c-format msgid "the type of bus on which the mouse is connected" msgstr "" #: harddrake2:125 #, c-format msgid "Mouse protocol used by X11" msgstr "" #: harddrake2:125 #, c-format msgid "the protocol that the graphical desktop use with the mouse" msgstr "" #: harddrake2:132 harddrake2:141 harddrake2:148 harddrake2:156 harddrake2:337 #, fuzzy, c-format msgid "Identification" msgstr "ማስታወቂያ" #: harddrake2:133 harddrake2:149 #, c-format msgid "Connection" msgstr "ግንኙነት" #: harddrake2:142 #, fuzzy, c-format msgid "Performances" msgstr "ምርጫዎች" #: harddrake2:143 #, fuzzy, c-format msgid "Bugs" msgstr "ኦገስት" #: harddrake2:144 #, c-format msgid "FPU" msgstr "" #: harddrake2:151 #, c-format msgid "Device" msgstr "መሳሪያ" #: harddrake2:152 #, fuzzy, c-format msgid "Partitions" msgstr "የጽሑፍ ማስተካከያ" #: harddrake2:157 #, c-format msgid "Features" msgstr "" #. -PO: please keep all "/" characters !!! #: harddrake2:180 logdrake:78 #, c-format msgid "/_Options" msgstr "/ምርጫዎች (_O)" #: harddrake2:181 harddrake2:210 logdrake:80 #, c-format msgid "/_Help" msgstr "/መረጃ (_H)" #: harddrake2:185 #, fuzzy, c-format msgid "/Autodetect _printers" msgstr "ሁሉም ማተሚያዎች" #: harddrake2:186 #, c-format msgid "/Autodetect _modems" msgstr "" #: harddrake2:187 #, c-format msgid "/Autodetect _jaz drives" msgstr "" #: harddrake2:188 #, c-format msgid "/Autodetect parallel _zip drives" msgstr "" #: harddrake2:192 #, fuzzy, c-format msgid "Hardware Configuration" msgstr "የመረብ ምርጫ" #: harddrake2:199 #, c-format msgid "/_Quit" msgstr "/ውጣ (_Q)" #: harddrake2:212 #, fuzzy, c-format msgid "/_Fields description" msgstr "መግለጫ የለም" #: harddrake2:214 #, fuzzy, c-format msgid "Harddrake help" msgstr "የመረጃ &ማውጫ" #: harddrake2:215 #, fuzzy, c-format msgid "" "Description of the fields:\n" "\n" msgstr "መግለጫ የለም" #: harddrake2:223 #, fuzzy, c-format msgid "Select a device!" msgstr "የመረብ ዕቃ" #: harddrake2:223 #, c-format msgid "" "Once you've selected a device, you'll be able to see the device information " "in fields displayed on the right frame (\"Information\")" msgstr "" #: harddrake2:229 #, c-format msgid "/_Report Bug" msgstr "/የሶፍትዌርን ችግር ዘግብ (_R)" #: harddrake2:231 #, c-format msgid "/_About..." msgstr "/ስለ... (_A)" #: harddrake2:234 #, fuzzy, c-format msgid "Harddrake" msgstr "የመረጃ &ማውጫ" #: harddrake2:238 #, c-format msgid "This is HardDrake, a %s hardware configuration tool." msgstr "" #: harddrake2:271 #, fuzzy, c-format msgid "Detected hardware" msgstr "የሀርድዌር ተመልካች" #: harddrake2:274 scannerdrake:286 #, c-format msgid "Information" msgstr "መረጃ" #: harddrake2:276 #, c-format msgid "Set current driver options" msgstr "" #: harddrake2:283 #, fuzzy, c-format msgid "Run config tool" msgstr "የመስሪያውን ፍንጭ አሳይ" #: harddrake2:303 #, c-format msgid "" "Click on a device in the left tree in order to display its information here." msgstr "" #: harddrake2:324 notify-x11-free-driver-switch:13 #, c-format msgid "unknown" msgstr "ያልታወቀ" #: harddrake2:325 #, c-format msgid "Unknown" msgstr "ያልታወቀ" #: harddrake2:345 #, c-format msgid "Misc" msgstr "የተለያየ" #: harddrake2:429 #, c-format msgid "secondary" msgstr "" #: harddrake2:429 #, c-format msgid "primary" msgstr "" #: harddrake2:433 #, c-format msgid "burner" msgstr "" #: harddrake2:433 #, c-format msgid "DVD" msgstr "ዲቪዲ" #: harddrake2:485 #, c-format msgid "Unknown/Others" msgstr "ያልታወቀ/ሌሎች" #: harddrake2:527 #, c-format msgid "The following packages need to be installed:\n" msgstr "" #: localedrake:38 #, c-format msgid "LocaleDrake" msgstr "" #: localedrake:44 #, fuzzy, c-format msgid "You should install the following packages: %s" msgstr "ምርጫዎችን ማስቀመጥ አልተቻለም" #. -PO: the following is used to combine packages names. eg: "initscripts, harddrake, yudit" #: localedrake:47 #, c-format msgid ", " msgstr "" #: logdrake:51 #, fuzzy, c-format msgid "Mandriva Linux Tools Logs" msgstr "/መሣሪያዎች/የነበረው ቀለሞች" #: logdrake:65 #, c-format msgid "Show only for the selected day" msgstr "" #: logdrake:72 #, c-format msgid "/File/_New" msgstr "/ፋይል (F)/አዲስ (_N)" #: logdrake:72 #, c-format msgid "<control>N" msgstr "<control>N" #: logdrake:73 #, c-format msgid "/File/_Open" msgstr "/ፋይል (F)/ክፈት (_O)" #: logdrake:73 #, c-format msgid "<control>O" msgstr "<control>O" #: logdrake:74 #, c-format msgid "/File/_Save" msgstr "/ፋይል (F)/አስቀምጥ (_S)" #: logdrake:74 #, c-format msgid "<control>S" msgstr "<control>S" #: logdrake:75 #, c-format msgid "/File/Save _As" msgstr "/ፋይል (F)/በሌላ ስም አስቀምጥ... (_A)" #: logdrake:76 #, c-format msgid "/File/-" msgstr "/ፋይል (F)/-" #: logdrake:79 #, c-format msgid "/Options/Test" msgstr "/ምርጫዎች (O)/ፈተና" #: logdrake:81 #, c-format msgid "/Help/_About..." msgstr "/መረጃ (H)/ስለ... (_A)" #: logdrake:110 #, c-format msgid "" "_:this is the auth.log log file\n" "Authentication" msgstr "" #: logdrake:111 #, c-format msgid "" "_:this is the user.log log file\n" "User" msgstr "" #: logdrake:112 #, c-format msgid "" "_:this is the /var/log/messages log file\n" "Messages" msgstr "" #: logdrake:113 #, c-format msgid "" "_:this is the /var/log/syslog log file\n" "Syslog" msgstr "" #: logdrake:117 #, c-format msgid "search" msgstr "ፈለግ" #: logdrake:129 #, c-format msgid "A tool to monitor your logs" msgstr "" #: logdrake:131 #, c-format msgid "Settings" msgstr "ስየማዎች" #: logdrake:134 #, c-format msgid "Matching" msgstr "" #: logdrake:135 #, fuzzy, c-format msgid "but not matching" msgstr "ማንበብ አልቻለም፦ " #: logdrake:138 #, c-format msgid "Choose file" msgstr "ፋይል ይምረጡ" #: logdrake:150 #, c-format msgid "Calendar" msgstr "ቀን መቁጠሪያ" #: logdrake:159 #, c-format msgid "Content of the file" msgstr "የፋይሉ ይዘት" #: logdrake:163 logdrake:407 #, c-format msgid "Mail alert" msgstr "የመልዕክት ማንቂያ" #: logdrake:170 #, c-format msgid "The alert wizard has failed unexpectedly:" msgstr "" #: logdrake:174 #, c-format msgid "Save" msgstr "አስቀምጥ" #: logdrake:222 #, fuzzy, c-format msgid "please wait, parsing file: %s" msgstr "እባክዎ ያለ ሰነድን ይምረጡ" #: logdrake:244 #, c-format msgid "Sorry, log file isn't available!" msgstr "" #: logdrake:292 #, c-format msgid "Error while opening \"%s\" log file: %s\n" msgstr "" #: logdrake:385 #, c-format msgid "Apache World Wide Web Server" msgstr "" #: logdrake:386 #, fuzzy, c-format msgid "Domain Name Resolver" msgstr "ህገ ወጥ የዶሴ ስም" #: logdrake:387 #, c-format msgid "Ftp Server" msgstr "የFTP ተጠሪ" #: logdrake:388 #, fuzzy, c-format msgid "Postfix Mail Server" msgstr "የመልዕክት ተጠሪ ሚስጢራዊ ቃል ያስፈልጋል" #: logdrake:389 #, fuzzy, c-format msgid "Samba Server" msgstr "የሳምባ ተጠሪ" #: logdrake:390 #, fuzzy, c-format msgid "SSH Server" msgstr "ስለተጠሪ መረጃ" #: logdrake:391 #, c-format msgid "Webmin Service" msgstr "" #: logdrake:392 #, c-format msgid "Xinetd Service" msgstr "" #: logdrake:401 #, c-format msgid "Configure the mail alert system" msgstr "" #: logdrake:402 #, c-format msgid "Stop the mail alert system" msgstr "" #: logdrake:410 #, fuzzy, c-format msgid "Mail alert configuration" msgstr "ፈጣን ደብዳቤ" #: logdrake:411 #, c-format msgid "" "Welcome to the mail configuration utility.\n" "\n" "Here, you'll be able to set up the alert system.\n" msgstr "" #: logdrake:414 #, c-format msgid "What do you want to do?" msgstr "ምን ማድረግ ይፈልጋሉ?" #: logdrake:421 #, fuzzy, c-format msgid "Services settings" msgstr "የአሁኑን ምርጫዎች" #: logdrake:422 #, c-format msgid "" "You will receive an alert if one of the selected services is no longer " "running" msgstr "" #: logdrake:429 #, fuzzy, c-format msgid "Load setting" msgstr "ምርጫዎች ጫን (_L)" #: logdrake:430 #, c-format msgid "You will receive an alert if the load is higher than this value" msgstr "" #: logdrake:431 #, c-format msgid "" "_: load here is a noun, the load of the system\n" "Load" msgstr "" #: logdrake:436 #, fuzzy, c-format msgid "Alert configuration" msgstr "የማስተካከያው አራሚ" #: logdrake:437 #, c-format msgid "Please enter your email address below " msgstr "" #: logdrake:438 #, c-format msgid "and enter the name (or the IP) of the SMTP server you wish to use" msgstr "" #: logdrake:445 #, c-format msgid "\"%s\" neither is a valid email nor is an existing local user!" msgstr "" #: logdrake:450 #, c-format msgid "" "\"%s\" is a local user, but you did not select a local smtp, so you must use " "a complete email address!" msgstr "" #: logdrake:457 #, c-format msgid "The wizard successfully configured the mail alert." msgstr "" #: logdrake:463 #, c-format msgid "The wizard successfully disabled the mail alert." msgstr "" #: logdrake:522 #, c-format msgid "Save as.." msgstr "እንደ...ያስቀምጡ" #: notify-x11-free-driver-switch:15 #, c-format msgid "" "The proprietary driver for your graphic card can not be found, the system is " "now using the free software driver (%s)." msgstr "" #: scannerdrake:51 #, c-format msgid "" "SANE packages need to be installed to use scanners.\n" "\n" "Do you want to install the SANE packages?" msgstr "" #: scannerdrake:55 #, c-format msgid "Aborting Scannerdrake." msgstr "" #: scannerdrake:60 #, c-format msgid "" "Could not install the packages needed to set up a scanner with Scannerdrake." msgstr "" #: scannerdrake:61 #, c-format msgid "Scannerdrake will not be started now." msgstr "" #: scannerdrake:67 scannerdrake:505 #, c-format msgid "Searching for configured scanners..." msgstr "" #: scannerdrake:71 scannerdrake:509 #, c-format msgid "Searching for new scanners..." msgstr "" #: scannerdrake:79 scannerdrake:531 #, c-format msgid "Re-generating list of configured scanners..." msgstr "" #: scannerdrake:101 #, c-format msgid "The %s is not supported by this version of %s." msgstr "" #: scannerdrake:104 scannerdrake:115 #, fuzzy, c-format msgid "Confirmation" msgstr "ስየማ" #: scannerdrake:104 #, c-format msgid "%s found on %s, configure it automatically?" msgstr "" #: scannerdrake:116 #, c-format msgid "%s is not in the scanner database, configure it manually?" msgstr "" #: scannerdrake:130 #, fuzzy, c-format msgid "Scanner configuration" msgstr "የማስተካከያው አራሚ" #: scannerdrake:131 #, c-format msgid "Select a scanner model (Detected model: %s, Port: %s)" msgstr "" #: scannerdrake:133 #, c-format msgid "Select a scanner model (Detected model: %s)" msgstr "" #: scannerdrake:134 #, c-format msgid "Select a scanner model (Port: %s)" msgstr "" #: scannerdrake:136 scannerdrake:139 #, c-format msgid " (UNSUPPORTED)" msgstr "" #: scannerdrake:142 #, fuzzy, c-format msgid "The %s is not supported under Linux." msgstr "አይደለም" #: scannerdrake:169 scannerdrake:183 #, c-format msgid "Do not install firmware file"