多语言 button

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了多语言 button相关的知识,希望对你有一定的参考价值。

 

技术分享

 

/container/中 ,因为 redux
import
React from ‘react‘; import {connect} from ‘react-redux‘; import ButtonComponent from ‘scratch-gui/src/components/button/button.jsx‘; import {FormattedMessage} from ‘react-intl‘; class ArduinoButton extends React.Component { render () { const word = ( <FormattedMessage defaultMessage={this.props.message.arduino} description="Button to record a sound in the editor tab" id="arduino" /> ); const { ...props } = this.props; return ( <ButtonComponent {...props} > {word} </ButtonComponent> ); } } const mapStateToProps = state => ({ message: state.intl.messages }); module.exports = connect( mapStateToProps )(ArduinoButton);

 


以上是关于多语言 button的主要内容,如果未能解决你的问题,请参考以下文章

我应该改变啥来使用 wpf 准备多语言 wpf 应用程序

从 .cs 部分代码访问多语言资源

分享两种实现Winform程序的多语言支持的解决方案

低代码平台多语言国际化(i18n)技术方案

php WPML多语言短代码

在WinForm应用程序中快速实现多语言的处理--开发框架模块的整合