week method
Print amount week for the corresponding locale. The unit is abbreviated
if abbreviated is set to true.
Implementation
@override
String week(int amount, [bool abbreviated = true]) {
  if (abbreviated) {
    return 's';
  } else {
    return 'săptămân${amount > 1 ? 'i' : 'ă'}';
  }
}