Update udev dialog message and update translations

This commit is contained in:
Adam Honse committed 2026-08-24 20:27:45 -05:00
1 parent f3b9f1c3fd
commit 5df989c7a0
22 files changed
+4468 -14747

No files matched your search

+26 -26
View File
@@ -45,33 +45,33 @@ const char* DETECTIONMANAGER = "DetectionManager";
/*---------------------------------------------------------*\
| Warning Dialog Strings |
\*---------------------------------------------------------*/
const char* I2C_ERR_WIN = QT_TRANSLATE_NOOP("DetectionManager",
"<h2>Warning:</h2>"
"<p>One or more I2C/SMBus interfaces failed to initialize.</p>"
"<p>Depending on which interfaces failed to initialize, some RGB DRAM modules, some motherboards' onboard RGB lighting, and RGB graphics cards may not be available in OpenRGB.</p>"
"<p>On Windows, this is usually caused by a failure to load the PawnIO driver.</p>"
"<p>For OpenRGB to access these devices, you must install PawnIO from <a href='https://pawnio.eu/'>https://pawnio.eu</a> and run OpenRGB as administrator or as a system service.</p>"
"<p>If you are not using any of the devices listed above, you can safely ignore this message.</p>");
const char* I2C_ERR_LINUX = QT_TRANSLATE_NOOP("DetectionManager",
"<h2>Warning:</h2>"
"<p>One or more I2C/SMBus interfaces failed to initialize.</p>"
"<p>Depending on which interfaces failed to initialize, some RGB DRAM modules, some motherboards' onboard RGB lighting, and RGB graphics cards may not be available in OpenRGB.</p>"
"<p>On Linux, this is usually because the i2c-dev module is not loaded.</p>"
"<p>For OpenRGB to access these devices, you must load the i2c-dev module along with the correct I2C driver module for your motherboard. "
"This is usually i2c-piix4 for AMD systems and i2c-i801 for Intel systems.</p>"
"<p>If you are not using any of the devices listed above, you can safely ignore this message.</p>");
static const char* I2C_ERR_WIN = QT_TRANSLATE_NOOP("DetectionManager",
"<h2>Warning:</h2>"
"<p>One or more I2C/SMBus interfaces failed to initialize.</p>"
"<p>Depending on which interfaces failed to initialize, some RGB DRAM modules, some motherboards' onboard RGB lighting, and RGB graphics cards may not be available in OpenRGB.</p>"
"<p>On Windows, this is usually caused by a failure to load the PawnIO driver.</p>"
"<p>For OpenRGB to access these devices, you must install PawnIO from <a href='https://pawnio.eu/'>https://pawnio.eu</a> and run OpenRGB as administrator or as a system service.</p>"
"<p>If you are not using any of the devices listed above, you can safely ignore this message.</p>");
static const char* I2C_ERR_LINUX = QT_TRANSLATE_NOOP("DetectionManager",
"<h2>Warning:</h2>"
"<p>One or more I2C/SMBus interfaces failed to initialize.</p>"
"<p>Depending on which interfaces failed to initialize, some RGB DRAM modules, some motherboards' onboard RGB lighting, and RGB graphics cards may not be available in OpenRGB.</p>"
"<p>On Linux, this is usually because the i2c-dev module is not loaded.</p>"
"<p>For OpenRGB to access these devices, you must load the i2c-dev module along with the correct I2C driver module for your motherboard. "
"This is usually i2c-piix4 for AMD systems and i2c-i801 for Intel systems.</p>"
"<p>If you are not using any of the devices listed above, you can safely ignore this message.</p>");
const char* UDEV_MISSING = QT_TRANSLATE_NOOP("DetectionManager",
"<h2>Warning:</h2>"
"<p>The OpenRGB udev rules are not installed.</p>"
"<p>Most devices will not be available unless running OpenRGB as root.</p>"
"<p>If using AppImage, Flatpak, or self-compiled versions of OpenRGB you must install the udev rules manually</p>"
"<p>See <a href='https://openrgb.org/udev'>https://openrgb.org/udev</a> to install the udev rules manually</p>");
const char* UDEV_MUTLI = QT_TRANSLATE_NOOP("DetectionManager",
"<h2>Warning:</h2>"
"<p>Multiple OpenRGB udev rules are installed.</p>"
"<p>The udev rules file 60-openrgb.rules is installed in both /etc/udev/rules.d and /usr/lib/udev/rules.d.</p>"
"<p>Multiple udev rules files can conflict, it is recommended to remove one of them.</p>");
static const char* UDEV_MISSING = QT_TRANSLATE_NOOP("DetectionManager",
"<h2>Warning:</h2>"
"<p>The OpenRGB udev rules are not installed.</p>"
"<p>Most devices will not be available unless running OpenRGB as as a system service or as root.</p>"
"<p>If using AppImage, Flatpak, or self-compiled versions of OpenRGB you must install the udev rules manually</p>"
"<p>See <a href='https://openrgb.org/udev'>https://openrgb.org/udev</a> to install the udev rules manually</p>");
static const char* UDEV_MUTLI = QT_TRANSLATE_NOOP("DetectionManager",
"<h2>Warning:</h2>"
"<p>Multiple OpenRGB udev rules are installed.</p>"
"<p>The udev rules file 60-openrgb.rules is installed in both /etc/udev/rules.d and /usr/lib/udev/rules.d.</p>"
"<p>Multiple udev rules files can conflict, it is recommended to remove one of them.</p>");
/*---------------------------------------------------------*\
| Default hidapi wrappter that just uses default hidapi |