aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_module.php
blob: 9541c9f4cfc12588c3e60248cbb6e6ab6f9920e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
<?php
/** 
*
* @package phpBB3
* @version $Id$
* @copyright (c) 2005 phpBB Group 
* @license http://opensource.org/licenses/gpl-license.php GNU Public License 
*
*/

/**
* Class handling all types of 'plugins' (a future term)
* @package phpBB3
*/
class p_master
{
	var $p_id;
	var $p_class;
	var $p_name;
	var $p_mode;
	var $p_parent;

	var $active_module = false;
	var $acl_forum_id = false;
	var $module_ary = array();

	/**
	* List modules
	*
	* This creates a list, stored in $this->module_ary of all available
	* modules for the given class (ucp, mcp and acp). Additionally
	* $this->module_y_ary is created with indentation information for
	* displaying the module list appropriately. Only modules for which
	* the user has access rights are included in these lists.
	*/
	function list_modules($p_class)
	{
		global $auth, $db, $user, $cache;
		global $config, $phpbb_root_path, $phpEx;

		// Sanitise for future path use, it's escaped as appropriate for queries
		$this->p_class = str_replace(array('.', '/', '\\'), '', basename($p_class));

		// Get cached modules
		if (($this->module_cache = $cache->get('_modules_' . $this->p_class)) === false)
		{
			// Get modules
			$sql = 'SELECT *
				FROM ' . MODULES_TABLE . "
				WHERE module_class = '" . $db->sql_escape($this->p_class) . "'
				ORDER BY left_id ASC";
			$result = $db->sql_query($sql);
			
			$rows = array();
			while ($row = $db->sql_fetchrow($result))
			{
				$rows[$row['module_id']] = $row;
			}
			$db->sql_freeresult($result);

			$this->module_cache = array();
			foreach ($rows as $module_id => $row)
			{
				$this->module_cache['modules'][] = $row;
				$this->module_cache['parents'][$row['module_id']] = $this->get_parents($row['parent_id'], $row['left_id'], $row['right_id'], $rows);
			}
			unset($rows);

			$cache->put('_modules_' . $this->p_class, $this->module_cache);
		}

		// We "could" build a true tree with this function - maybe mod authors want to use this...
		// Functions for traversing and manipulating the tree are not available though
		// We might re-structure the module system to use true trees in 3.2.x...
		// $tree = $this->build_tree($this->module_cache['modules'], $this->module_cache['parents']);

		// Clean up module cache array to only let survive modules the user can access
		$right_id = false;
		foreach ($this->module_cache['modules'] as $key => $row)
		{
			// Not allowed to view module?
			if (!$this->module_auth($row['module_auth']))
			{
				unset($this->module_cache['modules'][$key]);
				continue;
			}

			// Category with no members, ignore
			if (!$row['module_basename'] && ($row['left_id'] + 1 == $row['right_id']))
			{
				unset($this->module_cache['modules'][$key]);
				continue;
			}

			// Skip branch
			if ($right_id !== false)
			{
				if ($row['left_id'] < $right_id)
				{
					unset($this->module_cache['modules'][$key]);
					continue;
				}
				
				$right_id = false;
			}

			// Not enabled?
			if (!$row['module_enabled'])
			{
				// If category is disabled then disable every child too
				unset($this->module_cache['modules'][$key]);
				$right_id = $row['right_id'];
				continue;
			}
		}

		// Re-index (this is needed, else we are not able to array_slice later)
		$this->module_cache['modules'] = array_merge($this->module_cache['modules']);

		// Now build the module array, but exclude completely empty categories...
		$right_id = false;
		$names = array();

		foreach ($this->module_cache['modules'] as $key => $row)
		{
			// Skip branch
			if ($right_id !== false)
			{
				if ($row['left_id'] < $right_id)
				{
					continue;
				}
				
				$right_id = false;
			}

			// Category with no members on their way down (we have to check every level)
			if (!$row['module_basename'])
			{
				$empty_category = true;

				// We go through the branch and look for an activated module
				foreach (array_slice($this->module_cache['modules'], $key + 1) as $temp_row)
				{
					if ($temp_row['left_id'] > $row['left_id'] && $temp_row['left_id'] < $row['right_id'])
					{
						// Module there
						if ($temp_row['module_basename'] && $temp_row['module_enabled'])
						{
							$empty_category = false;
							break;
						}
						continue;
					}
					break;
				}

				// Skip the branch
				if ($empty_category)
				{
					$right_id = $row['right_id'];
					continue;
				}
			}

			$depth = sizeof($this->module_cache['parents'][$row['module_id']]);

			// We need to prefix the functions to not create a naming conflict
			
			// Function for building 'url_extra'
			$url_func = '_module_' . $row['module_basename'] . '_url';

			// Function for building the language name
			$lang_func = '_module_' . $row['module_basename'] . '_lang';

			// Custom function for calling parameters on module init (for example assigning template variables)
			$custom_func = '_module_' . $row['module_basename'];

			$names[$row['module_basename'] . '_' . $row['module_mode']][] = true;
			
			$module_row = array(
				'depth'		=> $depth,

				'id'		=> (int) $row['module_id'],
				'parent'	=> (int) $row['parent_id'],
				'cat'		=> ($row['right_id'] > $row['left_id'] + 1) ? true : false,

				'is_duplicate'	=> ($row['module_basename'] && sizeof($names[$row['module_basename'] . '_' . $row['module_mode']]) > 1) ? true : false,

				'name'		=> (string) $row['module_basename'],
				'mode'		=> (string) $row['module_mode'],
				'display'	=> (int) $row['module_display'],

				'url_extra'	=> (function_exists($url_func)) ? $url_func($row['module_mode']) : '',
				
				'lang'		=> ($row['module_basename'] && function_exists($lang_func)) ? $lang_func($row['module_mode'], $row['module_langname']) : ((!empty($user->lang[$row['module_langname']])) ? $user->lang[$row['module_langname']] : $row['module_langname']),
				'langname'	=> $row['module_langname'],

				'left'		=> $row['left_id'],
				'right'		=> $row['right_id'],
			);

			if (function_exists($custom_func))
			{
				$custom_func($row['module_mode'], $module_row);
			}

			$this->module_ary[] = $module_row;
		}

		unset($this->module_cache['modules'], $names);
	}

	/**
	* Check module authorisation
	* @todo Have a look at the eval statement and replace with other code...
	*/
	function module_auth($module_auth)
	{
		global $auth, $config;
		
		$module_auth = trim($module_auth);

		// Generally allowed to access module if module_auth is empty
		if (!$module_auth)
		{
			return true;
		}

		$is_auth = false;
		eval('$is_auth = (int) (' . preg_replace(array('#acl_([a-z_]+)(,\$id)?#', '#\$id#', '#aclf_([a-z_]+)#', '#cfg_([a-z_]+)#'), array('(int) $auth->acl_get("\\1"\\2)', '(int) $this->acl_forum_id', '(int) $auth->acl_getf_global("\\1")', '(int) $config["\\1"]'), $module_auth) . ');');

		return $is_auth;
	}

	/**
	* Set active module
	*/
	function set_active($id = false, $mode = false)
	{
		$icat = false;
		$this->active_module = false;

		if (request_var('icat', ''))
		{
			$icat = $id;
			$id = request_var('icat', '');
		}

		$category = false;
		foreach ($this->module_ary as $row_id => $item_ary)
		{
			// If this is a module and it's selected, active
			// If this is a category and the module is the first within it, active
			// If this is a module and no mode selected, select first mode
			// If no category or module selected, go active for first module in first category
			if (
				(($item_ary['name'] === $id || $item_ary['id'] === (int) $id) && (($item_ary['mode'] == $mode && !$item_ary['cat']) || ($icat && $item_ary['cat']))) ||
				($item_ary['parent'] === $category && !$item_ary['cat'] && !$icat) ||
				(($item_ary['name'] === $id || $item_ary['id'] === (int) $id) && !$mode && !$item_ary['cat']) ||
				(!$id && !$mode && !$item_ary['cat'])
				)
			{
				if ($item_ary['cat'])
				{
					$id = $icat;
					$icat = false;

					continue;
				}

				$this->p_id		= $item_ary['id'];
				$this->p_parent	= $item_ary['parent'];
				$this->p_name	= $item_ary['name'];
				$this->p_mode 	= $item_ary['mode'];
				$this->p_left	= $item_ary['left'];
				$this->p_right	= $item_ary['right'];

				$this->module_cache['parents'] = $this->module_cache['parents'][$this->p_id];
				$this->active_module = $item_ary['id'];

				break;
			}
			else if (($item_ary['cat'] && $item_ary['id'] === (int) $id) || ($item_ary['parent'] === $category && $item_ary['cat']))
			{
				$category = $item_ary['id'];
			}
		}
	}

	/**
	* Loads currently active module
	*
	* This method loads a given module, passing it the relevant id and mode.
	*/
	function load_active($mode = false, $module_url = false, $execute_module = true)
	{
		global $phpbb_root_path, $phpbb_admin_path, $phpEx, $user;

		$module_path = $phpbb_root_path . 'includes/' . $this->p_class;
		$icat = request_var('icat', '');

		if ($this->active_module === false)
		{
			trigger_error('Module not accessible', E_USER_ERROR);
		}

		if (!class_exists("{$this->p_class}_$this->p_name"))
		{
			if (!file_exists("$module_path/{$this->p_class}_$this->p_name.$phpEx"))
			{
				trigger_error('Cannot find module', E_USER_ERROR);
			}

			include("$module_path/{$this->p_class}_$this->p_name.$phpEx");

			if (!class_exists("{$this->p_class}_$this->p_name"))
			{
				trigger_error('Module does not contain correct class', E_USER_ERROR);
			}

			if (!empty($mode))
			{
				$this->p_mode = $mode;
			}

			// Create a new instance of the desired module ... if it has a
			// constructor it will of course be executed
			$instance = "{$this->p_class}_$this->p_name";

			$this->module = new $instance($this);

			// We pre-define the action parameter we are using all over the place
			if (defined('IN_ADMIN'))
			{
				// Not being able to overwrite ;)
				$this->module->u_action = append_sid("{$phpbb_admin_path}index.$phpEx", "i={$this->p_id}") . (($icat) ? '&amp;icat=' . $icat : '') . "&amp;mode={$this->p_mode}";
			}
			else
			{
				// If user specified the module url we will use it...
				if ($module_url !== false)
				{
					$this->module->u_action = $module_url;
				}
				else
				{
					$this->module->u_action = $phpbb_root_path . (($user->page['page_dir']) ? $user->page['page_dir'] . '/' : '') . $user->page['page_name'];
				}

				$this->module->u_action = append_sid($this->module->u_action, "i={$this->p_id}") . (($icat) ? '&amp;icat=' . $icat : '') . "&amp;mode={$this->p_mode}";
			}

			// Assign the module path for re-usage
			$this->module->module_path = $module_path . '/';

			// Execute the main method for the new instance, we send the module id and mode as parameters
			// Users are able to call the main method after this function to be able to assign additional parameters manually
			if ($execute_module)
			{
				$this->module->main(($this->p_name) ? $this->p_name : $this->p_id, $this->p_mode);
			}

			return;
		}
	}

	/**
	* Get parents
	*/
	function get_parents($parent_id, $left_id, $right_id, &$all_parents)
	{
		global $db;

		$parents = array();

		if ($parent_id > 0)
		{
			foreach ($all_parents as $module_id => $row)
			{
				if ($row['left_id'] < $left_id && $row['right_id'] > $right_id)
				{
					$parents[$module_id] = $row['parent_id'];
				}

				if ($row['left_id'] > $left_id)
				{
					break;
				}
			}
		}

		return $parents;
	}

	/**
	* Get tree branch
	*/
	function get_branch($left_id, $right_id, $remaining)
	{
		$branch = array();

		foreach ($remaining as $key => $row)
		{
			if ($row['left_id'] > $left_id && $row['left_id'] < $right_id)
			{
				$branch[] = $row;
				continue;
			}
			break;
		}

		return $branch;
	}

	/**
	* Build true binary tree from given array
	* Not in use
	*/
	function build_tree(&$modules, &$parents)
	{
		$tree = array();

		foreach ($modules as $row)
		{
			$branch = &$tree;

			if ($row['parent_id'])
			{
				// Go through the tree to find our branch
				$parent_tree = $parents[$row['module_id']];

				foreach ($parent_tree as $id => $value)
				{
					if (!isset($branch[$id]) && isset($branch['child']))
					{
						$branch = &$branch['child'];
					}
					$branch = &$branch[$id];
				}
				$branch = &$branch['child'];
			}

			$branch[$row['module_id']] = $row;
			if (!isset($branch[$row['module_id']]['child']))
			{
				$branch[$row['module_id']]['child'] = array();
			}
		}

		return $tree;
	}

	/**
	* Build navigation structure
	*/
	function assign_tpl_vars($module_url)
	{
		global $template;

		$current_id = $right_id = false;

		// Make sure the module_url has a question mark set, effectively determining the delimiter to use
		$delim = (strpos($module_url, '?') === false) ? '?' : '&amp;';

		$current_padding = $current_depth = 0;
		$linear_offset 	= 'l_block1';
		$tabular_offset = 't_block2';

		// Generate the list of modules, we'll do this in two ways ...
		// 1) In a linear fashion
		// 2) In a combined tabbed + linear fashion ... tabs for the categories
		//    and a linear list for subcategories/items
		foreach ($this->module_ary as $row_id => $item_ary)
		{
			// Skip hidden modules
			if (!$item_ary['display'])
			{
				continue;
			}

			// Skip branch
			if ($right_id !== false)
			{
				if ($item_ary['left'] < $right_id)
				{
					continue;
				}

				$right_id = false;
			}

			// Category with no members on their way down (we have to check every level)
			if (!$item_ary['name'])
			{
				$empty_category = true;

				// We go through the branch and look for an activated module
				foreach (array_slice($this->module_ary, $row_id + 1) as $temp_row)
				{
					if ($temp_row['left'] > $item_ary['left'] && $temp_row['left'] < $item_ary['right'])
					{
						// Module there and displayed?
						if ($temp_row['name'] && $temp_row['display'])
						{
							$empty_category = false;
							break;
						}
						continue;
					}
					break;
				}

				// Skip the branch
				if ($empty_category)
				{
					$right_id = $item_ary['right'];
					continue;
				}
			}

			// Select first id we can get
			if (!$current_id && (in_array($item_ary['id'], array_keys($this->module_cache['parents'])) || $item_ary['id'] == $this->p_id))
			{
				$current_id = $item_ary['id'];
			}

			$depth = $item_ary['depth'];

			if ($depth > $current_depth)
			{
				$linear_offset = $linear_offset . '.l_block' . ($depth + 1);
				$tabular_offset = ($depth + 1 > 2) ? $tabular_offset . '.t_block' . ($depth + 1) : $tabular_offset;
			}
			else if ($depth < $current_depth)
			{
				for ($i = $current_depth - $depth; $i > 0; $i--)
				{
					$linear_offset = substr($linear_offset, 0, strrpos($linear_offset, '.'));
					$tabular_offset = ($i + $depth > 1) ? substr($tabular_offset, 0, strrpos($tabular_offset, '.')) : $tabular_offset;
				}
			}

			$u_title = $module_url . $delim . 'i=' . (($item_ary['cat']) ? $item_ary['id'] : $item_ary['name'] . (($item_ary['is_duplicate']) ? '&amp;icat=' . $current_id : '') . '&amp;mode=' . $item_ary['mode']);
			$u_title .= (!$item_ary['cat'] && isset($item_ary['url_extra'])) ? $item_ary['url_extra'] : '';

			// Only output a categories items if it's currently selected
			if (!$depth || ($depth && (in_array($item_ary['parent'], array_values($this->module_cache['parents'])) || $item_ary['parent'] == $this->p_parent)))
			{
				$use_tabular_offset = (!$depth) ? 't_block1' : $tabular_offset;

				$tpl_ary = array(
					'L_TITLE'		=> $item_ary['lang'],
					'S_SELECTED'	=> (in_array($item_ary['id'], array_keys($this->module_cache['parents'])) || $item_ary['id'] == $this->p_id) ? true : false,
					'U_TITLE'		=> $u_title
				);

				$template->assign_block_vars($use_tabular_offset, array_merge($tpl_ary, array_change_key_case($item_ary, CASE_UPPER)));
			}

			$tpl_ary = array(
				'L_TITLE'		=> $item_ary['lang'],
				'S_SELECTED'	=> (in_array($item_ary['id'], array_keys($this->module_cache['parents'])) || $item_ary['id'] == $this->p_id) ? true : false,
				'U_TITLE'		=> $u_title
			);

			$template->assign_block_vars($linear_offset, array_merge($tpl_ary, array_change_key_case($item_ary, CASE_UPPER)));

			$current_depth = $depth;
		}
	}

	/**
	* Returns desired template name
	*/
	function get_tpl_name()
	{
		return $this->module->tpl_name . '.html';
	}

	/**
	* Returns the desired page title
	*/
	function get_page_title()
	{
		global $user;

		if (!isset($this->module->page_title))
		{
			return '';
		}

		return (isset($user->lang[$this->module->page_title])) ? $user->lang[$this->module->page_title] : $this->module->page_title;
	}

	/**
	* Load module as the current active one without the need for registering it
	*/
	function load($class, $name, $mode = false)
	{
		$this->p_class = $class;
		$this->p_name = $name;

		// Set active module to true instead of using the id
		$this->active_module = true;

		$this->load_active($mode);
	}

	/**
	* Display module
	*/
	function display($page_title, $display_online_list = true)
	{
		global $template, $user;

		// Generate the page
		if (defined('IN_ADMIN') && isset($user->data['session_admin']) && $user->data['session_admin'])
		{
			adm_page_header($page_title);
		}
		else
		{
			page_header($page_title, $display_online_list);
		}

		$template->set_filenames(array(
			'body' => $this->get_tpl_name())
		);

		if (defined('IN_ADMIN') && isset($user->data['session_admin']) && $user->data['session_admin'])
		{
			adm_page_footer();
		}
		else
		{
			page_footer();
		}
	}

	/**
	* Toggle whether this module will be displayed or not
	*/
	function set_display($id, $mode = false, $display = true)
	{
		foreach ($this->module_ary as $row_id => $item_ary)
		{
			if (($item_ary['name'] === $id || $item_ary['id'] === (int) $id) && (!$mode || $item_ary['mode'] === $mode))
			{
				$this->module_ary[$row_id]['display'] = (int) $display;
			}
		}
	}
}

?>
id='n2928' href='#n2928'>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 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128
# translation of DrakX-cy.po to Cymraeg
# Copyright (C) 2003 Free Software Foundation, Inc.
# Rhoslyn Prys <post@meddal.com>, 2003,2004,2005.
#
msgid ""
msgstr ""
"Project-Id-Version: Mandriva DrakX.cy\n"
"POT-Creation-Date: 2008-09-10 18:04+0200\n"
"PO-Revision-Date: 2008-08-20 08:35-0000\n"
"Last-Translator: Rhoslyn Prys <post@meddal.com>\n"
"Language-Team: Cymraeg <post@meddal.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Language: Welsh\n"
"X-Poedit-Country: UNITED KINGDOM\n"
"X-Poedit-SourceCharset: utf-8\n"

#: any.pm:252 any.pm:853 diskdrake/interactive.pm:554
#: diskdrake/interactive.pm:741 diskdrake/interactive.pm:785
#: diskdrake/interactive.pm:843 diskdrake/interactive.pm:1133 do_pkgs.pm:221
#: do_pkgs.pm:267 harddrake/sound.pm:285 interactive.pm:584 pkgs.pm:257
#, c-format
msgid "Please wait"
msgstr "Arhoswch..."

#: any.pm:252
#, c-format
msgid "Bootloader installation in progress"
msgstr "Wrthi'n gosod cychwynnwr"

#: any.pm:263
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s.  However, changing\n"
"the Volume ID of a Windows NT, 2000, or XP boot disk is a fatal Windows "
"error.\n"
"This caution does not apply to Windows 95 or 98, or to NT data disks.\n"
"\n"
"Assign a new Volume ID?"
msgstr ""
"Mae LILO eisiau neilltuo enw Cyfrol newydd i yrrwr %s.  Er hynny, mae newid\n"
"enw Cyfrol disg cychwyn Windows NT, 2000, neu XP yn wall angheuol.\n"
"Nid yw'r rhybudd hwn yn cynnwys 95, 98, neu i ddisgiau data NT.\n"
"\n"
"Neilltuo enw Cyfrol newydd?"

#: any.pm:274
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Methodd gosod cychwynnwr. Digwyddodd y gwall canlynol:"

#: any.pm:280
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
" enable the bootloader.  If you do not see the bootloader prompt at\n"
" reboot, hold down Command-Option-O-F at reboot and enter:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
msgstr ""
"Efallai bydd angen i chi newid eich dyfais cychwyn Open Firmware\n"
" i alluogi'r cychwynnwr. Os nad ydych yn gweld anogwr y\n"
" cychwynnwr wrth ail gychwyn, gwasgwch Command-Option-O-F wrth ail\n"
" gychwyn a theipiwch: setenv boot-device %s,\\\\:tbxi\n"
" Yna teipiwch: shut-down\n"
"Wrth gychwyn eto dylech weld anogwr y cychwynnwr."

#: any.pm:320
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
"System Commander).\n"
"\n"
"On which drive are you booting?"
msgstr ""
"Rydych wedi penderfynu gosod y cychwynnwr ar raniad.\n"
"Mae hyn yn awgrymu bod gennych gychwynnwr ar ddisg caled eisoes: (ee System "
"Commander).\n"
"\n"
"Gyda pha ddisg ydych chi'n cychwyn?"

#: any.pm:346
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Adran gyntaf (MBR) o ddisg %s"

#: any.pm:348
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Adran gyntaf o'r disg (MBR)"

#: any.pm:350
#, c-format
msgid "First sector of the root partition"
msgstr "Adran gyntaf o'r rhaniad gwraidd"

#: any.pm:352
#, c-format
msgid "On Floppy"
msgstr "Ar Ddisg Meddal"

#: any.pm:354
#, c-format
msgid "Skip"
msgstr "Hepgor"

#: any.pm:358
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Wrthi'n gosod cychwynnwr"

#: any.pm:362
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Lle rydych chi eisiau gosod y cychwynnwr?"

#: any.pm:386
#, c-format
msgid "Boot Style Configuration"
msgstr "Ffurfweddu'r Math o Gychwyn"

#: any.pm:396 any.pm:427 any.pm:428
#, c-format
msgid "Bootloader main options"
msgstr "Prif ddewisiadau'r cychwynnwr"

#: any.pm:400
#, c-format
msgid "Bootloader"
msgstr "Cychwynnwr"

#: any.pm:401 any.pm:431
#, c-format
msgid "Bootloader to use"
msgstr "Dewis cychwynnwr"

#: any.pm:403 any.pm:433
#, c-format
msgid "Boot device"
msgstr "Dyfais cychwyn"

#: any.pm:405
#, c-format
msgid "Main options"
msgstr "Prif ddewisiadau"

#: any.pm:406
#, c-format
msgid "Delay before booting default image"
msgstr "Oedi cyn cychwyn y ddelwedd rhagosodedig"

#: any.pm:407
#, c-format
msgid "Enable ACPI"
msgstr "Galluogi ACPI"

#: any.pm:408
#, c-format
msgid "Enable APIC"
msgstr "Galluogi APIC"

#: any.pm:409
#, c-format
msgid "Enable Local APIC"
msgstr "Galluogi APIC Lleol"

#: any.pm:411 any.pm:797 any.pm:812 authentication.pm:239
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Cyfrinair"

#: any.pm:413 authentication.pm:250
#, c-format
msgid "The passwords do not match"
msgstr "Nid yw'r cyfrineiriau'n cyd-fynd"

#: any.pm:413 authentication.pm:250 diskdrake/interactive.pm:1300
#, c-format
msgid "Please try again"
msgstr "Ceisiwch eto"

#: any.pm:414
#, c-format
msgid "You can not use a password with %s"
msgstr "Nid oes modd defnyddio cyfrinair gyda %s"

#: any.pm:417 any.pm:799 any.pm:814 authentication.pm:240
#, c-format
msgid "Password (again)"
msgstr "Cyfrinair (eto)"

#: any.pm:418
#, c-format
msgid "Restrict command line options"
msgstr "Cyfyngu dewisiadau llinell orchymyn"

#: any.pm:418
#, c-format
msgid "restrict"
msgstr "cyfyngu"

#: any.pm:421
#, c-format
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Dewis ``Nid yw 'cyfyngu dewisiadau llinell orchymyn'' o werth heb gyfrinair"

#: any.pm:423
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Glanhau /tmp bob tro fyddwch yn cychwyn"

#: any.pm:432
#, c-format
msgid "Init Message"
msgstr "Neges Init"

#: any.pm:434
#, c-format
msgid "Open Firmware Delay"
msgstr "Agor Oedi Cadarnwedd"

#: any.pm:435
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Goramser Cychwyn y Cnewyllyn"

#: any.pm:436
#, c-format
msgid "Enable CD Boot?"
msgstr "Galluogi Cychwyn o CD?"

#: any.pm:437
#, c-format
msgid "Enable OF Boot?"
msgstr "Galluogi Cychwyn OF?"

#: any.pm:438
#, c-format
msgid "Default OS?"
msgstr "System Weithredu Rhagosodedig?"

#: any.pm:505
#, c-format
msgid "Image"
msgstr "Delwedd"

#: any.pm:506 any.pm:519
#, c-format
msgid "Root"
msgstr "Gwraidd"

#: any.pm:507 any.pm:532
#, c-format
msgid "Append"
msgstr "Atodi"

#: any.pm:509
#, c-format
msgid "Xen append"
msgstr "Atodiad Xen"

#: any.pm:512
#, c-format
msgid "Video mode"
msgstr "Modd fideo"

#: any.pm:514
#, c-format
msgid "Initrd"
msgstr "Initrd"

#: any.pm:515
#, c-format
msgid "Network profile"
msgstr "Proffil rhwydwaith"

#: any.pm:524 any.pm:529 any.pm:531 diskdrake/interactive.pm:376
#, c-format
msgid "Label"
msgstr "Label"

#: any.pm:526 any.pm:534 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Rhagosodedig"

#: any.pm:533
#, c-format
msgid "NoVideo"
msgstr "NoVideo"

#: any.pm:544
#, c-format
msgid "Empty label not allowed"
msgstr "Nid yw label wag yn cael ei chaniatáu"

#: any.pm:545
#, c-format
msgid "You must specify a kernel image"
msgstr "Rhaid enwi delwedd cnewyllyn"

#: any.pm:545
#, c-format
msgid "You must specify a root partition"
msgstr "Rhaid pennu rhaniad gwraidd"

#: any.pm:546
#, c-format
msgid "This label is already used"
msgstr "Mae'r label hwn yn cael ei ddefnyddio eisoes"

#: any.pm:564
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Pa fath o gofnod ydych chi eisiau ei ychwanegu?"

#: any.pm:565
#, c-format
msgid "Linux"
msgstr "Linux"

#: any.pm:565
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Systemau Gweithredu eraill (SunOS..)"

#: any.pm:566
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Systemau Gweithredu Eraill (MacOS...)"

#: any.pm:566
#, c-format
msgid "Other OS (Windows...)"
msgstr "Systemau Gweithredu Eraill (Windows...)"

#: any.pm:594
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Ffurfweddu'r Math o Gychwyn"

#: any.pm:595
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
"Dyma'r cofnodion gwahanol ar eich dewislen cychwyn hyd yma.\n"
"Mae modd i chi ychwanegu rhagor neu newid y rhai presennol."

#: any.pm:758
#, c-format
msgid "access to X programs"
msgstr "mynediad i raglenni  X"

#: any.pm:759
#, c-format
msgid "access to rpm tools"
msgstr "mynediad i offer rpm"

#: any.pm:760
#, c-format
msgid "allow \"su\""
msgstr "caniatáu \"su\""

#: any.pm:761
#, c-format
msgid "access to administrative files"
msgstr "mynediad i ffeiliau gweinyddol"

#: any.pm:762
#, c-format
msgid "access to network tools"
msgstr "mynediad i offer rhwydwaith"

#: any.pm:763
#, c-format
msgid "access to compilation tools"
msgstr "mynediad i offer crynhoad"

#: any.pm:769
#, c-format
msgid "(already added %s)"
msgstr "(wedi ychwanegu %s yn barod)"

#: any.pm:775
#, c-format
msgid "Please give a user name"
msgstr "Rhowch enw defnyddiwr"

#: any.pm:776
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Rhaid i'r enw defnyddiwr gynnwys dim ond llythrennau bach, rhifau, '-' a '_'"

#: any.pm:777
#, c-format
msgid "The user name is too long"
msgstr "Mae'r enw defnyddiwr yn rhy hir"

#: any.pm:778
#, c-format
msgid "This user name has already been added"
msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"

#: any.pm:784 any.pm:816
#, c-format
msgid "User ID"
msgstr "Enw Defnyddiwr"

#: any.pm:784 any.pm:817
#, c-format
msgid "Group ID"
msgstr "Enw Grŵp"

#: any.pm:785
#, c-format
msgid "%s must be a number"
msgstr "Rhaid i %s fod yn rhif!"

#: any.pm:786
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "Dylai %s fod dros 500. Parhau beth bynnag?"

#: any.pm:790
#, c-format
msgid "User management"
msgstr "Rheoli defnyddiwr"

#: any.pm:796 authentication.pm:226
#, c-format
msgid "Set administrator (root) password"
msgstr "Gosod cyfrinair gweinyddwr (root)"

#: any.pm:801
#, c-format
msgid "Enter a user"
msgstr "Rhowch enw defnyddiwr"

#: any.pm:803
#, c-format
msgid "Icon"
msgstr "Eicon"

#: any.pm:806
#, c-format
msgid "Real name"
msgstr "Enw cywir"

#: any.pm:810
#, c-format
msgid "Login name"
msgstr "Enw mewngofnodi"

#: any.pm:815
#, c-format
msgid "Shell"
msgstr "Cragen"

#: any.pm:848
#, c-format
msgid "Please wait, adding media..."
msgstr "Arhoswch, ychwanegu cyfrwng..."

#: any.pm:866 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Awto mewngofnodi"

#: any.pm:867
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Mewngofnodi'n awtomatig ar gyfer un defnyddiwr."

#: any.pm:868
#, c-format
msgid "Use this feature"
msgstr "Defnyddiwch y nodwedd"

#: any.pm:869
#, c-format
msgid "Choose the default user:"
msgstr "Dewis y defnyddiwr rhagosodedig:"

#: any.pm:870
#, c-format
msgid "Choose the window manager to run:"
msgstr "Dewiswch y rheolwr ffenestr i redeg:"

#: any.pm:881 any.pm:899 any.pm:957
#, c-format
msgid "Release Notes"
msgstr "Nodiadau Ryddhau"

#: any.pm:906 any.pm:1250 interactive/gtk.pm:804
#, c-format
msgid "Close"
msgstr "Cau"

#: any.pm:943
#, c-format
msgid "License agreement"
msgstr "Cytundeb trwyddedu"

#: any.pm:945 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Gadael"

#: any.pm:952
#, c-format
msgid "Do you accept this license ?"
msgstr "A ydych chi'n derbyn y drwydded hon?"

#: any.pm:953
#, c-format
msgid "Accept"
msgstr "Derbyn"

#: any.pm:953
#, c-format
msgid "Refuse"
msgstr "Gwrthod"

#: any.pm:980 any.pm:1045
#, c-format
msgid "Please choose a language to use"
msgstr "Dewiswch iaith i'w defnyddio"

#: any.pm:1009
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr ""
"Mae Mandriva Linux yn cynnal nifer o ieithoedd. Dewiswch\n"
"pa iaith yr hoffech ei osod. Byddant ar gael pan fydd eich gosodiad\n"
"wedi ei gwblhau a phan fyddwch yn ail gychwyn eich system."

#: any.pm:1012
#, c-format
msgid "Multi languages"
msgstr "Amlieithog"

#: any.pm:1023 any.pm:1054
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Hen Amgodiad (nid utf-8)"

#: any.pm:1025
#, c-format
msgid "All languages"
msgstr "Pob iaith"

#: any.pm:1046
#, c-format
msgid "Language choice"
msgstr "Dewis iaith"

#: any.pm:1101
#, c-format
msgid "Country / Region"
msgstr "Gwlad / Ardal"

#: any.pm:1102
#, c-format
msgid "Please choose your country."
msgstr "Dewiswch eich gwlad."

#: any.pm:1104
#, c-format
msgid "Here is the full list of available countries"
msgstr "Dyma restr lawn o'r gwledydd sydd ar gael"

#: any.pm:1105
#, c-format
msgid "Other Countries"
msgstr "Gwledydd eraill"

#: any.pm:1105 interactive.pm:484 interactive/gtk.pm:426
#, c-format
msgid "Advanced"
msgstr "Uwch"

#: any.pm:1111
#, c-format
msgid "Input method:"
msgstr "Dull mewnbwn:"

#: any.pm:1114
#, c-format
msgid "None"
msgstr "Dim"

#: any.pm:1195
#, c-format
msgid "No sharing"
msgstr "Peidio rhannu"

#: any.pm:1195
#, c-format
msgid "Allow all users"
msgstr "Caniatáu pob defnyddiwr"

#: any.pm:1195
#, c-format
msgid "Custom"
msgstr "Arddull"

#: any.pm:1199
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
"Hoffech chi ganiatáu i rai defnyddwyr rannu eu cyfeiriaduron?\n"
"Bydd caniatáu hyn yn gadael i ddefnyddwyr glicio ar \"Rhannu\" yn konqueror "
"a nautilus.\n"
"\n"
"\"Addasu\" caniatáu cyfran i'r defnyddwyr.\n"

#: any.pm:1211
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
"NFS: system rhannu ffeiliau traddodiadol Unix, sydd â llai o gefnogaeth ar "
"Mac a Windows."

#: any.pm:1214
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
"SMB: system rhannu ffeiliau sy'n cael ei ddefnyddio yn Windows, Mac OSX a "
"nifer o systemau Linux diweddar."

#: any.pm:1222
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"Gallwch allforio gan ddefnyddio NFS neu SMB. Pa un hoffech chi ei ddefnyddio?"

#: any.pm:1250
#, c-format
msgid "Launch userdrake"
msgstr "Cychwyn userdrake"

#: any.pm:1252
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
"Mae'r rhannu yn ôl defnyddiwr yn defnyddio grŵp \"rhannu ffeiliau\" .\n"
"Mae modd defnyddio userdrake i ychwanegu defnyddiwr i'r grŵp. "

#: any.pm:1344
#, c-format
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Allgofnodwch ac yna defnyddiwch Ctrl Alt-BackSpace"

#: any.pm:1348
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Rhaid allgofnodi ac i mewn eto i newidiadau ddigwydd."

#: any.pm:1383
#, c-format
msgid "Timezone"
msgstr "Cylchfa amser"

#: any.pm:1383
#, c-format
msgid "Which is your timezone?"
msgstr "Pa un yw eich parth amser?"

#: any.pm:1406 any.pm:1408
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Gosodiadau Dyddiad Cloc a Chylchedd Amser"

#: any.pm:1409
#, c-format
msgid "What is the best time?"
msgstr "Beth yw'r amser gorau?"

#: any.pm:1413
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (cloc caledwedd wedi ei osod i UTC)"

#: any.pm:1414
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (cloc caledwedd wedi ei osod i'r amser lleol)"

#: any.pm:1416
#, c-format
msgid "NTP Server"
msgstr "Gweinydd NTP"

#: any.pm:1417
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Cydweddi amser awtomatig (defnyddio NTP)"

#: authentication.pm:25
#, c-format
msgid "Local file"
msgstr "Ffeil leol"

#: authentication.pm:26
#, c-format
msgid "LDAP"
msgstr "LDAP"

#: authentication.pm:27
#, c-format
msgid "NIS"
msgstr "NIS"

#: authentication.pm:28
#, c-format
msgid "Smart Card"
msgstr "Cerdyn Clyfar"

#: authentication.pm:29 authentication.pm:205
#, c-format
msgid "Windows Domain"
msgstr "Parth Windows"

#: authentication.pm:30
#, c-format
msgid "Kerberos 5"
msgstr "Kerberos 5"

#: authentication.pm:64
#, c-format
msgid "Local file:"
msgstr "Ffeil leol:"

#: authentication.pm:64
#, c-format
msgid ""
"Use local for all authentication and information user tell in local file"
msgstr "Defnyddio lleol ar gyfer pob dilysiad a gwybodaeth mewn ffeil leol"

#: authentication.pm:65
#, c-format
msgid "LDAP:"
msgstr "LDAP:"

#: authentication.pm:65
#, c-format
msgid ""
"Tells your computer to use LDAP for some or all authentication. LDAP "
"consolidates certain types of information within your organization."
msgstr ""
"Dweud wrth eich cyfrifiadur i ddefnyddio LDAP ar gyfer rhai neu'r holl "
"ddilysiad. Mae LDAP yn crynhoi mathau arbennig o wybodaeth o fewn eich corff."

#: authentication.pm:66
#, c-format
msgid "NIS:"
msgstr "NIS:"

#: authentication.pm:66
#, c-format
msgid ""
"Allows you to run a group of computers in the same Network Information "
"Service domain with a common password and group file."
msgstr ""
"Caniatáu i chi redeg grŵp o gyfrifiaduron yn yr un parth Gwasanaeth "
"Gwybodaeth Rhwydwaith gyda chyfrinair cyffredin a ffeil grŵp."

#: authentication.pm:67
#, c-format
msgid "Windows Domain:"
msgstr "Parth Windows:"

#: authentication.pm:67
#, c-format
msgid ""
"Winbind allows the system to retrieve information and authenticate users in "
"a Windows domain."
msgstr ""
"Mae Winbind yn caniatáu i'r system estyn gwybodaeth a dilysu defnyddwyr mewn "
"parth Windows."

#: authentication.pm:68
#, c-format
msgid "Kerberos 5 :"
msgstr "Kerberos 5 :"

#: authentication.pm:68
#, c-format
msgid "With Kerberos and Ldap for authentication in Active Directory Server "
msgstr "Gyda Kerberos a LDAP ar gyfer dilysiad yn y Gweinydd Cyfeiriadur Byw"

#: authentication.pm:96 authentication.pm:130 authentication.pm:149
#: authentication.pm:150 authentication.pm:176 authentication.pm:200
#: authentication.pm:878
#, c-format
msgid " "
msgstr " "

#: authentication.pm:97 authentication.pm:131 authentication.pm:177
#: authentication.pm:201
#, c-format
msgid "Welcome to the Authentication Wizard"
msgstr "Croeso i'r Dewin Dilysu"

#: authentication.pm:99
#, c-format
msgid ""
"You have selected LDAP authentication. Please review the configuration "
"options below "
msgstr ""
"Rydych wedi dewis dilysiad LDAP. Adolygwch y dewisiadau ffurfweddu isod"

#: authentication.pm:101 authentication.pm:156
#, c-format
msgid "LDAP Server"
msgstr "Gweinydd LDAP"

#: authentication.pm:102 authentication.pm:157
#, c-format
msgid "Base dn"
msgstr "Sail dn"

#: authentication.pm:103
#, c-format
msgid "Fetch base Dn "
msgstr "Estyn sail Dn"

#: authentication.pm:105 authentication.pm:160
#, c-format
msgid "Use encrypt connection with TLS "
msgstr "Defnyddio cyswllt amgryptio gyda TLS"

#: authentication.pm:106 authentication.pm:161
#, c-format
msgid "Download CA Certificate "
msgstr "Llwytho Tsystysgrif CA i lawr"

#: authentication.pm:108 authentication.pm:141
#, c-format
msgid "Use Disconnect mode "
msgstr "Defnyddio'r modd Datgysylltu"

#: authentication.pm:109 authentication.pm:162
#, c-format
msgid "Use anonymous BIND "
msgstr "Defnyddio BIND anhysbys"

#: authentication.pm:110 authentication.pm:113 authentication.pm:115
#: authentication.pm:119
#, c-format
msgid "  "
msgstr "  "

#: authentication.pm:111 authentication.pm:163
#, c-format
msgid "Bind DN "
msgstr "Rhwymo DN"

#: authentication.pm:112 authentication.pm:164
#, c-format
msgid "Bind Password "
msgstr "Rhwymo cyfrinair"

#: authentication.pm:114
#, c-format
msgid "Advanced path for group "
msgstr "Llwybr uwch ar gyfer grŵp"

#: authentication.pm:116
#, c-format
msgid "Password base"
msgstr "Sail cyfrinair"

#: authentication.pm:117
#, c-format
msgid "Group base"
msgstr "Sail grŵp"

#: authentication.pm:118
#, c-format
msgid "Shadow base"
msgstr "Sail cysgodol"

#: authentication.pm:133
#, c-format
msgid ""
"You have selected Kerberos 5 authentication. Please review the configuration "
"options below "
msgstr ""
"Rydych wedi dewis dilysiad Kerebos 5. Adolygwch y dewisiadau ffurfweddu isod"

#: authentication.pm:135
#, c-format
msgid "Realm "
msgstr "Cylch"

#: authentication.pm:137
#, c-format
msgid "KDCs Servers"
msgstr "Gweinydd KDCs"

#: authentication.pm:139
#, c-format
msgid "Use DNS to resolve hosts for realms "
msgstr "Defnyddio DNS i ddatrys gwesteion ar gyfer cylchoedd"

#: authentication.pm:140
#, c-format
msgid "Use DNS to resolve KDCs for realms "
msgstr "Defnyddio DNS i ddatrys KDC ar gyfer y cylch"

#: authentication.pm:145
#, c-format
msgid "Use local file for users informations"
msgstr "Defnyddio ffeil lleol am wybodaeth defnyddwyr"

#: authentication.pm:146
#, c-format
msgid "Use Ldap for users informations"
msgstr "Defnyddio LDAP am wybodaeth defnyddwyr"

#: authentication.pm:152
#, c-format
msgid ""
"You have selected Kerberos 5 for authentication, now you must choose the "
"type of users information "
msgstr ""
"Rydych wedi dewis dilysiad Kerebos 5, nawr mae'n rhaid i chi ddewis y math o "
"wybodaeth defnyddiwr."

#: authentication.pm:158
#, c-format
msgid "Fecth base Dn "
msgstr "Fecth base Dn "

#: authentication.pm:179
#, c-format
msgid ""
"You have selected NIS authentication. Please review the configuration "
"options below "
msgstr "Rydych wedi dewis dilysiad NIS. Adolygwch y dewisiadau ffurfweddu isod"

#: authentication.pm:181
#, c-format
msgid "NIS Domain"
msgstr "Parth NIS"

#: authentication.pm:182
#, c-format
msgid "NIS Server"
msgstr "Gweinydd NIS"

#: authentication.pm:203
#, c-format
msgid ""
"You have selected Windows Domain authentication. Please review the "
"configuration options below "
msgstr ""
"Rydych wedi dewis dilysiad Parth Windows. Adolygwch y dewisiadau ffurfweddu "
"isod"

#: authentication.pm:207
#, c-format
msgid "Domain Model "
msgstr "Model Parth"

#: authentication.pm:209
#, c-format
msgid "Active Directory Realm "
msgstr "Cylch Cyfeiriadur Byw"

#: authentication.pm:225 authentication.pm:241
#, c-format
msgid "Authentication"
msgstr "Dilysu"

#: authentication.pm:227
#, c-format
msgid "Authentication method"
msgstr "Dull dilysu"

#. -PO: keep this short or else the buttons will not fit in the window
#: authentication.pm:232
#, c-format
msgid "No password"
msgstr "Dim cyfrinair"

#: authentication.pm:253
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Mae'r cyfrinair yn rhy syml ( rhaid iddo fod o leiaf %d nod o hyd)"

#: authentication.pm:358
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "Methu defnyddio darlledu heb barth NIS"

#: authentication.pm:873
#, c-format
msgid "Select file"
msgstr "Dewiswch ffeil"

#: authentication.pm:879
#, c-format
msgid "Domain Windows for authentication : "
msgstr "Dilysu Parth Windows:"

#: authentication.pm:881
#, c-format
msgid "Domain Admin User Name"
msgstr "Enw Defnyddiwr Gweinyddiaeth Parth"

#: authentication.pm:882
#, c-format
msgid "Domain Admin Password"
msgstr "Cyfrinair Gweinyddol y Parth"

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: bootloader.pm:942
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
"\n"
"Choose an operating system from the list above or\n"
"wait for default boot.\n"
"\n"
msgstr ""
"Croeso i'r dewis o systemau gweithredu! \n"
"\n"
"Dewiswch system weithredu o'r rhestr uchod neu\n"
"aros am y cychwyn rhagosodedig\n"
"\n"

#: bootloader.pm:1110
#, c-format
msgid "LILO with text menu"
msgstr "LILO gyda dewislen testun"

#: bootloader.pm:1111
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB gyda dewislen raffigol"

#: bootloader.pm:1112
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB gyda dewislen testun"

#: bootloader.pm:1113
#, c-format
msgid "Yaboot"
msgstr "Yaboot"

#: bootloader.pm:1114
#, c-format
msgid "SILO"
msgstr "SILO"

#: bootloader.pm:1195
#, c-format
msgid "not enough room in /boot"
msgstr "dim digon o le yn /boot"

#: bootloader.pm:1843
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "Nid oes modd gosod y cychwynnwr ar raniad %s\n"

#: bootloader.pm:1964
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
"Rhaid i ffurfweddiad eich cychwynnwr gael ei ddiweddaru am i'r rhaniadau "
"gael eu hail rifo."

#: bootloader.pm:1977
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
"Methu gosod eich cychwynnwr yn iawn, Rhaid defnyddio achub cychwyn a dewis "
"\"%s\""

#: bootloader.pm:1978
#, c-format
msgid "Re-install Boot Loader"
msgstr "Ail osod Cychwynnwr"

#: common.pm:142
#, c-format
msgid "B"
msgstr "B"

#: common.pm:142
#, c-format
msgid "KB"
msgstr "KB"

#: common.pm:142
#, c-format
msgid "MB"
msgstr "MB"

#: common.pm:142
#, c-format
msgid "GB"
msgstr "GB"

#: common.pm:142 common.pm:151
#, c-format
msgid "TB"
msgstr "TB"

#: common.pm:159
#, c-format
msgid "%d minutes"
msgstr "%d munud"

#: common.pm:161
#, c-format
msgid "1 minute"
msgstr "1 munud"

#: common.pm:163
#, c-format
msgid "%d seconds"
msgstr "%d eiliad"

#: common.pm:358
#, c-format
msgid "command %s missing"
msgstr "gorchymyn %s ar goll"

#: diskdrake/dav.pm:17
#, c-format
msgid ""
"WebDAV is a protocol that allows you to mount a web server's directory\n"
"locally, and treat it like a local filesystem (provided the web server is\n"
"configured as a WebDAV server). If you would like to add WebDAV mount\n"
"points, select \"New\"."
msgstr ""
"Protocol yw WebDAV sy'n eich caniatáu i chi arosod gweinydd gwe'n lleol\n"
"a'i drin fel system ffeilio leol ( ar yr amod bod y gweinydd lleol wedi ei\n"
"ffurfweddi fel gweinydd WebDAV). Os hoffech ychwanegu pwyntiau\n"
"arosod WebDAV, dewiswch \"Newydd\""

#: diskdrake/dav.pm:25
#, c-format
msgid "New"
msgstr "Newydd"

#: diskdrake/dav.pm:61 diskdrake/interactive.pm:382 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Dadarosod"

#: diskdrake/dav.pm:62 diskdrake/interactive.pm:379 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Arosod"

#: diskdrake/dav.pm:63
#, c-format
msgid "Server"
msgstr "Gweinydd"

#: diskdrake/dav.pm:64 diskdrake/interactive.pm:373
#: diskdrake/interactive.pm:613 diskdrake/interactive.pm:631
#: diskdrake/interactive.pm:635 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Pwynt arosod"

#: diskdrake/dav.pm:65 diskdrake/interactive.pm:375
#: diskdrake/interactive.pm:989 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Dewisiadau"

#: diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:174 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Gorffen"

#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:120 diskdrake/hd_gtk.pm:272
#: diskdrake/interactive.pm:233 diskdrake/interactive.pm:246
#: diskdrake/interactive.pm:480 diskdrake/interactive.pm:485
#: diskdrake/interactive.pm:603 diskdrake/interactive.pm:861
#: diskdrake/interactive.pm:1035 diskdrake/interactive.pm:1048
#: diskdrake/interactive.pm:1051 diskdrake/interactive.pm:1300
#: diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 do_pkgs.pm:28 do_pkgs.pm:44
#: do_pkgs.pm:60 do_pkgs.pm:65 fsedit.pm:222 interactive/http.pm:117
#: interactive/http.pm:118 modules/interactive.pm:19 scanner.pm:94
#: scanner.pm:105 scanner.pm:112 scanner.pm:119 wizards.pm:95 wizards.pm:99
#: wizards.pm:121
#, c-format
msgid "Error"
msgstr "Gwall"

#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Rhowch URL gweinydd WebDAV"

#: diskdrake/dav.pm:87
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "Rhaid i'r URL gychwyn gyda http:// neu https://"

#: diskdrake/dav.pm:109
#, c-format
msgid "Server: "
msgstr "Gweinydd:"

#: diskdrake/dav.pm:110 diskdrake/interactive.pm:453
#: diskdrake/interactive.pm:1180 diskdrake/interactive.pm:1260
#, c-format
msgid "Mount point: "
msgstr "Pwynt arosod:"

#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1267
#, c-format
msgid "Options: %s"
msgstr "Dewisiadau: %s"

#: diskdrake/hd_gtk.pm:54 diskdrake/interactive.pm:284
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
#: fs/partitioning_wizard.pm:51 fs/partitioning_wizard.pm:206
#: fs/partitioning_wizard.pm:211 fs/partitioning_wizard.pm:250
#: fs/partitioning_wizard.pm:269 fs/partitioning_wizard.pm:274
#, c-format
msgid "Partitioning"
msgstr "Creu rhaniadau"

#: diskdrake/hd_gtk.pm:68
#, c-format
msgid "Click on a partition, choose a filesystem type then choose an action"
msgstr ""
"Cliciwch ar raniad, dewiswch math o system ffeil ac yna dewis gweithred"

#: diskdrake/hd_gtk.pm:102 diskdrake/interactive.pm:1010
#: diskdrake/interactive.pm:1020 diskdrake/interactive.pm:1073
#, c-format
msgid "Read carefully!"
msgstr "Darllenwch yn ofalus!"

#: diskdrake/hd_gtk.pm:102
#, c-format
msgid "Please make a backup of your data first"
msgstr "Gwnewch gopi wrth gefn o'ch data yn gyntaf"

#: diskdrake/hd_gtk.pm:103 diskdrake/interactive.pm:226
#, c-format
msgid "Exit"
msgstr "Gadael"

#: diskdrake/hd_gtk.pm:103
#, c-format
msgid "Continue"
msgstr "Parhau"

#: diskdrake/hd_gtk.pm:170 interactive.pm:649 interactive/gtk.pm:781
#: interactive/gtk.pm:797 interactive/gtk.pm:815 ugtk2.pm:933 ugtk2.pm:934
#, c-format
msgid "Help"
msgstr "Cymorth"

#: diskdrake/hd_gtk.pm:208
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""
"Mae gennych un rhaniad Microsoft Windows mawr\n"
"Awgrymir eich bod yn newid maint y rhaniad\n"
"(cliciwch arno, ac yna clicio \"Newid maint\"]"

#: diskdrake/hd_gtk.pm:210
#, c-format
msgid "Please click on a partition"
msgstr "Cliciwch ar raniad"

#: diskdrake/hd_gtk.pm:224 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Manylion"

#: diskdrake/hd_gtk.pm:272
#, c-format
msgid "No hard drives found"
msgstr "Heb ganfod gyrwyr caled"

#: diskdrake/hd_gtk.pm:299
#, c-format
msgid "Unknown"
msgstr "Anhysbys"

#: diskdrake/hd_gtk.pm:361
#, c-format
msgid "Ext3"
msgstr "Ext3"

#: diskdrake/hd_gtk.pm:361
#, c-format
msgid "XFS"
msgstr "XFS"

#: diskdrake/hd_gtk.pm:361
#, c-format
msgid "Swap"
msgstr "Swap"

#: diskdrake/hd_gtk.pm:361
#, c-format
msgid "SunOS"
msgstr "SunOS"

#: diskdrake/hd_gtk.pm:361
#, c-format
msgid "HFS"
msgstr "HFS"

#: diskdrake/hd_gtk.pm:361
#, c-format
msgid "Windows"
msgstr "Windows"

#: diskdrake/hd_gtk.pm:362 services.pm:158
#, c-format
msgid "Other"
msgstr "Arall"

#: diskdrake/hd_gtk.pm:362 diskdrake/interactive.pm:1195
#, c-format
msgid "Empty"
msgstr "Gwag"

#: diskdrake/hd_gtk.pm:369
#, c-format
msgid "Filesystem types:"
msgstr "Mathau o system ffeiliau:"

#: diskdrake/hd_gtk.pm:390 diskdrake/interactive.pm:289
#: diskdrake/interactive.pm:361 diskdrake/interactive.pm:510
#: diskdrake/interactive.pm:694 diskdrake/interactive.pm:752
#: diskdrake/interactive.pm:841 diskdrake/interactive.pm:883
#: diskdrake/interactive.pm:884 diskdrake/interactive.pm:1118
#: diskdrake/interactive.pm:1156 diskdrake/interactive.pm:1299 do_pkgs.pm:19
#: do_pkgs.pm:39 do_pkgs.pm:57 harddrake/sound.pm:422
#, c-format
msgid "Warning"
msgstr "Rhybudd"

#: diskdrake/hd_gtk.pm:390
#, c-format
msgid "This partition is already empty"
msgstr "Mae'r rhaniad eisoes yn wag"

#: diskdrake/hd_gtk.pm:399
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Defnyddiwch \"Dadarosod\" yn gyntaf"

#: diskdrake/hd_gtk.pm:399
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Defnyddiwch \"%s\" yn lle hynny (modd arbenigwr)"

#: diskdrake/hd_gtk.pm:399 diskdrake/interactive.pm:374
#: diskdrake/interactive.pm:548 diskdrake/interactive.pm:1026
#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
#, c-format
msgid "Type"
msgstr "Math"

#: diskdrake/interactive.pm:197
#, c-format
msgid "Choose another partition"
msgstr "Dewiswch raniad arall"

#: diskdrake/interactive.pm:197
#, c-format
msgid "Choose a partition"
msgstr "Dewiswch raniad"

#: diskdrake/interactive.pm:259
#, c-format
msgid "Toggle to normal mode"
msgstr "Arbenigwr > Cyffredinol"

#: diskdrake/interactive.pm:259
#, c-format
msgid "Toggle to expert mode"
msgstr "Cyffredinol > Arbenigwr"

#: diskdrake/interactive.pm:267 diskdrake/interactive.pm:277
#: diskdrake/interactive.pm:1103
#, c-format
msgid "Confirmation"
msgstr "Gwiriad"

#: diskdrake/interactive.pm:267
#, c-format
msgid "Continue anyway?"
msgstr "Parhau beth bynnag?"

#: diskdrake/interactive.pm:272
#, c-format
msgid "Quit without saving"
msgstr "Gorffen heb gadw"

#: diskdrake/interactive.pm:272
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Gorffen heb ysgrifennu'r tabl rhaniadau?"

#: diskdrake/interactive.pm:277
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ydych eisiau cadw newidiadau /etc/fstab"

#: diskdrake/interactive.pm:284 fs/partitioning_wizard.pm:250
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Bydd angen i chi ail gychwyn cyn i'r newidiadau yn eich tabl rhaniad ddigwydd"

#: diskdrake/interactive.pm:289
#, c-format
msgid ""
"You should format partition %s.\n"
"Otherwise no entry for mount point %s will be written in fstab.\n"
"Quit anyway?"
msgstr ""
"Dylech fformatio rhaniad %s.\n"
"Fel arall ni fydd mynediad i bwynt arosod %s yn cael ei ysgrifennu yn "
"fstab.\n"
"Gadael beth bynnag?"

#: diskdrake/interactive.pm:302
#, c-format
msgid "Clear all"
msgstr "Clirio i gyd"

#: diskdrake/interactive.pm:303
#, c-format
msgid "Auto allocate"
msgstr "Awto ddynodi"

#: diskdrake/interactive.pm:304 diskdrake/interactive.pm:352
#: interactive/curses.pm:512
#, c-format
msgid "More"
msgstr "Rhagor"

#: diskdrake/interactive.pm:309
#, c-format
msgid "Hard drive information"
msgstr "Gwybodaeth am y ddisg galed"

#: diskdrake/interactive.pm:341
#, c-format
msgid "All primary partitions are used"
msgstr "Mae pob rhaniad cynradd wedi ei ddefnyddio"

#: diskdrake/interactive.pm:342
#, c-format
msgid "I can not add any more partitions"
msgstr "Does dim modd ychwanegu rhaniadau ychwanegol"

#: diskdrake/interactive.pm:343
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "I gael mwy o raniadau, dilëwch un i greu rhaniad estynedig"

#: diskdrake/interactive.pm:354
#, c-format
msgid "Reload partition table"
msgstr "Ail-lwytho'r tabl rhaniad"

#: diskdrake/interactive.pm:361
#, c-format
msgid "Detailed information"
msgstr "Gwybodaeth fanwl"

#: diskdrake/interactive.pm:377 diskdrake/interactive.pm:707
#, c-format
msgid "Resize"
msgstr "Newid maint"

#: diskdrake/interactive.pm:378
#, c-format
msgid "Format"
msgstr "Fformatio"

#: diskdrake/interactive.pm:380 diskdrake/interactive.pm:793
#, c-format
msgid "Add to RAID"
msgstr "Ychwanegu i RAID"

#: diskdrake/interactive.pm:381 diskdrake/interactive.pm:811
#, c-format
msgid "Add to LVM"
msgstr "Ychwanegu i LVM"

#: diskdrake/interactive.pm:383
#, c-format
msgid "Delete"
msgstr "Dileu"

#: diskdrake/interactive.pm:384
#, c-format
msgid "Remove from RAID"
msgstr "Tynnu o RAID"

#: diskdrake/interactive.pm:385
#, c-format
msgid "Remove from LVM"
msgstr "Tynnu o LVM"

#: diskdrake/interactive.pm:386
#, c-format
msgid "Modify RAID"
msgstr "Newid RAID"

#: diskdrake/interactive.pm:387
#, c-format
msgid "Use for loopback"
msgstr "Defnyddiwch ar gyfer cylchol"

#: diskdrake/interactive.pm:398
#, c-format
msgid "Create"
msgstr "Creu"

#: diskdrake/interactive.pm:442 diskdrake/interactive.pm:444
#, c-format
msgid "Create a new partition"
msgstr "Creu rhaniad newydd"

#: diskdrake/interactive.pm:446
#, c-format
msgid "Start sector: "
msgstr "Sector dechreuol: "

#: diskdrake/interactive.pm:449 diskdrake/interactive.pm:876
#, c-format
msgid "Size in MB: "
msgstr "Maint mewn MB: "

#: diskdrake/interactive.pm:451 diskdrake/interactive.pm:877
#, c-format
msgid "Filesystem type: "
msgstr "Math o system ffeilio"

#: diskdrake/interactive.pm:457
#, c-format
msgid "Preference: "
msgstr "Dewis"

#: diskdrake/interactive.pm:460
#, c-format
msgid "Logical volume name "
msgstr "Enw cyfrol resymegol"

#: diskdrake/interactive.pm:480
#, c-format
msgid ""
"You can not create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
"Nid oes modd i chi greu rhaniad newydd\n"
"(gan eich bod wedi cyrraedd y nifer uchaf o raniadau cynradd).\n"
"Diddymwch raniad cynradd a chreu rhaniad estynedig."

#: diskdrake/interactive.pm:510
#, c-format
msgid "Remove the loopback file?"
msgstr "Tynnu'r ffeil gylchol?"

#: diskdrake/interactive.pm:532
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Wedi newid math raniad %s, bydd yr holl ddata ar y rhaniad yn cael ei golli"

#: diskdrake/interactive.pm:545
#, c-format
msgid "Change partition type"
msgstr "Newid math y rhaniad"

#: diskdrake/interactive.pm:547 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "Pa fath o system ffeil  ydych chi eisiau?"

#: diskdrake/interactive.pm:554
#, c-format
msgid "Switching from %s to %s"
msgstr "Newid o %s i %s"

#: diskdrake/interactive.pm:580 diskdrake/interactive.pm:583
#, c-format
msgid "Which volume label?"
msgstr "Pa label cyfrol?"

#: diskdrake/interactive.pm:584
#, c-format
msgid "Label:"
msgstr "Label:"

#: diskdrake/interactive.pm:598
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Lle'r hoffech chi arosod y ffeil gylchol %s?"

#: diskdrake/interactive.pm:599
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Lle'r ydych am arosod dyfais %s?"

#: diskdrake/interactive.pm:604
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
"Methu dadsetio'r pwynt arosod gan fod y rhaniad yn cael ei ddefnyddio ar "
"gyfer cylch-ôl\n"
"Tynnu'r cylchol yn gyntaf"

#: diskdrake/interactive.pm:634
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Lle'r ydych am arosod %s?"

#: diskdrake/interactive.pm:658 diskdrake/interactive.pm:741
#: fs/partitioning_wizard.pm:146 fs/partitioning_wizard.pm:178
#, c-format
msgid "Resizing"
msgstr "Newid maint"

#: diskdrake/interactive.pm:658
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "Cyfrifo ffiniau system ffeiliau FAT"

#: diskdrake/interactive.pm:694
#, c-format
msgid "This partition is not resizeable"
msgstr "Nid oes modd newid maint y rhaniad"

#: diskdrake/interactive.pm:699
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "Dylai'r holl ddata ar y rhaniad gael ei gadw wrth gefn"

#: diskdrake/interactive.pm:701
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Ar ôl newid maint rhaniad %s, bydd yr holl ddata ar y rhaniad yma yn cael ei "
"golli"

#: diskdrake/interactive.pm:708
#, c-format
msgid "Choose the new size"
msgstr "Dewiswch y maint newydd"

#: diskdrake/interactive.pm:709
#, c-format
msgid "New size in MB: "
msgstr "Maint mewn MB: "

#: diskdrake/interactive.pm:710
#, c-format
msgid "Minimum size: %s MB"
msgstr "Lleiafswm maint: %s MB"

#: diskdrake/interactive.pm:711
#, c-format
msgid "Maximum size: %s MB"
msgstr "Uchawfswm maint : %s MB"

#: diskdrake/interactive.pm:752 fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
"filesystem checks will be run on your next boot into Microsoft Windows®"
msgstr ""
"I sicrhau cywirdeb data'r rhaniad ar ôl ail-feintioli’r rhaniad(au), bydd \n"
"gwiriadau'r system ffeiliau'n cael eu gwneud wrth i chi ail gychwyn Windows "
"(TM)"

#: diskdrake/interactive.pm:793
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Dewis RAID presennol i ychwanegu ato"

#: diskdrake/interactive.pm:795 diskdrake/interactive.pm:813
#, c-format
msgid "new"
msgstr "newydd"

#: diskdrake/interactive.pm:811
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Dewis LVM presennol i ychwanegu ato"

#: diskdrake/interactive.pm:818
#, c-format
msgid "LVM name?"
msgstr "Enw LVM?"

#: diskdrake/interactive.pm:841
#, c-format
msgid ""
"Physical volume %s is still in use.\n"
"Do you want to move used physical extents on this volume to other volumes?"
msgstr ""
"Mae cyfrol %s dan mewn defnydd.\n"
"Ydych chi am symud ystentiau ffisegol a ddefnyddiwyd o'r gyfrol i gyfrol "
"arall?"

#: diskdrake/interactive.pm:843
#, c-format
msgid "Moving physical extents"
msgstr "Symud ystent corfforol"

#: diskdrake/interactive.pm:861
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Nid oes modd defnyddio'r rhaniad ar gyfer cylchol"

#: diskdrake/interactive.pm:874
#, c-format
msgid "Loopback"
msgstr "Cylch-ôl"

#: diskdrake/interactive.pm:875
#, c-format
msgid "Loopback file name: "
msgstr "Enw ffeil gylchol"

#: diskdrake/interactive.pm:880
#, c-format
msgid "Give a file name"
msgstr "Rhowch enw ffeil"

#: diskdrake/interactive.pm:883
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr ""
"Mae'r ffeil yn cael ei ddefnyddio eisoes gam cylchol arall, dewiswch un arall"

#: diskdrake/interactive.pm:884
#, c-format
msgid "File already exists. Use it?"
msgstr "Mae'r ffeil yn bodoli eisoes. Defnyddiwch hwn?"

#: diskdrake/interactive.pm:916 diskdrake/interactive.pm:919
#, c-format
msgid "Mount options"
msgstr "Dewisiadau arosod"

#: diskdrake/interactive.pm:926
#, c-format
msgid "Various"
msgstr "Amrywiol"

#: diskdrake/interactive.pm:991
#, c-format
msgid "device"
msgstr "dyfais"

#: diskdrake/interactive.pm:992
#, c-format
msgid "level"
msgstr "lefel"

#: diskdrake/interactive.pm:993
#, c-format
msgid "chunk size in KiB"
msgstr "Maint darn yn KiB"

#: diskdrake/interactive.pm:1011
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Byddwch ofalus: mae'r weithred hon yn beryglus."

#: diskdrake/interactive.pm:1026
#, fuzzy, c-format
msgid "Partitioning Type"
msgstr "Creu rhaniadau"

#: diskdrake/interactive.pm:1026
#, c-format
msgid "What type of partitioning?"
msgstr "Pa fath o raniad ?"

#: diskdrake/interactive.pm:1064
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Mi fydd angen i chi ailgychwyn cyn i'r newidiadau ddod i rym"

#: diskdrake/interactive.pm:1073
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Mae tabl rhaniad disg %s yn mynd i gael ei ysgrifennu i'r ddisg!"

#: diskdrake/interactive.pm:1098
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Wedi fformatio rhaniad %s, bydd yr holl ddata ar y rhaniad yn cael ei golli"

#: diskdrake/interactive.pm:1103 fs/partitioning.pm:48
#, c-format
msgid "Check bad blocks?"
msgstr "Gwirio blociau gwallus?"

#: diskdrake/interactive.pm:1117
#, c-format
msgid "Move files to the new partition"
msgstr "Symud ffeiliau i'r rhaniad newydd"

#: diskdrake/interactive.pm:1117
#, c-format
msgid "Hide files"
msgstr "Cuddio ffeiliau"

#: diskdrake/interactive.pm:1118
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)\n"
"\n"
"You can either choose to move the files into the partition that will be "
"mounted there or leave them where they are (which results in hiding them by "
"the contents of the mounted partition)"
msgstr ""
"Mae cyfeiriadur %s eisoes yn cynnwys data\n"
"(%s)\n"
"\n"
"Gallwch un ai ddewis i symud y ffeiliau i'r rhaniad fydd wedi ei arosod yno "
"neu eu gadael lle y maent (sy'n golygu eu cuddio gan gynnwys y rhaniad hwnnw)"

#: diskdrake/interactive.pm:1133
#, c-format
msgid "Moving files to the new partition"
msgstr "Symud ffeiliau i'r rhaniad newydd"

#: diskdrake/interactive.pm:1137
#, c-format
msgid "Copying %s"
msgstr "Copïo %s"

#: diskdrake/interactive.pm:1141
#, c-format
msgid "Removing %s"
msgstr "Tynnu %s"

#: diskdrake/interactive.pm:1155
#, c-format
msgid "partition %s is now known as %s"
msgstr "Mae rhaniad %s yn cael ei alw'n %s"

#: diskdrake/interactive.pm:1156
#, c-format
msgid "Partitions have been renumbered: "
msgstr "Mae'r rhaniadau wedi eu hail-rifo"

#: diskdrake/interactive.pm:1181 diskdrake/interactive.pm:1244
#, c-format
msgid "Device: "
msgstr "Dyfais: "

#: diskdrake/interactive.pm:1182
#, c-format
msgid "Volume label: "
msgstr "Label y gyfrol:"

#: diskdrake/interactive.pm:1183
#, c-format
msgid "UUID: "
msgstr "UUID: "

#: diskdrake/interactive.pm:1184
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Llythyren disg DOS: %s (dim ond dyfalu)\n"

#: diskdrake/interactive.pm:1188 diskdrake/interactive.pm:1197
#: diskdrake/interactive.pm:1263
#, c-format
msgid "Type: "
msgstr "Math: "

#: diskdrake/interactive.pm:1192 diskdrake/interactive.pm:1248
#, c-format
msgid "Name: "
msgstr "Enw : "

#: diskdrake/interactive.pm:1199
#, c-format
msgid "Start: sector %s\n"
msgstr "Dechrau: sector %s\n"

#: diskdrake/interactive.pm:1200
#, c-format
msgid "Size: %s"
msgstr "Maint: %s"

#: diskdrake/interactive.pm:1202
#, c-format
msgid ", %s sectors"
msgstr ", %s sector"

#: diskdrake/interactive.pm:1204
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindr %d i silindr %d\n"

#: diskdrake/interactive.pm:1205
#, c-format
msgid "Number of logical extents: %d\n"
msgstr "Nifer clystyrau rhesymegol: %d\n"

#: diskdrake/interactive.pm:1206
#, c-format
msgid "Formatted\n"
msgstr "Wedi ei fformatio\n"

#: diskdrake/interactive.pm:1207
#, c-format
msgid "Not formatted\n"
msgstr "Heb ei fformatio\n"

#: diskdrake/interactive.pm:1208
#, c-format
msgid "Mounted\n"
msgstr "Arosodwyd\n"

#: diskdrake/interactive.pm:1209
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"

#: diskdrake/interactive.pm:1214
#, c-format
msgid ""
"Loopback file(s):\n"
"   %s\n"
msgstr ""
"Ffeil(iau) Cylch-ôl:\n"
"   %s\n"

#: diskdrake/interactive.pm:1215
#, c-format
msgid ""
"Partition booted by default\n"
"    (for MS-DOS boot, not for lilo)\n"
msgstr ""
"Cychwyn y rhaniad fel rhagosodwyd\n"
"    (ar gyfer cychwyn MS-DOS, nid ar gyfer lilo)\n"

#: diskdrake/interactive.pm:1217
#, c-format
msgid "Level %s\n"
msgstr "Lefel %s\n"

#: diskdrake/interactive.pm:1218
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "Maint darn %d KiB\n"

#: diskdrake/interactive.pm:1219
#, c-format
msgid "RAID-disks %s\n"
msgstr "Disg RAID %s\n"

#: diskdrake/interactive.pm:1221
#, c-format
msgid "Loopback file name: %s"
msgstr "Enw ffeil gylchol: %s"

#: diskdrake/interactive.pm:1224
#, c-format
msgid ""
"\n"
"Chances are, this partition is\n"
"a Driver partition. You should\n"
"probably leave it alone.\n"
msgstr ""
"\n"
"Mwy na thebyg rhaniad Gyrrwr\n"
"yw'r rhaniad hwn. Gwell gadael\n"
"llonydd iddo.\n"

#: diskdrake/interactive.pm:1227
#, c-format
msgid ""
"\n"
"This special Bootstrap\n"
"partition is for\n"
"dual-booting your system.\n"
msgstr ""
"\n"
"Mae'r rhaniad Bootstrap\n"
"hwn ar gyfer cychwyniad\n"
"dwbl eich system\n"

#: diskdrake/interactive.pm:1236
#, c-format
msgid "Free space on %s (%s)"
msgstr "Gofod rhydd ar %s (%s)"

#: diskdrake/interactive.pm:1245
#, c-format
msgid "Read-only"
msgstr "Darllen yn unig"

#: diskdrake/interactive.pm:1246
#, c-format
msgid "Size: %s\n"
msgstr "Maint: %s\n"

#: diskdrake/interactive.pm:1247
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometreg: %s silindr, %s pen, %s sector\n"

#: diskdrake/interactive.pm:1249
#, c-format
msgid "Medium type: "
msgstr "Math o gyfrwng:"

#: diskdrake/interactive.pm:1250
#, c-format
msgid "LVM-disks %s\n"
msgstr "Disg LVM %s\n"

#: diskdrake/interactive.pm:1251
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tabl rhaniad math: %s\n"

#: diskdrake/interactive.pm:1252
#, c-format
msgid "on channel %d id %d\n"
msgstr "ar sianel %d id %d\n"

#: diskdrake/interactive.pm:1295
#, c-format
msgid "Filesystem encryption key"
msgstr "Allwedd amgryptio system ffeil : "

#: diskdrake/interactive.pm:1296
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Dewiswch eich allwedd amgryptio system ffeiliau"

#: diskdrake/interactive.pm:1299
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Mae'r allwedd amgryptio'n rhy syml (mae'n rhaid bod o leiaf %d nod o hyd)"

#: diskdrake/interactive.pm:1300
#, c-format
msgid "The encryption keys do not match"
msgstr "Nid yw'r allweddi amgryptio'n cyd-fynd"

#: diskdrake/interactive.pm:1303
#, c-format
msgid "Encryption key"
msgstr "Allwedd amgryptio"

#: diskdrake/interactive.pm:1304
#, c-format
msgid "Encryption key (again)"
msgstr "Allwedd amgryptio (eto)"

#: diskdrake/interactive.pm:1306
#, c-format
msgid "Encryption algorithm"
msgstr "Algorithm amgryptio"

#: diskdrake/removable.pm:46
#, c-format
msgid "Change type"
msgstr "Newid y math"

#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:129 interactive.pm:546
#: interactive/curses.pm:260 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 ugtk2.pm:415 ugtk2.pm:517
#: ugtk2.pm:526 ugtk2.pm:813
#, c-format
msgid "Cancel"
msgstr "Diddymu"

#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr ""
"Methu mewngofnodi gan ddefnyddio enw defnyddiwr %s (cyfrinair anghywir?)"

#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "Angen Dilysu Parth"

#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "Pa enw defnyddiwr"

#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "Un arall"

#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
"Rhowch eich enw defnyddiwr, cyfrinair ac enw parth i gael mynediad i'r "
"gwesteiwr."

#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "Enw defnyddiwr"

#: diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "Parth"

#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "Chwiliwch am weinyddion"

#: diskdrake/smbnfs_gtk.pm:211
#, c-format
msgid "Search new servers"
msgstr "Chwiliwch weinyddion newydd"

#: do_pkgs.pm:19 do_pkgs.pm:57
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Rhaid i becyn %s gael ei osod. Ydych chi am ei osod?"

#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60
#, c-format
msgid "Could not install the %s package!"
msgstr "Methu gosod pecyn %s!"

#: do_pkgs.pm:28 do_pkgs.pm:65
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Mae pecyn gorfodol %s ar goll"

#: do_pkgs.pm:39
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Mae'r pecynnau canlynol angen eu gosod:\n"

#: do_pkgs.pm:221
#, c-format
msgid "Installing packages..."
msgstr "Gosod pecynnau..."

#: do_pkgs.pm:267
#, c-format
msgid "Removing packages..."
msgstr "Tynnu pecyn..."

#: fs/any.pm:17
#, c-format
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Digwyddodd gwall - heb ganfod unrhyw ddyfeisiau dilys er mwyn creu system "
"ffeil arnynt. Gwiriwch eich caledwedd am reswm dros y gwall."

#: fs/any.pm:75 fs/partitioning_wizard.pm:59
#, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Rhaid cael rhaniad FAT wedi ei arosod yn /boot/efi"

#: fs/format.pm:63 fs/format.pm:70
#, c-format
msgid "Formatting partition %s"
msgstr "Yn fformatio rhaniad %s"

#: fs/format.pm:67
#, c-format
msgid "Creating and formatting file %s"
msgstr "Creu a fformatio ffeil %s"

#: fs/format.pm:122
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "Nid wyf yn gwybod sut i fformatio %s ym math %s"

#: fs/format.pm:127 fs/format.pm:129
#, c-format
msgid "%s formatting of %s failed"
msgstr "methodd  fformatio %s o %s"

#: fs/loopback.pm:24
#, c-format
msgid "Circular mounts %s\n"
msgstr "Arosodiadau cylch %s\n"

#: fs/mount.pm:79
#, c-format
msgid "Mounting partition %s"
msgstr "Yn arosod rhaniad %s"

#: fs/mount.pm:80
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "methodd arosod rhaniad %s yng nghyfeiriadur %s"

#: fs/mount.pm:85 fs/mount.pm:102
#, c-format
msgid "Checking %s"
msgstr "Gwirio %s"

#: fs/mount.pm:119 partition_table.pm:403
#, c-format
msgid "error unmounting %s: %s"
msgstr "gwall dadarosod %s: %s"

#: fs/mount.pm:134
#, c-format
msgid "Enabling swap partition %s"
msgstr "Galluogi rhaniad cyfnewid %s"

#: fs/mount_options.pm:115
#, c-format
msgid "Use an encrypted file system"
msgstr "Defnyddiwch system ffeil amgryptiedig"

#: fs/mount_options.pm:117
#, c-format
msgid "Flush write cache on file close"
msgstr "Gwagio'r storfa ysgrifennu wrth gau ffeil"

#: fs/mount_options.pm:119
#, c-format
msgid "Enable group disk quota accounting and optionally enforce limits"
msgstr "Galluogi cyfrifo cwota disg grŵp a dewis gorfodi terfynau"

#: fs/mount_options.pm:121
#, c-format
msgid ""
"Do not update inode access times on this file system\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""
"Peidiwch ddiweddaru amser mynediad inode ar y system ffeiliau\n"
"(e.e. ar gyfer mynediad cynt ar y cylch newyddion i gyflymu gweinyddion "
"newyddion)."

#: fs/mount_options.pm:124
#, c-format
msgid ""
"Update inode access times on this filesystem in a more efficient way\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""
"Diweddaru amser mynediad inode ar y system ffeiliau mewn ffordd mwy "
"effeithiol\n"
"(e.e. ar gyfer mynediad cynt ar y cylch newyddion i gyflymu gweinyddion "
"newyddion)."

#: fs/mount_options.pm:127
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
"the -a option will not cause the file system to be mounted)."
msgstr ""
"Dim ond ei arosod yn benodol (h.y.,\n"
"bydd y dewis -a yn achosi i'r system gael ei arosod)."

#: fs/mount_options.pm:130
#, c-format
msgid "Do not interpret character or block special devices on the file system."
msgstr ""
"Peidio dehongli nod neu rwystro dyfeisiadau arbennig ar y system ffeil."

#: fs/mount_options.pm:132
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
"file system. This option might be useful for a server that has file systems\n"
"containing binaries for architectures other than its own."
msgstr ""
"Peidio caniatáu gweithrediad unrhyw dueddiad ar system ffeil wedi ei\n"
"arosod. Gall y dewis fod yn ddefnyddiol ar gyfer gweinydd sydd ganddo\n"
"systemau ffeiliau yn cynnwys tueddiad fel pensaernïaeth wahanol i'w un ei "
"hun."

#: fs/mount_options.pm:136
#, c-format
msgid ""
"Do not allow set-user-identifier or set-group-identifier\n"
"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
"have suidperl(1) installed.)"
msgstr ""
"Peidio gadael i didau enw-defnyddiwr-set neu enw-grwp-set\n"
"i gymryd effaith. (Mae i weld yn ddiogel on mae braidd yn anniogel os\n"
"yw uidperl(1) wedi ei osod.)"

#: fs/mount_options.pm:140
#, c-format
msgid "Mount the file system read-only."
msgstr "Arosodwch y system ffeiliau fel darllen yn unig."

#: fs/mount_options.pm:142
#, c-format
msgid "All I/O to the file system should be done synchronously."
msgstr "Dylai pob I/O i'r system ffeil gael ei wneud yn gydamserol."

#: fs/mount_options.pm:144
#, c-format
msgid "Allow every user to mount and umount the file system."
msgstr "Caniatáu pob defnyddiwr i arosod a dadarosod y system ffeiliau."

#: fs/mount_options.pm:146
#, c-format
msgid "Allow an ordinary user to mount the file system."
msgstr "Caniatáu i ddefnyddiwr cyffredin arosod system ffeil."

#: fs/mount_options.pm:148
#, c-format
msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr "Galluogi defnyddiwr i gyfrifo cwota disg ac o ddewis gorfodi terfynau."

#: fs/mount_options.pm:150
#, c-format
msgid "Support \"user.\" extended attributes"
msgstr "Cefnogaeth \"defnyddiwr.\"  priodweddau pellach"

#: fs/mount_options.pm:152
#, c-format
msgid "Give write access to ordinary users"
msgstr "Rhoi mynediad ysgrifennu i ddefnyddwyr cyffredin"

#: fs/mount_options.pm:154
#, c-format
msgid "Give read-only access to ordinary users"
msgstr "Rhoi mynediad darllen yn unig i ddefnyddwyr cyffredin"

#: fs/mount_point.pm:80
#, c-format
msgid "Duplicate mount point %s"
msgstr "Pwynt arosod dyblyg %s"

#: fs/mount_point.pm:95
#, c-format
msgid "No partition available"
msgstr "Dim rhaniad ar gael"

#: fs/mount_point.pm:98
#, c-format
msgid "Scanning partitions to find mount points"
msgstr "Sganio rhaniadau i ganfod pwyntiau arosod"

#: fs/mount_point.pm:105
#, c-format
msgid "Choose the mount points"
msgstr "Dewiswch bwyntiau arosod"

#: fs/partitioning.pm:46
#, c-format
msgid "Choose the partitions you want to format"
msgstr "Dewiswch y rhaniadau rydych am eu fformatio"

#: fs/partitioning.pm:75
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can lose data)"
msgstr ""
"Methu gwirio system ffeil %s. Hoffech chi gywiro'r gwallau? (gofal, mae modd "
"colli data)"

#: fs/partitioning.pm:78
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Dim digon o le cyfnewid i gyflawni'r gosod, ychwanegwch"

#: fs/partitioning_wizard.pm:51
#, c-format
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
"Rhaid cael rhainiad root.\n"
"Ar gyfer gwneud hyn , crëwch raniad (neu cliciwch ar un cyfredol).\n"
"Yna dewiswch weithred ``Pwynt arosod'' a'i osod i `/'"

#: fs/partitioning_wizard.pm:56
#, c-format
msgid ""
"You do not have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
"Nid oes gennych raniad cyfnewid.\n"
"\n"
"Parhau beth bynnag?"

#: fs/partitioning_wizard.pm:84
#, c-format
msgid "Use free space"
msgstr "Defnyddiwch le rhydd"

#: fs/partitioning_wizard.pm:86
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Nid oes digon o le ar gyfer dynodi rhaniadau newydd"

#: fs/partitioning_wizard.pm:94
#, c-format
msgid "Use existing partitions"
msgstr "Defnyddio'r rhaniadau presennol"

#: fs/partitioning_wizard.pm:96
#, c-format
msgid "There is no existing partition to use"
msgstr "Nid oes rhaniad presennol ar gael"

#: fs/partitioning_wizard.pm:103
#, c-format
msgid "Use the Microsoft Windows® partition for loopback"
msgstr "Defnyddiwch raniad Microsoft Windows® ar gyfer cylch ôl."

#: fs/partitioning_wizard.pm:106
#, c-format
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Pa raniad hoffech ei ddefnyddio ar gyfer Linux4Win?"

#: fs/partitioning_wizard.pm:108
#, c-format
msgid "Choose the sizes"
msgstr "Dewis maint"

#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Root partition size in MB: "
msgstr "Maint rhaniad root mewn MB: "

#: fs/partitioning_wizard.pm:110
#, c-format
msgid "Swap partition size in MB: "
msgstr "Maint rhaniad cyfnewid mewn MB: "

#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no FAT partition to use as loopback (or not enough space left)"
msgstr ""
"Nid oes rhaniad FAT i'w ddefnyddio ar gyfer cylch ôl (dim digon o le ar ôl)"

#: fs/partitioning_wizard.pm:127
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Defnyddio'r lle rhydd ar raniad Microsoft Windows®"

#: fs/partitioning_wizard.pm:129
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Pa raniad hoffech newid ei faint?"

#: fs/partitioning_wizard.pm:143
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occurred: %s"
msgstr ""
"Nid yw'r rhaglen newid maint FAT yn gallu trin eich rhaniad,\n"
"digwyddodd y gwall canlynol: %s"

#: fs/partitioning_wizard.pm:146
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Mesur maint rhaniad Microsoft Windows®"

#: fs/partitioning_wizard.pm:153
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
"the Mandriva Linux installation."
msgstr ""
"Mae eich rhaniad Microsoft Windows® yn rhy ddarniog. Ailgychwynnwch eich "
"cyfrifiadur yn Microsoft Windows®, a rhedeg y rhaglen `defrag'', yna "
"ailgychwyn gosod Mandriva Linux."

#: fs/partitioning_wizard.pm:156
#, c-format
msgid ""
"WARNING!\n"
"\n"
"\n"
"Your Microsoft Windows® partition will be now resized.\n"
"\n"
"\n"
"Be careful: this operation is dangerous. If you have not already done so, "
"you first need to exit the installation, run \"chkdsk c:\" from a Command "
"Prompt under Microsoft Windows® (beware, running graphical program \"scandisk"
"\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), "
"optionally run defrag, then restart the installation. You should also backup "
"your data.\n"
"\n"
"\n"
"When sure, press %s."
msgstr ""
"RHYBUDD!\n"
"\n"
"\n"
"Bydd maint eich rhaniad Microsoft Windows® yn cael ei newid.\n"
"\n"
"\n"
"Byddwch ofalus: mae'r weithred hon yn beryglus. Os nad ydych wedi gwneud "
"hynny eisoes, rhaid gadael y gosod, rhedeg \"chkdsk c:\" o'r Llinell "
"Orchymyn yn Microsoft Windows® (rhybudd: nid yw rhedeg y rhaglen \"scandisk"
"\" yn ddigon, gwnewch yn siŵr eich bod yn defnyddio \"chkdsk\" mewn Llinell "
"Orchymyn!), neu rhedwch defrag, yna ailgychwyn gosod. Dylech hefyd wneud "
"copi wrth gefn o'ch data.\n"
"\n"
"\n"
"When sure, press %s."

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: fs/partitioning_wizard.pm:165 interactive.pm:545 interactive/curses.pm:263
#: ugtk2.pm:519
#, c-format
msgid "Next"
msgstr "Nesaf"

#: fs/partitioning_wizard.pm:168
#, c-format
msgid "Partitionning"
msgstr "Creu rhaniadau"

#: fs/partitioning_wizard.pm:168
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"Pa faint o le ydych am ei gadw ar gyfer Microsoft Windows® ar rhaniad %s?"

#: fs/partitioning_wizard.pm:169
#, c-format
msgid "Size"
msgstr "Maint"

#: fs/partitioning_wizard.pm:178
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Newid maint rhaniad Microsoft Windows®"

#: fs/partitioning_wizard.pm:183
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Methodd newid maint FAT %s"

#: fs/partitioning_wizard.pm:198
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr "Nid oes rhaint FAT  i newid ei faint (neu does dim digon o le)"

#: fs/partitioning_wizard.pm:203
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Tynnu Microsoft Windows®"

#: fs/partitioning_wizard.pm:203
#, c-format
msgid "Erase and use entire disk"
msgstr "Dileu a defnyddio'r ddisg gyfan"

#: fs/partitioning_wizard.pm:205
#, c-format
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Mae gennych fwy nag un disg caled, ar ba un hoffech osod linux?"

#: fs/partitioning_wizard.pm:210 fsedit.pm:570
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Bydd POB rhaniad presennol a'u data'n cael eu colli ar yrrwr %si"

#: fs/partitioning_wizard.pm:220
#, c-format
msgid "Custom disk partitioning"
msgstr "Rhannu disg arbenigol"

#: fs/partitioning_wizard.pm:226
#, c-format
msgid "Use fdisk"
msgstr "Defnyddiwch fdisk"

#: fs/partitioning_wizard.pm:229
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, do not forget to save using `w'"
msgstr ""
"Gallwch nawr rannu %s.\n"
"Ar ôl gorffen, peidiwch anghofio ei gadw dan ddefnyddio 'w'."

#: fs/partitioning_wizard.pm:269
#, c-format
msgid "I can not find any room for installing"
msgstr "Nid oes lle ar gyfer gosod"

#: fs/partitioning_wizard.pm:278
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Mae dewin rhannu DrakX wedi canfod yr atebion canlynol:"

#: fs/partitioning_wizard.pm:287
#, c-format
msgid "Partitioning failed: %s"
msgstr "Methodd creu'r rhaniad: %s"

#: fs/type.pm:370
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr "Does dim modd defnyddio JFS ar raniadau llai na 16MB"

#: fs/type.pm:371
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr "Does dim modd defnyddio ReiserFS ar gyfer rhaniadau llai na 32MB"

#: fsedit.pm:23
#, c-format
msgid "simple"
msgstr "syml"

#: fsedit.pm:27
#, c-format
msgid "with /usr"
msgstr "gyda /usr"

#: fsedit.pm:32
#, c-format
msgid "server"
msgstr "Gweinydd"

#: fsedit.pm:116
#, c-format
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr "Mae meddalwedd BIOS RAID wedi ei ganfod ar ddisgiau %s. Gweithredu?"

#: fsedit.pm:223
#, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
"(\n"
"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to lose all the partitions?\n"
msgstr ""
"Nid wyf yn gallu darllen tabl rhaniad %s, mae'n rhy lygredig. :(\n"
"Mae modd i mi fynd ymlaen i ddiystyru rhaniadau gwael (Bydd yr\n"
"HOLL DDATA'n cael ei golli!).  Yr ateb arall yw peidio gadael i\n"
"DrakX newid y tabl rhaniad. (y gwall yw %s)\n"
"\n"
"Ydych chi'n cytuno i golli'r holl raniadau?\n"

#: fsedit.pm:397
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Rhaid i bwyntiau arosod gynnwys / arweiniol"

#: fsedit.pm:398
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Dylai enw'r pwyntiau arosod gynnwys llythrennau a  rhifau'n unig"

#: fsedit.pm:399
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Mae yna eisoes raniad gyda phwynt arosod %s\n"

#: fsedit.pm:403
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"Please be sure to add a /boot partition"
msgstr ""
"Rydych wedi dewis meddalwedd rhannu RAID fel gwraidd (/)\n"
"Nid oes cychwynnwr yn gallu trin hwn heb raniad /boot\n"
"Cofiwch ychwanegu rhaniad /boot"

#: fsedit.pm:409
#, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""
"Does dim modd defnyddio Cyfrol Resymegol LVM ar gyfer pwynt arosod %s am ei "
"fod ar draws cyfrolau ffisegol."

#: fsedit.pm:411
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
"The bootloader is not able to handle this when the volume spans physical "
"volumes.\n"
"You should create a /boot partition first"
msgstr ""
"Rydych wedi dewis Cyfrol Resymegol LVM fel gwraidd (/)\n"
"Nid oes cychwynnwr yn gallu trin hwn pan yw ar draws cyfrolau ffisegol.\n"
"Cofiwch ychwanegu rhaniad /boot yn gyntaf"

#: fsedit.pm:415 fsedit.pm:417
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Dylai'r cyfeiriadur aros o fewn y system ffeilio gwraidd"

#: fsedit.pm:419 fsedit.pm:421
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
"Mae angen gwir system ffeilio (ext2, reiserfs,  xfs, neu jfs)) ar gyfer y "
"pwynt arosod\n"

#: fsedit.pm:423
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr "Nid oes modd defnyddio Cyfrol Resymegol LVM ar gyfer pwynt arosod %s"

#: fsedit.pm:487
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Nid oes digon o le ar gyfer awto ddynodi"

#: fsedit.pm:489
#, c-format
msgid "Nothing to do"
msgstr "Dim i'w wneud"

#: harddrake/data.pm:64
#, c-format
msgid "SATA controllers"
msgstr "Rheolyddion SATA"

#: harddrake/data.pm:73
#, c-format
msgid "RAID controllers"
msgstr "Rheolyddion RAID"

#: harddrake/data.pm:83
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "Rheolyddion (E)IDE/ATA"

#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr "Darllenydd cerdyn"

#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Rheolyddion firewire"

#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "Rheolyddion PCMCIA"

#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "Rheolyddion SCSI"

#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "Rheolyddion USB"

#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "Pyrth USB"

#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "Rheolyddion SMBus"

#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Rheolyddion pontydd a system"

#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Disg Meddal"

#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"

#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Disg"

#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr "Dyfeisiau Storio Crynswth  USB"

#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CDROM"

#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "Llosgwyr CD/DVD"

#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"

#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Tâp"

#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "Rheolyddion AGP"

#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Cerdyn fideo"

#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "Cerdyn DVB"

#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "Cerdyn Teledu"

#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Dyfeisiau aml-gyfrwng eraill"

#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Cerdyn sain"

#: harddrake/data.pm:312
#, c-format
msgid "Webcam"
msgstr "Camera Gwe"

#: harddrake/data.pm:326
#, c-format
msgid "Processors"
msgstr "Prosesyddion"

#: harddrake/data.pm:336
#, c-format
msgid "ISDN adapters"
msgstr "Addaswyr ISDN"

#: harddrake/data.pm:347
#, c-format
msgid "USB sound devices"
msgstr "Dyfeisiau sain USB"

#: harddrake/data.pm:356
#, c-format
msgid "Radio cards"
msgstr "Cardiau radio"

#: harddrake/data.pm:365
#, c-format
msgid "ATM network cards"
msgstr "Cardiau rhwydwaith ATM"

#: harddrake/data.pm:374
#, c-format
msgid "WAN network cards"
msgstr "Cardiau rhwydwaith WAN"

#: harddrake/data.pm:383
#, c-format
msgid "Bluetooth devices"
msgstr "Dyfeisiau Bluetooth"

#: harddrake/data.pm:392
#, c-format
msgid "Ethernetcard"
msgstr "Cerdyn Ethernet"

#: harddrake/data.pm:409
#, c-format
msgid "Modem"
msgstr "Modem"

#: harddrake/data.pm:419
#, c-format
msgid "ADSL adapters"
msgstr "Addaswyr ADSL"

#: harddrake/data.pm:431
#, c-format
msgid "Memory"
msgstr "Cof"

#: harddrake/data.pm:440
#, c-format
msgid "Printer"
msgstr "Argraffydd"

#. -PO: these are joysticks controllers:
#: harddrake/data.pm:454
#, c-format
msgid "Game port controllers"
msgstr "Rheolyddion porth gemau"

#: harddrake/data.pm:463
#, c-format
msgid "Joystick"
msgstr "Ffon hud"

#: harddrake/data.pm:473
#, c-format
msgid "Keyboard"
msgstr "Bysellfwrdd"

#: harddrake/data.pm:486
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tabled a sgrin cyffwrdd"

#: harddrake/data.pm:495
#, c-format
msgid "Mouse"
msgstr "Llygoden"

#: harddrake/data.pm:509
#, c-format
msgid "Biometry"
msgstr "Biometreg"

#: harddrake/data.pm:517
#, c-format
msgid "UPS"
msgstr "UPS"

#: harddrake/data.pm:526
#, c-format
msgid "Scanner"
msgstr "Sganiwr"

#: harddrake/data.pm:537
#, c-format
msgid "Unknown/Others"
msgstr "Anhysbys/Eraill"

#: harddrake/data.pm:565
#, c-format
msgid "cpu # "
msgstr "cpu # "

#: harddrake/sound.pm:285
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Arhoswch...Gosod y ffurfweddiad"

#: harddrake/sound.pm:346
#, c-format
msgid "Enable PulseAudio"
msgstr "Galluogi PulseAudio"

#: harddrake/sound.pm:350
#, c-format
msgid "Automatic routing from ALSA to PulseAudio"
msgstr "Llwybro awtomatig o ALSA i PulseAudio"

#: harddrake/sound.pm:355
#, c-format
msgid "Enable 5.1 sound with Pulse Audio"
msgstr "Galluogi sain 5.1 gyda Pulse Audio"

#: harddrake/sound.pm:360
#, c-format
msgid "Enable user switching for audio applications"
msgstr "Galluogi newid defnyddiwr gyda rhaglenni sain"

#: harddrake/sound.pm:365
#, c-format
msgid "Reset sound mixer to default values"
msgstr "Ail-osod sain cymysgydd i'r gwerthoedd rhagosodedig"

#: harddrake/sound.pm:370
#, c-format
msgid "Trouble shooting"
msgstr "Datrys problemau"

#: harddrake/sound.pm:377
#, c-format
msgid "No alternative driver"
msgstr "Dim gyrwyr eraill"

#: harddrake/sound.pm:378
#, c-format
msgid ""
"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
"currently uses \"%s\""
msgstr ""
"Nid oes gyrrwr OSS/ALSA  arall hysbys ar gyfer eich cerdyn sain (%s) sy'n "
"defnyddio \"%s\" ar hyn o bryd"

#: harddrake/sound.pm:385
#, c-format
msgid "Sound configuration"
msgstr "Ffurfweddiad sain"

#: harddrake/sound.pm:387
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
"sound card (%s)."
msgstr ""
"Yma gallwch ddewis gyrrwr arall (un ai OSS neu ALSA) ar gyfer eich cerdyn "
"sain (%s)"

#. -PO: here the first %s is either "OSS" or "ALSA", 
#. -PO: the second %s is the name of the current driver
#. -PO: and the third %s is the name of the default driver
#: harddrake/sound.pm:392
#, c-format
msgid ""
"\n"
"\n"
"Your card currently use the %s\"%s\" driver (default driver for your card is "
"\"%s\")"
msgstr ""
"\n"
"\n"
"Mae eich cerdyn yn defnyddio'r gyrrwr %s\"%s\" ar hyn o bryd ( y gyrrwr "
"arferol ar ei gyfer yw \"%s\")"

#: harddrake/sound.pm:394
#, c-format
msgid ""
"OSS (Open Sound System) was the first sound API. It's an OS independent "
"sound API (it's available on most UNIX(tm) systems) but it's a very basic "
"and limited API.\n"
"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
"which\n"
"supports quite a large range of ISA, USB and PCI cards.\n"
"\n"
"It also provides a much higher API than OSS.\n"
"\n"
"To use alsa, one can either use:\n"
"- the old compatibility OSS api\n"
"- the new ALSA api that provides many enhanced features but requires using "
"the ALSA library.\n"
msgstr ""
"OSS (Open Sound System) oedd yr API sain gyntaf. Mae'n API sail annibynnol o "
"systemau gweithredu ( mae ar gael ar gyfer y rhan fwyaf o systemau unices) "
"on mae'n API elfennol iawn a chyfyng.\n"
"Mae gyrwyr OSS hefyd yn ail ddyfeisio'r hyn sy'n bod eisoes.\n"
"\n"
"Mae ALSA (Advanced Linux Sound Architecture) yn bensaernïaeth fodiwlaidd "
"sy'n \n"
"cynnal ystod eang o gardiau ISA, USB a PCI.\n"
"\n"
"Mae hefyd yn darparu API llawer uwch na OSS.\n"
"\n"
"I ddefnyddio alsa, mae modd defnyddio un ai:\n"
"- hen api OSS cydweddus\n"
"- api ALSA newydd sy'n darparu llawer o nodweddion gell ond sydd angen "
"defnyddio llyfrgell ALSA.\n"

#: harddrake/sound.pm:408 harddrake/sound.pm:491
#, c-format
msgid "Driver:"
msgstr "Gyrrwr:"

#: harddrake/sound.pm:422
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
"\n"
"It has been reported to oops the kernel on unloading.\n"
"\n"
"The new \"%s\" driver will only be used on next bootstrap."
msgstr ""
"Mae'r hen yrrwr \"%s\" wedi ei wahardd.\n"
"\n"
"Mae'n effeithio'n andwyol ar y cnewyllyn\n"
"\n"
"Bydd y gyrrwr \"%s|\"'n cael ei ddefnyddio ar y cychwyn"

#: harddrake/sound.pm:430
#, c-format
msgid "No open source driver"
msgstr "Dim gyrrwr cod agored"

#: harddrake/sound.pm:431
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
"driver at \"%s\"."
msgstr ""
"Nid oes gyrrwr rhydd ar gyfer eich cerdyn sain (%s) ond mae gyrrwr "
"perchnogol yn \"%s\" ."

#: harddrake/sound.pm:434
#, c-format
msgid "No known driver"
msgstr "Dim gyrrwr hysbys"

#: harddrake/sound.pm:435
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Nid oes gyrrwr hysbys ar gyfer eich cerdyn sain (%s)"

#: harddrake/sound.pm:450
#, c-format
msgid "Sound trouble shooting"
msgstr "Datrys problemau sain"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:453
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
"uses\n"
"by default\n"
"\n"
"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
"currently uses\n"
"\n"
"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
"loaded or not\n"
"\n"
"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
"tell you if sound and alsa services are configured to be run on\n"
"initlevel 3\n"
"\n"
"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""
"Prawf gwall sain - rhedeg y gorchmynion canlynol:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep -i AUDIO\" pa yrwyr i'w defnyddio\n"
"drwy ragosodiad\n"
"\n"
"- \"grep sound-slot /etc/modprobe.conf\" pa yrwyr mae'n defnyddio\n"
"- \"/sbin/fuser -v /dev/dsp\" pa raglen sy'n defnyddio'r cerdyn sain.\n"
"ar hyn o bryd\n"
"\n"
"- \"/sbin/lsmod\" gwirio os yw ei yrrwr wedi ei lwytho\n"
"a'i peidio\n"
"\n"
"- \"/sbin/chkconfig --list sound\" a \"/sbin/chkconfig --list alsa\" dangos\n"
"os yw sain a gwasanaethau alsa services sydd wedi eu ffurfweddu yn rhedeg\n"
"ar initlevel 3\n"
"\n"
"- \"aumix -q\" a yw'r sain wedi ei ddistewi a'i peidio\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" pa rhaglen sy'n defnyddio'r cerdyn sain.\n"

#: harddrake/sound.pm:480
#, c-format
msgid "Let me pick any driver"
msgstr "Dewis gyrrwr fy hun"

#: harddrake/sound.pm:483
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Dewis gyrrwr ar hap"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:486
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
"card\n"
"you can pick one in the above list.\n"
"\n"
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""
"Os ydych yn siŵr eich bod yn gwybod pa yrrwr sydd angen ar gyfer eich\n"
"cerdyn yna dewiswch un o'r rhestr uchod\n"
"\n"
"Y gyrrwr presennol ar gyfer eich cerdyn \"%s\"  yw \"%s\" "

#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "Awtoganfod"

#: harddrake/v4l.pm:97 harddrake/v4l.pm:285 harddrake/v4l.pm:337
#, c-format
msgid "Unknown|Generic"
msgstr "Anhysbys|Generig"

#: harddrake/v4l.pm:130
#, c-format
msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr "Anhysbys|CPH05X (bt878) [nifer o werthwyr]"

#: harddrake/v4l.pm:131
#, c-format
msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr "Anhysbys|CPH06X (bt878) [nifer o werthwyr]"

#: harddrake/v4l.pm:475
#, c-format
msgid ""
"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
"detect the rights parameters.\n"
"If your card is misdetected, you can force the right tuner and card types "
"here. Just select your tv card parameters if needed."
msgstr ""
"Ar gyfer y rhelyw o gardiau Teledu diweddar, mae modiwl bttv cnewyllyn GNU/"
"Linux yn awto ganfod y paramedrau cywir.\n"
"Os yw'ch cerdyn yn cael ei ganfod ar gam, mae modd gorfodi'r mathau cywir o "
"gerdyn a rheolydd. Dewiswch baramedrau eich cerdyn teledu os oes raid"

#: harddrake/v4l.pm:478
#, c-format
msgid "Card model:"
msgstr "Model cerdyn:"

#: harddrake/v4l.pm:479
#, c-format
msgid "Tuner type:"
msgstr "Math o diwniwr:"

#: interactive.pm:128 interactive.pm:545 interactive/curses.pm:263
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 ugtk2.pm:421 ugtk2.pm:519
#: ugtk2.pm:813 ugtk2.pm:836
#, c-format
msgid "Ok"
msgstr "Iawn"

#: interactive.pm:227 modules/interactive.pm:71 ugtk2.pm:812 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Iawn"

#: interactive.pm:227 modules/interactive.pm:71 ugtk2.pm:812 wizards.pm:156
#, c-format
msgid "No"
msgstr "Na"

#: interactive.pm:261
#, c-format
msgid "Choose a file"
msgstr "Dewis ffeil"

#: interactive.pm:386 interactive/gtk.pm:436
#, c-format
msgid "Add"
msgstr "Ychwanegu"

#: interactive.pm:386 interactive/gtk.pm:436
#, c-format
msgid "Modify"
msgstr "Newid"

#: interactive.pm:386 interactive/gtk.pm:436
#, c-format
msgid "Remove"
msgstr "Tynnu"

#: interactive.pm:545 interactive/curses.pm:263 ugtk2.pm:519
#, c-format
msgid "Finish"
msgstr "Gorffen"

#: interactive.pm:546 interactive/curses.pm:260 ugtk2.pm:517
#, c-format
msgid "Previous"
msgstr "Blaenorol"

#: interactive/gtk.pm:564
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "Gwyliwch, Mae Caps Lock ymlaen"

#: interactive/stdio.pm:29 interactive/stdio.pm:154
#, c-format
msgid "Bad choice, try again\n"
msgstr "Dewis gwael, ceisiwch eto\n"

#: interactive/stdio.pm:30 interactive/stdio.pm:155
#, c-format
msgid "Your choice? (default %s) "
msgstr "Eich dewis? (rhagosodedig %s)"

#: interactive/stdio.pm:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
"Gwybodaeth i'w gyflwyno:\n"
"%s"

#: interactive/stdio.pm:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Eich dewis? (0/1, rhagosodedig %s)"

#: interactive/stdio.pm:97
#, c-format
msgid "Button `%s': %s"
msgstr "Botwm '%s'.%s"

#: interactive/stdio.pm:98
#, c-format
msgid "Do you want to click on this button?"
msgstr "Ydych chi eisiau clicio ar y botwm hwn?"

#: interactive/stdio.pm:110
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Eich dewis? (rhagosodedig `%s'%s) "

#: interactive/stdio.pm:110
#, c-format
msgid " enter `void' for void entry"
msgstr "rhowch 'gwag' am gofnod gwag"

#: interactive/stdio.pm:128
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Mae yna lawer i ddewis o (%s).\n"

#: interactive/stdio.pm:131
#, c-format
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
"Dewiswch y rhif cyntaf o'r amrediad 10 rydych am ei olygu,\n"
"neu bwyswch Enter i barhau.\n"
"Eich dewis?"

#: interactive/stdio.pm:144
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
"=>Hysbysiad, mae label wedi newid:\n"
"%s"

#: interactive/stdio.pm:151
#, c-format
msgid "Re-submit"
msgstr "Ail-gyflwyno"

#. -PO: the string "default:LTR" can be translated *ONLY* as "default:LTR"
#. -PO: or as "default:RTL", depending if your language is written from
#. -PO: left to right, or from right to left; any other string is wrong.
#: lang.pm:193
#, c-format
msgid "default:LTR"
msgstr "default:LTR"

#: lang.pm:210
#, c-format
msgid "Andorra"
msgstr "Andorra"

#: lang.pm:211 timezone.pm:226
#, c-format
msgid "United Arab Emirates"
msgstr "United Arab Emirates"

#: lang.pm:212
#, c-format
msgid "Afghanistan"
msgstr "Afghanistan"

#: lang.pm:213
#, c-format
msgid "Antigua and Barbuda"
msgstr "Antigua a Barbuda"

#: lang.pm:214
#, c-format
msgid "Anguilla"
msgstr "Anguilla"

#: lang.pm:215
#, c-format
msgid "Albania"
msgstr "Albania"

#: lang.pm:216
#, c-format
msgid "Armenia"
msgstr "Armenia"

#: lang.pm:217
#, c-format
msgid "Netherlands Antilles"
msgstr "Netherlands Antilles"

#: lang.pm:218
#, c-format
msgid "Angola"
msgstr "Angola"

#: lang.pm:219
#, c-format
msgid "Antarctica"
msgstr "Antarctica"

#: lang.pm:220 timezone.pm:271
#, c-format
msgid "Argentina"
msgstr "Yr Ariannin"

#: lang.pm:221
#, c-format
msgid "American Samoa"
msgstr "American Samoa"

#: lang.pm:222 mirror.pm:12 timezone.pm:229
#, c-format
msgid "Austria"
msgstr "Awstria"

#: lang.pm:223 mirror.pm:11 timezone.pm:267
#, c-format
msgid "Australia"
msgstr "Awstralia"

#: lang.pm:224
#, c-format
msgid "Aruba"
msgstr "Aruba"

#: lang.pm:225
#, c-format
msgid "Azerbaijan"
msgstr "Azerbaijan"

#: lang.pm:226
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Bosnia ac Herzegovina"

#: lang.pm:227
#, c-format
msgid "Barbados"
msgstr "Barbados"

#: lang.pm:228 timezone.pm:211
#, c-format
msgid "Bangladesh"
msgstr "Bangladesh"

#: lang.pm:229 mirror.pm:13 timezone.pm:231
#, c-format
msgid "Belgium"
msgstr "Gwlad Belg"

#: lang.pm:230
#, c-format
msgid "Burkina Faso"
msgstr "Burkina Faso"

#: lang.pm:231 timezone.pm:232
#, c-format
msgid "Bulgaria"
msgstr "Bwlgaria"

#: lang.pm:232
#, c-format
msgid "Bahrain"
msgstr "Bahrain"

#: lang.pm:233
#, c-format
msgid "Burundi"
msgstr "Burundi"

#: lang.pm:234
#, c-format
msgid "Benin"
msgstr "Benin"

#: lang.pm:235
#, c-format
msgid "Bermuda"
msgstr "Bermuda"

#: lang.pm:236
#, c-format
msgid "Brunei Darussalam"
msgstr "Brunei Darussalam"

#: lang.pm:237
#, c-format
msgid "Bolivia"
msgstr "Bolivia"

#: lang.pm:238 mirror.pm:14 timezone.pm:272
#, c-format
msgid "Brazil"
msgstr "Brasil"

#: lang.pm:239
#, c-format
msgid "Bahamas"
msgstr "Bahamas"

#: lang.pm:240
#, c-format
msgid "Bhutan"
msgstr "Bhutan"

#: lang.pm:241
#, c-format
msgid "Bouvet Island"
msgstr "Ynys Bouvet"

#: lang.pm:242
#, c-format
msgid "Botswana"
msgstr "Botswana"

#: lang.pm:243 timezone.pm:230
#, c-format
msgid "Belarus"
msgstr "Belarus"

#: lang.pm:244
#, c-format
msgid "Belize"
msgstr "Belize"

#: lang.pm:245 mirror.pm:15 timezone.pm:261
#, c-format
msgid "Canada"
msgstr "Canada"

#: lang.pm:246
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Ynysoedd Cocos (Keeling)"

#: lang.pm:247
#, c-format
msgid "Congo (Kinshasa)"
msgstr "Congo (Kinshasa)"

#: lang.pm:248
#, c-format
msgid "Central African Republic"
msgstr "Gweriniaeth Canol Affrica"

#: lang.pm:249
#, c-format
msgid "Congo (Brazzaville)"
msgstr "Congo (Brazzaville)"

#: lang.pm:250 mirror.pm:39 timezone.pm:255
#, c-format
msgid "Switzerland"
msgstr "Y Swistir"

#: lang.pm:251
#, c-format
msgid "Cote d'Ivoire"
msgstr "Cote d'Ivoire"

#: lang.pm:252
#, c-format
msgid "Cook Islands"
msgstr "Ynysoedd Cook"

#: lang.pm:253 timezone.pm:273
#, c-format
msgid "Chile"
msgstr "Chile"

#: lang.pm:254
#, c-format
msgid "Cameroon"
msgstr "Cameroon"

#: lang.pm:255 timezone.pm:212
#, c-format
msgid "China"
msgstr "Tsieina"

#: lang.pm:256
#, c-format
msgid "Colombia"
msgstr "Colombia"

#: lang.pm:257 mirror.pm:16
#, c-format
msgid "Costa Rica"
msgstr "Costa Rica"

#: lang.pm:258
#, c-format
msgid "Serbia & Montenegro"
msgstr "Serbia a Montenegro"

#: lang.pm:259
#, c-format
msgid "Cuba"
msgstr "Ciwba"

#: lang.pm:260
#, c-format
msgid "Cape Verde"
msgstr "Cape Verde"

#: lang.pm:261
#, c-format
msgid "Christmas Island"
msgstr "Ynys Christmas"

#: lang.pm:262
#, c-format
msgid "Cyprus"
msgstr "Cyprus"

#: lang.pm:263 mirror.pm:17 timezone.pm:233
#, c-format
msgid "Czech Republic"
msgstr "Gweriniaeth Tsiec"

#: lang.pm:264 mirror.pm:22 timezone.pm:238
#, c-format
msgid "Germany"
msgstr "Yr Almaen"

#: lang.pm:265
#, c-format
msgid "Djibouti"
msgstr "Djibouti"

#: lang.pm:266 mirror.pm:18 timezone.pm:234
#, c-format
msgid "Denmark"
msgstr "Denmarc"

#: lang.pm:267
#, c-format
msgid "Dominica"
msgstr "Dominica"

#: lang.pm:268
#, c-format
msgid "Dominican Republic"
msgstr "Dominican Republic"

#: lang.pm:269
#, c-format
msgid "Algeria"
msgstr "Algeria"

#: lang.pm:270
#, c-format
msgid "Ecuador"
msgstr "Ecuador"

#: lang.pm:271 mirror.pm:19 timezone.pm:235
#, c-format
msgid "Estonia"
msgstr "Estonia"

#: lang.pm:272
#, c-format
msgid "Egypt"
msgstr "Yr Aifft"

#: lang.pm:273
#, c-format
msgid "Western Sahara"
msgstr "Western Sahara"

#: lang.pm:274
#, c-format
msgid "Eritrea"
msgstr "Eritrea"

#: lang.pm:275 mirror.pm:37 timezone.pm:253
#, c-format
msgid "Spain"
msgstr "Sbaen"

#: lang.pm:276
#, c-format
msgid "Ethiopia"
msgstr "Ethiopia"

#: lang.pm:277 mirror.pm:20 timezone.pm:236
#, c-format
msgid "Finland"
msgstr "Y Ffindir"

#: lang.pm:278
#, c-format
msgid "Fiji"
msgstr "Ffiji"

#: lang.pm:279
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "Ynysoedd y Falkland (Malvinas)"

#: lang.pm:280
#, c-format
msgid "Micronesia"
msgstr "Micronesia"

#: lang.pm:281
#, c-format
msgid "Faroe Islands"
msgstr "Ynysoedd Faroe"

#: lang.pm:282 mirror.pm:21 timezone.pm:237
#, c-format
msgid "France"
msgstr "Ffrainc"

#: lang.pm:283
#, c-format
msgid "Gabon"
msgstr "Gabon"

#: lang.pm:284 timezone.pm:257
#, c-format
msgid "United Kingdom"
msgstr "Y Deyrnas Unedig"

#: lang.pm:285
#, c-format
msgid "Grenada"
msgstr "Grenada"

#: lang.pm:286
#, c-format
msgid "Georgia"
msgstr "Georgia"

#: lang.pm:287
#, c-format
msgid "French Guiana"
msgstr "French Guiana"

#: lang.pm:288
#, c-format
msgid "Ghana"
msgstr "Ghana"

#: lang.pm:289
#, c-format
msgid "Gibraltar"
msgstr "Gibraltar"

#: lang.pm:290
#, c-format
msgid "Greenland"
msgstr "Greenland"

#: lang.pm:291
#, c-format
msgid "Gambia"
msgstr "Gambia"

#: lang.pm:292
#, c-format
msgid "Guinea"
msgstr "Guinea"

#: lang.pm:293
#, c-format
msgid "Guadeloupe"
msgstr "Guadeloupe"

#: lang.pm:294
#, c-format
msgid "Equatorial Guinea"
msgstr "Equatorial Guinea"

#: lang.pm:295 mirror.pm:23 timezone.pm:239
#, c-format
msgid "Greece"
msgstr "Groeg"

#: lang.pm:296
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "De Georgia ac Ynysoedd De Sandwich"

#: lang.pm:297 timezone.pm:262
#, c-format
msgid "Guatemala"
msgstr "Guatemala"

#: lang.pm:298
#, c-format
msgid "Guam"
msgstr "Guam"

#: lang.pm:299
#, c-format
msgid "Guinea-Bissau"
msgstr "Guinea-Bissau"

#: lang.pm:300
#, c-format
msgid "Guyana"
msgstr "Guyana"

#: lang.pm:301
#, c-format
msgid "Hong Kong SAR (China)"
msgstr "Tsiena (Hong Kong)"

#: lang.pm:302
#, c-format
msgid "Heard and McDonald Islands"
msgstr "Heard a McDonald Islands"

#: lang.pm:303
#, c-format
msgid "Honduras"
msgstr "Honduras"

#: lang.pm:304
#, c-format
msgid "Croatia"
msgstr "Croatia"

#: lang.pm:305
#, c-format
msgid "Haiti"
msgstr "Haiti"

#: lang.pm:306 mirror.pm:24 timezone.pm:240
#, c-format
msgid "Hungary"
msgstr "Hwngari"

#: lang.pm:307 timezone.pm:215
#, c-format
msgid "Indonesia"
msgstr "Indonesia"

#: lang.pm:308 mirror.pm:25 timezone.pm:241
#, c-format
msgid "Ireland"
msgstr "Iwerddon"

#: lang.pm:309 mirror.pm:26 timezone.pm:217
#, c-format
msgid "Israel"
msgstr "Israel"

#: lang.pm:310 timezone.pm:214
#, c-format
msgid "India"
msgstr "India"

#: lang.pm:311
#, c-format
msgid "British Indian Ocean Territory"
msgstr "British Indian Ocean Territory"

#: lang.pm:312
#, c-format
msgid "Iraq"
msgstr "Irac"

#: lang.pm:313 timezone.pm:216
#, c-format
msgid "Iran"
msgstr "Iran"

#: lang.pm:314
#, c-format
msgid "Iceland"
msgstr "Ynys yr Iâ"

#: lang.pm:315 mirror.pm:27 timezone.pm:242
#, c-format
msgid "Italy"
msgstr "Yr Eidal"

#: lang.pm:316
#, c-format
msgid "Jamaica"
msgstr "Jamaica"

#: lang.pm:317
#, c-format
msgid "Jordan"
msgstr "Yr Iorddonen"

#: lang.pm:318 mirror.pm:28 timezone.pm:218
#, c-format
msgid "Japan"
msgstr "Siapan"

#: lang.pm:319
#, c-format
msgid "Kenya"
msgstr "Kenya"

#: lang.pm:320
#, c-format
msgid "Kyrgyzstan"
msgstr "Kyrgyzstan"

#: lang.pm:321
#, c-format
msgid "Cambodia"
msgstr "Cambodia"

#: lang.pm:322
#, c-format
msgid "Kiribati"
msgstr "Kiribati"

#: lang.pm:323
#, c-format
msgid "Comoros"
msgstr "Comoros"

#: lang.pm:324
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "Saint Kitts a Nevis"

#: lang.pm:325
#, c-format
msgid "Korea (North)"
msgstr "Corea (Gogledd)"

#: lang.pm:326 timezone.pm:219
#, c-format
msgid "Korea"
msgstr "Corea"

#: lang.pm:327
#, c-format
msgid "Kuwait"
msgstr "Kuwait"

#: lang.pm:328
#, c-format
msgid "Cayman Islands"
msgstr "Cayman Islands"

#: lang.pm:329
#, c-format
msgid "Kazakhstan"
msgstr "Kazakhstan"

#: lang.pm:330
#, c-format
msgid "Laos"
msgstr "Laos"

#: lang.pm:331
#, c-format
msgid "Lebanon"
msgstr "Libanus"

#: lang.pm:332
#, c-format
msgid "Saint Lucia"
msgstr "Saint Lucia"

#: lang.pm:333
#, c-format
msgid "Liechtenstein"
msgstr "Liechtenstein"

#: lang.pm:334
#, c-format
msgid "Sri Lanka"
msgstr "Sri Lanka"

#: lang.pm:335
#, c-format
msgid "Liberia"
msgstr "Liberia"

#: lang.pm:336
#, c-format
msgid "Lesotho"
msgstr "Lesotho"

#: lang.pm:337 timezone.pm:243
#, c-format
msgid "Lithuania"
msgstr "Lithuania"

#: lang.pm:338 timezone.pm:244
#, c-format
msgid "Luxembourg"
msgstr "Luxembourg"

#: lang.pm:339
#, c-format
msgid "Latvia"
msgstr "Latfia"

#: lang.pm:340
#, c-format
msgid "Libya"
msgstr "Libya"

#: lang.pm:341
#, c-format
msgid "Morocco"
msgstr "Morocco"

#: lang.pm:342
#, c-format
msgid "Monaco"
msgstr "Monaco"

#: lang.pm:343
#, c-format
msgid "Moldova"
msgstr "Moldova"

#: lang.pm:344
#, c-format
msgid "Madagascar"
msgstr "Madagascar"

#: lang.pm:345
#, c-format
msgid "Marshall Islands"
msgstr "Ynysoedd Marshall"

#: lang.pm:346
#, c-format
msgid "Macedonia"
msgstr "Macedonia"

#: lang.pm:347
#, c-format
msgid "Mali"
msgstr "Mali"

#: lang.pm:348
#, c-format
msgid "Myanmar"
msgstr "Myanmar"

#: lang.pm:349
#, c-format
msgid "Mongolia"
msgstr "Mongolia"

#: lang.pm:350
#, c-format
msgid "Northern Mariana Islands"
msgstr "Ynysoedd Gogledd Mariana"

#: lang.pm:351
#, c-format
msgid "Martinique"
msgstr "Martinique"

#: lang.pm:352
#, c-format
msgid "Mauritania"
msgstr "Mauritania"

#: lang.pm:353
#, c-format
msgid "Montserrat"
msgstr "Montserrat"

#: lang.pm:354
#, c-format
msgid "Malta"
msgstr "Malta"

#: lang.pm:355
#, c-format
msgid "Mauritius"
msgstr "Mauritius"

#: lang.pm:356
#, c-format
msgid "Maldives"
msgstr "Maldives"

#: lang.pm:357
#, c-format
msgid "Malawi"
msgstr "Malawi"

#: lang.pm:358 timezone.pm:263
#, c-format
msgid "Mexico"
msgstr "Mecsico"

#: lang.pm:359 timezone.pm:220
#, c-format
msgid "Malaysia"
msgstr "Malaysia"

#: lang.pm:360
#, c-format
msgid "Mozambique"
msgstr "Mozambique"

#: lang.pm:361
#, c-format
msgid "Namibia"
msgstr "Namibia"

#: lang.pm:362
#, c-format
msgid "New Caledonia"
msgstr "Caledonia Newydd"

#: lang.pm:363
#, c-format
msgid "Niger"
msgstr "Niger"

#: lang.pm:364
#, c-format
msgid "Norfolk Island"
msgstr "Ynys Norfolk"

#: lang.pm:365
#, c-format
msgid "Nigeria"
msgstr "Nigeria"

#: lang.pm:366
#, c-format
msgid "Nicaragua"
msgstr "Nicaragua"

#: lang.pm:367 mirror.pm:29 timezone.pm:245
#, c-format
msgid "Netherlands"
msgstr "Yr Iseldiroedd"

#: lang.pm:368 mirror.pm:31 timezone.pm:246
#, c-format
msgid "Norway"
msgstr "Norwy"

#: lang.pm:369
#, c-format
msgid "Nepal"
msgstr "Nepal"

#: lang.pm:370
#, c-format
msgid "Nauru"
msgstr "Nauru"

#: lang.pm:371
#, c-format
msgid "Niue"
msgstr "Niue"

#: lang.pm:372 mirror.pm:30 timezone.pm:268
#, c-format
msgid "New Zealand"
msgstr "Seland Newydd"

#: lang.pm:373
#, c-format
msgid "Oman"
msgstr "Oman"

#: lang.pm:374
#, c-format
msgid "Panama"
msgstr "Panama"

#: lang.pm:375
#, c-format
msgid "Peru"
msgstr "Periw"

#: lang.pm:376
#, c-format
msgid "French Polynesia"
msgstr "Polynesia Ffrengig"

#: lang.pm:377
#, c-format
msgid "Papua New Guinea"
msgstr "Papua New Guinea"

#: lang.pm:378 timezone.pm:221
#, c-format
msgid "Philippines"
msgstr "Philippines"

#: lang.pm:379
#, c-format
msgid "Pakistan"
msgstr "Pacistan"

#: lang.pm:380 mirror.pm:32 timezone.pm:247
#, c-format
msgid "Poland"
msgstr "Gwlad Pwyl"

#: lang.pm:381
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "Saint Pierre a Miquelon"

#: lang.pm:382
#, c-format
msgid "Pitcairn"
msgstr "Pitcairn"

#: lang.pm:383
#, c-format
msgid "Puerto Rico"
msgstr "Puerto Rico"

#: lang.pm:384
#, c-format
msgid "Palestine"
msgstr "Palestina"

#: lang.pm:385 mirror.pm:33 timezone.pm:248
#, c-format
msgid "Portugal"
msgstr "Portiwgal"

#: lang.pm:386
#, c-format
msgid "Paraguay"
msgstr "Paraguay"

#: lang.pm:387
#, c-format
msgid "Palau"
msgstr "Palau"

#: lang.pm:388
#, c-format
msgid "Qatar"
msgstr "Qatar"

#: lang.pm:389
#, c-format
msgid "Reunion"
msgstr "Reunion"

#: lang.pm:390 timezone.pm:249
#, c-format
msgid "Romania"
msgstr "Rwmania"

#: lang.pm:391 mirror.pm:34
#, c-format
msgid "Russia"
msgstr "Rwsia"

#: lang.pm:392
#, c-format
msgid "Rwanda"
msgstr "Rwanda"

#: lang.pm:393
#, c-format
msgid "Saudi Arabia"
msgstr "Saudi Arabia"

#: lang.pm:394
#, c-format
msgid "Solomon Islands"
msgstr "Ynysoedd Solomon"

#: lang.pm:395
#, c-format
msgid "Seychelles"
msgstr "Seychelles"

#: lang.pm:396
#, c-format
msgid "Sudan"
msgstr "Swdan"

#: lang.pm:397 mirror.pm:38 timezone.pm:254
#, c-format
msgid "Sweden"
msgstr "Sweden"

#: lang.pm:398 timezone.pm:222
#, c-format
msgid "Singapore"
msgstr "Singapore"

#: lang.pm:399
#, c-format
msgid "Saint Helena"
msgstr "Saint Helena"

#: lang.pm:400 timezone.pm:252
#, c-format
msgid "Slovenia"
msgstr "Slovenia"

#: lang.pm:401
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "Ynysoedd Svalbard a Jan Mayen"

#: lang.pm:402 mirror.pm:35 timezone.pm:251
#, c-format
msgid "Slovakia"
msgstr "Slofacia"

#: lang.pm:403
#, c-format
msgid "Sierra Leone"
msgstr "Sierra Leone"

#: lang.pm:404
#, c-format
msgid "San Marino"
msgstr "San Marino"

#: lang.pm:405
#, c-format
msgid "Senegal"
msgstr "Senegal"

#: lang.pm:406
#, c-format
msgid "Somalia"
msgstr "Somalia"

#: lang.pm:407
#, c-format
msgid "Suriname"
msgstr "Suriname"

#: lang.pm:408
#, c-format
msgid "Sao Tome and Principe"
msgstr "Sao Tome a Principe"

#: lang.pm:409
#, c-format
msgid "El Salvador"
msgstr "El Salvador"

#: lang.pm:410
#, c-format
msgid "Syria"
msgstr "Syria"

#: lang.pm:411
#, c-format
msgid "Swaziland"
msgstr "Swaziland"

#: lang.pm:412
#, c-format
msgid "Turks and Caicos Islands"
msgstr "Ynysoedd Turks a Caicos"

#: lang.pm:413
#, c-format
msgid "Chad"
msgstr "Chad"

#: lang.pm:414
#, c-format
msgid "French Southern Territories"
msgstr "French Southern Territories"

#: lang.pm:415
#, c-format
msgid "Togo"
msgstr "Togo"

#: lang.pm:416 mirror.pm:41 timezone.pm:224
#, c-format
msgid "Thailand"
msgstr "Gwlad Thail"

#: lang.pm:417
#, c-format
msgid "Tajikistan"
msgstr "Tajikistan"

#: lang.pm:418
#, c-format
msgid "Tokelau"
msgstr "Tokelau"

#: lang.pm:419
#, c-format
msgid "East Timor"
msgstr "Dwyrain Timor"

#: lang.pm:420
#, c-format
msgid "Turkmenistan"
msgstr "Turkmenistan"

#: lang.pm:421
#, c-format
msgid "Tunisia"
msgstr "Tunisia"

#: lang.pm:422
#, c-format
msgid "Tonga"
msgstr "Tonga"

#: lang.pm:423 timezone.pm:225
#, c-format
msgid "Turkey"
msgstr "Twrci"

#: lang.pm:424
#, c-format
msgid "Trinidad and Tobago"
msgstr "Trinidad a Tobago"

#: lang.pm:425
#, c-format
msgid "Tuvalu"
msgstr "Tuvalu"

#: lang.pm:426 mirror.pm:40 timezone.pm:223
#, c-format
msgid "Taiwan"
msgstr "Taiwan"

#: lang.pm:427 timezone.pm:208
#, c-format
msgid "Tanzania"
msgstr "Tanzania"

#: lang.pm:428 timezone.pm:256
#, c-format
msgid "Ukraine"
msgstr "Wcráin"

#: lang.pm:429
#, c-format
msgid "Uganda"
msgstr "Uganda"

#: lang.pm:430
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "United States Minor Outlying Islands"

#: lang.pm:431 mirror.pm:42 timezone.pm:264
#, c-format
msgid "United States"
msgstr "Yr Unol Daleithiau"

#: lang.pm:432
#, c-format
msgid "Uruguay"
msgstr "Uruguay"

#: lang.pm:433
#, c-format
msgid "Uzbekistan"
msgstr "Uzbekistan"

#: lang.pm:434
#, c-format
msgid "Vatican"
msgstr "Fatican"

#: lang.pm:435
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "Saint Vincent a'r Grenadines"

#: lang.pm:436
#, c-format
msgid "Venezuela"
msgstr "Venezuela"

#: lang.pm:437
#, c-format
msgid "Virgin Islands (British)"
msgstr "Virgin Islands (British)"

#: lang.pm:438
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "Virgin Islands (U.S.)"

#: lang.pm:439
#, c-format
msgid "Vietnam"
msgstr "Fietnam"

#: lang.pm:440
#, c-format
msgid "Vanuatu"
msgstr "Vanuatu"

#: lang.pm:441
#, c-format
msgid "Wallis and Futuna"
msgstr "Wallis a Futuna"

#: lang.pm:442
#, c-format
msgid "Samoa"
msgstr "Samoa"

#: lang.pm:443
#, c-format
msgid "Yemen"
msgstr "Yemen"

#: lang.pm:444
#, c-format
msgid "Mayotte"
msgstr "Mayotte"

#: lang.pm:445 mirror.pm:36 timezone.pm:207
#, c-format
msgid "South Africa"
msgstr "De Affrica"

#: lang.pm:446
#, c-format
msgid "Zambia"
msgstr "Zambia"

#: lang.pm:447
#, c-format
msgid "Zimbabwe"
msgstr "Zimbabwe"

#: lang.pm:1208
#, c-format
msgid "Welcome to %s"
msgstr "Croeso i %s"

#: lvm.pm:84
#, c-format
msgid "Moving used physical extents to other physical volumes failed"
msgstr "Methodd symud ystentiau ffisegol i gyfrolau ffisegol eraill"

#: lvm.pm:141
#, c-format
msgid "Physical volume %s is still in use"
msgstr "Cyfrol ffisegol %s yn dal i gael ei defnyddio"

#: lvm.pm:151
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Tynnu'r cyfrolau rhesymegol yn gyntaf\n"

#: lvm.pm:184
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "Nid yw'r cychwynnydd yn gallu trin /boot ar gyfrolau ffisegol niferus"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: messages.pm:10
#, c-format
msgid ""
"Introduction\n"
"\n"
"The operating system and the different components available in the Mandriva "
"Linux distribution \n"
"shall be called the \"Software Products\" hereafter. The Software Products "
"include, but are not \n"
"restricted to, the set of programs, methods, rules and documentation related "
"to the operating \n"
"system and the different components of the Mandriva Linux distribution.\n"
"\n"
"\n"
"1. License Agreement\n"
"\n"
"Please read this document carefully. This document is a license agreement "
"between you and  \n"
"Mandriva S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
"explicitly \n"
"accept and fully agree to conform to the terms and conditions of this "
"License. \n"
"If you disagree with any portion of the License, you are not allowed to "
"install, duplicate or use \n"
"the Software Products. \n"
"Any attempt to install, duplicate or use the Software Products in a manner "
"which does not comply \n"
"with the terms and conditions of this License is void and will terminate "
"your rights under this \n"
"License. Upon termination of the License,  you must immediately destroy all "
"copies of the \n"
"Software Products.\n"
"\n"
"\n"
"2. Limited Warranty\n"
"\n"
"The Software Products and attached documentation are provided \"as is\", "
"with no warranty, to the \n"
"extent permitted by law.\n"
"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
"be liable for any special,\n"
"incidental, direct or indirect damages whatsoever (including without "
"limitation damages for loss of \n"
"business, interruption of business, financial loss, legal fees and penalties "
"resulting from a court \n"
"judgment, or any other consequential loss) arising out of  the use or "
"inability to use the Software \n"
"Products, even if Mandriva S.A. has been advised of the possibility or "
"occurrence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
"COUNTRIES\n"
"\n"
"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
"no circumstances, be \n"
"liable for any special, incidental, direct or indirect damages whatsoever "
"(including without \n"
"limitation damages for loss of business, interruption of business, financial "
"loss, legal fees \n"
"and penalties resulting from a court judgment, or any other consequential "
"loss) arising out \n"
"of the possession and use of software components or arising out of  "
"downloading software components \n"
"from one of Mandriva Linux sites  which are prohibited or restricted in some "
"countries by local laws.\n"
"This limited liability applies to, but is not restricted to, the strong "
"cryptography components \n"
"included in the Software Products.\n"
"\n"
"\n"
"3. The GPL License and Related Licenses\n"
"\n"
"The Software Products consist of components created by different persons or "
"entities.  Most \n"
"of these components are governed under the terms and conditions of the GNU "
"General Public \n"
"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
"licenses allow you to use, \n"
"duplicate, adapt or redistribute the components which they cover. Please "
"read carefully the terms \n"
"and conditions of the license agreement for each component before using any "
"component. Any question \n"
"on a component license should be addressed to the component author and not "
"to Mandriva.\n"
"The programs developed by Mandriva S.A. are governed by the GPL License. "
"Documentation written \n"
"by Mandriva S.A. is governed by a specific license. Please refer to the "
"documentation for \n"
"further details.\n"
"\n"
"\n"
"4. Intellectual Property Rights\n"
"\n"
"All rights to the components of the Software Products belong to their "
"respective authors and are \n"
"protected by intellectual property and copyright laws applicable to software "
"programs.\n"
"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
"as a whole or in \n"
"parts, by all means and for all purposes.\n"
"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
"Mandriva S.A.  \n"
"\n"
"\n"
"5. Governing Laws \n"
"\n"
"If any portion of this agreement is held void, illegal or inapplicable by a "
"court judgment, this \n"
"portion is excluded from this contract. You remain bound by the other "
"applicable sections of the \n"
"agreement.\n"
"The terms and conditions of this License are governed by the Laws of "
"France.\n"
"All disputes on the terms of this license will preferably be settled out of "
"court. As a last \n"
"resort, the dispute will be referred to the appropriate Courts of Law of "
"Paris - France.\n"
"For any question on this document, please contact Mandriva S.A.  \n"
msgstr ""
"Cyflwyniad\n"
"\n"
"Bydd y system weithredu a'r cydrannau gwahanol sydd o fewn dosbarthiad "
"Mandriva Linux yn\n"
"cael eu galw yn \"Gynnyrch Meddalwedd\" o hyn ymlaen. Mae'r Cynnyrch "
"Meddalwedd yn\n"
"cynnwys, ond heb eu cyfyngu, i'r  casgliad o raglenni , dulliau, rheolau a "
"dogfennau mewn\n"
"perthynas â'r system weithredu a chydrannau gwahanol ddosbarthiad Mandriva "
"Linux.\n"
"\n"
"\n"
"1. Cytundeb Trwyddedu\n"
"\n"
"Darllenwch y ddogfen hon yn ofalus. Mae'r ddogfen hon yn gytundeb trwyddedu "
"rhyngoch\n"
"chi â Mandriva S.A,. sy'n berthnasol i'r Cynnyrch Meddalwedd.\n"
"\n"
"Wrth osod, dyblygu neu ddefnyddio'r Cynnyrch Meddalwedd mewn unrhyw fodd, "
"rydych yn\n"
"amlwg yn derbyn ac yn llawn cytuno i gadw at delerau ac amodau'r Drwydded "
"hon.\n"
"Os ydych yn anghytuno ag unrhyw ran o'r cytundeb, ni chewch ganiatâd i osod, "
"dyblygu\n"
"neu ddefnyddio'r Cynnyrch Meddalwedd.\n"
"Bydd unrhyw ymgais i osod, dyblygu neu ddefnyddio'r Cynnyrch Meddalwedd mewn "
"modd\n"
"\n"
"nad yw'n cyd-fynd â thelerau ac amodau'r Drwydded yn ddi-rym a bydd yn "
"terfynu eich\n"
"hawliau o dan y Drwydded hon. Ar ddiwedd y Drwydded, rhaid i chi "
"ddinistrio'n syth pob\n"
"copi o'r Cynnyrch Meddalwedd.\n"
"\n"
"\n"
"2. Gwarant Gyfyngedig\n"
"\n"
"Mae'r Cynnyrch Meddalwedd a'r ddogfennaeth gysylltiedig yn cael eu darparu "
"\"fel ag y maent\",\n"
"heb ddim gwarant,\n"
"hyd y mae'r gyfraith yn caniatáu.\n"
"Ni fydd Mandriva S.A. yn gyfrifol, o dan unrhyw amgylchiad, a chyhyd ag y "
"bydd y gyfraith yn\n"
"caniatáu,  am unrhyw iawn o gwbl,\n"
"arbennig, damweiniol, uniongyrchol neu anuniongyrchol (gan gynnwys heb "
"gyfyngu ar iawndal\n"
"am golli busnes, tarfu ar fusnes, colled ariannol, costau cyfreithiol, a "
"chosb o ganlyniad i achos llys,\n"
"neu unrhyw golled o ganlyniad) yn codi o'r defnydd neu'r anallu i "
"ddefnyddio'r Cynnyrch Meddalwedd,\n"
"hyd yn oed os yw Mandriva wedi eu cynghori o'r posibilrwydd o'r fath iawn.\n"
"\n"
"CYFRIFOLDEB CYFYNGEDIG YN GYSYLLTIEDIG GYDA'R MEDDIANT NEU'R DEFNYDD O "
"FEDDALWEDD\n"
" GWAHARDDEDIG MEWN RHAI GWLEDYDD\n"
"\n"
"Ni fydd Mandriva S.A. yn gyfrifol, o dan unrhyw amgylchiad, a chyhyd y bydd "
"y gyfraith yn caniatáu,\n"
"i fod yn atebol am unrhyw iawn o gwbl, arbennig, damweiniol, uniongyrchol "
"neu anuniongyrchol (gan gynnwys\n"
"heb gyfyngu ar iawndal am golli busnes, tarfu ar fusnes, colled ariannol, "
"costau cyfreithiol, a chosb o ganlyniad\n"
"i achos llys, neu unrhyw golled o ganlyniad) yn codi o lwytho i lawr "
"cydrannau meddalwedd o un o safleoedd\n"
" Mandriva Linux, sydd wedi eu gwahardd neu eu hatal mewn rhai gwledydd gan "
"gyfreithiau lleol. Mae'r\n"
"cyfrifoldeb cyfyngedig hwn yn perthyn i , ond heb ei gyfyngu i'r, cydrannau "
"cryptograffiaeth cryf sy'n cael\n"
"eu cynnwys o fewn y Cynnyrch Meddalwedd.\n"
"\n"
"\n"
"3. Trwydded GPL a Thrwyddedau Cysylltiedig\n"
"\n"
"Mae'r Cynnyrch Meddalwedd yn cynnwys cydrannau sydd wedi eu creu gan "
"bersonau a endidau gwahanol.\n"
"Mae'r rhan fwyaf o'r cydrannau hyn yn cael eu llywodraethu gan dermau ac "
"amodau Trwydded Gyhoeddus\n"
"Cyffredinol (General Public Licence (GPL)), GNU, fydd yn cael ei gyfeirio "
"ato  o hyn ymlaen fel \"GPL\", neu\n"
"drwyddedau cyffelyb. Mae'r rhan fwyaf o'r trwyddedau'n caniatáu i chi "
"ddefnyddio, dyblygu, addasu neu\n"
" ailddosbarthu'r cydrannau maent yn eu cynnwys. Darllenwch delerau ac amodau "
"trwydded pob cydran cyn\n"
"eu defnyddio. Dylai pob cwestiwn am drwydded cydran gael ei ofyn i awdur y "
"gydran ac nid i Mandriva.\n"
"Mae'r rhaglenni a ddatblygwyd gan Mandriva yn cael eu llywodraethu o dan "
"Drwydded GLP. Mae'r dogfennau\n"
" ysgrifennwyd gan Mandriva S.A. yn cael eu llywodraethu gan drwydded "
"benodol. Darllenwch y dogfennau\n"
"am fwy o fanylion.\n"
"\n"
"\n"
"4. Hawliau Eiddo Deallusol\n"
"\n"
"Mae pob hawl cydrannau'r Cynnyrch Meddalwedd yn perthyn i'w hawduron "
"perthnasol ac wedi eu hamddiffyn\n"
"gan gyfreithiau eiddo deallusol a hawlfraint sy'n berthnasol i raglenni "
"meddalwedd. Mae Mandriva yn cadw\n"
"ei hawl i newid neu addasu ei Gynnyrch Meddalwedd, yn rhannol neu yn gyfan, "
"drwy unrhyw ddull ac ar gyfer\n"
"unrhyw bwrpas.\n"
"Mae \"Mandriva\", \"Mandriva Linux\"  a'r logos cysylltiedig yn nodau "
"masnachol sy'n perthyn i Mandriva S.A.\n"
"\n"
"\n"
"5. Cyfreithiau Llywodraethol\n"
"\n"
"Os bydd unrhyw ran o'r cytundeb hwn yn cael ei ddal yn ddi-rym, "
"anghyfreithlon neu amherthnasol gan\n"
"benderfyniad llys, bydd y rhan yma'n cael ei dynnu o'r cytundeb hwn. Byddwch "
"yn parhau i fod yn rhwymedig\n"
"i adrannau cymwys o'r cytundeb.\n"
"Mae telerau ac amodau'r Drwydded hon yn cael eu llywodraethu gan Gyfreithiau "
"Ffrainc. Mae'n ddymunol y\n"
"bydd pob anghytundeb ar amodau'r drwydded yn cael eu datrys y tu allan i'r "
"llys. Fel cam olaf, bydd yr anghytundeb yn cael ei drosglwyddo i'r Llysoedd "
"Barn, Paris - Ffrainc. Am unrhyw gwestiwn ynghylch y ddogfen hon cysylltwch "
"â Mandriva S.A.  \n"

#: messages.pm:90
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
"Software included may be covered by patents in your country. For example, "
"the\n"
"MP3 decoders included may require a licence for further usage (see\n"
"http://www.mp3licensing.com for more details). If you are unsure if a "
"patent\n"
"may be applicable to you, check your local laws."
msgstr ""
"Rhybudd: Mae'n bosibl nad yw Meddalwedd Rhad yn rhydd o batent, ac mae\n"
"peth Meddalwedd Rhad wedi ei gyfyngu â phatent yn eich gwlad, e.e. gall\n"
"amgodwyr MP3 fod angen trwydded ar gyfer defnydd pellach\n"
"(gw. http://www.mp3licensing.com am wybodaeth bellach. Os nad ydych yn\n"
"siŵr os yw'r patent yn berthnasol i chi, gwiriwch eich cyfreithiau lleol."

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: messages.pm:98
#, c-format
msgid ""
"\n"
"Warning\n"
"\n"
"Please read carefully the terms below. If you disagree with any\n"
"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
"to continue the installation without using these media.\n"
"\n"
"\n"
"Some components contained in the next CD media are not governed\n"
"by the GPL License or similar agreements. Each such component is then\n"
"governed by the terms and conditions of its own specific license. \n"
"Please read carefully and comply with such specific licenses before \n"
"you use or redistribute the said components. \n"
"Such licenses will in general prevent the transfer,  duplication \n"
"(except for backup purposes), redistribution, reverse engineering, \n"
"de-assembly, de-compilation or modification of the component. \n"
"Any breach of agreement will immediately terminate your rights under \n"
"the specific license. Unless the specific license terms grant you such\n"
"rights, you usually cannot install the programs on more than one\n"
"system, or adapt it to be used on a network. In doubt, please contact \n"
"directly the distributor or editor of the component. \n"
"Transfer to third parties or copying of such components including the \n"
"documentation is usually forbidden.\n"
"\n"
"\n"
"All rights to the components of the next CD media belong to their \n"
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"
msgstr ""
"\n"
" Rhybudd\n"
"\n"
"Darllenwch yr amodau isod yn ofalus. Os ydych yn anghytuno gydag unrhyw\n"
" ddarn, nid oes caniatâd i chi osod y cyfrwng CD nesaf. Pwyswch 'Gwrthod' i\n"
" barhau'r gosodiad heb ddefnyddio'r cyfryngau hyn.\n"
"\n"
"Nid yw rhai cydrannau ar y CDau canlynol yn cael eu rheoli gan Drwydded GPL\n"
" neu gytundebau tebyg. Mae'r cydrannau hynny'n cael eu rheoli gan dermau ac\n"
" amodau ei drwydded benodol ei hun. Darllenwch yn ofalus a chadwch at y\n"
" trwyddedau penodol cyn defnyddio neu ddosbarthu'r cydrannau hynny.\n"
"\n"
"Mae'r trwyddedau hynny'n atal yn gyffredinol, drosglwyddiad, dyblygu (ar "
"wahan i\n"
" bwrpas cadw wrth gefn), dosbarthu, cildroi peirianyddol, dadcydosod,\n"
" dad-grynhoi neu newid y cydrannau. Bydd unrhyw dorri ar yr amodau hyn yn\n"
"terfynu eich hawl  o dan y drwydded benodol. Oni bai ei fod yn rhoi'r hawl i "
"chi,\n"
"nid oes modd i chi osod y rhaglenni ar fwy nag un system na'i addasu ar "
"gyfer\n"
" defnydd ar rwydwaith. Os oes amheuaeth, cysylltwch yn uniongyrchol â\n"
"dosbarthwr neu olygydd y cydrannau hynny.\n"
"Mae trosglwyddo i drydydd parti neu gopïo'r cydrannau hynny gan gynnwys y\n"
" ddogfennaeth, wedi ei wahardd fel rheol\n"
"\n"
"Mae pob hawl i gydrannau'r cyfrwng CD nesaf yn perthyn i' hawduron "
"perthnasol\n"
" ac maent wedi eu hamddiffyn drwy gyfreithiau eiddo deallusol a hawlfraint "
"sy'n\n"
" berthynol i raglenni meddalwedd.\n"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: messages.pm:131
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press Enter to reboot.\n"
"\n"
"\n"
"For information on fixes which are available for this release of Mandriva "
"Linux,\n"
"consult the Errata available from:\n"
"\n"
"\n"
"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandriva Linux User's Guide."
msgstr ""
"Llongyfarchiadau, mae'r gosod wedi ei gwblhau.\n"
"Tynnwch y cyfrwng cychwyn a chlicio Ailgychwyn.\n"
"\n"
"\n"
"Am wybodaeth am gywiriadau sydd ar gael ar gyfer y rhyddhad hwn o Mandriva "
"Linux,\n"
"cysylltwch â'r atodiad, sydd i'w gael yn:\n"
"\n"
"\n"
"%s\n"
"\n"
"\n"
"Mae gwybodaeth ar ffurfweddu eich system ar gael ym mhenawdau ôl osod\n"
"yr Official Mandriva Linux User's Guide."

#: modules/interactive.pm:19
#, c-format
msgid "This driver has no configuration parameter!"
msgstr "Nid oes gan y gyrrwr baramedrau ffurfweddiad!"

#: modules/interactive.pm:22
#, c-format
msgid "Module configuration"
msgstr "Ffurfweddiad modiwl"

#: modules/interactive.pm:22
#, c-format
msgid "You can configure each parameter of the module here."
msgstr "Mae modd i chi ffurfweddu pob paramedr o'r modiwl yma."

#: modules/interactive.pm:63
#, c-format
msgid "Found %s interfaces"
msgstr "Wedi canfod rhyngwynebau %s"

#: modules/interactive.pm:64
#, c-format
msgid "Do you have another one?"
msgstr "Oes gennych un arall?"

#: modules/interactive.pm:65
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Oes gennych unrhyw ryngwyneb %s?"

#: modules/interactive.pm:71
#, c-format
msgid "See hardware info"
msgstr "Gweler gwybodaeth am galedwedd"

#: modules/interactive.pm:82
#, c-format
msgid "Installing driver for USB controller"
msgstr "Gosod gyrrwr gyfer rheolwr USB"

#: modules/interactive.pm:83
#, c-format
msgid "Installing driver for firewire controller %s"
msgstr "Gosod gyrrwr gyfer rheolwr firewire %s "

#: modules/interactive.pm:84
#, c-format
msgid "Installing driver for hard drive controller %s"
msgstr "Gosod gyrrwr gyfer rheolwr disg caled %s "

#: modules/interactive.pm:85
#, c-format
msgid "Installing driver for ethernet controller %s"
msgstr "Gosod gyrrwr gyfer rheolwr ethernet %s "

#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
#: modules/interactive.pm:96
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Gosod gyrrwr %s ar gyfer cerdyn %s "

#: modules/interactive.pm:110
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
"Gallwch ddarparu ddewisiadau i fodiwl %s.\n"
"Sylwer: wrth greu unrhyw gyfeiriad bydd angen defnyddio rhagddodiad 0x, e.e. "
"'0x123'"

#: modules/interactive.pm:116
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Options are in format ``name=value name2=value2 ...''.\n"
"For instance, ``io=0x300 irq=7''"
msgstr ""
"Gallwch nawr ei ddewis i fodiwl. %s.\n"
"Mae'r dewisiadau yn fformat ``name=value name2=value2 ...''.\n"
"e.e, ``io=0x300 irq=7''"

#: modules/interactive.pm:118
#, c-format
msgid "Module options:"
msgstr "Dewisiadau modiwl:"

#. -PO: the %s is the driver type (scsi, network, sound,...)
#: modules/interactive.pm:131
#, c-format
msgid "Which %s driver should I try?"
msgstr "Pa yrrwr %s ddylwn drio?"

#: modules/interactive.pm:140
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
"properly, although it normally works fine without them. Would you like to "
"specify\n"
"extra options for it or allow the driver to probe your machine for the\n"
"information it needs? Occasionally, probing will hang a computer, but it "
"should\n"
"not cause any damage."
msgstr ""
"Mewn rhai achosion, mae gyrrwr %s angen gwybodaeth ychwanegol i weithio'n\n"
"gywir, er fel rheol mae'n gweithio'n iawn hebddo. Hoffech chi enwi'r "
"dewisiadau\n"
"ychwanegol ar ei gyfer neu adael i'r gyrrwr archwilio'r peiriant am y "
"wybodaeth mae\n"
"ei angen? Weithiau bydd yr archwilio'n atal y peiriant, ond ni ddylai achosi "
"unrhyw\n"
"ddifrod."

#: modules/interactive.pm:144
#, c-format
msgid "Autoprobe"
msgstr "Awtoholi"

#: modules/interactive.pm:144
#, c-format
msgid "Specify options"
msgstr "Enwi dewisiadau"

#: modules/interactive.pm:156
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
"Methodd llwytho modiwl %s\n"
"Hoffech chi drio eto gyda pharamedrau eraill?"

#: partition_table.pm:409
#, c-format
msgid "mount failed: "
msgstr "maethodd y arosod"

#: partition_table.pm:518
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "Nid yw'r rhaniad estynedig yn cael ei gynnal ar y platfform hwn"

#: partition_table.pm:536
#, c-format
msgid ""
"You have a hole in your partition table but I can not use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions."
msgstr ""
"Mae gennych dwll yn nhabl eich rhaniad ond nid wyf yn gallu ei ddefnyddio\n"
"Yr unig ateb yw i symud eich rhaniadau cynradd fel bo'r twll nesaf at y "
"rhaniadau estynedig "

#: partition_table/raw.pm:285
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
"It means writing anything on the disk will end up with random, corrupted "
"data."
msgstr ""
"Mae rhywbeth gwael yn digwydd ar eich disg.\n"
"Mae prawf i fesur ei gyfanrwydd wedi methu. \n"
"Nid oes gwerth ysgrifennu i'r ddisg"

#: pkgs.pm:228 pkgs.pm:231 pkgs.pm:240
#, c-format
msgid "Unused packages removal"
msgstr ""

#: pkgs.pm:228
#, c-format
msgid "Finding unused hardware packages..."
msgstr ""

#: pkgs.pm:231
#, c-format
msgid "Finding unused localization packages..."
msgstr ""

#: pkgs.pm:241
#, c-format
msgid ""
"We have detected that some packages are not needed for your system "
"configuration."
msgstr ""

#: pkgs.pm:242
#, c-format
msgid "We will remove the following packages, unless you choose otherwise:"
msgstr ""

#: pkgs.pm:245 pkgs.pm:246
#, fuzzy, c-format
msgid "Unused hardware support"
msgstr "galluogi cynnal radio"

#: pkgs.pm:249 pkgs.pm:250
#, c-format
msgid "Unused localization"
msgstr ""

#: raid.pm:42
#, c-format
msgid "Can not add a partition to _formatted_ RAID %s"
msgstr "Methu ychwanegu rhaniad to_formatted_RAID%s"

#: raid.pm:157
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Dim digon o raniadau ar gyfer RAID lefel %d\n"

#: scanner.pm:95
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr "Methu creu cyfeiriadur /usr/share/sane/firmware!"

#: scanner.pm:106
#, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr "Methu creu cyswllt /usr/share/sane/%s!"

#: scanner.pm:113
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr "Methu copïo ffeil cadarnwedd %s i /usr/share/sane/firmware!"

#: scanner.pm:120
#, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr "Methu gosod caniatâd ffeiliau cadarnwedd %s!"

#: scanner.pm:200
#, c-format
msgid "Scannerdrake"
msgstr "Scannerdrake"

#: scanner.pm:201
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr "Methu gosod y pecyn sydd ei angen i rannu eich sganiwr(wyr)."

#: scanner.pm:202
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
msgstr "Ni fydd eich sganiwr(wyr) ar gael ar gyfer defnyddwyr anwraidd."

#: security/help.pm:11
#, c-format
msgid "Accept bogus IPv4 error messages."
msgstr "Derbyn negeseuon gwall IPv4 ffug."

#: security/help.pm:13
#, c-format
msgid "Accept broadcasted icmp echo."
msgstr "Derbyn darllediad atsain icmp."

#: security/help.pm:15
#, c-format
msgid "Accept icmp echo."
msgstr "Derbyn atsain icmp"

#: security/help.pm:17
#, c-format
msgid "Allow autologin."
msgstr "Caniatáu awto mewngofnodi."

#. -PO: here "ALL" is a value in a pull-down menu; translate it the same as "ALL" is
#: security/help.pm:21
#, c-format
msgid ""
"If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
"\n"
"If set to \"None\", no issues are allowed.\n"
"\n"
"Else only /etc/issue is allowed."
msgstr ""
"Os yw \"ALL\"yn caniatáu /etc/issue a /etc/issue.net i fodoli.\n"
"\n"
"Os yw wedi ei osod i \"None\", nid oes caniatad i faterion\n"
"\n"
"Dim materion heblaw caniatáu  /etc/issue."

#: security/help.pm:27
#, c-format
msgid "Allow reboot by the console user."
msgstr "Caniatáu ailgychwyn gan ddefnyddiwr y consol."

#: security/help.pm:29
#, c-format
msgid "Allow remote root login."
msgstr "Caniatáu mewngofnodi gwraidd pell"

#: security/help.pm:31
#, c-format
msgid "Allow direct root login."
msgstr "Caniatáu mewngofnodi gwraidd uniongyrchol."

#: security/help.pm:33
#, c-format
msgid ""
"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr "Caniatáu rhestr defnyddwyr ar y system ar reolwyr dangos (kdm a gdm)."

#: security/help.pm:35
#, c-format
msgid ""
"Allow to export display when\n"
"passing from the root account to the other users.\n"
"\n"
"See pam_xauth(8) for more details.'"
msgstr ""
"Caniatáu allforio dangosiad\n"
"wrth basio o gyfrif root i ddefnyddiwr arall.\n"
"\n"
"Gw. pam_xauth(8) a, ragor o fanylion.'"

#: security/help.pm:40
#, c-format
msgid ""
"Allow X connections:\n"
"\n"
"- \"All\" (all connections are allowed),\n"
"\n"
"- \"Local\" (only connection from local machine),\n"
"\n"
"- \"None\" (no connection)."
msgstr ""
"Caniatáu cysylltiadau X.:\n"
"\n"
"- \"All\" (caniatáu pob cysylltiad),\n"
"\n"
"- \"Local\" (dim ond cysylltiadau lleol)\n"
"- \"None\" (dim cysylltiadau)"

#: security/help.pm:48
#, c-format
msgid ""
"The argument specifies if clients are authorized to connect\n"
"to the X server from the network on the tcp port 6000 or not."
msgstr ""
"Mae'r ymresymiad yn pennu os oes gan y defnyddiwr ganiatâd i gysylltu\n"
"gyda'r  gweinydd X porth  tcp 6000 neu beidio."

#. -PO: here "ALL", "Local" and "None" are values in a pull-down menu; translate them the same as they're
#: security/help.pm:53
#, c-format
msgid ""
"Authorize:\n"
"\n"
"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
"set to \"ALL\",\n"
"\n"
"- only local ones if set to \"Local\"\n"
"\n"
"- none if set to \"None\".\n"
"\n"
"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
"(5))."
msgstr ""
"Ymresymiadau: (arg)\n"
"\n"
"- pob gwasanaeth sy'n cael ei reoli gan tcp_wrappers (gw. hosts.deny(5) man "
"page) os wedi ei osod i \"POPETH\",\n"
"\n"
"\n"
" Dim ond rhai lleol os wedi eu gosod i \"LLEOL\"\n"
"\n"
"- dim os wedi eu gosodi i \"None\".\n"
"\n"
" I ganiatáu'r gwasanaethau sydd eu hangen, defnyddiwch /etc/hosts.allow (gw. "
"hosts.allow(5))."

#: security/help.pm:63
#, c-format
msgid ""
"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
"symlink /etc/security/msec/server to point to\n"
"/etc/security/msec/server.<SERVER_LEVEL>.\n"
"\n"
"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
"add a service if it is present in the file during the installation of\n"
"packages."
msgstr ""
"Os yw SERVER_LEVEL (neu SECURE_LEVEL os yn absennol)\n"
"yn fwy na 3  yn /etc/security/msec/security.conf, creu'r symlink /etc/\n"
"security/msec/server i bwyntio at /etc/security/msec/server.\n"
"<SERVER_LEVEL>. \n"
"Mae /etc/security/msec/server yn cael ei ddefnyddio gan chkconfig --add\n"
"at i benderfynu ychwanegu gwasanaeth os yw ar gael yn y\n"
"ffeil wrth osod y pecynnau"

#: security/help.pm:72
#, c-format
msgid ""
"Enable crontab and at for users.\n"
"\n"
"Put allowed users in /etc/cron.allow and /etc/at.allow (see man at(1)\n"
"and crontab(1))."
msgstr ""
"Galluogi/Analluogi crontab ac at ar gyfer defnyddwyr.\n"
"\n"
" Rhoi defnyddwyr â chaniatâd yn /etc/cron.allow a  /etc/at.allow\n"
" (gw. man yn(1) a crontab(1))."

#: security/help.pm:77
#, c-format
msgid "Enable syslog reports to console 12"
msgstr "Galluogi adroddiadau syslog i gonsol 12"

#: security/help.pm:79
#, c-format
msgid ""
"Enable name resolution spoofing protection.  If\n"
"\"%s\" is true, also reports to syslog."
msgstr ""
"Galluogi amddiffyn spwffio datrys enw. Os yw\n"
"\"%s\" yn wir, adrodd i syslog."

#: security/help.pm:80
#, c-format
msgid "Security Alerts:"
msgstr "Rhybuddion Diogelwch:"

#: security/help.pm:82
#, c-format
msgid "Enable IP spoofing protection."
msgstr "Galluogi amddiffyn sbwlio IP"

#: security/help.pm:84
#, c-format
msgid "Enable libsafe if libsafe is found on the system."
msgstr "Galluogi libsafe os yw ar y system."

#: security/help.pm:86
#, c-format
msgid "Enable the logging of IPv4 strange packets."
msgstr "Galluogi mewngofnodi pecynnau anarferol IPv4."

#: security/help.pm:88
#, c-format
msgid "Enable msec hourly security check."
msgstr "Galluogi gwiriad diogelwch msec bob awr."

#: security/help.pm:90
#, c-format
msgid ""
"Enable su only from members of the wheel group. If set to no, allows su from "
"any user."
msgstr ""
"Galluogi su gan aelodau'r grŵp olwyn yn unig. Os wedi ei osod i na, caniatáu "
"su o unrhyw ddefnyddiwr."

#: security/help.pm:92
#, c-format
msgid "Use password to authenticate users."
msgstr "Defnyddio cyfrinair i wirio defnyddwyr."

#: security/help.pm:94
#, c-format
msgid "Activate ethernet cards promiscuity check."
msgstr "Galluogi gwiriad cymysgaredd cardiau ethernet."

#: security/help.pm:96
#, c-format
msgid "Activate daily security check."
msgstr "Galluogi gwiriad diogelwch dyddiol."

#: security/help.pm:98
#, c-format
msgid "Enable sulogin(8) in single user level."
msgstr "Galluogi sulogin(8) mewn defnydd defnyddiwr unigol."

#: security/help.pm:100
#, c-format
msgid "Add the name as an exception to the handling of password aging by msec."
msgstr "Ychwanegu'r enw fel eithriad i drin cyfrinair yn erbyn msec."

#: security/help.pm:102
#, c-format
msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
msgstr ""
"Gosod cyfrinair yn erbyn \"max\" dyddiau ac oedi i newid i \"inactive\"."

#: security/help.pm:104
#, c-format
msgid "Set the password history length to prevent password reuse."
msgstr "Gosod hyd hanes cyfrinair i rwystro ail ddefnyddio'r cyfrinair."

#: security/help.pm:106
#, c-format
msgid ""
"Set the password minimum length and minimum number of digit and minimum "
"number of capitalized letters."
msgstr ""
"Gosod lleiafswm hyd gyfrinair a lleiafswm digidau a lleiafswm llythrennau "
"mawr."

#: security/help.pm:108
#, c-format
msgid "Set the root's file mode creation mask."
msgstr "Gosod creu modd ffeil gwraidd mask."

#: security/help.pm:109
#, c-format
msgid "if set to yes, check open ports."
msgstr "os wedi ei osod i iawn, gwirio pyrth agored."

#: security/help.pm:110
#, c-format
msgid ""
"if set to yes, check for:\n"
"\n"
"- empty passwords,\n"
"\n"
"- no password in /etc/shadow\n"
"\n"
"- for users with the 0 id other than root."
msgstr ""
"os wedi ei osod i iawn,  gwirio am:\n"
"\n"
"-  gyfrinair gwag\n"
"\n"
"- dim cyfrinair yn /etc/shadow\n"
"\n"
"- defnyddwyr eraill gydag enw 0 ar wahân i wraidd."

#: security/help.pm:117
#, c-format
msgid "if set to yes, check permissions of files in the users' home."
msgstr ""
"os wedi ei osod i iawn, gwirio caniatâd ffeiliau yng nghartref y defnyddiwr."

#: security/help.pm:118
#, c-format
msgid "if set to yes, check if the network devices are in promiscuous mode."
msgstr ""
"os wedi ei osod i iawn, gwirio os yw'r dyfeisiau rhwydwaith mewn modd cymysg"

#: security/help.pm:119
#, c-format
msgid "if set to yes, run the daily security checks."
msgstr "os wedi ei osod i iawn, rhedeg y gwiriadau diogelwch dyddiol."

#: security/help.pm:120
#, c-format
msgid "if set to yes, check additions/removals of sgid files."
msgstr "os wedi ei osod i iawn, gwirio ychwanegiadau/tynnu ffeiliau sgid."

#: security/help.pm:121
#, c-format
msgid "if set to yes, check empty password in /etc/shadow."
msgstr "os wedi ei osod i iawn, gwirio cyfrinair gwag y  /etc/shadow."

#: security/help.pm:122
#, c-format
msgid "if set to yes, verify checksum of the suid/sgid files."
msgstr "os wedi ei osod i iawn, gwirio checksum y ffeiliau suid/sgid."

#: security/help.pm:123
#, c-format
msgid "if set to yes, check additions/removals of suid root files."
msgstr ""
"os wedi ei osod i iawn, , gwirio ychwanegu/tynnu ffeiliau gwraidd suid."

#: security/help.pm:124
#, c-format
msgid "if set to yes, report unowned files."
msgstr "os wedi ei osod i iawn, adrodd ar ffeiliau heb berchennog."

#: security/help.pm:125
#, c-format
msgid "if set to yes, check files/directories writable by everybody."
msgstr ""
"os wedi ei osod i iawn, gwirio ffeiliau/cyfeiriaduron ysgrifennadwy gan bawb."

#: security/help.pm:126
#, c-format
msgid "if set to yes, run chkrootkit checks."
msgstr "os wedi ei osod i iawn,  gwirio gyda chkrootkit."

#: security/help.pm:127
#, c-format
msgid ""
"if set, send the mail report to this email address else send it to root."
msgstr ""
"os wedi ei osod, anfon yr adroddiad e-bost i'r cyfeiriad e-bost neu ei anfon "
"i'r gwraidd."

#: security/help.pm:128
#, c-format
msgid "if set to yes, report check result by mail."
msgstr "os wedi ei osod i iawn, adrodd y gwirio drwy e-bost."

#: security/help.pm:129
#, c-format
msgid "Do not send mails if there's nothing to warn about"
msgstr "Peidio anfon e-byst os nad oes dim i rybuddio amdano"

#: security/help.pm:130
#, c-format
msgid "if set to yes, run some checks against the rpm database."
msgstr "os wedi ei osod i iawn,  gwirio yn erbyn y gronfa ddata rpm."

#: security/help.pm:131
#, c-format
msgid "if set to yes, report check result to syslog."
msgstr "os wedi ei osod i iawn, adrodd y gwirio i syslog."

#: security/help.pm:132
#, c-format
msgid "if set to yes, reports check result to tty."
msgstr "os wedi ei osod i iawn, adrodd adroddiadau gwirio i tty."

#: security/help.pm:134
#, c-format
msgid "Set shell commands history size. A value of -1 means unlimited."
msgstr "Gosod maint hanes gorchymyn cragen. Gwerth -1 yn golygu diderfyn."

#: security/help.pm:136
#, c-format
msgid "Set the shell timeout. A value of zero means no timeout."
msgstr "Gosod amser allan y gragen. Gwerth sero'n golygu dim amser allan."

#: security/help.pm:136
#, c-format
msgid "Timeout unit is second"
msgstr "Enwi enw'r ail uned."

#: security/help.pm:138
#, c-format
msgid "Set the user's file mode creation mask."
msgstr "Gosod creu modd ffeil masg y defnyddiwr."

#: security/l10n.pm:11
#, c-format
msgid "Accept bogus IPv4 error messages"
msgstr "Derbyn negeseuon gwall IPv4 ffug."

#: security/l10n.pm:12
#, c-format
msgid "Accept broadcasted icmp echo"
msgstr "Derbyn darllediad atsain icmp"

#: security/l10n.pm:13
#, c-format
msgid "Accept icmp echo"
msgstr "Derbyn atsain icmp"

#: security/l10n.pm:15
#, c-format
msgid "/etc/issue* exist"
msgstr "/etc/issue* yn bodoli"

#: security/l10n.pm:16
#, c-format
msgid "Reboot by the console user"
msgstr "Tarfu ar y broses gan y defnyddiwr"

#: security/l10n.pm:17
#, c-format
msgid "Allow remote root login"
msgstr "Caniatáu mewngofnodi gwraidd pell"

#: security/l10n.pm:18
#, c-format
msgid "Direct root login"
msgstr "Mewngofnodi gwraidd uniongyrchol"

#: security/l10n.pm:19
#, c-format
msgid "List users on display managers (kdm and gdm)"
msgstr "Rhestru defnyddwyr ar reolwyr dangos (kdm and gdm)."

#: security/l10n.pm:20
#, c-format
msgid "Export display when passing from root to the other users"
msgstr "Allforio dangosiad wrth basio o root i ddefnyddwyr eraill"

#: security/l10n.pm:21
#, c-format
msgid "Allow X Window connections"
msgstr "Caniatáu cysylltiadau XWindows"

#: security/l10n.pm:22
#, c-format
msgid "Authorize TCP connections to X Window"
msgstr "Caniatáu cysylltiad TCP i XWindows"

#: security/l10n.pm:23
#, c-format
msgid "Authorize all services controlled by tcp_wrappers"
msgstr "Awdurdodi pob gwasanaeth wedi ei reoli gan tcp_wrappers"

#: security/l10n.pm:24
#, c-format
msgid "Chkconfig obey msec rules"
msgstr "Chkconfig yn ufudd i reolau msec"

#: security/l10n.pm:25
#, c-format
msgid "Enable \"crontab\" and \"at\" for users"
msgstr "Galluogi \"crontab\" a \"at\" ar gyfer defnyddwyr"

#: security/l10n.pm:26
#, c-format
msgid "Syslog reports to console 12"
msgstr "Adroddiad syslog i gonsol 12"

#: security/l10n.pm:27
#, c-format
msgid "Name resolution spoofing protection"
msgstr "Amddiffyniad ffugio cydraniad enw"

#: security/l10n.pm:28
#, c-format
msgid "Enable IP spoofing protection"
msgstr "Galluogi amddiffyn sbwlio IP"

#: security/l10n.pm:29
#, c-format
msgid "Enable libsafe if libsafe is found on the system"
msgstr "Galluogi/Analluogi libsafe os yw ar y system."

#: security/l10n.pm:30
#, c-format
msgid "Enable the logging of IPv4 strange packets"
msgstr "Galluogi mewngofnodi pecynnau anarferol IPv4."

#: security/l10n.pm:31
#, c-format
msgid "Enable msec hourly security check"
msgstr "Galluogi/Analluogi gwiriad diogelwch msec bob awr."

#: security/l10n.pm:32
#, c-format
msgid "Enable su only from the wheel group members"
msgstr "Galluogi su o aelodau grŵp olwyn yn unig."

#: security/l10n.pm:33
#, c-format
msgid "Use password to authenticate users"
msgstr "Defnyddio cyfrinair i wirio defnyddiwr."

#: security/l10n.pm:34
#, c-format
msgid "Ethernet cards promiscuity check"
msgstr "Gwiriad cymysgaredd cardiau ethernet."

#: security/l10n.pm:35
#, c-format
msgid "Daily security check"
msgstr "Gwiriad diogelwch dyddiol"

#: security/l10n.pm:36
#, c-format
msgid "Sulogin(8) in single user level"
msgstr "Sulogin(8 ar lefel defnyddiwr unigol."

#: security/l10n.pm:37
#, c-format
msgid "No password aging for"
msgstr "Dim cyfrinair eto ar gyfer"

#: security/l10n.pm:38
#, c-format
msgid "Set password expiration and account inactivation delays"
msgstr "Gosod terfyn cyfrinair ac oediad anactifiad cyfrif"

#: security/l10n.pm:39
#, c-format
msgid "Password history length"
msgstr "Hyd gyfrinair hanes"

#: security/l10n.pm:40
#, c-format
msgid "Password minimum length and number of digits and upcase letters"
msgstr "Hyd byrraf cyfrinair a'r nifer o rifau a llythrennau mawr"

#: security/l10n.pm:41
#, c-format
msgid "Root umask"
msgstr "umask gwraidd"

#: security/l10n.pm:42
#, c-format
msgid "Shell history size"
msgstr "Maint hanes cragen"

#: security/l10n.pm:43
#, c-format
msgid "Shell timeout"
msgstr "Goramser cragen"

#: security/l10n.pm:44
#, c-format
msgid "User umask"
msgstr "Masc defnyddwyr"

#: security/l10n.pm:45
#, c-format
msgid "Check open ports"
msgstr "Gwirio pyrth agored"

#: security/l10n.pm:46
#, c-format
msgid "Check for unsecured accounts"
msgstr "Gwiriwch am gyfrifon anniogel."

#: security/l10n.pm:47
#, c-format
msgid "Check permissions of files in the users' home"
msgstr "Gwirio caniatâd ffeiliau yng nghartref y defnyddiwr."

#: security/l10n.pm:48
#, c-format
msgid "Check if the network devices are in promiscuous mode"
msgstr "Gwirio os yw'r dyfeisiau rhwydwaith mewn modd cymysgaredd"

#: security/l10n.pm:49
#, c-format
msgid "Run the daily security checks"
msgstr "Rhedeg y gwiriadau diogelwch dyddiol."

#: security/l10n.pm:50
#, c-format
msgid "Check additions/removals of sgid files"
msgstr "Gwirio ychwanegiadau/tynnu ffeiliau sgid."

#: security/l10n.pm:51
#, c-format
msgid "Check empty password in /etc/shadow"
msgstr "Gwiriwch gyfrinair gwag y  /etc/shadow."

#: security/l10n.pm:52
#, c-format
msgid "Verify checksum of the suid/sgid files"
msgstr "Gwirio checksum y ffeiliau suid/sgid."

#: security/l10n.pm:53
#, c-format
msgid "Check additions/removals of suid root files"
msgstr "Gwirio ychwanegu/tynnu ffeiliau gwraidd suid."

#: security/l10n.pm:54
#, c-format
msgid "Report unowned files"
msgstr "Adrodd ar ffeiliau heb berchennog."

#: security/l10n.pm:55
#, c-format
msgid "Check files/directories writable by everybody"
msgstr "Gwirio ffeiliau/cyfeiriaduron ysgrifennadwy gan bawb."

#: security/l10n.pm:56
#, c-format
msgid "Run chkrootkit checks"
msgstr "Rhedeg gwirio gyda chkrootkit."

#: security/l10n.pm:57
#, c-format
msgid "Do not send empty mail reports"
msgstr "Peidiwch anfon adroddiadau e-bost gwag"

#: security/l10n.pm:58
#, c-format
msgid "If set, send the mail report to this email address else send it to root"
msgstr ""
"Os wedi ei osod, anfon yr adroddiad e-bost i'r cyfeiriad e-bost neu ei anfon "
"i'r gwraidd."

#: security/l10n.pm:59
#, c-format
msgid "Report check result by mail"
msgstr "Adrodd y gwirio drwy e-bost"

#: security/l10n.pm:60
#, c-format
msgid "Run some checks against the rpm database"
msgstr "Gwirio yn erbyn y gronfa ddata rpm."

#: security/l10n.pm:61
#, c-format
msgid "Report check result to syslog"
msgstr "Adrodd y gwirio i syslog."

#: security/l10n.pm:62
#, c-format
msgid "Reports check result to tty"
msgstr "Adrodd adroddiadau gwirio i tty."

#: security/level.pm:10
#, c-format
msgid "Welcome To Crackers"
msgstr "Croeso i Crackers"

#: security/level.pm:11
#, c-format
msgid "Poor"
msgstr "Gwael"

#: security/level.pm:12
#, c-format
msgid "Standard"
msgstr "Safonol"

#: security/level.pm:13
#, c-format
msgid "High"
msgstr "Uchel"

#: security/level.pm:14
#, c-format
msgid "Higher"
msgstr "Uwch"

#: security/level.pm:15
#, c-format
msgid "Paranoid"
msgstr "Paranoia"

#: security/level.pm:41
#, c-format
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive. It must not be used for a machine connected to others\n"
"or to the Internet. There is no password access."
msgstr ""
"Rhaid defnyddio'r lefel hwn gyda gofal. Mae'n gwneud eich system yn haws ei\n"
"ddefnyddio ond mae'n sensitif iawn: rhaid peidio defnyddio'r peiriant i'w\n"
"gysylltu ag eraill nag i'r Rhyngrwyd. Does dim cysylltiad drwy gyfrinair."

#: security/level.pm:44
#, c-format
msgid ""
"Passwords are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"Mae'r cyfrinair wedi ei alluogi, ond ni argymhellir ei ddefnyddio fel "
"cyfrifiadur rhwydwaith."

#: security/level.pm:45
#, c-format
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
"Dyma'r safon sy'n cael ei argymell ar gyfer diogelwch cyfrifiadur fydd yn "
"cael ei gysylltu â'r Rhyngrwyd fel cleient."

#: security/level.pm:46
#, c-format
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
"Mae rhai cyfyngiadau, ac mae rhagor o wiriadau awtomatig yn cael eu rhedeg "
"bob nos"

#: security/level.pm:47
#, c-format
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
"The security is now high enough to use the system as a server which can "
"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
"Internet, you should choose a lower level."
msgstr ""
"Gyda'r lefel diogelwch hwn, mae defnydd y system fel gweinydd yn bosibl.\n"
"Mae diogelwch yn ddigon uchel i ddefnyddio'r system fel gweinydd sy'n "
"derbyn\n"
"cysylltiad gan amryw o gleientiaid. Sylwer: os mae i gleient yn unig yw eich "
"peiriant ar y Rhyngrwyd, yna mae'n well i chi ddewis lefel is."

#: security/level.pm:50
#, c-format
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
msgstr ""
"Wedi ei seilio ar y lefel flaenorol, ond mae'r system yn hollol gaeedig ac "
"mae nodweddion diogelwch ar eu uchaf."

#: security/level.pm:55
#, c-format
msgid "Security"
msgstr "Diogelwch"

#: security/level.pm:55
#, c-format
msgid "DrakSec Basic Options"
msgstr "Dewisiadau Sylfaenol DrakSec"

#: security/level.pm:58
#, c-format
msgid "Please choose the desired security level"
msgstr "Dewiswch lefel diogelwch"

#. -PO: this string is used to properly format "<security level>: <level description>"
#: security/level.pm:62
#, c-format
msgid "%s: %s"
msgstr ""

#: security/level.pm:66
#, c-format
msgid "Use libsafe for servers"
msgstr "Defnyddiwch libsafe ar gyfer gweinyddion"

#: security/level.pm:67
#, c-format
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Llyfrgell sy'n diogelu rhag gorlif byffer ac ymosodiadau llinellau fformatio."

#: security/level.pm:68
#, c-format
msgid "Security Administrator:"
msgstr "Gweinyddwr Diogelwch:"

#: security/level.pm:69
#, c-format
msgid "Login or email:"
msgstr ""

#: services.pm:19
#, c-format
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Cychwynnwch system sain ALSA (Pensaernïaeth Sain Linux Uwch)"

#: services.pm:20
#, c-format
msgid "Anacron is a periodic command scheduler."
msgstr "Anacron trefnydd gorchymyn cyfnodol."

#: services.pm:21
#, c-format
msgid ""
"apmd is used for monitoring battery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
msgstr ""
"Mae apmd yn cael ei ddefnyddio i fonitro statws y batri a mewngofnodi drwy\n"
"syslog. Mae modd ei ddefnyddio i gau'r peiriant pan mae'r batri'n isel."

#: services.pm:23
#, c-format
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
msgstr ""
"Mae'n rhedeg gorchmynion wedi eu trefnu gan y gorchymyn at ar amser wedi \n"
"ei bennu pan oedd at yn rhedeg, gan redeg gorchmynion swp pan fydd \n"
"cyfartaledd y llwyth yn ddigon isel."

#: services.pm:25
#, c-format
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
"basic\n"
"UNIX cron, including better security and more powerful configuration options."
msgstr ""
"Mae cron yn rhaglen safonol yn UNIX sy'n rhedeg rhaglenni sydd wedi eu \n"
"pennu gan y defnyddiwr ar adegau penodol. Mae vixie cron yn ychwanegu \n"
"nifer o ychwanegiadau i'r UNIX cron sylfaenol, yn cynnwys gwell diogelwch \n"
"a dewisiadau ffurfweddu mwy pwerus."

#: services.pm:28
#, c-format
msgid ""
"Common UNIX Printing System (CUPS) is an advanced printer spooling system"
msgstr "System sbwlio argraffu uwch yw'r Common UNIX Printing System (CUPS)"

#: services.pm:29
#, c-format
msgid "Launches the graphical display manager"
msgstr "Cychwyn y rheolwr dangosydd graffigol"

#: services.pm:30
#, c-format
msgid ""
"FAM is a file monitoring daemon. It is used to get reports when files "
"change.\n"
"It is used by GNOME and KDE"
msgstr ""
"Mae FAM yn ddaemon monitro ffeiliau. Mae'n cael ei ddefnyddio i adrodd pan "
"fo ffeiliau'n newid.\n"
"Mae'n cael ei ddefnyddio gan GNOME a KDE"

#: services.pm:32
#, c-format
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
"operations,\n"
"and includes support for pop-up menus on the console."
msgstr ""
"Mae GPM yn ychwanegu cefnogaeth ar gyfer llygoden i raglenni testun Linux \n"
"megis, Midnight Commander. Mae hefyd yn caniatáu gweithrediadau torri a \n"
"gludo consol llygoden, gan gynnwys cefnogaeth ar gyfer bryslenni yn y "
"consol. "

#: services.pm:35
#, c-format
msgid "HAL is a daemon that collects and maintains information about hardware"
msgstr " HAL - daemon sy'n casglu a chynnal gwybodaeth am galedwedd"

#: services.pm:36
#, c-format
msgid ""
"HardDrake runs a hardware probe, and optionally configures\n"
"new/changed hardware."
msgstr ""
"Mae HardDrake yn rhedeg archwiliwr caledwedd, a gall yn ôl \n"
"eich dewis, ffurfweddu caledwedd newydd neu sydd wedi newid."

#: services.pm:38
#, c-format
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
"Mae Apache yn weinydd y We Fyd Eang. Mae'n cael ei ddefnyddio i wasanaethu "
"ffeiliau HTML a CGI."

#: services.pm:39
#, c-format
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
"starting\n"
"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
"disables\n"
"all of the services it is responsible for."
msgstr ""
"Mae daemon uwchwasanaethwr rhyngrwyd (inetd) yn cychwyn nifer\n"
"o wasanaethau rhyngrwyd eraill, yn ôl y galw. Mae'n gyfrifol am gychwyn\n"
"nifer o wasanaethau, gan gynnwys telnet, ftp, rsh a rlogin. Mae analluogi \n"
"inetd yn analluogi'r holl wasanaethau mae'n gyfrifol amdanynt."

#: services.pm:43
#, c-format
msgid ""
"Launch packet filtering for Linux kernel 2.2 series, to set\n"
"up a firewall to protect your machine from network attacks."
msgstr ""
"Cychwyn hidlydd pecynnau ar gyfer cnewyllyn cyfres Linux 2.2 \n"
"i greu mur gwarchod i amddiffyn eich peiriant rhag ymosodiadau \n"
"o'r rhwydwaith."

#: services.pm:45
#, c-format
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard.  This can be selected using the kbdconfig utility.\n"
"You should leave this enabled for most machines."
msgstr ""
"Mae'r pecyn hwn yn llwytho'r map bysellfwrdd rydych wedi \n"
"ei ddewis fel yn /etc/sysconfig/keyboard. Mae modd dewis \n"
"hwn wrth ddefnyddio'r rhaglen wasanaethu kbdconfig. \n"
"Dylech adael hwn wedi ei alluogi ar gyfer y rhan fwyaf o beiriannau."

#: services.pm:48
#, c-format
msgid ""
"Automatic regeneration of kernel header in /boot for\n"
"/usr/include/linux/{autoconf,version}.h"
msgstr ""
"Ail-greu awtomatig pennawd y cnewyllyn yn /boot ar\n"
"gyfer /usr/include/linux{autoconf,version}.h"

#: services.pm:50
#, c-format
msgid "Automatic detection and configuration of hardware at boot."
msgstr "Canfod a ffurfweddu awtomatig caledwedd wrth gychwyn y cyfrifiadur."

#: services.pm:51
#, c-format
msgid ""
"Linuxconf will sometimes arrange to perform various tasks\n"
"at boot-time to maintain the system configuration."
msgstr "Bydd Linuxconf yn trefnu ar adegau i gyflawni amrywiol"

#: services.pm:53
#, c-format
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
"Mae lpd yn ddaemon argraffu sy'n angenrheidiol i lpr weithio\n"
"Mae'n weinydd sy'n cyflafareddu gwaith argraffu i\n"
"argraffydd (ion)."

#: services.pm:55
#, c-format
msgid ""
"Linux Virtual Server, used to build a high-performance and highly\n"
"available server."
msgstr ""
"Mae Gweinydd Rhith Linux yn cael ei ddefnyddio i adeiladu \n"
"gweinyddion cyflym a chyraeddadwy."

#: services.pm:57
#, c-format
msgid ""
"DBUS is a daemon which broadcasts notifications of system events and other "
"messages"
msgstr ""
"DBUS -daemon sy'n hysbysu'r sytem am ddigwyddiadau system a negeseuon eraill"

#: services.pm:58
#, c-format
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
msgstr ""
"mae'r enwyd (BIND) yn Wasanaethwr Enw Parth (DNS) sy'n cael ei ddefnyddio i "
"gydrannu enwau gwestai i'r cyfeiriadau IP."

#: services.pm:59
#, c-format
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
"Yn arosod a dadarosod pob System Ffeil y Rhwydwaith (NFS), SMB\n"
"(Rheolwr Rhwydwaith/Windows), a phwyntiau arosod NCP (NetWare) ."

#: services.pm:61
#, c-format
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr ""
"Cychwyn/Gorffen pob rhyngwyneb rhwydwaith sydd wedi eu \n"
"ffurfweddu i gychwyn wrth gychwyn y peiriant."

#: services.pm:63
#, c-format
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
"/etc/exports file."
msgstr ""
"Mae NFS yn brotocol poblogaidd ar gyfer rhannu ffeiliau ar draws "
"rhwydweithiau TCP/IP.\n"
"Mae'r gwasanaeth yn darparu  ffwythiannaeth gweinydd NFS, sy;n cael ei "
"ffurfweddu\n"
"drwy'r ffeil  /etc/exports."

#: services.pm:66
#, c-format
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
msgstr ""
"Mae NFS yn brotocol poblogaidd ar gyfer rhannu ffeiliau \n"
"ar draws rhwydweithiau TCP/IP. Mae'r gwasanaeth hwn \n"
"yn darparu'r gallu i gloi ffeiliau NFS."

#: services.pm:68
#, c-format
msgid "Synchronizes system time using the Network Time Protocol (NTP)"
msgstr "Cydweddu amser system gan ddefnyddio Protocol Amser Rhwydwaith (NTP)"

#: services.pm:69
#, c-format
msgid ""
"Automatically switch on numlock key locker under console\n"
"and Xorg at boot."
msgstr ""
"Cychwyn clo allweddell numlock yn awtomatig yn consol \n"
"ac Xorg wrth gychwyn y peiriant."

#: services.pm:71
#, c-format
msgid "Support the OKI 4w and compatible winprinters."
msgstr "Cynnal OKI 4w ac argraffyddion Windows cyffelyb."

#: services.pm:72
#, c-format
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops.  It will not get started unless configured so it is safe "
"to have\n"
"it installed on machines that do not need it."
msgstr ""
"Mae cynhaliaeth PCMICA fel rheol ar gyfer cynnal pethau fel \n"
"ethernet a modem mewn gliniadur. Ni fydd yn cychwyn heb ei \n"
"ffurfweddu i wneud hynny, felly mae'n ddiogel ei gael ar beiriannau \n"
"sydd ddim ei angen."

#: services.pm:75
#, c-format
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
"machines\n"
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
"Mae'r mapiwr porth (portmapper) yn rheoli cysylltiadau RPC, \n"
"sy'n cael eu defnyddio gan brotocolau fel NFS a NIS. Rhaid i weinydd "
"porthmap\n"
"redeg ar beiriannau sy'n gweithredu fel gweinyddion ar gyfer protocolau "
"sy'n\n"
"gwneud defnydd o fecanwaith RPC."

#: services.pm:78
#, c-format
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
msgstr ""
"Mae Postfix yn Asiant Cludo E-bost (MTA), sef rhaglen sy'n symud e-bost o un "
"peiriant i'r llall."

#: services.pm:79
#, c-format
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr ""
"Bydd yn cadw ac adfer system pwll entropi ar gyfer cynhyrchu rhif \n"
"hap o ansawdd uchel."

#: services.pm:81
#, c-format
msgid ""
"Assign raw devices to block devices (such as hard drive\n"
"partitions), for the use of applications such as Oracle or DVD players"
msgstr ""
"Dynodi dyfeisiau bras i ddyfeisiau bloc (megis dig caled rhaniadau), \n"
"ar gyfer defnydd rhaglenni megis Oracle neu chwaraewyr DVD."

#: services.pm:83
#, c-format
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
"routing protocols are needed for complex networks."
msgstr ""
"Mae'r daemon llwybrydd yn caniatáu i'r tabl llwybrydd IP awtomatig \n"
"ddiweddaru drwy gyfrwng y protocol RIP. Tra bo RIP'n cael ei \n"
"ddefnyddio'n eang ar rwydweithiau bach, mae angen protocolau \n"
"llwybrydd mwy cymhleth ar gyfer rhwydweithiau cymhleth."

#: services.pm:86
#, c-format
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
msgstr ""
"Mae'r protocol rstat yn caniatáu i ddefnyddwyr rhwydwaith \n"
"i adennill metric perfformaid unrhyw beiriant ar y rhwydwaith."

#: services.pm:88
#, c-format
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
msgstr ""
"Mae protocol ruser yn caniatáu i ddefnyddwyr ar rwydwaith i adnabod\n"
"pwy arall sydd wedi mewngofnodi ar beiriannau eraill sy'n ymateb."

#: services.pm:90
#, c-format
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similar to finger)."
msgstr ""
"Mae'r protocol rwho'n caniatáu i ddefnyddwyr pell gael rhestr o'r \n"
"holl ddefnyddwyr sydd wedi mewngofnodi ar beiriant sy'n rhedeg \n"
"daemon rwho (yn debyg i fysedd)."

#: services.pm:92
#, c-format
msgid ""
"SANE (Scanner Access Now Easy) enables to access scanners, video cameras, ..."
msgstr ""
"SANE (Scanner Access Now Easy) - galluogi mynediad i sganwyr, camerau "
"fideo..."

#: services.pm:93
#, c-format
msgid ""
"The SMB/CIFS protocol enables to share access to files & printers and also "
"integrates with a Windows Server domain"
msgstr ""
"Protocol SMB/CIFS - caniatau rhannu mynediad i ffeiliau ac argraffwyr ac "
"yhefyd yn intigreiddio gyda parth Windows Server"

#: services.pm:94
#, c-format
msgid "Launch the sound system on your machine"
msgstr "Cychwyn y system sain ar eich peiriant"

#: services.pm:95
#, c-format
msgid ""
"Secure Shell is a network protocol that allows data to be exchanged over a "
"secure channel between two computers"
msgstr ""
"Secure Shell - protocol rhwydwaith sy'n caniatâu u ddata gael ei gyfnewid "
"dros sianel ddiogel rhwng dau gyfrifiadur"

#: services.pm:96
#, c-format
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files.  It is a good idea to always run syslog."
msgstr ""
"Syslog yw'r modd mae llawer o daemonau'n defnyddio i gofnodi \n"
"negeseuon i ffeiliau cofnod systemau. mae'n syniad da io rhedeg \n"
"syslog  bob tro."

#: services.pm:98
#, c-format
msgid "Load the drivers for your usb devices."
msgstr "Llwytho'r gyrwyr ar gyfer eich dyfeisiau usb."

#: services.pm:99
#, c-format
msgid "Starts the X Font Server."
msgstr "Cychwyn Gweinydd Ffont X"

#: services.pm:100
#, c-format
msgid "Starts other deamons on demand."
msgstr "Cychwyn daemon ar alw"

#: services.pm:123
#, c-format
msgid "Printing"
msgstr "Argraffu"

#: services.pm:124
#, c-format
msgid "Internet"
msgstr "Rhyngrwyd"

#: services.pm:127
#, c-format
msgid "File sharing"
msgstr "Rhannu Ffeiliau"

#: services.pm:129
#, c-format
msgid "System"
msgstr "System"

#: services.pm:134
#, c-format
msgid "Remote Administration"
msgstr "Gweinyddu Pell"

#: services.pm:142
#, c-format
msgid "Database Server"
msgstr "Gweinydd Cronfa Ddata"

#: services.pm:153 services.pm:189
#, c-format
msgid "Services"
msgstr "Gwasanaethau"

#: services.pm:153
#, c-format
msgid "Choose which services should be automatically started at boot time"
msgstr ""
"Dewiswch ba wasanaethau ddylai gael eu cychwyn yn awtomatig wrth gychwyn y "
"cyfrifiadur"

#: services.pm:171
#, c-format
msgid "Services: %d activated for %d registered"
msgstr "Gwasanaethau: %d wedi eu cychwyn ar gyfer %d wedi eu cofrestru"

#: services.pm:205
#, c-format
msgid "running"
msgstr "rhedeg"

#: services.pm:205
#, c-format
msgid "stopped"
msgstr "ataliwyd"

#: services.pm:210
#, c-format
msgid "Services and daemons"
msgstr "Gwasanaethau a daemonau"

#: services.pm:216
#, c-format
msgid ""
"No additional information\n"
"about this service, sorry."
msgstr "Dim gwybodaeth ychwanegol am y gwasanaeth hwn."

#: services.pm:221 ugtk2.pm:923
#, c-format
msgid "Info"
msgstr "Gwybodaeth"

#: services.pm:224
#, c-format
msgid "Start when requested"
msgstr "Cychwyn yn ôl y gofyn"

#: services.pm:224
#, c-format
msgid "On boot"
msgstr "Cychwyn"

#: services.pm:242
#, c-format
msgid "Start"
msgstr "Cychwyn"

#: services.pm:242
#, c-format
msgid "Stop"
msgstr "Aros"

#: standalone.pm:25
#, c-format
msgid ""
"This program is free software; you can redistribute it and/or modify\n"
"it under the terms of the GNU General Public License as published by\n"
"the Free Software Foundation; either version 2, or (at your option)\n"
"any later version.\n"
"\n"
"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
"GNU General Public License for more details.\n"
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
"USA.\n"
msgstr ""
"Mae'r rhaglen hon yn feddalwedd rhydd; gallwch ei ailddosbarthu\n"
"a/neu ei newid o dan amodau Trwydded Gyhoeddus Gyffredinol GNU\n"
"fel sydd wedi ei gyhoeddi gan y Free Software Foundation; un ai fersiwn\n"
"2 neu (yn ôl eich dewis) unrhyw fersiwn diweddarach.\n"
"\n"
" Mae'r rhaglen yn cael ei ddosbarthu yn y gobaith y bydd yn ddefnyddiol,\n"
" ond HEB UNRHYW WARANT; heb hyd yn oed awgrym o warant o\n"
" FASNACHEIDDRWYDD nag ADDASRWYDD AR GYFER PWRPAS\n"
" PENODOL. Gweler Trwydded Gyhoeddus Gyffredinol GNU am fwy o\n"
" wybodaeth.\n"
"\n"
" Dylech fod wedi derbyn copi o Drwydded Gyhoeddus Gyffredinol GNU\n"
" gyda'r rhaglen; os nad, ysgrifennwch at:\n"
" Free Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-"
"1301, USA.\n"

#: standalone.pm:44
#, c-format
msgid ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
"Backup and Restore application\n"
"\n"
"--default             : save default directories.\n"
"--debug               : show all debug messages.\n"
"--show-conf           : list of files or directories to backup.\n"
"--config-info         : explain configuration file options (for non-X "
"users).\n"
"--daemon              : use daemon configuration. \n"
"--help                : show this message.\n"
"--version             : show version number.\n"
msgstr ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
"Backup and Restore application\n"
"\n"
"--default             : save default directories.\n"
"--debug               : show all debug messages.\n"
"--show-conf           : list of files or directories to backup.\n"
"--config-info         : explain configuration file options (for non-X "
"users).\n"
"--daemon              : use daemon configuration. \n"
"--help                : show this message.\n"
"--version             : show version number.\n"

#: standalone.pm:56
#, c-format
msgid ""
"[--boot] [--splash]\n"
"OPTIONS:\n"
"  --boot            - enable to configure boot loader\n"
"  --splash          - enable to configure boot theme\n"
"default mode: offer to configure autologin feature"
msgstr ""
"[--boot] [--splash]\n"
"OPTIONS:\n"
"  --boot            - galluogi i ffurfweddu'r cychwynnwr\n"
"  --splash          - galluogi i ffurfweddu thema cychwyn\n"
"Modd rhag.:cynnig ffurfweddu nodwedd awto fewngofnodi"

#: standalone.pm:61
#, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
"\n"
"OPTIONS:\n"
"  --help            - print this help message.\n"
"  --report          - program should be one of Mandriva Linux tools\n"
"  --incident        - program should be one of Mandriva Linux tools"
msgstr ""
"[DEWISIADAU] [PROGRAM_NAME]\n"
"\n"
"DEWISIADAU:\n"
"  --help            - argraffu'r neges cymorth.\n"
"  --report          - dylai'r rhaglen fod yn un o offer Mandriva Linux\n"
"  --incident        - ylai'r rhaglen fod yn un o offer Mandriva Linux"

#: standalone.pm:67
#, c-format
msgid ""
"[--add]\n"
"  --add             - \"add a network interface\" wizard\n"
"  --del             - \"delete a network interface\" wizard\n"
"  --skip-wizard     - manage connections\n"
"  --internet        - configure internet\n"
"  --wizard          - like --add"
msgstr ""
"[--add]\n"
"  --add             - Dewin \"ychwanegu rhyngwyneb rhwydwaith\" \n"
"  --del             - Dewin \"dileu rhyngwyneb rhwydwaith\" \n"
"  --skip-wizard     - rheoli cysylltiadau\n"
"  --internet        - ffurfweddu'r rhyngrwyd\n"
"  --wizard          - fel --add"

#: standalone.pm:73
#, c-format
msgid ""
"\n"
"Font Importation and monitoring application\n"
"\n"
"OPTIONS:\n"
"--windows_import : import from all available windows partitions.\n"
"--xls_fonts      : show all fonts that already exist from xls\n"
"--install        : accept any font file and any directory.\n"
"--uninstall      : uninstall any font or any directory of font.\n"
"--replace        : replace all font if already exist\n"
"--application    : 0 none application.\n"
"                 : 1 all application available supported.\n"
"                 : name_of_application like  so for staroffice \n"
"                 : and gs for ghostscript for only this one."
msgstr ""
"\n"
"Rhaglen mewnforio a monitro ffontiau\n"
"\n"
"DEWISIADAU:\n"
"--windows_import : mewnforio o bob rhaniad Windows.\n"
"--xls_fonts      : dangos pob ffont sy'n bodoli o xls\n"
"--install        : derbyn unrhyw ffeil ffont ac unrhyw gyfeiriadur.\n"
"--uninstall      : dadosod unrhyw ffont neu gyfeiriadur ffont.\n"
"--replace        : amnewid pob ffont os yw'n bod\n"
"--application    : 0 dim rhaglen.\n"
"                 : 1 pob rhaglen ar gael yn cael ei gynnal.\n"
"                 : name_of_application like  so for staroffice \n"
"                 : and gs for ghostscript for only this one."

#: standalone.pm:88
#, c-format
msgid ""
"[OPTIONS]...\n"
"Mandriva Linux Terminal Server Configurator\n"
"--enable         : enable MTS\n"
"--disable        : disable MTS\n"
"--start          : start MTS\n"
"--stop           : stop MTS\n"
"--adduser        : add an existing system user to MTS (requires username)\n"
"--deluser        : delete an existing system user from MTS (requires "
"username)\n"
"--addclient      : add a client machine to MTS (requires MAC address, IP, "
"nbi image name)\n"
"--delclient      : delete a client machine from MTS (requires MAC address, "
"IP, nbi image name)"
msgstr ""
"Ffurfweddwr Gweinydd Terfynell Mandriva Linux\n"
"--enable         : galluogi MTS\n"
"--disable        : analluogi MTS\n"
"--start          : cychwyn MTS\n"
"--stop           : atal MTS\n"
"--adduser        : ychwanegu defnyddiwr system bresennol i MTS (angen enw "
"defnyddiwr)\n"
"--deluser        : dileu defnyddiwr system bresennol o MTS (angen enw "
"defnyddiwr)\n"
"--addclient      : ychwanegu peiriant cleient i MTS (angen cyfeiriad MAC, "
"IP, enw delwedd nbi)\n"
"--delclient      : dileu  peiriant cleient i MTS (angen cyfeiriad MAC, IP, "
"enw delwedd nbi)"

#: standalone.pm:100
#, c-format
msgid "[keyboard]"
msgstr "[bysellfwrdd]"

#: standalone.pm:101
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
msgstr "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"

#: standalone.pm:102
#, c-format
msgid ""
"[OPTIONS]\n"
"Network & Internet connection and monitoring application\n"
"\n"
"--defaultintf interface : show this interface by default\n"
"--connect : connect to internet if not already connected\n"
"--disconnect : disconnect to internet if already connected\n"
"--force : used with (dis)connect : force (dis)connection.\n"
"--status : returns 1 if connected 0 otherwise, then exit.\n"
"--quiet : do not be interactive. To be used with (dis)connect."
msgstr ""
"[OPTIONS]\n"
"Rhaglen Cyswllt a Monitro'r Rhwydwaith a'r Rhyngrwyd\n"
"\n"
"--defaultintf interface : show this interface by default\n"
"--connect : connect to internet if not already connected\n"
"--disconnect : disconnect to internet if already connected\n"
"--force : used with (dis)connect : force (dis)connection.\n"
"--status : returns 1 if connected 0 otherwise, then exit.\n"
"--quiet : do not be interactive. To be used with (dis)connect."

#: standalone.pm:112
#, c-format
msgid ""
"[OPTION]...\n"
"  --no-confirmation      do not ask first confirmation question in Mandriva "
"Update mode\n"
"  --no-verify-rpm        do not verify packages signatures\n"
"  --changelog-first      display changelog before filelist in the "
"description window\n"
"  --merge-all-rpmnew     propose to merge all .rpmnew/.rpmsave files found"
msgstr ""
"[DEWIS]...\n"