aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/develop/search_fill.php
blob: 07c4024b2f43a4eef606da5c1b4c0a396a9efe90 (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
<?php

//
// Security message:
//
// This script is potentially dangerous.
// Remove or comment the next line (die(".... ) to enable this script.
// Do NOT FORGET to either remove this script or disable it after you have used it.
//

//
// Security message:
//
// This script is potentially dangerous.
// Remove or comment the next line (die(".... ) to enable this script.
// Do NOT FORGET to either remove this script or disable it after you have used it.
//
die("Please read the first lines of this script for instructions on how to enable it");

//
// Do not change anything below this line.
//
set_time_limit(0);

define('IN_PHPBB', true);
$phpbb_root_path = '../';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.'.$phpEx);

// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup();

$search_type = $config['search_type'];

if (!class_exists($search_type))
{
	trigger_error('NO_SUCH_SEARCH_MODULE');
}

$error = false;
$search = new $search_type($error, $phpbb_root_path, $phpEx, $auth, $config, $db, $user, $phpbb_dispatcher);

if ($error)
{
	trigger_error($error);
}

print "<html>\n<body>\n";

//
// Fetch a batch of posts_text entries
//
$sql = "SELECT COUNT(*) as total, MAX(post_id) as max_post_id
	FROM ". POSTS_TABLE;
if ( !($result = $db->sql_query($sql)) )
{
	$error = $db->sql_error();
	die("Couldn't get maximum post ID :: " . $sql . " :: " . $error['message']);
}

$max_post_id = $db->sql_fetchrow($result);

$totalposts = $max_post_id['total'];
$max_post_id = $max_post_id['max_post_id'];

$postcounter = (!isset($HTTP_GET_VARS['batchstart'])) ? 0 : $HTTP_GET_VARS['batchstart'];

$batchsize = 200; // Process this many posts per loop
$batchcount = 0;
for(;$postcounter <= $max_post_id; $postcounter += $batchsize)
{
	$batchstart = $postcounter + 1;
	$batchend = $postcounter + $batchsize;
	$batchcount++;
	
	$sql = "SELECT *
		FROM " . POSTS_TABLE . "
		WHERE post_id
			BETWEEN $batchstart
				AND $batchend";
	if( !($result = $db->sql_query($sql)) )
	{
		$error = $db->sql_error();
		die("Couldn't get post_text :: " . $sql . " :: " . $error['message']);
	}

	$rowset = $db->sql_fetchrowset($result);
	$db->sql_freeresult($result);

	$post_rows = sizeof($rowset);
	
	if( $post_rows )
	{

	// $sql = "LOCK TABLES ".POST_TEXT_TABLE." WRITE";
	// $result = $db->sql_query($sql);
		print "\n<p>\n<a href='{$_SERVER['PHP_SELF']}?batchstart=$batchstart'>Restart from posting $batchstart</a><br>\n";

		// For every post in the batch:
		for($post_nr = 0; $post_nr < $post_rows; $post_nr++ )
		{
			print ".";
			flush();

			$post_id = $rowset[$post_nr]['post_id'];

			$search->index('post', $rowset[$post_nr]['post_id'], $rowset[$post_nr]['post_text'], $rowset[$post_nr]['post_subject'], $rowset[$post_nr]['poster_id']);
		}
	// $sql = "UNLOCK TABLES";
	// $result = $db->sql_query($sql);

	}
}

print "<br>Removing common words (words that appear in more than 50% of the posts)<br>\n";
flush();
$search->tidy();
print "Removed words that where too common.<br>";

echo "<br>Done";

?>

</body>
</html>
> -rw-r--r--perl-install/share/po/hu.po20
-rw-r--r--perl-install/share/po/id.po20
-rw-r--r--perl-install/share/po/is.po20
-rw-r--r--perl-install/share/po/it.po28
-rw-r--r--perl-install/share/po/ja.po20
-rw-r--r--perl-install/share/po/ko.po20
-rw-r--r--perl-install/share/po/ky.po20
-rw-r--r--perl-install/share/po/libDrakX.pot18
-rw-r--r--perl-install/share/po/lt.po20
-rw-r--r--perl-install/share/po/ltg.po20
-rw-r--r--perl-install/share/po/lv.po20
-rw-r--r--perl-install/share/po/mk.po20
-rw-r--r--perl-install/share/po/mn.po20
-rw-r--r--perl-install/share/po/ms.po20
-rw-r--r--perl-install/share/po/mt.po20
-rw-r--r--perl-install/share/po/nb.po20
-rw-r--r--perl-install/share/po/nl.po20
-rw-r--r--perl-install/share/po/nn.po20
-rw-r--r--perl-install/share/po/pa_IN.po20
-rw-r--r--perl-install/share/po/pl.po20
-rw-r--r--perl-install/share/po/pt.po20
-rw-r--r--perl-install/share/po/pt_BR.po20
-rw-r--r--perl-install/share/po/ro.po20
-rw-r--r--perl-install/share/po/ru.po20
-rw-r--r--perl-install/share/po/sc.po20
-rw-r--r--perl-install/share/po/sk.po20
-rw-r--r--perl-install/share/po/sl.po20
-rw-r--r--perl-install/share/po/sq.po20
-rw-r--r--perl-install/share/po/sr.po20
-rw-r--r--perl-install/share/po/sr@Latn.po20
-rw-r--r--perl-install/share/po/sv.po20
-rw-r--r--perl-install/share/po/ta.po20
-rw-r--r--perl-install/share/po/tg.po20
-rw-r--r--perl-install/share/po/th.po20
-rw-r--r--perl-install/share/po/tl.po36
-rw-r--r--perl-install/share/po/tr.po20
-rw-r--r--perl-install/share/po/uk.po20
-rw-r--r--perl-install/share/po/uz.po20
-rw-r--r--perl-install/share/po/uz@cyrillic.po20
-rw-r--r--perl-install/share/po/vi.po22
-rw-r--r--perl-install/share/po/wa.po20
-rw-r--r--perl-install/share/po/zh_CN.po20
-rw-r--r--perl-install/share/po/zh_TW.po18
71 files changed, 717 insertions, 717 deletions
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index 29c0ab294..0b3117cc4 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -2398,7 +2398,7 @@ msgstr ""
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
"Moet nie 'inode'-toegangstye op hierdie lêerstelsel opdateer nie\n"
@@ -2419,14 +2419,14 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
"Kan slegs afsonderlik geheg word (- op sy eie - , \n"
"die '-a' opsie sal hiedie lêerstelsel nie laat heg nie)."
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr ""
"Moet nie teenwoordige karakter- of blok-toestelle op die lêerstelsel "
"vertolk\n"
@@ -2436,7 +2436,7 @@ msgstr ""
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
"Moet nie die uitvoer van programme vanaf die gehegde\n"
@@ -2456,22 +2456,22 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr "Heg die lêerstelsel as lees-alleen."
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr "Alle I/O na die lêerstelsel moet sinkronies wees."
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr ""
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr ""
#: fs/mount_options.pm:145
@@ -2847,7 +2847,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr "U kan nie 'n lêerstelsel met enkripsie vir hegpunt %s gebruik nie."
#: fsedit.pm:469
@@ -6897,7 +6897,7 @@ msgstr "Installasie het gefaal!"
#~ "nie"
#, fuzzy
-#~ msgid "Use an encrypted file system"
+#~ msgid "Use an encrypted filesystem"
#~ msgstr "U kan nie 'n lêerstelsel met enkripsie vir hegpunt %s gebruik nie."
#~ msgid ""
diff --git a/perl-install/share/po/am.po b/perl-install/share/po/am.po
index 3f7e5c65e..0228835cb 100644
--- a/perl-install/share/po/am.po
+++ b/perl-install/share/po/am.po
@@ -2322,7 +2322,7 @@ msgstr ""
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
@@ -2337,19 +2337,19 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr ""
#: fs/mount_options.pm:129
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
@@ -2363,22 +2363,22 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr ""
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr ""
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr ""
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr ""
#: fs/mount_options.pm:145
@@ -2712,7 +2712,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr ""
#: fsedit.pm:469
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index 4ecb505e3..3d81f430b 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -2404,7 +2404,7 @@ msgstr ""
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
"عدم تحديث أوقات الوصول إلى inode على نظام الملفّات هذا\n"
@@ -2423,21 +2423,21 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
"يمكن تجهيزه فقط بشكل بيّن (أي،\n"
"أن الخيار -a سوف لن يجعل نظام الملفّات يُجهّز)."
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr "عدم ترجمة الأجهزة الحرفيّة أو الكتليّة الخاصّة على نظام الملفّات."
#: fs/mount_options.pm:129
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
"عدم السماح بتنفيذ أي برامج مُجمّعة على نظام الملفّات المُجهّز.\n"
@@ -2457,22 +2457,22 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr "تجهيز نظام الملفّات بوضع القراءة فقط."
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr "كل الدّخل/الخرج إلى نظام الملفّات يجب أن يحدث تزامنيّاً."
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr ""
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr ""
#: fs/mount_options.pm:145
@@ -2849,7 +2849,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr "لا يمكنك استخدام نظام ملفات مرمّز لمكان التركيب %s"
#: fsedit.pm:469
@@ -6959,7 +6959,7 @@ msgstr "فشل التّثبيت"
#~ msgstr "خيار ``تشديد خيارات سطر الأوامر`` لا ينفع دون كلمة مرور"
#, fuzzy
-#~ msgid "Use an encrypted file system"
+#~ msgid "Use an encrypted filesystem"
#~ msgstr "لا يمكنك استخدام نظام ملفات مرمّز لمكان التركيب %s"
#~ msgid ""
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index 23532aeb5..3001b49bc 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -2402,7 +2402,7 @@ msgstr ""
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
"Bu fayl sistemi üstündəki inode yetişmə vaxtlarını yeniləmə\n"
@@ -2421,14 +2421,14 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
"Yalnız dəqiq olaraq bağlana bilər (mis.,\n"
" -a seçimi fayl sisteminin bağlanmasına səbəb olmayacaq)."
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr ""
"Fayl sistemi üstündə hərfləri çevirmə və xüsusi avadanlıqları bloklama."
@@ -2436,7 +2436,7 @@ msgstr ""
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
"Bağlı fayl sistemi üstündəki ikili faylların icra edilməsinə icazə vermə\n"
@@ -2457,22 +2457,22 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr "Fayl sistemini ancaq oxuna bilən şəkildə bağla."
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr "Fayl sisteminə bütün G/Ç'lar sinxron olaraq yerinə gətirilməlidir."
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr ""
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr ""
#: fs/mount_options.pm:145
@@ -2853,7 +2853,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr ""
"%s bağlama nöqtəsi üçün şifrələnmiş fayl sistemi istifadə edə bilməzsiniz"
@@ -7013,7 +7013,7 @@ msgstr "Qurulum bacarılmadı"
#~ "``Əmr sətiri seçimlərini məhdudlaşdır`` seçimi şifrəsiz bir işə yaramaz"
#, fuzzy
-#~ msgid "Use an encrypted file system"
+#~ msgid "Use an encrypted filesystem"
#~ msgstr ""
#~ "%s bağlama nöqtəsi üçün şifrələnmiş fayl sistemi istifadə edə bilməzsiniz"
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index 86e7f032a..10b242a3b 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -2335,7 +2335,7 @@ msgstr ""
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
@@ -2350,19 +2350,19 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr ""
#: fs/mount_options.pm:129
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
@@ -2376,22 +2376,22 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr ""
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr ""
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr ""
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr ""
#: fs/mount_options.pm:145
@@ -2736,7 +2736,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr ""
#: fsedit.pm:469
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index 2f601254c..391d53d2e 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -2441,7 +2441,7 @@ msgstr ""
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
@@ -2456,19 +2456,19 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr ""
#: fs/mount_options.pm:129
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
@@ -2482,24 +2482,24 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr "Монтиране на файловата система в режим само за четене"
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr ""
"Всички входно-изходни операции върху файловата система ще трябва да бъда "
"извършвани синхронно."
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr "Позволи всеки потребител да монтира и демонтира файловата система."
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr "Позволи на обикновен потребител да монтира файловата система."
#: fs/mount_options.pm:145
@@ -2881,7 +2881,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr ""
"Вие не може да използвате криптирана файлова система за точка на монтиране %s"
@@ -6871,7 +6871,7 @@ msgstr "Инсталацията провалена"
#~ msgstr ""
#~ "Опцията ``Ограничи опциите от командния ред'' е безполезна без парола"
-#~ msgid "Use an encrypted file system"
+#~ msgid "Use an encrypted filesystem"
#~ msgstr "Използвайте криптирана файлова система "
#~ msgid "Use the Microsoft Windows® partition for loopback"
diff --git a/perl-install/share/po/bn.po b/perl-install/share/po/bn.po
index c5c3520f8..8eb8b5b99 100644
--- a/perl-install/share/po/bn.po
+++ b/perl-install/share/po/bn.po
@@ -2414,7 +2414,7 @@ msgstr ""
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
"এই ফাইল সিস্টেমে inode প্রবেশ সময় আপডেট করবেন না\n"
@@ -2434,21 +2434,21 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
"শুধুমাত্র স্পষ্টভাবে মাউন্ট করতে পারে (যেমন,\n"
")(-a অপশন ফাইল সিস্টেম মাউন্ট করতে দেবে না)।"
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr "কোন চিহ্ন বা বিশেষ ব্লক যন্ত্রকে ফাইল সিস্টেমে ব্যাখ্যা করবেন না।"
#: fs/mount_options.pm:129
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
"মাউন্টকৃত ফাইল সিস্টেমে কোন বাইনারি এক্সিকিউট করার অনুমতি দেবেন না।\n"
@@ -2469,22 +2469,22 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr "ফাইল সিস্টেমকে শুধু পড়ার জন্য মাউন্ট করো।"
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr "সকল I/O ফাইল সিস্টেম যুগপত্‍ভাবে হওয়া উচিত।"
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr ""
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr ""
#: fs/mount_options.pm:145
@@ -2865,7 +2865,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr "আপনি %s মাউন্ট পয়েন্টের জন্য একটি এনক্রিপটেড ফাইল ব্যবহার করতে পারবেন"
#: fsedit.pm:469
@@ -6993,7 +6993,7 @@ msgstr "ইনস্টলেশন ব্যর্থ হয়েছে"
#~ "``নিয়ন্ত্রিত কমান্ড লাইন অপশন'' অপশনটি পাসওয়ার্ড ছাড়া ব্যবহার করা যাবে না"
#, fuzzy
-#~ msgid "Use an encrypted file system"
+#~ msgid "Use an encrypted filesystem"
#~ msgstr "আপনি %s মাউন্ট পয়েন্টের জন্য একটি এনক্রিপটেড ফাইল ব্যবহার করতে পারবেন"
#~ msgid ""
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index 8759bd68d..7ce41a93e 100644
--- a/perl-install/share/po/br.po
+++ b/perl-install/share/po/br.po
@@ -2357,7 +2357,7 @@ msgstr ""
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
@@ -2372,19 +2372,19 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr ""
#: fs/mount_options.pm:129
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
@@ -2398,22 +2398,22 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr "Mountañ ar reizhiad restroù en el lenn-hepken."
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr ""
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr ""
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr "Moaein zo da varc'hañ ar reiziad restroù gant un arveriad."
#: fs/mount_options.pm:145
@@ -2792,7 +2792,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr ""
"N'hell ket bet implijet ur reizhiad restroù enrineget evit ar poent marc'hañ "
"%s"
@@ -6612,7 +6612,7 @@ msgstr "Sac'het eo ar staliadur"
#~ msgstr ""
#~ "Didalvout eo « Strishaat dibarzhoù al linenn urzhiañ » hep tremenger"
-#~ msgid "Use an encrypted file system"
+#~ msgid "Use an encrypted filesystem"
#~ msgstr "Implijit ur reizhiad restroù enrineget"
#~ msgid "Use the Microsoft Windows® partition for loopback"
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index 95e7b2819..dd77b5d15 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -2445,7 +2445,7 @@ msgstr ""
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
"Ne ažuriraj vrijeme pristupa inode-u na ovom sistemu\n"
@@ -2464,21 +2464,21 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
"Može se montirati samo eksplicitno (tj.,\n"
"opcija -a neće montirati i ovaj sistem)."
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr "Nemoj interpretirati karakter ili blok uređaje na datotečnom sistemu."
#: fs/mount_options.pm:129
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
"Ne dozvoli izvršenje binarnih datoteka na montiranom\n"
@@ -2498,22 +2498,22 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr "Montiraj datotečni sistem samo za čitanje."
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr "Sav U/I na datotečni sistem se treba izvršavati sinhrono."
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr "Dozvoli svakom korisniku da (de)montira datotečni sistem."
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr "Dozvoli običnom korisniku da montira datotečni sistem."
#: fs/mount_options.pm:145
@@ -2900,7 +2900,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr "Ne možete koristiti šifrovani datotečni sistem za tačku montiranja %s"
#: fsedit.pm:469
@@ -7076,7 +7076,7 @@ msgstr "Instalacija nije uspjela"
#~ "Option ``Restrict command line options'' is of no use without a password"
#~ msgstr "Opcija ``Ograniči opcije komandne linije'' je beskorisna bez šifre"
-#~ msgid "Use an encrypted file system"
+#~ msgid "Use an encrypted filesystem"
#~ msgstr "Koristi šifrovani datotečni sistem"
#~ msgid ""
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index 155ce2808..14313e219 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -2423,7 +2423,7 @@ msgstr ""
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
"No actualitzeu els temps d'accés a inode en aquest sistema de fitxers (p.ex. "
@@ -2446,14 +2446,14 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
"Només es pot muntar explícitament (p. ex.,\n"
"l'opció -a no farà que el sistema de fitxers es munti)."
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr ""
"No interpretis el dispositius especials de caràcter o bloc en el sistema de "
"fitxers."
@@ -2462,7 +2462,7 @@ msgstr ""
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
"No permetis que s'executi cap binari en el sistema de fitxers\n"
@@ -2482,22 +2482,22 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr "Munta el sistema de fitxers només de lectura."
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr "Totes les E/S del sistema de fitxers s'han de fer sincronitzadament."
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr ""
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr ""
#: fs/mount_options.pm:145
@@ -2889,7 +2889,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr ""
"No podeu utilitzar un sistema d'arxius xifrat per al punt de muntatge %s"
@@ -7070,7 +7070,7 @@ msgstr "La instal·lació ha fallat"
#~ "L'opció \"Limita les opcions de la línia d'ordres\" no té cap utilitat "
#~ "sense una contrasenya"
-#~ msgid "Use an encrypted file system"
+#~ msgid "Use an encrypted filesystem"
#~ msgstr "Usa un sistema de fitxers xifrat"
#~ msgid ""
diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po
index 008d5b5d0..5bfe56ae2 100644
--- a/perl-install/share/po/cs.po
+++ b/perl-install/share/po/cs.po
@@ -2440,7 +2440,7 @@ msgstr "Počítat skupinové kvóty na disku a volitelně vynucovat omezení"
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
"Neaktualizovat čas přístupu pro tento souborový systém\n"
@@ -2461,14 +2461,14 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
"Lze připojit pouze explicitně (tj. volba -a\n"
"způsobí, že souborový systém nebude připojen)."
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr ""
"Neinterpretovat speciální znaková či bloková zařízení na souborovém systému."
@@ -2476,7 +2476,7 @@ msgstr ""
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
"Nepovolit spouštění jakýchkoliv binárních souborů na připojeném\n"
@@ -2497,22 +2497,22 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr "Připojit souborový systém pouze pro čtení."
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr "Všechny vstupně/výstupní operace budou prováděny synchronně."
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr "Povolit připojení a odpojení souborového systému každému uživateli."
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr "Povolit obyčejnému uživateli připojit souborový systém."
#: fs/mount_options.pm:145
@@ -2895,7 +2895,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr "Nelze použít kryptovaný souborový systém na připojený bod %s"
#: fsedit.pm:469
@@ -7245,7 +7245,7 @@ msgstr "Instalace selhala"
#~ msgstr ""
#~ "Volba ''Omezení nastavení z příkazové řádky'' je bezpředmětné bez hesla"
-#~ msgid "Use an encrypted file system"
+#~ msgid "Use an encrypted filesystem"
#~ msgstr "Použít šifrovaný souborový systém"
#~ msgid ""
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index 468b20c1b..69eb47964 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -2434,7 +2434,7 @@ msgstr "Galluogi cyfrifo cwota disg grŵp a dewis gorfodi terfynau"
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
"Peidiwch ddiweddaru amser mynediad inode ar y system ffeiliau\n"
@@ -2456,14 +2456,14 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
"Dim ond ei arosod yn benodol (h.y.,\n"
"bydd y dewis -a yn achosi i'r system gael ei arosod)."
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr ""
"Peidio dehongli nod neu rwystro dyfeisiadau arbennig ar y system ffeil."
@@ -2471,7 +2471,7 @@ msgstr ""
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
"Peidio caniatáu gweithrediad unrhyw dueddiad ar system ffeil wedi ei\n"
@@ -2492,22 +2492,22 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr "Arosodwch y system ffeiliau fel darllen yn unig."
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr "Dylai pob I/O i'r system ffeil gael ei wneud yn gydamserol."
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr "Caniatáu pob defnyddiwr i arosod a dadarosod y system ffeiliau."
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr "Caniatáu i ddefnyddiwr cyffredin arosod system ffeil."
#: fs/mount_options.pm:145
@@ -2888,7 +2888,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr "Nid oes modd defnyddio Cyfrol Resymegol LVM ar gyfer pwynt arosod %s"
#: fsedit.pm:469
@@ -7247,7 +7247,7 @@ msgstr "Methodd y gosod"
#~ "Dewis ``Nid yw 'cyfyngu dewisiadau llinell orchymyn'' o werth heb "
#~ "gyfrinair"
-#~ msgid "Use an encrypted file system"
+#~ msgid "Use an encrypted filesystem"
#~ msgstr "Defnyddiwch system ffeil amgryptiedig"
#~ msgid ""
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index 4af51bd9d..66fa061bd 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -2444,7 +2444,7 @@ msgstr "Aktivér kontering af gruppediskkvota, og indfør eventuelt grænser"
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
"Opdatér ikke inode tilgangstider på dette filsystem\n"
@@ -2463,21 +2463,21 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
"Kan kun monteres eksplicit (dvs.,\n"
"'-a' tilvalget vil ikke bevirke, at filsystemet monteres)."
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr "Fortolk ikke tegn- eller blok-specialenheder på filsystemet."
#: fs/mount_options.pm:129
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
"Tillad ikke udførelse af nogen som helst binære på det monterede \n"
@@ -2498,22 +2498,22 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr "Montér filsystem skrivebeskyttet"
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr "Al I/O til filsystemet bør gøres synkront."
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr "Tillad alle brugere at montere og afmontere filsystemet."
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr "Tillad en almindelig bruger at montere filsystemet."
#: fs/mount_options.pm:145
@@ -2892,7 +2892,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr "Du kan ikke bruge et krypteret filsystem for monteringspunkt %s"
#: fsedit.pm:469
@@ -7228,7 +7228,7 @@ msgstr "Installation mislykkedes"
#~ "Indstillingen ``Begræns kommandolinie-indstillinger'' er intet værd uden\n"
#~ "en adgangskode"
-#~ msgid "Use an encrypted file system"
+#~ msgid "Use an encrypted filesystem"
#~ msgstr "Brug et krypteret filsystem"
#~ msgid ""
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index 68c28451a..a067ddb61 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po
@@ -2495,7 +2495,7 @@ msgstr ""
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
"Inode-Zugriffszeiten auf diesem System nicht aktualisieren\n"
@@ -2516,14 +2516,14 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
"Kann nur explizit eingehängt werden (so wird\n"
"etwa das Dateisystem nicht bei „-a“ eingehängt)."
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr ""
"Interpretiere keine zeichen- oder speziellen blockorientierten Geräte auf "
"dem Dateisystem."
@@ -2532,7 +2532,7 @@ msgstr ""
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
"Verbiete die Ausführung jeglicher Binärdateien auf dem ein-\n"
@@ -2552,22 +2552,22 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr "Das Dateisystem read only einhängen/mounten"
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr "Alle I/O-Operationen am Dateisystem sollten parallel gemacht werden."
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr "Jedem Benutzer das Ein- und Aushängen des Dateisystems erlauben."
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr "Normalen Benutzern das Einhängen des Dateisystems erlauben."
#: fs/mount_options.pm:145
@@ -2975,7 +2975,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr ""
"Sie können kein verschlüsseltes Medium für den Einhängepunkt %s verwenden."
@@ -7391,7 +7391,7 @@ msgstr "Die Installation schlug fehl!"
#~ "ohne \n"
#~ "Angabe eines Passwortes wirkungslos."
-#~ msgid "Use an encrypted file system"
+#~ msgid "Use an encrypted filesystem"
#~ msgstr "Ein verschlüsseltes Dateisystem verwenden"
#~ msgid ""
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index a681fd375..a022f4e52 100644
--- a/perl-install/share/po/el.po
+++ b/perl-install/share/po/el.po
@@ -2482,7 +2482,7 @@ msgstr ""
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
"Να μην γίνει ενημέρωση της ώρας πρόσβασης στα inodes σε αυτό το σύστημα "
@@ -2504,21 +2504,21 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
"Μπορεί να γίνει μόνο ρητή προσάρτηση (i.e.,\n"
"η παράμετρος -a δεν κάνει προσάρτηση του συστήματος αρχείων)."
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr "Αγνόησε τα ειδικά αρχεία τύπου χαρακτήρα ή block στο σύστημα αρχείων."
#: fs/mount_options.pm:129
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
"Να μην επιτρέπεται η εκτέλεση εκτελέσιμων αρχείων (binaries) από τα "
@@ -2540,25 +2540,25 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr "Προσάρτηση του συστήματος αρχείων «μόνο-για-ανάγνωση»."
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr ""
"Όλες οι λειτουργίες I/O στο σύστημα αρχείων θα πρέπει να γίνονται σύγχρονα."
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr ""
"Να επιτρέπεται σε κάθε χρήστη η προσάρτηση και η αποπροσάρτηση του "
"συστήματος αρχείων."
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr "Να επιτρέπεται σε έναν απλό χρήστη να προσαρτεί το σύστημα αρχείων."
#: fs/mount_options.pm:145
@@ -2955,7 +2955,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr ""
"Δεν μπορείς να χρησιμοποιήσεις ένα κρυπτογραφημένο σύστημα αρχείων για το "
"σημείο προσάρτησης %s"
@@ -7424,7 +7424,7 @@ msgstr "Η εγκατάσταση απέτυχε"
#~ "Η επιλογή ``Απαγόρευση επιλογών γραμμής εντολής'' είναι άχρηστη χωρίς "
#~ "κωδικό πρόσβασης"
-#~ msgid "Use an encrypted file system"
+#~ msgid "Use an encrypted filesystem"
#~ msgstr "Χρήση ενός κρυπτογραφημένου συστήματος αρχείων"
#~ msgid ""
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index 67856cf8a..75dd82b2c 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -2379,7 +2379,7 @@ msgstr ""
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
@@ -2394,19 +2394,19 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr ""
#: fs/mount_options.pm:129
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
@@ -2420,22 +2420,22 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr ""
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr ""
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr ""
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr ""
#: fs/mount_options.pm:145
@@ -2815,7 +2815,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr "Vi ne povas uzi kriptan dosiersistemon por surmetingo %s"
#: fsedit.pm:469
@@ -6723,7 +6723,7 @@ msgstr "Instalado malsukcesis"
#~ msgstr "Opcio ``Limigu komandliniajn opciojn'' ne estas utila sen pasvorto"
#, fuzzy
-#~ msgid "Use an encrypted file system"
+#~ msgid "Use an encrypted filesystem"
#~ msgstr "Vi ne povas uzi kriptan dosiersistemon por surmetingo %s"
#~ msgid "Use the Microsoft Windows® partition for loopback"
diff --git a/perl-install/share/po/es.po b/perl-install/share/po/es.po
index 984b3744c..01dea2d3a 100644
--- a/perl-install/share/po/es.po
+++ b/perl-install/share/po/es.po
@@ -2458,7 +2458,7 @@ msgstr ""
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
"No actualizar los tiempos de acceso al inodo en este sistema de archivos\n"
@@ -2479,14 +2479,14 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
"Sólo se puede montar explícitamente (es decir,\n"
"la opción -a no causará que se monte el sistema de archivos)"
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr ""
"No interpretar dispositivos especiales de bloque o carácter en el sistema de "
"archivos."
@@ -2495,7 +2495,7 @@ msgstr ""
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
"No permitir la ejecución de binarios en el sistema de archivos montado.\n"
@@ -2516,23 +2516,23 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr "Montar el sistema de archivos como sólo de lectura."
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr ""
"Toda la E/S del sistema de archivos debería hacerse de manera sincrónica."
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr "Permitir a cada usuario montar y desmontar el sistema de archivos."
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr "Permitir a un usuario común montar el sistema de archivos."
#: fs/mount_options.pm:145
@@ -2922,7 +2922,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr ""
"No puede usar un sistema de archivos cifrado para el punto de montaje %s"
@@ -7340,7 +7340,7 @@ msgstr "Falló la instalación"
#~ "La opción \"Restringir las opciones de la línea de comandos\"\n"
#~ "no tiene sentido sin contraseña"
-#~ msgid "Use an encrypted file system"
+#~ msgid "Use an encrypted filesystem"
#~ msgstr "Usar un sistema de archivos cifrado"
#~ msgid ""
diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po
index 398cd4551..149b8e8de 100644
--- a/perl-install/share/po/et.po
+++ b/perl-install/share/po/et.po
@@ -2426,7 +2426,7 @@ msgstr ""
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
"Inode juurdepääsu kordi sellel failisüsteemil ei värskendata\n"
@@ -2445,21 +2445,21 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
"Haagitakse ainult otsesel märkimisel\n"
"(s.t. võti -a ei haagi failisüsteemi)."
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr "Failisüsteemis ei interpreteerita märgi- või blokieriseadmeid."
#: fs/mount_options.pm:129
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
"Ei lubata ühegi binaarfaili käivitamist haagitud failisüsteemis.\n"
@@ -2479,22 +2479,22 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr "Failisüsteem haagitakse ainult lugemisõigusega."
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr "Kogu failisüsteemi I/O sooritatakse sünkroonselt."
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr "Igal kasutajal lubatakse failisüsteemi haakida ja lahti ühendada."
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr "Tavalisel kasutajal lubatakse failisüsteemi haakida."
#: fs/mount_options.pm:145
@@ -2875,7 +2875,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr "Te ei saa haakepunkti %s jaoks kasutada krüptitud failisüsteemi"
#: fsedit.pm:469
@@ -7220,7 +7220,7 @@ msgstr "Paigaldamine nurjus"
#~ msgstr ""
#~ "Võtit \"Piiratakse käsurea võtmeid\" ei saa kasutada parooli sisestamata"
-#~ msgid "Use an encrypted file system"
+#~ msgid "Use an encrypted filesystem"
#~ msgstr "Krüptitud failisüsteemi kasutamine"
#~ msgid ""
diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po
index 5405fa61b..861b4b3db 100644
--- a/perl-install/share/po/eu.po
+++ b/perl-install/share/po/eu.po
@@ -2446,7 +2446,7 @@ msgstr ""
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
"Ez eguneratu inodoen atzipen-orduak fitxategi-sistema honetan\n"
@@ -2467,14 +2467,14 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
"Esplizituki muntatu behar da (hau da,\n"
"-a aukerak ez du muntatuko fitxategi-sistema)."
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr ""
"Ez interpretatu karaktere- edo bloke-gailu berezirik fitxategi-sisteman."
@@ -2482,7 +2482,7 @@ msgstr ""
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
"Ez eman bitarrak exekutatzeko baimenik muntatutako\n"
@@ -2502,23 +2502,23 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr "Irakurtzeko soilik muntatu fitxategi-sistema."
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr "Fitxategi-sistemako S/I guztiak sinkronizatuta egin behar dira."
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr ""
"Erabiltzaile orori fitxategi sistema muntatu eta desmuntatzeko baimena eman."
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr "Erabiltzaile arrunt bati fitxategi-sistema muntatzeko gaitasuna eman."
#: fs/mount_options.pm:145
@@ -2900,7 +2900,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr "Ezin da fitxategi-sistema enkriptatua erabili %s muntatze-punturako"
#: fsedit.pm:469
@@ -7288,7 +7288,7 @@ msgstr "Instalazioak huts egin du"
#~ "``Murriztu komando-lerroko aukerak'' aukera ezin da erabili pasahitzik "
#~ "gabe"
-#~ msgid "Use an encrypted file system"
+#~ msgid "Use an encrypted filesystem"
#~ msgstr "Erabili zifratutako fitxategi sistema"
#~ msgid ""
diff --git a/perl-install/share/po/fa.po b/perl-install/share/po/fa.po
index a183f5952..c23b5efd5 100644
--- a/perl-install/share/po/fa.po
+++ b/perl-install/share/po/fa.po
@@ -2420,7 +2420,7 @@ msgstr ""
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
"زمان دستیابی inode در این سیستم پرونده بروزسازی نگردد\n"
@@ -2439,21 +2439,21 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
"فقط می‌تواند بطور صریح سوار گردد (\n"
"گزینه -a باعث سوار شدن سیستم پرونده‌ای نخواهد شد)."
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr "نویسه‌ یا دستگاه‌های مخصوص بلوک روی سیستم پرونده‌ای تعبیر نشوند."
#: fs/mount_options.pm:129
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
"اجازه‌ی اجرای هر دوگانی بر سیستم پرونده‌ی سوارشده داده نشود.\n"
@@ -2474,22 +2474,22 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr "سوار کردن سیستم پرونده بطور فقط-خواندن."
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr "همه‌ی I/O به سیستم پرونده بایستی بطور هم‌گاه انجام گیرد."
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr ""
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr ""
#: fs/mount_options.pm:145
@@ -2875,7 +2875,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr ""
"نمی‌توانید از سیستم پرونده‌ی رمزگذاری شده برای نقطه سوارسازی %s استفاده کنید"
@@ -7006,7 +7006,7 @@ msgstr "نصب شکست خورد"
#~ msgstr "گزینه‌ی ``محدودیت گزینه‌های خط فرمان'' بدون یک گذرواژه بی‌فایده است"
#, fuzzy
-#~ msgid "Use an encrypted file system"
+#~ msgid "Use an encrypted filesystem"
#~ msgstr ""
#~ "نمی‌توانید از سیستم پرونده‌ی رمزگذاری شده برای نقطه سوارسازی %s استفاده کنید"
diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po
index 2fd86ae32..98e51ce8c 100644
--- a/perl-install/share/po/fi.po
+++ b/perl-install/share/po/fi.po
@@ -2470,7 +2470,7 @@ msgstr ""
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
"Älä päivitä inoodien käyttöaikaa tässä tiedostojärjestelmässä\n"
@@ -2489,21 +2489,21 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
"Voidaan liittää vain erikseen määritettynä\n"
"(esim. valitsin -a ei liitä tiedostojärjestelmää)."
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr "Älä tulkitse merkki- tai lohkolaitteita tiedostojärjestelmässä."
#: fs/mount_options.pm:129
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
"Älä salli minkään binääritiedoston suoritusta tiedosto-\n"
@@ -2525,22 +2525,22 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr "Liitä tiedostojärjestelmä vain luku -tilassa."
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr "Kaikki luku/kirjoitustoiminnot tehdään synkronoidusti."
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr "Salli kaikkien käyttäjien liittää ja irrottaa tiedostojärjestelmä."
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr "Salli tavallisen käyttäjän liittää tiedostojärjestelmä."
#: fs/mount_options.pm:145
@@ -2928,7 +2928,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr "Salattua tiedostojärjestelmää ei voi käyttää liitospisteelle %s"
#: fsedit.pm:469
@@ -7417,7 +7417,7 @@ msgstr "Asennus epäonnistui"
#~ msgstr ""
#~ "Asetus \"Rajoita komentoriviasetuksia\" ei ole hyödyllinen ilman salasanaa"
-#~ msgid "Use an encrypted file system"
+#~ msgid "Use an encrypted filesystem"
#~ msgstr "Käytä salattua tiedostojärjestelmää"
#~ msgid ""
diff --git a/perl-install/share/po/fr.po b/perl-install/share/po/fr.po
index ebb7bbbc8..3033db415 100644
--- a/perl-install/share/po/fr.po
+++ b/perl-install/share/po/fr.po
@@ -2538,7 +2538,7 @@ msgstr "Activer les quotas de groupes et imposer (facultativement) les limites"
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
"Ne pas mettre à jour l'heure d'accès aux inodes sur ce système de fichier\n"
@@ -2559,14 +2559,14 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
"Ne peut être monté qu'explicitement (ie.,\n"
"l'option -a ne montera pas le système de fichier)."
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr ""
"Ignorer les fichiers spéciaux de type caractère ou bloc sur le système de "
"fichier."
@@ -2575,7 +2575,7 @@ msgstr ""
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
"N'autorise pas l'exécution de binaires sur le système de fichiers\n"
@@ -2594,23 +2594,23 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr "Monter le système de fichier en lecture seule."
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr "Toutes les E/S sur ce système de fichier sont asynchrones."
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr ""
"Autoriser tous les utilisateurs à monter et démonter le système de fichier."
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr "Permettre à un utilisateur ordinaire de monter le système de fichier."
#: fs/mount_options.pm:145
@@ -3012,7 +3012,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr ""
"Vous ne pouvez pas utiliser de système de fichiers crypté pour le point de "
"montage %s"
@@ -7467,7 +7467,7 @@ msgstr "Échec de l'installation"
#~ msgstr ""
#~ "L'option ``Restrict command line options'' est inutile sans mot de passe"
-#~ msgid "Use an encrypted file system"
+#~ msgid "Use an encrypted filesystem"
#~ msgstr "Utiliser un système de fichiers crypté"
#~ msgid ""
diff --git a/perl-install/share/po/fur.po b/perl-install/share/po/fur.po
index 286c80fb5..38b0b3c93 100644
--- a/perl-install/share/po/fur.po
+++ b/perl-install/share/po/fur.po
@@ -2336,7 +2336,7 @@ msgstr ""
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
@@ -2351,19 +2351,19 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr ""
#: fs/mount_options.pm:129
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
@@ -2377,22 +2377,22 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr ""
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr ""
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr ""
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr ""
#: fs/mount_options.pm:145
@@ -2727,7 +2727,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr ""
#: fsedit.pm:469
diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po
index c53cb7a72..5777b8139 100644
--- a/perl-install/share/po/ga.po
+++ b/perl-install/share/po/ga.po
@@ -2331,7 +2331,7 @@ msgstr ""
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
@@ -2346,19 +2346,19 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr ""
#: fs/mount_options.pm:129
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
@@ -2372,22 +2372,22 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr ""
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr ""
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr ""
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr ""
#: fs/mount_options.pm:145
@@ -2726,7 +2726,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr ""
#: fsedit.pm:469
diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po
index 643e33ff8..c72496a01 100644
--- a/perl-install/share/po/gl.po
+++ b/perl-install/share/po/gl.po
@@ -2441,7 +2441,7 @@ msgstr ""
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
"Non actualizar as horas de acceso ó inodos neste sistema de ficheiros\n"
@@ -2462,14 +2462,14 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
"Só se poderá montar explícitamente (p.ex.,\n"
"a opción -a non fará que o sistema de ficheiros se monte)."
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr ""
"Non interpretar os dispositivos de caracter ou bloque especiais no sistema "
"de ficheiros."
@@ -2478,7 +2478,7 @@ msgstr ""
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
"Non permitir a execución de binarios no sistema de ficheiros que\n"
@@ -2496,23 +2496,23 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr "Monta-lo sistema de ficheiros coma de só lectura."
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr ""
"Toda a E/S do sistema de ficheiros debe facerse de maneira sincronizada."
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr "Permite a tódolos usuarios montar e desmontar o sistema de ficheiros."
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr "Permitir que os usuarios normais monten o sistema de ficheiros."
#: fs/mount_options.pm:145
@@ -2902,7 +2902,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr ""
"Non pode usar un sistema de ficheiros cifrado para o punto de montaxe %s"
@@ -7115,7 +7115,7 @@ msgstr "Fallou a instalación"
#~ "A opción ``Restrinxir opcións da liña de comandos'' non ten sentido sen "
#~ "contrasinal"
-#~ msgid "Use an encrypted file system"
+#~ msgid "Use an encrypted filesystem"
#~ msgstr "Usar un sistema de ficheiros cifrado"
#~ msgid ""
diff --git a/perl-install/share/po/he.po b/perl-install/share/po/he.po
index 8e5159075..466829a4e 100644
--- a/perl-install/share/po/he.po
+++ b/perl-install/share/po/he.po
@@ -2408,7 +2408,7 @@ msgstr "אפשר הקצאת שטח דיסק לקבוצות וכאפשרות גם
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
"אל תעדכן זמני גישה ל inode במערכת קבצים זו\n"
@@ -2427,21 +2427,21 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
"אפשר עיגון ישיר בלבד (דהיינו mount -a\n"
"לא יגרום לעיגון אוטומטי של מערכת קבצים זו)"
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr "אל תפענח התקני character והתקני block על מערכת קבצים זו."
#: fs/mount_options.pm:129
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
"אל תאפשר הפעלת קבצים בינאריים על מערכת קבצים זו\n"
@@ -2461,22 +2461,22 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr "עגן את מערכת הקבצים לקריאה בלבד."
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr "כל גישות כתיבה/קריאה למערכת הקבצים אמורות להתבצע באופן סינכרוני."
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr "אפשר לכל משתמש לעגן ולהתיר את עגינת מערכת הקבצים."
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr "אפשר למשתמש רגיל לעגן את מערכת הקבצים."
#: fs/mount_options.pm:145
@@ -2854,7 +2854,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr "אסור להשתמש במערכת קבצים מוצפנת לנקודת העיגון %s"
#: fsedit.pm:469
@@ -6982,7 +6982,7 @@ msgstr "ההתקנה נכשלה"
#~ "Option ``Restrict command line options'' is of no use without a password"
#~ msgstr "אפשרות ''הגבלת אפשרויות שורת הפקודה'' לא שימושית ללא הגדרת סיסמה"
-#~ msgid "Use an encrypted file system"
+#~ msgid "Use an encrypted filesystem"
#~ msgstr "השתמש במערכת קבצים מוצפנת"
#~ msgid ""
diff --git a/perl-install/share/po/hi.po b/perl-install/share/po/hi.po
index 4b0d0d138..3f9dc81a9 100644
--- a/perl-install/share/po/hi.po
+++ b/perl-install/share/po/hi.po
@@ -2401,7 +2401,7 @@ msgstr ""
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
"इस संचिका प्रणाली पर आईनोड पहुँच समयों को अपडेट ना करें\n"
@@ -2420,21 +2420,21 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
"विस्तारपूर्वक ही आरोहित किया जा सकता है (उदाहरण हेतु,\n"
" -a विकल्प निश्चित करेगा कि संचिका प्रणाली आरोहित ना हो) । "
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr "इस संचिका प्रणाली पर कैरेक्टर या ब्लॉक विशेष उपकरणों की व्याख्या ना करें।"
#: fs/mount_options.pm:129
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
"आरोहित संचिका प्रणाली पर किसी बायनरीओं को चलाने की अनुमति ना दें\n"
@@ -2454,22 +2454,22 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr "संचिका प्रणाली को सिर्फ़-पठन के लिए आरोहित करें"
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr "संचिका प्रणाली पर सभी इन्पुट/आउटपुट एक ही समय में होना चाहिये ।"
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr ""
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr ""
#: fs/mount_options.pm:145
@@ -2851,7 +2851,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr "आरोह बिन्दु %s के लिए आप एक गूढ़-लिखित संचिका तंत्र का उपयोग नहीं कर सकते है"
#: fsedit.pm:469
@@ -6834,7 +6834,7 @@ msgstr "संसाधन असफ़ल"
#~ "का बिना एक कूटशब्द के कोई उपयोग नहीं है"
#, fuzzy
-#~ msgid "Use an encrypted file system"
+#~ msgid "Use an encrypted filesystem"
#~ msgstr "आरोह बिन्दु %s के लिए आप एक गूढ़-लिखित संचिका तंत्र का उपयोग नहीं कर सकते है"
#~ msgid ""
diff --git a/perl-install/share/po/hr.po b/perl-install/share/po/hr.po
index 2be55dc16..bdaa49602 100644
--- a/perl-install/share/po/hr.po
+++ b/perl-install/share/po/hr.po
@@ -2396,7 +2396,7 @@ msgstr ""
#: fs/mount_options.pm:118
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
+"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 ""
"Ne osvježavaj vremenski pristup inodeu na ovom datotečnom sustavu\n"
@@ -2417,14 +2417,14 @@ msgstr ""
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"the -a option will not cause the filesystem to be mounted)."
msgstr ""
"Može biti montirano samo eksplicitno (npr.,\n"
"-a opcija neće montirati datotečni sustav)."
#: fs/mount_options.pm:127
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Do not interpret character or block special devices on the filesystem."
msgstr ""
"Ne interpretiraj znak ili blok specijalne uređaje na datotečnom sustavu."
@@ -2432,7 +2432,7 @@ msgstr ""
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
+"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
"Ne dozvoli izvršavanje programa na montiranom \n"
@@ -2453,22 +2453,22 @@ msgstr ""
#: fs/mount_options.pm:137
#, c-format
-msgid "Mount the file system read-only."
+msgid "Mount the filesystem read-only."
msgstr "Montiraj datotečni sustav samo-za-čitanje"
#: fs/mount_options.pm:139
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "All I/O to the filesystem should be done synchronously."
msgstr "Svi I/O na datotečni sustav bi trebali biti napravljeni sinkronizirano"
#: fs/mount_options.pm:141
#, c-format
-msgid "Allow every user to mount and umount the file system."
+msgid "Allow every user to mount and umount the filesystem."
msgstr ""
#: fs/mount_options.pm:143
#, c-format
-msgid "Allow an ordinary user to mount the file system."
+msgid "Allow an ordinary user to mount the filesystem."
msgstr ""
#: fs/mount_options.pm:145
@@ -2847,7 +2847,7 @@ msgstr ""
#: fsedit.pm:465 fsedit.pm:483
#, c-format
-msgid "You can not use an encrypted file system for mount point %s"
+msgid "You can not use an encrypted filesystem for mount point %s"
msgstr ""
"Ne možete koristiti enkriptirani datotečni sustav za točku montiranja %s"
@@ -6857,7 +6857,7 @@ msgstr "Instalacija nije uspjela"
#~ "unesete lozinku"
#, fuzzy
-#~ msgid "Use an encrypted file system"
+#~ msgid "Use an encrypted filesystem"
#~ msgstr ""
#~ "Ne možete koristiti enkriptirani datotečni sustav za točku montiranja %s"
diff --git a/perl-install/share/po/hu.po b/perl-install/share/po/hu.po
index e258cbb60..f7e8144a0 100644
--- a/perl-install/share/po/hu.po
+++ b/perl-install/share/po/hu.po