diff --git a/common/script/content/faq.js b/common/script/content/faq.js new file mode 100644 index 0000000000..24904d33ac --- /dev/null +++ b/common/script/content/faq.js @@ -0,0 +1,64 @@ +'use strict'; + +require('coffee-script'); + +var t = require('./translation.coffee'); + +var faq = {}; + +faq.questions = [ + { + question: t('mobileFaqQuestion1'), + ios: t('iosFaqAnswer1') + }, + { + question: t('mobileFaqQuestion2'), + ios: t('iosFaqAnswer2') + }, + { + question: t('mobileFaqQuestion3'), + ios: t('iosFaqAnswer3') + }, + { + question: t('mobileFaqQuestion4'), + ios: t('iosFaqAnswer4') + }, + { + question: t('mobileFaqQuestion5'), + ios: t('iosFaqAnswer5') + }, + { + question: t('mobileFaqQuestion6'), + ios: t('iosFaqAnswer6') + }, + { + question: t('mobileFaqQuestion7'), + ios: t('iosFaqAnswer7') + }, + { + question: t('mobileFaqQuestion8'), + ios: t('iosFaqAnswer8') + }, + { + question: t('mobileFaqQuestion9'), + ios: t('iosFaqAnswer9') + }, + { + question: t('mobileFaqQuestion10'), + ios: t('iosFaqAnswer10') + }, + { + question: t('mobileFaqQuestion11'), + ios: t('iosFaqAnswer11') + }, + { + question: t('mobileFaqQuestion12'), + ios: t('iosFaqAnswer12') + } +]; + +faq.stillNeedHelp = { + ios: t('iosStillNeedHelp') +}; + +module.exports = faq; diff --git a/common/script/content/index.coffee b/common/script/content/index.coffee index 44607837c0..7ab290c95b 100644 --- a/common/script/content/index.coffee +++ b/common/script/content/index.coffee @@ -2268,3 +2268,5 @@ api.userDefaults = {name: t('defaultTag2')} {name: t('defaultTag3')} ] + +api.faq = require './faq.js'