Unverified Commit 158ce431 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3089495 by andrewmacpherson, Kristen Pol: BooleanCheckboxWidget...

Issue #3089495 by andrewmacpherson, Kristen Pol: BooleanCheckboxWidget settings summary is not fully translatable

(cherry picked from commit 8d32cf22)
parent bf44721f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
  }