Android: Localized standard Text for example OK, CANCEL and GPS not activated - for example?

android, android-layout, localization

Solution

The `android.R.string` contains the values used by the platform.

It would be better to define your own values as there have been inconsistencies reported with the `android.R.string` values. Read about it here

Problem

I wish to localize my app and of course the text that is specific to my app i will need to localize but does some standard resources exist for standard Text like the OK and CANCEL and GPS not activated etc? Or do i have to localize absolutely everything? Is there is some global text resources that ships with android how do i gain access to it? Thanks in advance

Original source