Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable Xcode warning "Enable Base Internationalization"?

Tags:

This warning started to appear on Xcode 10 Beta 6.

I perfectly understand its meaning, yet I wish to disable it. Any way to do that?

like image 571
Joshua Avatar asked Aug 30 '18 17:08

Joshua


People also ask

What is use base internationalization Xcode?

Using Base Internationalization. Base internationalization separates user-facing strings from .storyboard and .xib files. It relieves localizers of the need to modify .storyboard and .xib files in Interface Builder.

What is base localization Xcode?

8 Mar 2020. overview, xcode, localization. Localization means making your app support additional languages. Usually we will start with english as the base language as default, then slowly adding more language support on top of it.


1 Answers

The warning will go away if you edit your project.pbxproj (inside of your xcodeproj) with an editor and add Base to the knownRegions key.

Not sure if it has any side effects though.

knownRegions = (     en,     nl,     Base, ); 
like image 129
Zyphrax Avatar answered Oct 01 '22 17:10

Zyphrax