@@ -107,7 +107,7 @@ export function OtherSettings(props: Readonly<Props>): React.JSX.Element {
107
107
>
108
108
< FormattedMessage
109
109
id = "account.other-settings.global_banner"
110
- defaultMessage = { `<strong>Show announcement banner </strong>: only shows up if there is a
110
+ defaultMessage = { `<strong>Show Announcement Banner </strong>: only shows up if there is a
111
111
message` }
112
112
/>
113
113
</ Checkbox >
@@ -122,7 +122,7 @@ export function OtherSettings(props: Readonly<Props>): React.JSX.Element {
122
122
>
123
123
< FormattedMessage
124
124
id = "account.other-settings.time_ago_absolute"
125
- defaultMessage = { `Display <strong>timestamps as absolute points in time</strong>
125
+ defaultMessage = { `<strong>Display Timestamps as absolute points in time</strong>
126
126
instead of relative to the current time` }
127
127
/>
128
128
</ Checkbox >
@@ -195,7 +195,7 @@ export function OtherSettings(props: Readonly<Props>): React.JSX.Element {
195
195
>
196
196
< FormattedMessage
197
197
id = "account.other-settings.mask_files"
198
- defaultMessage = { `<strong>Mask files :</strong> grey out files in the files viewer
198
+ defaultMessage = { `<strong>Mask Files :</strong> grey out files in the files viewer
199
199
that you probably do not want to open` }
200
200
/>
201
201
</ Checkbox >
@@ -666,6 +666,15 @@ export function OtherSettings(props: Readonly<Props>): React.JSX.Element {
666
666
{ render_hide_project_popovers ( ) }
667
667
{ render_hide_file_popovers ( ) }
668
668
{ render_hide_button_tooltips ( ) }
669
+ < Checkbox
670
+ checked = { ! ! props . other_settings . get ( "hide_navbar_balance" ) }
671
+ onChange = { ( e ) => on_change ( "hide_navbar_balance" , e . target . checked ) }
672
+ >
673
+ < FormattedMessage
674
+ id = "account.other-settings.hide_navbar_balance"
675
+ defaultMessage = { `<strong>Hide Account Balance</strong> in navigation bar` }
676
+ />
677
+ </ Checkbox >
669
678
{ render_no_free_warnings ( ) }
670
679
< Checkbox
671
680
checked = { ! ! props . other_settings . get ( "disable_markdown_codebar" ) }
0 commit comments