Example #1
0
RString LastDayToLocalizedString(int iLastDayIndex)
{
	RString s = LastDayToString(iLastDayIndex);
	s.Replace("Day", "");
	s.Replace("Ago", " Ago");
	return s;
}
Example #2
0
CString LastDayToDisplayString( int iLastDayIndex )
{
	CString s = LastDayToString( iLastDayIndex );
	s.Replace( "Day", "" );
	s.Replace( "Ago", " Ago" );
	return s;
}