Skip to content

Commit

Permalink
Issue #3089495 by andrewmacpherson, Kristen Pol: BooleanCheckboxWidge…
Browse files Browse the repository at this point in the history
…t settings summary is not fully translatable

(cherry picked from commit 8d32cf2245411b978b2c96502679143c979ea090)
  • Loading branch information
alexpott committed Aug 3, 2020
1 parent e0058c0 commit 684b6ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function settingsSummary() {
$summary = [];

$display_label = $this->getSetting('display_label');
$summary[] = t('Use field label: @display_label', ['@display_label' => ($display_label ? t('Yes') : 'No')]);
$summary[] = t('Use field label: @display_label', ['@display_label' => ($display_label ? t('Yes') : t('No'))]);

return $summary;
}
Expand Down

0 comments on commit 684b6ff

Please sign in to comment.