private String plural(String word) { String key = word.toLowerCase(); if (customPlurals.containsKey(key)) { return customPlurals.getProperty(key); } return ...
確定! 回上一頁