File tree Expand file tree Collapse file tree
src/client/components/baseComponents/stats Expand file tree Collapse file tree Original file line number Diff line number Diff line change 242242 "enter_email_address" : " Please enter an email address" ,
243243 "personal_player_id" : " Personal Player ID:"
244244 },
245- "achivements " : {
245+ "achievements " : {
246246 "win_no_nukes" : " Win Without Nukes" ,
247247 "win_no_nukes_desc" : " Win a free-for-all match without launching any nukes."
248248 },
Original file line number Diff line number Diff line change @@ -95,13 +95,13 @@ export class PlayerAchievements extends LitElement {
9595 }
9696
9797 private resolveTitle ( achievementKey : string ) : string {
98- const translationKey = `achivements .${ achievementKey } ` ;
98+ const translationKey = `achievements .${ achievementKey } ` ;
9999 const translated = translateText ( translationKey ) ;
100100 return translated === translationKey ? achievementKey : translated ;
101101 }
102102
103103 private resolveDescription ( achievementKey : string ) : string | null {
104- const translationKey = `achivements .${ achievementKey } _desc` ;
104+ const translationKey = `achievements .${ achievementKey } _desc` ;
105105 const translated = translateText ( translationKey ) ;
106106 return translated === translationKey ? null : translated ;
107107 }
You can’t perform that action at this time.
0 commit comments