UNPKG
todomvc
Version:
latest (0.1.1)
0.1.1
0.1.0
> Helping you select an MV\* framework
todomvc
/
examples
/
cujo
/
app
/
controls
/
strings.js
15 lines
(14 loc)
•
276 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*global define */
define
({
itemsLeft
: {
zero
:
'<strong></strong> items left'
,
one
:
'<strong></strong> item left'
,
many
:
'<strong></strong> items left'
},
filter
: {
all
:
'All'
,
active
:
'Active'
,
completed
:
'Completed'
},
clearCompleted
:
'Clear completed'
});