mirror of
https://github.com/HangarMC/Hangar.git
synced 2025-01-06 13:56:14 +08:00
45 lines
1.2 KiB
TypeScript
45 lines
1.2 KiB
TypeScript
|
import { LocaleMessageObject } from 'vue-i18n';
|
||
|
|
||
|
const msgs: LocaleMessageObject = {
|
||
|
hangar: {
|
||
|
projectSearch: {
|
||
|
query: 'Search in {0} projects, proudly made by the community...',
|
||
|
relevanceSort: 'Sort with relevance',
|
||
|
},
|
||
|
subtitle: 'A Minecraft package repository',
|
||
|
sponsoredBy: 'Sponsored by',
|
||
|
},
|
||
|
nav: {
|
||
|
login: 'Login',
|
||
|
signup: 'Signup',
|
||
|
user: {
|
||
|
notifications: 'Notifications',
|
||
|
flags: 'Flags',
|
||
|
projectApprovals: 'Project approvals',
|
||
|
versionApprovals: 'Version approvals',
|
||
|
stats: 'Stats',
|
||
|
health: 'Hangar Health',
|
||
|
log: 'User Action Log',
|
||
|
platformVersions: 'Platform Versions',
|
||
|
logout: 'Sign out',
|
||
|
},
|
||
|
new: {
|
||
|
project: 'New Project',
|
||
|
organization: 'New Organization',
|
||
|
},
|
||
|
hangar: {
|
||
|
home: 'Homepage',
|
||
|
forums: 'Forums',
|
||
|
code: 'Code',
|
||
|
docs: 'Docs',
|
||
|
javadocs: 'JavaDocs',
|
||
|
hangar: 'Hangar (Plugins)',
|
||
|
downloads: 'Downloads',
|
||
|
community: 'Community',
|
||
|
},
|
||
|
},
|
||
|
message: 'Good morning!',
|
||
|
};
|
||
|
|
||
|
export default msgs;
|