aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_module.php
blob: d0e7c8cfc8ba7f5950426fe125a809f8e9961fb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
<?php
/**
*
* @package phpBB3
* @version $Id$
* @copyright (c) 2005 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/

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

/**
* 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 $include_path = false;
	var $active_module = false;
	var $active_module_row_id = false;
	var $acl_forum_id = false;
	var $module_ary = array();

	/**
	* Constuctor
	* Set module include path
	*/
	function p_master($include_path = false)
	{
		global $phpbb_root_path;

		$this->include_path = ($include_path !== false) ? $include_path : $phpbb_root_path . 'includes/';

		// Make sure the path ends with /
		if (substr($this->include_path, -1) !== '/')
		{
			$this->include_path .= '/';
		}
	}

	/**
	* Set custom include path for modules
	* Schema for inclusion is include_path . modulebase
	*
	* @param string $include_path include path to be used.
	* @access public
	*/
	function set_custom_include_path($include_path)
	{
		$this->include_path = $include_path;

		// Make sure the path ends with /
		if (substr($this->include_path, -1) !== '/')
		{
			$this->include_path .= '/';
		}
	}

	/**
	* 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);
		}

		if (empty($this->module_cache))
		{
			$this->module_cache = array('modules' => array(), 'parents' => array());
		}

		// 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']);

		// Include MOD _info files for populating language entries within the menus
		$this->add_mod_info($this->p_class);

		// 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'], $row) : '',

				'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 if a certain main module is accessible/loaded
	* By giving the module mode you are able to additionally check for only one mode within the main module
	*
	* @param string $module_basename The module base name, for example logs, reports, main (for the mcp).
	* @param mixed $module_mode The module mode to check. If provided the mode will be checked in addition for presence.
	*
	* @return bool Returns true if module is loaded and accessible, else returns false
	*/
	function loaded($module_basename, $module_mode = false)
	{
		if (empty($this->loaded_cache))
		{
			$this->loaded_cache = array();

			foreach ($this->module_ary as $row)
			{
				if (!$row['name'])
				{
					continue;
				}

				if (!isset($this->loaded_cache[$row['name']]))
				{
					$this->loaded_cache[$row['name']] = array();
				}

				if (!$row['mode'])
				{
					continue;
				}

				$this->loaded_cache[$row['name']][$row['mode']] = true;
			}
		}

		if ($module_mode === false)
		{
			return (isset($this->loaded_cache[$module_basename])) ? true : false;
		}

		return (!empty($this->loaded_cache[$module_basename][$module_mode])) ? true : false;
	}

	/**
	* Check module authorisation
	*/
	function module_auth($module_auth, $forum_id = false)
	{
		global $auth, $config;

		$module_auth = trim($module_auth);

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

		// With the code below we make sure only those elements get eval'd we really want to be checked
		preg_match_all('/(?:
			"[^"\\\\]*(?:\\\\.[^"\\\\]*)*"         |
			\'[^\'\\\\]*(?:\\\\.[^\'\\\\]*)*\'     |
			[(),]                                  |
			[^\s(),]+)/x', $module_auth, $match);

		$tokens = $match[0];
		for ($i = 0, $size = sizeof($tokens); $i < $size; $i++)
		{
			$token = &$tokens[$i];

			switch ($token)
			{
				case ')':
				case '(':
				case '&&':
				case '||':
				case ',':
				break;

				default:
					if (!preg_match('#(?:acl_([a-z0-9_]+)(,\$id)?)|(?:\$id)|(?:aclf_([a-z0-9_]+))|(?:cfg_([a-z0-9_]+))|(?:request_([a-zA-Z0-9_]+))#', $token))
					{
						$token = '';
					}
				break;
			}
		}

		$module_auth = implode(' ', $tokens);

		// Make sure $id seperation is working fine
		$module_auth = str_replace(' , ', ',', $module_auth);

		$forum_id = ($forum_id === false) ? $this->acl_forum_id : $forum_id;

		$is_auth = false;
		eval('$is_auth = (int) (' . preg_replace(array('#acl_([a-z0-9_]+)(,\$id)?#', '#\$id#', '#aclf_([a-z0-9_]+)#', '#cfg_([a-z0-9_]+)#', '#request_([a-zA-Z0-9_]+)#'), array('(int) $auth->acl_get(\'\\1\'\\2)', '(int) $forum_id', '(int) $auth->acl_getf_global(\'\\1\')', '(int) $config[\'\\1\']', '!empty($_REQUEST[\'\\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['display']) ||
				(($item_ary['name'] === $id || $item_ary['id'] === (int) $id) && !$mode && !$item_ary['cat']) ||
				(!$id && !$mode && !$item_ary['cat'] && $item_ary['display'])
				)
			{
				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'];
				$this->active_module_row_id = $row_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 = $this->include_path . $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 $module_path/{$this->p_class}_$this->p_name.$phpEx", 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 file $module_path/{$this->p_class}_$this->p_name.$phpEx does not contain correct class [{$this->p_class}_$this->p_name]", 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'))
			{
				// Is first module automatically enabled a duplicate and the category not passed yet?
				if (!$icat && $this->module_ary[$this->active_module_row_id]['is_duplicate'])
				{
					$icat = $this->module_ary[$this->active_module_row_id]['parent'];
				}

				// Not being able to overwrite ;)
				$this->module->u_action = append_sid("{$phpbb_admin_path}index.$phpEx", "i={$this->p_name}") . (($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_name}") . (($icat) ? '&amp;icat=' . $icat : '') . "&amp;mode={$this->p_mode}";
			}

			// Add url_extra parameter to u_action url
			if (!empty($this->module_ary) && $this->active_module !== false && $this->module_ary[$this->active_module_row_id]['url_extra'])
			{
				$this->module->u_action .= $this->module_ary[$this->active_module_row_id]['url_extra'];
			}

			// 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_mode);
			}

			return;
		}
	}

	/**
	* Appending url parameter to the currently active module.
	*
	* This function is called for adding specific url parameters while executing the current module.
	* It is doing the same as the _module_{name}_url() function, apart from being able to be called after
	* having dynamically parsed specific parameters. This allows more freedom in choosing additional parameters.
	* One example can be seen in /includes/mcp/mcp_notes.php - $this->p_master->adjust_url() call.
	*
	* @param string $url_extra Extra url parameters, e.g.: &amp;u=$user_id
	*
	*/
	function adjust_url($url_extra)
	{
		if (empty($this->module_ary[$this->active_module_row_id]))
		{
			return;
		}

		$row = &$this->module_ary[$this->active_module_row_id];

		// We check for the same url_extra in $row['url_extra'] to overcome doubled additions...
		if (strpos($row['url_extra'], $url_extra) === false)
		{
			$row['url_extra'] .= $url_extra;
		}
	}

	/**
	* Check if a module is active
	*/
	function is_active($id, $mode = false)
	{
		// If we find a name by this id and being enabled we have our active one...
		foreach ($this->module_ary as $row_id => $item_ary)
		{
			if (($item_ary['name'] === $id || $item_ary['id'] === (int) $id) && $item_ary['display'])
			{
				if ($mode === false || $mode === $item_ary['mode'])
				{
					return true;
				}
			}
		}

		return false;
	}

	/**
	* 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 && (isset($this->module_cache['parents'][$item_ary['id']]) || $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']);

			// Was not allowed in categories before - /*!$item_ary['cat'] && */
			$u_title .= (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'	=> (isset($this->module_cache['parents'][$item_ary['id']]) || $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'	=> (isset($this->module_cache['parents'][$item_ary['id']]) || $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;
			}
		}
	}

	/**
	* Add custom MOD info language file
	*/
	function add_mod_info($module_class)
	{
		global $user, $phpEx;

		if (file_exists($user->lang_path . $user->lang_name . '/mods'))
		{
			$add_files = array();

			$dir = @opendir($user->lang_path . $user->lang_name . '/mods');

			if ($dir)
			{
				while (($entry = readdir($dir)) !== false)
				{
					if (strpos($entry, 'info_' . strtolower($module_class) . '_') === 0 && substr(strrchr($entry, '.'), 1) == $phpEx)
					{
						$add_files[] = 'mods/' . substr(basename($entry), 0, -(strlen($phpEx) + 1));
					}
				}
				closedir($dir);
			}

			if (sizeof($add_files))
			{
				$user->add_lang($add_files);
			}
		}
	}
}

?>
id='n3611' href='#n3611'>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 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# Naim Daka <naim70@freesurf.ch>, 2002, 2003.
#
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX for MDK 9.2\n"
"POT-Creation-Date: 2012-07-29 11:51+0300\n"
"PO-Revision-Date: 2004-09-15 13:33+0200\n"
"Last-Translator: Naim Daka <naim70@freesurf.ch>\n"
"Language-Team: Albanian <LL@li.org>\n"
"Language: sq\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8-bit\n"

#: any.pm:262 any.pm:972 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:241 do_pkgs.pm:286
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Një moment ju lutemi"

#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Instalimi i Bootloader në vazhdim e sipër"

#: any.pm:273
#, 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 ""

#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Instalimi i programit me nisje të udhëzuar dështoi. Gabimi i radhitur është:"

#: any.pm:290
#, 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 ""
"Ndoshta ju duhet të ndërroni lexuesin me nisje të udhëzuar të Open\n"
" Firmware, për ta aktivizuar programin me nisje të udhëzuar. Nëse ju\n"
" vëreni një hyrje të programit me nisje të udhëzuar, gjatë nisjes së\n"
" sistemit tuaj, shtypni mbi Command-Option-O-F dhe rinisni sistemin tuaj\n"
" futni: setenv boot-device %s,\\\\:tbxi. Mandej shtypni: shut-down\n"
"Në nisjen tjetër të sistemit tuaj, ju do ta vëreni hyrjen e programit me "
"nisje të udhëzuar."

#: any.pm:330
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard disk drive you boot "
"(eg: System Commander).\n"
"\n"
"On which drive are you booting?"
msgstr ""
"Ju keni vendosur të instaloni programin bootloader mbi një ndarje.\n"
"Kjo nënkupton se ju posedoni një program me nisje të udhëzuarë në diskun e "
"fort (shembull: System Commander).\n"
"\n"
"Në cilin diskë do të niseni?"

#: any.pm:341
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Instalimi i Bootloader në vazhdim e sipër"

#: any.pm:345
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Ku dëshironi të instaloni programin bootloader?"

#: any.pm:369
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Sektori i par i diskut (MBR)"

#: any.pm:371
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Sektori i par i diskut (MBR)"

#: any.pm:373
#, c-format
msgid "First sector of the root partition"
msgstr "Sektori i par një ndarje rrënjëzore (root)"

#: any.pm:375
#, c-format
msgid "On Floppy"
msgstr "Mbi Disketë Floppy"

#: any.pm:377 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Hedhe"

#: any.pm:412
#, c-format
msgid "Boot Style Configuration"
msgstr "Konfigurimi i Stilit të nisjes"

#: any.pm:428 any.pm:461 any.pm:462
#, c-format
msgid "Bootloader main options"
msgstr "Opcionet kryesore të programit Bootloader"

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

#: any.pm:433 any.pm:465
#, c-format
msgid "Bootloader to use"
msgstr "Programi Bootloader për përdorim"

#: any.pm:436 any.pm:468
#, c-format
msgid "Boot device"
msgstr "Mjet me nisje udhëzuese"

#: any.pm:439
#, c-format
msgid "Main options"
msgstr ""

#: any.pm:440
#, c-format
msgid "Delay before booting default image"
msgstr "Afat para se imazhi të niset me marrëvshje"

#: any.pm:441
#, c-format
msgid "Enable ACPI"
msgstr "Autorizoje ACPI"

#: any.pm:442
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Autorizoje ACPI"

#: any.pm:443
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Autorizoje ACPI"

#: any.pm:445
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "Autorizoje ACPI"

#: any.pm:446 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Siguria"

#: any.pm:447 any.pm:907 any.pm:926 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Parulla"

#: any.pm:450 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Parullat nuk përputhen"

#: any.pm:450 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Ju lutemi provoni edhe një herë"

#: any.pm:452
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr ""
"Ju nuk mund ta përdorni sistemin e skedareve të kriptuara për këtë pikë "
"montuese %s"

#: any.pm:456 any.pm:910 any.pm:928 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Parulla (përsëri)"

#: any.pm:457
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Zbraze repertorin /tmp në çdo nisje"

#: any.pm:467
#, c-format
msgid "Init Message"
msgstr "Lajm i Nisjes"

#: any.pm:469
#, c-format
msgid "Open Firmware Delay"
msgstr "Afat i Open Firmware"

#: any.pm:470
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Afat i nisjes udhëzuese të bërthamës"

#: any.pm:471
#, c-format
msgid "Enable CD Boot?"
msgstr "Autorizoje nisjen nga CD?"

#: any.pm:472
#, c-format
msgid "Enable OF Boot?"
msgstr "Autorizoje Nisjen në l'OF?"

#: any.pm:473
#, c-format
msgid "Default OS?"
msgstr "Sistem i Eksploatimit me marrëveshje?"

#: any.pm:547
#, c-format
msgid "Image"
msgstr "Imazh"

#: any.pm:548 any.pm:562
#, c-format
msgid "Root"
msgstr "Ndarje Rrënjëzore"

#: any.pm:549 any.pm:575
#, c-format
msgid "Append"
msgstr "Mundësi kalimi në bërthamë"

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

#: any.pm:553
#, c-format
msgid "Requires password to boot"
msgstr ""

#: any.pm:555
#, c-format
msgid "Video mode"
msgstr "Modë video"

#: any.pm:557
#, c-format
msgid "Initrd"
msgstr "Skedare RamDisk"

#: any.pm:558
#, fuzzy, c-format
msgid "Network profile"
msgstr "Shfletues rrjeti"

#: any.pm:567 any.pm:572 any.pm:574 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etiketa"

#: any.pm:569 any.pm:577 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Me marrëveshje"

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

#: any.pm:587
#, c-format
msgid "Empty label not allowed"
msgstr "Etiketë e zbrazët nuk autorizohet"

#: any.pm:588
#, c-format
msgid "You must specify a kernel image"
msgstr "Ju duhet të specifikoni imazhin e bërthamës"

#: any.pm:588
#, c-format
msgid "You must specify a root partition"
msgstr "Ju duhet të specifikoni një ndarje rrënjëzore"

#: any.pm:589
#, c-format
msgid "This label is already used"
msgstr "Kjo etiketë është në përdorim e sipër"

#: any.pm:607
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Çfarë tipi të sistemit dëshironi të shtoni?"

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

#: any.pm:608
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Sistem tjetër Eksploatues (SunOS...)"

#: any.pm:609
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Sistem tjetër Eksploatues (MacOS, etj.)"

#: any.pm:609
#, c-format
msgid "Other OS (Windows...)"
msgstr "Sistem tjetër Eksploatues (Windows, etj.)"

#: any.pm:656
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Konfigurimi i Stilit të nisjes"

#: any.pm:657
#, 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 ""
"Këto janë hyrjet e ndryshme në nisje udhëzuese.\n"
"Ju mund ta shtoni ndonjë të reja dhe ti ndryshoni hyrjet e më parme."

#: any.pm:868
#, c-format
msgid "access to X programs"
msgstr "hyrjer në programet grafike X"

#: any.pm:869
#, c-format
msgid "access to rpm tools"
msgstr "hyrjet në veglat rpm"

#: any.pm:870
#, c-format
msgid "allow \"su\""
msgstr "autorizim \"su\""

#: any.pm:871
#, c-format
msgid "access to administrative files"
msgstr "hyrje në skedaret administrative"

#: any.pm:872
#, c-format
msgid "access to network tools"
msgstr "hyrjet në veglat e rrjetit"

#: any.pm:873
#, c-format
msgid "access to compilation tools"
msgstr "hyrjet në veglat kompiluese"

#: any.pm:879
#, c-format
msgid "(already added %s)"
msgstr "(në shtim e sipër %s)"

#: any.pm:885
#, c-format
msgid "Please give a user name"
msgstr "Ju lutemi shkruani një emër për përdoruesin"

#: any.pm:886
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
"Emri i përdoruesit mund të përmbajë vetëm shkonja të vogla, numra, njashtu "
"edhe shenjat `-' dhe `_'"

#: any.pm:887
#, c-format
msgid "The user name is too long"
msgstr "Emri i përdoruesit është shumë i gjatë"

#: any.pm:888
#, c-format
msgid "This user name has already been added"
msgstr "Ky emër i përdoruesit është veçse i shtuarë"

#: any.pm:894 any.pm:930
#, c-format
msgid "User ID"
msgstr "ID i Përdoruesit"

#: any.pm:894 any.pm:931
#, c-format
msgid "Group ID"
msgstr "Grup ID"

#: any.pm:895
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "Opcioni %s duhet të jetë një numër!"

#: any.pm:896
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""

#: any.pm:900
#, fuzzy, c-format
msgid "User management"
msgstr "Emri i përdoruesit"

#: any.pm:905
#, c-format
msgid "Enable guest account"
msgstr ""

#: any.pm:906 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Paraqite parullën root"

#: any.pm:912
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Fute një përdorues\n"
"%s"

#: any.pm:914
#, c-format
msgid "Icon"
msgstr "Ikona"

#: any.pm:917
#, c-format
msgid "Real name"
msgstr "Emri dhe mbiemri"

#: any.pm:924
#, c-format
msgid "Login name"
msgstr "Emri lidhës"

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

#: any.pm:972
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "një moment ju lutemi gjatë ttmkfdir..."

#: any.pm:1004 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Lidhje automatike"

#: any.pm:1005
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Përderisa të niset kompjuteri juaj, ka mundësi që të lidhet automatikisht në "
"një përdorues."

#: any.pm:1006
#, fuzzy, c-format
msgid "Use this feature"
msgstr "A dëshironi ta përdorni këtë veçori?"

#: any.pm:1007
#, c-format
msgid "Choose the default user:"
msgstr "Zgjedheni një përdorues me marrëveshje:"

#: any.pm:1008
#, c-format
msgid "Choose the window manager to run:"
msgstr "Zgjedheni një mjedis grafik për ta nisur:"

#: any.pm:1019 any.pm:1039 any.pm:1107
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Liroje:"

#: any.pm:1046 any.pm:1395 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Mbylle"

#: any.pm:1093
#, c-format
msgid "License agreement"
msgstr "Licenca e pajtueshmërisë"

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

#: any.pm:1102
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "A posedoni ndonjë tjetër?"

#: any.pm:1103
#, c-format
msgid "Accept"
msgstr "Pranoje"

#: any.pm:1103
#, c-format
msgid "Refuse"
msgstr "Rrefuzo"

#: any.pm:1129 any.pm:1191
#, c-format
msgid "Please choose a language to use"
msgstr "Ju lutemi zgjedheni gjuhën përdoruese"

#: any.pm:1157
#, fuzzy, c-format
msgid ""
"%s 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 ""
"Mageia mund ti përmbahen një numër të madhë të gjuhëve.\n"
"Zgjedheni gjuhën në të cilën dëshironi ta instaloni. E cila do të\n"
"jetë në përdorim e sipër kur ta instaloni kompletisht\n"
"dhe ta rinisni sistemin tuaj nga fillimi."

#: any.pm:1159 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""

#: any.pm:1160
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Të gjitha ghuhët"

#: any.pm:1169 any.pm:1200
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""

#: any.pm:1170
#, c-format
msgid "All languages"
msgstr "Të gjitha ghuhët"

#: any.pm:1192
#, fuzzy, c-format
msgid "Language choice"
msgstr "manuelë"

#: any.pm:1246
#, c-format
msgid "Country / Region"
msgstr "Shteti / Regjioni"

#: any.pm:1247
#, c-format
msgid "Please choose your country"
msgstr "Ju lutemi, zgjedheni shtetin tuaj"

#: any.pm:1249
#, c-format
msgid "Here is the full list of available countries"
msgstr "Ja ku është lista komplete e shteteve në disponibilitet"

#: any.pm:1250
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Porta të tjera"

#: any.pm:1250 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Vazhduar"

#: any.pm:1256
#, fuzzy, c-format
msgid "Input method:"
msgstr "Metodë Rrjeti:"

#: any.pm:1259
#, c-format
msgid "None"
msgstr "Asnjëri"

#: any.pm:1340
#, c-format
msgid "No sharing"
msgstr "Asnjë ndarje"

#: any.pm:1340
#, c-format
msgid "Allow all users"
msgstr "Autorizoi të gjithë përdoruesit"

#: any.pm:1340
#, c-format
msgid "Custom"
msgstr "Personalizim"

#: any.pm:1344
#, 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 ""
"A dëshironi që përdoruesit të kenë mundësi të shpërndajnë disa nga\n"
"repertorët e tyre? Me këtë përdoruesit do të kenë mundësi ti shpërndajnë\n"
"me klikim mbi \"Shpërdarje\" në konqueror (kde) dhe nautilus (gnome).\n"
"\n"
"\"Personalizim\" autorizon shpërndarjes për përdorues të përcaktuar.\n"

#: any.pm:1356
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""

#: any.pm:1359
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""

#: any.pm:1367
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"A dëshironi ti trasportoni me NFS (protokol UNIX) apo SMB (protokol "
"Windows). Ju lutemi zgjedheni cilën dëshironi ta përdorni."

#: any.pm:1395
#, c-format
msgid "Launch userdrake"
msgstr "Nise userdrake"

#: any.pm:1397
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
"Për të autorizuar një përdorues të grupit që të shpërndaje repetorët, ju "
"duhet ti shtoni të gjithë përdoruesit po në atë grup \"fileshare\". \n"
"Kjo mund të arrihet falas programit userdrake."

#: any.pm:1504
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
"Ju duhet të lidheni jashtë tij dhe të hyni prapë për ndryshimet bëra më parë"

#: any.pm:1508
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Ju duhet të lidheni jashtë tij dhe të hyni prapë për ndryshimet bëra më parë"

#: any.pm:1543
#, c-format
msgid "Timezone"
msgstr "Zonë orare"

#: any.pm:1543
#, c-format
msgid "Which is your timezone?"
msgstr "Cila është zona e juaj orare?"

#: any.pm:1566 any.pm:1568
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""

#: any.pm:1569
#, c-format
msgid "What is the best time?"
msgstr ""

#: any.pm:1573
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Orë Sistemi e rregulluar në Kohën Univerzale (GMT)"

#: any.pm:1574
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Orë Sistemi e rregulluar në Kohën Univerzale (GMT)"

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

#: any.pm:1577
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sinkronizimi automatik i orës (via NTP)"

#: authentication.pm:24
#, c-format
msgid "Local file"
msgstr "Skedë Lokale"

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

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

#: authentication.pm:27
#, fuzzy, c-format
msgid "Smart Card"
msgstr "Kartela ethernet"

#: authentication.pm:28 authentication.pm:215
#, c-format
msgid "Windows Domain"
msgstr "Prona Windows"

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

#: authentication.pm:65
#, fuzzy, c-format
msgid "Local file:"
msgstr "Skedaret lokale:"

#: authentication.pm:65
#, c-format
msgid ""
"Use local for all authentication and information user tell in local file"
msgstr ""

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

#: authentication.pm:66
#, c-format
msgid ""
"Tells your computer to use LDAP for some or all authentication. LDAP "
"consolidates certain types of information within your organization."
msgstr ""

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

#: authentication.pm:67
#, 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 ""

#: authentication.pm:68
#, c-format
msgid "Windows Domain:"
msgstr "Prona Windows:"

#: authentication.pm:68
#, c-format
msgid ""
"Winbind allows the system to retrieve information and authenticate users in "
"a Windows domain."
msgstr ""

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

#: authentication.pm:69
#, c-format
msgid "With Kerberos and LDAP for authentication in Active Directory Server "
msgstr ""

#: authentication.pm:106 authentication.pm:140 authentication.pm:159
#: authentication.pm:160 authentication.pm:186 authentication.pm:210
#: authentication.pm:865
#, c-format
msgid " "
msgstr ""

#: authentication.pm:107 authentication.pm:141 authentication.pm:187
#: authentication.pm:211
#, fuzzy, c-format
msgid "Welcome to the Authentication Wizard"
msgstr "Nevojitet Prona Vërtetuese"

#: authentication.pm:109
#, c-format
msgid ""
"You have selected LDAP authentication. Please review the configuration "
"options below "
msgstr ""

#: authentication.pm:111 authentication.pm:166
#, c-format
msgid "LDAP Server"
msgstr "Server LDAP"

#: authentication.pm:112 authentication.pm:167
#, fuzzy, c-format
msgid "Base dn"
msgstr "Rrënja Bazë (dn) LDAP"

#: authentication.pm:113
#, c-format
msgid "Fetch base Dn "
msgstr ""

#: authentication.pm:115 authentication.pm:170
#, c-format
msgid "Use encrypt connection with TLS "
msgstr ""

#: authentication.pm:116 authentication.pm:171
#, c-format
msgid "Download CA Certificate "
msgstr ""

#: authentication.pm:118 authentication.pm:151
#, c-format
msgid "Use Disconnect mode "
msgstr ""

#: authentication.pm:119 authentication.pm:172
#, c-format
msgid "Use anonymous BIND "
msgstr ""

#: authentication.pm:120 authentication.pm:123 authentication.pm:125
#: authentication.pm:129
#, c-format
msgid "  "
msgstr ""

#: authentication.pm:121 authentication.pm:173
#, c-format
msgid "Bind DN "
msgstr ""

#: authentication.pm:122 authentication.pm:174
#, fuzzy, c-format
msgid "Bind Password "
msgstr "Parulla"

#: authentication.pm:124
#, c-format
msgid "Advanced path for group "
msgstr ""

#: authentication.pm:126
#, fuzzy, c-format
msgid "Password base"
msgstr "Parulla"

#: authentication.pm:127
#, fuzzy, c-format
msgid "Group base"
msgstr "Grup ID"

#: authentication.pm:128
#, c-format
msgid "Shadow base"
msgstr ""

#: authentication.pm:143
#, c-format
msgid ""
"You have selected Kerberos 5 authentication. Please review the configuration "
"options below "
msgstr ""

#: authentication.pm:145
#, fuzzy, c-format
msgid "Realm "
msgstr "Emri dhe mbiemri"

#: authentication.pm:147
#, fuzzy, c-format
msgid "KDCs Servers"
msgstr "Server LDAP"

#: authentication.pm:149
#, c-format
msgid "Use DNS to locate KDC for the realm"
msgstr ""

#: authentication.pm:150
#, c-format
msgid "Use DNS to locate realms"
msgstr ""

#: authentication.pm:155
#, fuzzy, c-format
msgid "Use local file for users information"
msgstr "Përdoroje libsafe për server"

#: authentication.pm:156
#, fuzzy, c-format
msgid "Use LDAP for users information"
msgstr "Informacion mbi diskun e fort (hard disk drive)"

#: authentication.pm:162
#, c-format
msgid ""
"You have selected Kerberos 5 for authentication, now you must choose the "
"type of users information "
msgstr ""

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

#: authentication.pm:189
#, c-format
msgid ""
"You have selected NIS authentication. Please review the configuration "
"options below "
msgstr ""

#: authentication.pm:191
#, c-format
msgid "NIS Domain"
msgstr "Pronë NIS"

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

#: authentication.pm:213
#, c-format
msgid ""
"You have selected Windows Domain authentication. Please review the "
"configuration options below "
msgstr ""

#: authentication.pm:217
#, fuzzy, c-format
msgid "Domain Model "
msgstr "Prona"

#: authentication.pm:219
#, c-format
msgid "Active Directory Realm "
msgstr ""

#: authentication.pm:220
#, fuzzy, c-format
msgid "DNS Domain"
msgstr "Pronë NIS"

#: authentication.pm:221
#, fuzzy, c-format
msgid "DC Server"
msgstr "Server LDAP"

#: authentication.pm:235 authentication.pm:251
#, c-format
msgid "Authentication"
msgstr "Vërtetësimi"

#: authentication.pm:237
#, fuzzy, c-format
msgid "Authentication method"
msgstr "vërtetësim"

#. -PO: keep this short or else the buttons will not fit in the window
#: authentication.pm:242
#, c-format
msgid "No password"
msgstr "Asnjë parullë"

#: authentication.pm:263
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Kjo parullë është shumë e shkurtër (duhet të jetë më së paku e gjatë prej %d "
"simboleve)"

#: authentication.pm:373
#, c-format
msgid "Cannot use broadcast with no NIS domain"
msgstr "Nuk mund të përdoret mundësia broadcast pa asnjë pronë NIS"

#: authentication.pm:860
#, c-format
msgid "Select file"
msgstr "Zgjedhe një skedare"

#: authentication.pm:866
#, fuzzy, c-format
msgid "Domain Windows for authentication : "
msgstr "Nevojitet Prona Vërtetuese"

#: authentication.pm:868
#, c-format
msgid "Domain Admin User Name"
msgstr "Emri i Administruesit të Pronës"

#: authentication.pm:869
#, c-format
msgid "Domain Admin Password"
msgstr "Parulla e Administruesit të Pronës"

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: bootloader.pm:978
#, 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 ""

#: bootloader.pm:1156
#, c-format
msgid "LILO with text menu"
msgstr "LILO në modë teksti"

#: bootloader.pm:1157
#, c-format
msgid "GRUB with graphical menu"
msgstr ""

#: bootloader.pm:1158
#, c-format
msgid "GRUB with text menu"
msgstr ""

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

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

#: bootloader.pm:1244
#, c-format
msgid "not enough room in /boot"
msgstr "nuk ka vend të mjaftueshëm në repertorin /boot"

#: bootloader.pm:1970
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Ju nuk mund të instaloni programin bootloader mbi një ndarje %s\n"

#: bootloader.pm:2091
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""

#: bootloader.pm:2104
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""

#: bootloader.pm:2105
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "Instalim i bootloader"

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

#: 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 minuta"

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

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

#: common.pm:393
#, c-format
msgid "command %s missing"
msgstr ""

#: 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 ""
"WebDAV është një protokol i cili ju mundëson që të montohet një repertor\n"
"lokal i serverit web, dhe të qeveriset sikur një sistem i skedareve lokale\n"
"(me një kusht nëse serveri web është i konfiguruar si server WebDAV).\n"
"Nëse dëshironi të shtoni pika tjera montuese zgjedheni WebDAV \"E Re\"."

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

#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Demonto"

#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Monto"

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

#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:722 diskdrake/interactive.pm:740
#: diskdrake/interactive.pm:744 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Pikë montuese"

#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1163 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Opcionet"

#: diskdrake/dav.pm:68 interactive.pm:387 interactive/gtk.pm:453
#, c-format
msgid "Remove"
msgstr "Zhduke"

#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:193 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Përfundoi"

#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:133 diskdrake/hd_gtk.pm:299
#: diskdrake/interactive.pm:247 diskdrake/interactive.pm:260
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
#: diskdrake/interactive.pm:712 diskdrake/interactive.pm:1002
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 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 do_pkgs.pm:82
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
#, c-format
msgid "Error"
msgstr "Gabim"

#: diskdrake/dav.pm:86
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Ju lutemi futni adresën e serverit WebDAV"

#: diskdrake/dav.pm:90
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URL duhet të filloj me http:// ose https://"

#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:424 diskdrake/interactive.pm:306
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:815 diskdrake/interactive.pm:880
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:77 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Kujdes"

#: diskdrake/dav.pm:106
#, fuzzy, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "A dëshironi të klikoni mbi këtë kopsë?"

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

#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1371 diskdrake/interactive.pm:1459
#, c-format
msgid "Mount point: "
msgstr "Pikë montuese: "

#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1466
#, c-format
msgid "Options: %s"
msgstr "Opcionet: %s"

#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:301
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:108
#: fs/partitioning_wizard.pm:55 fs/partitioning_wizard.pm:238
#: fs/partitioning_wizard.pm:246 fs/partitioning_wizard.pm:285
#: fs/partitioning_wizard.pm:433 fs/partitioning_wizard.pm:496
#: fs/partitioning_wizard.pm:579 fs/partitioning_wizard.pm:582
#, c-format
msgid "Partitioning"
msgstr "Shpërndarja"

#: diskdrake/hd_gtk.pm:73
#, c-format
msgid "Click on a partition, choose a filesystem type then choose an action"
msgstr ""

#: diskdrake/hd_gtk.pm:115 diskdrake/interactive.pm:1184
#: diskdrake/interactive.pm:1194 diskdrake/interactive.pm:1247
#, c-format
msgid "Read carefully"
msgstr "Gjendje gadishmërie"

#: diskdrake/hd_gtk.pm:115
#, c-format
msgid "Please make a backup of your data first"
msgstr "Ju lutemi regjistroni të dhënat tuaja para se të vazhdoni më tutje"

#: diskdrake/hd_gtk.pm:116 diskdrake/interactive.pm:240
#, c-format
msgid "Exit"
msgstr "Braktise"

#: diskdrake/hd_gtk.pm:116
#, c-format
msgid "Continue"
msgstr "Vazhdo"

#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:653
#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
#: ugtk2.pm:936
#, c-format
msgid "Help"
msgstr "Ndihmë"

#: diskdrake/hd_gtk.pm:234
#, 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 ""
"Disku i juaj posedon vetëm një ndarje të madhe të tipit FAT \n"
"(në shumicën e rasteve është i përdorur nga Microsoft Dos/Windows).\n"
"Ju duhet ta zvogëloni që të krijoni një ndarje tjetër\n"
"(kliko në ndarje, mandej mbi \"Ridimenzionim\")"

#: diskdrake/hd_gtk.pm:236
#, c-format
msgid "Please click on a partition"
msgstr "Ju lutemi klikoni mbi një ndarje"

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

#: diskdrake/hd_gtk.pm:299
#, c-format
msgid "No hard disk drives found"
msgstr "Asnjë disk i fort (hard disk drive) në këtë sistem"

#: diskdrake/hd_gtk.pm:330
#, c-format
msgid "Unknown"
msgstr "I pa njoftur"

#: diskdrake/hd_gtk.pm:395
#, fuzzy, c-format
msgid "Ext4"
msgstr "Braktise"

#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, fuzzy, c-format
msgid "XFS"
msgstr "HFS"

#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, c-format
msgid "Swap"
msgstr "Swap"

#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, c-format
msgid "SunOS"
msgstr "SunOS"

#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, c-format
msgid "HFS"
msgstr "HFS"

#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, c-format
msgid "Windows"
msgstr "Windows"

#: diskdrake/hd_gtk.pm:396 fs/partitioning_wizard.pm:404 services.pm:193
#, c-format
msgid "Other"
msgstr "Tjetër"

#: diskdrake/hd_gtk.pm:396 diskdrake/interactive.pm:1386
#: fs/partitioning_wizard.pm:404
#, c-format
msgid "Empty"
msgstr "Zbrazët"

#: diskdrake/hd_gtk.pm:403
#, c-format
msgid "Filesystem types:"
msgstr "Tipet e sistemeve të skedareve:"

#: diskdrake/hd_gtk.pm:424
#, fuzzy, c-format
msgid "This partition is already empty"
msgstr "Kjo ndarje nuk mund të ridimenzionohet"

#: diskdrake/hd_gtk.pm:433
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Përdor më parë ``Demontimin''"

#: diskdrake/hd_gtk.pm:433
#, fuzzy, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Përdore më parë këte ``%s''"

#: diskdrake/hd_gtk.pm:433 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:639 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
msgid "Type"
msgstr "Tipi"

#: diskdrake/interactive.pm:211
#, c-format
msgid "Choose another partition"
msgstr "Zgjedheni një ndarje tjetër"

#: diskdrake/interactive.pm:211
#, c-format
msgid "Choose a partition"
msgstr "Zgjedheni një ndarje"

#: diskdrake/interactive.pm:273 diskdrake/interactive.pm:382
#: interactive/curses.pm:532
#, c-format
msgid "More"
msgstr "Më shumë"

#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
#: diskdrake/interactive.pm:1293
#, fuzzy, c-format
msgid "Confirmation"
msgstr "Konfigurimi"

#: diskdrake/interactive.pm:281
#, c-format
msgid "Continue anyway?"
msgstr "Vazhdo pa marrë parasyshë?"

#: diskdrake/interactive.pm:286
#, c-format
msgid "Quit without saving"
msgstr "Braktise pa regjistruar"

#: diskdrake/interactive.pm:286
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Braktise pa i regjistruar tabelatë ndarëse"

#: diskdrake/interactive.pm:294
#, c-format
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "A dëshironi ti registroni ndryshimet në /etc/fstab"

#: diskdrake/interactive.pm:301 fs/partitioning_wizard.pm:285
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
"Ju duhet ta rinisni sistemin që ndryshimet të trasportohen në tabelë që të "
"marren parasysh"

#: diskdrake/interactive.pm:306
#, 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 ""

#: diskdrake/interactive.pm:319
#, c-format
msgid "Clear all"
msgstr "Zhduki të gjitha ndarjet"

#: diskdrake/interactive.pm:320
#, c-format
msgid "Auto allocate"
msgstr "Ndarje automatike"

#: diskdrake/interactive.pm:326
#, c-format
msgid "Toggle to normal mode"
msgstr "Kalo në modë normal"

#: diskdrake/interactive.pm:326
#, c-format
msgid "Toggle to expert mode"
msgstr "Kalo në modë expert"

#: diskdrake/interactive.pm:338
#, c-format
msgid "Hard disk drive information"
msgstr "Informacion mbi diskun e fort (hard disk drive)"

#: diskdrake/interactive.pm:371
#, c-format
msgid "All primary partitions are used"
msgstr "Të gjitha ndarjet primare janë në përdorim e sipër"

#: diskdrake/interactive.pm:372
#, c-format
msgid "I cannot add any more partitions"
msgstr "Nuk mund të shtoj ndonji ndarje tjetër"

#: diskdrake/interactive.pm:373
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Për të përdorur ndarje tjera, ju duhet ta zhdukni njërën nga to, që ta "
"zëvendësoni me një ndarje tjetër të shtrirë"

#: diskdrake/interactive.pm:384
#, c-format
msgid "Reload partition table"
msgstr "Ringarkoje tabelën ndarëse"

#: diskdrake/interactive.pm:391
#, c-format
msgid "Detailed information"
msgstr "Informacione të hollësishme"

#: diskdrake/interactive.pm:407
#, c-format
msgid "View"
msgstr "Pamja"

#: diskdrake/interactive.pm:412 diskdrake/interactive.pm:828
#, c-format
msgid "Resize"
msgstr "Ridimenziono"

#: diskdrake/interactive.pm:413
#, c-format
msgid "Format"
msgstr "Formatim"

#: diskdrake/interactive.pm:415 diskdrake/interactive.pm:965
#, c-format
msgid "Add to RAID"
msgstr "Shto në RAID"

#: diskdrake/interactive.pm:416 diskdrake/interactive.pm:984
#, c-format
msgid "Add to LVM"
msgstr "Shto në LVM"

#: diskdrake/interactive.pm:417
#, fuzzy, c-format
msgid "Use"
msgstr "ID i Përdoruesit"

#: diskdrake/interactive.pm:419
#, c-format
msgid "Delete"
msgstr "Zhduke"

#: diskdrake/interactive.pm:420
#, c-format
msgid "Remove from RAID"
msgstr "Zhduke nga RAID"

#: diskdrake/interactive.pm:421
#, c-format
msgid "Remove from LVM"
msgstr "Zhduke nga LVM"

#: diskdrake/interactive.pm:422
#, fuzzy, c-format
msgid "Remove from dm"
msgstr "Zhduke nga LVM"

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

#: diskdrake/interactive.pm:424
#, c-format
msgid "Use for loopback"
msgstr "Përdore për loopback"

#: diskdrake/interactive.pm:434
#, c-format
msgid "Create"
msgstr "Krijo"

#: diskdrake/interactive.pm:456
#, fuzzy, c-format
msgid "Failed to mount partition"
msgstr "Vendosi skedaret në një ndarje të re"

#: diskdrake/interactive.pm:490 diskdrake/interactive.pm:492
#, c-format
msgid "Create a new partition"
msgstr "Krijo një ndarje të re"

#: diskdrake/interactive.pm:494
#, c-format
msgid "Start sector: "
msgstr "Sektori fillues: "

#: diskdrake/interactive.pm:497 diskdrake/interactive.pm:1069
#, c-format
msgid "Size in MB: "
msgstr "Madhësia në MB:"

#: diskdrake/interactive.pm:499 diskdrake/interactive.pm:1070
#, c-format
msgid "Filesystem type: "
msgstr "Tip i sistemit të skedareve:"

#: diskdrake/interactive.pm:505
#, c-format
msgid "Preference: "
msgstr "Pëlqimi:"

#: diskdrake/interactive.pm:508
#, c-format
msgid "Logical volume name "
msgstr "Emri logjik i vëllimit "

#: diskdrake/interactive.pm:510
#, fuzzy, c-format
msgid "Encrypt partition"
msgstr "vërtetësim"

#: diskdrake/interactive.pm:511
#, fuzzy, c-format
msgid "Encryption key "
msgstr "Çelës kriptues"

#: diskdrake/interactive.pm:512 diskdrake/interactive.pm:1503
#, c-format
msgid "Encryption key (again)"
msgstr "Çelës kriptues (vërtetim)"

#: diskdrake/interactive.pm:524 diskdrake/interactive.pm:1499
#, c-format
msgid "The encryption keys do not match"
msgstr "Çelësat kriptues nuk përputhen"

#: diskdrake/interactive.pm:525
#, fuzzy, c-format
msgid "Missing encryption key"
msgstr "Çelës kriptues i sistemit të skedareve"

#: diskdrake/interactive.pm:545
#, c-format
msgid ""
"You cannot 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 ""
"Ju nuk mund ta krijoni një ndarje të re\n"
"(prej se keni arritur në numrin maksimal të ndarjeve primare).\n"
"Në fillim zhdukni ndarjen primare dhe krijone një ndarje të shtrire."

#: diskdrake/interactive.pm:597
#, c-format
msgid "Remove the loopback file?"
msgstr "Zhduke skedaren loopback?"

#: diskdrake/interactive.pm:620
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Mbas ndërrimit të tipit të kësaj ndarje %s, të gjitha të dhënat në këtë "
"ndarje do të zhduken "

#: diskdrake/interactive.pm:636
#, c-format
msgid "Change partition type"
msgstr "Ndryshim i tipit të ndarjes"

#: diskdrake/interactive.pm:638 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "Cilin sistem të skedareve e dëshironi?"

#: diskdrake/interactive.pm:645
#, fuzzy, c-format
msgid "Switching from %s to %s"
msgstr "Kalim nga ext2 në ext3"

#: diskdrake/interactive.pm:680
#, c-format
msgid "Set volume label"
msgstr ""

#: diskdrake/interactive.pm:682
#, c-format
msgid "Beware, this will be written to disk as soon as you validate!"
msgstr ""

#: diskdrake/interactive.pm:683
#, c-format
msgid "Beware, this will be written to disk only after formatting!"
msgstr ""

#: diskdrake/interactive.pm:685
#, c-format
msgid "Which volume label?"
msgstr ""

#: diskdrake/interactive.pm:686
#, fuzzy, c-format
msgid "Label:"
msgstr "Etiketa"

#: diskdrake/interactive.pm:707
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Ku dëshironi ta montoni skedaren loopback %s?"

#: diskdrake/interactive.pm:708
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Ku dëshironi ta montoni ndarjen %s?"

#: diskdrake/interactive.pm:713
#, c-format
msgid ""
"Cannot unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
"Është e pa mundur moszgjedhja e montimit të kësaj pike, sepse përdoret nga "
"loopback. Zhdukeni loopback në fillim"

#: diskdrake/interactive.pm:743
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Ku dëshironi ta montoni %s?"

#: diskdrake/interactive.pm:773 diskdrake/interactive.pm:869
#: fs/partitioning_wizard.pm:131 fs/partitioning_wizard.pm:207
#, c-format
msgid "Resizing"
msgstr "Ridimenzionimi"

#: diskdrake/interactive.pm:773
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "Llogaritja e kufijve të sistemit të skedareve FAT"

#: diskdrake/interactive.pm:815
#, c-format
msgid "This partition is not resizeable"
msgstr "Kjo ndarje nuk mund të ridimenzionohet"

#: diskdrake/interactive.pm:820
#, c-format
msgid "All data on this partition should be backed up"
msgstr "Të gjitha të dhënat duhet të jenë të regjistruara"

#: diskdrake/interactive.pm:822
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Mbasi që ta ridimenziononi ndarjen %s, të gjitha të dhënat në atë ndraje do "
"të zhduken"

#: diskdrake/interactive.pm:829
#, c-format
msgid "Choose the new size"
msgstr "Zgjedheni një madhësi të re"

#: diskdrake/interactive.pm:830
#, c-format
msgid "New size in MB: "
msgstr "Madhësi e re në MB:"

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

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

#: diskdrake/interactive.pm:880 fs/partitioning_wizard.pm:215
#, fuzzy, 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 ""
"Për të siguruar intergrimin e të dhënave mbasë ndrajes(ve), sistemi\n"
"verifikues i skedareve do të niset në nisjen tjetër boot mbi Windows(TM)"

#: diskdrake/interactive.pm:946 diskdrake/interactive.pm:1494
#, c-format
msgid "Filesystem encryption key"
msgstr "Çelës kriptues i sistemit të skedareve"

#: diskdrake/interactive.pm:947
#, fuzzy, c-format
msgid "Enter your filesystem encryption key"
msgstr "Zgjedheni çelësin kriptues të sistemit të skedareve"

#: diskdrake/interactive.pm:948 diskdrake/interactive.pm:1502
#, c-format
msgid "Encryption key"
msgstr "Çelës kriptues"

#: diskdrake/interactive.pm:955
#, c-format
msgid "Invalid key"
msgstr ""

#: diskdrake/interactive.pm:965
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Zgjedheni një RAID ekzistues për ta shtuar në"

#: diskdrake/interactive.pm:967 diskdrake/interactive.pm:986
#, c-format
msgid "new"
msgstr "e re"

#: diskdrake/interactive.pm:984
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Zgjedheni një LVM ekzistues për ta shtuar në"

#: diskdrake/interactive.pm:996 diskdrake/interactive.pm:1005
#, fuzzy, c-format
msgid "LVM name"
msgstr "Emër LVM?"

#: diskdrake/interactive.pm:997
#, c-format
msgid "Enter a name for the new LVM volume group"
msgstr ""

#: diskdrake/interactive.pm:1002
#, fuzzy, c-format
msgid "\"%s\" already exists"
msgstr "Skedarje është veqse prezente. Përdoreni atë?"

#: diskdrake/interactive.pm:1034
#, 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 ""

#: diskdrake/interactive.pm:1036
#, c-format
msgid "Moving physical extents"
msgstr ""

#: diskdrake/interactive.pm:1054
#, c-format
msgid "This partition cannot be used for loopback"
msgstr "Kjo ndarje nuk mund të përdoret për loopback"

#: diskdrake/interactive.pm:1067
#, c-format
msgid "Loopback"
msgstr "Loopback"

#: diskdrake/interactive.pm:1068
#, c-format
msgid "Loopback file name: "
msgstr "Emri i skedares loopback:"

#: diskdrake/interactive.pm:1073
#, c-format
msgid "Give a file name"
msgstr "Jepni një emër skedare"

#: diskdrake/interactive.pm:1076
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr ""
"Skedarja është në përdorim e sipër nga një loopback tjetër, zgjedheni një "
"tjetër"

#: diskdrake/interactive.pm:1077
#, c-format
msgid "File already exists. Use it?"
msgstr "Skedarje është veqse prezente. Përdoreni atë?"

#: diskdrake/interactive.pm:1109 diskdrake/interactive.pm:1112
#, c-format
msgid "Mount options"
msgstr "Opcionet montuese"

#: diskdrake/interactive.pm:1119
#, c-format
msgid "Various"
msgstr "Ndryshimet"

#: diskdrake/interactive.pm:1165
#, c-format
msgid "device"
msgstr "periferik"

#: diskdrake/interactive.pm:1166
#, c-format
msgid "level"
msgstr "niveli"

#: diskdrake/interactive.pm:1167
#, fuzzy, c-format
msgid "chunk size in KiB"
msgstr "madhësia e blokut"

#: diskdrake/interactive.pm:1185
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Keni kujdes: ky operacion është i rrezikshëm."

#: diskdrake/interactive.pm:1200
#, fuzzy, c-format
msgid "Partitioning Type"
msgstr "Shpërndarja"

#: diskdrake/interactive.pm:1200
#, c-format
msgid "What type of partitioning?"
msgstr "Çfarë tipi i ndarjes?"

#: diskdrake/interactive.pm:1238
#, c-format
msgid "You'll need to reboot before the modification can take effect"
msgstr ""
"Ju duhet ta rinisni sistemin tuaj që ndryshimet e bëra, të mund të përdoren"

#: diskdrake/interactive.pm:1247
#, c-format
msgid "Partition table of drive %s is going to be written to disk"
msgstr "Tabela e ndarjeve %s tani do të shkruhet në diskë"

#: diskdrake/interactive.pm:1266 fs/format.pm:107 fs/format.pm:114
#, c-format
msgid "Formatting partition %s"
msgstr "Formatimi i ndarjes %s"

#: diskdrake/interactive.pm:1279
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Mbas formatimit të ndarjes %s, të gjitha të dhënat në këtë ndarje do të "
"zhduken"

#: diskdrake/interactive.pm:1293 fs/partitioning.pm:48
#, c-format
msgid "Check for bad blocks?"
msgstr "Verifikim i bloqeve të dëmtuara?"

#: diskdrake/interactive.pm:1308
#, c-format
msgid "Move files to the new partition"
msgstr "Vendosi skedaret në një ndarje të re"

#: diskdrake/interactive.pm:1308
#, c-format
msgid "Hide files"
msgstr "Fshehi skedaret"

#: diskdrake/interactive.pm:1309
#, 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 ""

#: diskdrake/interactive.pm:1324
#, c-format
msgid "Moving files to the new partition"
msgstr "Zhvendosja e skedareve në një ndarje të re"

#: diskdrake/interactive.pm:1328
#, c-format
msgid "Copying %s"
msgstr "Kopjimi i %s"

#: diskdrake/interactive.pm:1332
#, c-format
msgid "Removing %s"
msgstr "Zhdukja e %s"

#: diskdrake/interactive.pm:1346
#, c-format
msgid "partition %s is now known as %s"
msgstr "ndarja %s tani është e njoftur sikur %s"

#: diskdrake/interactive.pm:1347
#, c-format
msgid "Partitions have been renumbered: "
msgstr ""

#: diskdrake/interactive.pm:1372 diskdrake/interactive.pm:1443
#, c-format
msgid "Device: "
msgstr "Periferik: "

#: diskdrake/interactive.pm:1373
#, c-format
msgid "Volume label: "
msgstr ""

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

#: diskdrake/interactive.pm:1375
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Shkronja lexuese DOS: %s (vetëm sypozohet)\n"

#: diskdrake/interactive.pm:1379 diskdrake/interactive.pm:1388
#: diskdrake/interactive.pm:1462
#, c-format
msgid "Type: "
msgstr "Tipi: "

#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1447
#, c-format
msgid "Name: "
msgstr "Emri: "

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

#: diskdrake/interactive.pm:1391
#, c-format
msgid "Size: %s"
msgstr "Madhësia: %s"

#: diskdrake/interactive.pm:1393
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorët"

#: diskdrake/interactive.pm:1395
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindri %d  %d\n"

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

#: diskdrake/interactive.pm:1397
#, c-format
msgid "Formatted\n"
msgstr "Formatuar\n"

#: diskdrake/interactive.pm:1398
#, c-format
msgid "Not formatted\n"
msgstr "I pa formatuar\n"

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

#: diskdrake/interactive.pm:1400
#, c-format
msgid "RAID %s\n"
msgstr "I përketë RAID %s\n"

#: diskdrake/interactive.pm:1402
#, fuzzy, c-format
msgid "Encrypted"
msgstr "Çelës kriptues"

#: diskdrake/interactive.pm:1404
#, c-format
msgid " (mapped on %s)"
msgstr ""

#: diskdrake/interactive.pm:1405
#, c-format
msgid " (to map on %s)"
msgstr ""

#: diskdrake/interactive.pm:1406
#, c-format
msgid " (inactive)"
msgstr ""

#: diskdrake/interactive.pm:1413
#, c-format
msgid ""
"Loopback file(s):\n"
"   %s\n"
msgstr ""
"Skedare(t) loopback:\n"
"   %s\n"

#: diskdrake/interactive.pm:1414
#, c-format
msgid ""
"Partition booted by default\n"
"    (for MS-DOS boot, not for lilo)\n"
msgstr ""
"Ndraje me nisje të udhëzuar në marrëveshje\n"
"    (për nisje në MS-DOS, e jo për LILO)\n"

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

#: diskdrake/interactive.pm:1417
#, fuzzy, c-format
msgid "Chunk size %d KiB\n"
msgstr "Madhësia e blokut %s\n"

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

#: diskdrake/interactive.pm:1420
#, c-format
msgid "Loopback file name: %s"
msgstr "Emri i skedares loopback: %s"

#: diskdrake/interactive.pm:1423
#, c-format
msgid ""
"\n"
"Chances are, this partition is\n"
"a Driver partition. You should\n"
"probably leave it alone.\n"
msgstr ""
"\n"
"Ekzistojnë mundësitë që kjo ndarje të\n"
"jet një ndarje piloti për sistemin.\n"
"Dhe ju nuk duhet ta ndryshoni atë.\n"

#: diskdrake/interactive.pm:1426
#, c-format
msgid ""
"\n"
"This special Bootstrap\n"
"partition is for\n"
"dual-booting your system.\n"
msgstr ""
"\n"
"Kjo ndarje e nisjes me udhëzim (bootstrap)\n"
"është e domosdoshme nëse ju posedoni\n"
"mës shumë se një sistem eksploatues.\n"

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

#: diskdrake/interactive.pm:1444
#, c-format
msgid "Read-only"
msgstr "Vetëm për ta lexuar"

#: diskdrake/interactive.pm:1445
#, c-format
msgid "Size: %s\n"
msgstr "Madhësia: %s\n"

#: diskdrake/interactive.pm:1446
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Gjeometria: %s cilindrat, %s kokat, %s sektorët\n"

#: diskdrake/interactive.pm:1448
#, fuzzy, c-format
msgid "Medium type: "
msgstr "Tip i sistemit të skedareve:"

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

#: diskdrake/interactive.pm:1450
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tabelë e ndarjeve të tipit: %s\n"

#: diskdrake/interactive.pm:1451
#, c-format
msgid "on channel %d id %d\n"
msgstr "në kanal %d id %d\n"

#: diskdrake/interactive.pm:1495
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Zgjedheni çelësin kriptues të sistemit të skedareve"

#: diskdrake/interactive.pm:1498
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Ky çelës kriptues është shumë i thjeshtë (duhet të jetë më së paku prej%d "
"shifrave)"

#: diskdrake/interactive.pm:1505
#, fuzzy, c-format
msgid "Encryption algorithm"
msgstr "vërtetësim"

#: diskdrake/removable.pm:46
#, c-format
msgid "Change type"
msgstr "Ndryshoje tipin"

#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:129 interactive.pm:550
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Anulo"

#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Cannot login using username %s (bad password?)"
msgstr "Nuk mund të lidheni me këtë emër %s (parullë e gabura?)"

#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "Nevojitet Prona Vërtetuese"

#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "Cilin emër të përdoruesit"

#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "Një tjetër"

#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
"Ju lutemi futni emrin e përdoruesit, parullën dhe emrin e pronës për të hyrë "
"në këtë server."

#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "Emri i përdoruesit"

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

#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "Hulumtim i serverave"

#: diskdrake/smbnfs_gtk.pm:211
#, c-format
msgid "Search for new servers"
msgstr "Hulumtim për serverave të rinj"

#: 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 "Pakot %s duhet të jenë instaluar. A dëshironi ti instaloni ato?"

#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:82
#, fuzzy, c-format
msgid "Could not install the %s package!"
msgstr "Instalimi i pakove %s"

#: do_pkgs.pm:28 do_pkgs.pm:65
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Pakoja e nevojshme %s mungon"

#: do_pkgs.pm:39 do_pkgs.pm:77
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Pakot e radhitura duhet të instalohen:\n"

#: do_pkgs.pm:241
#, c-format
msgid "Installing packages..."
msgstr "Intalimi i pakove..."

#: do_pkgs.pm:286 pkgs.pm:285
#, fuzzy, c-format
msgid "Removing packages..."
msgstr "Zhdukja e %s ..."

#: fs/any.pm:18
#, 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 ""
"Një gabim është paraqitur - asnjë periferik i vlefshëm s'është gjetuar për "
"të krijuar ndarje të reja. Verifikoni materialin tuaj për këto ngatërrime"

#: fs/any.pm:76 fs/partitioning_wizard.pm:64
#, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Ju duhet të posedoni një ndarje FAT të montuar në /boot/efi"

#: fs/format.pm:111
#, c-format
msgid "Creating and formatting file %s"
msgstr "Krijimi dhe formatimi i skedares %s"

#: fs/format.pm:130
#, fuzzy, c-format
msgid "I do not know how to set label on %s with type %s"
msgstr "I pa mundur formatimi i %s në tipin %s"

#: fs/format.pm:142
#, fuzzy, c-format
msgid "setting label on %s failed, is it formatted?"
msgstr "formatimi i formës %s në formën %s dështoj"

#: fs/format.pm:183
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "I pa mundur formatimi i %s në tipin %s"

#: fs/format.pm:188 fs/format.pm:190
#, c-format
msgid "%s formatting of %s failed"
msgstr "formatimi i formës %s në formën %s dështoj"

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

#: fs/mount.pm:85
#, c-format
msgid "Mounting partition %s"
msgstr "Montimi në ndarjen %s"

#: fs/mount.pm:86
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montimi i ndarjes %s në repertorin %s dështoi"

#: fs/mount.pm:91 fs/mount.pm:108
#, c-format
msgid "Checking %s"
msgstr "Verifikimi i %s"

#: fs/mount.pm:125 partition_table.pm:422
#, c-format
msgid "error unmounting %s: %s"
msgstr "gabim gjatë çmontimit %s: %s"

#: fs/mount.pm:140
#, c-format
msgid "Enabling swap partition %s"
msgstr "Aktivizimi i ndarjes swap %s"

#: fs/mount_options.pm:113
#, c-format
msgid "Enable POSIX Access Control Lists"
msgstr ""

#: fs/mount_options.pm:115
#, c-format
msgid "Flush write cache on file close"
msgstr ""

#: fs/mount_options.pm:117
#, c-format
msgid "Enable group disk quota accounting and optionally enforce limits"
msgstr ""

#: fs/mount_options.pm:119
#, c-format
msgid ""
"Do not update inode access times on this filesystem\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""
"Mos i azhurno shenjëzat hyrëse të kohës në këtë sistem të skedares\n"
"(p.sh. për hyrje më të shpejt në një lajmë bobinues për ta rritur "
"shpëjtësinë e serverav)."

#: fs/mount_options.pm:122
#, fuzzy, 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 ""
"Mos i azhurno shenjëzat hyrëse të kohës në këtë sistem të skedares\n"
"(p.sh. për hyrje më të shpejt në një lajmë bobinues për ta rritur "
"shpëjtësinë e serverav)."

#: fs/mount_options.pm:125
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
"the -a option will not cause the filesystem to be mounted)."
msgstr ""
"Mundet vetëm të me qartësi (i.e.,\n"
"opcioni -a nuk do të kudhtëzoj ndonji porblem në montimin e sistemit të "
"skedares)."

#: fs/mount_options.pm:128
#, c-format
msgid "Do not interpret character or block special devices on the filesystem."
msgstr ""
"Mos i interpretoni karakteret apo bloqet speciale të mjeteve në sistemin e "
"skedares."

#: fs/mount_options.pm:130
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
"Mos e mundëso ekzekutimin e ndonji montimi binare në\n"
"sistemin e skedares. Ky opcion mund të përdoret për server që posedojnë\n"
"sistem të skedares binar me një arkitektur tjetër që ju e posedoni."

#: fs/mount_options.pm:134
#, 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 ""
"Mos u mundëso set-user-identifier apo set-group-identifier\n"
"që të marrin efekte. (Kjo është më e sigurt, mirëpo në disa raste mund\n"
"të jetë e pa sigurt, nëse e keni të instaluar suidperl(1).)"

#: fs/mount_options.pm:138
#, c-format
msgid "Mount the filesystem read-only."
msgstr "Montoje sistemin e skedares vetëm në lexim."

#: fs/mount_options.pm:140
#, c-format
msgid "All I/O to the filesystem should be done synchronously."
msgstr "Gjitha I/O në sistemin e skedares duhet të sinkronizohen."

#: fs/mount_options.pm:142
#, c-format
msgid "Allow every user to mount and umount the filesystem."
msgstr ""

#: fs/mount_options.pm:144
#, c-format
msgid "Allow an ordinary user to mount the filesystem."
msgstr ""

#: fs/mount_options.pm:146
#, c-format
msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr ""

#: fs/mount_options.pm:148
#, c-format
msgid "Support \"user.\" extended attributes"
msgstr ""

#: fs/mount_options.pm:150
#, c-format
msgid "Give write access to ordinary users"
msgstr "Dhuro një leje shkrimi për përdorues të zakonshëm"

#: fs/mount_options.pm:152
#, fuzzy, c-format
msgid "Give read-only access to ordinary users"
msgstr "Dhuro një leje shkrimi për përdorues të zakonshëm"

#: fs/mount_point.pm:82
#, c-format
msgid "Duplicate mount point %s"
msgstr "Pikë montuese e dyfisht %s"

#: fs/mount_point.pm:97
#, c-format
msgid "No partition available"
msgstr "Asnjë ndarje e lirë"

#: fs/mount_point.pm:100
#, c-format
msgid "Scanning partitions to find mount points"
msgstr "Scanimi i ndarjeve për ti gjetur pikat montuese"

#: fs/mount_point.pm:107
#, c-format
msgid "Choose the mount points"
msgstr "Zgjedhni pikat montuese"

#: fs/partitioning.pm:46
#, c-format
msgid "Choose the partitions you want to format"
msgstr "Zgjedhni ndarjet që dëshironi ti formatoni"

#: 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 ""
"Gabim gjatë verifikimit të sistemit të skedareve %s. A dëshironi ti "
"korigjoni gabimet? (kujdes ju mund ti humbni të dhënat)"

#: fs/partitioning.pm:78
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Hapësira swap nuk është e mjaftueshme për një instalim të plot, ju lutemi "
"shtone një sasi të vogël"

#: fs/partitioning_wizard.pm:55
#, c-format
msgid ""
"You must have a root partition.\n"
"To accomplish this, create a partition (or click on an existing one).\n"
"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
"Ju duhet të posedoni një ndarje rrënjëzore (root).\n"
"Për këtë, krijoni një ndarje (apo klikoni mbi një që ekziston).\n"
"Dhe mandej klikoni mbi akcionin ``Pikë montuese'' dhe zgjedheni `/'"

#: fs/partitioning_wizard.pm:61
#, c-format
msgid ""
"You do not have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
"Ju nuk posedoni një ndarje swap.\n"
"\n"
"Vazhdo pa marrë parasysh?"

#: fs/partitioning_wizard.pm:95
#, c-format
msgid "Use free space"
msgstr "Përdore hapësirën e lirë"

#: fs/partitioning_wizard.pm:97
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Nuk posedon vendë të mjaftueshëm, për të bërë ndarje të reja"

#: fs/partitioning_wizard.pm:105
#, c-format
msgid "Use existing partitions"
msgstr "Përdori ndarjet ekzistuese"

#: fs/partitioning_wizard.pm:107
#, c-format
msgid "There is no existing partition to use"
msgstr "Asnjë ndarje egzistuese për ta përdorur"

#: fs/partitioning_wizard.pm:131
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Përdorni hapësirën e ndarjes Microsoft Windows®"

#: fs/partitioning_wizard.pm:167
#, fuzzy, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Përdore hapësirën e lirë në ndarjen Windows"

#: fs/partitioning_wizard.pm:171
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Cilën ndarje dëshironi ta ridimenziononi?"

#: fs/partitioning_wizard.pm:174
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
"the %s installation."
msgstr ""
"Ndarja e juaj Microsoft Windows® është e pa defragmentuar. Ju lutemi "
"riniseni kompjuterin tuaj në Microsoft Windows®, the niseni programin për "
"defragmentim ``defrag'', mandej riniseni instalimin e %s "

#: fs/partitioning_wizard.pm:182
#, 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 ""
"KUJDES!\n"
"\n"
"\n"
"DrakX tani do të ridimenzionoj ndarjen tuaj Windows.\n"
"\n"
"Keni kujdes: ky operacion është i rrezikshëm. Nëse ju nuk e keni bërë, "
"atëher ju më së pari duhet të dilni nga instalimi, niseni \"chdsk c:\" nga "
"Urdhëri Ftues ndër Windows (kujDES, nisja grafike e programit \"scandisk\" "
"nuk është e nevojshme, duhet të jeni i sigurt gjatë përdorimit të \"chkdsk\" "
"Urdhërit Ftues!), me opcion niset defragmatori, the mandej ri-niseni "
"instalimin. Ju duhet njashtu ti regjistroni të dhënat tuaja.\n"
"\n"
"\n"
"Kur të jeni i sigurt shtypni mbi %s."

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: fs/partitioning_wizard.pm:191 fs/partitioning_wizard.pm:559
#: interactive.pm:549 interactive/curses.pm:270 ugtk2.pm:519
#, c-format
msgid "Next"
msgstr "Tjetri"

#: fs/partitioning_wizard.pm:197
#, fuzzy, c-format
msgid "Partitionning"
msgstr "Shpërndarja"

#: fs/partitioning_wizard.pm:197
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "Cilën madhësi dëshironi ta rezervoni për Microsoft Windows® ndarja %s?"

#: fs/partitioning_wizard.pm:198
#, c-format
msgid "Size"
msgstr "Madhësia"

#: fs/partitioning_wizard.pm:207
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Ridimenzionimi ndarjes Microsoft Windows®"

#: fs/partitioning_wizard.pm:212
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Ridimenzionimi i ndarjes FAT dështoi: %s"

#: fs/partitioning_wizard.pm:228
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"Asnjë ndarje FAT për ta ridimenziunuar (ose nuk ka hapësirë të mjaftueshme)"

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

#: fs/partitioning_wizard.pm:233
#, fuzzy, c-format
msgid "Erase and use entire disk"
msgstr "Shlyeje diskun të tërësi"

#: fs/partitioning_wizard.pm:237
#, fuzzy, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr ""
"Ju posedoni më shumë se një disk të fort (hard disk drive), në cilin "
"dëshironi ta instaloni linux?"

#: fs/partitioning_wizard.pm:245 fsedit.pm:634
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Të gjitha shpërndarjet dhe të dhënat në disqe to do të zhduken %s"

#: fs/partitioning_wizard.pm:255
#, c-format
msgid "Custom disk partitioning"
msgstr "Shpërndarje e personalizuar"

#: fs/partitioning_wizard.pm:261
#, c-format
msgid "Use fdisk"
msgstr "Përdore fdisk"

#: fs/partitioning_wizard.pm:264
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, do not forget to save using `w'"
msgstr ""
"Ju mund ta shpërndani tani %s.\n"
"Kur të përfundoni, mos harroni ti regjistroni ndryshimet duke përdorur `w'"

#: fs/partitioning_wizard.pm:403
#, fuzzy, c-format
msgid "Ext2/3/4"
msgstr "Braktise"

#: fs/partitioning_wizard.pm:433 fs/partitioning_wizard.pm:579
#, c-format
msgid "I cannot find any room for installing"
msgstr "Nuk mund të gjejë vend të mjaftueshëm për ta instaluar"

#: fs/partitioning_wizard.pm:442 fs/partitioning_wizard.pm:586
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX me asistentin shpërndarës ka gjetur këto zgjedhje:"

#: fs/partitioning_wizard.pm:512
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""

#: fs/partitioning_wizard.pm:596
#, c-format
msgid "Partitioning failed: %s"
msgstr "Shpërndarja dështoi: %s"

#: fs/type.pm:389
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Ju nuk mund të përdorni JFS për ndarjet më të vogla se 16MB"

#: fs/type.pm:390
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Ju nuk mund të përdorni ReiserFS për ndarjet më të vogla se 32MB"

#: fsedit.pm:24
#, c-format
msgid "simple"
msgstr "thjeshtë"

#: fsedit.pm:28
#, c-format
msgid "with /usr"
msgstr "me /usr"

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

#: fsedit.pm:137
#, c-format
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""

#: fsedit.pm:247
#, c-format
msgid ""
"I cannot 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 ""
"Tabela e ndarjes së %s nuk mud të lexohet sepse është tejet e dëmtuar.\n"
"Dhe është e mundur që të zhduken ndarjet e dëmtuara, (TË GJITHA TË DHËNAT DO "
"TË HUMBEN!)\n"
"Zgjidhja tjetër është mos lejimi i DrakX-it ta ndryshojë tabelën e "
"ndarjeve.\n"
"(gabimi është %s)\n"
"\n"
"A pajtoheni që ti humbni të gjitha ndarjetë?\n"

#: fsedit.pm:427
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Pikat montuese duhet të fillojnë me / "

#: fsedit.pm:428
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Pikat montuese duhet të posedojnë vetëm shkronja dhe numëra"

#: fsedit.pm:429
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Pika montuese %s është në përdorim e sipër\n"

#: fsedit.pm:434
#, fuzzy, 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 separate /boot partition"
msgstr ""
"Ju keni zgjedhur një program me ndarje RAID sikur ndarje rrënjëzore root "
"(/).\n"
"Që sistemi i juaj të funksionoj si duhet, shtone një ndarje jo RAID\n"
"të repertorit ndarës /boot"

#: fsedit.pm:440
#, fuzzy, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
"separate /boot partition."
msgstr ""
"Ju keni zgjedhur një program me ndarje RAID sikur ndarje rrënjëzore root "
"(/).\n"
"Që sistemi i juaj të funksionoj si duhet, shtone një ndarje jo RAID\n"
"të repertorit ndarës /boot"

#: fsedit.pm:448
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
"No bootloader is able to handle this."
msgstr ""
"Ju keni zgjedhur një program me ndarje RAID sikur ndarje rrënjëzore root "
"(/).\n"
"Që sistemi i juaj të funksionoj si duhet, shtone një ndarje jo RAID\n"
"të repertorit ndarës /boot"

#: fsedit.pm:452
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""

#: fsedit.pm:459
#, fuzzy, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"Please be sure to add a separate /boot partition"
msgstr ""
"Ju keni zgjedhur një program me ndarje RAID sikur ndarje rrënjëzore root "
"(/).\n"
"Që sistemi i juaj të funksionoj si duhet, shtone një ndarje jo RAID\n"
"të repertorit ndarës /boot"

#: fsedit.pm:465 fsedit.pm:485
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
"Ju nuk mund ta përdorni sistemin e skedareve të kriptuara për këtë pikë "
"montuese %s"

#: fsedit.pm:469
#, fuzzy, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""
"Ju nuk mund të përdorni një ndarje logjike LVM për një pikë montuese %s"

#: fsedit.pm:471
#, fuzzy, 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 separate /boot partition first"
msgstr ""
"Ju keni zgjedhur një program me ndarje RAID sikur ndarje rrënjëzore root "
"(/).\n"
"Që sistemi i juaj të funksionoj si duhet, shtone një ndarje jo RAID\n"
"të repertorit ndarës /boot"

#: fsedit.pm:475 fsedit.pm:477
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr ""
"Ky repertor duhet të qëndroj në ndarjen rrënjëzore të sistemit të skedareve"

#: fsedit.pm:479 fsedit.pm:481 fsedit.pm:483
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
"Ju keni nevoj për një sistem të vërtet skedaresh (ext2/3/4, reiserfs, xfs, "
"ose jfs) për këtë pikë montimi\n"

#: fsedit.pm:550
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Vend i pa mjaftueshëm për një ndarje auto-huazuese"

#: fsedit.pm:552
#, c-format
msgid "Nothing to do"
msgstr "Mos bëjë asgjë"

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

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

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

#: harddrake/data.pm:92
#, fuzzy, c-format
msgid "Card readers"
msgstr "Model i kartelës:"

#: harddrake/data.pm:101
#, c-format
msgid "Firewire controllers"
msgstr "Kontrolluesit Firewire"

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

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

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

#: harddrake/data.pm:137
#, fuzzy, c-format
msgid "USB ports"
msgstr "Stampuesi USB"

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

#: harddrake/data.pm:155
#, c-format
msgid "Bridges and system controllers"
msgstr "Urat dhe sistemet kontrolluese"

#: harddrake/data.pm:167
#, c-format
msgid "Floppy"
msgstr "Disketë Floppy"

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

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

#: harddrake/data.pm:203
#, c-format
msgid "USB Mass Storage Devices"
msgstr ""

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

#: harddrake/data.pm:222
#, c-format
msgid "CD/DVD burners"
msgstr "Gdhendësit CD/DVD"

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

#: harddrake/data.pm:242
#, c-format
msgid "Tape"
msgstr "Kasetë"

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

#: harddrake/data.pm:262
#, c-format
msgid "Videocard"
msgstr "Kartelë video"

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

#: harddrake/data.pm:279
#, c-format
msgid "Tvcard"
msgstr "Kartelë TV"

#: harddrake/data.pm:289
#, c-format
msgid "Other MultiMedia devices"
msgstr "Tjetër mjet MultiMedia"

#: harddrake/data.pm:298
#, c-format
msgid "Soundcard"
msgstr "Kartelë zëri"

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

#: harddrake/data.pm:327
#, c-format
msgid "Processors"
msgstr "Procesorët"

#: harddrake/data.pm:337
#, fuzzy, c-format
msgid "ISDN adapters"
msgstr "Kartelë ISDN"

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

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

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

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

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

#: harddrake/data.pm:393
#, c-format
msgid "Ethernetcard"
msgstr "Kartelë ethernet"

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

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

#: harddrake/data.pm:432
#, c-format
msgid "Memory"
msgstr "Memoria"

#: harddrake/data.pm:441
#, c-format
msgid "Printer"
msgstr "Stampues"

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

#: harddrake/data.pm:464
#, c-format
msgid "Joystick"
msgstr "Joystick"

#: harddrake/data.pm:474
#, c-format
msgid "Keyboard"
msgstr "Tastiera"

#: harddrake/data.pm:488
#, c-format
msgid "Tablet and touchscreen"
msgstr ""

#: harddrake/data.pm:497
#, c-format
msgid "Mouse"
msgstr "Mini"

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

#: harddrake/data.pm:520
#, fuzzy, c-format
msgid "UPS"
msgstr "CUPS"

#: harddrake/data.pm:529
#, c-format
msgid "Scanner"
msgstr "Skaneri"

#: harddrake/data.pm:540
#, c-format
msgid "Unknown/Others"
msgstr "I pa njoftur/Tjerët"

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

#: harddrake/sound.pm:270
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Një moment ju lutemi... Përshtatja e konfigurimit"

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

#: harddrake/sound.pm:336
#, c-format
msgid "Use Glitch-Free mode"
msgstr ""

#: harddrake/sound.pm:342
#, c-format
msgid "Reset sound mixer to default values"
msgstr ""

#: harddrake/sound.pm:347
#, c-format
msgid "Troubleshooting"
msgstr "Telashe gjatë ndaljes"

#: harddrake/sound.pm:354
#, c-format
msgid "No alternative driver"
msgstr "Asnjë pilot alternativ"

#: harddrake/sound.pm:355
#, c-format
msgid ""
"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
"currently uses \"%s\""
msgstr ""
"Asnjë pilot OSS apo ALSA alternativ për kartelën tuaj të zërit (%s) që "
"përdoret aktualisht \"%s\""

#: harddrake/sound.pm:362
#, c-format
msgid "Sound configuration"
msgstr "Konfigurimi i zërit"

#: harddrake/sound.pm:364
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
"sound card (%s)."
msgstr ""
"Këtu ju mund ti zgjidhni pilotët alternativ (OSS apo ALSA) për kartelën tuaj "
"të zërit (%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:369
#, fuzzy, c-format
msgid ""
"\n"
"\n"
"Your card currently uses the %s\"%s\" driver (the default driver for your "
"card is \"%s\")"
msgstr ""
"\n"
"\n"
"Kartela e juaj aktualisht e përdorë pilotin %s\"%s\" (piloti me marrëveshje "
"është \"%s\")"

#: harddrake/sound.pm:371
#, 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) është një API fillestar sonor. Dhe është multi plate-"
"formë (në shumicën e sistemeve eksploatuese UNIX(tm)) mirëpo është i "
"kufizuar me nivele të ulta.\n"
"Njashtu të gjithë pilotët OSS e kanë rishpikurë rrotën.\n"
"\n"
"ALSA (Advanced Linux Sound Architecture) është një arçitekturë e moduleve "
"që\n"
"përmban një numër të madhë kartelash ISA, USB dhe PCI.\n"
"\n"
"Ajo funrnizon njashtu edhe një API me nivel tejet më të lartë se sa OSS.\n"
"\n"
"Për ta përdorur ALSA, është e mundur të përdoret:\n"
"- kontabiliteti me API OSS të vjetër\n"
"- dhe API ALSA e re që furnizon një numër të madhë të mundësive në përparim "
"mirëpo i nevojitet biloteka ALSA.\n"

#: harddrake/sound.pm:385 harddrake/sound.pm:468
#, c-format
msgid "Driver:"
msgstr "Pilot:"

#: harddrake/sound.pm:399
#, 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 ""
"Piloti i vjetër \"%s\" gjindet në listën e zezë.\n"
"\n"
"Shumica e personelit ka shkaktuar probleme me kernel gjatë ndaljes së "
"kompjuterit.\n"
"\n"
"Piloti i ri \"%s\" do të jetë në përdorim vetëm mbas nisjes së ardhëshme."

#: harddrake/sound.pm:407
#, c-format
msgid "No open source driver"
msgstr "Asnjë burim i hapur për pilotin"

#: harddrake/sound.pm:408
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
"driver at \"%s\"."
msgstr ""
"Asnjë pilot i lirë për kartelën tuaj të zërit (%s), mirëpo aty gjindet një "
"pilot me pronë në \"%s\"."

#: harddrake/sound.pm:411
#, c-format
msgid "No known driver"
msgstr "Asnjë pilot i njoftur"

#: harddrake/sound.pm:412
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Nuk ka pilotë të njoftur për kartelën tuaj të zërit (%s)"

#: harddrake/sound.pm:427
#, c-format
msgid "Sound troubleshooting"