Skip to content

Commit 6bc5a8e

Browse files
committed
Fix guild quest objective wording
1 parent 260be38 commit 6bc5a8e

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

app/js/i18n/en.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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.',

app/js/i18n/ru.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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} предмет рунным камнем.',

app/js/ui/screens/quests.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)