"is translated here but not found in default locale" error in strings.xml with translatable="false"
Asked Answered
S

19

158

Here is my values\strings.xml (the default file) and everything is self explanatory: enter image description here

My question(s):

  1. How can it be "not found in default locale" if I am editing the default locale (values\strings.xml)?
  2. How can it be a lint translation error if I set translatable="false"? In the values-pl\strings.xml (and values-ru, values-iw folders as well) the strings don't exist even? it shouldn't anyway.
  3. I can't seem to understand why I don't get the error for the Russian string.

(I would show the values-ru\string.xml or values-pl\string.xml here but there is nothing there of interest, since the strings are missing anyway...)

Spurn answered 25/4, 2018 at 17:2 Comment(6)
If this is something that happens every now and then, just perform the usual cleans (clean/rebuild or invalidate caches/ restart on ASTUDIO, etc.) Unless, of course, the error is “real”. ;) My point is, with Android Studio 3.2 (beta atm), it happens kinda randomly, good strings are underlined, you touch something and the error disappears. It’s buggy. ¯_(ツ)_/¯Ken
Try this method: https://mcmap.net/q/152605/-localisation-error-39-is-translated-here-but-not-in-default-locale-39Writer
Running Android Studio 3.3.2 at the moment. This happens to me occasionally if I duplicate a string name in the strings.xml file (such as when copy-pasting). It's kind of frustrating but cleaning and restarting seems to fix it.Igniter
It happens very frequently if you move a resource from one file to another file in another module. I have to invalidate cache every time, clean-up/build have no effect. Seems an issue with indexing.Caen
Running the app worked for meMacrobiotic
It just happened to me too. Seems to be an IDE problem as the app builds and runs fine and displays the affected message. The message isn't duplicated anywhere.Billowy
K
138

this happened to me too

I do 2 things:

  • Verify entire file to see another translate not done ( I have ones in file en but in pt-br)
  • Clean, update gradle and quit and restart the Android Studio
Kimberly answered 2/5, 2018 at 21:43 Comment(8)
Just clean the project and restarted Android Studio. And it worked ;)Paleobiology
In case cleaning the project and restarting Android Studio does not work, please try to run Invalidate Caches / Restart.Rupe
Cleaned and Invalidate Caches / Restart. Worked for me too! :)Kaczmarek
❗ Try removing the line and re-adding it before you do this. Life is short.Takin
I think u should add a supplement to the answer, namely the command: Invalidate Caches / Restart. In order not to search in the comments, as I did for example.Confutation
Given the frequency at which it happens, I'd rather use lekanbaruwa solutions that have already worked 3 times today: simply restart Android Studio.Caen
Andriod Studio is one of the worst programs I have ever used and with each update, it is getting worse.Acidimetry
No need to worry clean and rebuild the projectOteliaotero
T
96

Rebuilding can take a long time. YMMV, but...

Simply remove the offending line and re-add it.

Worked for me. Very fast.

Takin answered 8/3, 2019 at 23:58 Comment(3)
I had to do even less. I renamed the string and then changed it back.Semidome
Select the offending line, ctrl-X, ctrl-V. Done. Worked for me!Boondocks
Select the offending line, delete, undo (command/control z). Done. Worked for me!Pigfish
T
25

In my case this helped me:

  1. Select the strings that cause error.
  2. Cut them.
  3. Paste them again

If it doesn't work for you, try adding the same strings to strings.xml(v21) file.

Thalamus answered 10/5, 2019 at 16:25 Comment(0)
T
23

Press Invalidate Caches / Restart ... to restart android studio. It worked for me. Actually this happened when I had copied files from my other computer and pasted via file explorer.

Thiel answered 12/3, 2019 at 18:22 Comment(0)
B
11

I solved this issue by following below steps:

  1. cleaning my project

  2. rebuilding it

  3. and finally pressing invalid caches/ Restart in file menu

Bosh answered 20/7, 2019 at 18:14 Comment(0)
P
9

If you just Clean Project it probably works. It worked for me.

Propulsion answered 18/5, 2022 at 13:16 Comment(0)
B
7

Quitting Android Studio and restarting it fixed it for me.

Beauharnais answered 11/6, 2019 at 13:31 Comment(1)
It works for me too, it's much less painful than invalidating cache and restarting.Caen
H
5

I had the same error message, just with the weird issue that it was thrown in the default locale itself and all translations. Turns out you should not use dots in your name (e.g. name="bla.blub") because it will be internally converted to "bla_blub" and then it cannot match with "bla.blub", hence the error. I only had to change the dots to underlines in the default locale and then all other errors in other translations (including dots in the name) were gone as well.

But be aware that other build tools can still create issues, so replace all the dots with underlines instead!

Higher answered 1/3, 2019 at 10:19 Comment(0)
S
3

You simply just have to copy the offending line (or just one of the multiple of offending lines), remove it, and re-paste it. That removed the issue for me.

Selfconsistent answered 10/5, 2019 at 16:17 Comment(2)
While this may help OP, it's better to add more details, explanation, examples, etc. Please provide answers that don't require clarification from the asker.Lifesaver
Don't know what else could be added for clarification. A bug in the tool - it's as simple as that. This answer is no less detailed than any of the other good answers here. It is however a duplicate of an earlier answer.Landaulet
C
2

Just make sure that you have same naming conventions on all strings files including the same capitalization. let's say if you have "sign_in" in strings.xml and "sign_In" in your fr/string.xml, so it will give you error on fr/strings.xml like "is translated here but not found in default locale". So, when you edit to "sign_in". The error will remove.

Carrollcarronade answered 4/5, 2019 at 19:48 Comment(0)
W
2

I was having this problem for all the strings in my xml file.

The thing is, your default strings.xml shouldn't have a tools:locale attribute as the other translated files have. If it does, whenever I compile the app in release mode, it treats it as another translated file.

Whole answered 7/5, 2020 at 22:24 Comment(0)
E
1

I've created a tool to manage the translation status of android apps. It not only tells you what strings are missing on the other languages, but it can also report, and clean the left over strings that you may have deleted on your default translation file.

https://github.com/gubatron/android-missing-strings

To clean all left overs in other languages invoke like this

./ams --cleanleftovers -o all.txt

This will clean the left over strings and it will output the missing strings report for all the languages into the all.txt file

Eskill answered 21/9, 2018 at 4:55 Comment(0)
A
1

Copy and paste didn't work for me.

I also tried Clean and restart, the previous error was gone but new entered strings still have new errors occur.

I tried closing the opened strings.xml file and Translations Editor, then restart.

strings.xml file and Translations Editor

That works for me.

Aluminium answered 27/12, 2019 at 1:21 Comment(0)
G
0

Well, in my case, this happened when there was a format error with the previous string of the string that's being reported. Unfortuantely that format error was not reported. Correcting the format error solves the issue.

Gabar answered 16/1, 2022 at 11:55 Comment(0)
L
0

Add this,It will work

   <resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="ExtraTranslation">
Levee answered 24/1, 2023 at 7:42 Comment(0)
I
0

Just go to the Build menu and select clean project.

Implausible answered 13/4, 2023 at 18:13 Comment(0)
D
0

Everything else suggested above failed for me, what worked was to use the File -> Repair IDE Android Studio menu option. Select to restart the IDE after the repair completes and prompts you.

Decomposer answered 31/8, 2023 at 10:6 Comment(0)
M
0

Invalidate Caches and Restart worked for me.

Maegan answered 17/4, 2024 at 21:21 Comment(0)
P
-1

Press double shift for open Translations Error and then check and uncheck in Untranslatable column the item with error.

Permatron answered 7/6, 2021 at 5:59 Comment(0)

© 2022 - 2025 — McMap. All rights reserved.