增加admin管理帐号和项目的界面--初步实现

This commit is contained in:
Cheng Zhou
2025-12-17 20:12:49 +08:00
parent 4f50237f56
commit c074c2b5bc
18933 changed files with 2088454 additions and 63 deletions
+28
View File
@@ -0,0 +1,28 @@
import { formatDistance } from "./se/_lib/formatDistance.mjs";
import { formatLong } from "./se/_lib/formatLong.mjs";
import { formatRelative } from "./se/_lib/formatRelative.mjs";
import { localize } from "./se/_lib/localize.mjs";
import { match } from "./se/_lib/match.mjs";
/**
* @category Locales
* @summary Northern Sámi locale.
* @language Northern Sámi
* @iso-639-2 sme
* @author Audun Rundberg [@audunru](https://github.com/audunru)
*/
export const se = {
code: "se",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default se;