﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
29654	Truncate should use horizontal ellipsis character instead of three dots	Sudhanshu Mishra	nobody	"In the following example the value returns a string which has a length of 18 and including 3 dots.


{{{
>>> from django.utils.text import Truncator
>>> Truncator(""Hello world is not so long"").chars(18)
'Hello world is ...'
>>> Truncator(""Hello world is not so long"").chars(18)[-1]
'.'

}}}

IMHO, the `Truncator` should use `...` (ellipsis) character instead."	Cleanup/optimization	closed	Utilities	dev	Normal	fixed	string, truncator	Dan Davis	Ready for checkin	1	0	0	0	1	0
