ionic-team / cordova-plugin-ionic-keyboard

Keyboard Plugin for Cordova
Other
193 stars 178 forks source link

Locale accessory bar #75

Closed miroshnichenkoYaroslav closed 5 years ago

miroshnichenkoYaroslav commented 5 years ago

Can I place my value instead of a button "Done"? Depending on the system language

jcesarmobile commented 5 years ago

It's translated automatically if your project support different languages.

If you want to support multiple languages you have to add the CFBundleLocalizations key with an array of supported languages in the Info.plist file, you can do it manually or using edit-config or config-file tags in config.xml like this:

<config-file parent="CFBundleLocalizations" target="*-Info.plist">
    <array>
        <string>en</string>
        <string>es</string>
    </array>
</config-file>