Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
react-redux-translate
Advanced tools
#react-redux-translate
*Easy Internationalization for your react app
$ npm i --save react-redux-translate
Create Translate instance in any place within the src directory.
import React from 'react';
import { connect } from 'react-redux';
import translate from 'react-redux-translate';
let T = translate('language', 'languageKeyInState', 'pathToI18nDirectoryFromProjectRoot');
export default T = connect(state => ({languageKeyInState: state.languageKeyInState}))(T);
If pure string needed to insert as the function argument
export const funcT = ({keys, insertions = []}) => <T keys={keys} insertions={insertions} />;
Keep in mind
1. 'language' must correspond name of the JSON file in i18n directory.
2. 'languageKeyInState' must correspond name language key in the redux state.
3. 'pathToI18nDirectoryProjectRoot' path form root of the project (the same level where is the node-modules directory) to 'i18n' directory.
Import T component where is needed
import T from 'pathToYourTranslateInstance';
Insert as React Component with required properties
<div><T keys="home.title" /><div>
'Keys' property can be either string with dot delimiter or array of string.
If case you have some words in the text, which you will not translate you could use insertions
property and add placeholders ${}
to the source string.
The insertions
must be an array of string.
For example, if you have en-EN
JSON file with property
`"home": {"event": "Meet ${} and ${} at GitHub" }`
and you set follow params to the <T/>
component
`<div><T keys="home.event" insertions={['Mary', 'John']} /><div>`
you will get "Meet Mary and John at GitHub
" string inside div
.
Of cause you can add any HTML tags with class attribute:
"home": "<a href='some-link' class="this-string-will-blue-as-link">Some text <i>some text with italic style</i></span>"
You don't need to do any special to insert HTML tags into translation string!
FAQs
easy internationalization with react-redux
We found that react-redux-translate demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.