Skip to content

Commit

Permalink
keep consistent messages, with fullstop at end
Browse files Browse the repository at this point in the history
  • Loading branch information
proddy committed Oct 16, 2024
1 parent c7b565f commit 3f1c30c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion interface/src/app/main/CustomEntities.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ const CustomEntities = () => {
<SectionContent>
{blocker ? <BlockNavigation blocker={blocker} /> : null}
<Box mb={2} color="warning.main">
<Typography variant="body1">{LL.ENTITIES_HELP_1()}</Typography>
<Typography variant="body1">{LL.ENTITIES_HELP_1()}.</Typography>
</Box>

{renderEntity()}
Expand Down
2 changes: 1 addition & 1 deletion interface/src/app/main/Help.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ const Help = () => {

<Box p={2} color="warning.main">
<Typography mb={1} variant="body1">
{LL.HELP_INFORMATION_4()}
{LL.HELP_INFORMATION_4()}.
</Typography>
<Button
startIcon={<DownloadIcon />}
Expand Down
2 changes: 1 addition & 1 deletion interface/src/app/main/Modules.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ const Modules = () => {
return (
<>
<Box mb={2} color="warning.main">
<Typography variant="body1">{LL.MODULES_DESCRIPTION()}</Typography>
<Typography variant="body1">{LL.MODULES_DESCRIPTION()}.</Typography>
</Box>
<Table
data={{ nodes: modules }}
Expand Down
4 changes: 2 additions & 2 deletions interface/src/app/settings/DownloadUpload.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ const DownloadUpload = () => {
</Typography>

<Typography mb={1} variant="body1" color="warning">
{LL.DOWNLOAD_SETTINGS_TEXT()}
{LL.DOWNLOAD_SETTINGS_TEXT()}.
</Typography>
<Grid container spacing={1}>
<Button
Expand Down Expand Up @@ -269,7 +269,7 @@ const DownloadUpload = () => {
</Typography>

<Box color="warning.main" sx={{ pb: 2 }}>
<Typography variant="body1">{LL.UPLOAD_TEXT()}</Typography>
<Typography variant="body1">{LL.UPLOAD_TEXT()}.</Typography>
</Box>

<SingleUpload doRestart={doRestart} />
Expand Down

0 comments on commit 3f1c30c

Please sign in to comment.