Error: “app_name” is not translated in af

后端 未结 11 539
灰色年华
灰色年华 2021-01-30 16:21

I am new at Android coding and this forum. When I am trying to run the project to test it I am getting the following error:-

\"app_name\" is not translate

相关标签:
11条回答
  • 2021-01-30 16:32

    The error is thrown by a check called lint which checks every dependency and guesses you want your app to be translated into all language the libraries you use are translated, in case of maps basically everyone. There is some setting for lint in the Eclipse preferences(Missing Translation). You could completely turn lint off or configure it so it ignores the translation warnings.

    0 讨论(0)
  • 2021-01-30 16:34

    On Windows,

    Window -> Preferences -> Android -> Lint Error Checking Preferences Window

    Run full error check must be unchecked

    0 讨论(0)
  • 2021-01-30 16:37

    You can write translation of the text to "Translations editor".

    0 讨论(0)
  • 2021-01-30 16:46

    Just click the Checkbox dropdown icon near AVD Manager . Then Select Clear Lint Warnings. That will fix it.

    0 讨论(0)
  • 2021-01-30 16:47

    You should disable the : "Run full error check when exporting app and abort if fatal errors are found".

    you can disable it from option in :

    "Window" > "Preferences" > "Android" > "Lint Error Checking"

    You should be able to disable

    "Run full error check when exporting app and abort if fatal errors are found".

    0 讨论(0)
  • 2021-01-30 16:52

    In your ADT go to window->Preferences->Android->Lint Error Checking

    Find there MissingTranslation and change its Severity to Warning.

    0 讨论(0)
提交回复
热议问题