Skip to content
This repository was archived by the owner on Jan 2, 2025. It is now read-only.

Commit beaf35e

Browse files
minor fixes (#767)
1 parent 922e847 commit beaf35e

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

client/src/locales/en.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"Welcome to React": "Welcome to React",
33
"Documentation": "Documentation",
4-
"Showing # result_zero": "Showing # result_zero",
5-
"Showing # result_one": "Showing # result_one",
6-
"Showing # result_other": "Showing # result_other",
4+
"Showing # result_zero": "There were no matches for your search. Try different combinations!",
5+
"Showing # result_one": "Showing {{count}} result",
6+
"Showing # result_other": "Showing {{count}} results",
77
"bloop crashed unexpectedly": "bloop crashed unexpectedly",
88
"By submitting this crash report you agree to send it to bloop for investigation.": "By submitting this crash report you agree to send it to bloop for investigation.",
99
"Close": "Close",

client/src/mappers/conversation.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export const mapLoadingSteps = (
77
displayText:
88
s.type === 'PROC'
99
? t(`Reading`) +
10+
' ' +
1011
`${s.content.length > 20 ? '...' : ''}${s.content.slice(-20)}`
1112
: s.content,
1213
}));

0 commit comments

Comments
 (0)