File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -66,19 +66,19 @@ def get_data(
66
66
if repo :
67
67
completion , translators_data = get_completion (clones_dir , repo )
68
68
visitors_num = get_number_of_visitors (language .code ) if built else 0
69
- issues = build_warnings .number (clones_dir , repo , language .code )
69
+ warnings = build_warnings .number (clones_dir , repo , language .code )
70
70
else :
71
71
completion = 0.0
72
72
translators_data = TranslatorsData (0 , False )
73
73
visitors_num = 0
74
- issues = 0
74
+ warnings = 0
75
75
return LanguageProjectData (
76
76
language ,
77
77
repo ,
78
78
completion ,
79
79
translators_data ,
80
80
visitors_num ,
81
- issues ,
81
+ warnings ,
82
82
built ,
83
83
in_switcher = languages_built .get (language .code ),
84
84
uses_platform = language .code in contribute .pulling_from_transifex ,
@@ -93,7 +93,7 @@ class LanguageProjectData:
93
93
completion : float
94
94
translators : TranslatorsData
95
95
visitors : int
96
- issues : int
96
+ warnings : int
97
97
built : bool
98
98
in_switcher : bool | None
99
99
uses_platform : bool
Original file line number Diff line number Diff line change 48
48
{{ project.translators.number }}
49
49
{% if project .translators .link %} </a >{% endif %}
50
50
</td >
51
- <td data-label =" issues " ><a href =" warnings-{{ project.language.code }}.txt" target =" _blank" >{{ project.issues }}</a ></td >
51
+ <td data-label =" warnings " ><a href =" warnings-{{ project.language.code }}.txt" target =" _blank" >{{ project.warnings }}</a ></td >
52
52
<td data-label =" completion" >
53
53
<div class =" progress-bar" style =" width : {{ project.completion }}%;" >{{ "{:.2f}".format(project.completion) }}%</div >
54
54
<div class =" progress-bar-outer-label" >{{ "{:.2f}".format(project.completion) }}%</div >
You can’t perform that action at this time.
0 commit comments