Skip to content

Releases: zoontek/react-native-localize

3.7.0

22 Feb 18:53
14fd6c3

Choose a tag to compare

  • Export a dedicated typed function for Expo dynamic configuration (app.config.ts):
import type { ConfigContext, ExpoConfig } from "expo/config";
import localize from "react-native-localize/expo"; // use `require` in app.config.js

export default ({ config }: ConfigContext): ExpoConfig => ({
  plugins: [
    localize({
      locales: ["en", "fr"], // or { android: ["en"], ios: ["en", "fr"] }
    }),
  ],
});

3.6.1

27 Dec 21:35
b2da3ad

Choose a tag to compare

  • Fix Expo plugin generated resourceConfigurations format (closes #311)

3.6.0

28 Oct 09:50
8140894

Choose a tag to compare

  • Add SSR support (#309)

3.5.4

10 Oct 11:56
a54c8ff

Choose a tag to compare

  • Preserves existing Info.plist settings (Expo plugin) by @huextrat in #308

New Contributors

3.5.3

09 Oct 08:08
920c165

Choose a tag to compare

New Contributors

3.5.2

17 Aug 07:03
99010b9

Choose a tag to compare

  • Fix iOS locales isRTL value when its solely based on scriptCode

3.5.1

11 Jul 21:32
7912bf5

Choose a tag to compare

  • Set @expo/config-plugins as peer dependency

3.5.0

11 Jul 09:47
e89f360

Choose a tag to compare

3.4.2

27 Jun 08:53
e77bd8d

Choose a tag to compare

  • Update dependencies and example app to react-native 0.80 by @zoontek in #299

3.4.1

09 Jan 14:14
fd5500f

Choose a tag to compare

  • Don't include react-native-builder-bob emitted package.json in the release (fix #289)
  • Add openAppLanguageSettings to the test mock