[desktop, core] yuzu -> Eden, eden -> Eden

Signed-off-by: crueter <crueter@eden-emu.dev>
This commit is contained in:
crueter 2025-07-19 00:12:21 -04:00
parent d125994270
commit 9dfe3cece0
Signed by untrusted user: crueter
GPG key ID: 425ACD2D4830EBC6
32 changed files with 72 additions and 75 deletions

View file

@ -170,27 +170,27 @@ void ConfigureMotionTouch::OnUDPAddServer() {
const int row = udp_server_list_model->rowCount();
if (!ok) {
QMessageBox::warning(this, tr("eden"), tr("Port number has invalid characters"));
QMessageBox::warning(this, tr("Eden"), tr("Port number has invalid characters"));
return;
}
if (port_number < 0 || port_number > 65353) {
QMessageBox::warning(this, tr("eden"), tr("Port has to be in range 0 and 65353"));
QMessageBox::warning(this, tr("Eden"), tr("Port has to be in range 0 and 65353"));
return;
}
if (!re.match(server_text).hasMatch()) {
QMessageBox::warning(this, tr("eden"), tr("IP address is not valid"));
QMessageBox::warning(this, tr("Eden"), tr("IP address is not valid"));
return;
}
// Search for duplicates
for (const auto& item : udp_server_list_model->stringList()) {
if (item == server_string) {
QMessageBox::warning(this, tr("eden"), tr("This UDP server already exists"));
QMessageBox::warning(this, tr("Eden"), tr("This UDP server already exists"));
return;
}
}
// Limit server count to 8
if (row == 8) {
QMessageBox::warning(this, tr("eden"), tr("Unable to add more than 8 servers"));
QMessageBox::warning(this, tr("Eden"), tr("Unable to add more than 8 servers"));
return;
}
@ -284,7 +284,7 @@ void ConfigureMotionTouch::OnConfigureTouchFromButton() {
bool ConfigureMotionTouch::CanCloseDialog() {
if (udp_test_in_progress) {
QMessageBox::warning(this, tr("eden"),
QMessageBox::warning(this, tr("Eden"),
tr("UDP Test or calibration configuration is in progress.<br>Please "
"wait for them to finish."));
return false;