| Summary: | Typos etc. in kio.po | ||
|---|---|---|---|
| Product: | [Unmaintained] kdelibs | Reporter: | Clytie Siddall <clytie> |
| Component: | general | Assignee: | kdelibs bugs <kdelibs-bugs-null> |
| Status: | RESOLVED WORKSFORME | ||
| Severity: | normal | CC: | aacid, adawit, christoph, coolo, faure, jhall, qiilaq69 |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Other | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Clytie Siddall
2006-03-25 12:55:43 UTC
AFAIK KDE3 is totally freezed, so no chance to get in there. Maybe the bug has to be reassigned kio or some of its component? I add just for case Mr. Stephan Kulow to CC, maybe he could advice what to do? I reassign it to the kio for the bug corcerns not directly translation but the need to change entries in the code. I've not checked it but suspect at least some of the indicated bugs are still there... Hopefully somebody will look at it before KDE4 is out... "Could not listen" is a very rare and rather technical error message (it means the listen() call failed), and the %1 can be any information provided by the kioslave; kopete passes the last port number that was tried while kio_ftp passes the hostname. Same thing for "could not accept", and the unused "could not bind", well %1 could even be empty, so a preposition would be a problem. I guess the whole thing needs to be refined and explained better to the user, but for this I would need to actually hit this error message, which doesn't seem easy. "showing of hidden files" is because this is about "the showing of", a noun, because it's in a list of nouns. I'm not sure it should be changed. This needs to go via a native english speaker first... Jessica Hall maybe? Number 3 is fixed already, it seems. Dawit why you move this bug to i18n? If there is wrong messages in kdelibs, that's a kdelibs bug and something you guys have to fix. Back to where it belongs I looked at it in master, the missing to is in generic error message handling, to sure if on really wants to add it there.
case KIO::ERR_CANNOT_BIND:
result = i18n("Could not bind %1.", errorText);
break;
case KIO::ERR_CANNOT_LISTEN:
result = i18n("Could not listen %1.", errorText);
break;
case KIO::ERR_CANNOT_ACCEPT:
result = i18n("Could not accept %1.", errorText);
break;
The other stuff seems fixed.
|