Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Korean translation #2685

Merged
merged 5 commits into from Jul 6, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions src/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -729,14 +729,15 @@ CAboutDlg::CAboutDlg ( QWidget* parent ) : CBaseDlg ( parent )
"<p><b>" +
tr ( "Slovak" ) +
"</b></p>"
"<p>Jose Riha (<a href=\"https://github.com/jose1711\">jose1711</a>)</p>" +
"<p><b>" + tr ( "Simplified Chinese" ) +
"<p>Jose Riha (<a href=\"https://github.com/jose1711\">jose1711</a>)</p>"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was almost correct. You need to add yourself without a "+" similar to the translators above.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks :) I would try again.

"<p><b>" +
tr ( "Simplified Chinese" ) +
"</b></p>"
"<p>Gary Wang (<a href=\"https://github.com/BLumia\">BLumia</a>)</p>" );
"<p>Gary Wang (<a href=\"https://github.com/BLumia\">BLumia</a>)</p>"
"<p><b>" +
tr ( "Korean" ) +
"</b></p>"
"<p>Jung-Kyu Park (<a href=\https://github.com/bagjunggyu\">bagjunggyu</a>)</p>"
"<p><b>" +
"<p>Jung-Kyu Park (<a href=\https://github.com/bagjunggyu\">bagjunggyu</a>)</p>" );

// set version number in about dialog
lblVersion->setText ( GetVersionAndNameStr() );
Expand Down