Application localization error in ios

I have completed all the necessary steps to achieve localization of the application. Following are the following steps:

  • create the Localizable.strings file.
  • add the languages ​​we are looking for localized.
  • add them to Localizable.strings using the added localized button.

Now I get the following warning message:

fatal: index file less than expected "

along with this, the Localizable.strings file does not appear in the list that asks for the link file and language.anybody resource, please help me as soon as possible. Thank you in advance.

+6
source share
3 answers

This is similar to a git error that can be .git/index removing .git/index and then reset to HEAD.
You can find it here:
http://programertools.blogspot.com/2014/04/how-to-fix-fatal-index-file-smaller.html

+2
source

You can follow this link Localization .

Hope this helps

0
source

The index file is corrupt, but it is easy to rebuild. Just delete it and add the files to the working directory again:

 rm .git/index git add . 
-4
source

Source: https://habr.com/ru/post/953538/


All Articles