translate base

This commit is contained in:
Mekan1206
2026-07-31 18:08:08 +05:00
parent a794dacd39
commit 581cb8241c
413 changed files with 9087 additions and 428 deletions

View File

@@ -14,10 +14,10 @@ enum BonusType: string
public function label(): string
{
return match ($this) {
self::Performance => 'Performance',
self::Holiday => 'Holiday',
self::Retention => 'Retention',
self::Other => 'Other',
self::Performance => __('enums.bonus_type.performance'),
self::Holiday => __('enums.bonus_type.holiday'),
self::Retention => __('enums.bonus_type.retention'),
self::Other => __('enums.bonus_type.other'),
};
}