()
| 1236 | isFromIndia () { return this.get('country') === 'india' } |
| 1237 | setToGerman () { return _.string.startsWith((this.get('preferredLanguage') || ''), 'de') } |
| 1238 | setToSpanish () { return _.string.startsWith((this.get('preferredLanguage') || ''), 'es') } |
| 1239 | |
| 1240 | freeOnly () { |
| 1241 | return this.isStudent() || (features.freeOnly && !this.isPremium()) || (this.isAnonymous() && (this.get('country') === 'taiwan')) |