| 146 | |
| 147 | namespace { |
| 148 | QString profileInUseFilter(const QString & profile, bool used) |
| 149 | { |
| 150 | if(used) |
| 151 | { |
| 152 | return QObject::tr("%1 (in use)").arg(profile); |
| 153 | } |
| 154 | else |
| 155 | { |
| 156 | return profile; |
| 157 | } |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | // 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