File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
src/components/LanguagePicker Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -193,9 +193,15 @@ const LanguagePickerFooter = ({ onTranslationProgramClick }) => {
193
193
< div className = "sticky bottom-0 flex border-t-2 border-primary bg-primary-low-contrast p-0 pb-1 pt-1" >
194
194
< div className = "flex w-full max-w-sm items-center justify-between px-4" >
195
195
< div className = "flex min-w-0 flex-col items-start" >
196
- < p className = "overflow-hidden text-ellipsis whitespace-nowrap text-xs font-bold text-body" >
197
- Translate to { t ( `language-${ locale } ` ) }
198
- </ p >
196
+ { locale == "en" ? (
197
+ < p className = "overflow-hidden text-ellipsis whitespace-nowrap text-xs font-bold text-body" >
198
+ Translate Ethereum.org
199
+ </ p >
200
+ ) : (
201
+ < p className = "overflow-hidden text-ellipsis whitespace-nowrap text-xs font-bold text-body" >
202
+ Translate to { t ( `language-${ locale } ` ) }
203
+ </ p >
204
+ ) }
199
205
< p className = "text-xs text-body" >
200
206
{ t ( "page-languages-recruit-community" ) }
201
207
</ p >
You can’t perform that action at this time.
0 commit comments