Commit 69291041 authored by Pascal Hartig's avatar Pascal Hartig

Removed dot after "items left" for dojo and extjs

parent 1d0cf45d
......@@ -27,7 +27,7 @@
<strong>
<span data-dojo-type="dojox.mvc.Output" data-dojo-props="ref: this.model.incomplete" class="number"></span>
</strong>
<span class="word">item<span class="plural">s</span></span> left.
<span class="word">item<span class="plural">s</span></span> left
</span>
<!-- Remove this if you don't implement routing -->
<ul id="filters">
......
......@@ -58,7 +58,7 @@
data-dojo-props="_setSingleAttr: {type: 'classExists', className: 'plural'},
constraints: {lessThanOrEqualTo: 1},
single: at(${id}_ctrl, 'incomplete').transform(LessThanOrEqualToConverter)">s</span></span>
left.
left
</span>
<!-- Remove this if you don't implement routing -->
<ul id="filters">
......
......@@ -126,7 +126,7 @@ Ext.define('Todo.controller.Tasks', {
checkedCount = totalCount - count;
if (count) {
info = '<strong>' + count + '</strong> item' + (count > 1 ? 's' : '') + ' left.';
info = '<strong>' + count + '</strong> item' + (count > 1 ? 's' : '') + ' left';
}
if (checkedCount) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment