mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-02 07:49:39 +00:00
Changed submenu from Hall of Heroes to Hall of Contributors
This commit is contained in:
parent
075ed9f172
commit
251dd3cb8e
2 changed files with 6 additions and 6 deletions
|
|
@ -28,12 +28,12 @@
|
|||
"helped": "Helped Habit Grow",
|
||||
"helpedText1": "Helped Habitica grow by filling out",
|
||||
"helpedText2": "this survey.",
|
||||
"hall": "Hall of Honor",
|
||||
"hall": "Hall of Heroes",
|
||||
"contribTitle": "Contributor Title (eg, \"Blacksmith\")",
|
||||
"contribLevel": "Contrib Tier",
|
||||
"contribHallText": "1-7 for normal contributors, 8 for moderators, 9 for staff. This determines which items, pets, and mounts are available. Also determines name-tag coloring. Tiers 8 and 9 are automatically given admin status.",
|
||||
"hallHeroes": "Court of Heroes",
|
||||
"hallPatrons": "Court of Patrons",
|
||||
"hallContributors": "Hall of Contributors",
|
||||
"hallPatrons": "Hall of Patrons",
|
||||
"rewardUser": "Reward User",
|
||||
"UUID": "UUID",
|
||||
"loadUser": "Load User",
|
||||
|
|
@ -60,5 +60,5 @@
|
|||
"blurbGuildsPage": "Guilds are common-interest chat groups created by the players, for players. Browse through the list and join the Guilds that interest you!",
|
||||
"blurbChallenges": "Challenges are created by your fellow players. Joining a Challenge will add its tasks to your task dashboard, and winning a Challenge will give you an achievement and often a gem prize!",
|
||||
"blurbHallPatrons": "This is the Hall of Patrons, where we honor the noble adventurers who backed Habitica's original Kickstarter. We thank them for helping us bring Habitica to life!",
|
||||
"blurbHallHeroes": "This is the Hall of Heroes, where open-source contributors to Habitica are honored. Whether through code, art, music, writing, or even just helpfulness, they have earned <a href='http://habitica.wikia.com/wiki/Contributor_Rewards' target='_blank'> gems, exclusive equipment</a>, and <a href='http://habitica.wikia.com/wiki/Contributor_Titles' target='_blank'>prestigious titles</a>. You can contribute to Habitica, too! <a href='http://habitica.wikia.com/wiki/Contributing_to_Habitica' target='_blank'> Find out more here. </a>"
|
||||
"blurbHallContributors": "This is the Hall of Contributors, where open-source contributors to Habitica are honored. Whether through code, art, music, writing, or even just helpfulness, they have earned <a href='http://habitica.wikia.com/wiki/Contributor_Rewards' target='_blank'> gems, exclusive equipment</a>, and <a href='http://habitica.wikia.com/wiki/Contributor_Titles' target='_blank'>prestigious titles</a>. You can contribute to Habitica, too! <a href='http://habitica.wikia.com/wiki/Contributing_to_Habitica' target='_blank'> Find out more here. </a>"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,13 +2,13 @@ script(type='text/ng-template', id='partials/options.social.hall.html')
|
|||
ul.options-submenu
|
||||
li(ng-class="{ active: $state.includes('options.social.hall.heroes') }")
|
||||
a(ui-sref='options.social.hall.heroes')
|
||||
=env.t('hallHeroes')
|
||||
=env.t('hallContributors')
|
||||
li(ng-class="{ active: $state.includes('options.social.hall.patrons') }")
|
||||
a(ui-sref='options.social.hall.patrons')
|
||||
=env.t('hallPatrons')
|
||||
|
||||
.options-blurbmenu
|
||||
small.muted(ng-if="$state.includes('options.social.hall.heroes')")!=env.t('blurbHallHeroes')
|
||||
small.muted(ng-if="$state.includes('options.social.hall.heroes')")!=env.t('blurbHallContributors')
|
||||
small.muted(ng-if="$state.includes('options.social.hall.patrons')")=env.t('blurbHallPatrons')
|
||||
|
||||
.tab-content
|
||||
|
|
|
|||
Loading…
Reference in a new issue