[Vtigercrm-commits] [vtiger-commits] r10368 - in /vtigercrm/branches/5.0.3/modules/Webmails: Webmails.php language/en_us.lang.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Tue Mar 6 23:30:22 EST 2007
Author: saraj
Date: Tue Mar 6 21:30:16 2007
New Revision: 10368
Log:
fix for i18n issue - Notification email - In reply to the message sent by. Fixes #3145 --Minnie
Modified:
vtigercrm/branches/5.0.3/modules/Webmails/Webmails.php
vtigercrm/branches/5.0.3/modules/Webmails/language/en_us.lang.php
Modified: vtigercrm/branches/5.0.3/modules/Webmails/Webmails.php
==============================================================================
--- vtigercrm/branches/5.0.3/modules/Webmails/Webmails.php (original)
+++ vtigercrm/branches/5.0.3/modules/Webmails/Webmails.php Tue Mar 6 21:30:16 2007
@@ -88,7 +88,7 @@
}
function replyBody() {
- $tmp = "<br><br><p style='font-weight:bold'>In reply to the message sent by ".$this->reply_name." on ".$this->date."</p>";
+ $tmp = "<br><br><p style='font-weight:bold'>".$mod_strings['IN_REPLY_TO_THE_MESSAGE'].$this->reply_name." on ".$this->date."</p>";
$tmp .= "<blockquote style='border-left:1px solid blue;padding-left:5px'>".$this->body."</blockquote>";
return $tmp;
}
Modified: vtigercrm/branches/5.0.3/modules/Webmails/language/en_us.lang.php
==============================================================================
--- vtigercrm/branches/5.0.3/modules/Webmails/language/en_us.lang.php (original)
+++ vtigercrm/branches/5.0.3/modules/Webmails/language/en_us.lang.php Tue Mar 6 21:30:16 2007
@@ -134,6 +134,8 @@
'LBL_WEBMAILS_TITLE'=>'WebMails',
'LBL_EMAILS_TITLE'=>'Emails',
'LBL_MAIL_CONNECT_ERROR_INFO'=>'Error connecting mail server!<br> Check in My Accounts->List Mail Server -> List Mail Account',
+// Added for 5.0.3 release
+'IN_REPLY_TO_THE_MESSAGE' => 'In reply to the message sent by ',
);
?>
More information about the vtigercrm-commits
mailing list