. Licensed under the GNU Affero General Public License v3.0. // See the LICENCE file in the repository root for full licence text. namespace App\Libraries; use Illuminate\Translation\MessageSelector; class OsuMessageSelector extends MessageSelector { public function getPluralIndex($locale, $number) { return parent::getPluralIndex(locale_meta($locale)->laravelPlural(), $number); } }