Bluesky app fork with some witchin' additions 馃挮 witchsky.app
bluesky fork client
117
fork

Configure Feed

Select the types of activity you want to include in your feed.

at a876aae44ea07494ebea9727350aa060b81f317b 55 lines 688 B view raw
1import {defineConfig} from '@lingui/cli' 2 3export default defineConfig({ 4 sourceLocale: 'en', 5 locales: [ 6 'en', 7 'an', 8 'ast', 9 'ca', 10 'cy', 11 'da', 12 'de', 13 'el', 14 'en-GB', 15 'eo', 16 'es', 17 'eu', 18 'fi', 19 'fr', 20 'fy', 21 'ga', 22 'gd', 23 'gl', 24 'hi', 25 'hu', 26 'ia', 27 'id', 28 'it', 29 'ja', 30 'km', 31 'ko', 32 'ne', 33 'nl', 34 'pl', 35 'pt-BR', 36 'pt-PT', 37 'ro', 38 'ru', 39 'sv', 40 'th', 41 'tr', 42 'uk', 43 'vi', 44 'zh-CN', 45 'zh-HK', 46 'zh-TW', 47 ], 48 catalogs: [ 49 { 50 path: '<rootDir>/src/locale/locales/{locale}/messages', 51 include: ['src'], 52 }, 53 ], 54 compileNamespace: 'ts', 55})