Skip to content

Commit

Permalink
Mail: Change translation of send_time property
Browse files Browse the repository at this point in the history
  • Loading branch information
mjansenDatabay committed Aug 9, 2024
1 parent ad56160 commit a1fb600
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/ILIAS/Mail/classes/class.ilMailFolderGUI.php
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ protected function showMail(): void
$subject->setHtml(ilUtil::htmlencodePlainString($mailData['m_subject'] ?? '', true));
$form->addItem($subject);

$date = new ilCustomInputGUI($this->lng->txt('date') . ':');
$date = new ilCustomInputGUI($this->lng->txt('mail_sent_datetime') . ':');
$date->setHtml(ilDatePresentation::formatDate(
new ilDateTime($mailData['send_time'], IL_CAL_DATETIME)
));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ protected function getColumnDefinition(bool $use_cached_result = true): array

$columns[++$i] = [
'field' => 'send_time',
'txt' => $this->lng->txt('date'),
'txt' => $this->lng->txt('mail_sent_datetime'),
'default' => true,
'optional' => false,
'sortable' => true,
Expand Down
1 change: 1 addition & 0 deletions lang/ilias_de.lang
Original file line number Diff line number Diff line change
Expand Up @@ -11485,6 +11485,7 @@ mail#:#mail_select_one_entry#:#Sie müssen mindestens einen Eintrag auswählen
mail#:#mail_select_one_file#:#Sie müssen mindestens eine Datei auswählen
mail#:#mail_send_html#:#HTML-Rahmen
mail#:#mail_send_html_info#:#Falls aktiviert, wird der Nachrichtentext von externen E-Mails in einen HTML-Rahmen gesetzt. Dieser kann über ein Skin-Template unter './Customizing/global/skin/[SKIN]/[STYLE]/Services/Mail/tpl.html_mail_template.html' (als Kopie von './Services/Mail/templates/default/tpl.html_mail_template.html') angepasst werden.
mail#:#mail_sent_datetime#:#Datum
mail#:#mail_serial_letter_placeholders#:#Platzhalter für Serienbrief
mail#:#mail_settings_external_frm_head#:#Externe E-Mails
mail#:#mail_settings_external_tab#:#Extern
Expand Down
1 change: 1 addition & 0 deletions lang/ilias_en.lang
Original file line number Diff line number Diff line change
Expand Up @@ -11458,6 +11458,7 @@ mail#:#mail_select_one_entry#:#You must select at least one entry.
mail#:#mail_select_one_file#:#You must select at least one file.
mail#:#mail_send_html#:#HTML Frame
mail#:#mail_send_html_info#:#Embed the body of external e-mails in an HTML frame. The corresponding template can be customised by creating a copy of './Services/Mail/templates/default/tpl.html_mail_template.html' at './Customizing/global/skin/[SKIN]/[STYLE]/Services/Mail/tpl.html_mail_template.html'.
mail#:#mail_sent_datetime#:#Date
mail#:#mail_serial_letter_placeholders#:#Mail Merge Placeholders
mail#:#mail_settings_external_frm_head#:#External E-Mails
mail#:#mail_settings_external_tab#:#External
Expand Down

0 comments on commit a1fb600

Please sign in to comment.