| 138 | |
| 139 | |
| 140 | wxString GetConversionState(unsigned int state) |
| 141 | { |
| 142 | switch (state) { |
| 143 | case CONV_OK : return _("Completed"); |
| 144 | case CONV_INPROGRESS : return _("In progress"); |
| 145 | case CONV_OUTOFDISKSPACE : return _("ERROR: Out of disk space"); |
| 146 | case CONV_PARTMETNOTFOUND : return _("ERROR: Partmet not found"); |
| 147 | case CONV_IOERROR : return _("ERROR: IO error!"); |
| 148 | case CONV_FAILED : return _("ERROR: Failed!"); |
| 149 | case CONV_QUEUE : return _("Queued"); |
| 150 | case CONV_ALREADYEXISTS : return _("Already downloading"); |
| 151 | case CONV_BADFORMAT : return _("Unknown or bad tempfile format."); |
| 152 | default: return "?"; |
| 153 | } |
| 154 | } |
| 155 | // File_checked_for_headers |
no outgoing calls
no test coverage detected