File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -760,6 +760,7 @@ var LangEN = {
760760 quest_obj_explore_detail : 'Visit {count} different regions via the world map.' ,
761761 quest_obj_social : 'Social actions' ,
762762 quest_obj_bless_detail : 'Bless other mages {count} times via the Chronicle.' ,
763+ quest_obj_guild_join_detail : 'Join any guild.' ,
763764 quest_obj_territory : 'Territory actions' ,
764765 quest_obj_territory_detail : 'Contribute to a siege {count} time(s).' ,
765766 quest_obj_enchant_detail : 'Enchant {count} item with a rune stone.' ,
Original file line number Diff line number Diff line change @@ -760,6 +760,7 @@ var LangRU = {
760760 quest_obj_explore_detail : 'Посетите {count} разных региона через карту мира.' ,
761761 quest_obj_social : 'Социальные действия' ,
762762 quest_obj_bless_detail : 'Благословите других магов {count} раз через Хронику.' ,
763+ quest_obj_guild_join_detail : 'Вступите в любую гильдию.' ,
763764 quest_obj_territory : 'Территориальные действия' ,
764765 quest_obj_territory_detail : 'Внесите вклад в осаду {count} раз.' ,
765766 quest_obj_enchant_detail : 'Зачаруйте {count} предмет рунным камнем.' ,
Original file line number Diff line number Diff line change @@ -318,6 +318,7 @@ var QuestsScreen = (function() {
318318 if ( ! obj ) return '' ;
319319 if ( obj . type === 'explore' ) return t ( 'quest_obj_explore_detail' , { count : obj . required } ) ;
320320 if ( obj . type === 'social' && obj . target === 'blessing' ) return t ( 'quest_obj_bless_detail' , { count : obj . required } ) ;
321+ if ( obj . type === 'social' && obj . target === 'guild_join' ) return t ( 'quest_obj_guild_join_detail' , { count : obj . required } ) ;
321322 if ( obj . type === 'territory' && obj . target === 'siege' ) return t ( 'quest_obj_territory_detail' , { count : obj . required } ) ;
322323 if ( obj . type === 'craft' && obj . target === 'enchant' ) return t ( 'quest_obj_enchant_detail' , { count : obj . required } ) ;
323324 return t ( 'quest_obj_' + obj . type ) + ': ' + obj . required ;
You can’t perform that action at this time.
0 commit comments