-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
29 lines (28 loc) · 1012 Bytes
/
config.js
File metadata and controls
29 lines (28 loc) · 1012 Bytes
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
/**
* Created by rplees on 3/10/16.
*/
var config = {
'userAgent': 'ReactNative GIT@OSC',
}
const constant = {
code_push: {
STAGING_KEY : "dLhV8nYL7syV0OPIOrCwbnKSwNEY4k55Guhpl",
PRODUCTION_KEY : "bpmwzaJmrsqlu_pMHgmzdep8no7b4k55Guhpl",
},
scene: {
project: {key: "project", value: "项目"},
famous: {key: "famous", value: "发现"},
personal: {key: "personal", value: "Me"},
login: {key: "login", value: "登陆"},
search: {key: "search", value: "搜索项目"},
create_issue: {key: "create_issue", value: "创建Issue"},
shake: {key: "shake", value: "摇一摇"},
feedback: {key: "feedback", value: "意见反馈"},
settings: {key: "settings", value: "设置"},
my_profile: {key: "my_profile", value: "我的资料"},
repo_detail: {key: "repo_detail", value: "项目详情"},
web: {key: "web", value: "web"},
}
}
module.exports = config;
module.exports.constant = constant;