This repository was archived by the owner on Feb 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 228
Expand file tree
/
Copy pathstatic_strings_app.js
More file actions
62 lines (55 loc) · 1.81 KB
/
static_strings_app.js
File metadata and controls
62 lines (55 loc) · 1.81 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
/**
* The purpose of this file is to store static strings of 'app', 'static' sections which are not passed in any localize() call
* i.e. those API strings that are not translated, so we handle their translation process here
*
* NOTE: Doesn't need to put a string here if it is the first argument in a localize() call
*/
module.exports = [
// -----------------------------
// Commented translation strings
// -----------------------------
'All markets are closed now. Please try again later.',
// ---------------------------------------------
// API strings ignored by autogenerated localize
// ---------------------------------------------
// NOTE: although some of these strings already exist in extracted_strings_app.js,
// we keep all the API strings that need translation here, to make sure that we won't miss them in case they are removed from js code
// action_type from statement
'Buy',
'Deposit',
'Sell',
'Withdrawal',
// longcode from statement
'demo credit to account',
// action from login_history
'login',
'logout',
// contract_category from contracts_for
'Asians',
'Call Spread/Put Spread',
'Digits',
'Ends Between/Ends Outside',
'Even/Odd',
'High/Low Ticks',
'Higher/Lower',
'In/Out',
'Lookbacks',
'Matches/Differs',
'Over/Under',
'Reset Call/Reset Put',
'Rise/Fall',
'Stays Between/Goes Outside',
'Touch/No Touch',
'Up/Down',
// events[descrip] and events[dates] from trading_times
'Christmas Day',
'Closes early (at 18:00)',
'Closes early (at 21:00)',
'Fridays',
'New Year\'s Day',
'today',
'today, Fridays',
// error messages
'There was a problem accessing the server.',
'There was a problem accessing the server during purchase.',
];