-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
arily
committed
Aug 24, 2023
1 parent
1688794
commit 9c9652d
Showing
27 changed files
with
140 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
import type { ServerLocale } from './@types' | ||
|
||
export default { | ||
landing: { | ||
content: `We are an osu! private server built from the ground up with many unique features not seen elsewhere! | ||
- for more information, check out bancho.py and Guccho on GitHub | ||
- we're fully open source!`, | ||
content: 'We are an osu! private server built from the ground up with many unique features not seen elsewhere!', | ||
}, | ||
} satisfies ServerLocale as ServerLocale | ||
} as const |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
import type { ServerLocale } from './@types' | ||
|
||
export default { | ||
landing: { | ||
content: `这里是一个面向全模式的osu!私服。有则最先进的RX、AP算法,同时为全模式提供PP计算支持。拥有全图排行榜,以及无限次数的改名机会。 | ||
- 如果有更多疑问,可以访问gulag和Guccho的Github仓库。 | ||
- 我们的项目完全开源!`, | ||
content: '这里是一个面向全模式的osu!私服。有则最先进的RX、AP算法,同时为全模式提供PP计算支持。拥有全图排行榜,以及无限次数的改名机会。', | ||
}, | ||
} satisfies ServerLocale as ServerLocale | ||
} as const |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
export * from './rank' | ||
export * from './map' | ||
export * from './score' | ||
export * from './service-status' | ||
export * from './monitor' | ||
export * from './user' | ||
export * from './user-relation' | ||
export * from './article' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import type { DeepPartial } from '@trpc/server' | ||
|
||
import type { GlobalI18n } from '~/locales/@types' | ||
|
||
export default { | ||
landing: { | ||
content: `We are an osu! private server built from the ground up with many unique features not seen elsewhere! | ||
- for more information, check out bancho.py and Guccho on GitHub | ||
- we're fully open source!`, | ||
}, | ||
service: { | ||
}, | ||
} as const satisfies DeepPartial<GlobalI18n> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,8 @@ | ||
export * from '$base/locales' | ||
import enGB from './en-GB' | ||
import zhCN from './zh-CN' | ||
import { Lang } from '~/def' | ||
|
||
export const locales = { | ||
[Lang.enGB]: enGB, | ||
[Lang.zhCN]: zhCN, | ||
} as const |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import type { DeepPartial } from '@trpc/server' | ||
import type { GlobalI18n } from '~/locales/@types' | ||
|
||
export default { | ||
landing: { | ||
content: `这里是一个面向全模式的osu!私服。有则最先进的RX、AP算法,同时为全模式提供PP计算支持。拥有全图排行榜,以及无限次数的改名机会。 | ||
- 如果有更多疑问,可以访问gulag和Guccho的Github仓库。 | ||
- 我们的项目完全开源!`, | ||
}, | ||
service: { | ||
}, | ||
} as const satisfies DeepPartial<GlobalI18n> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import { MonitorProvider as Base } from '$base/server' | ||
|
||
export class MonitorProivider extends Base {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.