deploy: v0.12 存档迁移+考古日志滚动条

This commit is contained in:
2026-06-24 03:04:38 +00:00
parent 4831505ef9
commit b4c6111516
58986 changed files with 7569452 additions and 31667 deletions
+29
View File
@@ -0,0 +1,29 @@
import { formatDistance } from "./ru/_lib/formatDistance.js";
import { formatLong } from "./ru/_lib/formatLong.js";
import { formatRelative } from "./ru/_lib/formatRelative.js";
import { localize } from "./ru/_lib/localize.js";
import { match } from "./ru/_lib/match.js";
/**
* @category Locales
* @summary Russian locale.
* @language Russian
* @iso-639-2 rus
* @author Sasha Koss [@kossnocorp](https://github.com/kossnocorp)
* @author Lesha Koss [@leshakoss](https://github.com/leshakoss)
*/
export const ru = {
code: "ru",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default ru;