fix: update npm dependencies, fix misc issues (#38257)

Update all npm dependencies and fix discovered issues.

Co-authored-by: bircni <bircni@icloud.com>
Co-authored-by: silverwind <me@silverwind.io>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
Giteabot
2026-06-29 12:59:14 +02:00
committed by GitHub
co-authored by bircni silverwind wxiaoguang
parent e68ee61879
commit 07b18467c0
10 changed files with 1306 additions and 1806 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
import {getCurrentLocale} from '../utils.ts';
/** frontend `Locale.TrN`: pick the `_1` or `_n` form for `count` and interpolate `%d` */
export function trN(count: number, form1: string, formN: string): string {
const form = new Intl.PluralRules(getCurrentLocale()).select(count) === 'one' ? form1 : formN;
export function trN(count: number, form1: string, formN: string, {lang = getCurrentLocale()}: {lang?: string} = {}): string {
const form = new Intl.PluralRules(lang).select(count) === 'one' ? form1 : formN;
return form.replace('%d', String(count));
}