aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console/command/cron/run.php
blob: dea6493007321a4da2815c5624942d0faff8d42d (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
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/

namespace phpbb\console\command\cron;

use phpbb\exception\runtime_exception;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Output\OutputInterface;

class run extends \phpbb\console\command\command
{
	/** @var \phpbb\cron\manager */
	protected $cron_manager;

	/** @var \phpbb\lock\db */
	protected $lock_db;

	/**
	* Construct method
	*
	* @param \phpbb\user $user The user object (used to get language information)
	* @param \phpbb\cron\manager $cron_manager The cron manager containing
	*		the cron tasks to be executed.
	* @param \phpbb\lock\db $lock_db The lock for accessing database.
	*/
	public function __construct(\phpbb\user $user, \phpbb\cron\manager $cron_manager, \phpbb\lock\db $lock_db)
	{
		$this->cron_manager = $cron_manager;
		$this->lock_db = $lock_db;
		parent::__construct($user);
	}

	/**
	* Sets the command name and description
	*
	* @return null
	*/
	protected function configure()
	{
		$this
			->setName('cron:run')
			->setDescription($this->user->lang('CLI_DESCRIPTION_CRON_RUN'))
			->setHelp($this->user->lang('CLI_HELP_CRON_RUN'))
			->addArgument('name', InputArgument::OPTIONAL, $this->user->lang('CLI_DESCRIPTION_CRON_RUN_ARGUMENT_1'))
		;
	}

	/**
	* Executes the command cron:run.
	*
	* Tries to acquire the cron lock, then if no argument has been given runs all ready cron tasks.
	* If the cron lock can not be obtained, an error message is printed
	*		and the exit status is set to 1.
	* If the verbose option is specified, each start of a task is printed.
	*		Otherwise there is no output.
	* If an argument is given to the command, only the task whose name matches the
	*		argument will be started. If verbose option is specified,
	*		an info message containing the name of the task is printed.
	* If no task matches the argument given, an error message is printed
	*		and the exit status is set to 2.
	*
	* @param InputInterface $input The input stream used to get the argument and verboe option.
	* @param OutputInterface $output The output stream, used for printing verbose-mode and error information.
	*
	* @return int 0 if all is ok, 1 if a lock error occured and 2 if no task matching the argument was found.
	*/
	protected function execute(InputInterface $input, OutputInterface $output)
	{
		if ($this->lock_db->acquire())
		{
			$task_name = $input->getArgument('name');
			if ($task_name)
			{
				$exit_status = $this->run_one($input, $output, $task_name);
			}
			else
			{
				$exit_status = $this->run_all($input, $output);
			}

			$this->lock_db->release();
			return $exit_status;
		}
		else
		{
			throw new runtime_exception('CRON_LOCK_ERROR', array(), null, 1);
		}
	}

	/**
	* Executes all ready cron tasks.
	*
	* If verbose mode is set, an info message will be printed if there is no task to
	*		be run, or else for each starting task.
	*
	* @see execute
	* @param InputInterface $input The input stream used to get the argument and verbose option.
	* @param OutputInterface $output The output stream, used for printing verbose-mode and error information.
	* @return int 0
	*/
	protected function run_all(InputInterface $input, OutputInterface $output)
	{
		$run_tasks = $this->cron_manager->find_all_ready_tasks();

		if ($run_tasks)
		{
			foreach ($run_tasks as $task)
			{
				if ($input->getOption('verbose'))
				{
					$output->writeln('<info>' . $this->user->lang('RUNNING_TASK', $task->get_name()) . '</info>');
				}

				$task->run();
			}
		}
		else
		{
			if ($input->getOption('verbose'))
			{
				$output->writeln('<info>' . $this->user->lang('CRON_NO_TASK') . '</info>');
			}
		}

		return 0;
	}

	/**
	* Executes a given cron task, if it is ready.
	*
	* If there is a task whose name matches $task_name, it is run and 0 is returned.
	*		and if verbose mode is set, print an info message with the name of the task.
	* If there is no task matching $task_name, the function prints an error message
	*		and returns with status 2.
	*
	* @see execute
	* @param string $task_name The name of the task that should be run.
	* @param InputInterface $input The input stream used to get the argument and verbose option.
	* @param OutputInterface $output The output stream, used for printing verbose-mode and error information.
	* @return int 0 if all is well, 2 if no task matches $task_name.
	*/
	protected function run_one(InputInterface $input, OutputInterface $output, $task_name)
	{
		$task = $this->cron_manager->find_task($task_name);
		if ($task)
		{
			if ($input->getOption('verbose'))
			{
				$output->writeln('<info>' . $this->user->lang('RUNNING_TASK', $task_name) . '</info>');
			}

			$task->run();
			return 0;
		}
		else
		{
			throw new runtime_exception('CRON_NO_SUCH_TASK', array( $task_name), null, 2);
		}
	}
}
tr>-rw-r--r--perl-install/install/help/po/ko.po2
-rw-r--r--perl-install/install/help/po/ky.po2
-rw-r--r--perl-install/install/help/po/lt.po2
-rw-r--r--perl-install/install/help/po/ltg.po2
-rw-r--r--perl-install/install/help/po/lv.po2
-rw-r--r--perl-install/install/help/po/mk.po4
-rw-r--r--perl-install/install/help/po/mn.po2
-rw-r--r--perl-install/install/help/po/ms.po2
-rw-r--r--perl-install/install/help/po/mt.po4
-rw-r--r--perl-install/install/help/po/nb.po4
-rw-r--r--perl-install/install/help/po/nl.po4
-rw-r--r--perl-install/install/help/po/nn.po4
-rw-r--r--perl-install/install/help/po/pa_IN.po2
-rw-r--r--perl-install/install/help/po/pl.po4
-rw-r--r--perl-install/install/help/po/pt.po4
-rw-r--r--perl-install/install/help/po/pt_BR.po4
-rw-r--r--perl-install/install/help/po/ro.po2
-rw-r--r--perl-install/install/help/po/ru.po4
-rw-r--r--perl-install/install/help/po/sc.po2
-rw-r--r--perl-install/install/help/po/sk.po4
-rw-r--r--perl-install/install/help/po/sl.po4
-rw-r--r--perl-install/install/help/po/sq.po4
-rw-r--r--perl-install/install/help/po/sr.po2
-rw-r--r--perl-install/install/help/po/sr@Latn.po2
-rw-r--r--perl-install/install/help/po/sv.po2
-rw-r--r--perl-install/install/help/po/ta.po2
-rw-r--r--perl-install/install/help/po/tg.po4
-rw-r--r--perl-install/install/help/po/th.po2
-rw-r--r--perl-install/install/help/po/tl.po4
-rw-r--r--perl-install/install/help/po/tr.po2
-rw-r--r--perl-install/install/help/po/uk.po4
-rw-r--r--perl-install/install/help/po/uz.po2
-rw-r--r--perl-install/install/help/po/uz@cyrillic.po2
-rw-r--r--perl-install/install/help/po/vi.po4
-rw-r--r--perl-install/install/help/po/wa.po4
-rw-r--r--perl-install/install/help/po/zh_CN.po4
-rw-r--r--perl-install/install/help/po/zh_TW.po4
72 files changed, 110 insertions, 110 deletions
diff --git a/perl-install/install/help/help.pm b/perl-install/install/help/help.pm
index cd76001fd..6215ad37f 100644
--- a/perl-install/install/help/help.pm
+++ b/perl-install/install/help/help.pm
@@ -469,7 +469,7 @@ To partition the selected hard disk drive, you can use these options:
* \"%s\": this option deletes all partitions on the selected hard disk drive
- * \"%s\": this option enables you to automatically create ext3 and swap
+ * \"%s\": this option enables you to automatically create ext4 and swap
partitions in the free space of your hard disk drive
\"%s\": gives access to additional features:
diff --git a/perl-install/install/help/po/DrakX-help.pot b/perl-install/install/help/po/DrakX-help.pot
index 03b4d2a57..48524b132 100644
--- a/perl-install/install/help/po/DrakX-help.pot
+++ b/perl-install/install/help/po/DrakX-help.pot
@@ -625,7 +625,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/af.po b/perl-install/install/help/po/af.po
index d60ba44b6..e8061be6c 100644
--- a/perl-install/install/help/po/af.po
+++ b/perl-install/install/help/po/af.po
@@ -1015,7 +1015,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1080,7 +1080,7 @@ msgstr ""
"\n"
" * \"%s\": hierdie opsie wis alle partisies op die gekose skyf uit.\n"
"\n"
-" * \"%s\": hierdie opsie sal outomaties 'ext3' en 'swap' partisies in die\n"
+" * \"%s\": hierdie opsie sal outomaties 'ext4' en 'swap' partisies in die\n"
"vrye spasie op die hardeskyf skep.\n"
"\n"
"\"%s\": gee u toegang tot verdere keuses:\n"
diff --git a/perl-install/install/help/po/am.po b/perl-install/install/help/po/am.po
index 29d925ca1..442f9ea69 100644
--- a/perl-install/install/help/po/am.po
+++ b/perl-install/install/help/po/am.po
@@ -621,7 +621,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/ar.po b/perl-install/install/help/po/ar.po
index 9293ec99e..560ed1709 100644
--- a/perl-install/install/help/po/ar.po
+++ b/perl-install/install/help/po/ar.po
@@ -1037,7 +1037,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1102,7 +1102,7 @@ msgstr ""
"\n"
" * \"%s\": هذا الخيار يحذف كل التجزيئات على القرص الصّلب المحدّد\n"
"\n"
-" * \"%s\": هذا الخيار يمكّنك من إنشاء تجزيئات ext3 والذّاكرة البديلة آليّاً\n"
+" * \"%s\": هذا الخيار يمكّنك من إنشاء تجزيئات ext4 والذّاكرة البديلة آليّاً\n"
"في المساحة الشّاغرة لقرصك الصّلب\n"
"\n"
" * %s: يعطي حقّ الوصول إلى مزايا إضافيّة:\n"
diff --git a/perl-install/install/help/po/az.po b/perl-install/install/help/po/az.po
index e1aa2229d..a0f1b6efb 100644
--- a/perl-install/install/help/po/az.po
+++ b/perl-install/install/help/po/az.po
@@ -1075,7 +1075,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1142,7 +1142,7 @@ msgstr ""
" * \"%s\": Bu seçim seçili sabit disk üstündəki bütün bölmələri silər\n"
"\n"
" * \"%s\": Bu seçim sizə avtomatik olaraq sabit diskinizin boş sahəsində\n"
-"ext3 və dəyiş-toqquş sahəsi yaratma imkanı verəcək\n"
+"ext4 və dəyiş-toqquş sahəsi yaratma imkanı verəcək\n"
"\n"
"\"%s\": Əlavə xüsusiyyətlərə yetişmə imkanı verir\n"
"\n"
diff --git a/perl-install/install/help/po/be.po b/perl-install/install/help/po/be.po
index 93b7b025e..c8decfcc3 100644
--- a/perl-install/install/help/po/be.po
+++ b/perl-install/install/help/po/be.po
@@ -621,7 +621,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/bg.po b/perl-install/install/help/po/bg.po
index e0c66559c..57620ae01 100644
--- a/perl-install/install/help/po/bg.po
+++ b/perl-install/install/help/po/bg.po
@@ -959,7 +959,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/bn.po b/perl-install/install/help/po/bn.po
index 6792e28f0..90208f3c6 100644
--- a/perl-install/install/help/po/bn.po
+++ b/perl-install/install/help/po/bn.po
@@ -862,7 +862,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -926,7 +926,7 @@ msgstr ""
"\n"
" * \"%s\": এই অপশনটি নির্বাচিত ড্রাইভের সব পার্টিশন মুছে দিবে\n"
"\n"
-" * \"%s\": এই অপশনটি আপনার হার্ডড্রাইভের খালি অংশে স্বয়ংক্রিয়ভাবে ext3 এবং\n"
+" * \"%s\": এই অপশনটি আপনার হার্ডড্রাইভের খালি অংশে স্বয়ংক্রিয়ভাবে ext4 এবং\n"
"swap পার্টিশন তৈরী করতে দিবে।\n"
"\n"
"\"%s\": আরও ফিচার ব্যবহার করার সুযোগ দেয়:\n"
diff --git a/perl-install/install/help/po/br.po b/perl-install/install/help/po/br.po
index 67f4f29f5..62a4b0104 100644
--- a/perl-install/install/help/po/br.po
+++ b/perl-install/install/help/po/br.po
@@ -631,7 +631,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/bs.po b/perl-install/install/help/po/bs.po
index 71beea29f..62fc3cbbf 100644
--- a/perl-install/install/help/po/bs.po
+++ b/perl-install/install/help/po/bs.po
@@ -1061,7 +1061,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1127,7 +1127,7 @@ msgstr ""
"\n"
" * \"%s\": ova opcija briše sve particije na izabranom hard disku\n"
"\n"
-" * \"%s\": ova opcija vam omogućuje da automatski napravite ext3\n"
+" * \"%s\": ova opcija vam omogućuje da automatski napravite ext4\n"
"i swap particije u slobodnom prostoru vašeg hard diska\n"
"\n"
"\"%s\" omogućuje pristup dodatnim mogućnostima:\n"
diff --git a/perl-install/install/help/po/ca.po b/perl-install/install/help/po/ca.po
index 34b04b583..f1d193b9d 100644
--- a/perl-install/install/help/po/ca.po
+++ b/perl-install/install/help/po/ca.po
@@ -1089,7 +1089,7 @@ msgid ""
" * \"%s\": this option deletes all partitions on the selected hard disk "
"drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1160,7 +1160,7 @@ msgstr ""
"disc dur seleccionat.\n"
"\n"
" * «%s»: aquesta opció us permet crear automàticament les particions\n"
-"ext3 i d'intercanvi en l'espai lliure del disc dur.\n"
+"ext4 i d'intercanvi en l'espai lliure del disc dur.\n"
"\n"
"«%s»: dóna accés a funcions addicionals:\n"
"\n"
diff --git a/perl-install/install/help/po/cs.po b/perl-install/install/help/po/cs.po
index 740195812..e3054fc78 100644
--- a/perl-install/install/help/po/cs.po
+++ b/perl-install/install/help/po/cs.po
@@ -1051,7 +1051,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/cy.po b/perl-install/install/help/po/cy.po
index ef4021ac5..4d8dcb7e1 100644
--- a/perl-install/install/help/po/cy.po
+++ b/perl-install/install/help/po/cy.po
@@ -1012,7 +1012,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/da.po b/perl-install/install/help/po/da.po
index c27e29875..c14ca8222 100644
--- a/perl-install/install/help/po/da.po
+++ b/perl-install/install/help/po/da.po
@@ -1039,7 +1039,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/de.po b/perl-install/install/help/po/de.po
index 42339416e..e18609b1b 100644
--- a/perl-install/install/help/po/de.po
+++ b/perl-install/install/help/po/de.po
@@ -1083,7 +1083,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1150,7 +1150,7 @@ msgstr ""
" * „%s“: Betätigen dieser Schaltfläche löscht alle Partitionen auf der\n"
"markierten Festplatte.\n"
"\n"
-" * „%s“: Dieser Punkt aktiviert die automatische ext3- und\n"
+" * „%s“: Dieser Punkt aktiviert die automatische ext4- und\n"
"Swap-Partitionen-Erstellung im ungenutzten Bereich Ihrer Festplatte.\n"
"\n"
"„%s“: bietet Zugriff auf weitere Möglichkeiten:\n"
diff --git a/perl-install/install/help/po/el.po b/perl-install/install/help/po/el.po
index a01ddc708..d5bde8de0 100644
--- a/perl-install/install/help/po/el.po
+++ b/perl-install/install/help/po/el.po
@@ -1021,7 +1021,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/eo.po b/perl-install/install/help/po/eo.po
index 8cc2a518c..e60d39600 100644
--- a/perl-install/install/help/po/eo.po
+++ b/perl-install/install/help/po/eo.po
@@ -1085,7 +1085,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1150,7 +1150,7 @@ msgstr ""
"\n"
" * \"%s\": tiu opcio forviŝas ĉiujn subdiskojn sur la selektita fiksdisko.\n"
"\n"
-" * \"%s\": Tiu opcio ebligas vin krei aŭtomate subdiskojn de ext3 kaj swap\n"
+" * \"%s\": Tiu opcio ebligas vin krei aŭtomate subdiskojn de ext4 kaj swap\n"
"en la libera spaco de via fiksdisko\n"
"\n"
"\"%s\": donas aliron al kromaj eblecoj:\n"
diff --git a/perl-install/install/help/po/es.po b/perl-install/install/help/po/es.po
index c78a98fc1..233872b67 100644
--- a/perl-install/install/help/po/es.po
+++ b/perl-install/install/help/po/es.po
@@ -1105,7 +1105,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1173,7 +1173,7 @@ msgstr ""
" * \"%s\": esta opción borra todas las particiones sobre el disco\n"
"seleccionado.\n"
"\n"
-" * \"%s\": esta opción le permite crear particiones ext3 y swap\n"
+" * \"%s\": esta opción le permite crear particiones ext4 y swap\n"
"automáticamente en el espacio libre de su disco rígido.\n"
"\n"
"\"%s\": le da acceso a características adicionales:\n"
diff --git a/perl-install/install/help/po/et.po b/perl-install/install/help/po/et.po
index 826f8c411..1db0995da 100644
--- a/perl-install/install/help/po/et.po
+++ b/perl-install/install/help/po/et.po
@@ -1061,7 +1061,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/eu.po b/perl-install/install/help/po/eu.po
index bed89a521..b1e3003f8 100644
--- a/perl-install/install/help/po/eu.po
+++ b/perl-install/install/help/po/eu.po
@@ -1094,7 +1094,7 @@ msgid ""
" * \"%s\": this option deletes all partitions on the selected hard disk "
"drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1164,7 +1164,7 @@ msgstr ""
" * \"%s\": aukera honek hautatutako disko zurruneko partizio guztiak \n"
"ezabatzen ditu\n"
"\n"
-" * \"%s\": aukera honekin automatikoki sor ditzakezu ext3 eta\n"
+" * \"%s\": aukera honekin automatikoki sor ditzakezu ext4 eta\n"
"swap partizioak disko zurruneko leku librean\n"
"\n"
"\"%s\": eginbide gehiagotarako aukera ematen du:\n"
diff --git a/perl-install/install/help/po/fa.po b/perl-install/install/help/po/fa.po
index 49ac20002..1c9738cee 100644
--- a/perl-install/install/help/po/fa.po
+++ b/perl-install/install/help/po/fa.po
@@ -1049,7 +1049,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1115,7 +1115,7 @@ msgstr ""
" * \"%s\": این گزینه تمام قسمت‌بندی‌های روی دیسک انتخاب شده را حذف می‌کند\n"
"\n"
" * \"%s\": این گزینه بر روی فضای آزاد دیسک شما بطور خودکار قسمت‌بندی‌های\n"
-"ext3 و حافظه مبادله را ایجاد می‌کند\n"
+"ext4 و حافظه مبادله را ایجاد می‌کند\n"
"\n"
"\"%s\": دسترسی به قابلیت‌های دیگر را فراهم می‌سازد\n"
"\n"
diff --git a/perl-install/install/help/po/fi.po b/perl-install/install/help/po/fi.po
index 569e24b25..63456bdfe 100644
--- a/perl-install/install/help/po/fi.po
+++ b/perl-install/install/help/po/fi.po
@@ -1042,7 +1042,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1109,7 +1109,7 @@ msgstr ""
" * \"%s\": tämä toiminto poistaa kaikki osiot kiintolevyllä\n"
"\n"
" * \"%s\": tämä toiminto luo automaattisesti\n"
-"tarvittavat ext3-osiot ja sivutusosion levyn tyhjästä tilasta\n"
+"tarvittavat ext4-osiot ja sivutusosion levyn tyhjästä tilasta\n"
"\n"
"\"%s\": näyttää seuraavat lisätoiminnot:\n"
"\n"
diff --git a/perl-install/install/help/po/fr.po b/perl-install/install/help/po/fr.po
index 2b3720da6..ab7769137 100644
--- a/perl-install/install/help/po/fr.po
+++ b/perl-install/install/help/po/fr.po
@@ -1156,7 +1156,7 @@ msgid ""
" * \"%s\": this option deletes all partitions on the selected hard disk "
"drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1226,7 +1226,7 @@ msgstr ""
" * « %s » : cette option effacera toutes les partitions sur le disque\n"
"sélectionné ;\n"
"\n"
-" * « %s » : cette option permet de créer des partitions ext3 et\n"
+" * « %s » : cette option permet de créer des partitions ext4 et\n"
"« swap » dans l'espace libre sur votre disque ;\n"
"\n"
"« %s » : permet d'accéder à des fonctionnalités supplémentaires :\n"
diff --git a/perl-install/install/help/po/fur.po b/perl-install/install/help/po/fur.po
index 0eccb3dde..6ea574419 100644
--- a/perl-install/install/help/po/fur.po
+++ b/perl-install/install/help/po/fur.po
@@ -623,7 +623,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/ga.po b/perl-install/install/help/po/ga.po
index 668cfaf7e..213cd0a2c 100644
--- a/perl-install/install/help/po/ga.po
+++ b/perl-install/install/help/po/ga.po
@@ -620,7 +620,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/gl.po b/perl-install/install/help/po/gl.po
index 5d3c66267..8fe98045a 100644
--- a/perl-install/install/help/po/gl.po
+++ b/perl-install/install/help/po/gl.po
@@ -1050,7 +1050,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1118,7 +1118,7 @@ msgstr ""
"seleccionado\n"
"\n"
" * \"%s\": esta opción permítelle crear automáticamente particións\n"
-"ext3 e swap no espacio baleiro do disco duro\n"
+"ext4 e swap no espacio baleiro do disco duro\n"
"\n"
"\"%s\": dálle acceso a funcionalidades adicionais:\n"
"\n"
diff --git a/perl-install/install/help/po/he.po b/perl-install/install/help/po/he.po
index 3bb587b16..7f982aad5 100644
--- a/perl-install/install/help/po/he.po
+++ b/perl-install/install/help/po/he.po
@@ -1037,7 +1037,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1103,7 +1103,7 @@ msgstr ""
"\n"
" * \"%s\": אפשרות זו תמחק את כל המחיצות המוגדרות בכונן הקשיח\n"
"\n"
-" * \"%s\": אפשרות זו מאפשרת לך ליצור באופן אוטומטי מחיצתext3\n"
+" * \"%s\": אפשרות זו מאפשרת לך ליצור באופן אוטומטי מחיצתext4\n"
"ומחיצת החלפה בשטח הפנוי של הכונן הקשיח שלך\n"
"\n"
"\"%s\": מאפשר לך לבחור באפשרויות נוספות:\n"
diff --git a/perl-install/install/help/po/hi.po b/perl-install/install/help/po/hi.po
index 49e45377a..56672e236 100644
--- a/perl-install/install/help/po/hi.po
+++ b/perl-install/install/help/po/hi.po
@@ -909,7 +909,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/hr.po b/perl-install/install/help/po/hr.po
index 79365c221..be4e4b7b9 100644
--- a/perl-install/install/help/po/hr.po
+++ b/perl-install/install/help/po/hr.po
@@ -1016,7 +1016,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/hu.po b/perl-install/install/help/po/hu.po
index fa9cb7a3d..d471459ae 100644
--- a/perl-install/install/help/po/hu.po
+++ b/perl-install/install/help/po/hu.po
@@ -1063,7 +1063,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/id.po b/perl-install/install/help/po/id.po
index 3b764e3fc..8dc67e88b 100644
--- a/perl-install/install/help/po/id.po
+++ b/perl-install/install/help/po/id.po
@@ -1107,7 +1107,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1172,7 +1172,7 @@ msgstr ""
"\n"
" * \"%s\": opsi ini menghapus seluruh partisi pada drive terpilih\n"
"\n"
-" * \"%s\": opsi ini memungkinkan Anda membuat partisi ext3 dan swap\n"
+" * \"%s\": opsi ini memungkinkan Anda membuat partisi ext4 dan swap\n"
"secara otomatis pada ruang kosong dari hard disk Anda.\n"
"\n"
"\"%s\": memberi akses pada fitur tambahan:\n"
diff --git a/perl-install/install/help/po/is.po b/perl-install/install/help/po/is.po
index 4a03a68d4..7d1e71add 100644
--- a/perl-install/install/help/po/is.po
+++ b/perl-install/install/help/po/is.po
@@ -1050,7 +1050,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1116,7 +1116,7 @@ msgstr ""
"\n"
" * \"%s\": þessi valkostur eyðir öllum disksneiðum á disknum\n"
"\n"
-" * \"%s\": þessi valkostur býr sjálfkrafa til ext3 og diskminnis-sneið\n"
+" * \"%s\": þessi valkostur býr sjálfkrafa til ext4 og diskminnis-sneið\n"
"á lausu plássi á disknum.\n"
"\n"
"\"%s\": gefur þér aðgang að aukavalkostum:\n"
diff --git a/perl-install/install/help/po/it.po b/perl-install/install/help/po/it.po
index 85a74763c..d75ed2852 100644
--- a/perl-install/install/help/po/it.po
+++ b/perl-install/install/help/po/it.po
@@ -1120,7 +1120,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1189,7 +1189,7 @@ msgstr ""
" * \"%s\": questa opzione cancella tutte le partizioni presenti sul disco\n"
"selezionato.\n"
"\n"
-" * \"%s\": vi permette di creare automaticamente partizioni ext3 e di swap\n"
+" * \"%s\": vi permette di creare automaticamente partizioni ext4 e di swap\n"
"nello spazio libero presente sul vostro disco rigido.\n"
"\n"
"\"%s\": permette di accedere a ulteriori funzionalità:\n"
diff --git a/perl-install/install/help/po/ja.po b/perl-install/install/help/po/ja.po
index c5156f17e..76442dbc4 100644
--- a/perl-install/install/help/po/ja.po
+++ b/perl-install/install/help/po/ja.po
@@ -1001,7 +1001,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1066,7 +1066,7 @@ msgstr ""
"\n"
" * %s: 選択したドライブのすべてのパーティションを削除する\n"
"\n"
-" * %s: ハードドライブの空き領域に自動的に ext3 と swap を\n"
+" * %s: ハードドライブの空き領域に自動的に ext4 と swap を\n"
"作成する\n"
"\n"
"%s: ここから拡張機能を利用できます:\n"
diff --git a/perl-install/install/help/po/ko.po b/perl-install/install/help/po/ko.po
index 66d2d6fa6..6f171ee1a 100644
--- a/perl-install/install/help/po/ko.po
+++ b/perl-install/install/help/po/ko.po
@@ -857,7 +857,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/ky.po b/perl-install/install/help/po/ky.po
index 4095d7fc7..6894e3281 100644
--- a/perl-install/install/help/po/ky.po
+++ b/perl-install/install/help/po/ky.po
@@ -1042,7 +1042,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/lt.po b/perl-install/install/help/po/lt.po
index a0eb3d4d1..33d093509 100644
--- a/perl-install/install/help/po/lt.po
+++ b/perl-install/install/help/po/lt.po
@@ -765,7 +765,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/ltg.po b/perl-install/install/help/po/ltg.po
index e22bf2b82..9f7c78800 100644
--- a/perl-install/install/help/po/ltg.po
+++ b/perl-install/install/help/po/ltg.po
@@ -769,7 +769,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/lv.po b/perl-install/install/help/po/lv.po
index d72c6c95b..1548f9c56 100644
--- a/perl-install/install/help/po/lv.po
+++ b/perl-install/install/help/po/lv.po
@@ -768,7 +768,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/mk.po b/perl-install/install/help/po/mk.po
index 64497c096..0562b01a2 100644
--- a/perl-install/install/help/po/mk.po
+++ b/perl-install/install/help/po/mk.po
@@ -1108,7 +1108,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1176,7 +1176,7 @@ msgstr ""
"\n"
" * „%s“: оваа опција ги брише сите партиции на избраниот хард диск\n"
"\n"
-" * „%s“: оваа опција ви овозможува автоматски да создадете „ext3“ и „swap“\n"
+" * „%s“: оваа опција ви овозможува автоматски да создадете „ext4“ и „swap“\n"
"партиции во слободниот простор од вашиот хард диск\n"
"\n"
"„%s“: ви дава пристап до додатни карактеристики: \n"
diff --git a/perl-install/install/help/po/mn.po b/perl-install/install/help/po/mn.po
index aadaf6068..466d01078 100644
--- a/perl-install/install/help/po/mn.po
+++ b/perl-install/install/help/po/mn.po
@@ -666,7 +666,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/ms.po b/perl-install/install/help/po/ms.po
index f54fbca60..fefe0a429 100644
--- a/perl-install/install/help/po/ms.po
+++ b/perl-install/install/help/po/ms.po
@@ -673,7 +673,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/mt.po b/perl-install/install/help/po/mt.po
index bd80fa04f..bd5e0e9ea 100644
--- a/perl-install/install/help/po/mt.po
+++ b/perl-install/install/help/po/mt.po
@@ -1029,7 +1029,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1097,7 +1097,7 @@ msgstr ""
"mill-ħard disk magħżula.\n"
"\n"
" * \"%s\": din l-għażla awtomatikament toħloqlok partizzjonijiet\n"
-"ext3 u swap fl-ispazju vojt tad-diska.\n"
+"ext4 u swap fl-ispazju vojt tad-diska.\n"
"\n"
" * \"%s\" jagħtik aċċess għal iżjed faċilitajiet:\n"
"\n"
diff --git a/perl-install/install/help/po/nb.po b/perl-install/install/help/po/nb.po
index 4cb16ef56..b63fe070a 100644
--- a/perl-install/install/help/po/nb.po
+++ b/perl-install/install/help/po/nb.po
@@ -1108,7 +1108,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1175,7 +1175,7 @@ msgstr ""
" * \"%s\": dette valget sletter alle partisjoner tilgjengelig på den valgte "
"harddisken.\n"
"\n"
-" * \"%s\": dette valget lar deg automatisk opprette ext3 og\n"
+" * \"%s\": dette valget lar deg automatisk opprette ext4 og\n"
"swappartisjoner på din harddisk's ledige plass.\n"
"\n"
"\"%s\": gir deg tilgang til ekstra finesser:\n"
diff --git a/perl-install/install/help/po/nl.po b/perl-install/install/help/po/nl.po
index faf6f6003..aa8706c00 100644
--- a/perl-install/install/help/po/nl.po
+++ b/perl-install/install/help/po/nl.po
@@ -1074,7 +1074,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1142,7 +1142,7 @@ msgstr ""
" * \"%s\": deze optie verwijdert alle partities op de\n"
"geselecteerde harde schijf.\n"
"\n"
-" * \"%s\": deze optie creëert automatisch ext3- en swap-\n"
+" * \"%s\": deze optie creëert automatisch ext4- en swap-\n"
"partities in de vrije ruimte op uw harde schijf.\n"
"\n"
" \"%s\": geeft toegang tot extra opties:\n"
diff --git a/perl-install/install/help/po/nn.po b/perl-install/install/help/po/nn.po
index c5f10b9c3..69519da74 100644
--- a/perl-install/install/help/po/nn.po
+++ b/perl-install/install/help/po/nn.po
@@ -1036,7 +1036,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1100,7 +1100,7 @@ msgstr ""
"\n"
" – «%s»: Slettar alle partisjonar på harddisken.\n"
"\n"
-" – «%s»: Lagar automatisk ext3- og vekslepartisjonar på den ledige "
+" – «%s»: Lagar automatisk ext4- og vekslepartisjonar på den ledige "
"harddiskplassen.\n"
"\n"
"«%s»: Gjev tilgang til fleire funksjonar:\n"
diff --git a/perl-install/install/help/po/pa_IN.po b/perl-install/install/help/po/pa_IN.po
index 1323b9c9b..8bfdd2dad 100644
--- a/perl-install/install/help/po/pa_IN.po
+++ b/perl-install/install/help/po/pa_IN.po
@@ -654,7 +654,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/pl.po b/perl-install/install/help/po/pl.po
index 5d9e6fbac..86f9ab818 100644
--- a/perl-install/install/help/po/pl.po
+++ b/perl-install/install/help/po/pl.po
@@ -1067,7 +1067,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1135,7 +1135,7 @@ msgstr ""
" * \"%s\": ta opcja kasuje wszystkie partycje na wybranym dysku.\n"
"\n"
" * \"%s\": ta opcja automatycznie tworzy partycje\n"
-" ext3 oraz swap na wolnej (niespartycjonowanej) przestrzeni na dysku\n"
+" ext4 oraz swap na wolnej (niespartycjonowanej) przestrzeni na dysku\n"
"\n"
" * \"%s\": daje dostęp do dodatkowych opcji:\n"
"\n"
diff --git a/perl-install/install/help/po/pt.po b/perl-install/install/help/po/pt.po
index b104bc14e..ffe10a9b5 100644
--- a/perl-install/install/help/po/pt.po
+++ b/perl-install/install/help/po/pt.po
@@ -1060,7 +1060,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1127,7 +1127,7 @@ msgstr ""
" * \"%s\": esta opção apaga todas as partições do disco seleccionado\n"
"\n"
" * \"%s\": esta opção permite criar automaticamente partições\n"
-"ext3 e partições swap no espaço livre do seu disco\n"
+"ext4 e partições swap no espaço livre do seu disco\n"
"\n"
"\"%s\": dá acesso para opções adicionais:\n"
"\n"
diff --git a/perl-install/install/help/po/pt_BR.po b/perl-install/install/help/po/pt_BR.po
index 56835bdc0..aede2a005 100644
--- a/perl-install/install/help/po/pt_BR.po
+++ b/perl-install/install/help/po/pt_BR.po
@@ -1100,7 +1100,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1168,7 +1168,7 @@ msgstr ""
" * \"%s\": esta opção removerá todas as partições do disco rígido "
"selecionado.\n"
"\n"
-" * \"%s\": esta opção permite criar automaticamente partições ext3 e swap "
+" * \"%s\": esta opção permite criar automaticamente partições ext4 e swap "
"no\n"
" espaço livre do seu disco rígido.\n"
"\n"
diff --git a/perl-install/install/help/po/ro.po b/perl-install/install/help/po/ro.po
index 4fce800c5..7e775a765 100644
--- a/perl-install/install/help/po/ro.po
+++ b/perl-install/install/help/po/ro.po
@@ -627,7 +627,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/ru.po b/perl-install/install/help/po/ru.po
index 98528eefd..980beac47 100644
--- a/perl-install/install/help/po/ru.po
+++ b/perl-install/install/help/po/ru.po
@@ -1062,7 +1062,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1128,7 +1128,7 @@ msgstr ""
"\n"
" * \"%s\": эта опция удаляет все разделы на выбранном жестком диске;\n"
"\n"
-" * \"%s\": эта опция позволяет автоматически создать ext3 и swap разделы на\n"
+" * \"%s\": эта опция позволяет автоматически создать ext4 и swap разделы на\n"
"свободном пространстве вашего жесткого диска.\n"
"\n"
"\"%s\": открывает доступ к дополнительным возможностям:\n"
diff --git a/perl-install/install/help/po/sc.po b/perl-install/install/help/po/sc.po
index 85f4bf130..e23d39d6d 100644
--- a/perl-install/install/help/po/sc.po
+++ b/perl-install/install/help/po/sc.po
@@ -623,7 +623,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/sk.po b/perl-install/install/help/po/sk.po
index 2d245d2c0..a38a53850 100644
--- a/perl-install/install/help/po/sk.po
+++ b/perl-install/install/help/po/sk.po
@@ -1085,7 +1085,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1152,7 +1152,7 @@ msgstr ""
" * \"%s\": táto voľba vymaže všetky oblasti na vybranom pevnom\n"
"disku\n"
"\n"
-" * \"%s\": táto voľba umožní automatické vytvorenie ext3\n"
+" * \"%s\": táto voľba umožní automatické vytvorenie ext4\n"
"a swap oblasti na voľnom mieste vášho disku\n"
"\n"
" * \"%s\": získate prístup k rozšíreným možnostiam:\n"
diff --git a/perl-install/install/help/po/sl.po b/perl-install/install/help/po/sl.po
index 2e7c1a47a..71e2dd797 100644
--- a/perl-install/install/help/po/sl.po
+++ b/perl-install/install/help/po/sl.po
@@ -1050,7 +1050,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1115,7 +1115,7 @@ msgstr ""
"\n"
" * »%s«: brisanje vseh razdelkov na izbranem disku\n"
"\n"
-" * »%s«: samodejno ustvarjanje ext3 in izmenjalnih (swap) razdelkov\n"
+" * »%s«: samodejno ustvarjanje ext4 in izmenjalnih (swap) razdelkov\n"
"na prostem delu vašega trdega diska.\n"
"\n"
"»%s«: dostop do dodatnih možnosti:\n"
diff --git a/perl-install/install/help/po/sq.po b/perl-install/install/help/po/sq.po
index 73ae613db..7830f2c6a 100644
--- a/perl-install/install/help/po/sq.po
+++ b/perl-install/install/help/po/sq.po
@@ -1062,7 +1062,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
@@ -1130,7 +1130,7 @@ msgstr ""
" * \"%s\": ky opcion do të zhduk, të gjitha ndarjet në diskun e zgjedhur\n"
"\n"
" * \"%s\": ky opcion mundëson krijimin e një sistemi të skedareve\n"
-"ext3 dhe swap të ndarjeve, në hapësirën e lirë të diskut tuaja\n"
+"ext4 dhe swap të ndarjeve, në hapësirën e lirë të diskut tuaja\n"
"\n"
"\"%s\": mundëson hyrjen në fonksionimin e llogarive:\n"
"\n"
diff --git a/perl-install/install/help/po/sr.po b/perl-install/install/help/po/sr.po
index 26602b778..0db2cff06 100644
--- a/perl-install/install/help/po/sr.po
+++ b/perl-install/install/help/po/sr.po
@@ -1101,7 +1101,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/sr@Latn.po b/perl-install/install/help/po/sr@Latn.po
index e48ce9baa..2a825542d 100644
--- a/perl-install/install/help/po/sr@Latn.po
+++ b/perl-install/install/help/po/sr@Latn.po
@@ -1104,7 +1104,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/sv.po b/perl-install/install/help/po/sv.po
index d1b321d2d..d0b647011 100644
--- a/perl-install/install/help/po/sv.po
+++ b/perl-install/install/help/po/sv.po
@@ -1057,7 +1057,7 @@ msgid ""
"\n"
" * \"%s\": this option deletes all partitions on the selected hard disk drive\n"
"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+" * \"%s\": this option enables you to automatically create ext4 and swap\n"
"partitions in the free space of your hard disk drive\n"
"\n"
"\"%s\": gives access to additional features:\n"
diff --git a/perl-install/install/help/po/ta.po b/perl-install/install/help/po/ta.po
index 023c0740a..7c2e7cfad 100644
--- a/perl-install/install/help/po/ta.po
+++ b/perl-install/install/help/po/ta.po