Commit 8dbb3916 authored by Sindre Sorhus's avatar Sindre Sorhus

Merge pull request #367 from passy/left-dot

Removed dot after "items left" for dojo and extjs
parents 1d0cf45d cfbbd8a3
......@@ -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">
......
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -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