Update content with web faq

This commit is contained in:
Blade Barringer
2015-09-06 17:13:04 -05:00
parent 6a1d4adcda
commit 6fd2b9e537

View File

@@ -12,14 +12,16 @@ faq.questions = [];
for (var i = 1; i <= NUMBER_OF_QUESTIONS; i++) {
var question = {
question: t('faqQuestion' + i),
ios: t('iosFaqAnswer' + i)
ios: t('iosFaqAnswer' + i),
web: t('webFaqAnswer' + i)
};
faq.questions.push(question);
}
faq.stillNeedHelp = {
ios: t('faqStillNeedHelp')
ios: t('iosFaqStillNeedHelp'),
web: t('webFaqStillNeedHelp')
};
module.exports = faq;