| 68 | } |
| 69 | |
| 70 | QString FormatDownloadText(qint64 ready, qint64 total) { |
| 71 | return FormatTextWithReadyAndTotal( |
| 72 | tr::lng_save_downloaded, |
| 73 | ready, |
| 74 | total); |
| 75 | } |
| 76 | |
| 77 | QString FormatProgressText(qint64 ready, qint64 total) { |
| 78 | return FormatTextWithReadyAndTotal( |
no test coverage detected