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

后端 未结 1 704
时光取名叫无心
时光取名叫无心 2020-12-20 04:38

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

相关标签:
1条回答
  • 2020-12-20 05:13

    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)

    0 讨论(0)
提交回复
热议问题