@@ -617,6 +617,16 @@ class Nav extends React.PureComponent {
617617 />
618618 </ button >
619619 < ul className = "nav__dropdown" >
620+ < li className = "nav__dropdown-item" >
621+ < button
622+ onFocus = { this . handleFocusForLang }
623+ onBlur = { this . handleBlur }
624+ value = "de"
625+ onClick = { ( e ) => this . handleLangSelection ( e ) }
626+ >
627+ Deutsch
628+ </ button >
629+ </ li >
620630 < li className = "nav__dropdown-item" >
621631 < button
622632 onFocus = { this . handleFocusForLang }
@@ -647,6 +657,16 @@ class Nav extends React.PureComponent {
647657 Français
648658 </ button >
649659 </ li >
660+ < li className = "nav__dropdown-item" >
661+ < button
662+ onFocus = { this . handleFocusForLang }
663+ onBlur = { this . handleBlur }
664+ value = "hi"
665+ onClick = { ( e ) => this . handleLangSelection ( e ) }
666+ >
667+ हिन्दी
668+ </ button >
669+ </ li >
650670 < li className = "nav__dropdown-item" >
651671 < button
652672 onFocus = { this . handleFocusForLang }
@@ -661,10 +681,10 @@ class Nav extends React.PureComponent {
661681 < button
662682 onFocus = { this . handleFocusForLang }
663683 onBlur = { this . handleBlur }
664- value = "hi "
684+ value = "pt-BR "
665685 onClick = { ( e ) => this . handleLangSelection ( e ) }
666686 >
667- हिन्दी
687+ Português
668688 </ button >
669689 </ li >
670690 </ ul >
@@ -877,8 +897,6 @@ Nav.propTypes = {
877897 cmController : PropTypes . shape ( {
878898 tidyCode : PropTypes . func ,
879899 showFind : PropTypes . func ,
880- findNext : PropTypes . func ,
881- findPrev : PropTypes . func ,
882900 showReplace : PropTypes . func ,
883901 getContent : PropTypes . func
884902 } ) ,
0 commit comments