-
Notifications
You must be signed in to change notification settings - Fork 0
/
i18n.js
50 lines (48 loc) · 1.03 KB
/
i18n.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
var i18n = {
login: {
username: 'Username',
password: 'Password',
loginButton: 'Login',
loginText: 'Logging in...'
},
main: {
loggedInAs: 'Logged in as:',
logOffButton: 'Log off',
header: {
title: 'Restaurant Sample Application '
},
menu : {
tables: 'Tables',
positions: 'Positions'
},
home: {
tabTitle: 'Home',
content: 'Welcome to the OASP Sencha sample client'
}
},
tables: {
title: 'Tables',
grid: {
id: 'ID',
state: 'STATE'
},
buttons: {
edit: 'Edit',
reserve: 'Reserve',
cancel: 'Cancel Reservation',
occupy: 'Occupy',
free: 'Free'
}
},
tableEdit: {
status: 'STATUS',
orderPos: 'Order Positions:',
grid: {
number: 'Number',
title: 'Title',
status: ' STATUS',
price: 'Price',
comment: 'Comment'
}
}
};