Skip to content
This repository was archived by the owner on Jun 7, 2023. It is now read-only.

Commit 4c229a5

Browse files
committed
i18n
1 parent 659b288 commit 4c229a5

File tree

2 files changed

+68
-0
lines changed

2 files changed

+68
-0
lines changed

.vscode/launch.json

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "filcnaplo",
9+
"cwd": "filcnaplo",
10+
"request": "launch",
11+
"type": "dart"
12+
},
13+
{
14+
"name": "filcnaplo (profile mode)",
15+
"cwd": "filcnaplo",
16+
"request": "launch",
17+
"type": "dart",
18+
"flutterMode": "profile"
19+
},
20+
{
21+
"name": "filcnaplo_desktop_ui",
22+
"cwd": "filcnaplo_desktop_ui",
23+
"request": "launch",
24+
"type": "dart"
25+
},
26+
{
27+
"name": "filcnaplo_desktop_ui (profile mode)",
28+
"cwd": "filcnaplo_desktop_ui",
29+
"request": "launch",
30+
"type": "dart",
31+
"flutterMode": "profile"
32+
},
33+
{
34+
"name": "filcnaplo_kreta_api",
35+
"cwd": "filcnaplo_kreta_api",
36+
"request": "launch",
37+
"type": "dart"
38+
},
39+
{
40+
"name": "filcnaplo_kreta_api (profile mode)",
41+
"cwd": "filcnaplo_kreta_api",
42+
"request": "launch",
43+
"type": "dart",
44+
"flutterMode": "profile"
45+
},
46+
{
47+
"name": "filcnaplo_mobile_ui",
48+
"cwd": "filcnaplo_mobile_ui",
49+
"request": "launch",
50+
"type": "dart"
51+
},
52+
{
53+
"name": "filcnaplo_mobile_ui (profile mode)",
54+
"cwd": "filcnaplo_mobile_ui",
55+
"request": "launch",
56+
"type": "dart",
57+
"flutterMode": "profile"
58+
}
59+
]
60+
}

fix-pub.sh

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/sh
2+
3+
cd filcnaplo && pwd && flutter clean && flutter pub get && cd ..
4+
cd filcnaplo_kreta_api && pwd && flutter clean && flutter pub get && cd ..
5+
cd filcnaplo_mobile_ui && pwd && flutter clean && flutter pub get && cd ..
6+
cd filcnaplo_desktop_ui && pwd && flutter clean && flutter pub get && cd ..
7+
8+
echo Fixed pub.

0 commit comments

Comments
 (0)