WIP(chat): first pass deprecation

This commit is contained in:
SabreCat
2023-05-17 16:33:44 -05:00
parent d176c31382
commit 8d9602fb16
11 changed files with 13 additions and 189 deletions
+1 -1
View File
@@ -33,7 +33,7 @@
"marketing1Lead2": "Improve your habits to build up your avatar. Show off the sweet gear you've earned!",
"marketing1Lead3Title": "Find Random Prizes",
"marketing1Lead3": "For some, it's the gamble that motivates them: a system called \"stochastic rewards.\" Habitica accommodates all reinforcement and punishment styles: positive, negative, predictable, and random.",
"marketing2Header": "Compete With Friends, Join Interest Groups",
"marketing2Header": "Compete with Friends",
"marketing2Lead1Title": "Social Productivity",
"marketing2Lead1": "While you can play Habitica solo, the lights really turn on when you start collaborating, competing, and holding each other accountable. The most effective part of any self-improvement program is social accountability, and what better an environment for accountability and competition than a video game?",
"marketing2Lead2Title": "Fight Monsters",
+1 -1
View File
@@ -251,7 +251,7 @@
"fetchRecentMessages": "Fetch Recent Messages",
"like": "Like",
"liked": "Liked",
"inviteToGuild": "Invite to Guild",
"inviteToGuild": "Invite to Group",
"inviteToParty": "Invite to Party",
"inviteEmailUsername": "Invite via Email or Username",
"inviteEmailUsernameInfo": "Invite users via a valid email or username. If an email isn't registered yet, we'll invite them to join.",
+2 -1
View File
@@ -59,5 +59,6 @@
"messageMissingDisplayName": "Missing display name.",
"reportedMessage": "You have reported this message to moderators.",
"canDeleteNow": "You can now delete the message if you wish.",
"newsPostNotFound": "News Post not found or you don't have access."
"newsPostNotFound": "News Post not found or you don't have access.",
"featureRetired": "This feature is no longer supported."
}
+4 -1
View File
@@ -182,7 +182,6 @@ function _getBasicAchievements (user, language) {
_addSimple(result, user, { path: 'partyUp', language });
_addSimple(result, user, { path: 'partyOn', language });
_addSimple(result, user, { path: 'joinedGuild', language });
_addSimple(result, user, { path: 'royallyLoyal', language });
_addSimple(result, user, { path: 'joinedChallenge', language });
_addSimple(result, user, { path: 'invitedFriend', language });
@@ -352,6 +351,10 @@ function _getSpecialAchievements (user, language) {
_addSimple(result, user, { path: 'groupsBeta2022', language });
}
if (user.achievements.joinedGuild) {
_addSimple(result, user, { path: 'joinedGuild', language });
}
return result;
}