mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
Do not transate on seed phrases
This commit is contained in:
parent
8b5ac9340b
commit
aa95e5a4c8
@ -12,7 +12,7 @@ class ExportTextContainer extends Component {
|
||||
return (
|
||||
h('.export-text-container', [
|
||||
h('.export-text-container__text-container', [
|
||||
h('.export-text-container__text', text),
|
||||
h('.export-text-container__text.notranslate', text),
|
||||
]),
|
||||
h('.export-text-container__buttons-container', [
|
||||
h('.export-text-container__button.export-text-container__button--copy', {
|
||||
|
@ -52,7 +52,7 @@ class DraggableSeed extends Component {
|
||||
return connectDropTarget(connectDragSource(
|
||||
<div
|
||||
key={index}
|
||||
className={classnames('btn-secondary confirm-seed-phrase__seed-word', className, {
|
||||
className={classnames('btn-secondary notranslate confirm-seed-phrase__seed-word', className, {
|
||||
'confirm-seed-phrase__seed-word--selected btn-primary': selected,
|
||||
'confirm-seed-phrase__seed-word--dragging': isDragging,
|
||||
'confirm-seed-phrase__seed-word--empty': !word,
|
||||
|
@ -73,7 +73,7 @@ export default class RevealSeedPhrase extends PureComponent {
|
||||
return (
|
||||
<div className="reveal-seed-phrase__secret">
|
||||
<div className={classnames(
|
||||
'reveal-seed-phrase__secret-words',
|
||||
'reveal-seed-phrase__secret-words notranslate',
|
||||
{ 'reveal-seed-phrase__secret-words--hidden': !isShowingSeedPhrase }
|
||||
)}>
|
||||
{ seedPhrase }
|
||||
|
Loading…
Reference in New Issue
Block a user