如何翻译字符串数组中的项目?

How to translate items in a String Array?

我有一些字符串数组和其中的许多字符串项,我无法使用翻译编辑器进行翻译。

<string-array name="miocene_infos_list">
    <item>The Miocene era was mostly characterized by arrival of a bizarre array of mammalian megafauna. Astrapotherium was a
        hooved ungulate that looked like a cross between an elephant, a tapir and a rhinoceros. It was a distance relative
        of horse. It had short, prehensile trunk and powerful tusks. It\'s hind limbs were significantly weaker than the fore limbs.
        The nostrils of Astrapotherium were also set unusually high which shows that this prehistoric herbivore may have adapted
        partly amphibious lifestyle, like a modern hippopotamus. The Greek meaning for Astrapotherium was \' Lighting Beast \' which
        is inappropriate for such an animal that might have been a slow plant eater.</item>

    <item>Barbourofelis was the only member of its Sabre Tooth Cats breed to colonize late Miocene North America. This megafauna
        mammal possessed some of the largest canines of any saber toothed cat. This cat was heavily muscled and was big as the modern
        Lion. These cats might have walked in a Bear like fashion.</item>

    <item>The largest prehistoric dog that ever lived, Epicyon was a true \'Canid\' and belonged to the same speiceis as wolves,
        hyenas and modern dogs. Some of the largest species of Epicyon weighed more than a full grown human. I had unusually powerful
        jaws and teeth. Due to this reason, it\'s head looked more like that of a big cat than that of a dog or wolf. It may have
        hunted alone or in packs and also might have fed on dead carcasses. All of the species of Epicyon were discovered in
        western North America</item>

    <item>Brygmophyseter was an opportunistic predator, chomping down on penguins, sharks, seals and even other prehistoric whales.
        was pretty large in size. Brygmophyseter would also have lived in social groups called pods, and probably hunted in packs,
        like modern Orcas. Brygmophyseter was likely among the apex predators of its time. It teeth were 14 cm long. It may have
        also possessed Sonar capabilities to detect underwater preys. Its large head might have been used to ram opponents during
        fights.</item>

    <item>
        Megalodon was the largest prehistoric shark and also the largest marine predator in the history of planet. It outweighs ancient reptiles like
        Liopleurodon and Kronosaurus. It may have looked like an over sized Great White Shark. It fed on dolphins, squids, fish, and even giant turtles.
        Megalodon may even have attacked the giant whale Leviathan. Megalodon\'s biting power was very large and delivered 1.8 tons of force. This amount of
        force is enough to cursh the skull of a prehistoric whale as easy as a a grape. The teeth of this prehistoric shark were over half a foot long,
        serrated, and heart-shaped. No wonder why it is named Big Tooth. However there is no evidence on how this enormous creature was vanished off from
        the face of Earth. What a wonder it is.
    </item>
</string-array>

这些项目不会出现在翻译编辑器中 window。那么我该如何翻译它们呢?还有其他办法吗?

res/values/array.xml
res/values-fr/array.xml
res/values-ja/array.xml

根据this

在 res 中创建不同的文件夹结构 像 价值观 valuse-fr values-sv 如上所述为您要支持的语言创建值文件夹。 将 strings.xml 放入每个文件夹中,其中包含该特定语言中的值。

现在,只要您在 xml 中使用它们,就可以使用 @string/string_name 访问它们。 从 java 访问它们时使用 context.getString(R.string.string_name).

会起作用的。希望对你有帮助。