Ionic Native plugin texts not displaying System language

Hi team,

I have an app in ionic 3 having plugins like Camera and Image Picker (for Gallery).

Both works fine in iPhone/Android for taking pictures. But only 1 issue is that if Phone language is other than English (i.e. Hebrew), Gallery/Camera plugin UI texts like ‘OK’, ‘CANCEL’, ‘CAPTURE’ still shows in english keywords.

What can i do so that plugins use system languages?

Thanks,
Nirav

iOS projects only include English language, if you want to include more, use edit-config tag like this:

<edit-config target="CFBundleLocalizations" file="*-Info.plist" mode="overwrite">
  <array>
    <string>en</string>
    <string>es</string>
  </array>
</edit-config>
1 Like