Summary | (cosmetic) in French, max size of attachment contains invalid chars |
Queue | IMP |
Queue Version | 4.3 |
Type | Bug |
State | Not A Bug |
Priority | 1. Low |
Owners | |
Requester | laurent (at) opensolaris (dot) org |
Created | 11/12/2008 (6075 days ago) |
Due | |
Updated | 11/12/2008 (6075 days ago) |
Assigned | |
Resolved | 11/12/2008 (6075 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
spaces in French here.
translator's part (sorry, only beginning with .po, even though I've
wanted to look at them for years)
From what I understand, the number with invalid chars is outside a
gettext tag:
./templates/compose/compose.html:
(<gettext>Maximum Attachment Size</gettext>: <tag:attach_size
/> <gettext>
bytes</gettext>)
attach_size is generated there:
./compose.php:
$t->set('attach_size',
number_format($imp_compose->maxAttachmentSize(),
0, $localeinfo['decimal_point'], $localeinfo['thousands_sep']));
And it comes from NLS::getLocaleInfo() which uses PHP's localeconv(),
so 'thousands_sep' is a PHP constant, right? And I suppose it lacks a
conversion from ISO8859-1 to UTF-8.
Is the last one the first or the last in the list?
State ⇒ Not A Bug
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ (cosmetic) in French, max size of attachment contains invalid chars
Queue ⇒ IMP
Milestone ⇒
Patch ⇒ No
State ⇒ Unconfirmed
attachment size is shown as such, with the invalid chars symbol "white
? in black lozenge":
(Taille maximale de la pièce jointe: 2�097�152 octets)
It should be a no-break space.