| 95 | |
| 96 | namespace { |
| 97 | QString profileInUseFilter(const QString & profile, bool used) |
| 98 | { |
| 99 | if(used) |
| 100 | { |
| 101 | return QObject::tr("%1 (in use)").arg(profile); |
| 102 | } |
| 103 | else |
| 104 | { |
| 105 | return profile; |
| 106 | } |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | // WHY: to hold the pre-translation strings together with the T pointer, so it can be retranslated without a lot of ugly code |
no outgoing calls
no test coverage detected