Файл: concrete5.7.5.6/concrete/mail/private_message_response_enabled.php
Строк: 19
<?php
defined('C5_EXECUTE') or die("Access Denied.");
$subject = t('Private message from %s', $msgAuthor);
$body .= t("A message has been sent to you by %s through your profile on %s", $msgAuthor, $siteName);
$body .= "nn";
$body .= t("Subject: %s", $msgSubject);
$body .= "nn";
$body .= t("Message:n%s", $msgBody);
$body .= "nn";
$body .= t("To view this user's profile, visit: %s", $profileURL);
$body .= "nn";
$body .= t("To disable any future messages, change your profile preferences at: %s", $profilePreferencesURL);