Summary | Fwd: string is translated |
Queue | IMP |
Queue Version | 4.1.4 |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | chuck (at) horde (dot) org |
Requester | ensc+horde (at) cvg (dot) de |
Created | 08/27/2007 (6525 days ago) |
Due | |
Updated | 10/02/2007 (6489 days ago) |
Assigned | 10/02/2007 (6489 days ago) |
Resolved | 10/02/2007 (6489 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
Assigned to Chuck Hagenbuch
State ⇒ Resolved
first google hit for "outlook rfc 850"), outlook can be configured to
use correct subject tags (inclusive 'Fwd:').
There is no way in Horde to use international 'Fwd:'.
translates Re:.
Summary ⇒ Fwd: string is translated
State ⇒ Feedback
translate Fwd, I don't think we should either.
State ⇒ Not A Bug
any of the developers.
a different language
Horde/IMP is the only MUA which enforces translation of the 'Fwd:'
string.
expensive comparison of a long list of strings every time
translated.
common case that people with different languages forward messages one
by one.
speaks a different language, it is not that big of a deal. Especially
given the alternative of having to do a potentially expensive
comparison of a long list of strings every time you want to view a
message.
whether he wants the translated version or the common 'fwd:' only?
Even Outlook has such an option...
common case that people with different . languages forward messages
one by one.
untranslated 'Fwd:' tags). IMP would make them to '<local
translation>: Fwd:'.
uncommon (and execpt IMP, I know only one major MUA which is doing it
be default).
common case that people with different languages forward messages one
by one.
whether he wants the translated version or the common 'fwd:' only?
Even Outlook has such an option...
Or at least: add a configuration option so that user can decide
whether he wants the translated version or the common 'fwd:' only?
Even Outlook has such an option...
State ⇒ Feedback
messages forth and back often, but you don't usually forward a message
several times. This was discussed in the past and decided to translate
Fwd: because it's not that common for non-English speakers as Re: is.
But we should add the translated version of Fwd: to that array you are
referencing if this isn't the case in IMP 4.2 already.
Priority ⇒ 1. Low
State ⇒ Unconfirmed
Queue ⇒ IMP
Summary ⇒ 'fwd:' string is translated
Type ⇒ Bug
indicates a forwarded message:
| $header['subject'] = _("Fwd:");
Although not explicitly stated in RFC850, this is similarly to the
'Re:' tag which is expected as-is but not as an translated string.
E.g. 'compose.php' expects the english tag to decide whether a new tag
shall be added:
| foreach (array('fwd:', 'fw:', '(fwd)', '[fwd]') as $signal) {
Using internationalized strings there results into subjects like
| "Fwd: WG: Fwd: P.ep: VS:
Hence, there should not be used _("Fwd:") but plain "Fwd:" and 'Fwd:'
should be moved out of the _(...) in
| $header['subject'] = sprintf(_("Fwd: %u Forwarded Messages"),
count($msglist));