feat: Add chs language support.

This commit is contained in:
2025-12-14 03:09:29 +09:00
parent 0629ffc3bc
commit 4d3bb6cfd8
3 changed files with 160 additions and 0 deletions
+6
View File
@@ -750,6 +750,12 @@ const App: React.FC = () => {
>
Español
</button>
<button
onClick={() => { setLanguage('chs'); setIsLangMenuOpen(false); }}
className={`w-full px-4 py-2 text-sm text-left hover:bg-gray-700 transition-colors ${language === 'chs' ? 'text-plex-orange font-bold' : 'text-gray-300'}`}
>
</button>
</div>
</>
)}