aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acm/acm_file.php
blob: 524a28561ec46c2faad3a5133d3bea70d05e7f52 (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
<?php
/**
*
* @package acm
* @version $Id$
* @copyright (c) 2005, 2009 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/

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

/**
* ACM File Based Caching
* @package acm
*/
class acm
{
	var $vars = array();
	var $var_expires = array();
	var $is_modified = false;

	var $sql_rowset = array();
	var $sql_row_pointer = array();
	var $cache_dir = '';

	/**
	* Set cache path
	*/
	function acm()
	{
		global $phpbb_root_path;
		$this->cache_dir = $phpbb_root_path . 'cache/';
	}

	/**
	* Load global cache
	*/
	function load()
	{
		return $this->_read('data_global');
	}

	/**
	* Unload cache object
	*/
	function unload()
	{
		$this->save();
		unset($this->vars);
		unset($this->var_expires);
		unset($this->sql_rowset);
		unset($this->sql_row_pointer);

		$this->vars = array();
		$this->var_expires = array();
		$this->sql_rowset = array();
		$this->sql_row_pointer = array();
	}

	/**
	* Save modified objects
	*/
	function save()
	{
		if (!$this->is_modified)
		{
			return;
		}

		global $phpEx;

		if (!$this->_write('data_global'))
		{
			if (!function_exists('phpbb_is_writable'))
			{
				global $phpbb_root_path;
				include($phpbb_root_path . 'includes/functions.' . $phpEx);
			}

			// Now, this occurred how often? ... phew, just tell the user then...
			if (!phpbb_is_writable($this->cache_dir))
			{
				// We need to use die() here, because else we may encounter an infinite loop (the message handler calls $cache->unload())
				die('Fatal: ' . $this->cache_dir . ' is NOT writable.');
				exit;
			}

			die('Fatal: Not able to open ' . $this->cache_dir . 'data_global.' . $phpEx);
			exit;
		}

		$this->is_modified = false;
	}

	/**
	* Tidy cache
	*/
	function tidy()
	{
		global $phpEx;

		$dir = @opendir($this->cache_dir);

		if (!$dir)
		{
			return;
		}

		$time = time();

		while (($entry = readdir($dir)) !== false)
		{
			if (!preg_match('/^(sql_|data_(?!global))/', $entry))
			{
				continue;
			}

			if (!($handle = @fopen($this->cache_dir . $entry, 'rb')))
			{
				continue;
			}

			// Skip the PHP header
			fgets($handle);

			// Skip expiration
			$expires = (int) fgets($handle);

			fclose($handle);

			if ($time >= $expires)
			{
				$this->remove_file($this->cache_dir . $entry);
			}
		}
		closedir($dir);

		if (file_exists($this->cache_dir . 'data_global.' . $phpEx))
		{
			if (!sizeof($this->vars))
			{
				$this->load();
			}

			foreach ($this->var_expires as $var_name => $expires)
			{
				if ($time >= $expires)
				{
					$this->destroy($var_name);
				}
			}
		}

		set_config('cache_last_gc', time(), true);
	}

	/**
	* Get saved cache object
	*/
	function get($var_name)
	{
		if ($var_name[0] == '_')
		{
			global $phpEx;

			if (!$this->_exists($var_name))
			{
				return false;
			}

			return $this->_read('data' . $var_name);
		}
		else
		{
			return ($this->_exists($var_name)) ? $this->vars[$var_name] : false;
		}
	}

	/**
	* Put data into cache
	*/
	function put($var_name, $var, $ttl = 31536000)
	{
		if ($var_name[0] == '_')
		{
			$this->_write('data' . $var_name, $var, time() + $ttl);
		}
		else
		{
			$this->vars[$var_name] = $var;
			$this->var_expires[$var_name] = time() + $ttl;
			$this->is_modified = true;
		}
	}

	/**
	* Purge cache data
	*/
	function purge()
	{
		// Purge all phpbb cache files
		$dir = @opendir($this->cache_dir);

		if (!$dir)
		{
			return;
		}

		while (($entry = readdir($dir)) !== false)
		{
			if (strpos($entry, 'sql_') !== 0 && strpos($entry, 'data_') !== 0 && strpos($entry, 'ctpl_') !== 0 && strpos($entry, 'tpl_') !== 0)
			{
				continue;
			}

			$this->remove_file($this->cache_dir . $entry);
		}
		closedir($dir);

		unset($this->vars);
		unset($this->var_expires);
		unset($this->sql_rowset);
		unset($this->sql_row_pointer);

		$this->vars = array();
		$this->var_expires = array();
		$this->sql_rowset = array();
		$this->sql_row_pointer = array();

		$this->is_modified = false;
	}

	/**
	* Destroy cache data
	*/
	function destroy($var_name, $table = '')
	{
		global $phpEx;

		if ($var_name == 'sql' && !empty($table))
		{
			if (!is_array($table))
			{
				$table = array($table);
			}

			$dir = @opendir($this->cache_dir);

			if (!$dir)
			{
				return;
			}

			while (($entry = readdir($dir)) !== false)
			{
				if (strpos($entry, 'sql_') !== 0)
				{
					continue;
				}

				if (!($handle = @fopen($this->cache_dir . $entry, 'rb')))
				{
					continue;
				}

				// Skip the PHP header
				fgets($handle);

				// Skip expiration
				fgets($handle);

				// Grab the query, remove the LF
				$query = substr(fgets($handle), 0, -1);

				fclose($handle);

				foreach ($table as $check_table)
				{
					// Better catch partial table names than no table names. ;)
					if (strpos($query, $check_table) !== false)
					{
						$this->remove_file($this->cache_dir . $entry);
						break;
					}
				}
			}
			closedir($dir);

			return;
		}

		if (!$this->_exists($var_name))
		{
			return;
		}

		if ($var_name[0] == '_')
		{
			$this->remove_file($this->cache_dir . 'data' . $var_name . ".$phpEx", true);
		}
		else if (isset($this->vars[$var_name]))
		{
			$this->is_modified = true;
			unset($this->vars[$var_name]);
			unset($this->var_expires[$var_name]);

			// We save here to let the following cache hits succeed
			$this->save();
		}
	}

	/**
	* Check if a given cache entry exist
	*/
	function _exists($var_name)
	{
		if ($var_name[0] == '_')
		{
			global $phpEx;
			return file_exists($this->cache_dir . 'data' . $var_name . ".$phpEx");
		}
		else
		{
			if (!sizeof($this->vars))
			{
				$this->load();
			}

			if (!isset($this->var_expires[$var_name]))
			{
				return false;
			}

			return (time() > $this->var_expires[$var_name]) ? false : isset($this->vars[$var_name]);
		}
	}

	/**
	* Load cached sql query
	*/
	function sql_load($query)
	{
		// Remove extra spaces and tabs
		$query = preg_replace('/[\n\r\s\t]+/', ' ', $query);

		if (($rowset = $this->_read('sql_' . md5($query))) === false)
		{
			return false;
		}

		$query_id = sizeof($this->sql_rowset);
		$this->sql_rowset[$query_id] = $rowset;
		$this->sql_row_pointer[$query_id] = 0;

		return $query_id;
	}

	/**
	* Save sql query
	*/
	function sql_save($query, &$query_result, $ttl)
	{
		global $db;

		// Remove extra spaces and tabs
		$query = preg_replace('/[\n\r\s\t]+/', ' ', $query);

		$query_id = sizeof($this->sql_rowset);
		$this->sql_rowset[$query_id] = array();
		$this->sql_row_pointer[$query_id] = 0;

		while ($row = $db->sql_fetchrow($query_result))
		{
			$this->sql_rowset[$query_id][] = $row;
		}
		$db->sql_freeresult($query_result);

		if ($this->_write('sql_' . md5($query), $this->sql_rowset[$query_id], $ttl + time(), $query))
		{
			$query_result = $query_id;
		}
	}

	/**
	* Ceck if a given sql query exist in cache
	*/
	function sql_exists($query_id)
	{
		return isset($this->sql_rowset[$query_id]);
	}

	/**
	* Fetch row from cache (database)
	*/
	function sql_fetchrow($query_id)
	{
		if ($this->sql_row_pointer[$query_id] < sizeof($this->sql_rowset[$query_id]))
		{
			return $this->sql_rowset[$query_id][$this->sql_row_pointer[$query_id]++];
		}

		return false;
	}

	/**
	* Fetch a field from the current row of a cached database result (database)
	*/
	function sql_fetchfield($query_id, $field)
	{
		if ($this->sql_row_pointer[$query_id] < sizeof($this->sql_rowset[$query_id]))
		{
			return (isset($this->sql_rowset[$query_id][$this->sql_row_pointer[$query_id]][$field])) ? $this->sql_rowset[$query_id][$this->sql_row_pointer[$query_id]++][$field] : false;
		}

		return false;
	}

	/**
	* Seek a specific row in an a cached database result (database)
	*/
	function sql_rowseek($rownum, $query_id)
	{
		if ($rownum >= sizeof($this->sql_rowset[$query_id]))
		{
			return false;
		}

		$this->sql_row_pointer[$query_id] = $rownum;
		return true;
	}

	/**
	* Free memory used for a cached database result (database)
	*/
	function sql_freeresult($query_id)
	{
		if (!isset($this->sql_rowset[$query_id]))
		{
			return false;
		}

		unset($this->sql_rowset[$query_id]);
		unset($this->sql_row_pointer[$query_id]);

		return true;
	}

	/**
	* Read cached data from a specified file
	*
	* @access private
	* @param string $filename Filename to write
	* @return mixed False if an error was encountered, otherwise the data type of the cached data
	*/
	function _read($filename)
	{
		global $phpEx;

		$file = "{$this->cache_dir}$filename.$phpEx";

		$type = substr($filename, 0, strpos($filename, '_'));

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

		if (!($handle = @fopen($file, 'rb')))
		{
			return false;
		}

		// Skip the PHP header
		fgets($handle);

		if ($filename == 'data_global')
		{
			$this->vars = $this->var_expires = array();

			$time = time();

			while (($expires = (int) fgets($handle)) && !feof($handle))
			{
				// Number of bytes of data
				$bytes = substr(fgets($handle), 0, -1);

				if (!is_numeric($bytes) || ($bytes = (int) $bytes) === 0)
				{
					// We cannot process the file without a valid number of bytes
					// so we discard it
					fclose($handle);

					$this->vars = $this->var_expires = array();
					$this->is_modified = false;

					$this->remove_file($file);

					return false;
				}

				if ($time >= $expires)
				{
					fseek($handle, $bytes, SEEK_CUR);

					continue;
				}

				$var_name = substr(fgets($handle), 0, -1);

				// Read the length of bytes that consists of data.
				$data = fread($handle, $bytes - strlen($var_name));
				$data = @unserialize($data);

				// Don't use the data if it was invalid
				if ($data !== false)
				{
					$this->vars[$var_name] = $data;
					$this->var_expires[$var_name] = $expires;
				}

				// Absorb the LF
				fgets($handle);
			}

			fclose($handle);

			$this->is_modified = false;

			return true;
		}
		else
		{
			$data = false;
			$line = 0;

			while (($buffer = fgets($handle)) && !feof($handle))
			{
				$buffer = substr($buffer, 0, -1); // Remove the LF

				// $buffer is only used to read integers
				// if it is non numeric we have an invalid
				// cache file, which we will now remove.
				if (!is_numeric($buffer))
				{
					break;
				}

				if ($line == 0)
				{
					$expires = (int) $buffer;

					if (time() >= $expires)
					{
						break;
					}

					if ($type == 'sql')
					{
						// Skip the query
						fgets($handle);
					}
				}
				else if ($line == 1)
				{
					$bytes = (int) $buffer;

					// Never should have 0 bytes
					if (!$bytes)
					{
						break;
					}

					// Grab the serialized data
					$data = fread($handle, $bytes);

					// Read 1 byte, to trigger EOF
					fread($handle, 1);

					if (!feof($handle))
					{
						// Somebody tampered with our data
						$data = false;
					}
					break;
				}
				else
				{
					// Something went wrong
					break;
				}
				$line++;
			}
			fclose($handle);

			// unserialize if we got some data
			$data = ($data !== false) ? @unserialize($data) : $data;

			if ($data === false)
			{
				$this->remove_file($file);
				return false;
			}

			return $data;
		}
	}

	/**
	* Write cache data to a specified file
	*
	* 'data_global' is a special case and the generated format is different for this file:
	* <code>
	* <?php exit; ?>
	* (expiration)
	* (length of var and serialised data)
	* (var)
	* (serialised data)
	* ... (repeat)
	* </code>
	*
	* The other files have a similar format:
	* <code>
	* <?php exit; ?>
	* (expiration)
	* (query) [SQL files only]
	* (length of serialised data)
	* (serialised data)
	* </code>
	*
	* @access private
	* @param string $filename Filename to write
	* @param mixed $data Data to store
	* @param int $expires Timestamp when the data expires
	* @param string $query Query when caching SQL queries
	* @return bool True if the file was successfully created, otherwise false
	*/
	function _write($filename, $data = null, $expires = 0, $query = '')
	{
		global $phpEx;

		$file = "{$this->cache_dir}$filename.$phpEx";

		if ($handle = @fopen($file, 'wb'))
		{
			@flock($handle, LOCK_EX);

			// File header
			fwrite($handle, '<' . '?php exit; ?' . '>');

			if ($filename == 'data_global')
			{
				// Global data is a different format
				foreach ($this->vars as $var => $data)
				{
					if (strpos($var, "\r") !== false || strpos($var, "\n") !== false)
					{
						// CR/LF would cause fgets() to read the cache file incorrectly
						// do not cache test entries, they probably won't be read back
						// the cache keys should really be alphanumeric with a few symbols.
						continue;
					}
					$data = serialize($data);

					// Write out the expiration time
					fwrite($handle, "\n" . $this->var_expires[$var] . "\n");

					// Length of the remaining data for this var (ignoring two LF's)
					fwrite($handle, strlen($data . $var) . "\n");
					fwrite($handle, $var . "\n");
					fwrite($handle, $data);
				}
			}
			else
			{
				fwrite($handle, "\n" . $expires . "\n");

				if (strpos($filename, 'sql_') === 0)
				{
					fwrite($handle, $query . "\n");
				}
				$data = serialize($data);

				fwrite($handle, strlen($data) . "\n");
				fwrite($handle, $data);
			}

			@flock($handle, LOCK_UN);
			fclose($handle);

			if (!function_exists('phpbb_chmod'))
			{
				global $phpbb_root_path;
				include($phpbb_root_path . 'includes/functions.' . $phpEx);
			}

			phpbb_chmod($file, CHMOD_READ | CHMOD_WRITE);

			return true;
		}

		return false;
	}

	/**
	* Removes/unlinks file
	*/
	function remove_file($filename, $check = false)
	{
		if (!function_exists('phpbb_is_writable'))
		{
			global $phpbb_root_path, $phpEx;
			include($phpbb_root_path . 'includes/functions.' . $phpEx);
		}

		if ($check && !phpbb_is_writable($this->cache_dir))
		{
			// E_USER_ERROR - not using language entry - intended.
			trigger_error('Unable to remove files within ' . $this->cache_dir . '. Please check directory permissions.', E_USER_ERROR);
		}

		return @unlink($filename);
	}
}

?>
'ctx'> #, c-format
msgid "Public"
-msgstr ""
+msgstr "Offentlig"
#: standalone/draksambashare:66 standalone/draksambashare:102
-#, fuzzy, c-format
+#, c-format
msgid "Writable"
-msgstr "Skriv"
+msgstr "Skrivbar"
#: standalone/draksambashare:67 standalone/draksambashare:143
#, fuzzy, c-format
@@ -21959,14 +21959,14 @@ msgstr "Navn på certifikat"
#: standalone/draksambashare:373 standalone/draksambashare:587
#: standalone/draksambashare:768
-#, fuzzy, c-format
+#, c-format
msgid "Comment:"
-msgstr "Udfør"
+msgstr "Kommentar:"
#: standalone/draksambashare:374
-#, fuzzy, c-format
+#, c-format
msgid "Path:"
-msgstr "Sti"
+msgstr "Sti:"
#: standalone/draksambashare:379
#, c-format
@@ -22042,7 +22042,7 @@ msgstr ""
#: standalone/draksambashare:586
#, c-format
msgid "Printer name:"
-msgstr ""
+msgstr "Printernavn:"
#: standalone/draksambashare:592 standalone/draksambashare:773
#, fuzzy, c-format
@@ -22057,7 +22057,7 @@ msgstr "Bladr"
#: standalone/draksambashare:598
#, c-format
msgid "Advanced options"
-msgstr ""
+msgstr "Avancerede tilvalg"
#: standalone/draksambashare:600
#, c-format
@@ -22092,7 +22092,7 @@ msgstr ""
#: standalone/draksambashare:613
#, c-format
msgid "Printing:"
-msgstr ""
+msgstr "Udskriver:"
#: standalone/draksambashare:629
#, c-format
@@ -22158,7 +22158,7 @@ msgstr ""
#: standalone/draksambashare:928
#, c-format
msgid "User name:"
-msgstr ""
+msgstr "Brugernavn:"
#: standalone/draksambashare:929 standalone/harddrake2:551
#, c-format
@@ -22208,7 +22208,7 @@ msgstr ""
#: standalone/draksambashare:1193
#, c-format
msgid "Printers"
-msgstr ""
+msgstr "Printere"
#: standalone/draksambashare:1201
#, c-format
@@ -22574,12 +22574,12 @@ msgstr ""
#: standalone/draksplash:71
#, c-format
msgid "Text color"
-msgstr ""
+msgstr "Tekstfarve"
#: standalone/draksplash:72
#, c-format
msgid "Background color"
-msgstr ""
+msgstr "Baggrundsfarve"
#: standalone/draksplash:74
#, c-format
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index 7ea0f5703..ee382efb6 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po
@@ -21551,7 +21551,7 @@ msgstr "Allen Benutzern erlauben"
#: standalone/drakids:57
#, c-format
msgid "Log"
-msgstr ""
+msgstr "Protokoll"
#: standalone/drakids:61
#, fuzzy, c-format
@@ -22238,9 +22238,9 @@ msgid "Share directory"
msgstr "Verzeichnis freigeben"
#: standalone/draksambashare:63 standalone/draksambashare:96
-#, fuzzy, c-format
+#, c-format
msgid "Comment"
-msgstr "Festlegen"
+msgstr "Kommentar"
#: standalone/draksambashare:64 standalone/draksambashare:97
#, fuzzy, c-format
@@ -22250,12 +22250,12 @@ msgstr "durchsuchen"
#: standalone/draksambashare:65
#, c-format
msgid "Public"
-msgstr ""
+msgstr "Öffentlich"
#: standalone/draksambashare:66 standalone/draksambashare:102
-#, fuzzy, c-format
+#, c-format
msgid "Writable"
-msgstr "Schreiben"
+msgstr "Schreibbar"
#: standalone/draksambashare:67 standalone/draksambashare:143
#, fuzzy, c-format
@@ -22426,14 +22426,14 @@ msgstr "Name des Zertifikats"
#: standalone/draksambashare:373 standalone/draksambashare:587
#: standalone/draksambashare:768
-#, fuzzy, c-format
+#, c-format
msgid "Comment:"
-msgstr "Festlegen"
+msgstr "Kommentar:"
#: standalone/draksambashare:374
-#, fuzzy, c-format
+#, c-format
msgid "Path:"
-msgstr "Pfad"
+msgstr "Pfad:"
#: standalone/draksambashare:379
#, c-format
@@ -22509,7 +22509,7 @@ msgstr ""
#: standalone/draksambashare:586
#, c-format
msgid "Printer name:"
-msgstr ""
+msgstr "Druckername:"
#: standalone/draksambashare:592 standalone/draksambashare:773
#, fuzzy, c-format
@@ -22524,7 +22524,7 @@ msgstr ""
#: standalone/draksambashare:598
#, c-format
msgid "Advanced options"
-msgstr ""
+msgstr "Erweiterte Einstellungen"
#: standalone/draksambashare:600
#, c-format
@@ -22559,7 +22559,7 @@ msgstr ""
#: standalone/draksambashare:613
#, c-format
msgid "Printing:"
-msgstr ""
+msgstr "Drucken:"
#: standalone/draksambashare:629
#, c-format
@@ -22625,7 +22625,7 @@ msgstr ""
#: standalone/draksambashare:928
#, c-format
msgid "User name:"
-msgstr ""
+msgstr "Benutzername:"
#: standalone/draksambashare:929 standalone/harddrake2:551
#, c-format
@@ -22675,7 +22675,7 @@ msgstr ""
#: standalone/draksambashare:1193
#, c-format
msgid "Printers"
-msgstr ""
+msgstr "Drucker"
#: standalone/draksambashare:1201
#, c-format
@@ -23044,12 +23044,12 @@ msgstr ""
#: standalone/draksplash:71
#, c-format
msgid "Text color"
-msgstr ""
+msgstr "Textfarbe"
#: standalone/draksplash:72
#, c-format
msgid "Background color"
-msgstr ""
+msgstr "Hintergrundfarbe"
#: standalone/draksplash:74
#, c-format
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index d65dbb798..60fd0aebf 100644
--- a/perl-install/share/po/el.po
+++ b/perl-install/share/po/el.po
@@ -5795,7 +5795,7 @@ msgstr ""
#: install_any.pm:522 standalone/draknfs:288
#, c-format
msgid "Directory"
-msgstr ""
+msgstr "Κατάλογος"
#: install_any.pm:571
#, fuzzy, c-format
@@ -10727,14 +10727,14 @@ msgid "Ad-hoc"
msgstr ""
#: network/netconnect.pm:1008
-#, fuzzy, c-format
+#, c-format
msgid "Managed"
-msgstr "Επιλέξτε γλώσσα"
+msgstr "Διαχειρίσιμο"
#: network/netconnect.pm:1008
-#, fuzzy, c-format
+#, c-format
msgid "Master"
-msgstr "Μαγιότ"
+msgstr "Πρωτεύων"
#: network/netconnect.pm:1008
#, c-format
@@ -10909,7 +10909,7 @@ msgstr ""
#: network/netconnect.pm:1135
#, c-format
msgid "PID"
-msgstr ""
+msgstr "PID"
#: network/netconnect.pm:1163
#, c-format
@@ -16188,9 +16188,9 @@ msgid "Groupware"
msgstr "oμάδα"
#: share/compssUsers.pl:90
-#, fuzzy, c-format
+#, c-format
msgid "Kolab Server"
-msgstr "Εξυπηρετητής Samba"
+msgstr "Εξυπηρετητής του Kolab"
#: share/compssUsers.pl:93 share/compssUsers.pl:134
#, c-format
@@ -19113,7 +19113,7 @@ msgstr ""
#: standalone/drakboot:127
#, c-format
msgid "Silent"
-msgstr ""
+msgstr "Σιωπηλό"
#: standalone/drakboot:134
#, c-format
@@ -20421,7 +20421,7 @@ msgstr "Λεπτομερείς πληροφορίες"
#: standalone/drakhosts:115
#, c-format
msgid "IP address:"
-msgstr ""
+msgstr "Διεύθυνση IP:"
#: standalone/drakhosts:116
#, c-format
@@ -20476,7 +20476,7 @@ msgstr "Επιτρέπεται για όλους τους χρήστες"
#: standalone/drakids:57
#, c-format
msgid "Log"
-msgstr ""
+msgstr "Καταγραφή"
#: standalone/drakids:61
#, fuzzy, c-format
@@ -20516,9 +20516,9 @@ msgid "Unable to contact daemon"
msgstr "Αδυναμία fork: %s"
#: standalone/drakids:191
-#, fuzzy, c-format
+#, c-format
msgid "Date"
-msgstr "Κατάσταση:"
+msgstr "Ημερομηνία"
#: standalone/drakids:192
#, fuzzy, c-format
@@ -20531,9 +20531,9 @@ msgid "Attack type"
msgstr "Τύπος πρόσβασης: %s\n"
#: standalone/drakids:194
-#, fuzzy, c-format
+#, c-format
msgid "Service"
-msgstr "Υπηρεσίες"
+msgstr "Υπηρεσία"
#: standalone/drakids:195
#, c-format
@@ -20702,7 +20702,7 @@ msgstr ""
#: standalone/draksambashare:767
#, c-format
msgid "Directory:"
-msgstr ""
+msgstr "Κατάλογος:"
#: standalone/draknfs:394
#, c-format
@@ -20727,7 +20727,7 @@ msgstr ""
#: standalone/draknfs:401
#, c-format
msgid "User ID:"
-msgstr ""
+msgstr "Ταυτότητα χρήστη:"
#: standalone/draknfs:401
#, c-format
@@ -20767,12 +20767,12 @@ msgstr ""
#: standalone/draknfs:527
#, c-format
msgid "General Options"
-msgstr ""
+msgstr "Γενικές επιλογές"
#: standalone/draknfs:527
#, c-format
msgid "Custom Options"
-msgstr ""
+msgstr "Επιλογές προσαρμογής"
#: standalone/draknfs:539 standalone/draksambashare:625
#: standalone/draksambashare:792
@@ -21103,9 +21103,9 @@ msgid "Share directory"
msgstr "Δεν είναι κατάλογος"
#: standalone/draksambashare:63 standalone/draksambashare:96
-#, fuzzy, c-format
+#, c-format
msgid "Comment"
-msgstr "Commit"
+msgstr "Σχόλιο"
#: standalone/draksambashare:64 standalone/draksambashare:97
#, fuzzy, c-format
@@ -21115,12 +21115,12 @@ msgstr "Αναζήτηση"
#: standalone/draksambashare:65
#, c-format
msgid "Public"
-msgstr ""
+msgstr "Δημόσιο"
#: standalone/draksambashare:66 standalone/draksambashare:102
-#, fuzzy, c-format
+#, c-format
msgid "Writable"
-msgstr "Εγγραφή"
+msgstr "Εγγράψιμο"
#: standalone/draksambashare:67 standalone/draksambashare:143
#, fuzzy, c-format
@@ -21291,14 +21291,14 @@ msgstr "Όνομα εκτυπωτή"
#: standalone/draksambashare:373 standalone/draksambashare:587
#: standalone/draksambashare:768
-#, fuzzy, c-format
+#, c-format
msgid "Comment:"
-msgstr "Commit"
+msgstr "Σχόλιο:"
#: standalone/draksambashare:374
-#, fuzzy, c-format
+#, c-format
msgid "Path:"
-msgstr "Θέση"
+msgstr "Διαδρομή:"
#: standalone/draksambashare:379
#, c-format
@@ -21374,7 +21374,7 @@ msgstr ""
#: standalone/draksambashare:586
#, c-format
msgid "Printer name:"
-msgstr ""
+msgstr "Όνομα εκτυπωτή:"
#: standalone/draksambashare:592 standalone/draksambashare:773
#, fuzzy, c-format
@@ -21389,7 +21389,7 @@ msgstr "Αναζήτηση"
#: standalone/draksambashare:598
#, c-format
msgid "Advanced options"
-msgstr ""
+msgstr "Προχωρημένες επιλογές"
#: standalone/draksambashare:600
#, c-format
@@ -21424,7 +21424,7 @@ msgstr ""
#: standalone/draksambashare:613
#, c-format
msgid "Printing:"
-msgstr ""
+msgstr "Εκτύπωση:"
#: standalone/draksambashare:629
#, c-format
@@ -21490,7 +21490,7 @@ msgstr ""
#: standalone/draksambashare:928
#, c-format
msgid "User name:"
-msgstr ""
+msgstr "Όνομα χρήστη:"
#: standalone/draksambashare:929 standalone/harddrake2:551
#, c-format
@@ -21540,7 +21540,7 @@ msgstr ""
#: standalone/draksambashare:1193
#, c-format
msgid "Printers"
-msgstr ""
+msgstr "Εκτυπωτές"
#: standalone/draksambashare:1201
#, c-format
@@ -21859,12 +21859,12 @@ msgstr ""
#: standalone/draksplash:71
#, c-format
msgid "Text color"
-msgstr ""
+msgstr "Χρώμα κειμένου"
#: standalone/draksplash:72
#, c-format
msgid "Background color"
-msgstr ""
+msgstr "Χρώμα φόντου"
#: standalone/draksplash:74
#, c-format
@@ -23023,7 +23023,7 @@ msgstr "Ασφάλεια"
#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
#, c-format
msgid "off"
-msgstr ""
+msgstr "ανενεργό"
#: standalone/drakvpn:1047 standalone/drakvpn:1063 standalone/drakvpn:1076
#, c-format
@@ -23194,9 +23194,9 @@ msgid "Upper-layer protocol"
msgstr "Ευρωπαϊκό πρωτόκολλο"
#: standalone/drakvpn:1122 standalone/drakvpn:1129
-#, fuzzy, c-format
+#, c-format
msgid "any"
-msgstr "Ημέρα"
+msgstr "κάθε"
#: standalone/drakvpn:1124
#, c-format
@@ -23259,9 +23259,9 @@ msgid "use"
msgstr "Ποντίκι"
#: standalone/drakvpn:1132
-#, fuzzy, c-format
+#, c-format
msgid "unique"
-msgstr "Μαρτινίκα"
+msgstr "μοναδικό"
#: standalone/drakxtv:45
#, c-format
@@ -24851,9 +24851,9 @@ msgid "Connection Type"
msgstr "Τύπος σύνδεσης"
#: standalone/printerdrake:231
-#, fuzzy, c-format
+#, c-format
msgid "Server Name"
-msgstr "Όνομα Διακομιστή:"
+msgstr "Όνομα εξυπηρετητή"
#. -PO: "Add Printer" is a button text and the translation has to be AS SHORT AS POSSIBLE
#: standalone/printerdrake:239
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index 827c140af..288027c57 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -10105,7 +10105,7 @@ msgstr ""
#: network/netconnect.pm:1135
#, c-format
msgid "PID"
-msgstr ""
+msgstr "PID"
#: network/netconnect.pm:1163
#, c-format
@@ -17782,7 +17782,7 @@ msgstr ""
#: standalone/drakboot:127
#, c-format
msgid "Silent"
-msgstr ""
+msgstr "Silentigu"
#: standalone/drakboot:134
#, c-format
@@ -19102,7 +19102,7 @@ msgstr "Permesu ĉiujn uzulojn"
#: standalone/drakids:57
#, c-format
msgid "Log"
-msgstr ""
+msgstr "Protokolo"
#: standalone/drakids:61
#, fuzzy, c-format
@@ -19142,9 +19142,9 @@ msgid "Unable to contact daemon"
msgstr "Ne povis kontakti spegulon %s"
#: standalone/drakids:191
-#, fuzzy, c-format
+#, c-format
msgid "Date"
-msgstr "Stato"
+msgstr "Dato"
#: standalone/drakids:192
#, fuzzy, c-format
@@ -19157,9 +19157,9 @@ msgid "Attack type"
msgstr "Speco: "
#: standalone/drakids:194
-#, fuzzy, c-format
+#, c-format
msgid "Service"
-msgstr "Servoj"
+msgstr "Servo"
#: standalone/drakids:195
#, c-format
@@ -19328,7 +19328,7 @@ msgstr ""
#: standalone/draksambashare:767
#, c-format
msgid "Directory:"
-msgstr ""
+msgstr "Dosierujo:"
#: standalone/draknfs:394
#, c-format
@@ -19353,7 +19353,7 @@ msgstr ""
#: standalone/draknfs:401
#, c-format
msgid "User ID:"
-msgstr ""
+msgstr "Uzantnumero:"
#: standalone/draknfs:401
#, c-format
@@ -19393,7 +19393,7 @@ msgstr ""
#: standalone/draknfs:527
#, c-format
msgid "General Options"
-msgstr ""
+msgstr "Ĝeneralaj opcioj"
#: standalone/draknfs:527
#, c-format
@@ -19725,9 +19725,9 @@ msgid "Share directory"
msgstr "Ne estas dosierujo"
#: standalone/draksambashare:63 standalone/draksambashare:96
-#, fuzzy, c-format
+#, c-format
msgid "Comment"
-msgstr "kompakta"
+msgstr "Komento"
#: standalone/draksambashare:64 standalone/draksambashare:97
#, fuzzy, c-format
@@ -19737,7 +19737,7 @@ msgstr "Foliumu"
#: standalone/draksambashare:65
#, c-format
msgid "Public"
-msgstr ""
+msgstr "Publika"
#: standalone/draksambashare:66 standalone/draksambashare:102
#, fuzzy, c-format
@@ -19913,14 +19913,14 @@ msgstr "Nomo de printilo"
#: standalone/draksambashare:373 standalone/draksambashare:587
#: standalone/draksambashare:768
-#, fuzzy, c-format
+#, c-format
msgid "Comment:"
-msgstr "kompakta"
+msgstr "Noto:"
#: standalone/draksambashare:374
-#, fuzzy, c-format
+#, c-format
msgid "Path:"
-msgstr "Pado"
+msgstr "Pado:"
#: standalone/draksambashare:379
#, c-format
@@ -19996,7 +19996,7 @@ msgstr ""
#: standalone/draksambashare:586
#, c-format
msgid "Printer name:"
-msgstr ""
+msgstr "Presilonomo:"
#: standalone/draksambashare:592 standalone/draksambashare:773
#, fuzzy, c-format
@@ -20162,7 +20162,7 @@ msgstr ""
#: standalone/draksambashare:1193
#, c-format
msgid "Printers"
-msgstr ""
+msgstr "Presiloj"
#: standalone/draksambashare:1201
#, c-format
@@ -20462,12 +20462,12 @@ msgstr ""
#: standalone/draksplash:71
#, c-format
msgid "Text color"
-msgstr ""
+msgstr "Tekstkoloro"
#: standalone/draksplash:72
#, c-format
msgid "Background color"
-msgstr ""
+msgstr "Fonkoloro"
#: standalone/draksplash:74
#, c-format
diff --git a/perl-install/share/po/es.po b/perl-install/share/po/es.po
index 6636814bc..2e673989c 100644
--- a/perl-install/share/po/es.po
+++ b/perl-install/share/po/es.po
@@ -6165,7 +6165,7 @@ msgstr ""
#: install_any.pm:522 standalone/draknfs:288
#, c-format
msgid "Directory"
-msgstr ""
+msgstr "Directorio"
#: install_any.pm:571
#, c-format
@@ -11406,7 +11406,7 @@ msgstr ""
#: network/netconnect.pm:1135
#, c-format
msgid "PID"
-msgstr ""
+msgstr "PID"
#: network/netconnect.pm:1163
#, c-format
@@ -20072,12 +20072,12 @@ msgstr ""
#: standalone/drakboot:126
#, c-format
msgid "Verbose"
-msgstr ""
+msgstr "Con mensajes"
#: standalone/drakboot:127
#, c-format
msgid "Silent"
-msgstr ""
+msgstr "Silencio"
#: standalone/drakboot:134
#, c-format
@@ -21447,7 +21447,7 @@ msgstr "Información detallada"
#: standalone/drakhosts:115
#, c-format
msgid "IP address:"
-msgstr ""
+msgstr "Dirección IP:"
#: standalone/drakhosts:116
#, c-format
@@ -21502,7 +21502,7 @@ msgstr "Permitir a todos los usuarios"
#: standalone/drakids:57
#, c-format
msgid "Log"
-msgstr ""
+msgstr "Registro"
#: standalone/drakids:61
#, fuzzy, c-format
@@ -21542,9 +21542,9 @@ msgid "Unable to contact daemon"
msgstr "No se puede contactar al sitio de réplica %s"
#: standalone/drakids:191
-#, fuzzy, c-format
+#, c-format
msgid "Date"
-msgstr "Estado"
+msgstr "Fecha"
#: standalone/drakids:192
#, fuzzy, c-format
@@ -21557,9 +21557,9 @@ msgid "Attack type"
msgstr "Tipo de ataque: %s"
#: standalone/drakids:194
-#, fuzzy, c-format
+#, c-format
msgid "Service"
-msgstr "Servicios"
+msgstr "Servicio"
#: standalone/drakids:195
#, c-format
@@ -21728,7 +21728,7 @@ msgstr ""
#: standalone/draksambashare:767
#, c-format
msgid "Directory:"
-msgstr ""
+msgstr "Directorio:"
#: standalone/draknfs:394
#, c-format
@@ -21753,7 +21753,7 @@ msgstr ""
#: standalone/draknfs:401
#, c-format
msgid "User ID:"
-msgstr ""
+msgstr "ID de usuario:"
#: standalone/draknfs:401
#, c-format
@@ -21793,12 +21793,12 @@ msgstr ""
#: standalone/draknfs:527
#, c-format
msgid "General Options"
-msgstr ""
+msgstr "Opciones generales"
#: standalone/draknfs:527
#, c-format
msgid "Custom Options"
-msgstr ""
+msgstr "Opciones personalizadas"
#: standalone/draknfs:539 standalone/draksambashare:625
#: standalone/draksambashare:792
@@ -22133,9 +22133,9 @@ msgid "Share directory"
msgstr "No existe ese directorio"
#: standalone/draksambashare:63 standalone/draksambashare:96
-#, fuzzy, c-format
+#, c-format
msgid "Comment"
-msgstr "Enviar"
+msgstr "Comentario"
#: standalone/draksambashare:64 standalone/draksambashare:97
#, fuzzy, c-format
@@ -22145,12 +22145,12 @@ msgstr "Examinar"
#: standalone/draksambashare:65
#, c-format
msgid "Public"
-msgstr ""
+msgstr "Público"
#: standalone/draksambashare:66 standalone/draksambashare:102
-#, fuzzy, c-format
+#, c-format
msgid "Writable"
-msgstr "Escribir"
+msgstr "Escribible"
#: standalone/draksambashare:67 standalone/draksambashare:143
#, fuzzy, c-format
@@ -22321,14 +22321,14 @@ msgstr "Nombre del certificado"
#: standalone/draksambashare:373 standalone/draksambashare:587
#: standalone/draksambashare:768
-#, fuzzy, c-format
+#, c-format
msgid "Comment:"
-msgstr "Enviar"
+msgstr "Comentario:"
#: standalone/draksambashare:374
-#, fuzzy, c-format
+#, c-format
msgid "Path:"
-msgstr "Ruta"
+msgstr "Ruta:"
#: standalone/draksambashare:379
#, c-format
@@ -22404,7 +22404,7 @@ msgstr ""
#: standalone/draksambashare:586
#, c-format
msgid "Printer name:"
-msgstr ""
+msgstr "Nombre de impresora:"
#: standalone/draksambashare:592 standalone/draksambashare:773
#, fuzzy, c-format
@@ -22419,7 +22419,7 @@ msgstr "Examinar"
#: standalone/draksambashare:598
#, c-format
msgid "Advanced options"
-msgstr ""
+msgstr "Opciones avanzadas"
#: standalone/draksambashare:600
#, c-format
@@ -22454,7 +22454,7 @@ msgstr ""
#: standalone/draksambashare:613
#, c-format
msgid "Printing:"
-msgstr ""
+msgstr "Impresión:"
#: standalone/draksambashare:629
#, c-format
@@ -22520,7 +22520,7 @@ msgstr ""
#: standalone/draksambashare:928
#, c-format
msgid "User name:"
-msgstr ""
+msgstr "Nombre del usuario:"
#: standalone/draksambashare:929 standalone/harddrake2:551
#, c-format
@@ -22570,7 +22570,7 @@ msgstr ""
#: standalone/draksambashare:1193
#, c-format
msgid "Printers"
-msgstr ""
+msgstr "Impresoras"
#: standalone/draksambashare:1201
#, c-format
@@ -22937,12 +22937,12 @@ msgstr ""
#: standalone/draksplash:71
#, c-format
msgid "Text color"
-msgstr ""
+msgstr "Color del texto"
#: standalone/draksplash:72
#, c-format
msgid "Background color"
-msgstr ""
+msgstr "Color del fondo"
#: standalone/draksplash:74
#, c-format
diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po
index da777511b..b494830e1 100644
--- a/perl-install/share/po/eu.po
+++ b/perl-install/share/po/eu.po
@@ -22048,7 +22048,7 @@ msgstr "Publikoa"
#: standalone/draksambashare:66 standalone/draksambashare:102
#, c-format
msgid "Writable"
-msgstr ""
+msgstr "Idazgarria"
#: standalone/draksambashare:67 standalone/draksambashare:143
#, c-format
@@ -22851,12 +22851,12 @@ msgstr ""
#: standalone/draksplash:71
#, c-format
msgid "Text color"
-msgstr ""
+msgstr "Testuaren kolorea"
#: standalone/draksplash:72
#, c-format
msgid "Background color"
-msgstr ""
+msgstr "Atzeko planoaren kolorea"
#: standalone/draksplash:74
#, c-format
diff --git a/perl-install/share/po/fa.po b/perl-install/share/po/fa.po
index de2039b8b..fddf61beb 100644
--- a/perl-install/share/po/fa.po
+++ b/perl-install/share/po/fa.po
@@ -11197,7 +11197,7 @@ msgstr ""
#: network/netconnect.pm:1135
#, c-format
msgid "PID"
-msgstr ""
+msgstr "PID"
#: network/netconnect.pm:1163
#, c-format
@@ -21061,7 +21061,7 @@ msgstr "اطلاعات مفصل"
#: standalone/drakhosts:115
#, c-format
msgid "IP address:"
-msgstr ""
+msgstr "نشانی IP:"
#: standalone/drakhosts:116
#, c-format
@@ -21116,7 +21116,7 @@ msgstr "اجازه دادن به تمام کاربرها"
#: standalone/drakids:57
#, c-format
msgid "Log"
-msgstr ""
+msgstr "ثبت وقایع"
#: standalone/drakids:61
#, fuzzy, c-format
@@ -21156,9 +21156,9 @@ msgid "Unable to contact daemon"
msgstr "نمی‌توان با آینه %s تماس برقرار کرد"
#: standalone/drakids:191
-#, fuzzy, c-format
+#, c-format
msgid "Date"
-msgstr "وضعیت"
+msgstr "تاریخ"
#: standalone/drakids:192
#, fuzzy, c-format
@@ -21171,9 +21171,9 @@ msgid "Attack type"
msgstr "نوع حمله: %s"
#: standalone/drakids:194
-#, fuzzy, c-format
+#, c-format
msgid "Service"
-msgstr "سرویس‌ها"
+msgstr "سرویس"
#: standalone/drakids:195
#, c-format
@@ -21342,7 +21342,7 @@ msgstr ""
#: standalone/draksambashare:767
#, c-format
msgid "Directory:"
-msgstr ""
+msgstr "شاخه:"
#: standalone/draknfs:394
#, c-format
@@ -21407,7 +21407,7 @@ msgstr ""
#: standalone/draknfs:527
#, c-format
msgid "General Options"
-msgstr ""
+msgstr "گزینه‌های عمومی"
#: standalone/draknfs:527
#, c-format
@@ -21747,9 +21747,9 @@ msgid "Share directory"
msgstr "چنین شاخه‌ای نیست"
#: standalone/draksambashare:63 standalone/draksambashare:96
-#, fuzzy, c-format
+#, c-format
msgid "Comment"
-msgstr "سپردن"
+msgstr "توضیح"
#: standalone/draksambashare:64 standalone/draksambashare:97
#, fuzzy, c-format
@@ -21759,7 +21759,7 @@ msgstr "مرور"
#: standalone/draksambashare:65
#, c-format
msgid "Public"
-msgstr ""
+msgstr "عمومی"
#: standalone/draksambashare:66 standalone/draksambashare:102
#, fuzzy, c-format
@@ -21935,14 +21935,14 @@ msgstr "نام گواهینامه"
#: standalone/draksambashare:373 standalone/draksambashare:587
#: standalone/draksambashare:768
-#, fuzzy, c-format
+#, c-format
msgid "Comment:"
-msgstr "سپردن"
+msgstr "توضیح:"
#: standalone/draksambashare:374
-#, fuzzy, c-format
+#, c-format
msgid "Path:"
-msgstr "مسیر"
+msgstr "مسیر:"
#: standalone/draksambashare:379
#, c-format
@@ -22018,7 +22018,7 @@ msgstr ""
#: standalone/draksambashare:586
#, c-format
msgid "Printer name:"
-msgstr ""
+msgstr "نام چاپگر:"
#: standalone/draksambashare:592 standalone/draksambashare:773
#, fuzzy, c-format
@@ -22184,7 +22184,7 @@ msgstr ""
#: standalone/draksambashare:1193
#, c-format
msgid "Printers"
-msgstr ""
+msgstr "چاپگرها"
#: standalone/draksambashare:1201
#, c-format
diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po
index c2dbedd8e..f303357ad 100644
--- a/perl-install/share/po/fi.po
+++ b/perl-install/share/po/fi.po
@@ -6012,7 +6012,7 @@ msgstr ""
#: install_any.pm:522 standalone/draknfs:288
#, c-format
msgid "Directory"
-msgstr ""
+msgstr "Kansio"
#: install_any.pm:571
#, c-format
@@ -11368,7 +11368,7 @@ msgstr ""
#: network/netconnect.pm:1135
#, c-format
msgid "PID"
-msgstr ""
+msgstr "PID"
#: network/netconnect.pm:1163
#, c-format
@@ -19962,12 +19962,12 @@ msgstr ""
#: standalone/drakboot:126
#, c-format
msgid "Verbose"
-msgstr ""
+msgstr "Monisanainen"
#: standalone/drakboot:127
#, c-format
msgid "Silent"
-msgstr ""
+msgstr "Hiljennä"
#: standalone/drakboot:134
#, c-format
@@ -21333,7 +21333,7 @@ msgstr "Yksityiskohtaiset tiedot"
#: standalone/drakhosts:115
#, c-format
msgid "IP address:"
-msgstr ""
+msgstr "IP-osoite:"
#: standalone/drakhosts:116
#, c-format
@@ -21389,7 +21389,7 @@ msgstr "Salli kaikille käyttäjille"
#: standalone/drakids:57
#, c-format
msgid "Log"
-msgstr ""
+msgstr "Loki"
#: standalone/drakids:61
#, fuzzy, c-format
@@ -21429,9 +21429,9 @@ msgid "Unable to contact daemon"
msgstr "Yhteyttä peilipalvelimeen %s ei voitu muodostaa"
#: standalone/drakids:191
-#, fuzzy, c-format
+#, c-format
msgid "Date"
-msgstr "Tila"
+msgstr "Päiväys"
#: standalone/drakids:192
#, fuzzy, c-format
@@ -21444,9 +21444,9 @@ msgid "Attack type"
msgstr "Hyökkäyksen tyyppi: %s"
#: standalone/drakids:194
-#, fuzzy, c-format
+#, c-format
msgid "Service"
-msgstr "Palvelut"
+msgstr "Palvelu"
#: standalone/drakids:195
#, c-format
@@ -21615,7 +21615,7 @@ msgstr ""
#: standalone/draksambashare:767
#, c-format
msgid "Directory:"
-msgstr ""
+msgstr "Hakemisto:"
#: standalone/draknfs:394
#, c-format
@@ -21640,7 +21640,7 @@ msgstr ""
#: standalone/draknfs:401
#, c-format
msgid "User ID:"
-msgstr ""
+msgstr "Käyttäjätunnus:"
#: standalone/draknfs:401
#, c-format
@@ -21680,12 +21680,12 @@ msgstr ""
#: standalone/draknfs:527
#, c-format
msgid "General Options"
-msgstr ""
+msgstr "Yleiset asetukset"
#: standalone/draknfs:527
#, c-format
msgid "Custom Options"
-msgstr ""
+msgstr "Omat asetukset"
#: standalone/draknfs:539 standalone/draksambashare:625
#: standalone/draksambashare:792
@@ -22019,9 +22019,9 @@ msgid "Share directory"
msgstr "Hakemisto ei ole olemassa"
#: standalone/draksambashare:63 standalone/draksambashare:96
-#, fuzzy, c-format
+#, c-format
msgid "Comment"
-msgstr "Commit"
+msgstr "Kommentti"
#: standalone/draksambashare:64 standalone/draksambashare:97
#, fuzzy, c-format
@@ -22031,12 +22031,12 @@ msgstr "Selaa"
#: standalone/draksambashare:65
#, c-format
msgid "Public"
-msgstr ""
+msgstr "Julkinen"
#: standalone/draksambashare:66 standalone/draksambashare:102
-#, fuzzy, c-format
+#, c-format
msgid "Writable"
-msgstr "Kirjoita"
+msgstr "Kirjoitettavissa"
#: standalone/draksambashare:67 standalone/draksambashare:143
#, fuzzy, c-format
@@ -22207,14 +22207,14 @@ msgstr "Sertifikaatin nimi"
#: standalone/draksambashare:373 standalone/draksambashare:587
#: standalone/draksambashare:768
-#, fuzzy, c-format
+#, c-format
msgid "Comment:"
-msgstr "Commit"
+msgstr "Kommentti:"
#: standalone/draksambashare:374
-#, fuzzy, c-format
+#, c-format
msgid "Path:"
-msgstr "Polku"
+msgstr "Polku:"
#: standalone/draksambashare:379
#, c-format
@@ -22290,7 +22290,7 @@ msgstr ""
#: standalone/draksambashare:586
#, c-format
msgid "Printer name:"
-msgstr ""
+msgstr "Tulostimen nimi:"
#: standalone/draksambashare:592 standalone/draksambashare:773
#, fuzzy, c-format
@@ -22305,7 +22305,7 @@ msgstr "Selaa"
#: standalone/draksambashare:598
#, c-format
msgid "Advanced options"
-msgstr ""
+msgstr "Lisäasetukset"
#: standalone/draksambashare:600
#, c-format
@@ -22340,7 +22340,7 @@ msgstr ""
#: standalone/draksambashare:613
#, c-format
msgid "Printing:"
-msgstr ""
+msgstr "Tulostaminen:"
#: standalone/draksambashare:629
#, c-format
@@ -22406,7 +22406,7 @@ msgstr ""
#: standalone/draksambashare:928
#, c-format
msgid "User name:"
-msgstr ""
+msgstr "Käyttäjänimi:"
#: standalone/draksambashare:929 standalone/harddrake2:551
#, c-format
@@ -22456,7 +22456,7 @@ msgstr ""
#: standalone/draksambashare:1193
#, c-format
msgid "Printers"
-msgstr ""
+msgstr "Tulostimet"
#: standalone/draksambashare:1201
#, c-format
@@ -22816,12 +22816,12 @@ msgstr ""
#: standalone/draksplash:71
#, c-format
msgid "Text color"
-msgstr ""
+msgstr "Tekstin väri"
#: standalone/draksplash:72
#, c-format
msgid "Background color"
-msgstr ""
+msgstr "Taustaväri"
#: standalone/draksplash:74
#, c-format
diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po
index 3a20c6a40..ab839a3e2 100644
--- a/perl-install/share/po/gl.po
+++ b/perl-install/share/po/gl.po
@@ -20380,7 +20380,7 @@ msgstr "Permitirlle a tódolos usuarios"
#: standalone/drakids:57
#, c-format
msgid "Log"
-msgstr ""
+msgstr "Rexisto"
#: standalone/drakids:61
#, fuzzy, c-format
@@ -20435,9 +20435,9 @@ msgid "Attack type"
msgstr "Tipo de ataque: %s"
#: standalone/drakids:194
-#, fuzzy, c-format
+#, c-format
msgid "Service"
-msgstr "Servicios"
+msgstr "Servicio"
#: standalone/drakids:195
#, c-format
@@ -20631,7 +20631,7 @@ msgstr ""
#: standalone/draknfs:401
#, c-format
msgid "User ID:"
-msgstr ""
+msgstr "ID do Usuario:"
#: standalone/draknfs:401
#, c-format
@@ -20671,7 +20671,7 @@ msgstr ""
#: standalone/draknfs:527
#, c-format
msgid "General Options"
-msgstr ""
+msgstr "Opcións Xerais"
#: standalone/draknfs:527
#, c-format
@@ -21008,9 +21008,9 @@ msgid "Share directory"
msgstr "Debe ser un directorio."
#: standalone/draksambashare:63 standalone/draksambashare:96
-#, fuzzy, c-format
+#, c-format
msgid "Comment"
-msgstr "Gardar"
+msgstr "Comentario"
#: standalone/draksambashare:64 standalone/draksambashare:97
#, fuzzy, c-format
@@ -21020,12 +21020,12 @@ msgstr "Explorar"
#: standalone/draksambashare:65
#, c-format
msgid "Public"
-msgstr ""
+msgstr "Pública"
#: standalone/draksambashare:66 standalone/draksambashare:102
-#, fuzzy, c-format
+#, c-format
msgid "Writable"
-msgstr "Escritura"
+msgstr "Escribíbel"
#: standalone/draksambashare:67 standalone/draksambashare:143
#, fuzzy, c-format
@@ -21196,14 +21196,14 @@ msgstr "Nome do certificado"
#: standalone/draksambashare:373 standalone/draksambashare:587
#: standalone/draksambashare:768
-#, fuzzy, c-format
+#, c-format
msgid "Comment:"
-msgstr "Gardar"
+msgstr "Comentario:"
#: standalone/draksambashare:374
-#, fuzzy, c-format
+#, c-format
msgid "Path:"
-msgstr "Ruta"
+msgstr "Ruta:"
#: standalone/draksambashare:379
#, c-format
@@ -21445,7 +21445,7 @@ msgstr ""
#: standalone/draksambashare:1193
#, c-format
msgid "Printers"
-msgstr ""
+msgstr "Impresoras"
#: standalone/draksambashare:1201
#, c-format
@@ -21761,12 +21761,12 @@ msgstr ""
#: standalone/draksplash:71
#, c-format
msgid "Text color"
-msgstr ""
+msgstr "Cor do texto"
#: standalone/draksplash:72
#, c-format
msgid "Background color"
-msgstr ""
+msgstr "Cor do fondo"
#: standalone/draksplash:74
#, c-format
diff --git a/perl-install/share/po/he.po b/perl-install/share/po/he.po
index 10d31e5e7..c72904cdd 100644
--- a/perl-install/share/po/he.po
+++ b/perl-install/share/po/he.po
@@ -20171,7 +20171,7 @@ msgstr ""
#: standalone/draknfs:401
#, c-format
msgid "User ID:"
-msgstr ""
+msgstr "זיהוי משתמש:"
#: standalone/draknfs:401
#, c-format
@@ -20551,9 +20551,9 @@ msgid "Share directory"
msgstr "ספריית שיתוף"
#: standalone/draksambashare:63 standalone/draksambashare:96
-#, fuzzy, c-format
+#, c-format
msgid "Comment"
-msgstr "רישום"
+msgstr "הערה"
#: standalone/draksambashare:64 standalone/draksambashare:97
#, fuzzy, c-format
@@ -20566,9 +20566,9 @@ msgid "Public"
msgstr "ציבורי"
#: standalone/draksambashare:66 standalone/draksambashare:102
-#, fuzzy, c-format
+#, c-format
msgid "Writable"
-msgstr "כתוב"
+msgstr "ניתן לכתיבה"
#: standalone/draksambashare:67 standalone/draksambashare:143
#, fuzzy, c-format
@@ -20739,14 +20739,14 @@ msgstr "שם האישור"
#: standalone/draksambashare:373 standalone/draksambashare:587
#: standalone/draksambashare:768
-#, fuzzy, c-format
+#, c-format
msgid "Comment:"
-msgstr "רישום"
+msgstr "הערה:"
#: standalone/draksambashare:374
-#, fuzzy, c-format
+#, c-format
msgid "Path:"
-msgstr "נתיב"
+msgstr "נתיב:"
#: standalone/draksambashare:379
#, c-format
@@ -21305,12 +21305,12 @@ msgstr ""
#: standalone/draksplash:71
#, c-format
msgid "Text color"
-msgstr ""
+msgstr "צבע טקסט"
#: standalone/draksplash:72
#, c-format
msgid "Background color"
-msgstr ""
+msgstr "צבע רקע"
#: standalone/draksplash:74
#, c-format
diff --git a/perl-install/share/po/hi.po b/perl-install/share/po/hi.po
index 26fae7094..9ef10a830 100644
--- a/perl-install/share/po/hi.po
+++ b/perl-install/share/po/hi.po
@@ -5533,7 +5533,7 @@ msgstr ""
#: install_any.pm:522 standalone/draknfs:288
#, c-format
msgid "Directory"
-msgstr ""
+msgstr "डिरेक्ट्री"
#: install_any.pm:571
#, fuzzy, c-format
@@ -10692,7 +10692,7 @@ msgstr ""
#: network/netconnect.pm:1135
#, c-format
msgid "PID"
-msgstr ""
+msgstr "पीआईडी"
#: network/netconnect.pm:1163
#, c-format
@@ -15918,9 +15918,9 @@ msgid "Groupware"
msgstr "ग्रुपवेयर"
#: share/compssUsers.pl:90
-#, fuzzy, c-format
+#, c-format
msgid "Kolab Server"
-msgstr "सॉबा सर्वर"
+msgstr "कोलाब सर्वर"
#: share/compssUsers.pl:93 share/compssUsers.pl:134
#, c-format
@@ -18785,12 +18785,12 @@ msgstr ""
#: standalone/drakboot:126
#, c-format
msgid "Verbose"
-msgstr ""
+msgstr "बड़बोला"
#: standalone/drakboot:127
#, c-format
msgid "Silent"
-msgstr ""
+msgstr "मूक"
#: standalone/drakboot:134
#, c-format
@@ -20092,7 +20092,7 @@ msgstr "विस्तृत सूचना"
#: standalone/drakhosts:115
#, c-format
msgid "IP address:"
-msgstr ""
+msgstr "आईपी पता:"
#: standalone/drakhosts:116
#, c-format
@@ -20147,7 +20147,7 @@ msgstr "सभी उपयोगकर्ताओं को अनुमति
#: standalone/drakids:57
#, c-format
msgid "Log"
-msgstr ""
+msgstr "लॉग"
#: standalone/drakids:61
#, fuzzy, c-format
@@ -20187,9 +20187,9 @@ msgid "Unable to contact daemon"
msgstr "%s मिरर प्रणाली से संबंध स्थापित करने में असमर्थ"
#: standalone/drakids:191
-#, fuzzy, c-format
+#, c-format
msgid "Date"
-msgstr "अवस्था"
+msgstr "तारीख"
#: standalone/drakids:192
#, fuzzy, c-format
@@ -20202,9 +20202,9 @@ msgid "Attack type"
msgstr "एक्सेस (पहुंचने) का तरीका : %s \n"
#: standalone/drakids:194
-#, fuzzy, c-format
+#, c-format
msgid "Service"
-msgstr "सेवायें"
+msgstr "सेवा"
#: standalone/drakids:195
#, c-format
@@ -20373,7 +20373,7 @@ msgstr ""
#: standalone/draksambashare:767
#, c-format
msgid "Directory:"
-msgstr ""
+msgstr "डिरेक्ट्री:"
#: standalone/draknfs:394
#, c-format
@@ -20398,7 +20398,7 @@ msgstr ""
#: standalone/draknfs:401
#, c-format
msgid "User ID:"
-msgstr ""
+msgstr "उपयोक्ता पहचान:"
#: standalone/draknfs:401
#, c-format
@@ -20438,7 +20438,7 @@ msgstr ""
#: standalone/draknfs:527
#, c-format
msgid "General Options"
-msgstr ""
+msgstr "सामान्य विकल्प"
#: standalone/draknfs:527
#, c-format
@@ -20774,9 +20774,9 @@ msgid "Share directory"
msgstr "डिरेक्ट्री नहीं है"
#: standalone/draksambashare:63 standalone/draksambashare:96
-#, fuzzy, c-format
+#, c-format
msgid "Comment"
-msgstr "सौपना"
+msgstr "टिप्पणी"
#: standalone/draksambashare:64 standalone/draksambashare:97
#, fuzzy, c-format
@@ -20786,12 +20786,12 @@ msgstr "ब्राउज़"
#: standalone/draksambashare:65
#, c-format
msgid "Public"
-msgstr ""
+msgstr "सार्वजनिक"
#: standalone/draksambashare:66 standalone/draksambashare:102
-#, fuzzy, c-format
+#, c-format
msgid "Writable"
-msgstr "लेखन"
+msgstr "लिखनेयोग्य"
#: standalone/draksambashare:67 standalone/draksambashare:143
#, fuzzy, c-format
@@ -20962,14 +20962,14 @@ msgstr "प्रमाणपत्र का नाम"
#: standalone/draksambashare:373 standalone/draksambashare:587
#: standalone/draksambashare:768
-#, fuzzy, c-format
+#, c-format
msgid "Comment:"
-msgstr "सौपना"
+msgstr "टिप्पणीः"
#: standalone/draksambashare:374
-#, fuzzy, c-format
+#, c-format
msgid "Path:"
-msgstr "पथ"
+msgstr "पथः"
#: standalone/draksambashare:379
#, c-format
@@ -21045,7 +21045,7 @@ msgstr ""
#: standalone/draksambashare:586
#, c-format
msgid "Printer name:"
-msgstr ""
+msgstr "प्रिंटर नामः"
#: standalone/draksambashare:592 standalone/draksambashare:773
#, fuzzy, c-format
@@ -21060,7 +21060,7 @@ msgstr "ब्राउज़"
#: standalone/draksambashare:598
#, c-format
msgid "Advanced options"
-msgstr ""
+msgstr "विस्तृत विकल्प"
#: standalone/draksambashare:600
#, c-format
@@ -21095,7 +21095,7 @@ msgstr ""
#: standalone/draksambashare:613
#, c-format
msgid "Printing:"
-msgstr ""
+msgstr "छाप रहे हैंः"
#: standalone/draksambashare:629
#, c-format
@@ -21161,7 +21161,7 @@ msgstr ""
#: standalone/draksambashare:928
#, c-format
msgid "User name:"
-msgstr ""
+msgstr "उपयोक्ता नामः"
#: standalone/draksambashare:929 standalone/harddrake2:551
#, c-format
@@ -21211,7 +21211,7 @@ msgstr ""
#: standalone/draksambashare:1193
#, c-format
msgid "Printers"
-msgstr ""
+msgstr "प्रिंटर"
#: standalone/draksambashare:1201
#, c-format
@@ -21527,12 +21527,12 @@ msgstr ""
#: standalone/draksplash:71
#, c-format
msgid "Text color"
-msgstr ""
+msgstr "पाठ रंग"
#: standalone/draksplash:72
#, c-format
msgid "Background color"
-msgstr ""
+msgstr "पृष्ठभूमि रंग"
#: standalone/draksplash:74
#, c-format
diff --git a/perl-install/share/po/hr.po b/perl-install/share/po/hr.po
index 3ebce7e57..f350d28fe 100644
--- a/perl-install/share/po/hr.po
+++ b/perl-install/share/po/hr.po
@@ -5730,7 +5730,7 @@ msgstr ""
#: install_any.pm:522 standalone/draknfs:288
#, c-format
msgid "Directory"
-msgstr ""
+msgstr "Direktorij"
#: install_any.pm:571
#, fuzzy, c-format
@@ -10857,7 +10857,7 @@ msgstr ""
#: network/netconnect.pm:1135
#, c-format
msgid "PID"
-msgstr ""
+msgstr "PID"
#: network/netconnect.pm:1163
#, c-format
@@ -18888,12 +18888,12 @@ msgstr ""
#: standalone/drakboot:126
#, c-format
msgid "Verbose"
-msgstr ""
+msgstr "Opširno"
#: standalone/drakboot:127
#, c-format
msgid "Silent"
-msgstr ""
+msgstr "Tiho"
#: standalone/drakboot:134
#, c-format
@@ -20187,7 +20187,7 @@ msgstr "Detaljne informacije"
#: standalone/drakhosts:115
#, c-format
msgid "IP address:"
-msgstr ""
+msgstr "IP adresa:"
#: standalone/drakhosts:116
#, c-format
@@ -20242,7 +20242,7 @@ msgstr "Dozvoli svim korisnicima"
#: standalone/drakids:57
#, c-format
msgid "Log"
-msgstr ""
+msgstr "Dnevnik"
#: standalone/drakids:61
#, fuzzy, c-format
@@ -20282,9 +20282,9 @@ msgid "Unable to contact daemon"
msgstr "Ne mogu napraviti fork: %s"
#: standalone/drakids:191
-#, fuzzy, c-format
+#, c-format
msgid "Date"
-msgstr "Država"
+msgstr "Datum"
#: standalone/drakids:192
#, fuzzy, c-format
@@ -20297,9 +20297,9 @@ msgid "Attack type"
msgstr "Tip pristupa: %s\n"
#: standalone/drakids:194
-#, fuzzy, c-format
+#, c-format
msgid "Service"
-msgstr "Servisi"
+msgstr "Servis"
#: standalone/drakids:195
#, c-format
@@ -20468,7 +20468,7 @@ msgstr ""
#: standalone/draksambashare:767
#, c-format
msgid "Directory:"
-msgstr ""
+msgstr "Di&rektorij:"
#: standalone/draknfs:394
#, c-format
@@ -20533,7 +20533,7 @@ msgstr ""
#: standalone/draknfs:527
#, c-format
msgid "General Options"
-msgstr ""
+msgstr "Općenite postavke"
#: standalone/draknfs:527
#, c-format
@@ -20865,9 +20865,9 @@ msgid "Share directory"
msgstr "Nije mapa"
#: standalone/draksambashare:63 standalone/draksambashare:96
-#, fuzzy, c-format
+#, c-format
msgid "Comment"
-msgstr "Pošalji"
+msgstr "Komentar"
#: standalone/draksambashare:64 standalone/draksambashare:97
#, fuzzy, c-format
@@ -20877,7 +20877,7 @@ msgstr "Potraži"
#: standalone/draksambashare:65
#, c-format
msgid "Public"
-msgstr ""
+msgstr "Javno"
#: standalone/draksambashare:66 standalone/draksambashare:102
#, fuzzy, c-format
@@ -21053,14 +21053,14 @@ msgstr "Ime pisača"
#: standalone/draksambashare:373 standalone/draksambashare:587
#: standalone/draksambashare:768
-#, fuzzy, c-format
+#, c-format
msgid "Comment:"
-msgstr "Pošalji"
+msgstr "Komentar:"
#: standalone/draksambashare:374
-#, fuzzy, c-format
+#, c-format
msgid "Path:"
-msgstr "Putanja"
+msgstr "Putanja:"
#: standalone/draksambashare:379
#, c-format
@@ -21136,7 +21136,7 @@ msgstr ""
#: standalone/draksambashare:586
#, c-format
msgid "Printer name:"
-msgstr ""
+msgstr "Ime pisača:"
#: standalone/draksambashare:592 standalone/draksambashare:773
#, fuzzy, c-format
@@ -21151,7 +21151,7 @@ msgstr "Potraži"
#: standalone/draksambashare:598
#, c-format
msgid "Advanced options"
-msgstr ""
+msgstr "Napredne mogućnosti"
#: standalone/draksambashare:600
#, c-format
@@ -21252,7 +21252,7 @@ msgstr ""
#: standalone/draksambashare:928
#, c-format
msgid "User name:"
-msgstr ""
+msgstr "Ime korisnika:"
#: standalone/draksambashare:929 standalone/harddrake2:551
#, c-format
@@ -21302,7 +21302,7 @@ msgstr ""
#: standalone/draksambashare:1193
#, c-format
msgid "Printers"
-msgstr ""
+msgstr "Pisači"
#: standalone/draksambashare:1201
#, c-format
@@ -21610,12 +21610,12 @@ msgstr ""
#: standalone/draksplash:71
#, c-format
msgid "Text color"
-msgstr ""
+msgstr "Boja teksta"
#: standalone/draksplash:72
#, c-format
msgid "Background color"
-msgstr ""
+msgstr "Pozadinska boja"
#: standalone/draksplash:74
#, c-format
diff --git a/perl-install/share/po/is.po b/perl-install/share/po/is.po
index da234a0b6..de63aee6f 100644
--- a/perl-install/share/po/is.po
+++ b/perl-install/share/po/is.po
@@ -11199,7 +11199,7 @@ msgstr ""
#: network/netconnect.pm:1135
#, c-format
msgid "PID"
-msgstr ""
+msgstr "PID"
#: network/netconnect.pm:1163
#, c-format
@@ -21147,7 +21147,7 @@ msgstr "Leyfa öllum notendum"
#: standalone/drakids:57
#, c-format
msgid "Log"
-msgstr ""
+msgstr "Annálar"
#: standalone/drakids:61
#, fuzzy, c-format
@@ -21187,9 +21187,9 @@ msgid "Unable to contact daemon"
msgstr "Get ekki tengst spegilvél %s"
#: standalone/drakids:191
-#, fuzzy, c-format
+#, c-format
msgid "Date"
-msgstr "Staða"
+msgstr "Dagsetning"
#: standalone/drakids:192
#, fuzzy, c-format
@@ -21202,9 +21202,9 @@ msgid "Attack type"
msgstr "Árásartegund: %s"
#: standalone/drakids:194
-#, fuzzy, c-format
+#, c-format
msgid "Service"
-msgstr "Þjónustur"
+msgstr "Þjónusta"
#: standalone/drakids:195
#, c-format
@@ -21828,9 +21828,9 @@ msgid "Share directory"
msgstr "Miðla möppu"
#: standalone/draksambashare:63 standalone/draksambashare:96
-#, fuzzy, c-format
+#, c-format
msgid "Comment"
-msgstr "Setja inn"
+msgstr "Athugasemd"
#: standalone/draksambashare:64 standalone/draksambashare:97
#, fuzzy, c-format
@@ -21840,12 +21840,12 @@ msgstr "Flakka"
#: standalone/draksambashare:65
#, c-format
msgid "Public"
-msgstr ""
+msgstr "Almenn"
#: standalone/draksambashare:66 standalone/draksambashare:102
-#, fuzzy, c-format
+#, c-format
msgid "Writable"
-msgstr "Skrifa"
+msgstr "Skrifanlegt"
#: standalone/draksambashare:67 standalone/draksambashare:143
#, fuzzy, c-format
@@ -22016,14 +22016,14 @@ msgstr "Nafn skírteinis"
#: standalone/draksambashare:373 standalone/draksambashare:587
#: standalone/draksambashare:768
-#, fuzzy, c-format
+#, c-format
msgid "Comment:"
-msgstr "Setja inn"
+msgstr "Athugasemd:"
#: standalone/draksambashare:374
-#, fuzzy, c-format
+#, c-format
msgid "Path:"
-msgstr "Slóð"
+msgstr "Slóð:"
#: standalone/draksambashare:379
#, c-format
@@ -22099,7 +22099,7 @@ msgstr ""
#: standalone/draksambashare:586
#, c-format
msgid "Printer name:"
-msgstr ""
+msgstr "Heiti prentara:"
#: standalone/draksambashare:592 standalone/draksambashare:773
#, fuzzy, c-format
@@ -22114,7 +22114,7 @@ msgstr "Flakka"
#: standalone/draksambashare:598
#, c-format
msgid "Advanced options"
-msgstr ""
+msgstr "Meiri valkostir"
#: standalone/draksambashare:600
#, c-format
@@ -22149,7 +22149,7 @@ msgstr ""
#: standalone/draksambashare:613
#, c-format
msgid "Printing:"
-msgstr ""
+msgstr "Prenta:"
#: standalone/draksambashare:629
#, c-format
@@ -22215,7 +22215,7 @@ msgstr ""
#: standalone/draksambashare:928
#, c-format
msgid "User name:"
-msgstr ""
+msgstr "Notendanafn:"
#: standalone/draksambashare:929 standalone/harddrake2:551
#, c-format
@@ -22265,7 +22265,7 @@ msgstr ""
#: standalone/draksambashare:1193
#, c-format
msgid "Printers"
-msgstr ""
+msgstr "Prentarar"
#: standalone/draksambashare:1201
#, c-format
@@ -22584,12 +22584,12 @@ msgstr ""
#: standalone/draksplash:71
#, c-format
msgid "Text color"
-msgstr ""
+msgstr "Litur texta"
#: standalone/draksplash:72
#, c-format
msgid "Background color"
-msgstr ""
+msgstr "Bakgrunnslitur"
#: standalone/draksplash:74
#, c-format
diff --git a/perl-install/share/po/it.po b/perl-install/share/po/it.po
index 07852e697..661b1a6bf 100644
--- a/perl-install/share/po/it.po
+++ b/perl-install/share/po/it.po
@@ -22993,14 +22993,14 @@ msgid "Choose text zone color"
msgstr "Scegli il colore per la barra di avanzamento"
#: standalone/draksplash:71
-#, fuzzy, c-format
+#, c-format
msgid "Text color"
-msgstr "Solo testo"
+msgstr "Colore del testo"
#: standalone/draksplash:72
#, c-format
msgid "Background color"
-msgstr ""
+msgstr "Colore sfondo"
#: standalone/draksplash:74
#, c-format
diff --git a/perl-install/share/po/ko.po b/perl-install/share/po/ko.po
index 3b68e7bbb..79ae58dbd 100644
--- a/perl-install/share/po/ko.po
+++ b/perl-install/share/po/ko.po