Hi,
I have a Localizable.strings file for English and German. In there I have these entries
"orderOverview" = "Order Overview";
"goal" = "XXXXXXXXXXXrder Overview";
in my ContentView I have
NavigationLink(destination: WarehouseOrderOverview().environmentObject(self.settingStore).navigationBarTitle("orderOverview")) {
MenuButtonNavigation(title: "goal", color: Color.gray, icon: "doc.text.magnifyingglass").padding(.top)
}
When I now run the app, it actually shows "goal" and "orderOverview" instead of the translated values. Is there anything else I have to do?
Max