aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/diff/engine.php
blob: bc21b3b9ba39c79b69e583bff21a6295ffa81dff (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
<?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.
*
*/

/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
	exit;
}

/**
* Code from pear.php.net, Text_Diff-1.1.0 package
* http://pear.php.net/package/Text_Diff/ (native engine)
*
* Modified by phpBB Limited to meet our coding standards
* and being able to integrate into phpBB
*
* Class used internally by Text_Diff to actually compute the diffs. This
* class is implemented using native PHP code.
*
* The algorithm used here is mostly lifted from the perl module
* Algorithm::Diff (version 1.06) by Ned Konz, which is available at:
* http://www.perl.com/CPAN/authors/id/N/NE/NEDKONZ/Algorithm-Diff-1.06.zip
*
* More ideas are taken from: http://www.ics.uci.edu/~eppstein/161/960229.html
*
* Some ideas (and a bit of code) are taken from analyze.c, of GNU
* diffutils-2.7, which can be found at:
* ftp://gnudist.gnu.org/pub/gnu/diffutils/diffutils-2.7.tar.gz
*
* Some ideas (subdivision by NCHUNKS > 2, and some optimizations) are from
* Geoffrey T. Dairiki <dairiki@dairiki.org>. The original PHP version of this
* code was written by him, and is used/adapted with his permission.
*
* Copyright 2004-2008 The Horde Project (http://www.horde.org/)
*
* @author  Geoffrey T. Dairiki <dairiki@dairiki.org>
* @package diff
*
* @access private
*/
class diff_engine
{
	/**
	* If set to true we trim all lines before we compare them. This ensures that sole space/tab changes do not trigger diffs.
	*/
	var $skip_whitespace_changes = true;

	function diff(&$from_lines, &$to_lines, $preserve_cr = true)
	{
		// Remove empty lines...
		// If preserve_cr is true, we basically only change \r\n and bare \r to \n to get the same carriage returns for both files
		// If it is false, we try to only use \n once per line and ommit all empty lines to be able to get a proper data diff

		if (is_array($from_lines))
		{
			$from_lines = implode("\n", $from_lines);
		}

		if (is_array($to_lines))
		{
			$to_lines = implode("\n", $to_lines);
		}

		if ($preserve_cr)
		{
			$from_lines = explode("\n", str_replace("\r", "\n", str_replace("\r\n", "\n", $from_lines)));
			$to_lines = explode("\n", str_replace("\r", "\n", str_replace("\r\n", "\n", $to_lines)));
		}
		else
		{
			$from_lines = explode("\n", preg_replace('#[\n\r]+#', "\n", $from_lines));
			$to_lines = explode("\n", preg_replace('#[\n\r]+#', "\n", $to_lines));
		}

		$n_from = sizeof($from_lines);
		$n_to = sizeof($to_lines);

		$this->xchanged = $this->ychanged = $this->xv = $this->yv = $this->xind = $this->yind = array();
		unset($this->seq, $this->in_seq, $this->lcs);

		// Skip leading common lines.
		for ($skip = 0; $skip < $n_from && $skip < $n_to; $skip++)
		{
			if (trim($from_lines[$skip]) !== trim($to_lines[$skip]))
			{
				break;
			}
			$this->xchanged[$skip] = $this->ychanged[$skip] = false;
		}

		// Skip trailing common lines.
		$xi = $n_from;
		$yi = $n_to;

		for ($endskip = 0; --$xi > $skip && --$yi > $skip; $endskip++)
		{
			if (trim($from_lines[$xi]) !== trim($to_lines[$yi]))
			{
				break;
			}
			$this->xchanged[$xi] = $this->ychanged[$yi] = false;
		}

		// Ignore lines which do not exist in both files.
		for ($xi = $skip; $xi < $n_from - $endskip; $xi++)
		{
			if ($this->skip_whitespace_changes) $xhash[trim($from_lines[$xi])] = 1; else $xhash[$from_lines[$xi]] = 1;
		}

		for ($yi = $skip; $yi < $n_to - $endskip; $yi++)
		{
			$line = ($this->skip_whitespace_changes) ? trim($to_lines[$yi]) : $to_lines[$yi];

			if (($this->ychanged[$yi] = empty($xhash[$line])))
			{
				continue;
			}
			$yhash[$line] = 1;
			$this->yv[] = $line;
			$this->yind[] = $yi;
		}

		for ($xi = $skip; $xi < $n_from - $endskip; $xi++)
		{
			$line = ($this->skip_whitespace_changes) ? trim($from_lines[$xi]) : $from_lines[$xi];

			if (($this->xchanged[$xi] = empty($yhash[$line])))
			{
				continue;
			}
			$this->xv[] = $line;
			$this->xind[] = $xi;
		}

		// Find the LCS.
		$this->_compareseq(0, sizeof($this->xv), 0, sizeof($this->yv));

		// Merge edits when possible.
		if ($this->skip_whitespace_changes)
		{
			$from_lines_clean = array_map('trim', $from_lines);
			$to_lines_clean = array_map('trim', $to_lines);

			$this->_shift_boundaries($from_lines_clean, $this->xchanged, $this->ychanged);
			$this->_shift_boundaries($to_lines_clean, $this->ychanged, $this->xchanged);

			unset($from_lines_clean, $to_lines_clean);
		}
		else
		{
			$this->_shift_boundaries($from_lines, $this->xchanged, $this->ychanged);
			$this->_shift_boundaries($to_lines, $this->ychanged, $this->xchanged);
		}

		// Compute the edit operations.
		$edits = array();
		$xi = $yi = 0;

		while ($xi < $n_from || $yi < $n_to)
		{
			// Skip matching "snake".
			$copy = array();

			while ($xi < $n_from && $yi < $n_to && !$this->xchanged[$xi] && !$this->ychanged[$yi])
			{
				$copy[] = $from_lines[$xi++];
				$yi++;
			}

			if ($copy)
			{
				$edits[] = new diff_op_copy($copy);
			}

			// Find deletes & adds.
			$delete = array();
			while ($xi < $n_from && $this->xchanged[$xi])
			{
				$delete[] = $from_lines[$xi++];
			}

			$add = array();
			while ($yi < $n_to && $this->ychanged[$yi])
			{
				$add[] = $to_lines[$yi++];
			}

			if ($delete && $add)
			{
				$edits[] = new diff_op_change($delete, $add);
			}
			else if ($delete)
			{
				$edits[] = new diff_op_delete($delete);
			}
			else if ($add)
			{
				$edits[] = new diff_op_add($add);
			}
		}

		return $edits;
	}

	/**
	* Divides the Largest Common Subsequence (LCS) of the sequences (XOFF,
	* XLIM) and (YOFF, YLIM) into NCHUNKS approximately equally sized segments.
	*
	* Returns (LCS, PTS).  LCS is the length of the LCS. PTS is an array of
	* NCHUNKS+1 (X, Y) indexes giving the diving points between sub
	* sequences.  The first sub-sequence is contained in (X0, X1), (Y0, Y1),
	* the second in (X1, X2), (Y1, Y2) and so on.  Note that (X0, Y0) ==
	* (XOFF, YOFF) and (X[NCHUNKS], Y[NCHUNKS]) == (XLIM, YLIM).
	*
	* This function assumes that the first lines of the specified portions of
	* the two files do not match, and likewise that the last lines do not
	* match.  The caller must trim matching lines from the beginning and end
	* of the portions it is going to specify.
	*/
	function _diag($xoff, $xlim, $yoff, $ylim, $nchunks)
	{
		$flip = false;

		if ($xlim - $xoff > $ylim - $yoff)
		{
			// Things seems faster (I'm not sure I understand why) when the shortest sequence is in X.
			$flip = true;
			list($xoff, $xlim, $yoff, $ylim) = array($yoff, $ylim, $xoff, $xlim);
		}

		if ($flip)
		{
			for ($i = $ylim - 1; $i >= $yoff; $i--)
			{
				$ymatches[$this->xv[$i]][] = $i;
			}
		}
		else
		{
			for ($i = $ylim - 1; $i >= $yoff; $i--)
			{
				$ymatches[$this->yv[$i]][] = $i;
			}
		}

		$this->lcs = 0;
		$this->seq[0]= $yoff - 1;
		$this->in_seq = array();
		$ymids[0] = array();

		$numer = $xlim - $xoff + $nchunks - 1;
		$x = $xoff;

		for ($chunk = 0; $chunk < $nchunks; $chunk++)
		{
			if ($chunk > 0)
			{
				for ($i = 0; $i <= $this->lcs; $i++)
				{
					$ymids[$i][$chunk - 1] = $this->seq[$i];
				}
			}

			$x1 = $xoff + (int)(($numer + ($xlim - $xoff) * $chunk) / $nchunks);

			for (; $x < $x1; $x++)
			{
				$line = $flip ? $this->yv[$x] : $this->xv[$x];
				if (empty($ymatches[$line]))
				{
					continue;
				}
				$matches = $ymatches[$line];

				reset($matches);
				while (list(, $y) = each($matches))
				{
					if (empty($this->in_seq[$y]))
					{
						$k = $this->_lcs_pos($y);
						$ymids[$k] = $ymids[$k - 1];
						break;
					}
				}

				// no reset() here
				while (list(, $y) = each($matches))
				{
					if ($y > $this->seq[$k - 1])
					{
						// Optimization: this is a common case: next match is just replacing previous match.
						$this->in_seq[$this->seq[$k]] = false;
						$this->seq[$k] = $y;
						$this->in_seq[$y] = 1;
					}
					else if (empty($this->in_seq[$y]))
					{
						$k = $this->_lcs_pos($y);
						$ymids[$k] = $ymids[$k - 1];
					}
				}
			}
		}

		$seps[] = $flip ? array($yoff, $xoff) : array($xoff, $yoff);
		$ymid = $ymids[$this->lcs];

		for ($n = 0; $n < $nchunks - 1; $n++)
		{
			$x1 = $xoff + (int)(($numer + ($xlim - $xoff) * $n) / $nchunks);
			$y1 = $ymid[$n] + 1;
			$seps[] = $flip ? array($y1, $x1) : array($x1, $y1);
		}
		$seps[] = $flip ? array($ylim, $xlim) : array($xlim, $ylim);

		return array($this->lcs, $seps);
	}

	function _lcs_pos($ypos)
	{
		$end = $this->lcs;

		if ($end == 0 || $ypos > $this->seq[$end])
		{
			$this->seq[++$this->lcs] = $ypos;
			$this->in_seq[$ypos] = 1;
			return $this->lcs;
		}

		$beg = 1;
		while ($beg < $end)
		{
			$mid = (int)(($beg + $end) / 2);
			if ($ypos > $this->seq[$mid])
			{
				$beg = $mid + 1;
			}
			else
			{
				$end = $mid;
			}
		}

		$this->in_seq[$this->seq[$end]] = false;
		$this->seq[$end] = $ypos;
		$this->in_seq[$ypos] = 1;

		return $end;
	}

	/**
	* Finds LCS of two sequences.
	*
	* The results are recorded in the vectors $this->{x,y}changed[], by
	* storing a 1 in the element for each line that is an insertion or
	* deletion (ie. is not in the LCS).
	*
	* The subsequence of file 0 is (XOFF, XLIM) and likewise for file 1.
	*
	* Note that XLIM, YLIM are exclusive bounds.  All line numbers are
	* origin-0 and discarded lines are not counted.
	*/
	function _compareseq($xoff, $xlim, $yoff, $ylim)
	{
		// Slide down the bottom initial diagonal.
		while ($xoff < $xlim && $yoff < $ylim && $this->xv[$xoff] == $this->yv[$yoff])
		{
			++$xoff;
			++$yoff;
		}

		// Slide up the top initial diagonal.
		while ($xlim > $xoff && $ylim > $yoff && $this->xv[$xlim - 1] == $this->yv[$ylim - 1])
		{
			--$xlim;
			--$ylim;
		}

		if ($xoff == $xlim || $yoff == $ylim)
		{
			$lcs = 0;
		}
		else
		{
			// This is ad hoc but seems to work well.
			// $nchunks = sqrt(min($xlim - $xoff, $ylim - $yoff) / 2.5);
			// $nchunks = max(2,min(8,(int)$nchunks));
			$nchunks = min(7, $xlim - $xoff, $ylim - $yoff) + 1;
			list($lcs, $seps) = $this->_diag($xoff, $xlim, $yoff, $ylim, $nchunks);
		}

		if ($lcs == 0)
		{
			// X and Y sequences have no common subsequence: mark all changed.
			while ($yoff < $ylim)
			{
				$this->ychanged[$this->yind[$yoff++]] = 1;
			}

			while ($xoff < $xlim)
			{
				$this->xchanged[$this->xind[$xoff++]] = 1;
			}
		}
		else
		{
			// Use the partitions to split this problem into subproblems.
			reset($seps);
			$pt1 = $seps[0];

			while ($pt2 = next($seps))
			{
				$this->_compareseq($pt1[0], $pt2[0], $pt1[1], $pt2[1]);
				$pt1 = $pt2;
			}
		}
	}

	/**
	* Adjusts inserts/deletes of identical lines to join changes as much as possible.
	*
	* We do something when a run of changed lines include a line at one end
	* and has an excluded, identical line at the other.  We are free to
	* choose which identical line is included. 'compareseq' usually chooses
	* the one at the beginning, but usually it is cleaner to consider the
	* following identical line to be the "change".
	*
	* This is extracted verbatim from analyze.c (GNU diffutils-2.7).
	*/
	function _shift_boundaries($lines, &$changed, $other_changed)
	{
		$i = 0;
		$j = 0;

		$len = sizeof($lines);
		$other_len = sizeof($other_changed);

		while (1)
		{
			// Scan forward to find the beginning of another run of
			// changes. Also keep track of the corresponding point in the other file.
			//
			// Throughout this code, $i and $j are adjusted together so that
			// the first $i elements of $changed and the first $j elements of
			// $other_changed both contain the same number of zeros (unchanged lines).
			//
			// Furthermore, $j is always kept so that $j == $other_len or $other_changed[$j] == false.
			while ($j < $other_len && $other_changed[$j])
			{
				$j++;
			}

			while ($i < $len && ! $changed[$i])
			{
				$i++;
				$j++;

				while ($j < $other_len && $other_changed[$j])
				{
					$j++;
				}
			}

			if ($i == $len)
			{
				break;
			}

			$start = $i;

			// Find the end of this run of changes.
			while (++$i < $len && $changed[$i])
			{
				continue;
			}

			do
			{
				// Record the length of this run of changes, so that we can later determine whether the run has grown.
				$runlength = $i - $start;

				// Move the changed region back, so long as the previous unchanged line matches the last changed one.
				// This merges with previous changed regions.
				while ($start > 0 && $lines[$start - 1] == $lines[$i - 1])
				{
					$changed[--$start] = 1;
					$changed[--$i] = false;

					while ($start > 0 && $changed[$start - 1])
					{
						$start--;
					}

					while ($other_changed[--$j])
					{
						continue;
					}
				}

				// Set CORRESPONDING to the end of the changed run, at the last point where it corresponds to a changed run in the
				// other file. CORRESPONDING == LEN means no such point has been found.
				$corresponding = $j < $other_len ? $i : $len;

				// Move the changed region forward, so long as the first changed line matches the following unchanged one.
				// This merges with following changed regions.
				// Do this second, so that if there are no merges, the changed region is moved forward as far as possible.
				while ($i < $len && $lines[$start] == $lines[$i])
				{
					$changed[$start++] = false;
					$changed[$i++] = 1;

					while ($i < $len && $changed[$i])
					{
						$i++;
					}

					$j++;
					if ($j < $other_len && $other_changed[$j])
					{
						$corresponding = $i;
						while ($j < $other_len && $other_changed[$j])
						{
							$j++;
						}
					}
				}
			}
			while ($runlength != $i - $start);

			// If possible, move the fully-merged run of changes back to a corresponding run in the other file.
			while ($corresponding < $i)
			{
				$changed[--$start] = 1;
				$changed[--$i] = 0;

				while ($other_changed[--$j])
				{
					continue;
				}
			}
		}
	}
}
n2413'>2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392
# Translation of network-tools to Romanian
# Copyright (c) 1999-2009 Mandriva
#
# Vă rugăm să nu actualizaţi fișierul, cu excepția cazului în care sînteți
# sigur de calitatea traducerii dumneavoastră, de gramatică și de ortografie.
# Acestea din urmă sînt de prea multe ori aproximative.
# Corectarea lor ulterioară nu are nici un alt rezultat decît acela de
# pierdere de timp pentru toata lumea.
#
# VĂ RUGĂM SĂ RESPECTAȚI SEMNELE DE PUNCTUAȚIE ALE LIMBII ROMÂNE!
#
# Nu suprimați spațiul care urmează unui semn de punctuație de sfîrșit de
# frază; trebuie respectată versiunea originală. În acest caz, este foarte
# probabil ca programul să afișeze un mesaj la sfîrșit. Suprimînd acel spațiu,
# cele două cuvintele vor fi afișate legat.
#
# Traduceți de manieră INTELIGENTĂ (de ce nu și prin comparație cu alte
# traduceri ale acestui fișier în alte limbi) și nu cuvînt cu cuvînt. Unele
# astfel de traduceri nu au nici un sens în limba română.
#
# ATENȚIE LA FONTURILE UTILIZATE! Pentru a reda corect diacriticele folosiți
# disponerea tastaturii românească standard, codarea de caractere UTF-8 și
# asigurați-vă că fonturile utilizate sînt cu virgulițe, NU CU SEDILE!
# Exemplu:
#          font incorect (cu sedile): şŞ ţŢ
#          font corect (cu virgule): șȘ țȚ
#
# Pentru a vă asigura că folosiți fonturile corecte, vizitați:
#          http://i18n.ro/Fonturi_romanesti/testare
#
# Vă mulțumim pentru înțelegere.
#                                                       Echipa de traducători,
#                                                       www.Mandrivausers.ro
#
# Traducători de-a lungul timpului:
#
# Florin GRAD <florin@mandriva.com>, 1999-2000
# Dragos Marian BARBU <dragosb@softhome.net>, 2000
# Ovidiu CONSTANTIN <ovidiu.constantin@gmx.net>, 2002, 2003
# Harald ERSCH <harald@ersch.ro>,2003
# Cosmin HUMENIUC <cosmin@mandrivausers.ro>, 2008
# Florin Catalin RUSSEN <cfrussen@yahoo.co.uk>, 2008, 2009
#
msgid ""
msgstr ""
"Project-Id-Version: drakx-net 7.1\n"
"POT-Creation-Date: 2009-02-13 20:39-0200\n"
"PO-Revision-Date: 2009-02-21 00:25+0100\n"
"Last-Translator: Florin Cătălin RUSSEN <cfrussen@yahoo.co.uk>\n"
"Language-Team: Mandrivausers.ro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: ../bin/drakconnect-old:45
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Configurație rețea (%d adaptoare)"

#: ../bin/drakconnect-old:64 ../bin/drakinvictus:105
#, c-format
msgid "Interface"
msgstr "Interfață"

#: ../bin/drakconnect-old:64 ../bin/drakconnect-old:208 ../bin/drakhosts:196
#: ../lib/network/connection/ethernet.pm:134 ../lib/network/netconnect.pm:614
#: ../lib/network/vpn/openvpn.pm:221
#, c-format
msgid "IP address"
msgstr "Adresă IP"

#: ../bin/drakconnect-old:64 ../bin/drakids:258
#: ../lib/network/netconnect.pm:458
#, c-format
msgid "Protocol"
msgstr "Protocol"

#: ../bin/drakconnect-old:64 ../lib/network/netconnect.pm:444
#, c-format
msgid "Driver"
msgstr "Pilot (driver)"

#: ../bin/drakconnect-old:64
#, c-format
msgid "State"
msgstr "Stare"

#: ../bin/drakconnect-old:79
#, c-format
msgid "Hostname: "
msgstr "Nume calculator:"

#: ../bin/drakconnect-old:81
#, c-format
msgid "Configure hostname..."
msgstr "Configurare de nume de calculator..."

#: ../bin/drakconnect-old:95 ../bin/drakconnect-old:171
#, c-format
msgid "LAN configuration"
msgstr "Configurație LAN"

#: ../bin/drakconnect-old:100
#, c-format
msgid "Configure Local Area Network..."
msgstr "Configurare rețea locală (Local Area Network)"

#: ../bin/drakconnect-old:106 ../bin/draknfs:189 ../bin/net_applet:188
#, c-format
msgid "Help"
msgstr "Ajutor"

#: ../bin/drakconnect-old:108 ../bin/drakinvictus:140
#, c-format
msgid "Apply"
msgstr "Aplică"

#: ../bin/drakconnect-old:110 ../bin/drakconnect-old:263
#: ../bin/draknetprofile:133 ../bin/net_monitor:388
#, c-format
msgid "Cancel"
msgstr "Anulează"

#: ../bin/drakconnect-old:111 ../bin/drakconnect-old:178
#: ../bin/drakconnect-old:265 ../bin/draknetprofile:135 ../bin/net_monitor:389
#, c-format
msgid "Ok"
msgstr "OK"

#: ../bin/drakconnect-old:113 ../bin/drakgw:345 ../bin/draknfs:582
#: ../bin/draksambashare:229 ../lib/network/connection_manager.pm:73
#: ../lib/network/connection_manager.pm:88
#: ../lib/network/connection_manager.pm:202
#: ../lib/network/connection_manager.pm:223
#: ../lib/network/connection_manager.pm:339 ../lib/network/drakvpn.pm:49
#: ../lib/network/netcenter.pm:143 ../lib/network/netconnect.pm:185
#: ../lib/network/netconnect.pm:207 ../lib/network/netconnect.pm:304
#: ../lib/network/netconnect.pm:714 ../lib/network/thirdparty.pm:354
#: ../lib/network/thirdparty.pm:369
#, c-format
msgid "Please wait"
msgstr "Așteptați vă rog"

#: ../bin/drakconnect-old:115
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Aașteptați... Se activează configurația"

#: ../bin/drakconnect-old:141
#, c-format
msgid "Deactivate now"
msgstr "Dezactivează acum"

#: ../bin/drakconnect-old:141
#, c-format
msgid "Activate now"
msgstr "Activează acum"

#: ../bin/drakconnect-old:175
#, c-format
msgid ""
"You do not have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
msgstr ""
"Nu aveți configurată nici o interfață.\n"
"Le puteți configura prin clic pe butonul „Configurare”"

#: ../bin/drakconnect-old:189
#, c-format
msgid "LAN Configuration"
msgstr "Configurare LAN"

#: ../bin/drakconnect-old:201
#, c-format
msgid "Adapter %s: %s"
msgstr "Adaptor %s: %s"

#: ../bin/drakconnect-old:209 ../bin/drakgw:177
#: ../lib/network/connection/ethernet.pm:141
#, c-format
msgid "Netmask"
msgstr "Mască de rețea"

#: ../bin/drakconnect-old:210
#, c-format
msgid "Boot Protocol"
msgstr "Protocol de demaraj"

#: ../bin/drakconnect-old:211
#, c-format
msgid "Started on boot"
msgstr "Pornit la demaraj"

#: ../bin/drakconnect-old:212 ../lib/network/connection/ethernet.pm:152
#, c-format
msgid "DHCP client"
msgstr "Client DHCP"

#: ../bin/drakconnect-old:247
#, c-format
msgid ""
"This interface has not been configured yet.\n"
"Run the \"%s\" assistant from the Mandriva Linux Control Center"
msgstr ""
"Această interfață nu a fost configurată încă.\n"
"Lansați asistentul \"%s\" din centrul de control Mandriva Linux"

#: ../bin/drakconnect-old:247 ../bin/net_applet:104
#, c-format
msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
msgstr "Configurează o nouă interfață de rețea (LAN, ISDN, ADSL, ...)"

#: ../bin/drakconnect-old:273 ../bin/drakconnect-old:305
#: ../lib/network/drakconnect.pm:16
#, c-format
msgid "No IP"
msgstr "Fără adresă IP"

#: ../bin/drakconnect-old:306 ../lib/network/drakconnect.pm:17
#, c-format
msgid "No Mask"
msgstr "Fără mască"

#: ../bin/drakconnect-old:307 ../lib/network/drakconnect.pm:18
#, c-format
msgid "up"
msgstr "activat"

#: ../bin/drakconnect-old:307 ../lib/network/drakconnect.pm:18
#, c-format
msgid "down"
msgstr "dezactivat"

#: ../bin/drakgw:71
#, c-format
msgid "Internet Connection Sharing"
msgstr "Partajare de conexiune la Internet"

#: ../bin/drakgw:75
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
"this computer's Internet connection.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
"\n"
"Note: you need a dedicated Network Adapter to set up a Local Area Network "
"(LAN)."
msgstr ""
"Sînteți pe cale să vă configurați calculatorul pentru a-și partaja "
"conexiunea la Internet.\n"
"Cu această funcție, celelalte calculatoare din rețeaua locală vor putea "
"folosi conexiunea la Internet a acestui calculator.\n"
"\n"
"Înainte de a continua, asigurați-vă că ați configurat accesul la rețea/"
"Internet cu ajutorul lui drakconnect.\n"
"\n"
"Notă: aveți nevoie de o placă de rețea dedicată pentru rețeaua locală (LAN)."

#: ../bin/drakgw:91
#, c-format
msgid ""
"The setup of Internet Connection Sharing has already been done.\n"
"It's currently enabled.\n"
"\n"
"What would you like to do?"
msgstr ""
"Configurarea partajării conexiunii la Internet a fost făcută deja.\n"
"Acum este activată.\n"
"\n"
"Ce doriți să faceți?"

#: ../bin/drakgw:95
#, c-format
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
"\n"
"What would you like to do?"
msgstr ""
"Configurarea partajării conexiunii la Internet a fost făcută deja.\n"
"Acum este dezactivată.\n"
"\n"
"Ce doriți să faceți?"

#: ../bin/drakgw:101
#, c-format
msgid "Disable"
msgstr "Dezactivează"

#: ../bin/drakgw:101
#, c-format
msgid "Enable"
msgstr "Activează"

#: ../bin/drakgw:101
#, c-format
msgid "Reconfigure"
msgstr "Reconfigurează"

#: ../bin/drakgw:122
#, c-format
msgid "Please select the network interface directly connected to the internet."
msgstr "Selectați interfața de rețea conectată direct la Internet."

#: ../bin/drakgw:123 ../lib/network/netconnect.pm:360
#: ../lib/network/netconnect.pm:395
#, c-format
msgid "Net Device"
msgstr "Dispozitiv de rețea"

#: ../bin/drakgw:141
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
"\n"
"%s\n"
"\n"
"I am about to setup your Local Area Network with that adapter."
msgstr ""
"Există o singură placă de rețea configurată în sistemul dumneavoastră:\n"
"\n"
"%s\n"
"\n"
"Se va configura rețeaua locală folosind această placă."

#: ../bin/drakgw:152
#, c-format
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Alegeți care placă de rețea va fi conectată la rețeaua locală."

#: ../bin/drakgw:173
#, c-format
msgid "Local Area Network settings"
msgstr "Configurațiile rețelei locale"

#: ../bin/drakgw:176 ../lib/network/vpn/openvpn.pm:227
#, c-format
msgid "Local IP address"
msgstr "Adresă IP locală"

#: ../bin/drakgw:178
#, c-format
msgid "The internal domain name"
msgstr "Numele de domeniu intern"

#: ../bin/drakgw:184 ../bin/drakhosts:100 ../bin/drakhosts:245
#: ../bin/drakhosts:252 ../bin/drakhosts:259 ../bin/drakinvictus:72
#: ../bin/draknetprofile:140 ../bin/draknfs:91 ../bin/draknfs:112
#: ../bin/draknfs:280 ../bin/draknfs:427 ../bin/draknfs:429 ../bin/draknfs:432
#: ../bin/draknfs:524 ../bin/draknfs:531 ../bin/draknfs:599 ../bin/draknfs:606
#: ../bin/draknfs:613 ../bin/draksambashare:393 ../bin/draksambashare:400
#: ../bin/draksambashare:403 ../bin/draksambashare:455
#: ../bin/draksambashare:479 ../bin/draksambashare:552
#: ../bin/draksambashare:630 ../bin/draksambashare:697
#: ../bin/draksambashare:797 ../bin/draksambashare:804
#: ../bin/draksambashare:943 ../bin/draksambashare:1097
#: ../bin/draksambashare:1116 ../bin/draksambashare:1148
#: ../bin/draksambashare:1254 ../bin/draksambashare:1356
#: ../bin/draksambashare:1365 ../bin/draksambashare:1387
#: ../bin/draksambashare:1396 ../bin/draksambashare:1415
#: ../bin/draksambashare:1424 ../bin/draksambashare:1436
#: ../lib/network/connection/xdsl.pm:359
#: ../lib/network/connection_manager.pm:61
#: ../lib/network/connection_manager.pm:67
#: ../lib/network/connection_manager.pm:83
#: ../lib/network/connection_manager.pm:91
#: ../lib/network/connection_manager.pm:173
#: ../lib/network/connection_manager.pm:177 ../lib/network/drakvpn.pm:45
#: ../lib/network/drakvpn.pm:52 ../lib/network/ndiswrapper.pm:30
#: ../lib/network/ndiswrapper.pm:45 ../lib/network/ndiswrapper.pm:118
#: ../lib/network/ndiswrapper.pm:124 ../lib/network/netcenter.pm:218
#: ../lib/network/netconnect.pm:134 ../lib/network/netconnect.pm:187
#: ../lib/network/netconnect.pm:233 ../lib/network/netconnect.pm:274
#: ../lib/network/netconnect.pm:823 ../lib/network/thirdparty.pm:123
#: ../lib/network/thirdparty.pm:141 ../lib/network/thirdparty.pm:232
#: ../lib/network/thirdparty.pm:234 ../lib/network/thirdparty.pm:255
#, c-format
msgid "Error"
msgstr "Eroare"

#: ../bin/drakgw:184
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"S-a găsit un posibil conflict de adrese LAN în configurația curentă a %s!\n"

#: ../bin/drakgw:200
#, c-format
msgid "Domain Name Server (DNS) configuration"
msgstr "Configurația serverului de nume de domeniu (DNS)"

#: ../bin/drakgw:204
#, c-format
msgid "Use this gateway as domain name server"
msgstr "Folosește această pasarelă ca server de nume de domeniu"

#: ../bin/drakgw:205
#, c-format
msgid "The DNS Server IP"
msgstr "Adresa IP a serverulul DNS"

#: ../bin/drakgw:232
#, c-format
msgid ""
"DHCP Server Configuration.\n"
"\n"
"Here you can select different options for the DHCP server configuration.\n"
"If you do not know the meaning of an option, simply leave it as it is."
msgstr ""
"Configurația serverului DHCP.\n"
"\n"
"Acici puteți selecta diferite opțiuni pentru configurarea serverului DHCP.\n"
"Dacă nu cunoașteți semnificația unei opțiuni, lăsați-o nemodificată."

#: ../bin/drakgw:239
#, c-format
msgid "Use automatic configuration (DHCP)"
msgstr "Utilizează configurarea automată (DHCP)"

#: ../bin/drakgw:240
#, c-format
msgid "The DHCP start range"
msgstr "Domeniul DHCP de început"

#: ../bin/drakgw:241
#, c-format
msgid "The DHCP end range"
msgstr "Domeniul DHCP de sfîrșit"

#: ../bin/drakgw:242
#, c-format
msgid "The default lease (in seconds)"
msgstr "Perioadă standard (în secunde)"

#: ../bin/drakgw:243
#, c-format
msgid "The maximum lease (in seconds)"
msgstr "Perioadă maximă (în secunde)"

#: ../bin/drakgw:266
#, c-format
msgid "Proxy caching server (SQUID)"
msgstr "Server proxy de prestocare (SQUID)"

#: ../bin/drakgw:270
#, c-format
msgid "Use this gateway as proxy caching server"
msgstr "Utilizează această pasarelă ca server proxy de prestocare"

#: ../bin/drakgw:271
#, c-format
msgid "Admin mail"
msgstr "Email admin"

#: ../bin/drakgw:272
#, c-format
msgid "Visible hostname"
msgstr "Nume de gază vizibil"

#: ../bin/drakgw:273
#, c-format
msgid "Proxy port"
msgstr "Port proxy"

#: ../bin/drakgw:274
#, c-format
msgid "Cache size (MB)"
msgstr "Mărima memoriei tampon (Mo)"

#: ../bin/drakgw:293
#, c-format
msgid "Broadcast printer information"
msgstr "Difuzează informațiile imprimantei"

#: ../bin/drakgw:304
#, c-format
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
"Nu v-a fost detectată nici o placă de rețea în sistemul. Lansați unealta de "
"configurare a componentelor materiale."

#: ../bin/drakgw:310
#, c-format
msgid "Internet Connection Sharing is now enabled."
msgstr "Partajarea conexiunii la Internet este acum activată."

#: ../bin/drakgw:316
#, c-format
msgid "Internet Connection Sharing is now disabled."
msgstr "Partajarea conexiunii la Internet este acum dezactivată."

#: ../bin/drakgw:322
#, c-format
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP) and\n"
" a Transparent Proxy Cache server (SQUID)."
msgstr ""
"Totul a fost configurat.\n"
"Acum vă puteți partaja conexiunea la Internet cu celelalte calculatoare din "
"rețeaua locală, utilizînd configurarea automată a rețelei (DHCP) și\n"
" un server proxy de prestocare transparent (SQUID)."

#: ../bin/drakgw:345
#, c-format
msgid "Disabling servers..."
msgstr "Se dezactivează serverele..."

#: ../bin/drakgw:359
#, c-format
msgid "Firewalling configuration detected!"
msgstr "A fost detectată o configurație de parafoc (firewall)!"

#: ../bin/drakgw:360
#, c-format
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fixes after installation."
msgstr ""
"Avertisment! A fost detectată o configurație existentă de parafoc. Ar putea "
"fi nevoie de unele ajustări manuale după instalare."

#: ../bin/drakgw:365
#, c-format
msgid "Configuring..."
msgstr "Se configurează..."

#: ../bin/drakgw:366
#, c-format
msgid "Configuring firewall..."
msgstr "Se configurează parafocul..."

#: ../bin/drakhosts:100
#, c-format
msgid "Please add an host to be able to modify it."
msgstr "Adăugați o gazdă spre a o putea modifica."

#: ../bin/drakhosts:110
#, c-format
msgid "Please modify information"
msgstr "Modificați informațiile"

#: ../bin/drakhosts:111
#, c-format
msgid "Please delete information"
msgstr "Ștergeți informațiile"

#: ../bin/drakhosts:112
#, c-format
msgid "Please add information"
msgstr "Adăugați informații"

#: ../bin/drakhosts:116
#, c-format
msgid "IP address:"
msgstr "Adresă IP:"

#: ../bin/drakhosts:117
#, c-format
msgid "Host name:"
msgstr "Nume gazdă:"

#: ../bin/drakhosts:118
#, c-format
msgid "Host Aliases:"
msgstr "Aliasuri gazdă:"

#: ../bin/drakhosts:122 ../bin/drakhosts:128 ../bin/draksambashare:230
#: ../bin/draksambashare:251 ../bin/draksambashare:397
#: ../bin/draksambashare:626 ../bin/draksambashare:793
#, c-format
msgid "Error!"
msgstr "Eroare!"

#: ../bin/drakhosts:122
#, c-format
msgid "Please enter a valid IP address."
msgstr "Introduceți o adresă IP validă."

#: ../bin/drakhosts:128
#, c-format
msgid "Same IP is already in %s file."
msgstr "Același IP este deja prezent în fișierul %s."

#: ../bin/drakhosts:196 ../lib/network/connection/ethernet.pm:212
#, c-format
msgid "Host name"
msgstr "Nume gazdă"

#: ../bin/drakhosts:196
#, c-format
msgid "Host Aliases"
msgstr "Aliasuri gazdă"

#: ../bin/drakhosts:206 ../bin/drakhosts:236
#, c-format
msgid "Manage hosts definitions"
msgstr "Gestionează definițiile gazdei"

#: ../bin/drakhosts:222 ../bin/drakhosts:249 ../bin/draknfs:367
#, c-format
msgid "Modify entry"
msgstr "Modifică intrare"

#: ../bin/drakhosts:241 ../bin/draknfs:595 ../bin/draksambashare:1349
#: ../bin/draksambashare:1380 ../bin/draksambashare:1411
#, c-format
msgid "Add"
msgstr "Adaugă"

#: ../bin/drakhosts:242
#, c-format
msgid "Add entry"
msgstr "Adaugă intrare"

#: ../bin/drakhosts:245
#, c-format
msgid "Failed to add host."
msgstr "Gazda nu a putut fi adăugată."

#: ../bin/drakhosts:248 ../bin/draknfs:602 ../bin/draksambashare:1306
#: ../bin/draksambashare:1351 ../bin/draksambashare:1382
#: ../bin/draksambashare:1419
#, c-format
msgid "Modify"
msgstr "Modifică"

#: ../bin/drakhosts:252
#, c-format
msgid "Failed to Modify host."
msgstr "Gazda nu a putut fi modificată."

#: ../bin/drakhosts:255 ../bin/drakids:92 ../bin/drakids:101
#: ../bin/draknfs:609 ../bin/draksambashare:1307 ../bin/draksambashare:1359
#: ../bin/draksambashare:1390 ../bin/draksambashare:1427
#, c-format
msgid "Remove"
msgstr "Îndepărtează"

#: ../bin/drakhosts:259
#, c-format
msgid "Failed to remove host."
msgstr "Gazda nu a putut fi înlăturată."

#: ../bin/drakhosts:262 ../bin/drakinvictus:141 ../bin/draknetprofile:174
#: ../bin/net_applet:189 ../lib/network/drakroam.pm:118
#: ../lib/network/netcenter.pm:170
#, c-format
msgid "Quit"
msgstr "Terminare"

#: ../bin/drakids:28
#, c-format
msgid "Allowed addresses"
msgstr "Adrese permise"

#: ../bin/drakids:40 ../bin/drakids:68 ../bin/drakids:187 ../bin/drakids:196
#: ../bin/drakids:221 ../bin/drakids:230 ../bin/drakids:240 ../bin/drakids:332
#: ../bin/net_applet:132 ../bin/net_applet:278
#: ../lib/network/drakfirewall.pm:261 ../lib/network/drakfirewall.pm:265
#, c-format
msgid "Interactive Firewall"
msgstr "Parafoc interactiv"

#: ../bin/drakids:68 ../bin/drakids:187 ../bin/drakids:196 ../bin/drakids:221
#: ../bin/drakids:230 ../bin/drakids:240 ../bin/drakids:332
#: ../bin/net_applet:278
#, c-format
msgid "Unable to contact daemon"
msgstr "Nu se poate contacta demonul"

#: ../bin/drakids:79 ../bin/drakids:107
#, c-format
msgid "Log"
msgstr "Jurnal"

#: ../bin/drakids:83 ../bin/drakids:102
#, c-format
msgid "Allow"
msgstr "Permite"

#: ../bin/drakids:84 ../bin/drakids:93
#, c-format
msgid "Block"
msgstr "Blochează"

#: ../bin/drakids:85 ../bin/drakids:94 ../bin/drakids:103 ../bin/drakids:114
#: ../bin/drakids:127 ../bin/drakids:135 ../bin/draknfs:194
#: ../bin/net_monitor:122
#, c-format
msgid "Close"
msgstr "Închide"

#: ../bin/drakids:88
#, c-format
msgid "Allowed services"
msgstr "Servicii permise"

#: ../bin/drakids:97
#, c-format
msgid "Blocked services"
msgstr "Servicii blocate"

#: ../bin/drakids:111
#, c-format
msgid "Clear logs"
msgstr "Curăță jurnalele"

#: ../bin/drakids:112 ../bin/drakids:117
#, c-format
msgid "Blacklist"
msgstr "Lista neagră"

#: ../bin/drakids:113 ../bin/drakids:130
#, c-format
msgid "Whitelist"
msgstr "Lista albă"

#: ../bin/drakids:121
#, c-format
msgid "Remove from blacklist"
msgstr "Înlătură din lista neagră"

#: ../bin/drakids:122
#, c-format
msgid "Move to whitelist"
msgstr "Mută în lista albă"

#: ../bin/drakids:134
#, c-format
msgid "Remove from whitelist"
msgstr "Înlătură din lista albă"

#: ../bin/drakids:253
#, c-format
msgid "Date"
msgstr "Dată"

#: ../bin/drakids:254
#, c-format
msgid "Remote host"
msgstr "Gazdă la distanță"

#: ../bin/drakids:255 ../lib/network/vpn/openvpn.pm:115
#, c-format
msgid "Type"
msgstr "Tip"

#: ../bin/drakids:256 ../bin/drakids:289
#, c-format
msgid "Service"
msgstr "Serviciu"

#: ../bin/drakids:257
#, c-format
msgid "Network interface"
msgstr "Interfață de rețea"

#: ../bin/drakids:288
#, c-format
msgid "Application"
msgstr "Aplicație"

#: ../bin/drakids:290
#, c-format
msgid "Status"
msgstr "Stare"

#: ../bin/drakids:292
#, c-format
msgid "Allowed"
msgstr "Permis"

#: ../bin/drakids:293
#, c-format
msgid "Blocked"
msgstr "Blocat"

#: ../bin/drakinvictus:36
#, c-format
msgid "Invictus Firewall"
msgstr "Invictus Firewall"

#: ../bin/drakinvictus:53
#, c-format
msgid "Start as master"
msgstr "Pornește ca principal"

#: ../bin/drakinvictus:72
#, c-format
msgid "A password is required."
msgstr "Este nevoie de o parolă."

#: ../bin/drakinvictus:100
#, c-format
msgid ""
"This tool allows to set up network interfaces failover and firewall "
"replication."
msgstr ""
"Această unealtă permite configurarea interfețelor de rețea în mod redundant "
"și replicare de parafoc."

#: ../bin/drakinvictus:102
#, c-format
msgid "Network redundancy (leave empty if interface is not used)"
msgstr "Redundanță rețea (lăsați gol dacă interfața nu este folosită)"

#: ../bin/drakinvictus:105
#, c-format
msgid "Real address"
msgstr "Adresă reală"

#: ../bin/drakinvictus:105
#, c-format
msgid "Virtual shared address"
msgstr "Adresă virtuală partajată"

#: ../bin/drakinvictus:105
#, c-format
msgid "Virtual ID"
msgstr "Identifcator virtual"

#: ../bin/drakinvictus:110 ../lib/network/netconnect.pm:596
#: ../lib/network/vpn/vpnc.pm:56
#, c-format
msgid "Password"
msgstr "Parolă"

#: ../bin/drakinvictus:114
#, c-format
msgid "Firewall replication"
msgstr "Replicare de parafoc"

#: ../bin/drakinvictus:116
#, c-format
msgid "Synchronize firewall conntrack tables"
msgstr "Sincronizează tabelele conntrack din parafoc"

#: ../bin/drakinvictus:123
#, c-format
msgid "Synchronization network interface"
msgstr "Sincronizare interfață de rețea"

#: ../bin/drakinvictus:132
#, c-format
msgid "Connection mark bit"
msgstr "Bit de marcare a conexiunii"

#: ../bin/draknetprofile:37
#, c-format
msgid "Network profiles"
msgstr "Profile de rețea"

#: ../bin/draknetprofile:67
#, c-format
msgid "Profile"
msgstr "Profil"

#: ../bin/draknetprofile:126
#, c-format
msgid "New profile..."
msgstr "Profil nou..."

#: ../bin/draknetprofile:129
#, c-format
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one):"
msgstr ""
"Numele profilului ce va fi creat (noul profil va fi creat prin copierea "
"celui curent):"

#: ../bin/draknetprofile:140
#, c-format
msgid "The \"%s\" profile already exists!"
msgstr "Profilul \"%s\" există deja!"

#: ../bin/draknetprofile:156 ../bin/draknetprofile:158
#: ../lib/network/drakvpn.pm:70 ../lib/network/drakvpn.pm:100
#: ../lib/network/ndiswrapper.pm:103 ../lib/network/netconnect.pm:481
#, c-format
msgid "Warning"
msgstr "Avertisment"

#: ../bin/draknetprofile:156
#, c-format
msgid "You can not delete the default profile"
msgstr "Nu puteți șterge profilul implicit"

#: ../bin/draknetprofile:158
#, c-format
msgid "You can not delete the current profile"
msgstr "Nu puteți șterge profilul curent"

#: ../bin/draknetprofile:168
#, c-format
msgid ""
"This tool allows to activate an existing network profile, and to manage "
"(clone, delete) profiles."
msgstr ""
"Această unealtă permite activarea unui profil de rețea existent, cît și "
"gestionarea profilelor (precum clonarea, ștergerea)."

#: ../bin/draknetprofile:168
#, c-format
msgid "To modify a profile, you have to activate it first."
msgstr "Pentru a modifica un profil, trebuie mai întîi să-l activați."

#: ../bin/draknetprofile:171
#, c-format
msgid "Activate"
msgstr "Activează"

#: ../bin/draknetprofile:172
#, c-format
msgid "Clone"
msgstr "Clonează"

#: ../bin/draknetprofile:173
#, c-format
msgid "Delete"
msgstr "Șterge"

#: ../bin/draknfs:47
#, c-format
msgid "map root user as anonymous"
msgstr "asociază utilizatorul root cu anonymous"

#: ../bin/draknfs:48
#, c-format
msgid "map all users to anonymous user"
msgstr "asociază toți utilizatorii cu anonymous"

#: ../bin/draknfs:49
#, c-format
msgid "No user UID mapping"
msgstr "Nici o asociere de UID utilizator"

#: ../bin/draknfs:50
#, c-format
msgid "allow real remote root access"
msgstr "permite accesul de la distanță direct cu utilizatorul root"

#: ../bin/draknfs:64 ../bin/draknfs:65 ../bin/draknfs:66
#: ../bin/draksambashare:175 ../bin/draksambashare:176
#: ../bin/draksambashare:177
#, c-format
msgid "/_File"
msgstr "/_Fișier"

#: ../bin/draknfs:65 ../bin/draksambashare:176
#, c-format
msgid "/_Write conf"
msgstr "/_Scrie configurație"

#: ../bin/draknfs:66 ../bin/draksambashare:177
#, c-format
msgid "/_Quit"
msgstr "/_Terminare"

#: ../bin/draknfs:66 ../bin/draksambashare:177
#, c-format
msgid "<control>Q"
msgstr "<control>Q"

#: ../bin/draknfs:69 ../bin/draknfs:70 ../bin/draknfs:71
#, c-format
msgid "/_NFS Server"
msgstr "/Server _NFS"

#: ../bin/draknfs:70 ../bin/draksambashare:181
#, c-format
msgid "/_Restart"
msgstr "/_Repornire"

#: ../bin/draknfs:71 ../bin/draksambashare:182
#, c-format
msgid "/R_eload"
msgstr "/R_eîncărcare"

#: ../bin/draknfs:90
#, c-format
msgid "NFS server"
msgstr "Server NFS"

#: ../bin/draknfs:90
#, c-format
msgid "Restarting/Reloading NFS server..."
msgstr "Repornire/Reîncărcare server NFS..."

#: ../bin/draknfs:91
#, c-format
msgid "Error Restarting/Reloading NFS server"
msgstr "Eroare la repornirea/reîncărcarea serverului NFS"

#: ../bin/draknfs:107 ../bin/draksambashare:246
#, c-format
msgid "Directory Selection"
msgstr "Selectare director"

#: ../bin/draknfs:112 ../bin/draksambashare:251
#, c-format
msgid "Should be a directory."
msgstr "Ar trebui să fie un director."

#: ../bin/draknfs:143
#, c-format
msgid ""
"<span weight=\"bold\">NFS clients</span> may be specified in a number of "
"ways:\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">single host:</span> a host either by an "
"abbreviated name recognized be the resolver, fully qualified domain name, or "
"an IP address\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">netgroups:</span> NIS netgroups may be given "
"as @group.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">wildcards:</span> machine names may contain "
"the wildcard characters * and ?. For instance: *.cs.foo.edu  matches all  "
"hosts  in the domain cs.foo.edu.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">IP networks:</span> you can also export "
"directories to all hosts on an IP (sub-)network simultaneously. for example, "
"either `/255.255.252.0' or  `/22'  appended to the network base address "
"result.\n"
msgstr ""
"<span weight=\"bold\">Clienți NFS</span> pot fi specificați în mai multe "
"feluri:\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">gazdă unică:</span> o gazdă identificată fie "
"după numele abreviat recunoscut de serverul de nume, un nume de domeniu "
"calificat (FQDN) sau o adresă IP\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">numele grupului de rețea:</span> un nume de "
"grup de rețea NIS poate fi specificat cu formatul @group.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">metacaractere:</span> numele mașinilor pot "
"conține metacaracterele * și ?. Spre exemplu: *.cs.foo.edu  corespunde cu "
"toate gazdele din domeniul cs.foo.edu.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">rețele IP:</span> de altfel, se pot exporta "
"simultan directoare la toate gazdele dintr-o (sub-)rețea adăugînd o mască la "
"sfîrșitul adresei de (sub-)rețea. Exemplu: 192.168.1.0/255.255.255.0 sau "
"192.168.1.0/24\n"

#: ../bin/draknfs:158
#, c-format
msgid ""
"<span weight=\"bold\">User ID options</span>\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">map root user as anonymous:</span> map "
"requests from uid/gid 0 to the anonymous uid/gid (root_squash).\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">allow real remote root access:</span> turn "
"off root squashing. This option is mainly useful for diskless clients "
"(no_root_squash).\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">map all users to anonymous user:</span> map "
"all uids and gids to the anonymous  user (all_squash). Useful for NFS-"
"exported public FTP directories, news spool directories, etc. The opposite "
"option is no user UID mapping (no_all_squash), which is the default "
"setting.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">anonuid and anongid:</span> explicitly set "
"the uid and gid of the anonymous account.\n"
msgstr ""
"<span weight=\"bold\">Opțiuni identificator utilizator</span>\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">asociază utilizatorul root cu anonymous "
"(root_squash):</span> transformă cererile de la UID/GID 0 în UID/GID "
"anonime.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">permite accesul de la distanță direct cu "
"utilizatorul root (no_root_squash):</span> nu se transformă cererile UID/GID "
"0. Această opțiune este folosită în particular pentru stațiile de lucru ce "
"nu dispun de un disc local.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">asociază toți utilizatorii cu anonymous "
"(all_squash):</span> transformă toate UID/GID în utilizator anonim. Este "
"folositor pentru a exporta cu NFS directoare publice de FTP, directoare de "
"News, etc... Opțiunea inversă este no_all_squash, ce se aplică în mod "
"implicit.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">utilizatori si grup anonim (anonuid și "
"anongid):</span> aceaste opțiuni definesc implicit UID si GID al contului "
"anonymus.\n"

#: ../bin/draknfs:174
#, c-format
msgid "Synchronous access:"
msgstr "Acces sincron:"

#: ../bin/draknfs:175
#, c-format
msgid "Secured Connection:"
msgstr "Conexiune Securizată:"

#: ../bin/draknfs:176
#, c-format
msgid "Read-Only share:"
msgstr "Partaj protejat la scriere:"

#: ../bin/draknfs:177
#, c-format
msgid "Subtree checking:"
msgstr "Verificare de sub-directoare:"

#: ../bin/draknfs:179
#, c-format
msgid "Advanced Options"
msgstr "Opțiuni avansate"

#: ../bin/draknfs:180
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> this option requires that requests "
"originate on an internet port less than IPPORT_RESERVED (1024). This option "
"is on by default."
msgstr ""
"<span foreground=\"royalblue3\">%s :</span> această opțiune obligă ca "
"cererea să fie inițiată de pe un port IP inferior decît IPPORT_RESERVED"
"(1024). Această opțiune este activată în mod implicit."

#: ../bin/draknfs:181
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> allow either only read or both "
"read and write requests on this NFS volume. The default is to disallow any "
"request which changes the filesystem. This can also be made explicit by "
"using this option."
msgstr ""
"<span foreground=\"royalblue3\">%s :</span> permite fie numai citirea, fie "
"accesul în citire/scriere pe acest volum NFS. În mod implcit, cererile de "
"modificare sînt refuzate. Această opțiune activează în mod explicit aceast "
"comportament."

#: ../bin/draknfs:182
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> disallows the NFS server to "
"violate the NFS protocol and to reply to requests before any changes made by "
"these requests have been committed to stable storage (e.g. disc drive)."
msgstr ""
"<span foreground=\"royalblue3\">%s :</span> interzice serverului NFS să "
"violeze protocolul NFS, răspunzînd la cereri înainte ca acțiunile asociate "
"acestora să fie înregistrate pe mediul de stocare (ex: discul local)."

#: ../bin/draknfs:183
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> enable subtree checking which can "
"help improve security in some cases, but can decrease reliability. See "
"exports(5) man page for more details."
msgstr ""
"<span foreground=\"royalblue3\">%s</span> activează verificarea sub-"
"directoarelor, ce permite ameliorarea secutității în unele cazuri, dar poate "
"afecta fiabilitatea. Consultați pagina de manual exports(5) pentru mai multe "
"detalii."

#: ../bin/draknfs:188 ../bin/draksambashare:624 ../bin/draksambashare:791
#, c-format
msgid "Information"
msgstr "Informații"

#: ../bin/draknfs:269
#, c-format
msgid "Directory"
msgstr "Director"

#: ../bin/draknfs:280
#, c-format
msgid "Please add an NFS share to be able to modify it."
msgstr "Adăugați un partaj NFS spre a-l putea modifica."

#: ../bin/draknfs:354
#, c-format
msgid "Advanced"
msgstr "Avansat"

#: ../bin/draknfs:377
#, c-format
msgid "NFS directory"
msgstr "Director NFS"

#: ../bin/draknfs:378 ../bin/draksambashare:382 ../bin/draksambashare:589
#: ../bin/draksambashare:768
#, c-format
msgid "Directory:"
msgstr "Director:"

#: ../bin/draknfs:379
#, c-format
msgid "Host access"
msgstr "Acces client"

#: ../bin/draknfs:380
#, c-format
msgid "Access:"
msgstr "Acces:"

#: ../bin/draknfs:381
#, c-format
msgid "User ID Mapping"
msgstr "Corespondență între utilizatori"

#: ../bin/draknfs:382
#, c-format
msgid "User ID:"
msgstr "Utilizator:"

#: ../bin/draknfs:383
#, c-format
msgid "Anonymous user ID:"
msgstr "Utilizator anonim:"

#: ../bin/draknfs:384
#, c-format
msgid "Anonymous Group ID:"
msgstr "Grup anonim:"

#: ../bin/draknfs:427
#, c-format
msgid "Please specify a directory to share."
msgstr "Specificați un director spre partajare."

#: ../bin/draknfs:429
#, c-format
msgid "Can't create this directory."
msgstr "Nu se poate creea acest director."

#: ../bin/draknfs:432
#, c-format
msgid "You must specify hosts access."
msgstr "Trebuie specificat accesul clienților."

#: ../bin/draknfs:512
#, c-format
msgid "Share Directory"
msgstr "Director de partaj"

#: ../bin/draknfs:512
#, c-format
msgid "Hosts Wildcard"
msgstr "Clienți autorizați"

#: ../bin/draknfs:512
#, c-format
msgid "General Options"
msgstr "Opțiuni generale"

#: ../bin/draknfs:512
#, c-format
msgid "Custom Options"
msgstr "Opțiuni specifice"

#: ../bin/draknfs:524 ../bin/draksambashare:397 ../bin/draksambashare:626
#: ../bin/draksambashare:793
#, c-format
msgid "Please enter a directory to share."
msgstr "Introduceți un director spre partajare."

#: ../bin/draknfs:531
#, c-format
msgid "Please use the modify button to set right access."
msgstr "Folosiți butonul de modificare pentru a stabili drepturile de acces."

#: ../bin/draknfs:546
#, c-format
msgid "Manage NFS shares"
msgstr "Gestionează partajele NFS"

#: ../bin/draknfs:582
#, c-format
msgid "Starting the NFS-server"
msgstr "Se pornește serverul NFS..."

#: ../bin/draknfs:590
#, c-format
msgid "DrakNFS manage NFS shares"
msgstr "DrakNFS gestionează partajele NFS"

#: ../bin/draknfs:599
#, c-format
msgid "Failed to add NFS share."
msgstr "Adăugarea partajului NFS a eșuat."

#: ../bin/draknfs:606
#, c-format
msgid "Failed to Modify NFS share."
msgstr "Modificarea partajului NFS a eșuat;"

#: ../bin/draknfs:613
#, c-format
msgid "Failed to remove an NFS share."
msgstr "Îndepărtarea partajului NFS a eșuat;"

#: ../bin/draksambashare:65
#, c-format
msgid "User name"
msgstr "Nume utilizator"

#: ../bin/draksambashare:72 ../bin/draksambashare:100
#, c-format
msgid "Share name"
msgstr "Nume partaj"

#: ../bin/draksambashare:73 ../bin/draksambashare:101
#, c-format
msgid "Share directory"
msgstr "Directorul de partaj"

#: ../bin/draksambashare:74 ../bin/draksambashare:102
#: ../bin/draksambashare:119
#, c-format
msgid "Comment"
msgstr "Comentariu"

#: ../bin/draksambashare:75 ../bin/draksambashare:120
#, c-format
msgid "Browseable"
msgstr "Vizibil în rețea"

#: ../bin/draksambashare:76
#, c-format
msgid "Public"
msgstr "Public"

#: ../bin/draksambashare:77 ../bin/draksambashare:125
#, c-format
msgid "Writable"
msgstr "Drept de scriere"

#: ../bin/draksambashare:78 ../bin/draksambashare:166
#, c-format
msgid "Create mask"
msgstr "Mască pentru creare de fișier"

#: ../bin/draksambashare:79 ../bin/draksambashare:167
#, c-format
msgid "Directory mask"
msgstr "Mască de director"

#: ../bin/draksambashare:80
#, c-format
msgid "Read list"
msgstr "Utilizatori doar cu drept de citire"

#: ../bin/draksambashare:81 ../bin/draksambashare:126
#: ../bin/draksambashare:603
#, c-format
msgid "Write list"
msgstr "Utilizatori cu drept de scriere"

#: ../bin/draksambashare:82 ../bin/draksambashare:158
#, c-format
msgid "Admin users"
msgstr "Administratori"

#: ../bin/draksambashare:83 ../bin/draksambashare:159
#, c-format
msgid "Valid users"
msgstr "Utilizatori autorizați"

#: ../bin/draksambashare:84
#, c-format
msgid "Inherit Permissions"
msgstr "Moștenește permisiunile"

#: ../bin/draksambashare:85 ../bin/draksambashare:160
#, c-format
msgid "Hide dot files"
msgstr "Ascunde fișierele cu punct"

#: ../bin/draksambashare:86 ../bin/draksambashare:161
#, c-format
msgid "Hide files"
msgstr "Ascunde fișiere"

#: ../bin/draksambashare:87 ../bin/draksambashare:165
#, c-format
msgid "Preserve case"
msgstr "Păstrează sensibilitata la majuscule"

#: ../bin/draksambashare:88
#, c-format
msgid "Force create mode"
msgstr "Forțează modul de creare"

#: ../bin/draksambashare:89
#, c-format
msgid "Force group"
msgstr "Forțează grup"

#: ../bin/draksambashare:90 ../bin/draksambashare:164
#, c-format
msgid "Default case"
msgstr "Sensibilitate la majuscule implicită"

#: ../bin/draksambashare:117
#, c-format
msgid "Printer name"
msgstr "Nume imprimantă"

#: ../bin/draksambashare:118
#, c-format
msgid "Path"
msgstr "Cale"

#: ../bin/draksambashare:121 ../bin/draksambashare:595
#, c-format
msgid "Printable"
msgstr "Tipăribil"

#: ../bin/draksambashare:122
#, c-format
msgid "Print Command"
msgstr "Comandă de tipărire"

#: ../bin/draksambashare:123
#, c-format
msgid "LPQ command"
msgstr "Comandă LPQ"

#: ../bin/draksambashare:124
#, c-format
msgid "Guest ok"
msgstr "Acces fără parolă"

#: ../bin/draksambashare:127 ../bin/draksambashare:168
#: ../bin/draksambashare:604
#, c-format
msgid "Inherit permissions"
msgstr "Moștenește permisiunile"

#: ../bin/draksambashare:128
#, c-format
msgid "Printing"
msgstr "Se tipărește"

#: ../bin/draksambashare:129
#, c-format
msgid "Create mode"
msgstr "Drepturi la creare"

#: ../bin/draksambashare:130
#, c-format
msgid "Use client driver"
msgstr "Utilizează pilotul clientului"

#: ../bin/draksambashare:156
#, c-format
msgid "Read List"
msgstr "Utilizatori doar cu drept de citire"

#: ../bin/draksambashare:157
#, c-format
msgid "Write List"
msgstr "Utilizatori cu drept de scriere"

#: ../bin/draksambashare:162
#, c-format
msgid "Force Group"
msgstr "Grupare forțată"

#: ../bin/draksambashare:163
#, c-format
msgid "Force create group"
msgstr "Drepturi forțate la creare"

#: ../bin/draksambashare:179 ../bin/draksambashare:180
#: ../bin/draksambashare:181 ../bin/draksambashare:182
#, c-format
msgid "/_Samba Server"
msgstr "/_Server Samba"

#: ../bin/draksambashare:180
#, c-format
msgid "/_Configure"
msgstr "/_Configurează"

#: ../bin/draksambashare:184
#, c-format
msgid "/_Help"
msgstr "/_Ajutor"

#: ../bin/draksambashare:184
#, c-format
msgid "/_Samba Documentation"
msgstr "/Documentație _Samba"

#: ../bin/draksambashare:190 ../bin/draksambashare:191
#, c-format
msgid "/_About"
msgstr "/_Despre"

#: ../bin/draksambashare:190
#, c-format
msgid "/_Report Bug"
msgstr "/_Raportare eroare"

#: ../bin/draksambashare:191
#, c-format
msgid "/_About..."
msgstr "/_Despre..."

#: ../bin/draksambashare:194
#, c-format
msgid "Draksambashare"
msgstr "Draksambashare"

#: ../bin/draksambashare:196
#, c-format
msgid "Copyright (C) %s by Mandriva"
msgstr "Drepturi de autor (C) %s Mandriva"

#: ../bin/draksambashare:198
#, c-format
msgid "This is a simple tool to easily manage Samba configuration."
msgstr "Acesta este o unealtă simplă pentru a gestiona Samba în mod ușor."

#: ../bin/draksambashare:200
#, c-format
msgid "Mandriva Linux"
msgstr "Mandriva Linux"

#. -PO: put here name(s) and email(s) of translator(s) (eg: "John Smith <jsmith@nowhere.com>")
#: ../bin/draksambashare:205
#, c-format
msgid "_: Translator(s) name(s) & email(s)\n"
msgstr ""
"Florin GRAD <florin@mandriva.com>\n"
"Dragos Marian BARBU <dragosb@softhome.net>\n"
"Ovidiu CONSTANTIN <ovidiu.constantin@gmx.net>\n"
"Harald ERSCH <harald@ersch.ro>\n"
"Cosmin HUMENIUC <cosmin@mandrivausers.ro>\n"
"Florin Cătălin RUSSEN <cfrussen@yahoo.co.uk>\n"

#: ../bin/draksambashare:229
#, c-format
msgid "Restarting/Reloading Samba server..."
msgstr "Repornire/Reîncărcare server Samba..."

#: ../bin/draksambashare:230
#, c-format
msgid "Error Restarting/Reloading Samba server"
msgstr "Repornire/Reîncărcare server Samba în eroare"

#: ../bin/draksambashare:370 ../bin/draksambashare:568
#: ../bin/draksambashare:689
#, c-format
msgid "Open"
msgstr "Deschide"

#: ../bin/draksambashare:373
#, c-format
msgid "DrakSamba add entry"
msgstr "Adăugare de partaj DrakSamba"

#: ../bin/draksambashare:377
#, c-format
msgid "Add a share"
msgstr "Adaugă un partaj"

#: ../bin/draksambashare:380
#, c-format
msgid "Name of the share:"
msgstr "Numele partajului:"

#: ../bin/draksambashare:381 ../bin/draksambashare:588
#: ../bin/draksambashare:769
#, c-format
msgid "Comment:"
msgstr "Comentariu:"

#: ../bin/draksambashare:393
#, c-format
msgid ""
"Share with the same name already exist or share name empty, please choose "
"another name."
msgstr ""
"Un partaj cu același nume există deja sau partaj nespecificat, alegeți un "
"alt nume."

#: ../bin/draksambashare:400
#, c-format
msgid "Can't create the directory, please enter a correct path."
msgstr "Nu se poate creea directorul, introduceți calea corectă."

#: ../bin/draksambashare:403 ../bin/draksambashare:624
#: ../bin/draksambashare:791
#, c-format
msgid "Please enter a Comment for this share."
msgstr "Înscrieți un comentariu pentru acest partaj."

#: ../bin/draksambashare:440
#, c-format
msgid "pdf-gen - a PDF generator"
msgstr "pdf-gen - un generator de fișiere PDF"

#: ../bin/draksambashare:441
#, c-format
msgid "printers - all printers available"
msgstr "imprimante - toate imprimantele disponibile"

#: ../bin/draksambashare:445
#, c-format
msgid "Add Special Printer share"
msgstr "Adaugă un partaj special prntru imprimantă"

#: ../bin/draksambashare:448
#, c-format
msgid ""
"Goal of this wizard is to easily create a new special printer Samba share."
msgstr ""
"Scopul acestui asistent este de a creea în mod ușor un nou partaj Samba "
"special imprimantă."

#: ../bin/draksambashare:455
#, c-format
msgid "A PDF generator already exists."
msgstr "Există deja un generator de fișiere PDF."

#: ../bin/draksambashare:479
#, c-format
msgid "Printers and print$ already exist."
msgstr "Imprimantele și print$ există deja."

#: ../bin/draksambashare:529 ../bin/draksambashare:1199
#, c-format
msgid "Congratulations"
msgstr "Felicitări"

#: ../bin/draksambashare:530
#, c-format
msgid "The wizard successfully added the printer Samba share"
msgstr "Asistentul a adăugat cu succes partajul Samba pentru imprimantă"

#: ../bin/draksambashare:552
#, c-format
msgid "Please add or select a Samba printer share to be able to modify it."
msgstr ""
"Adăugați sau selectați un partaj de imprimantă Samba pentru modificare."

#: ../bin/draksambashare:571
#, c-format
msgid "DrakSamba Printers entry"
msgstr "Imprimante DrakSamba"

#: ../bin/draksambashare:584
#, c-format
msgid "Printer share"
msgstr "Partajare de imprimantă"

#: ../bin/draksambashare:587
#, c-format
msgid "Printer name:"
msgstr "Nume de imprimantă:"

#: ../bin/draksambashare:593 ../bin/draksambashare:774
#, c-format
msgid "Writable:"
msgstr "Drept de scriere:"

#: ../bin/draksambashare:594 ../bin/draksambashare:775
#, c-format
msgid "Browseable:"
msgstr "Vizibil în rețea:"

#: ../bin/draksambashare:599
#, c-format
msgid "Advanced options"
msgstr "Opțiuni avansate"

#: ../bin/draksambashare:601
#, c-format
msgid "Printer access"
msgstr "Acces la imprimantă"

#: ../bin/draksambashare:605
#, c-format
msgid "Guest ok:"
msgstr "Acces fără parolă:"

#: ../bin/draksambashare:606
#, c-format
msgid "Create mode:"
msgstr "Drepturi la creare:"

#: ../bin/draksambashare:610
#, c-format
msgid "Printer command"
msgstr "Comandă imprimanta"

#: ../bin/draksambashare:612
#, c-format
msgid "Print command:"
msgstr "Comandă de tipărire:"

#: ../bin/draksambashare:613
#, c-format
msgid "LPQ command:"
msgstr "Comandă LPQ:"

#: ../bin/draksambashare:614
#, c-format
msgid "Printing:"
msgstr "Tipărire:"

#: ../bin/draksambashare:630
#, c-format
msgid "create mode should be numeric. ie: 0755."
msgstr "dreptul la creare ar trebui să fie numeric. Ex: 0755."

#: ../bin/draksambashare:692
#, c-format
msgid "DrakSamba entry"
msgstr "Intrare DrakSamba"

#: ../bin/draksambashare:697
#, c-format
msgid "Please add or select a Samba share to be able to modify it."
msgstr "Adăugați sau selectați un partaj Samba spre a-l putea modifica."

#: ../bin/draksambashare:720
#, c-format
msgid "Samba user access"
msgstr "Acces utilizator Samba"

#: ../bin/draksambashare:728
#, c-format
msgid "Mask options"
msgstr "Opțiuni de mască"

#: ../bin/draksambashare:742
#, c-format
msgid "Display options"
msgstr "Opțiuni de afișare"

#: ../bin/draksambashare:764
#, c-format
msgid "Samba share directory"
msgstr "Director partajat Samba"

#: ../bin/draksambashare:767
#, c-format
msgid "Share name:"
msgstr "Nume de partaj:"

#: ../bin/draksambashare:773
#, c-format
msgid "Public:"
msgstr "Public:"

#: ../bin/draksambashare:797
#, c-format
msgid ""
"Create mask, create mode and directory mask should be numeric. ie: 0755."
msgstr ""
"Masca de creare, drepturile pe directoare și fișiere ar trebui să fie "
"numerice. Ex: 0755."

#: ../bin/draksambashare:804
#, c-format
msgid "Please create this Samba user: %s"
msgstr "Creați acest utilizator Samba: %s"

#: ../bin/draksambashare:916
#, c-format
msgid "Add Samba user"
msgstr "Adaugă un utilizator Samba"

#: ../bin/draksambashare:931
#, c-format
msgid "User information"
msgstr "Informații utilizator"

#: ../bin/draksambashare:933
#, c-format
msgid "User name:"
msgstr "Nume utilizator:"

#: ../bin/draksambashare:934
#, c-format
msgid "Password:"
msgstr "Parolă:"

#: ../bin/draksambashare:1048
#, c-format
msgid "PDC - primary domain controller"
msgstr "Controlor de domeniu principal (PDC)"

#: ../bin/draksambashare:1049
#, c-format
msgid "Standalone - standalone server"
msgstr "Server autonom (Standalone)"

#: ../bin/draksambashare:1055
#, c-format
msgid "Samba Wizard"
msgstr "Asistent Samba"

#: ../bin/draksambashare:1058
#, c-format
msgid "Samba server configuration Wizard"
msgstr "Asistent de configurare de server Samba"

#: ../bin/draksambashare:1058
#, c-format
msgid ""
"Samba allows your server to behave as a file and print server for "
"workstations running non-Linux systems."
msgstr ""
"Samba permite serverului dumneavoastră să se comporte ca un server de "
"fișiere și imprimante pentru stațiile de lucru care rulează sisteme Windows."

#: ../bin/draksambashare:1074
#, c-format
msgid "PDC server: primary domain controller"
msgstr "Server PDC: controlor de domeniu principal"

#: ../bin/draksambashare:1074
#, c-format
msgid ""
"Server configured as a PDC is responsible for Windows authentication "
"throughout the domain."
msgstr ""
"Serverul configurat ca PDC răspunde de autentificarea stațiilor Windows în "
"întreg domeniul."

#: ../bin/draksambashare:1074
#, c-format
msgid ""
"Single server installations may use smbpasswd or tdbsam password backends"
msgstr ""
"Instalările de server simplu pot folosi utilitarele de parole smbpasswd sau "
"tdbsam"

#: ../bin/draksambashare:1074
#, c-format
msgid ""
"Domain master = yes, causes the server to register the NetBIOS name <pdc "
"name>. This name will be recognized by other servers."
msgstr ""
"Domain master = yes, impune serverului să se declare cu numele NetBIOS <pdc "
"name>. Acest nume va fi cel recunoscut de către celelate servere."

#: ../bin/draksambashare:1091
#, c-format
msgid "Wins support:"
msgstr "Suport Wins:"

#: ../bin/draksambashare:1092
#, c-format
msgid "admin users:"
msgstr "utilizatori cu dpept de administrator:"

#: ../bin/draksambashare:1092
#, c-format
msgid "root @adm"
msgstr "root @adm"

#: ../bin/draksambashare:1093
#, c-format
msgid "Os level:"
msgstr "Os level:"

#: ../bin/draksambashare:1093
#, c-format
msgid ""
"The global os level option dictates the operating system level at which "
"Samba will masquerade during a browser election. If you wish to have Samba "
"win an election and become the master browser, you can set the level above "
"that of the operating system on your network with the highest current value. "
"ie: os level = 34"
msgstr ""
"Opțiunea globală „Os level” determină nivelul sistemului de operare pe care "
"Samba îl va simula în timpul scrutinului între servere. Dacă doriți ca Samba "
"să cîștige alegerile și să devină noul server principal, trebuie să-i "
"specificați un nivel superior celui dintre sistemele de operare cu nivelul "
"cel mai mare, prezent în rețea. Ex: Os level = 34"

#: ../bin/draksambashare:1097
#, c-format
msgid "The domain is wrong."
msgstr "Domeniul este incorect."

#: ../bin/draksambashare:1104
#, c-format
msgid "Workgroup"
msgstr "Workgroup"

#: ../bin/draksambashare:1104
#, c-format
msgid "Samba needs to know the Windows Workgroup it will serve."
msgstr "Samba trebuie să cunoască Windows Workgroup pe care-l va deservi."

#: ../bin/draksambashare:1111 ../bin/draksambashare:1178
#, c-format
msgid "Workgroup:"
msgstr "Workgroup:"

#: ../bin/draksambashare:1112
#, c-format
msgid "Netbios name:"
msgstr "Nume Netbios"

#: ../bin/draksambashare:1116
#, c-format
msgid "The Workgroup is wrong."
msgstr "Workgroup incorect."

#: ../bin/draksambashare:1123 ../bin/draksambashare:1133
#, c-format
msgid "Security mode"
msgstr "Mod de securitate"

#: ../bin/draksambashare:1123
#, c-format
msgid ""
"User level: the client sends a session setup request directly following "
"protocol negotiation. This request provides a username and password."
msgstr ""
"Nivel utilizator : clientul trimite direct o cerere de deschidere de sesiune "
"după negocierea protocolului. Această cerere conține un nume de utilizator "
"și o parolă."

#: ../bin/draksambashare:1123
#, c-format
msgid "Share level: the client authenticates itself separately for each share"
msgstr "Nivel partaj : clientul se identifică separat pentru fiecare partaj"

#: ../bin/draksambashare:1123
#, c-format
msgid ""
"Domain level: provides a mechanism for storing all user and group accounts "
"in a central, shared, account repository. The centralized account repository "
"is shared between domain (security) controllers."
msgstr ""
"Nivel domeniu: permite stocarea tuturor conturilor și grupurilor de "
"utilizatori într-un spațiu de conturi centralizat, partajat între "
"controlorii (securitate) de domeniu."

#: ../bin/draksambashare:1134
#, c-format
msgid "Hosts allow"
msgstr "Gazde autorizate"

#: ../bin/draksambashare:1139
#, c-format
msgid "Server Banner."
msgstr "Banner de server."

#: ../bin/draksambashare:1139
#, c-format
msgid ""
"The banner is the way this server will be described in the Windows "
"workstations."
msgstr ""
"Bannerul serverului este modul în care serverul va fi descris pe stațiile "
"Windows."

#: ../bin/draksambashare:1144
#, c-format
msgid "Banner:"
msgstr "Banner:"

#: ../bin/draksambashare:1148
#, c-format
msgid "The Server Banner is incorrect."
msgstr "Bannerul serverului este incorect."

#: ../bin/draksambashare:1155
#, c-format
msgid "Samba Log"
msgstr "Jurnale Samba"

#: ../bin/draksambashare:1155
#, c-format
msgid ""
"Log file: use file.%m to use a separate log file for each machine that "
"connects"
msgstr ""
"Fișier jurnal: utilizați fișier.%m pentru a dispune de un fișier jurnal "
"diferit pentru fiecare mașină care se conectează"

#: ../bin/draksambashare:1155
#, c-format
msgid "Log level: set the log (verbosity) level (0 <= log level <= 10)"
msgstr ""
"Nivel jurnal: determină nivelul de detaliu al jurnalului (0 <= nivel <= 10) "

#: ../bin/draksambashare:1155
#, c-format
msgid "Max Log size: put a capping on the size of the log files (in Kb)."
msgstr ""
"Mărimea maximă a jurnalelor: limitează mărimea fișierelor jurnal (în Ko)"

#: ../bin/draksambashare:1162 ../bin/draksambashare:1180
#, c-format
msgid "Log file:"
msgstr "Fișier jurnal:"

#: ../bin/draksambashare:1163
#, c-format
msgid "Max log size:"
msgstr "Mărimea maximă a jurnalelor:"

#: ../bin/draksambashare:1164
#, c-format
msgid "Log level:"
msgstr "Nivel jurnal:"

#: ../bin/draksambashare:1169
#, c-format
msgid "The wizard collected the following parameters to configure Samba."
msgstr "Asistentul a colectat următorii parametri pentru a configura Samba."

#: ../bin/draksambashare:1169
#, c-format
msgid ""
"To accept these values, and configure your server, click the Next button or "
"use the Back button to correct them."
msgstr ""
"Ca să acceptați aceste valori, și să configurați serverul, alegeți să "
"continuați, sau să reveniți la etapa precedentă pentru corectare."

#: ../bin/draksambashare:1169
#, c-format
msgid ""
"If you have previously create some shares, they will appear in this "
"configuration. Run 'drakwizard sambashare' to manage your shares."
msgstr ""
"Dacă ați creat partaje precedent, vor apărea în această configurație. "
"Lansați 'drakwizard sambashare' pentru a vă gestiona partajele."

#: ../bin/draksambashare:1177
#, c-format
msgid "Samba type:"
msgstr "Tip de Samba:"

#: ../bin/draksambashare:1179
#, c-format
msgid "Server banner:"
msgstr "Banner de server:"

#: ../bin/draksambashare:1181
#, c-format
msgid " "
msgstr " "

#: ../bin/draksambashare:1182
#, c-format
msgid "Unix Charset:"
msgstr "Set de caractere Unix:"

#: ../bin/draksambashare:1183
#, c-format
msgid "Dos Charset:"
msgstr "Set de caractere Dos:"

#: ../bin/draksambashare:1184
#, c-format
msgid "Display Charset:"
msgstr "Set de caractere afișaj:"

#: ../bin/draksambashare:1199
#, c-format
msgid "The wizard successfully configured your Samba server."
msgstr "Asistentul v-a configurat cu succes serverul Samba."

#: ../bin/draksambashare:1254
#, c-format
msgid "The Samba wizard has unexpectedly failed:"
msgstr "Asistentul Samba a eșuat în mod neașteptat:"

#: ../bin/draksambashare:1268
#, c-format
msgid "Manage Samba configuration"
msgstr "Gestionaează configurația Samba"

#: ../bin/draksambashare:1356
#, c-format
msgid "Failed to Modify Samba share."
msgstr "Modificarea partajului Samba a eșuat."

#: ../bin/draksambashare:1365
#, c-format
msgid "Failed to remove a Samba share."
msgstr "Înlăturarea partajului Samba a eșuat."

#: ../bin/draksambashare:1372
#, c-format
msgid "File share"
msgstr "Partaj de fișiere"

#: ../bin/draksambashare:1387
#, c-format
msgid "Failed to Modify."
msgstr "Modificarea a eșuat."

#: ../bin/draksambashare:1396
#, c-format
msgid "Failed to remove."
msgstr "Înlăturarea a eșuat."

#: ../bin/draksambashare:1403
#, c-format
msgid "Printers"
msgstr "Imprimante"

#: ../bin/draksambashare:1415
#, c-format
msgid "Failed to add user."
msgstr "Adăugarea utilizatorului a eșuat."

#: ../bin/draksambashare:1424
#, c-format
msgid "Failed to change user password."
msgstr "Schimbarea parolei utilizatorului a eșuat."

#: ../bin/draksambashare:1436
#, c-format
msgid "Failed to delete user."
msgstr "Ștergerea utilizatorului a eșuat."

#: ../bin/draksambashare:1441
#, c-format
msgid "Userdrake"
msgstr "Userdrake"

#: ../bin/draksambashare:1449
#, c-format
msgid "Samba Users"
msgstr "Utilizatori Samba"

#: ../bin/draksambashare:1457
#, c-format
msgid "Please configure your Samba server"
msgstr "Configurați-vă serverul Samba"

#: ../bin/draksambashare:1457
#, c-format
msgid ""
"It seems this is the first time you run this tool.\n"
"A wizard will appear to configure a basic Samba server"
msgstr ""
"Pare să fie prima oară cînd rulați această unealtă.\n"
"Un asistent vă va ajuta să configurați un server Samba de bază"

#: ../bin/draksambashare:1466
#, c-format
msgid "DrakSamba manage Samba shares"
msgstr "DrakSamba gestionează partajele Samba"

#: ../bin/net_applet:95
#, c-format
msgid "Network is up on interface %s."
msgstr "Rețeaua este activă pe interfața %s."

#: ../bin/net_applet:96
#, c-format
msgid "IP address: %s"
msgstr "Adresă IP: %s"

#: ../bin/net_applet:97
#, c-format
msgid "Gateway: %s"
msgstr "Pasarelă: %s"

#: ../bin/net_applet:98
#, c-format
msgid "DNS: %s"
msgstr "DNS: %s"

#: ../bin/net_applet:99
#, c-format
msgid "Connected to %s (link level: %d %%)"
msgstr "Conectat la %s (nivelul legăturii: %d %%)"

#: ../bin/net_applet:101
#, c-format
msgid "Network is down on interface %s."
msgstr "Rețeaua este dezactivată pe interfața %s."

#: ../bin/net_applet:103
#, c-format
msgid ""
"You do not have any configured Internet connection.\n"
"Run the \"%s\" assistant from the Mandriva Linux Control Center"
msgstr ""
"Nu aveți configurată nici o conexiune la Internet.\n"
"Lansați asistentul \"%s\" din centrul de control Mandriva Linux"

#: ../bin/net_applet:129 ../bin/net_monitor:519
#, c-format
msgid "Connect %s"
msgstr "Conectează %s"

#: ../bin/net_applet:130 ../bin/net_monitor:519
#, c-format
msgid "Disconnect %s"
msgstr "Deconectează %s"

#: ../bin/net_applet:131
#, c-format
msgid "Monitor Network"
msgstr "Supraveghează rețeaua"

#: ../bin/net_applet:133
#, c-format
msgid "Manage wireless networks"
msgstr "Gestionează rețelele fără fir"

#: ../bin/net_applet:135
#, c-format
msgid "Manage VPN connections"
msgstr "Gestionează conexiunile VPN"

#: ../bin/net_applet:139
#, c-format
msgid "Configure Network"
msgstr "Configurează rețeaua"

#: ../bin/net_applet:141
#, c-format
msgid "Watched interface"
msgstr "Interfața supravegheată"

#: ../bin/net_applet:142 ../bin/net_applet:143 ../bin/net_applet:145
#, c-format
msgid "Auto-detect"
msgstr "Auto-detecție"

#: ../bin/net_applet:150
#, c-format
msgid "Active interfaces"
msgstr "Interfețe active"

#: ../bin/net_applet:170
#, c-format
msgid "Profiles"
msgstr "Profile"

#: ../bin/net_applet:180 ../lib/network/connection.pm:226
#: ../lib/network/drakvpn.pm:62 ../lib/network/vpn/openvpn.pm:365
#: ../lib/network/vpn/openvpn.pm:379 ../lib/network/vpn/openvpn.pm:390
#, c-format
msgid "VPN connection"
msgstr "Conexiune VPN"

#: ../bin/net_applet:358
#, c-format
msgid "Network connection"
msgstr "Conexiune rețea"

#: ../bin/net_applet:442
#, c-format
msgid "More networks"
msgstr "Mai multe rețele"

#: ../bin/net_applet:469
#, c-format
msgid "Interactive Firewall automatic mode"
msgstr "Parafoc interactiv în mod automat"

#: ../bin/net_applet:474
#, c-format
msgid "Always launch on startup"
msgstr "Lansează întotdeauna la pornire"

#: ../bin/net_applet:479
#, c-format
msgid "Wireless networks"
msgstr "Rețele fără fir"

#: ../bin/net_applet:486 ../bin/net_monitor:96
#, c-format
msgid "Settings"
msgstr "Reglaje"

#: ../bin/net_monitor:60 ../bin/net_monitor:65
#, c-format
msgid "Network Monitoring"
msgstr "Supraveghere rețea"

#: ../bin/net_monitor:99
#, c-format
msgid "Default connection: "
msgstr "Conexiune implicită:"

#: ../bin/net_monitor:101
#, c-format
msgid "Wait please"
msgstr "Așteptați vă rog"

#: ../bin/net_monitor:104
#, c-format
msgid "Global statistics"
msgstr "Statistici globale"

#: ../bin/net_monitor:107
#, c-format
msgid "Instantaneous"
msgstr "Instantaneu"

#: ../bin/net_monitor:107
#, c-format
msgid "Average"
msgstr "Medie"

#: ../bin/net_monitor:108
#, c-format
msgid ""
"Sending\n"
"speed:"
msgstr ""
"Viteză de\n"
"transmisie:"

#: ../bin/net_monitor:108 ../bin/net_monitor:109 ../bin/net_monitor:114
#, c-format
msgid "unknown"
msgstr "necunoscut"

#: ../bin/net_monitor:109
#, c-format
msgid ""
"Receiving\n"
"speed:"
msgstr ""
"Viteză de\n"
"recepție:"

#: ../bin/net_monitor:113
#, c-format
msgid "Connection time: "
msgstr "Timp de conectare:"

#: ../bin/net_monitor:120
#, c-format
msgid "Use same scale for received and transmitted"
msgstr "Utilizează acceași scală pentru pachetele recepționate și transmise"

#: ../bin/net_monitor:138
#, c-format
msgid "Wait please, testing your connection..."
msgstr "Așteptați, se testează conexiunea..."

#: ../bin/net_monitor:210 ../bin/net_monitor:223
#, c-format
msgid "Disconnecting from Internet "
msgstr "Deconectare de la Internet "

#: ../bin/net_monitor:210 ../bin/net_monitor:223
#, c-format
msgid "Connecting to Internet "
msgstr "Conectare la Internet "

#: ../bin/net_monitor:254
#, c-format
msgid "Disconnection from Internet failed."
msgstr "Deconectarea de la Internet a eșuat."

#: ../bin/net_monitor:255
#, c-format
msgid "Disconnection from Internet complete."
msgstr "Deconectarea de la Internet terminată."

#: ../bin/net_monitor:257
#, c-format
msgid "Connection complete."
msgstr "Conectare reușită."

#: ../bin/net_monitor:258
#, c-format
msgid ""
"Connection failed.\n"
"Verify your configuration in the Mandriva Linux Control Center."
msgstr ""
"Conectare eșuată.\n"
"Verificați configurarea în centrul de control Mandriva Linux."

#: ../bin/net_monitor:360
#, c-format
msgid "%s (%s)"
msgstr "%s (%s)"

#: ../bin/net_monitor:385
#, c-format
msgid "Color configuration"
msgstr "Configurație de culori"

#: ../bin/net_monitor:444 ../bin/net_monitor:457
#, c-format
msgid "sent: "
msgstr "trimise: "

#: ../bin/net_monitor:447 ../bin/net_monitor:461
#, c-format
msgid "received: "
msgstr "recepționate: "

#: ../bin/net_monitor:450
#, c-format
msgid "average"
msgstr "medie"

#: ../bin/net_monitor:451
#, c-format
msgid "Reset counters"
msgstr "Resetează contoarele"

#: ../bin/net_monitor:454
#, c-format
msgid "Local measure"
msgstr "Măsuri locale"

#: ../bin/net_monitor:512
#, c-format
msgid ""
"Warning, another internet connection has been detected, maybe using your "
"network"
msgstr ""
"Atenție, o altă conexiune la Internet a fost detectată, utilizîndu-vă "
"probabil rețeaua"

#: ../bin/net_monitor:516
#, c-format
msgid "Connected"
msgstr "Conectat"

#: ../bin/net_monitor:516
#, c-format
msgid "Not connected"
msgstr "Deconectat"

#: ../bin/net_monitor:523
#, c-format
msgid "No internet connection configured"
msgstr "Nu este configurată nici o conexiune la internet"

#: ../lib/network/connection.pm:16
#, c-format
msgid "Unknown connection type"
msgstr "Tip de conexiune necunoscut"

#: ../lib/network/connection.pm:159
#, c-format
msgid "Network access settings"
msgstr "Parametrii de acces la rețea"

#: ../lib/network/connection.pm:160
#, c-format
msgid "Access settings"
msgstr "Parametrii de acces"

#: ../lib/network/connection.pm:161
#, c-format
msgid "Address settings"
msgstr "Parametrii adresei"

#: ../lib/network/connection.pm:175 ../lib/network/connection.pm:195
#: ../lib/network/connection/isdn.pm:153 ../lib/network/netconnect.pm:216
#: ../lib/network/netconnect.pm:473 ../lib/network/netconnect.pm:569
#: ../lib/network/netconnect.pm:572
#, c-format
msgid "Unlisted - edit manually"
msgstr "Nelistat - editează manual"

#: ../lib/network/connection.pm:228 ../lib/network/connection/cable.pm:41
#: ../lib/network/connection/wireless.pm:45 ../lib/network/vpn/openvpn.pm:127
#: ../lib/network/vpn/openvpn.pm:171 ../lib/network/vpn/openvpn.pm:339
#, c-format
msgid "None"
msgstr "Nici unul"

#: ../lib/network/connection.pm:240
#, c-format
msgid "Allow users to manage the connection"
msgstr "Permite utilizatorilor să gestioneze conexiunea"

#: ../lib/network/connection.pm:241
#, c-format
msgid "Start the connection at boot"
msgstr "Pornește conexiunea la demaraj"

#: ../lib/network/connection.pm:242
#, c-format
msgid "Metric"
msgstr "Metrică"

#: ../lib/network/connection.pm:313
#, c-format
msgid "Link detected on interface %s"
msgstr "Conexiune detectată pe interfața %s"

#: ../lib/network/connection.pm:314 ../lib/network/connection/ethernet.pm:289
#, c-format
msgid "Link beat lost on interface %s"
msgstr "Conexiune pierdută pe interfața %s"

#: ../lib/network/connection/cable.pm:10
#, c-format
msgid "Cable"
msgstr "Cablu"

#: ../lib/network/connection/cable.pm:11
#, c-format
msgid "Cable modem"
msgstr "Modem de cablu"

#: ../lib/network/connection/cable.pm:42
#, c-format
msgid "Use BPALogin (needed for Telstra)"
msgstr "Utilizează BPALogin (necesar pentru Telstra)"

#: ../lib/network/connection/cable.pm:45 ../lib/network/netconnect.pm:597
#, c-format
msgid "Authentication"
msgstr "Autentificare"

#: ../lib/network/connection/cable.pm:47 ../lib/network/connection/ppp.pm:22
#: ../lib/network/netconnect.pm:336 ../lib/network/vpn/openvpn.pm:393
#, c-format
msgid "Account Login (user name)"
msgstr "Nume cont utilizator"

#: ../lib/network/connection/cable.pm:49 ../lib/network/connection/ppp.pm:23
#: ../lib/network/netconnect.pm:337 ../lib/network/vpn/openvpn.pm:394
#, c-format
msgid "Account Password"
msgstr "Parolă cont"

#: ../lib/network/connection/cellular.pm:66
#, c-format
msgid "Access Point Name"
msgstr "Nume punct de acces"

#: ../lib/network/connection/cellular_bluetooth.pm:10
#, c-format
msgid "Bluetooth"
msgstr "Bluetooth"

#: ../lib/network/connection/cellular_bluetooth.pm:11
#, c-format
msgid "Bluetooth Dial Up Networking"
msgstr "Rețea Bluetooth Dial Up"

#: ../lib/network/connection/cellular_card.pm:8
#, c-format
msgid "Wrong PIN number format: it should be 4 digits."
msgstr "Format greșit de cod PIN: ar trebui să fie 4 cifre."

#: ../lib/network/connection/cellular_card.pm:10
#, c-format
msgid "GPRS/Edge/3G"
msgstr "GPRS/Edge/3G"

#: ../lib/network/connection/cellular_card.pm:110
#: ../lib/network/vpn/openvpn.pm:391
#, c-format
msgid "PIN number"
msgstr "Cod PIN"

#: ../lib/network/connection/cellular_card.pm:186
#, c-format
msgid "Unable to open device %s"
msgstr "Nu se poate accesa dispozitivul %s"

#: ../lib/network/connection/cellular_card.pm:218
#, c-format
msgid "Please check that your SIM card is inserted."
msgstr "Verificați inserarea corectă a cartelei SIM în aparat."

#: ../lib/network/connection/cellular_card.pm:229
#, c-format
msgid ""
"You entered a wrong PIN code.\n"
"Entering the wrong PIN code multiple times may lock your SIM card!"
msgstr ""
"Ați introdus un cod PIN greșit.\n"
"Introducerea repetată unui cod PIN greșit poate duce la blocarea cartelei "
"SIM!"

#: ../lib/network/connection/dvb.pm:9
#, c-format
msgid "DVB"
msgstr "DVB"

#: ../lib/network/connection/dvb.pm:10
#, c-format
msgid "Satellite (DVB)"
msgstr "Satelit (DVB)"

#: ../lib/network/connection/dvb.pm:53
#, c-format
msgid "Adapter card"
msgstr "Cartelă adaptoare"

#: ../lib/network/connection/dvb.pm:54
#, c-format
msgid "Net demux"
msgstr "Net demux"

#: ../lib/network/connection/dvb.pm:55
#, c-format
msgid "PID"
msgstr "PID"

#: ../lib/network/connection/ethernet.pm:11
#, c-format
msgid "Ethernet"
msgstr "Ethernet"

#: ../lib/network/connection/ethernet.pm:12
#, c-format
msgid "Wired (Ethernet)"
msgstr "Cablat (Ethernet)"

#: ../lib/network/connection/ethernet.pm:30
#, c-format
msgid "Virtual interface"
msgstr "Interfață virtuală"

#: ../lib/network/connection/ethernet.pm:60
#, c-format
msgid "Unable to find network interface for selected device (using %s driver)."
msgstr ""
"Nu se găsește interfața de rețea pentru dispozitivul selecționat (se "
"utilizează pilotul %s)."

#: ../lib/network/connection/ethernet.pm:70 ../lib/network/vpn/openvpn.pm:207
#, c-format
msgid "Manual configuration"
msgstr "Configurare manuală"

#: ../lib/network/connection/ethernet.pm:71
#, c-format
msgid "Automatic IP (BOOTP/DHCP)"
msgstr "Alocare automată de adresă IP (BOOTP/DHCP)"

#: ../lib/network/connection/ethernet.pm:125
#, c-format
msgid "IP settings"
msgstr "Parametrii IP"

#: ../lib/network/connection/ethernet.pm:138
#, c-format
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr ""
"Introduceți configurația IP pentru acest calculator.\n"
"Fiecare rubrică va trebui să fie completată ca o adresă IP în format\n"
"zecimal-punctat (de exemplu: 192.168.1.55)."

#: ../lib/network/connection/ethernet.pm:142 ../lib/network/netconnect.pm:646
#: ../lib/network/vpn/openvpn.pm:212 ../lib/network/vpn/vpnc.pm:39
#, c-format
msgid "Gateway"
msgstr "Pasarelă"

#: ../lib/network/connection/ethernet.pm:145
#, c-format
msgid "Get DNS servers from DHCP"
msgstr "Recuperează serverele DNS din DHCP"

#: ../lib/network/connection/ethernet.pm:147
#, c-format
msgid "DNS server 1"
msgstr "Server DNS 1"

#: ../lib/network/connection/ethernet.pm:148
#, c-format
msgid "DNS server 2"
msgstr "Server DNS 2"

#: ../lib/network/connection/ethernet.pm:149
#, c-format
msgid "Search domain"
msgstr "Domeniu de căutare"

#: ../lib/network/connection/ethernet.pm:150
#, c-format
msgid "By default search domain will be set from the fully-qualified host name"
msgstr ""
"Implicit, domeniul de căutare va fi dedus din numele mașinii completcalificat"

#: ../lib/network/connection/ethernet.pm:153
#, c-format
msgid "DHCP timeout (in seconds)"
msgstr "Limită de timp DHCP (în secunde)"

#: ../lib/network/connection/ethernet.pm:154
#, c-format
msgid "Get YP servers from DHCP"
msgstr "Recuperează serverele YP din DHCP"

#: ../lib/network/connection/ethernet.pm:155
#, c-format
msgid "Get NTPD servers from DHCP"
msgstr "Recuperează serverele NTPD din DHCP"

#: ../lib/network/connection/ethernet.pm:156
#, c-format
msgid "DHCP host name"
msgstr "Nume DHCP de gazdă"

#: ../lib/network/connection/ethernet.pm:158
#, c-format
msgid "Do not fallback to Zeroconf (169.254.0.0 network)"
msgstr "Nu reveni la Zeroconf (rețeaua 169.254.0.0)"

#: ../lib/network/connection/ethernet.pm:169
#, c-format
msgid "IP address should be in format 1.2.3.4"
msgstr "Adresa IP ar trebui să fie în formatul 1.2.3.4"

#: ../lib/network/connection/ethernet.pm:174
#, c-format
msgid "Netmask should be in format 255.255.224.0"
msgstr "Masca de rețea ar trebui să fie în formatul 255.255.224.0"

#: ../lib/network/connection/ethernet.pm:179
#, c-format
msgid "Warning: IP address %s is usually reserved!"
msgstr "Atenție: adresa IP %s este de obicei rezervată!"

#: ../lib/network/connection/ethernet.pm:185
#, c-format
msgid ""
"%s is already used by connection that starts on boot. To use this address "
"with this connection, first disable all other devices which use it, or "
"configure them not to start on boot"
msgstr ""
"%s este deja utilizat de conexiunea pornită la demaraj. Pentru a utiliza "
"această adresă cu această conexiune, va trebui să dezactivați mai întîi "
"toate dispozitivele care o utilizează, sau să le configurați să nu pornească "
"la demaraj"

#: ../lib/network/connection/ethernet.pm:210
#, c-format
msgid "Assign host name from DHCP address"
msgstr "Atribuie nume gazdei de la adresa DHCP"

#: ../lib/network/connection/ethernet.pm:230
#, c-format
msgid "Network Hotplugging"
msgstr "Reconfigurarea \"la cald\" a rețelei"

#: ../lib/network/connection/ethernet.pm:234
#, c-format
msgid "Enable IPv6 to IPv4 tunnel"
msgstr "Activează tunelul IPv6 spre IPv4"

#: ../lib/network/connection/ethernet.pm:288
#, c-format
msgid "Link beat detected on interface %s"
msgstr "Conexiune detectată pe interfața %s"

#: ../lib/network/connection/ethernet.pm:291
#, c-format
msgid "Requesting a network address on interface %s (%s protocol)..."
msgstr "Se solicită o adresă de rețea pe interfața %s (protocol %s)..."

#: ../lib/network/connection/ethernet.pm:292
#, c-format
msgid "Got a network address on interface %s (%s protocol)"
msgstr "Adresă de rețea atribuită pentru interfața %s (protocol %s)"

#: ../lib/network/connection/ethernet.pm:293
#, c-format
msgid "Failed to get a network address on interface %s (%s protocol)"
msgstr ""
"Atribuirea unei adrese de rețea pentru interfața %s (protocol %s) a eșuat"

#: ../lib/network/connection/isdn.pm:8
#, c-format
msgid "ISDN"
msgstr "ISDN"

#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:405
#, c-format
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"

#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:405
#, c-format
msgid "I do not know"
msgstr "Nu știu"

#: ../lib/network/connection/isdn.pm:197 ../lib/network/netconnect.pm:405
#, c-format
msgid "PCI"
msgstr "PCI"

#: ../lib/network/connection/isdn.pm:198 ../lib/network/netconnect.pm:405
#, c-format
msgid "USB"
msgstr "USB"

#. -PO: POTS means "Plain old telephone service"
#: ../lib/network/connection/pots.pm:10
#, c-format
msgid "POTS"
msgstr "POTS"

#. -PO: POTS means "Plain old telephone service"
#. -PO: remove it if it doesn't have an equivalent in your language
#. -PO: for example, in French, it can be translated as "RTC"
#: ../lib/network/connection/pots.pm:16
#, c-format
msgid "Analog telephone modem (POTS)"
msgstr "Modem analogic (POTS)"

#: ../lib/network/connection/ppp.pm:9 ../lib/network/netconnect.pm:77
#, c-format
msgid "Script-based"
msgstr "Bazat pe script"

#: ../lib/network/connection/ppp.pm:10 ../lib/network/netconnect.pm:78
#, c-format
msgid "PAP"
msgstr "PAP"

#: ../lib/network/connection/ppp.pm:11 ../lib/network/netconnect.pm:79
#, c-format
msgid "Terminal-based"
msgstr "Manual prin terminal"

#: ../lib/network/connection/ppp.pm:12 ../lib/network/netconnect.pm:80
#, c-format
msgid "CHAP"
msgstr "CHAP"

#: ../lib/network/connection/ppp.pm:13 ../lib/network/netconnect.pm:81
#, c-format
msgid "PAP/CHAP"
msgstr "PAP/CHAP"

#: ../lib/network/connection/providers/cellular.pm:16
#: ../lib/network/connection/providers/cellular.pm:20
#: ../lib/network/connection/providers/cellular.pm:28
#: ../lib/network/connection/providers/cellular.pm:34
#: ../lib/network/connection/providers/cellular.pm:39
#: ../lib/network/connection/providers/cellular.pm:45
#: ../lib/network/connection/providers/cellular.pm:49
#: ../lib/network/connection/providers/cellular.pm:53
#: ../lib/network/connection/providers/cellular.pm:59
#: ../lib/network/connection/providers/cellular.pm:63
#: ../lib/network/connection/providers/xdsl.pm:483
#, c-format
msgid "Finland"
msgstr "Finlanda"

#: ../lib/network/connection/providers/cellular.pm:66
#: ../lib/network/connection/providers/cellular.pm:69
#: ../lib/network/connection/providers/cellular.pm:74
#: ../lib/network/connection/providers/cellular.pm:79
#: ../lib/network/connection/providers/cellular.pm:86
#: ../lib/network/connection/providers/cellular.pm:91
#: ../lib/network/connection/providers/cellular.pm:96
#: ../lib/network/connection/providers/cellular.pm:99
#: ../lib/network/connection/providers/cellular.pm:102
#: ../lib/network/connection/providers/xdsl.pm:492
#: ../lib/network/connection/providers/xdsl.pm:504
#: ../lib/network/connection/providers/xdsl.pm:516
#: ../lib/network/connection/providers/xdsl.pm:528
#: ../lib/network/connection/providers/xdsl.pm:539
#: ../lib/network/connection/providers/xdsl.pm:551
#: ../lib/network/connection/providers/xdsl.pm:563
#: ../lib/network/connection/providers/xdsl.pm:575
#: ../lib/network/connection/providers/xdsl.pm:588
#: ../lib/network/connection/providers/xdsl.pm:599
#: ../lib/network/connection/providers/xdsl.pm:610
#: ../lib/network/netconnect.pm:33
#, c-format
msgid "France"
msgstr "Franța"

#: ../lib/network/connection/providers/cellular.pm:105
#: ../lib/network/connection/providers/cellular.pm:108
#: ../lib/network/connection/providers/xdsl.pm:621
#: ../lib/network/connection/providers/xdsl.pm:630
#: ../lib/network/connection/providers/xdsl.pm:640
#, c-format
msgid "Germany"
msgstr "Germania"

#: ../lib/network/connection/providers/cellular.pm:111
#: ../lib/network/connection/providers/cellular.pm:116
#: ../lib/network/connection/providers/cellular.pm:121
#: ../lib/network/connection/providers/cellular.pm:126
#: ../lib/network/connection/providers/xdsl.pm:814
#: ../lib/network/connection/providers/xdsl.pm:825
#: ../lib/network/connection/providers/xdsl.pm:835
#: ../lib/network/connection/providers/xdsl.pm:846
#: ../lib/network/netconnect.pm:35
#, c-format
msgid "Italy"
msgstr "Italia"

#: ../lib/network/connection/providers/xdsl.pm:47
#: ../lib/network/connection/providers/xdsl.pm:57
#, c-format
msgid "Algeria"
msgstr "Algeria"

#: ../lib/network/connection/providers/xdsl.pm:67
#: ../lib/network/connection/providers/xdsl.pm:77
#, c-format
msgid "Argentina"
msgstr "Argentina"

#: ../lib/network/connection/providers/xdsl.pm:87
#: ../lib/network/connection/providers/xdsl.pm:96
#: ../lib/network/connection/providers/xdsl.pm:105
#, c-format
msgid "Austria"
msgstr "Austria"

#: ../lib/network/connection/providers/xdsl.pm:87
#: ../lib/network/connection/providers/xdsl.pm:446
#: ../lib/network/connection/providers/xdsl.pm:650
#: ../lib/network/connection/providers/xdsl.pm:668
#: ../lib/network/connection/providers/xdsl.pm:787
#: ../lib/network/connection/providers/xdsl.pm:1258
#, c-format
msgid "Any"
msgstr "Orice"

#: ../lib/network/connection/providers/xdsl.pm:114
#: ../lib/network/connection/providers/xdsl.pm:124
#: ../lib/network/connection/providers/xdsl.pm:134
#, c-format
msgid "Australia"
msgstr "Australia"

#: ../lib/network/connection/providers/xdsl.pm:144
#: ../lib/network/connection/providers/xdsl.pm:153
#: ../lib/network/connection/providers/xdsl.pm:164
#: ../lib/network/connection/providers/xdsl.pm:173
#: ../lib/network/connection/providers/xdsl.pm:182
#: ../lib/network/netconnect.pm:36
#, c-format
msgid "Belgium"
msgstr "Belgia"

#: ../lib/network/connection/providers/xdsl.pm:191
#: ../lib/network/connection/providers/xdsl.pm:201
#: ../lib/network/connection/providers/xdsl.pm:210
#: ../lib/network/connection/providers/xdsl.pm:219
#, c-format
msgid "Brazil"
msgstr "Brazilia"

#: ../lib/network/connection/providers/xdsl.pm:228
#: ../lib/network/connection/providers/xdsl.pm:237
#, c-format
msgid "Bulgaria"
msgstr "Bulgaria"

#: ../lib/network/connection/providers/xdsl.pm:246
#: ../lib/network/connection/providers/xdsl.pm:255
#: ../lib/network/connection/providers/xdsl.pm:264
#: ../lib/network/connection/providers/xdsl.pm:273
#: ../lib/network/connection/providers/xdsl.pm:282
#: ../lib/network/connection/providers/xdsl.pm:291
#: ../lib/network/connection/providers/xdsl.pm:300
#: ../lib/network/connection/providers/xdsl.pm:309
#: ../lib/network/connection/providers/xdsl.pm:318
#: ../lib/network/connection/providers/xdsl.pm:327
#: ../lib/network/connection/providers/xdsl.pm:336
#: ../lib/network/connection/providers/xdsl.pm:345
#: ../lib/network/connection/providers/xdsl.pm:354
#: ../lib/network/connection/providers/xdsl.pm:363
#: ../lib/network/connection/providers/xdsl.pm:372
#: ../lib/network/connection/providers/xdsl.pm:381
#: ../lib/network/connection/providers/xdsl.pm:390
#: ../lib/network/connection/providers/xdsl.pm:399
#: ../lib/network/connection/providers/xdsl.pm:408
#: ../lib/network/connection/providers/xdsl.pm:417
#, c-format
msgid "China"
msgstr "China"

#: ../lib/network/connection/providers/xdsl.pm:426
#: ../lib/network/connection/providers/xdsl.pm:436
#, c-format
msgid "Czech Republic"
msgstr "Republica Cehă"

#: ../lib/network/connection/providers/xdsl.pm:446
#: ../lib/network/connection/providers/xdsl.pm:455
#: ../lib/network/connection/providers/xdsl.pm:464
#, c-format
msgid "Denmark"
msgstr "Danemarca"

#: ../lib/network/connection/providers/xdsl.pm:473
#, c-format
msgid "Egypt"
msgstr "Egipt"

#: ../lib/network/connection/providers/xdsl.pm:650
#, c-format
msgid "Greece"
msgstr "Grecia"

#: ../lib/network/connection/providers/xdsl.pm:659
#, c-format
msgid "Hungary"
msgstr "Ungaria"

#: ../lib/network/connection/providers/xdsl.pm:668
#, c-format
msgid "Ireland"
msgstr "Irlanda"

#: ../lib/network/connection/providers/xdsl.pm:677
#: ../lib/network/connection/providers/xdsl.pm:687
#: ../lib/network/connection/providers/xdsl.pm:697
#: ../lib/network/connection/providers/xdsl.pm:707
#: ../lib/network/connection/providers/xdsl.pm:717
#: ../lib/network/connection/providers/xdsl.pm:727
#: ../lib/network/connection/providers/xdsl.pm:737
#: ../lib/network/connection/providers/xdsl.pm:747
#: ../lib/network/connection/providers/xdsl.pm:757
#: ../lib/network/connection/providers/xdsl.pm:767
#: ../lib/network/connection/providers/xdsl.pm:777
#, c-format
msgid "Israel"
msgstr "Israel"

#: ../lib/network/connection/providers/xdsl.pm:787
#, c-format
msgid "India"
msgstr "India"

#: ../lib/network/connection/providers/xdsl.pm:796
#: ../lib/network/connection/providers/xdsl.pm:805
#, c-format
msgid "Iceland"
msgstr "Islanda"

#: ../lib/network/connection/providers/xdsl.pm:858
#, c-format
msgid "Sri Lanka"
msgstr "Sri Lanka"

#: ../lib/network/connection/providers/xdsl.pm:870
#, c-format
msgid "Lithuania"
msgstr "Lituania"

#: ../lib/network/connection/providers/xdsl.pm:879
#: ../lib/network/connection/providers/xdsl.pm:889
#, c-format
msgid "Mauritius"
msgstr "Maurițiu"

#: ../lib/network/connection/providers/xdsl.pm:900
#, c-format
msgid "Morocco"
msgstr "Maroc"

#: ../lib/network/connection/providers/xdsl.pm:910
#: ../lib/network/connection/providers/xdsl.pm:919
#: ../lib/network/connection/providers/xdsl.pm:928
#: ../lib/network/connection/providers/xdsl.pm:937
#: ../lib/network/netconnect.pm:34
#, c-format
msgid "Netherlands"
msgstr "Olanda"

#: ../lib/network/connection/providers/xdsl.pm:946
#: ../lib/network/connection/providers/xdsl.pm:952
#: ../lib/network/connection/providers/xdsl.pm:958
#: ../lib/network/connection/providers/xdsl.pm:964
#: ../lib/network/connection/providers/xdsl.pm:970
#: ../lib/network/connection/providers/xdsl.pm:976
#: ../lib/network/connection/providers/xdsl.pm:982
#, c-format
msgid "Norway"
msgstr "Norvegia"

#: ../lib/network/connection/providers/xdsl.pm:990
#, c-format
msgid "Pakistan"
msgstr "Pakistan"

#: ../lib/network/connection/providers/xdsl.pm:1001
#: ../lib/network/connection/providers/xdsl.pm:1011
#, c-format
msgid "Poland"
msgstr "Polonia"

#: ../lib/network/connection/providers/xdsl.pm:1022
#, c-format
msgid "Portugal"
msgstr "Portugalia"

#: ../lib/network/connection/providers/xdsl.pm:1031
#, c-format
msgid "Russia"
msgstr "Rusia"

#: ../lib/network/connection/providers/xdsl.pm:1042
#, c-format
msgid "Singapore"
msgstr "Singapore"

#: ../lib/network/connection/providers/xdsl.pm:1051
#, c-format
msgid "Senegal"
msgstr "Senegal"

#: ../lib/network/connection/providers/xdsl.pm:1061
#, c-format
msgid "Slovenia"
msgstr "Slovenia"

#: ../lib/network/connection/providers/xdsl.pm:1072
#: ../lib/network/connection/providers/xdsl.pm:1084
#: ../lib/network/connection/providers/xdsl.pm:1096
#: ../lib/network/connection/providers/xdsl.pm:1109
#: ../lib/network/connection/providers/xdsl.pm:1119
#: ../lib/network/connection/providers/xdsl.pm:1129
#: ../lib/network/connection/providers/xdsl.pm:1140
#: ../lib/network/connection/providers/xdsl.pm:1150
#: ../lib/network/connection/providers/xdsl.pm:1160
#: ../lib/network/connection/providers/xdsl.pm:1170
#: ../lib/network/connection/providers/xdsl.pm:1180
#: ../lib/network/connection/providers/xdsl.pm:1190
#: ../lib/network/connection/providers/xdsl.pm:1201
#: ../lib/network/connection/providers/xdsl.pm:1212
#: ../lib/network/connection/providers/xdsl.pm:1224
#: ../lib/network/connection/providers/xdsl.pm:1236
#, c-format
msgid "Spain"
msgstr "Spania"

#: ../lib/network/connection/providers/xdsl.pm:1249
#, c-format
msgid "Sweden"
msgstr "Suedia"

#: ../lib/network/connection/providers/xdsl.pm:1258
#: ../lib/network/connection/providers/xdsl.pm:1267
#: ../lib/network/connection/providers/xdsl.pm:1277
#, c-format
msgid "Switzerland"
msgstr "Elveția"

#: ../lib/network/connection/providers/xdsl.pm:1286
#, c-format
msgid "Thailand"
msgstr "Tailanda"

#: ../lib/network/connection/providers/xdsl.pm:1296
#, c-format
msgid "Tunisia"
msgstr "Tunisia"

#: ../lib/network/connection/providers/xdsl.pm:1307
#, c-format
msgid "Turkey"
msgstr "Turcia"

#: ../lib/network/connection/providers/xdsl.pm:1320
#, c-format
msgid "United Arab Emirates"
msgstr "Emiratele arabe unite"

#: ../lib/network/connection/providers/xdsl.pm:1330
#: ../lib/network/connection/providers/xdsl.pm:1340
#: ../lib/network/netconnect.pm:38
#, c-format
msgid "United Kingdom"
msgstr "Marea Britanie"

#: ../lib/network/connection/wireless.pm:12
#, c-format
msgid "Wireless"
msgstr "Fără fir"

#: ../lib/network/connection/wireless.pm:13
#, c-format
msgid "Wireless (Wi-Fi)"
msgstr "Fără fir (Wi-Fi)"

#: ../lib/network/connection/wireless.pm:29
#, c-format
msgid "Use a Windows driver (with ndiswrapper)"
msgstr "Utilizează un pilot Windows (cu ndiswrapper)"

#: ../lib/network/connection/wireless.pm:46
#, c-format
msgid "Open WEP"
msgstr "WEP deschis"

#: ../lib/network/connection/wireless.pm:47
#, c-format
msgid "Restricted WEP"
msgstr "WEP restrîns"

#: ../lib/network/connection/wireless.pm:48
#, c-format
msgid "WPA/WPA2 Pre-Shared Key"
msgstr "WPA/WPA2 cu cheie pre-partajată (PSK)"

#: ../lib/network/connection/wireless.pm:49
#, c-format
msgid "WPA/WPA2 Enterprise"
msgstr "WPA/WPA2 Enterprise"

#: ../lib/network/connection/wireless.pm:260
#, c-format
msgid "Windows driver"
msgstr "Pilot Windows"

#: ../lib/network/connection/wireless.pm:346
#, c-format
msgid ""
"Your wireless card is disabled, please enable the wireless switch (RF kill "
"switch) first."
msgstr ""
"Placa de rețea fără fir este dezactivată, activați-o apăsînd butonul în "
"acest scop."

#: ../lib/network/connection/wireless.pm:431
#, c-format
msgid "Wireless settings"
msgstr "Parametrii conexiunii fără fir"

#: ../lib/network/connection/wireless.pm:436
#: ../lib/network/connection_manager.pm:268
#, c-format
msgid "Operating Mode"
msgstr "Mod de operare"

#: ../lib/network/connection/wireless.pm:437
#, c-format
msgid "Ad-hoc"
msgstr "Ad-hoc"

#: ../lib/network/connection/wireless.pm:437
#, c-format
msgid "Managed"
msgstr "Gestionat"

#: ../lib/network/connection/wireless.pm:437
#, c-format
msgid "Master"
msgstr "Principal"

#: ../lib/network/connection/wireless.pm:437
#, c-format
msgid "Repeater"
msgstr "Repetor"

#: ../lib/network/connection/wireless.pm:437
#, c-format
msgid "Secondary"
msgstr "Secundar"

#: ../lib/network/connection/wireless.pm:437
#, c-format
msgid "Auto"
msgstr "Auto"

#: ../lib/network/connection/wireless.pm:440
#, c-format
msgid "Network name (ESSID)"
msgstr "Nume rețea (ESSID)"

#: ../lib/network/connection/wireless.pm:442
#, c-format
msgid "Encryption mode"
msgstr "Mod de criptare"

#: ../lib/network/connection/wireless.pm:444
#, c-format
msgid "Encryption key"
msgstr "Cheia de criptare"

#: ../lib/network/connection/wireless.pm:446
#, c-format
msgid "Force using this key as ASCII string (e.g. for Livebox)"
msgstr "Forțează utilizarea acestei chei ca șir ASCII (ex: pentru Livebox)"

#: ../lib/network/connection/wireless.pm:453
#, c-format
msgid "EAP Login/Username"
msgstr "Utilizator/Cont EAP"

#: ../lib/network/connection/wireless.pm:455
#, c-format
msgid ""
"The login or username. Format is plain text. If you\n"
"need to specify domain then try the untested syntax\n"
"  DOMAIN\\username"
msgstr ""
"Numele de conexiune sau utilizator în format text.\n"
"Dacă trebuie precizat un domeniu, utilizați sintaxa\n"
"(netestată) DOMENIU\\utilizator"

#: ../lib/network/connection/wireless.pm:458
#, c-format
msgid "EAP Password"
msgstr "Parolă EAP"

#: ../lib/network/connection/wireless.pm:460
#, c-format
msgid ""
" Password: A string.\n"
"Note that this is not the same thing as a psk.\n"
"____________________________________________________\n"
"RELATED ADDITIONAL INFORMATION:\n"
"In the Advanced Page, you can select which EAP mode\n"
"is used for authentication. For the eap mode setting\n"
"   Auto Detect: implies all possible modes are tried.\n"
"\n"
"If Auto Detect fails, try the PEAP TTLS combo bofore others\n"
"Note:\n"
"\tThe settings MD5, MSCHAPV2, OTP and GTC imply\n"
"automatically PEAP and TTLS modes.\n"
"  TLS mode is completely certificate based and may ignore\n"
"the username and password values specified here."
msgstr ""
" Parolă : un șir de caractere.\n"
"Notă: nu este același lucru cu psk.\n"
"____________________________________________________\n"
"INFORMAȚII SUPLIMENTARE :\n"
"În pagina 'Opțiuni avansate', puteți alege modul de\n"
"autentificare EAP utilizat. Pentru modul EAP\n"
"   Auto-detectție : toate modurile posibile vor fi încercate.\n"
"\n"
"Dacă auto-detecția eșuează, incercați PEAP cu TTLS în prioritate\n"
"Notă:\n"
"\tOpțiunile MD5, MSCHAPV2, OTP și GTC implică în mod\n"
"automat modurile PEAP și TTLS.\n"
"  Modul TLS este bazat în mod unic pe un certificat și poate\n"
"ignora numele utilizatorului și parola specificate aici."

#: ../lib/network/connection/wireless.pm:474
#, c-format
msgid "EAP client certificate"
msgstr "Certificat client EAP"

#: ../lib/network/connection/wireless.pm:476
#, c-format
msgid ""
"The complete path and filename of client certificate. This is\n"
"only used for EAP certificate based authentication. It could be\n"
"considered as the alternative to username/password combo.\n"
" Note: other related settings are shown on the Advanced page."
msgstr ""
"Calea completă și numele fișierului certificatului client. Acesta\n"
"este utilizat numai pentru autentificările bazate pe certificat EAP.\n"
"Poate fi considerată ca o alternativă cuplului utilizator/parolă.\n"
" Notă : ceilalți parametri asociați îi găsiți în „Opțiuni avansate”."

#: ../lib/network/connection/wireless.pm:480
#, c-format
msgid "Network ID"
msgstr "Identificator rețea"

#: ../lib/network/connection/wireless.pm:481
#, c-format
msgid "Operating frequency"
msgstr "Frecvența de operare"

#: ../lib/network/connection/wireless.pm:482
#, c-format
msgid "Sensitivity threshold"
msgstr "Prag de sensibilitate"

#: ../lib/network/connection/wireless.pm:483
#, c-format
msgid "Bitrate (in b/s)"
msgstr "Rată de transfer (în biți/secundă)"

#: ../lib/network/connection/wireless.pm:484
#, c-format
msgid "RTS/CTS"
msgstr "RTS/CTS"

#: ../lib/network/connection/wireless.pm:485
#, c-format
msgid ""
"RTS/CTS adds a handshake before each packet transmission to make sure that "
"the\n"
"channel is clear. This adds overhead, but increase performance in case of "
"hidden\n"
"nodes or large number of active nodes. This parameter sets the size of the\n"
"smallest packet for which the node sends RTS, a value equal to the maximum\n"
"packet size disable the scheme. You may also set this parameter to auto, "
"fixed\n"
"or off."
msgstr ""
"RTS/CTS rezervă canalul înainte de fiecare transmisie de pachet ca să-i\n"
"verifice disponibilitatea. Aceasta reduce lățimea de bandă, dar mărește\n"
"performanțele în cazul nodurilor ascunse, sau prezența unui număr mare de\n"
"noduri active. Acest parametru definește mărimea celui mai mic pachet "
"pentru\n"
"care nodul trimite o ramă RTS; o valoare egală cu mărimea maximă a\n"
"pachetului dezactivează acest mecanism. De asemenea, acest parametru mai\n"
"poate fi definit ca „auto”, „fixed” sau „off”."

#: ../lib/network/connection/wireless.pm:492
#, c-format
msgid "Fragmentation"
msgstr "Fragmentare"

#: ../lib/network/connection/wireless.pm:493
#, c-format
msgid "iwconfig command extra arguments"
msgstr ""
"argumente suplimentare\n"
"pentru comanda iwconfig"

#: ../lib/network/connection/wireless.pm:494
#, c-format
msgid ""
"Here, one can configure some extra wireless parameters such as:\n"
"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
"as the hostname).\n"
"\n"
"See iwconfig(8) man page for further information."
msgstr ""
"Aici, se pot configura parametrii suplimentari pentru placa de rețeafără "
"fir, precum:\n"
"ap, channel, commit, enc, power, retry, sens, txpower (nick est deja "
"configurat de numele gazdei).\n"
"\n"
"Consultați pagina de manual iwconfig(8) pentru mai multe informații."

#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
#: ../lib/network/connection/wireless.pm:501
#, c-format
msgid "iwspy command extra arguments"
msgstr ""
"argumente suplimentare\n"
"pentru comanda iwspy"

#: ../lib/network/connection/wireless.pm:502
#, c-format
msgid ""
"iwspy is used to set a list of addresses in a wireless network\n"
"interface and to read back quality of link information for each of those.\n"
"\n"
"This information is the same as the one available in /proc/net/wireless :\n"
"quality of the link, signal strength and noise level.\n"
"\n"
"See iwpspy(8) man page for further information."
msgstr ""
"iwspy este utilizată pentrua defini o listă de adrese, la nivelul unei\n"
"interfețe de rețea fără fir, pentru a obține calitatea semnalului pentru\n"
"fiecare dintre ele.\n"
"\n"
"De asemenea, această informație este disponibilă în /proc/net/wireless:\n"
"calitatea conexiunii, puterea semnalului și nivelul de zgomot.\n"
"\n"
"Consultați pagina de manual iwspy(8) pentru mai multe informații."

#: ../lib/network/connection/wireless.pm:510
#, c-format
msgid "iwpriv command extra arguments"
msgstr ""
"argumente suplimentare\n"
"pentru comanda iwpriv"

#: ../lib/network/connection/wireless.pm:512
#, c-format
msgid ""
"iwpriv enable to set up optionals (private) parameters of a wireless "
"network\n"
"interface.\n"
"\n"
"iwpriv deals with parameters and setting specific to each driver (as opposed "
"to\n"
"iwconfig which deals with generic ones).\n"
"\n"
"In theory, the documentation of each device driver should indicate how to "
"use\n"
"those interface specific commands and their effect.\n"
"\n"
"See iwpriv(8) man page for further information."
msgstr ""
"iwpriv permite specificarea parametrilor opționali (și privați) ai unei "
"interfețe de rețea fără fir.\n"
"\n"
"impriv permite manipularea parametrilor și reglajelor specifice fiecărui\n"
"pilot (spre deosebire de iwconfig care gestionează parametrii\n"
"generici).\n"
"\n"
"Teoretic, documentația fiecărui pilot de dispozitiv ar trebui să\n"
"indice cum se utilizează comenzile specifice interfeței, cît și\n"
"efectele scontate.\n"
"\n"
"Consultați pagina de manual iwpriv(8) pentru mai multe informații."

#: ../lib/network/connection/wireless.pm:523
#, c-format
msgid "EAP Protocol"
msgstr "Protocol EAP"

#: ../lib/network/connection/wireless.pm:524
#: ../lib/network/connection/wireless.pm:529
#, c-format
msgid "Auto Detect"
msgstr "Detectare Automată"

#: ../lib/network/connection/wireless.pm:524
#, c-format
msgid "WPA2"
msgstr "WPA2"

#: ../lib/network/connection/wireless.pm:524
#, c-format
msgid "WPA"
msgstr "WPA"

#: ../lib/network/connection/wireless.pm:526
#, c-format
msgid ""
"Auto Detect is recommended as it first tries WPA version 2 with\n"
"a fallback to WPA version 1"
msgstr ""
"Auto-detecția este recomandată deoarece mai întîi se încearcă WPA\n"
"versiunea 2, cu WPA versiunea 1 în secundar"

#: ../lib/network/connection/wireless.pm:528
#, c-format
msgid "EAP Mode"
msgstr "Mod EAP"

#: ../lib/network/connection/wireless.pm:529
#, c-format
msgid "PEAP"
msgstr "PEAP"

#: ../lib/network/connection/wireless.pm:529
#, c-format
msgid "TTLS"
msgstr "TTLS"

#: ../lib/network/connection/wireless.pm:529
#, c-format
msgid "TLS"
msgstr "TLS"

#: ../lib/network/connection/wireless.pm:529
#, c-format
msgid "MSCHAPV2"
msgstr "MSCHAPV2"

#: ../lib/network/connection/wireless.pm:529
#, c-format
msgid "MD5"
msgstr "MD5"

#: ../lib/network/connection/wireless.pm:529
#, c-format
msgid "OTP"
msgstr "OTP"

#: ../lib/network/connection/wireless.pm:529
#, c-format
msgid "GTC"
msgstr "GTC"

#: ../lib/network/connection/wireless.pm:529
#, c-format
msgid "LEAP"
msgstr "LEAP"

#: ../lib/network/connection/wireless.pm:529
#, c-format
msgid "PEAP TTLS"
msgstr "PEAP TTLS"

#: ../lib/network/connection/wireless.pm:529
#, c-format
msgid "TTLS TLS"
msgstr "TTLS TLS"

#: ../lib/network/connection/wireless.pm:531
#, c-format
msgid "EAP key_mgmt"
msgstr "EAP key_mgmt"

#: ../lib/network/connection/wireless.pm:533
#, c-format
msgid ""
"list of accepted authenticated key management protocols.\n"
"possible values are WPA-EAP, IEEE8021X, NONE"
msgstr ""
"lista protocoalelor de gestiune de chei de autentificare acceptate.\n"
"valori posibile: WPA-EAP, IEEE8021X, NONE"

#: ../lib/network/connection/wireless.pm:535
#, c-format
msgid "EAP outer identity"
msgstr "Identitate externă EAP"

#: ../lib/network/connection/wireless.pm:537
#, c-format
msgid ""
"Anonymous identity string for EAP: to be used as the\n"
"unencrypted identity with EAP types that support different\n"
"tunnelled identity, e.g., TTLS"
msgstr ""
"Șir de autentificare anonimă pentru EAP : va fi utilizată\n"
"ca identitate necriptată cu tipurile de EAP ce suportă\n"
"diferite identități încapsulate în tunele, ex: TTLS"

#: ../lib/network/connection/wireless.pm:540
#, c-format
msgid "EAP phase2"
msgstr "EAP phase2"

#: ../lib/network/connection/wireless.pm:542
#, c-format
msgid ""
"Inner authentication with TLS tunnel parameters.\n"
"input is string with field-value pairs, Examples:\n"
"auth=MSCHAPV2 for PEAP or\n"
"autheap=MSCHAPV2 autheap=MD5 for TTLS"
msgstr ""
"Autentificare internă cu parametrii de tunel TLS.\n"
"Este un șir cu cupluri de tip cîmp=valoare, exemple:\n"
"auth=MSCHAPV2 pentru PEAP sau\n"
"autheap=MSCHAPV2 autheap=MD5 pentru TTLS"

#: ../lib/network/connection/wireless.pm:546
#, c-format
msgid "EAP CA certificate"
msgstr "Certificat CA EAP"

#: ../lib/network/connection/wireless.pm:548
#, c-format
msgid ""
"Full file path to CA certificate file (PEM/DER). This file\n"
"can have one or more trusted CA certificates. If ca_cert are not\n"
"included, server certificate will not be verified. If possible,\n"
"a trusted CA certificate should always be configured\n"
"when using TLS or TTLS or PEAP."
msgstr ""
"Calea completă a fișierului certificat CA (PEM/DER). Acest fișier\n"
"poate include unul sau mai multe certificare de încredere. Dacă\n"
"ca_cert nu sînt incluse, certificatul server nu va fi verificat.\n"
"Dacă se poate, un certificat CA de încredere, trebuie întotdeauna\n"
"configurat dacă se utilizează TLS, TTLS sau PEAP."

#: ../lib/network/connection/wireless.pm:553
#, c-format
msgid "EAP certificate subject match"
msgstr "Model de subiect de certificat EAP"

#: ../lib/network/connection/wireless.pm:555
#, c-format
msgid ""
" Substring to be matched against the subject of\n"
"the authentication server certificate. If this string is set,\n"
"the server sertificate is only accepted if it contains this\n"
"string in the subject.  The subject string is in following format:\n"
"/C=US/ST=CA/L=San Francisco/CN=Test AS/emailAddress=as@example.com"
msgstr ""
" Șir căruia trebuie să-i corespundă subiectul certificatului de\n"
"autentificare al serverului. Dacă acest șir este definit, certificatul\n"
"serverului nu va fi acceptat decît dacă conține acest șir în subiectul său.\n"
"Formatul subiectului trebuie să fie următorul:\n"
"/C=US/ST=CA/L=San Francisco/CN=Test AS/emailAddress=as@example.com"

#: ../lib/network/connection/wireless.pm:560
#, c-format
msgid "EAP extra directives"
msgstr "Directive EAP suplimentare"

#: ../lib/network/connection/wireless.pm:562
#, c-format
msgid ""
"Here one can pass extra settings to wpa_supplicant\n"
"The expected format is a string field=value pair. Multiple values\n"
"maybe specified, separating each value with the # character.\n"
"Note: directives are passed unchecked and may cause the wpa\n"
"negotiation to fail silently. Supported directives are preserved\n"
"across editing.\n"
"Supported directives are :\n"
"\tdisabled, id_str, bssid, priority, auth_alg, eapol_flags,\n"
"\tproactive_key_caching, peerkey, ca_path, private_key,\n"
"\tprivate_key_passwd, dh_file, altsubject_match, phase1,\n"
"\tfragment_size and eap_workaround, pairwise, group\n"
"\tOthers such as key_mgmt, eap maybe used to force\n"
"\tspecial settings different from the U.I settings."
msgstr ""
"Parametrii suplimentari wpa_supplicant\n"
"Formatul așteptat este un cuplu cîmp=valoare. Se pot\n"
"specifica valori multiple, prin separarea cu caracterul #.\n"
"Notă: aceste directive nu sînt verificate și pot provoca\n"
"eșuarea în mod silențios a negocierii wpa.\n"
"Directivele specificate sînt păstrate între editări.\n"
"Directivele valide sînt:\n"
"\tdisabled, id_str, bssid, priority, auth_alg, eapol_flags,\n"
"\tproactive_key_caching, peerkey, ca_path, private_key,\n"
"\tprivate_key_passwd, dh_file, altsubject_match, phase1,\n"
"\tfragment_size, eap_workaround, pairwise, și group\n"
"\tAltele, precum key_mgmt și eap, permit forțarea\n"
"\tde valori diferite de cele ale interfeței."

#: ../lib/network/connection/wireless.pm:582
#, c-format
msgid "An encryption key is required."
msgstr "Este necesară o cheie de criptare."

#: ../lib/network/connection/wireless.pm:589
#, c-format
msgid ""
"The pre-shared key should have between 8 and 63 ASCII characters, or 64 "
"hexadecimal characters."
msgstr ""
"Cheia pre-partajată conține între 8 și 63 de caractere ASCII, sau 64 "
"caractere hexazecimale."

#: ../lib/network/connection/wireless.pm:595
#, c-format
msgid ""
"The WEP key should have at most %d ASCII characters or %d hexadecimal "
"characters."
msgstr ""
"Cheia WEP conține cel mult %d caractere ASCII sau %d caractere hexazecimale."

#: ../lib/network/connection/wireless.pm:602
#, c-format
msgid ""
"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
"frequency), or add enough '0' (zeroes)."
msgstr ""
"Frecvența trebuie să conțină sufixul k, M or G (de exemplu: \"2.46G\" pentru "
"frecvența de 2.46 GHz), sau să aibă suficiente zerouri."

#: ../lib/network/connection/wireless.pm:608
#, c-format
msgid ""
"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
"enough '0' (zeroes)."
msgstr ""
"Debitul trebuie să conțină sufixul k, M or G (de exemplu, \"11M\" pentru "
"11M), sau să aibă suficiente zerouri."

#: ../lib/network/connection/wireless.pm:620
#, c-format
msgid "Allow access point roaming"
msgstr "Autorizează conexiunile itinerante"

#: ../lib/network/connection/wireless.pm:741
#, c-format
msgid "Associated to wireless network \"%s\" on interface %s"
msgstr "Asociat rețelei fără fir \"%s\" pe interfața %s"

#: ../lib/network/connection/wireless.pm:742
#, c-format
msgid "Lost association to wireless network on interface %s"
msgstr "Asociere pierdută cu rețeaua fără fir pe interfața %s"

#: ../lib/network/connection/xdsl.pm:8
#, c-format
msgid "DSL"
msgstr "DSL"

#: ../lib/network/connection/xdsl.pm:95 ../lib/network/netconnect.pm:765
#, c-format
msgid "Alcatel speedtouch USB modem"
msgstr "Modem USB Alcatel speedtouch"

#: ../lib/network/connection/xdsl.pm:123
#, c-format
msgid ""
"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
"problem.\n"
"\n"
"You can find a driver on http://eciadsl.flashtux.org/"
msgstr ""
"Modemul ECI Hi-Focus nu poate fi configurat din cauza unei problene de "
"redistribuire a pilotului binar.\n"
"\n"
"Puteți găsi pilotul la adresa http://eciadsl.flashtux.org/"