Exemplo n.º 1
0
RString LastWeekToLocalizedString(int iLastWeekIndex)
{
	RString s = LastWeekToString(iLastWeekIndex);
	s.Replace("Week", "");
	s.Replace("Ago", " Ago");
	return s;
}
Exemplo n.º 2
0
CString LastWeekToDisplayString( int iLastWeekIndex )
{
	CString s = LastWeekToString( iLastWeekIndex );
	s.Replace( "Week", "" );
	s.Replace( "Ago", " Ago" );
	return s;
}