Format when time is in months
@override String months(int months) { if (months == 1) { return '1か月'; } else if (months > 1 && months < 11) { return '~$monthsか月'; } else { return '$monthsか月'; } }