Missing string catalog

I have an App with multiple string catalogs. I mistyped the name of a table in one of my
String(localized: "Some English Text", table "nonExistingTable") instances.

I did not receive a compile-time warning telling me the table was missing and my application defaulted to the English text instead. Is this expected behaviour or a bug?

Answered by Frameworks Engineer in 763126022

This isn't checked at compile time, but the frameworks are designed to deal with this kind of fallback by giving you the default value you included or the string itself.

Accepted Answer

This isn't checked at compile time, but the frameworks are designed to deal with this kind of fallback by giving you the default value you included or the string itself.

Missing string catalog
 
 
Q