Skip to content

Commit

Permalink
Use new langKeys for enabled/disabled instead of enable/disable (Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jgoedde committed Sep 10, 2024
1 parent 5b797ff commit be2834f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/popup/PopupComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,13 @@ export const PopupComponent = () => {
</span>
<span id="disableSkipping" className={extensionEnabled ? " hidden" : ""}>
<FormattedText
langKey="disable"
langKey="Disabled"
titleFormatting={titleFormatting}
/>
</span>
<span id="enableSkipping" className={!extensionEnabled ? " hidden" : ""}>
<FormattedText
langKey="Enable"
langKey="Enabled"
titleFormatting={titleFormatting}
/>
</span>
Expand Down Expand Up @@ -186,4 +186,4 @@ export const PopupComponent = () => {
<LicenseComponent titleFormatting={titleFormatting} />
</>
);
};
};

0 comments on commit be2834f

Please sign in to comment.