-
Notifications
You must be signed in to change notification settings - Fork 273
/
localazy.json
69 lines (69 loc) · 2.15 KB
/
localazy.json
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
63
64
65
66
67
68
69
{
"upload": {
"type": "android",
"deprecate": "project",
"files": [
{
"pattern": "stream-chat-android-ui-common/src/main/res/values/strings*.xml",
"file": "strings-ui-common.xml"
},
{
"pattern": "stream-chat-android-client/src/main/res/values/strings*.xml",
"file": "strings-client.xml"
},
{
"pattern": "stream-chat-android-ui-components/src/main/res/values/strings*.xml"
},
{
"pattern": "stream-chat-android-compose/src/main/res/values/strings*.xml",
"file": "strings-compose.xml"
},
{
"group": "client-all",
"pattern": "stream-chat-android-client/src/main/res/values-*/strings*.xml",
"lang": "${autodetectLang}",
"file": "strings-client.xml"
},
{
"group": "ui-common-all",
"pattern": "stream-chat-android-ui-common/src/main/res/values-*/strings*.xml",
"lang": "${autodetectLang}",
"file": "strings-ui-common.xml"
},
{
"group": "ui-components-all",
"pattern": "stream-chat-android-ui-components/src/main/res/values-*/strings*.xml",
"lang": "${autodetectLang}"
},
{
"group": "compose-all",
"pattern": "stream-chat-android-compose/src/main/res/values-*/strings*.xml",
"lang": "${autodetectLang}",
"file": "strings-compose.xml"
}
]
},
"download": {
"files": [
{
"stop": true,
"conditions": "equals: ${file}, strings-client.xml",
"output": "stream-chat-android-client/src/main/res/values-${langAndroidRes}/strings.xml"
},
{
"stop": true,
"conditions": "equals: ${file}, strings-ui-common.xml",
"output": "stream-chat-android-ui-common/src/main/res/values-${langAndroidRes}/strings.xml"
},
{
"stop": true,
"conditions": "equals: ${file}, strings-compose.xml",
"output": "stream-chat-android-compose/src/main/res/values-${langAndroidRes}/strings.xml"
},
{
"stop": true,
"output": "stream-chat-android-ui-components/src/main/res/values-${langAndroidRes}/${file}"
}
]
}
}