yangyxd / FMXUI

FMX跨平台基础UI库
MIT License
261 stars 96 forks source link

Localization #19

Closed sdokowe closed 4 years ago

sdokowe commented 4 years ago

Is there any particular reason why these shouldn't be localized?

CutStyleName = '剪切'; //Do not localize CopyStyleName = '复制'; //Do not localize PasteStyleName = '粘贴'; //Do not localize DeleteStyleName = '删除'; //Do not localize SelectAllStyleName = '选择全部'; //Do not localize

Shot

As you can see from the image I'm forced to localize them.

KngStr commented 4 years ago

As for your image, what you have to change is in UI.Reg.pas

sdokowe commented 4 years ago

As for your image, what you have to change is in UI.Reg.pas

Looks very different when I translate the strings in the Array, other than the obvious strings in English.

KngStr commented 4 years ago

图片

To change this,

sdokowe commented 4 years ago

Done. Thank you.