nomi-san / parsec-vdd

✨ Perfect 4K@240Hz Virtual Display
MIT License
1.78k stars 89 forks source link

[Feature requests] Multi-language support #30

Closed shikkoku closed 2 months ago

shikkoku commented 2 months ago

Is it possible to add multi-language support in the future?

nomi-san commented 2 months ago

@shikkoku I have added multi-language support Now you can make a new translation by creating a new file app/Language/zh-cn.xaml, then copy en.xaml content and modify it.

<ResourceDictionary
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:system="clr-namespace:System;assembly=mscorlib"
>
    <system:String x:Key="lang_name">中文</system:String>
    ...

When the task is done, just rebuild the app. Try the latest auto-build here: https://github.com/nomi-san/parsec-vdd/actions

image