
Security News
PolinRider: North Korea-Linked Supply Chain Campaign Expands Across Open Source Ecosystems
PolinRider expands across npm, Packagist, Go modules, and Chrome extensions, using hidden loaders to target developer environments.
react-g-lang
Advanced tools
npm install react-g-lang
import React from 'react';
import { SafeAreaView, Text,TouchableOpacity } from 'react-native';
// required
import { setLanguages, setLanguage, createObject } from 'g-lang'
import LangReloader, { lang } from 'react-g-lang'
// './languages' must be the same path as './node_modules'
// Please download 'https://github.com/lendland/g-lang/raw/master/g-lang-example.zip' and refer to directory/file structure.
setLanguages({
en: require('./languages/en'),
kor: require('./languages/default'),
})
const langObject = createObject(function (){
return {
content: lang.content
}
})
class App extends React.Component {
render(){
return (
<SafeAreaView style={{ flex: 1 }}>
<TouchableOpacity style={{ padding:20 }} onPress={()=>{
setLanguage('en')
}}>
<Text>to EN</Text>
</TouchableOpacity>
<TouchableOpacity style={{ padding:20 }} onPress={()=>{
setLanguage('kor')
}}>
<Text>to KOR</Text>
</TouchableOpacity>
<Text>{lang.title}</Text>
<Text>{langObject.content}</Text>
</SafeAreaView>
)
}
};
// Be sure to wrap your app with LangReloader.
export default LangReloader(App);
FAQs
Multi Language Module / 가장 편리한 다국어 모듈(자동완성 지원)
We found that react-g-lang 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.

Security News
PolinRider expands across npm, Packagist, Go modules, and Chrome extensions, using hidden loaders to target developer environments.

Security News
Open source attacks are accelerating as AI coding agents pull in dependencies faster, with less human review.

Research
/Security News
Malicious Chrome and Firefox extensions posed as free VPNs while stealing clipboard data through later extension updates.