Commit 4a11862e authored by Kenta Yonekura's avatar Kenta Yonekura Committed by jean-pierre charras

commit patch from Kenta Yonekura (adding Japanese language) and add Kenta...

commit patch from Kenta Yonekura (adding Japanese language) and add  Kenta Yonekura to translator list in about dialog
parent f7a2283e
......@@ -189,6 +189,7 @@ set(BITMAP_SRCS
Lang_Fi.xpm
Lang_Hu.xpm
Lang_It.xpm
Lang_Jp.xpm
Lang_Ko.xpm
Lang_Nl.xpm
Lang_Pl.xpm
......
......@@ -249,6 +249,9 @@ static void InitKiCadAboutNew( AboutAppInfo& info )
info.AddTranslator( new Contributor( wxT( "Rafael Sokolowski" ),
wxT( "rafael.sokolowski@web.de" ), wxT( "German (DE)" ),
new wxBitmap( lang_de_xpm ) ) );
info.AddTranslator( new Contributor( wxT( "Kenta Yonekura" ),
wxT( "midpika@hotmail.com" ), wxT( "Japanese (JP)" ),
new wxBitmap( lang_jp_xpm ) ) );
/* TODO: are these all russian translators, placed them here now, or else align them below other language maintainer with mail adress */
info.AddTranslator( new Contributor( wxT( "Remy Halvick" ), wxEmptyString, wxT( "Others" ) ) );
......
......@@ -212,13 +212,21 @@ static struct LANGUAGE_DESCR s_Language_List[] =
_( "Catalan" )
},
/* Dutch language */
// Dutch language
{
wxLANGUAGE_DUTCH,
ID_LANGUAGE_DUTCH,
lang_nl_xpm,
_( "Dutch" )
}
},
// Japanese language
{
wxLANGUAGE_JAPANESE,
ID_LANGUAGE_JAPANESE,
lang_jp_xpm,
_( "Japanese" )
}
};
......
......@@ -182,6 +182,7 @@ extern const char* lang_fr_xpm[];
extern const char* lang_fi_xpm[];
extern const char* lang_hu_xpm[];
extern const char* lang_it_xpm[];
extern const char* lang_jp_xpm[];
extern const char* lang_ko_xpm[];
extern const char* lang_nl_xpm[];
extern const char* lang_pl_xpm[];
......
......@@ -99,6 +99,7 @@ enum main_id
ID_LANGUAGE_CATALAN,
ID_LANGUAGE_CHINESE_SIMPLIFIED,
ID_LANGUAGE_DUTCH,
ID_LANGUAGE_JAPANESE,
ID_LANGUAGE_CHOICE_END,
ID_SET_REPEAT_OPTION,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment