| 7 | module.exports = class extends Language { |
| 8 | |
| 9 | constructor(...args) { |
| 10 | super(...args); |
| 11 | this.presenceTypes = { |
| 12 | PLAYING: 'Playing', |
| 13 | STREAMING: 'Streaming', |
| 14 | LISTENING: 'Listening to', |
| 15 | WATCHING: 'Watching', |
| 16 | CUSTOM_STATUS: 'Custom status' |
| 17 | }; |
| 18 | this.defaultMsgNotifs = { |
| 19 | ALL: 'All messages', |
| 20 | MENTIONS: 'Only @mentions' |
| 21 | }; |
| 22 | this.verificationLevels = { |
| 23 | NONE: 'None (unrestricted)', |
| 24 | LOW: 'Low (verified email)', |
| 25 | MEDIUM: 'Medium (5 minute registration)', |
| 26 | HIGH: 'High (10 minute membership)', |
| 27 | VERY_HIGH: 'Highest (verified phone number)' |
| 28 | }; |
| 29 | this.filterLevels = { |
| 30 | DISABLED: 'Off', |
| 31 | MEMBERS_WITHOUT_ROLES: 'On for unroled users', |
| 32 | ALL_MEMBERS: 'On for everyone' |
| 33 | }; |
| 34 | this.nitroTierTitles = [ |
| 35 | 'No levels achieved yet', |
| 36 | 'Level 1 (2 boosts)', |
| 37 | 'Level 2 (15 boosts)', |
| 38 | 'Level 3 (30 boosts)' |
| 39 | ]; |
| 40 | this.nitroTierDetails = [ |
| 41 | 'No levels achieved yet', |
| 42 | '• +50 server emoji slots (for a total of 100)\n• 128 Kbps audio quality\n• Animated server icon\n• Custom server invite background\n• 720p 60fps Go Live streams', |
| 43 | '• +50 server emoji slots (for a total of 150)\n• 256 Kbps audio quality\n• Server banner\n• 50 MB upload limit for all members\n• 1080p 60fps Go Live streams', |
| 44 | '• +100 server emoji slots (for a total of 250)\n• 384 Kbps audio quality\n• Vanity URL for the server\n• 100 MB upload limit for all members' |
| 45 | ]; |
| 46 | this.channelTypes = { |
| 47 | dm: 'DM', |
| 48 | text: 'Text channel', |
| 49 | voice: 'Voice channel', |
| 50 | category: 'Category', |
| 51 | news: 'News channel', |
| 52 | store: 'Store channel', |
| 53 | unknown: 'Unknown' |
| 54 | }; |
| 55 | this.regions = { |
| 56 | brazil: '🇧🇷 Brazil', |
| 57 | europe: '🇪🇺 Europe', |
| 58 | hongkong: '🇭🇰 Hong Kong', |
| 59 | india: '🇮🇳 India', |
| 60 | japan: '🇯🇵 Japan', |
| 61 | russia: '🇷🇺 Russia', |
| 62 | singapore: '🇸🇬 Singapore', |
| 63 | southafrica: '🇿🇦 South Africa', |
| 64 | sydney: '🇦🇺 Sydney', |
| 65 | 'us-central': '🇺🇸 US Central', |
| 66 | 'us-east': '🇺🇸 US East', |