String yearMonth(int year, int month) { return isChinese ? '$year年$month月' : '$year-${month.toString().padLeft(2, '0')}'; }