Overview
Comment: | ofhttp: Translate "Error!" message |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
f79f04f882c43fa63210cbb9a36d3985 |
User & Date: | js on 2020-08-29 23:17:04 |
Other Links: | manifest | tags |
Context
2020-09-26
| ||
19:04 | runtime: Document all public functions check-in: 85ff529ac5 user: js tags: trunk | |
2020-08-30
| ||
15:40 | Merge trunk into branch "tagged-pointers" check-in: ff6eb7b6c3 user: js tags: tagged-pointers | |
2020-08-29
| ||
23:17 | ofhttp: Translate "Error!" message check-in: f79f04f882 user: js tags: trunk | |
18:41 | README.md: Instructions for verifying signatures check-in: 23608c304d user: js tags: trunk | |
Changes
Modified utils/ofhttp/OFHTTP.m from [77db884daa] to [d4c7821db4].
︙ | ︙ | |||
732 733 734 735 736 737 738 | OFString *URL; [_progressBar stop]; [_progressBar draw]; [_progressBar release]; _progressBar = nil; | | | > > > | 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 | OFString *URL; [_progressBar stop]; [_progressBar draw]; [_progressBar release]; _progressBar = nil; if (!_quiet) { [of_stdout writeString: @"\n "]; [of_stdout writeLine: OF_LOCALIZED(@"download_error", @"Error!")]; } URL = [_URLs objectAtIndex: _URLIndex - 1]; [of_stderr writeLine: OF_LOCALIZED( @"download_failed_exception", @"%[prog]: Failed to download <%[url]>!\n" @" %[exception]", @"prog", [OFApplication programName], |
︙ | ︙ |
Modified utils/ofhttp/lang/de.json from [ef4298a3ca] to [ccf7a0ea89].
︙ | ︙ | |||
64 65 66 67 68 69 70 71 72 73 74 75 76 77 | "%[prog]: Fehler beim Download von <%[url]>!\n", " %[error]: %[exception]" ], "download_failed": [ "%[prog]: Fehler beim Download von <%[url]>!\n", " HTTP Status-Code: %[code]" ], "download_failed_exception": [ "%[prog]: Fehler beim Download von <%[url]>!\n", " %[exception]" ], "download_done": "Fertig!", "invalid_url": "%[prog]: Ungültige URL: <%[url]>!", "invalid_scheme": "%[prog]: Ungültiges Schema: <%[url]>!", | > | 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | "%[prog]: Fehler beim Download von <%[url]>!\n", " %[error]: %[exception]" ], "download_failed": [ "%[prog]: Fehler beim Download von <%[url]>!\n", " HTTP Status-Code: %[code]" ], "download_error": "Fehler!", "download_failed_exception": [ "%[prog]: Fehler beim Download von <%[url]>!\n", " %[exception]" ], "download_done": "Fertig!", "invalid_url": "%[prog]: Ungültige URL: <%[url]>!", "invalid_scheme": "%[prog]: Ungültiges Schema: <%[url]>!", |
︙ | ︙ |