Skip to content

Commit

Permalink
prettier / changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
claviska committed Nov 15, 2024
1 parent 604526f commit 8cbd07b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/pages/resources/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ New versions of Shoelace are released as-needed and generally occur when a criti
## Next

- Added Norwegian translations for Bokmål and Nynorsk [#2268]
- Added Ukrainian translation [#2270]
- Added support for <kbd>Enter</kbd> to `<sl-split-panel>` to align with ARIA APG's [window splitter pattern](https://www.w3.org/WAI/ARIA/apg/patterns/windowsplitter/) [#2234]
- Fixed a bug in `<sl-carousel>` that caused the navigation icons to be reversed
- Fixed a bug in `<sl-select>` that prevented label changes in `<sl-option>` from updating the controller [#1971]
Expand Down
2 changes: 1 addition & 1 deletion src/translations/uk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const translation: Translation = {
loading: 'Завантаження',
nextSlide: 'Наступний слайд',
numOptionsSelected: num => {
var n = num % 10;
const n = num % 10;
if (n === 0) return 'не вибрано варіантів';
if (n === 1) return 'вибрано 1 варіант';
if (n === 2 || n === 3 || n === 4) return `вибрано ${num} варіанти`;
Expand Down

0 comments on commit 8cbd07b

Please sign in to comment.