Plurality in user messages

前端 未结 25 1548
没有蜡笔的小新
没有蜡笔的小新 2021-01-30 01:53

Many times, when generating messages to show to the user, the message will contain a number of something that I want to inform the customer about.

I\'ll give a

25条回答
  •  梦谈多话
    2021-01-30 02:33

    You could generate the plural automatically, see eg. plural generator.

    For plural generating rules see wikipedia

    string msg = "Do you want to delete " + numItems + GetPlural(" item", numItems) + "?";
    

提交回复
热议问题