
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@skippay/capacitor-localization-settings
Advanced tools
Capacitor module to expose per-app language preferences API on iOS and Android.
Capacitor module to expose per-app language preferences API on iOS and Android.
Capacitor v5
npm install @skippay/capacitor-localization-settings
npx cap sync
getLanguage() => Promise<{ value: string; }>
Returns: Promise<{ value: string; }>
setLanguage(options: { value: string; }) => Promise<{ value: string; }>
| Param | Type |
|---|---|
options | { value: string; } |
Returns: Promise<{ value: string; }>
To get started, you'll need to define the languages that your app supports.
Open your project in XCode, in Project Navigator select project, go to Info tab, and
under Localizations section add languages you want to support.

Next, you need to create a Localization.strings file.

Select newly created file and on the right side of the screen, under Localizations selection press Localize. Confirm
the popup.

Lastly, you need to select all elements in the section form previous step.
Create new file in android/app/src/main/res/xml directory named locales_config.xml. and define supported languages:
<?xml version="1.0" encoding="utf-8"?>
<locale-config xmlns:android="http://schemas.android.com/apk/res/android">
<locale android:name="en"/>
<locale android:name="pl"/>
<locale android:name="fr"/>
</locale-config>
Then, open android/app/src/main/AndroidManifest.xml and add following line to the Application tag:
<application
android:name=".MainApplication"
android:localeConfig="@xml/locales_config" <!-- this line -->
>
This plugin is heavily inspired by react-native-localization-settings plugin.
FAQs
Capacitor module to expose per-app language preferences API on iOS and Android.
We found that @skippay/capacitor-localization-settings demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.