* @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\message; /** * Class message * Holds all information for an email and sends it in the end */ class message { /** @var string */ protected $server_name; /** @var string */ protected $subject = ''; /** @var string */ protected $body = ''; /** @var string */ protected $template = ''; /** @var array */ protected $template_vars = array(); /** @var string */ protected $sender_ip = ''; /** @var string */ protected $sender_name = ''; /** @var string */ protected $sender_address = ''; /** @var string */ protected $sender_lang = ''; /** @var string */ protected $sender_id = ''; /** @var string */ protected $sender_username = ''; /** @var string */ protected $sender_jabber = ''; /** @var int */ protected $sender_notify_type = NOTIFY_EMAIL; /** @var array */ protected $recipients; /** * Construct * * @param string $server_name Used for AntiAbuse header */ public function __construct($server_name) { $this->server_name = $server_name; } /** * Set the subject of the email * * @param string $subject * @return null */ public function set_subject($subject) { $this->subject = $subject; } /** * Set the body of the email text * * @param string $body * @return null */ public function set_body($body) { $this->body = $body; } /** * Set the name of the email template to use * * @param string $template * @return null */ public function set_template($template) { $this->template = $template; } /** * Set the array with the "template" data for the email * * @param array $template_vars * @return null */ public function set_template_vars($template_vars) { $this->template_vars = $template_vars; } /** * Add a recipient from \phpbb\user * * @param array $user * @return null */ public function add_recipient_from_user_row(array $user) { $this->add_recipient( $user['username'], $user['user_email'], $user['user_lang'], $user['user_notify_type'], $user['username'], $user['user_jabber'] ); } /** * Add a recipient * * @param string $recipient_name Displayed sender name * @param string $recipient_address Email address * @param string $recipient_lang * @param int $recipient_notify_type Used notification methods (Jabber, Email, ...) * @param string $recipient_username User Name (used for AntiAbuse header) * @param string $recipient_jabber * @return null */ public function add_recipient($recipient_name, $recipient_address, $recipient_lang, $recipient_notify_type = NOTIFY_EMAIL, $recipient_username = '', $recipient_jabber = '') { $this->recipients[] = array( 'name' => $recipient_name, 'address' => $recipient_address, 'lang' => $recipient_lang, 'username' => $recipient_username, 'jabber' => $recipient_jabber, 'notify_type' => $recipient_notify_type, 'to_name' => $recipient_name, ); } /** * Set the senders data from \phpbb\user object * * @param \phpbb\user $user * @return null */ public function set_sender_from_user($user) { $this->set_sender( $user->ip, $user->data['username'], $user->data['user_email'], $user->lang_name, $user->data['user_id'], $user->data['username'], $user->data['user_jabber'] ); $this->set_sender_notify_type($user->data['user_notify_type']); } /** * Set the senders data * * @param string $sender_ip * @param string $sender_name Displayed sender name * @param string $sender_address Email address * @param string $sender_lang * @param int $sender_id User ID * @param string $sender_username User Name (used for AntiAbuse header) * @param string $sender_jabber * @return null */ public function set_sender($sender_ip, $sender_name, $sender_address, $sender_lang = '', $sender_id = 0, $sender_username = '', $sender_jabber = '') { $this->sender_ip = $sender_ip; $this->sender_name = $sender_name; $this->sender_address = $sender_address; $this->sender_lang = $sender_lang; $this->sender_id = $sender_id; $this->sender_username = $sender_username; $this->sender_jabber = $sender_jabber; } /** * Which notification type should be used? Jabber, Email, ...? * * @param int $sender_notify_type * @return null */ public function set_sender_notify_type($sender_notify_type) { $this->sender_notify_type = $sender_notify_type; } /** * Ok, now the same email if CC specified, but without exposing the user's email address * * @return null */ public function cc_sender() { if (!sizeof($this->recipients)) { trigger_error('No email recipients specified'); } if (!$this->sender_address) { trigger_error('No email sender specified'); } $this->recipients[] = array( 'lang' => $this->sender_lang, 'address' => $this->sender_address, 'name' => $this->sender_name, 'username' => $this->sender_username, 'jabber' => $this->sender_jabber, 'notify_type' => $this->sender_notify_type, 'to_name' => $this->recipients[0]['to_name'], ); } /** * Send the email * * @param \messenger $messenger * @param string $contact * @return null */ public function send(\messenger $messenger, $contact) { if (!sizeof($this->recipients)) { return; } foreach ($this->recipients as $recipient) { $messenger->template($this->template, $recipient['lang']); $messenger->replyto($this->sender_address); $messenger->to($recipient['address'], $recipient['name']); $messenger->im($recipient['jabber'], $recipient['username']); $messenger->headers('X-AntiAbuse: Board servername - ' . $this->server_name); $messenger->headers('X-AntiAbuse: User IP - ' . $this->sender_ip); if ($this->sender_id) { $messenger->headers('X-AntiAbuse: User_id - ' . $this->sender_id); } if ($this->sender_username) { $messenger->headers('X-AntiAbuse: Username - ' . $this->sender_username); } $messenger->subject(htmlspecialchars_decode($this->subject)); $messenger->assign_vars(array( 'BOARD_CONTACT' => $contact, 'TO_USERNAME' => htmlspecialchars_decode($recipient['to_name']), 'FROM_USERNAME' => htmlspecialchars_decode($this->sender_name), 'MESSAGE' => htmlspecialchars_decode($this->body)) ); if (sizeof($this->template_vars)) { $messenger->assign_vars($this->template_vars); } $messenger->send($recipient['notify_type']); } } } ue='4'>4space:mode:
authorThierry Vignaud <tv@mandriva.org>2008-02-21 17:13:40 +0000
committerThierry Vignaud <tv@mandriva.org>2008-02-21 17:13:40 +0000
commit34827a480e97d27b5c6ca1fb40ad78a38e611a48 (patch)
treed9a52ee850655db21fb647695b73898c0647cac8 /perl-install/standalone/po
parentf442710121d1584fe3b32cc7184645e573449916 (diff)
downloaddrakx-34827a480e97d27b5c6ca1fb40ad78a38e611a48.tar
drakx-34827a480e97d27b5c6ca1fb40ad78a38e611a48.tar.gz
drakx-34827a480e97d27b5c6ca1fb40ad78a38e611a48.tar.bz2
drakx-34827a480e97d27b5c6ca1fb40ad78a38e611a48.tar.xz
drakx-34827a480e97d27b5c6ca1fb40ad78a38e611a48.zip
typo fix (Yukiko Bando)
Diffstat (limited to 'perl-install/standalone/po')
-rw-r--r--perl-install/standalone/po/af.po4
-rw-r--r--perl-install/standalone/po/am.po4
-rw-r--r--perl-install/standalone/po/ar.po4
-rw-r--r--perl-install/standalone/po/az.po4
-rw-r--r--perl-install/standalone/po/be.po4
-rw-r--r--perl-install/standalone/po/bg.po4
-rw-r--r--perl-install/standalone/po/bn.po4
-rw-r--r--perl-install/standalone/po/br.po4
-rw-r--r--perl-install/standalone/po/bs.po4
-rw-r--r--perl-install/standalone/po/ca.po4
-rw-r--r--perl-install/standalone/po/cs.po4
-rw-r--r--perl-install/standalone/po/cy.po4
-rw-r--r--perl-install/standalone/po/da.po4
-rw-r--r--perl-install/standalone/po/de.po4
-rw-r--r--perl-install/standalone/po/el.po4
-rw-r--r--perl-install/standalone/po/eo.po4
-rw-r--r--perl-install/standalone/po/es.po4
-rw-r--r--perl-install/standalone/po/et.po4
-rw-r--r--perl-install/standalone/po/eu.po4
-rw-r--r--perl-install/standalone/po/fa.po4
-rw-r--r--perl-install/standalone/po/fi.po4
-rw-r--r--perl-install/standalone/po/fr.po4
-rw-r--r--perl-install/standalone/po/fur.po4
-rw-r--r--perl-install/standalone/po/ga.po4
-rw-r--r--perl-install/standalone/po/gl.po4
-rw-r--r--perl-install/standalone/po/he.po4
-rw-r--r--perl-install/standalone/po/hi.po4
-rw-r--r--perl-install/standalone/po/hr.po4
-rw-r--r--perl-install/standalone/po/hu.po4
-rw-r--r--perl-install/standalone/po/id.po4
-rw-r--r--perl-install/standalone/po/is.po4
-rw-r--r--perl-install/standalone/po/it.po4
-rw-r--r--perl-install/standalone/po/ja.po4
-rw-r--r--perl-install/standalone/po/ko.po4
-rw-r--r--perl-install/standalone/po/ky.po4
-rw-r--r--perl-install/standalone/po/libDrakX-standalone.pot4
-rw-r--r--perl-install/standalone/po/lt.po4
-rw-r--r--perl-install/standalone/po/ltg.po4
-rw-r--r--perl-install/standalone/po/lv.po4
-rw-r--r--perl-install/standalone/po/mk.po4
-rw-r--r--perl-install/standalone/po/mn.po4
-rw-r--r--perl-install/standalone/po/ms.po4
-rw-r--r--perl-install/standalone/po/mt.po4
-rw-r--r--perl-install/standalone/po/nb.po4
-rw-r--r--perl-install/standalone/po/nl.po4
-rw-r--r--perl-install/standalone/po/nn.po4
-rw-r--r--perl-install/standalone/po/pa_IN.po4
-rw-r--r--perl-install/standalone/po/pl.po4
-rw-r--r--perl-install/standalone/po/pt.po4
-rw-r--r--perl-install/standalone/po/pt_BR.po4
-rw-r--r--perl-install/standalone/po/ro.po4
-rw-r--r--perl-install/standalone/po/ru.po2
-rw-r--r--perl-install/standalone/po/sc.po4
-rw-r--r--perl-install/standalone/po/sk.po4
-rw-r--r--perl-install/standalone/po/sl.po4
-rw-r--r--perl-install/standalone/po/sq.po4
-rw-r--r--perl-install/standalone/po/sr.po4
-rw-r--r--perl-install/standalone/po/sr@Latn.po4
-rw-r--r--perl-install/standalone/po/sv.po4
-rw-r--r--perl-install/standalone/po/ta.po4
-rw-r--r--perl-install/standalone/po/tg.po4
-rw-r--r--perl-install/standalone/po/th.po4
-rw-r--r--perl-install/standalone/po/tl.po4
-rw-r--r--perl-install/standalone/po/tr.po4
-rw-r--r--perl-install/standalone/po/uk.po4
-rw-r--r--perl-install/standalone/po/uz.po4
-rw-r--r--perl-install/standalone/po/uz@cyrillic.po4
-rw-r--r--perl-install/standalone/po/vi.po4
-rw-r--r--perl-install/standalone/po/wa.po4
-rw-r--r--perl-install/standalone/po/zh_CN.po4
-rw-r--r--perl-install/standalone/po/zh_TW.po4
71 files changed, 141 insertions, 141 deletions
diff --git a/perl-install/standalone/po/af.po b/perl-install/standalone/po/af.po
index e35f7db65..94e7f740d 100644
--- a/perl-install/standalone/po/af.po
+++ b/perl-install/standalone/po/af.po
@@ -313,8 +313,8 @@ msgstr "Pakket is nie geïnstalleer nie"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
#: drakbug:235
diff --git a/perl-install/standalone/po/am.po b/perl-install/standalone/po/am.po
index 8946f8096..1b8b4fc25 100644
--- a/perl-install/standalone/po/am.po
+++ b/perl-install/standalone/po/am.po
@@ -297,8 +297,8 @@ msgstr "ማንበብ አልቻለም፦ "
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
#: drakbug:235
diff --git a/perl-install/standalone/po/ar.po b/perl-install/standalone/po/ar.po
index 01c464fc2..6af20b12c 100644
--- a/perl-install/standalone/po/ar.po
+++ b/perl-install/standalone/po/ar.po
@@ -319,8 +319,8 @@ msgstr "لم يتم تثبيت الحزمة"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
#: drakbug:235
diff --git a/perl-install/standalone/po/az.po b/perl-install/standalone/po/az.po
index 6d84d12c8..734917401 100644
--- a/perl-install/standalone/po/az.po
+++ b/perl-install/standalone/po/az.po
@@ -312,8 +312,8 @@ msgstr "Paket qurulmayıb"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
#: drakbug:235
diff --git a/perl-install/standalone/po/be.po b/perl-install/standalone/po/be.po
index fb1813a6e..ec3fe9e68 100644
--- a/perl-install/standalone/po/be.po
+++ b/perl-install/standalone/po/be.po
@@ -297,8 +297,8 @@ msgstr "Выбар пакетаў"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
#: drakbug:235
diff --git a/perl-install/standalone/po/bg.po b/perl-install/standalone/po/bg.po
index c748382f5..655425472 100644
--- a/perl-install/standalone/po/bg.po
+++ b/perl-install/standalone/po/bg.po
@@ -304,8 +304,8 @@ msgstr "Пакета не е инсталиран"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
#: drakbug:235
diff --git a/perl-install/standalone/po/bn.po b/perl-install/standalone/po/bn.po
index 2e4a16613..aade180fb 100644
--- a/perl-install/standalone/po/bn.po
+++ b/perl-install/standalone/po/bn.po
@@ -314,8 +314,8 @@ msgstr "প্যাকেজ ইনস্টল করা নেই"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
#: drakbug:235
diff --git a/perl-install/standalone/po/br.po b/perl-install/standalone/po/br.po
index 684a294bd..0f7ed959c 100644
--- a/perl-install/standalone/po/br.po
+++ b/perl-install/standalone/po/br.po
@@ -303,8 +303,8 @@ msgstr "N'eo ket staliet ar pakad"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
#: drakbug:235
diff --git a/perl-install/standalone/po/bs.po b/perl-install/standalone/po/bs.po
index 341fbe004..bcdc9dc2d 100644
--- a/perl-install/standalone/po/bs.po
+++ b/perl-install/standalone/po/bs.po
@@ -318,8 +318,8 @@ msgstr "Paket nije instaliran"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
#: drakbug:235
diff --git a/perl-install/standalone/po/ca.po b/perl-install/standalone/po/ca.po
index fb9c9619a..f1046aaf9 100644
--- a/perl-install/standalone/po/ca.po
+++ b/perl-install/standalone/po/ca.po
@@ -313,8 +313,8 @@ msgstr "El paquet no està instal·lat"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
#: drakbug:235
diff --git a/perl-install/standalone/po/cs.po b/perl-install/standalone/po/cs.po
index d4ebd2f02..92163b17a 100644
--- a/perl-install/standalone/po/cs.po
+++ b/perl-install/standalone/po/cs.po
@@ -315,8 +315,8 @@ msgstr "Balíček není nainstalován"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
"Musíte popsat, co jste při výskytu této chyby dělali, abychom mohli "
"tuto chybu zopakovat a zvýšit tak šanci, že budeme schopni tuto chybu opravit"
diff --git a/perl-install/standalone/po/cy.po b/perl-install/standalone/po/cy.po
index 22aa37fda..ec5156d79 100644
--- a/perl-install/standalone/po/cy.po
+++ b/perl-install/standalone/po/cy.po
@@ -316,8 +316,8 @@ msgstr "Pecyn heb ei osod"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
"Rhaid teipio beth roeddech yn ei wneud pan ddigwyddodd y gwall er mwyn i ni "
"ail greu'r gwall ac i gynyddu'r siawns o'i drwsio."
diff --git a/perl-install/standalone/po/da.po b/perl-install/standalone/po/da.po
index 81ab9163d..cb2acbb67 100644
--- a/perl-install/standalone/po/da.po
+++ b/perl-install/standalone/po/da.po
@@ -320,8 +320,8 @@ msgstr "Pakke ikke installeret"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
#: drakbug:235
diff --git a/perl-install/standalone/po/de.po b/perl-install/standalone/po/de.po
index 95390f85e..50dbc905d 100644
--- a/perl-install/standalone/po/de.po
+++ b/perl-install/standalone/po/de.po
@@ -326,8 +326,8 @@ msgstr "Paket nicht installiert"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
#: drakbug:235
diff --git a/perl-install/standalone/po/el.po b/perl-install/standalone/po/el.po
index 25d62f37f..f0724a259 100644
--- a/perl-install/standalone/po/el.po
+++ b/perl-install/standalone/po/el.po
@@ -302,8 +302,8 @@ msgstr "Το πακέτο δεν είναι εγκατεστημένο"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
#: drakbug:235
diff --git a/perl-install/standalone/po/eo.po b/perl-install/standalone/po/eo.po
index ba64a3c49..3d3a19e73 100644
--- a/perl-install/standalone/po/eo.po
+++ b/perl-install/standalone/po/eo.po
@@ -298,8 +298,8 @@ msgstr "Eliru instalprogramon"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
#: drakbug:235
diff --git a/perl-install/standalone/po/es.po b/perl-install/standalone/po/es.po
index dd7b69305..0df175290 100644
--- a/perl-install/standalone/po/es.po
+++ b/perl-install/standalone/po/es.po
@@ -320,8 +320,8 @@ msgstr "Paquete no instalado"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
#: drakbug:235
diff --git a/perl-install/standalone/po/et.po b/perl-install/standalone/po/et.po
index 3fddace1a..2791fe440 100644
--- a/perl-install/standalone/po/et.po
+++ b/perl-install/standalone/po/et.po
@@ -315,8 +315,8 @@ msgstr "Pakett ei ole paigaldatud"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
#: drakbug:235
diff --git a/perl-install/standalone/po/eu.po b/perl-install/standalone/po/eu.po
index e4715b73e..651fce704 100644
--- a/perl-install/standalone/po/eu.po
+++ b/perl-install/standalone/po/eu.po
@@ -317,8 +317,8 @@ msgstr "Paketea ez dago instalatuta"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr "Akats hau gertatu denean zer egiten ari zinen idatzi behar duzu guk hau errepikatu ahal izan dezagun eta hura konpontzeko aukerak haunditu"
#: drakbug:235
diff --git a/perl-install/standalone/po/fa.po b/perl-install/standalone/po/fa.po
index e2b43ccfe..5e7909c4c 100644
--- a/perl-install/standalone/po/fa.po
+++ b/perl-install/standalone/po/fa.po
@@ -313,8 +313,8 @@ msgstr "بسته نصب نشده است"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
#: drakbug:235
diff --git a/perl-install/standalone/po/fi.po b/perl-install/standalone/po/fi.po
index 5fc109ce2..dca13ee19 100644
--- a/perl-install/standalone/po/fi.po
+++ b/perl-install/standalone/po/fi.po
@@ -319,8 +319,8 @@ msgstr "Pakettia ei asennettu"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
#: drakbug:235
diff --git a/perl-install/standalone/po/fr.po b/perl-install/standalone/po/fr.po
index 233d12c4c..583ba9453 100644
--- a/perl-install/standalone/po/fr.po
+++ b/perl-install/standalone/po/fr.po
@@ -384,8 +384,8 @@ msgstr "Paquetage non installé"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
"Vous devez décrire ce que vous faisiez quand ce bug s'est produit afin\n"
"de nous permettre de reproduire ce bug et d'augmenter nos chances de\n"
diff --git a/perl-install/standalone/po/fur.po b/perl-install/standalone/po/fur.po
index 2da325b9c..0a1e2f7d0 100644
--- a/perl-install/standalone/po/fur.po
+++ b/perl-install/standalone/po/fur.po
@@ -298,8 +298,8 @@ msgstr ""
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
#: drakbug:235
diff --git a/perl-install/standalone/po/ga.po b/perl-install/standalone/po/ga.po
index e7a86b664..fcbffcbfd 100644
--- a/perl-install/standalone/po/ga.po
+++ b/perl-install/standalone/po/ga.po
@@ -296,8 +296,8 @@ msgstr "Níl an pacáiste suiteáilte"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
#: drakbug:235
diff --git a/perl-install/standalone/po/gl.po b/perl-install/standalone/po/gl.po
index 9f4cd0a07..1d7642051 100644
--- a/perl-install/standalone/po/gl.po
+++ b/perl-install/standalone/po/gl.po
@@ -314,8 +314,8 @@ msgstr "Paquete non instalado"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
#: drakbug:235
diff --git a/perl-install/standalone/po/he.po b/perl-install/standalone/po/he.po
index 264dc7445..7306d21e7 100644
--- a/perl-install/standalone/po/he.po
+++ b/perl-install/standalone/po/he.po
@@ -319,8 +319,8 @@ msgstr "החבילה לא מותקנת"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr "עליך לתאר מה עשית כשקרה באג כדי שנוכל לשחזר אותו ולהגדיל את הסיכוי לתקנו"
#: drakbug:235
diff --git a/perl-install/standalone/po/hi.po b/perl-install/standalone/po/hi.po
index 51ee72ea8..aa7db9081 100644
--- a/perl-install/standalone/po/hi.po
+++ b/perl-install/standalone/po/hi.po
@@ -306,8 +306,8 @@ msgstr "पैकज संसाधित नहीं हुआ"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
#: drakbug:235
diff --git a/perl-install/standalone/po/hr.po b/perl-install/standalone/po/hr.po
index 51eaac3e1..e27e026a2 100644
--- a/perl-install/standalone/po/hr.po
+++ b/perl-install/standalone/po/hr.po
@@ -303,8 +303,8 @@ msgstr "Paket nije instaliran"
#: drakbug:234
#, c-format
msgid ""
-"You must type in what you were doing when this bug happens in order to "
-"enable us to reproduce this this bug and to increase the odds of fixing it"
+"You must type in what you were doing when this bug happened in order to "
+"enable us to reproduce this bug and to increase the odds of fixing it"
msgstr ""
#: drakbug:235
diff --git a/perl-install/standalone/po/hu.po b/perl-install/standalone/po/hu.po
index b6e94a33c..5ee91b39d 100644
--- a/perl-install/standalone/po/hu.po
+++ b/perl-install/standalone/po/hu.po