File tree Expand file tree Collapse file tree 4 files changed +31
-7
lines changed Expand file tree Collapse file tree 4 files changed +31
-7
lines changed Original file line number Diff line number Diff line change 30
30
- Dieter Plaetinck - < https://github.com/Dieterbe >
31
31
- Dennis van Peer - < https://github.com/Denpeer >
32
32
- sizzlesloth - < https://github.com/sizzlesloth >
33
+ - Xianglin Zeng - < https://github.com/FutureYL3 >
33
34
34
35
## Translators
35
36
Original file line number Diff line number Diff line change 891
891
"done": "Done",
892
892
"overallChangeWeight": "Overall change",
893
893
"@overallChangeWeight": {
894
- "description": "Overall change in weight"
894
+ "description": "Overall change in weight, added for localization "
895
895
},
896
896
"goalTypeMeals": "From meals",
897
+ "@goalTypeMeals": {
898
+ "description": "added for localization of Class GoalType's filed meals"
899
+ },
897
900
"goalTypeBasic": "Basic",
901
+ "@goalTypeBasic": {
902
+ "description": "added for localization of Class GoalType's filed basic"
903
+ },
898
904
"goalTypeAdvanced": "Advanced",
905
+ "@goalTypeAdvanced": {
906
+ "description": "added for localization of Class GoalType's filed advanced"
907
+ },
899
908
"indicatorRaw": "raw",
900
- "indicatorAvg": "avg"
909
+ "@indicatorRaw": {
910
+ "description": "added for localization of Class Indicator's field text"
911
+ },
912
+ "indicatorAvg": "avg",
913
+ "@indicatorAvg": {
914
+ "description": "added for localization of Class Indicator's field text"
915
+ }
901
916
}
Original file line number Diff line number Diff line change 252
252
"@delete": {},
253
253
"loadingText": "加载中...",
254
254
"@loadingText": {
255
- "description": "Text to show when entries are being loaded in the background: Loading..."
255
+ "description": "Text to show when entries are being loaded in the background: Loading..., changed from \"加载\" to \"加载中\" "
256
256
},
257
257
"edit": "编辑",
258
258
"@edit": {},
326
326
},
327
327
"weight": "体重",
328
328
"@weight": {
329
- "description": "The weight of a workout log or body weight entry"
329
+ "description": "The weight of a workout log or body weight entry, changed from \"重量\" to \"体重\""
330
330
},
331
331
"anErrorOccurred": "出错了!",
332
332
"@anErrorOccurred": {},
350
350
"@save": {},
351
351
"name": "名称",
352
352
"@name": {
353
- "description": "Name for a workout or nutritional plan"
353
+ "description": "Name for a workout or nutritional plan, changed from \"名\" to \"名称\" "
354
354
},
355
355
"description": "描述",
356
356
"@description": {},
698
698
"indicatorRaw": "原始值",
699
699
"indicatorAvg": "平均值",
700
700
"textPromptTitle": "准备就绪?",
701
- "textPromptSubheading": "点击右下角按钮开始"
701
+ "@textPromptTitle": {
702
+ "description": "Title for the text prompt"
703
+ },
704
+ "textPromptSubheading": "点击右下角按钮开始",
705
+ "@textPromptSubheading": {
706
+ "description": "Subheading for the text prompt"
707
+ }
702
708
}
Original file line number Diff line number Diff line change @@ -37,7 +37,9 @@ class MeasurementOverallChangeWidget extends StatelessWidget {
37
37
? '-'
38
38
: '' ;
39
39
40
- return Text ('${AppLocalizations .of (context ).overallChangeWeight } $prefix ${delta .abs ().toStringAsFixed (1 )} $_unit ' );
40
+ // ignore: prefer_interpolation_to_compose_strings
41
+ return Text (AppLocalizations .of (context).overallChangeWeight +
42
+ '$prefix ${delta .abs ().toStringAsFixed (1 )} $_unit ' );
41
43
}
42
44
}
43
45
You can’t perform that action at this time.
0 commit comments