有没有办法在使用 expo 的 react-native 中根据电话语言翻译上下文菜单?

Is there any way to translate context menu according to phone language in react-native using expo?(有没有办法在使用 expo 的 react-native 中根据电话语言翻译上下文菜单?)
本文介绍了有没有办法在使用 expo 的 react-native 中根据电话语言翻译上下文菜单?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

所以我使用 i18n 库来本地化我的应用程序的语言并且没有问题,除了仅在 iOS 中的上下文菜单中.即使我已经改变了像日语这样的语言,它总是会显示像英语这样的(选择、全选等)

So I use i18n library to localize my app's languages and theres no problem about it, except in context menu only in iOS. Even though I already change the language like Japanese it will always show English like (Select, Select All, etc.)

https://user-images.githubusercontent.com/47558402/66972776-41d34100-f0c8-11e9-850c-a2aa6b913782.png

我们有同样的问题:如何翻译上下文菜单反应原生?

但我在 expo 中使用 react-native.

but I'm using react-native with expo.

谢谢.

推荐答案

添加到app.json:

Add to app.json:

  1. 添加空的本地化文件(https://docs.expo.io/versions/latest/distribution/app-stores/#localizing-system-dialogs-on-ios):

语言环境":{"zh": "./languages/zh.json",ru":./languages/ru.json"},

"locales": { "zh": "./languages/zh.json", "ru": "./languages/ru.json" },

2.

 "ios": {
     "infoPlist": {
       "CFBundleLocalizations" : ["zh", "ru"],
       "CFBundleDevelopmentRegion" : "zh"
      }
    }

这篇关于有没有办法在使用 expo 的 react-native 中根据电话语言翻译上下文菜单?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Why local notification is not firing for UNCalendarNotificationTrigger(为什么没有为UNCalendarNotificationTrigger触发本地通知)
iOS VoiceOver functionality changes with Bundle Identifier(IOS画外音功能随捆绑包标识符而变化)
tabbar middle tab out of tabbar corner(选项卡栏中间的选项卡角外)
Pushing UIViewController above UITabBar(将UIView控制器推送到UITabBar上方)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)