Make the enclosure string in the mail body translatable.

This commit is contained in:
Humdinger 2011-12-04 09:04:35 +01:00
parent 068e156490
commit aabb32e118

View File

@ -2331,8 +2331,12 @@ TTextView::Reader::ParseMail(BMailContainer *container,
if (type.GetShortDescription(typeDescription) != B_OK)
strcpy(typeDescription, type.Type() ? type.Type() : B_EMPTY_STRING);
name = "\n<Enclosure: ";
name << enclosure->name << " (Type: " << typeDescription << ")>\n";
name = "\n<";
name.Append(B_TRANSLATE_COMMENT("Enclosure: %name% (Type: %type%)",
"Don't translate the variables %name% and %type%."));
name.Append(">\n");
name.ReplaceFirst("%name%", enclosure->name);
name.ReplaceFirst("%type%", typeDescription);
fView->GetSelection(&enclosure->text_start, &enclosure->text_end);
enclosure->text_start++;