+ // TODO: This is a dummy-implementation to have at least all
+ // translation-strings as part of the code before the freeze
+ QString iconName;
+ QString text;
+ QString label;
+ switch (index) {
+ case 0:
+ text = i18nc("@item", "Release '%1'", label);
+ break;
+ case 1:
+ text = i18nc("@item", "Safely Remove '%1'", label);
+ iconName = "media-eject";
+ break;
+ case 2:
+ text = i18nc("@item", "Unmount '%1'", label);
+ iconName = "media-eject";
+ break;
+ default:
+ break;
+ }
+
+ //return new QAction(KIcon(iconName), text, 0);