mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00:00
DolphinQt: Add some i18n comments for recently added strings
This commit is contained in:
parent
66c91b9dfb
commit
492bb5ccee
3 changed files with 10 additions and 0 deletions
|
@ -29,10 +29,14 @@ GCMemcardCreateNewDialog::GCMemcardCreateNewDialog(QWidget* parent) : QDialog(pa
|
|||
m_combobox_size->setCurrentIndex(5);
|
||||
|
||||
m_radio_western = new QRadioButton(tr("Western (Windows-1252)"));
|
||||
// i18n: The translation of this string should be consistent with the translation of the
|
||||
// string "Western (Windows-1252)". Because of this, you may want to parse "Japanese" as
|
||||
// "a character encoding which is from Japan / used in Japan" rather than "the Japanese language".
|
||||
m_radio_shiftjis = new QRadioButton(tr("Japanese (Shift-JIS)"));
|
||||
m_radio_western->setChecked(true);
|
||||
|
||||
auto* card_size_label = new QLabel(tr("Card Size"));
|
||||
// i18n: Character encoding
|
||||
auto* card_encoding_label = new QLabel(tr("Encoding"));
|
||||
auto* button_box = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, this);
|
||||
button_box->button(QDialogButtonBox::Ok)->setText(tr("Create..."));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue