How to add a new language for mysql's error messages?

ぃ、小莉子 提交于 2019-12-29 08:17:32

问题


In $MySqlHome/share folder, there are 25 subfolders (25 languages) and errmsg-utf8.txt file which contains translations of the error messages. Under each subfolder there is a errmsg.sys.

I'd like to add a new language (zh-CN) and translate some of the messages.

How to do this?


回答1:


The source file to edit is sql/share/errmsg-utf8.txt

At the top of this file, a line like

languages ... french=fre ...

declares the list of languages with abbreviations.

During the build, the program comp_err generates the language files under sql/share

If you add a new language in the header, it should pick it up.

Look also at file sql/share/cmake_install.cmake to install each generated language file.

Note: All the files listed here belong to the MySQL source code, you need to build from source to use the error generator (comp_err)



来源:https://stackoverflow.com/questions/30302958/how-to-add-a-new-language-for-mysqls-error-messages

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!