Compare commits

...

2 Commits

View File

@ -2,8 +2,14 @@
namespace Drupal\opencase; namespace Drupal\opencase;
class Pluraliser { class Pluraliser {
const NO_CHANGE = ['Staff'];
public static function pluralise($text) { public static function pluralise($text) {
if (in_array($text, self::NO_CHANGE)) {
return $text;
} else {
return $text . "s"; return $text . "s";
} }
}
} }