[gnome-software/wip/hughsie/fwupd-cats-translations] fwupd: Provide translations for more device types
- From: Richard Hughes <rhughes src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-software/wip/hughsie/fwupd-cats-translations] fwupd: Provide translations for more device types
- Date: Wed, 24 Mar 2021 10:07:31 +0000 (UTC)
commit 93e0e54b3d5aef1e5dbbf7c73ed8858f7c47c3d1
Author: Richard Hughes <richard hughsie com>
Date: Wed Mar 24 09:57:41 2021 +0000
fwupd: Provide translations for more device types
plugins/fwupd/gs-fwupd-app.c | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
---
diff --git a/plugins/fwupd/gs-fwupd-app.c b/plugins/fwupd/gs-fwupd-app.c
index 9c9d64ec9..bb749d199 100644
--- a/plugins/fwupd/gs-fwupd-app.c
+++ b/plugins/fwupd/gs-fwupd-app.c
@@ -181,6 +181,31 @@ gs_fwupd_release_get_name (FwupdRelease *release)
* e.g. a security database or a default power value */
return g_strdup_printf (_("%s Configuration Update"), name);
}
+ if (g_strcmp0 (cat, "X-Battery") == 0) {
+ /* TRANSLATORS: battery refers to the system power source */
+ return g_strdup_printf (_("%s Battery Update"), name);
+ }
+ if (g_strcmp0 (cat, "X-Camera") == 0) {
+ /* TRANSLATORS: camera can refer to the laptop internal
+ * camera in the bezel or external USB webcam */
+ return g_strdup_printf (_("%s Camera Update"), name);
+ }
+ if (g_strcmp0 (cat, "X-TPM") == 0) {
+ /* TRANSLATORS: TPM refers to a Trusted Platform Module */
+ return g_strdup_printf (_("%s TPM Update"), name);
+ }
+ if (g_strcmp0 (cat, "X-Touchpad") == 0) {
+ /* TRANSLATORS: TouchPad refers to a flat input device */
+ return g_strdup_printf (_("%s Touchpad Update"), name);
+ }
+ if (g_strcmp0 (cat, "X-Mouse") == 0) {
+ /* TRANSLATORS: Mouse refers to a handheld input device */
+ return g_strdup_printf (_("%s Mouse Update"), name);
+ }
+ if (g_strcmp0 (cat, "X-Keyboard") == 0) {
+ /* TRANSLATORS: Keyboard refers to an input device for typing */
+ return g_strdup_printf (_("%s Keyboard Update"), name);
+ }
}
#endif
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]