diff --git a/src/i18n/en_US.ts b/src/i18n/en_US.ts index ab3a8ae..0404a72 100644 --- a/src/i18n/en_US.ts +++ b/src/i18n/en_US.ts @@ -1356,7 +1356,7 @@ or the communication between a tag and a reader. Mifare - Success! + Succeed! @@ -1390,7 +1390,7 @@ Continue to write? - Successful! + Succeed! diff --git a/src/i18n/zh_CN.ts b/src/i18n/zh_CN.ts index ba372a9..39e2fa9 100644 --- a/src/i18n/zh_CN.ts +++ b/src/i18n/zh_CN.ts @@ -1370,7 +1370,7 @@ or the communication between a tag and a reader. Mifare - Success! + Succeed! 成功! @@ -1406,7 +1406,7 @@ Continue to write? - Successful! + Succeed! 成功! diff --git a/src/module/mifare.cpp b/src/module/mifare.cpp index 7f7398e..94d5b1f 100644 --- a/src/module/mifare.cpp +++ b/src/module/mifare.cpp @@ -639,7 +639,7 @@ void Mifare::writeOne(TargetType targetType) bool isSuccessful = _writeblk(blockId, keyType, ui->MF_RW_keyEdit->text().toUpper(), ui->MF_RW_dataEdit->text(), targetType); if(isSuccessful) { - QMessageBox::information(parent, tr("Info"), tr("Success!")); + QMessageBox::information(parent, tr("Info"), tr("Succeed!")); } else { @@ -706,7 +706,7 @@ void Mifare::writeSelected(TargetType targetType) } } if(failedBlocks.size() == 0) - QMessageBox::information(parent, tr("Info"), tr("Successful!")); + QMessageBox::information(parent, tr("Info"), tr("Succeed!")); else { QString suffix = "";