- Status changed to Fixed
over 1 year ago 11:54pm 8 August 2023 - πΊπΈUnited States tr Cascadia
The way to override strings like this in the Fivestar module is the same as with any other module in Drupal. You have several choices:
- hook_form_alter()
- String Overrides module (mainly for D7 and previous)
- Locale settings in settings.php. For example, to change the default "Give" string, you can do:
$langcode = 'en'; $settings['locale_custom_strings_' . $langcode] = [ 'Give @star/@count' => 'Rate it at @star/@count', ];
Automatically closed - issue fixed for 2 weeks with no activity.