aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/install/controller/install.php
blob: 92506872a31187fdeefdeecc2d99ccaadc71f895 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<?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\install\controller;

use phpbb\exception\http_exception;
use phpbb\install\helper\install_helper;
use phpbb\install\helper\navigation\navigation_provider;
use Symfony\Component\HttpFoundation\StreamedResponse;
use Symfony\Component\HttpFoundation\Response;
use phpbb\install\helper\iohandler\factory;
use phpbb\template\template;
use phpbb\request\request_interface;
use phpbb\install\installer;
use phpbb\language\language;

/**
 * Controller for installing phpBB
 */
class install
{
	/**
	 * @var helper
	 */
	protected $controller_helper;

	/**
	 * @var factory
	 */
	protected $iohandler_factory;

	/**
	 * @var navigation_provider
	 */
	protected $menu_provider;

	/**
	 * @var language
	 */
	protected $language;

	/**
	 * @var template
	 */
	protected $template;

	/**
	 * @var request_interface
	 */
	protected $request;

	/**
	 * @var installer
	 */
	protected $installer;

	/**
	 * @var install_helper
	 */
	protected $install_helper;

	/**
	 * Constructor
	 *
	 * @param helper 				$helper
	 * @param factory 				$factory
	 * @param navigation_provider	$nav_provider
	 * @param language				$language
	 * @param template				$template
	 * @param request_interface		$request
	 * @param installer				$installer
	 * @param install_helper		$install_helper
	 */
	public function __construct(helper $helper, factory $factory, navigation_provider $nav_provider, language $language, template $template, request_interface $request, installer $installer, install_helper $install_helper)
	{
		$this->controller_helper	= $helper;
		$this->iohandler_factory	= $factory;
		$this->menu_provider		= $nav_provider;
		$this->language				= $language;
		$this->template				= $template;
		$this->request				= $request;
		$this->installer			= $installer;
		$this->install_helper		= $install_helper;
	}

	/**
	 * Controller logic
	 *
	 * @return Response|StreamedResponse
	 *
	 * @throws http_exception When phpBB is already installed
	 */
	public function handle()
	{
		if ($this->install_helper->is_phpbb_installed())
		{
			throw new http_exception(403, 'INSTALL_PHPBB_INSTALLED');
		}

		$this->template->assign_vars(array(
			'U_ACTION' => $this->controller_helper->route('phpbb_installer_install'),
		));

		// Set up input-output handler
		if ($this->request->is_ajax())
		{
			$this->iohandler_factory->set_environment('ajax');
		}
		else
		{
			$this->iohandler_factory->set_environment('nojs');
		}

		// Set the appropriate input-output handler
		$this->installer->set_iohandler($this->iohandler_factory->get());
		$this->controller_helper->handle_language_select();

		if ($this->request->is_ajax())
		{
			$installer = $this->installer;
			$response = new StreamedResponse();
			$response->setCallback(function() use ($installer) {
				$installer->run();
			});

			// Try to bypass any server output buffers
			$response->headers->set('X-Accel-Buffering', 'no');

			return $response;
		}
		else
		{
			// Determine whether the installation was started or not
			if (true)
			{
				// Set active stage
				$this->menu_provider->set_nav_property(
					array('install', 0, 'introduction'),
					array(
						'selected'	=> true,
						'completed'	=> false,
					)
				);

				// If not, let's render the welcome page
				$this->template->assign_vars(array(
					'SHOW_INSTALL_START_FORM'	=> true,
					'TITLE'						=> $this->language->lang('INSTALL_INTRO'),
					'CONTENT'					=> $this->language->lang('INSTALL_INTRO_BODY'),
				));

				/** @var \phpbb\install\helper\iohandler\iohandler_interface $iohandler */
				$iohandler = $this->iohandler_factory->get();
				$this->controller_helper->handle_navigation($iohandler);

				return $this->controller_helper->render('installer_install.html', 'INSTALL', true);
			}

			// @todo: implement no js controller logic
		}
	}
}
le='width: 75.0%;'/> -rw-r--r--perl-install/install/share/po/hu.po11
-rw-r--r--perl-install/install/share/po/id.po11
-rw-r--r--perl-install/install/share/po/is.po11
-rw-r--r--perl-install/install/share/po/it.po11
-rw-r--r--perl-install/install/share/po/ja.po11
-rw-r--r--perl-install/install/share/po/ko.po11
-rw-r--r--perl-install/install/share/po/ky.po11
-rw-r--r--perl-install/install/share/po/lt.po11
-rw-r--r--perl-install/install/share/po/ltg.po11
-rw-r--r--perl-install/install/share/po/lv.po11
-rw-r--r--perl-install/install/share/po/mk.po11
-rw-r--r--perl-install/install/share/po/mn.po11
-rw-r--r--perl-install/install/share/po/ms.po11
-rw-r--r--perl-install/install/share/po/mt.po11
-rw-r--r--perl-install/install/share/po/nb.po11
-rw-r--r--perl-install/install/share/po/nl.po11
-rw-r--r--perl-install/install/share/po/nn.po11
-rw-r--r--perl-install/install/share/po/pa_IN.po11
-rw-r--r--perl-install/install/share/po/pl.po11
-rw-r--r--perl-install/install/share/po/pt.po11
-rw-r--r--perl-install/install/share/po/pt_BR.po11
-rw-r--r--perl-install/install/share/po/ro.po11
-rw-r--r--perl-install/install/share/po/ru.po11
-rw-r--r--perl-install/install/share/po/sc.po11
-rw-r--r--perl-install/install/share/po/sk.po11
-rw-r--r--perl-install/install/share/po/sl.po11
-rw-r--r--perl-install/install/share/po/sq.po11
-rw-r--r--perl-install/install/share/po/sr.po11
-rw-r--r--perl-install/install/share/po/sr@Latn.po11
-rw-r--r--perl-install/install/share/po/sv.po11
-rw-r--r--perl-install/install/share/po/ta.po11
-rw-r--r--perl-install/install/share/po/tg.po11
-rw-r--r--perl-install/install/share/po/th.po11
-rw-r--r--perl-install/install/share/po/tl.po11
-rw-r--r--perl-install/install/share/po/tr.po11
-rw-r--r--perl-install/install/share/po/uk.po11
-rw-r--r--perl-install/install/share/po/uz.po12
-rw-r--r--perl-install/install/share/po/uz@Latn.po11
-rw-r--r--perl-install/install/share/po/vi.po11
-rw-r--r--perl-install/install/share/po/wa.po11
-rw-r--r--perl-install/install/share/po/zh_CN.po11
-rw-r--r--perl-install/install/share/po/zh_TW.po11
-rw-r--r--perl-install/install/steps_interactive.pm2
72 files changed, 640 insertions, 144 deletions
diff --git a/perl-install/install/share/po/DrakX.pot b/perl-install/install/share/po/DrakX.pot
index 14c8b4347..908ebd7f4 100644
--- a/perl-install/install/share/po/DrakX.pot
+++ b/perl-install/install/share/po/DrakX.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -899,7 +899,14 @@ msgstr ""
msgid "Is this an install or an upgrade?"
msgstr ""
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr ""
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr ""
diff --git a/perl-install/install/share/po/af.po b/perl-install/install/share/po/af.po
index 0d612cb04..cf131051a 100644
--- a/perl-install/install/share/po/af.po
+++ b/perl-install/install/share/po/af.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX-af\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2005-04-21 17:33+0200\n"
"Last-Translator: Dirk van der Walt <dirkvanderwalt@webmail.co.za>\n"
"Language-Team: Afrikaans\n"
@@ -945,7 +945,14 @@ msgstr "Installeer/Opgradeer"
msgid "Is this an install or an upgrade?"
msgstr "Is hierdie 'n installasie of opgradering?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Installasie"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "Opgradeer %s"
diff --git a/perl-install/install/share/po/am.po b/perl-install/install/share/po/am.po
index 228c400b1..417a97ea9 100644
--- a/perl-install/install/share/po/am.po
+++ b/perl-install/install/share/po/am.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2004-06-01 03:36+0100\n"
"Last-Translator: Alemayehu <alemayehu@gmx.at>\n"
"Language-Team: Amharic <am-translate@geez.org>\n"
@@ -896,7 +896,14 @@ msgstr "ትከል/አሳድግ"
msgid "Is this an install or an upgrade?"
msgstr ""
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "ትከል"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr ""
diff --git a/perl-install/install/share/po/ar.po b/perl-install/install/share/po/ar.po
index fcd4f91b9..962d71244 100644
--- a/perl-install/install/share/po/ar.po
+++ b/perl-install/install/share/po/ar.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2005-03-03 01:06+0300\n"
"Last-Translator: Ossama M. Khayat <okhayat@yahoo.com>\n"
"Language-Team: Arabic <support@arabeyes.org>\n"
@@ -945,7 +945,14 @@ msgstr "تثبيت/ترقية"
msgid "Is this an install or an upgrade?"
msgstr "هل هذا تثبيت أم ترقية؟"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "تثبيت"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "ترقية %s"
diff --git a/perl-install/install/share/po/az.po b/perl-install/install/share/po/az.po
index be645e3e6..ad322f126 100644
--- a/perl-install/install/share/po/az.po
+++ b/perl-install/install/share/po/az.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX-az\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2005-03-31 14:21+0200\n"
"Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
"Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
@@ -939,7 +939,14 @@ msgstr "Qurulum/Yeniləmə"
msgid "Is this an install or an upgrade?"
msgstr "Bu bir qurulum, yoxsa yeniləmədir?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Qur"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "%s-i yenilə"
diff --git a/perl-install/install/share/po/be.po b/perl-install/install/share/po/be.po
index ae2b2c863..d707c96e3 100644
--- a/perl-install/install/share/po/be.po
+++ b/perl-install/install/share/po/be.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -917,7 +917,14 @@ msgstr "Усталёўваем"
msgid "Is this an install or an upgrade?"
msgstr ""
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Усталёўка"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr ""
diff --git a/perl-install/install/share/po/bg.po b/perl-install/install/share/po/bg.po
index dff33d5c5..e774a60a6 100644
--- a/perl-install/install/share/po/bg.po
+++ b/perl-install/install/share/po/bg.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX-bg\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2004-09-15 13:27+0200\n"
"Last-Translator: Boyan Ivanov <boyan17@bulgaria.com>\n"
"Language-Team: Bulgarian <dict@linux.zonebg.com>\n"
@@ -944,7 +944,14 @@ msgstr "Инсталирай/Обнови"
msgid "Is this an install or an upgrade?"
msgstr "Това нова инсталация ли е или обновяване ?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Инсталирай"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "Обновява %s"
diff --git a/perl-install/install/share/po/bn.po b/perl-install/install/share/po/bn.po
index 922852dbe..82aa6a563 100644
--- a/perl-install/install/share/po/bn.po
+++ b/perl-install/install/share/po/bn.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2007-02-19 00:44+0600\n"
"Last-Translator: Tisa Nafisa <tisa_nafisa@yahoo.com>\n"
"Language-Team: Bangla <mdk-translation@bengalinux.org>\n"
@@ -946,7 +946,14 @@ msgstr "ইনস্টল/আপগ্রড"
msgid "Is this an install or an upgrade?"
msgstr "এটা কি একটি ইনস্টলেশন না আপগ্রেড?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "ইনস্টল"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "%s আপগ্রড করো"
diff --git a/perl-install/install/share/po/br.po b/perl-install/install/share/po/br.po
index e48e591b3..e5e84f7be 100644
--- a/perl-install/install/share/po/br.po
+++ b/perl-install/install/share/po/br.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX 10.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2007-08-21 15:56+0200\n"
"Last-Translator: Thierry Vignaud <tvignaud@mandriva.com>\n"
"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
@@ -916,7 +916,14 @@ msgstr "Staliañ/Bremanaat"
msgid "Is this an install or an upgrade?"
msgstr "Hag ur staliadur pe ur bremanadur eo ?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Staliañ"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "Bremanaat %s"
diff --git a/perl-install/install/share/po/bs.po b/perl-install/install/share/po/bs.po
index 45ca691f2..4d994e417 100644
--- a/perl-install/install/share/po/bs.po
+++ b/perl-install/install/share/po/bs.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bs\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2006-09-16 10:33+0200\n"
"Last-Translator: Vedran Ljubovic <vljubovic@smartnet.ba>\n"
"Language-Team: Bosnian <lokal@linux.org.ba>\n"
@@ -957,7 +957,14 @@ msgstr "Instaliraj/Unaprijedi"
msgid "Is this an install or an upgrade?"
msgstr "Da li je ovo instalacija ili unaprjeđenje?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Instalacija"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "Unaprijedi %s"
diff --git a/perl-install/install/share/po/ca.po b/perl-install/install/share/po/ca.po
index cc3df107e..535801ceb 100644
--- a/perl-install/install/share/po/ca.po
+++ b/perl-install/install/share/po/ca.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ca\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2005-09-13 23:24+0200\n"
"Last-Translator: Albert Astals Cid <astals11@terra.es>\n"
"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
@@ -947,7 +947,14 @@ msgstr "Instal·la/Actualitza"
msgid "Is this an install or an upgrade?"
msgstr "Es tracta d'una instal·lació o d'una actualització?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Instal·la"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "Actualitza %s"
diff --git a/perl-install/install/share/po/cs.po b/perl-install/install/share/po/cs.po
index 4ed95a5eb..405e56d12 100644
--- a/perl-install/install/share/po/cs.po
+++ b/perl-install/install/share/po/cs.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: cs\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2007-09-08 19:54+0200\n"
"Last-Translator: Michal Bukovjan <bukm@centrum.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
@@ -948,7 +948,14 @@ msgstr "Instalace/Aktualizace"
msgid "Is this an install or an upgrade?"
msgstr "Jedná se o instalaci nebo aktualizaci?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Instalovat"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "Aktualizace %s"
diff --git a/perl-install/install/share/po/cy.po b/perl-install/install/share/po/cy.po
index 04b07b34e..2a607f092 100644
--- a/perl-install/install/share/po/cy.po
+++ b/perl-install/install/share/po/cy.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mandriva Linux\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2007-09-24 19:54+0100\n"
"Last-Translator: Rhoslyn Prys <post@meddal.com>\n"
"Language-Team: Cymraeg\n"
@@ -951,7 +951,14 @@ msgstr "Gosod/Diweddaru"
msgid "Is this an install or an upgrade?"
msgstr "Gosod neu uwchraddio?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Gosod"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "Uwchraddio %s"
diff --git a/perl-install/install/share/po/da.po b/perl-install/install/share/po/da.po
index fbb92f676..03e7bb788 100644
--- a/perl-install/install/share/po/da.po
+++ b/perl-install/install/share/po/da.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: da\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2006-10-01 16:31+0200\n"
"Last-Translator: Keld Simonsen <keld@rap.dk>\n"
"Language-Team: <da@li.org>\n"
@@ -955,7 +955,14 @@ msgstr "Installér/Opgradér"
msgid "Is this an install or an upgrade?"
msgstr "Er dette en nyinstallation eller en opgradering?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Installér"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "Opgradér %s"
diff --git a/perl-install/install/share/po/de.po b/perl-install/install/share/po/de.po
index a7c143f6d..5af70aa56 100644
--- a/perl-install/install/share/po/de.po
+++ b/perl-install/install/share/po/de.po
@@ -17,7 +17,7 @@ msgid ""
msgstr ""
"Project-Id-Version: de\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2007-09-05 16:28+0200\n"
"Last-Translator: Nicolas Bauer <rastafarii@mandrivauser.de>\n"
"Language-Team: deutsch\n"
@@ -969,7 +969,14 @@ msgstr "Installation/Aktualisierung"
msgid "Is this an install or an upgrade?"
msgstr "Handelt es sich um eine Installation oder eine Aktualisierung?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Installation"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "Aktualisiere %s"
diff --git a/perl-install/install/share/po/el.po b/perl-install/install/share/po/el.po
index e03bb8b00..c6bc15f26 100644
--- a/perl-install/install/share/po/el.po
+++ b/perl-install/install/share/po/el.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX-el\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2004-09-15 13:28+0200\n"
"Last-Translator: Νίκος Νύκταρης (Nick Niktaris) <niktarin@yahoo.com>\n"
"Language-Team: Greek <nls@tux.hellug.gr>\n"
@@ -941,7 +941,14 @@ msgstr "Εγκατάσταση/Αναβάθμιση"
msgid "Is this an install or an upgrade?"
msgstr "Πρόκειται για εγκατάσταση ή για αναβάθμιση;"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Εγκατάσταση"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "Αναβάθμιση %s"
diff --git a/perl-install/install/share/po/eo.po b/perl-install/install/share/po/eo.po
index 6aae75332..17ef821e1 100644
--- a/perl-install/install/share/po/eo.po
+++ b/perl-install/install/share/po/eo.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX-eo\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2007-03-14 21:45+0100\n"
"Last-Translator: Vilhelmo Lutermano <vlutermano@free.fr>\n"
"Language-Team: <eo@li.org>\n"
@@ -951,7 +951,14 @@ msgstr "Instalado/Ĝisdatigo"
msgid "Is this an install or an upgrade?"
msgstr "Ĉu tiu ĉi estas instalado aŭ ĝisdatigo?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Instalu"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "Ĝisdatigu %s"
diff --git a/perl-install/install/share/po/es.po b/perl-install/install/share/po/es.po
index c8374e3b7..5fb1b50e0 100644
--- a/perl-install/install/share/po/es.po
+++ b/perl-install/install/share/po/es.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX-es\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2007-09-24 14:30-0300\n"
"Last-Translator: Fabián Mandelbaum <fmandelbaum@gmail.com>\n"
"Language-Team: Español <es@li.org>\n"
@@ -951,7 +951,14 @@ msgstr "Instalación/Actualización"
msgid "Is this an install or an upgrade?"
msgstr "¿Es una instalación o una actualización?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Instalar"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "Actualizar %s"
diff --git a/perl-install/install/share/po/et.po b/perl-install/install/share/po/et.po
index ce10df49f..80a95cc0d 100644
--- a/perl-install/install/share/po/et.po
+++ b/perl-install/install/share/po/et.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX-et\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2007-09-05 13:29+0200\n"
"Last-Translator: Marek Laane <bald@starman.ee>\n"
"Language-Team: Estonian <et@li.org>\n"
@@ -943,7 +943,14 @@ msgstr "Paigaldamine/Uuendamine"
msgid "Is this an install or an upgrade?"
msgstr "Kas see on paigaldamine või uuendamine?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Paigaldus"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "%s uuendus"
diff --git a/perl-install/install/share/po/eu.po b/perl-install/install/share/po/eu.po
index 1ed86593e..da71cf079 100644
--- a/perl-install/install/share/po/eu.po
+++ b/perl-install/install/share/po/eu.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2007-08-08 13:48+0200\n"
"Last-Translator: Iñigo Salvador Azurmendi <xalba@euskalnet.net>\n"
"Language-Team: Euskara <eu@li.org>\n"
@@ -948,7 +948,14 @@ msgstr "Instalazioa/Bertsio-berritzea"
msgid "Is this an install or an upgrade?"
msgstr "Zer egin nahi duzu: instalazioa ala bertsio-berritzea?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Instalatu"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "%s bertsio-berritu"
diff --git a/perl-install/install/share/po/fa.po b/perl-install/install/share/po/fa.po
index bf15dbee7..19749b17f 100644
--- a/perl-install/install/share/po/fa.po
+++ b/perl-install/install/share/po/fa.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX-fa\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2005-02-26 06:31+0100\n"
"Last-Translator: Abbas Izad <abbasizad@hotmail.com>\n"
"Language-Team: Persian\n"
@@ -938,7 +938,14 @@ msgstr "نصب/ارتقاء"
msgid "Is this an install or an upgrade?"
msgstr "آیا این یک نصب است یا یک ارتقاء؟"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "نصب"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "ارتقاء دادن %s"
diff --git a/perl-install/install/share/po/fi.po b/perl-install/install/share/po/fi.po
index 6238a4fee..5f1314696 100644
--- a/perl-install/install/share/po/fi.po
+++ b/perl-install/install/share/po/fi.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX-fi - Mandriva 2007 Release\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2006-09-18 20:02+0300\n"
"Last-Translator: Thomas Backlund <tmb@mandriva.org>\n"
"Language-Team: Finnish <fi@li.org>\n"
@@ -960,7 +960,14 @@ msgstr "Asenna/Päivitä"
msgid "Is this an install or an upgrade?"
msgstr "Onko tämä asennus vai päivitys?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Asenna"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "Päivitä %s"
diff --git a/perl-install/install/share/po/fr.po b/perl-install/install/share/po/fr.po
index ad8865e5a..c71f70733 100644
--- a/perl-install/install/share/po/fr.po
+++ b/perl-install/install/share/po/fr.po
@@ -74,7 +74,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX-fr\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2007-09-04 17:19+0200\n"
"Last-Translator: Christophe Berthelé <cpjc@free.fr>\n"
"Language-Team: Français <cooker-i18n@mandrivalinux.org>\n"
@@ -1027,7 +1027,14 @@ msgstr "Installation/Mise à jour"
msgid "Is this an install or an upgrade?"
msgstr "Désirez-vous faire une installation ou une mise à jour ?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Installation"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "Mettre à jour %s"
diff --git a/perl-install/install/share/po/fur.po b/perl-install/install/share/po/fur.po
index 1f75457d1..c8a8d6b2b 100644
--- a/perl-install/install/share/po/fur.po
+++ b/perl-install/install/share/po/fur.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2004-06-28 17:41+0200\n"
"Last-Translator: Andrea Gracco <graccoandrea@tin.it>\n"
"Language-Team: furlan <gft@freelists.org>\n"
@@ -899,7 +899,14 @@ msgstr ""
msgid "Is this an install or an upgrade?"
msgstr ""
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Instale"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr ""
diff --git a/perl-install/install/share/po/ga.po b/perl-install/install/share/po/ga.po
index a0ff3ce18..87ba945fa 100644
--- a/perl-install/install/share/po/ga.po
+++ b/perl-install/install/share/po/ga.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2005-09-12 18:04+0200\n"
"Last-Translator: Alastair McKinstry <mckinstry@computer.org>\n"
"Language-Team: Irish <ga@li.org>\n"
@@ -897,7 +897,14 @@ msgstr "Feistiúi/Uadgrádaigh"
msgid "Is this an install or an upgrade?"
msgstr "Feistigh nó uasgrádaigh ?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Feistiú"
+
+#: steps_interactive.pm:137
#, fuzzy, c-format
msgid "Upgrade %s"
msgstr "Uasgrádaigh"
diff --git a/perl-install/install/share/po/gl.po b/perl-install/install/share/po/gl.po
index 79c5c718f..420d9e935 100644
--- a/perl-install/install/share/po/gl.po
+++ b/perl-install/install/share/po/gl.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX-gl\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2006-09-10 00:29+0100\n"
"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
"Language-Team: Galician <<gpul-traduccion@ceu.fi.udc.es>>\n"
@@ -955,7 +955,14 @@ msgstr "Instalar/Actualizar"
msgid "Is this an install or an upgrade?"
msgstr "¿É unha instalación ou unha actualización?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Instalar"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "Actualizar %s"
diff --git a/perl-install/install/share/po/he.po b/perl-install/install/share/po/he.po
index bfcd713f3..5cf57476b 100644
--- a/perl-install/install/share/po/he.po
+++ b/perl-install/install/share/po/he.po
@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2007-09-08 23:46+0300\n"
"Last-Translator: Dotan Kamber <kamberd@yahoo.com>\n"
"Language-Team: Hebrew\n"
@@ -941,7 +941,14 @@ msgstr "התקנה/עדכון"
msgid "Is this an install or an upgrade?"
msgstr "האם זו התקנה או שידרוג?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "התקנה"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "שידרוג %s"
diff --git a/perl-install/install/share/po/hi.po b/perl-install/install/share/po/hi.po
index 5540406e4..9973f3099 100644
--- a/perl-install/install/share/po/hi.po
+++ b/perl-install/install/share/po/hi.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX-hi\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2004-04-04 21:54+0530\n"
"Last-Translator: धनञ्जय शर्मा (Dhananjaya Sharma) <dysxhi@yahoo.co.in>\n"
"Language-Team: हिन्दी (Hindi) <dysxhi@yahoo.co.in>\n"
@@ -937,7 +937,14 @@ msgstr "संसाधन/उन्नयन"
msgid "Is this an install or an upgrade?"
msgstr "यह एक संसाधन या एक उन्नयन है?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "संसाधन"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "उन्नयन %s"
diff --git a/perl-install/install/share/po/hr.po b/perl-install/install/share/po/hr.po
index f63867ce1..8048ca23f 100644
--- a/perl-install/install/share/po/hr.po
+++ b/perl-install/install/share/po/hr.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX 0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2005-01-04 21:25+CET\n"
"Last-Translator: auto\n"
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
@@ -934,7 +934,14 @@ msgstr "Instaliraj/Nadogradi"
msgid "Is this an install or an upgrade?"
msgstr "Da li je ovo instalacija ili nadogradnja?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Instaliraj"
+
+#: steps_interactive.pm:137
#, fuzzy, c-format
msgid "Upgrade %s"
msgstr "Dogradnja"
diff --git a/perl-install/install/share/po/hu.po b/perl-install/install/share/po/hu.po
index aa9e961f5..2f6db8502 100644
--- a/perl-install/install/share/po/hu.po
+++ b/perl-install/install/share/po/hu.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: hu\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2007-09-12 00:18+0200\n"
"Last-Translator: Arpad Biro <biro_arpad@yahoo.com>\n"
"Language-Team: \n"
@@ -965,7 +965,14 @@ msgstr "Telepítés/frissítés"
msgid "Is this an install or an upgrade?"
msgstr "Új telepítés vagy frissítés?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Telepítés"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "Frissítés: %s"
diff --git a/perl-install/install/share/po/id.po b/perl-install/install/share/po/id.po
index a17399195..bcaaa33c7 100644
--- a/perl-install/install/share/po/id.po
+++ b/perl-install/install/share/po/id.po
@@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX 0.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2007-01-17 15:49+0700\n"
"Last-Translator: Willy Sudiarto Raharjo <willysr@gmail.com>\n"
"Language-Team: Indonesia <mdk-id@yahoogroups.com>\n"
@@ -956,7 +956,14 @@ msgstr "Instal/Upgrade"
msgid "Is this an install or an upgrade?"
msgstr "Installasi atau upgrade?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Instal"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "Upgrade %s"
diff --git a/perl-install/install/share/po/is.po b/perl-install/install/share/po/is.po
index ad3bd6ff2..8966494ef 100644
--- a/perl-install/install/share/po/is.po
+++ b/perl-install/install/share/po/is.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2007-02-19 20:22+0000\n"
"Last-Translator: Pjetur G. Hjaltason <pjetur@pjetur.net>\n"
"Language-Team: Icelandic <kde-isl@molar.is>\n"
@@ -951,7 +951,14 @@ msgstr "Innsetning/Uppfærsla"
msgid "Is this an install or an upgrade?"
msgstr "Er þetta innsetning eða uppfærsla?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Innsetning"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "Uppfæra %s"
diff --git a/perl-install/install/share/po/it.po b/perl-install/install/share/po/it.po
index b15f0648f..7158e8522 100644
--- a/perl-install/install/share/po/it.po
+++ b/perl-install/install/share/po/it.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: it\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-04 17:16+0200\n"
+"POT-Creation-Date: 2007-09-25 20:13+0200\n"
"PO-Revision-Date: 2007-09-11 22:39+0200\n"
"Last-Translator: Andrea Celli <andrea.celli@libero.it>\n"
"Language-Team: Italian <it@li.org>\n"
@@ -955,7 +955,14 @@ msgstr "Installazione/Aggiornamento"
msgid "Is this an install or an upgrade?"
msgstr "È un'installazione o un aggiornamento?"
-#: steps_interactive.pm:135
+#: steps_interactive.pm:134
+#, fuzzy, c-format
+msgid ""
+"_: This is a noun:\n"
+"Install"
+msgstr "Installa"
+
+#: steps_interactive.pm:137
#, c-format
msgid "Upgrade %s"
msgstr "Aggiornamento di %s"
diff --git a/perl-install/install/share/po/ja.po b/perl-install/install/share/po/ja.po
index b3bbb64ed..0017d0c6e 100644
--- a/perl-install/install/share/po/ja.po
+++ b/perl-install/install/share/po/ja.po