Dactyloidae iOS initial commit

This commit is contained in:
wuggy 2026-06-26 21:04:09 -07:00
commit 7154a0497e
2123 changed files with 197052 additions and 0 deletions

View file

@ -0,0 +1,13 @@
#!/usr/bin/env swift
import Foundation
var allLocales = NSLocale.availableLocaleIdentifiers()
// iOS doesn't directly support zh-CN/zh-TW; instead, it supports zh-Hans-CN and zh-Hant-TW, respectively.
// These transformations are done in SearchEngines.swift. Add them to the list of supported engines so
// that we download them.
allLocales.append("zh_CN")
allLocales.append("zh_TW")
print(allLocales)