我的问题类似于Howtoaddregularstringplaceholderstoatranslatedplurals.stringdictinswiftios但我想了解是否可以将2个int参数传递给字符串字典。假设我想翻译如下内容:1apple:3pears2apples:1pear是否可以用一种本地化的格式字符串来实现,例如:letapples=1letpears=3letapplesAndPears=String.localizedStringWithFormat(,apples,pears)print(applesAndPears)还是我必须将它们分开组合?