2021-01-23 06:36:52 +08:00
import { LocaleMessageObject } from 'vue-i18n' ;
const msgs : LocaleMessageObject = {
2021-02-07 13:44:53 +08:00
general : {
close : 'Close' ,
submit : 'Submit' ,
comment : 'Comment' ,
} ,
2021-01-23 06:36:52 +08:00
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' ,
} ,
} ,
2021-01-23 09:44:41 +08:00
project : {
category : {
admin_tools : 'Admin Tools' ,
chat : 'Chat' ,
dev_tools : 'Developer Tools' ,
economy : 'Economy' ,
gameplay : 'Gameplay' ,
games : 'Games' ,
protection : 'Protection' ,
role_playing : 'Role Playing' ,
world_management : 'World Management' ,
misc : 'Miscellaneous' ,
} ,
2021-01-24 04:27:15 +08:00
actions : {
unwatch : 'Unwatch' ,
watch : 'Watch' ,
flag : 'Flag' ,
adminActions : 'Admin Actions' ,
flagHistory : 'Flag history ({0})' ,
staffNotes : 'Staff notes ({0})' ,
userActionLogs : 'User Action Logs' ,
forum : 'Forum' ,
} ,
2021-02-07 13:44:53 +08:00
flag : {
flagProject : 'Flag {0}?' ,
} ,
2021-01-24 04:27:15 +08:00
tabs : {
docs : 'Docs' ,
versions : 'Versions' ,
discuss : 'Discuss' ,
settings : 'Settings' ,
homepage : 'Homepage' ,
issues : 'Issues' ,
source : 'Source' ,
support : 'Support' ,
} ,
2021-01-31 01:27:36 +08:00
new : {
step1 : {
2021-02-05 14:51:51 +08:00
title : 'User Agreement' ,
2021-01-31 01:27:36 +08:00
text :
'A project contains your downloads and the documentation for your plugin.<br>Before continuing, please review the <a href="#">Hangar Submission Guidelines.</a>' ,
2021-02-05 14:51:51 +08:00
continue : 'Agree' ,
2021-01-31 01:27:36 +08:00
back : 'Abort' ,
} ,
step2 : {
title : 'Basic Settings' ,
continue : 'Continue' ,
back : 'Back' ,
userselect : 'Create as...' ,
projectname : 'Project name' ,
projectsummary : 'Project Summary' ,
projectcategory : 'Project Category' ,
} ,
step3 : {
title : 'Additional Settings' ,
continue : 'Continue' ,
back : 'Back' ,
optional : 'Optional' ,
links : 'Links' ,
homepage : 'Homepage' ,
issues : 'Issue Tracker' ,
source : 'Source Code' ,
support : 'External Support' ,
licence : 'Licence' ,
type : 'Type' ,
2021-02-05 14:51:51 +08:00
customName : 'Name' ,
2021-01-31 01:27:36 +08:00
url : 'URL' ,
seo : 'SEO' ,
keywords : 'Keywords' ,
} ,
step4 : {
title : 'Import from Spigot' ,
continue : 'Continue' ,
back : 'Back' ,
optional : 'Optional' ,
convert : 'Convert' ,
preview : 'Preview' ,
tutorial : 'How to get the BBCode' ,
} ,
step5 : {
title : 'Finishing' ,
text : 'Creating...' ,
} ,
2021-02-06 03:50:18 +08:00
error : 'There was an error creating the project' ,
2021-01-31 01:27:36 +08:00
} ,
2021-01-24 04:27:15 +08:00
sendForApproval : 'Send for approval' ,
} ,
2021-02-04 05:35:38 +08:00
organization : {
new : {
title : 'Create a new Organization' ,
text : 'Organizations allow you group users provide closer collaboration between them within your projects on Hangar.' ,
name : 'Organization Name' ,
} ,
} ,
form : {
userSelection : {
addUser : 'Add User...' ,
create : 'Create' ,
} ,
} ,
2021-02-04 05:51:34 +08:00
notifications : {
title : 'Notifications' ,
invites : 'Invites' ,
2021-02-04 17:34:24 +08:00
invited : 'You have been invited to join {0}' ,
2021-02-04 05:51:34 +08:00
readAll : 'Mark all as read' ,
2021-02-04 17:34:24 +08:00
unread : 'Unread' ,
read : 'Read' ,
all : 'All' ,
invite : {
all : 'All' ,
projects : 'Projects' ,
organizations : 'Organizations' ,
} ,
empty : {
unread : 'You have no unread notifications.' ,
read : 'You have no read notifications.' ,
all : 'You have no notifications.' ,
invites : 'You have no invites' ,
} ,
2021-02-04 05:51:34 +08:00
} ,
2021-01-24 04:27:15 +08:00
visibility : {
notice : {
2021-02-06 15:45:13 +08:00
new :
'This project is new, and will not be shown to others until a version has been uploaded. If a version is not uploaded over a longer time the project will be deleted.' ,
2021-01-24 04:27:15 +08:00
needsChanges : 'This project requires changes: {0}' ,
needsApproval : 'You have sent the project for review' ,
softDelete : 'Project deleted by {0}' ,
} ,
2021-01-23 09:44:41 +08:00
} ,
2021-01-23 06:36:52 +08:00
message : 'Good morning!' ,
} ;
export default msgs ;