@@ -37,20 +37,18 @@ def get_display_icon_classes(self):
37
37
# Default classes that apply to all the notifications
38
38
classes = [
39
39
"fas" ,
40
- "fa-user-group" ,
41
- "fa-swap-opacity" ,
42
40
]
43
41
44
42
if self .type == ERROR :
45
- classes .append ("fa-exclamation " )
43
+ classes .append ("fa-circle-xmark " )
46
44
if self .type == WARNING :
47
- classes .append ("fa-triangle -exclamation" )
45
+ classes .append ("fa-circle -exclamation" )
48
46
if self .type == INFO :
49
- classes .append ("fa-???? " )
47
+ classes .append ("fa-circle-info " )
50
48
if self .type == NOTE :
51
- classes .append ("fa-???? " )
49
+ classes .append ("fa-circle-info " )
52
50
if self .type == TIP :
53
- classes .append ("fa-???? " )
51
+ classes .append ("fa-circle-info " )
54
52
55
53
return " " .join (classes )
56
54
@@ -111,7 +109,7 @@ def get_rendered_body(self):
111
109
header = _ ("Build cancelled manually." ),
112
110
body = _ (
113
111
"""
114
- The user has cancel this build.
112
+ The user has cancelled this build.
115
113
"""
116
114
),
117
115
type = INFO ,
@@ -121,8 +119,8 @@ def get_rendered_body(self):
121
119
header = _ ("Build skipped manually." ),
122
120
body = _ (
123
121
"""
124
- One of the commands exited with code 183
125
- and the build was skipped.
122
+ This build was skipped because
123
+ one of the commands exited with code 183
126
124
"""
127
125
),
128
126
type = INFO ,
@@ -132,7 +130,7 @@ def get_rendered_body(self):
132
130
header = _ ("Builds are temporary disabled for this project." ),
133
131
body = _ (
134
132
"""
135
- This is due to an excess usage of our resources.
133
+ This is due to excessive usage of our resources.
136
134
Please, contact our support team if you think this is a mistake
137
135
and builds should be re-enabled.
138
136
"""
@@ -144,8 +142,8 @@ def get_rendered_body(self):
144
142
header = _ ("Concurrency limit reached" ),
145
143
body = _ (
146
144
"""
147
- Your project/ organization/ user is currently building the maximum concurrency builds allowed ({limit}).
148
- It will automatically retried in 5 minutes.
145
+ Your project, organization, or user is currently building the maximum concurrency builds allowed ({limit}).
146
+ It will automatically retry in 5 minutes.
149
147
"""
150
148
),
151
149
type = WARNING ,
@@ -253,11 +251,11 @@ def get_rendered_body(self):
253
251
),
254
252
Message (
255
253
id = BuildUserError .FILE_TOO_LARGE ,
256
- header = _ ("There is at least one file size that exceeds the limits " ),
254
+ header = _ ("There is at least one file that exceeds the size limit " ),
257
255
body = _ (
258
256
"""
259
257
A file from your build process is too large to be processed by Read the Docs.
260
- Please ensure no files generated are larger than 1GB.
258
+ Please ensure no generated files are larger than 1GB.
261
259
"""
262
260
),
263
261
type = ERROR ,
0 commit comments