A lot of translatable strings have two spaces between the period closing a sentence and the first character of a new sentence. This should just be one space. Example from /includes/handlers/gateways/pay_method.inc:
t('This is how the payment method will be listed in admin interfaces. Use something that will set this apart from other payment methods.')
| Comment | File | Size | Author |
|---|---|---|---|
| #4 | pay.double_spaces.928906.1.patch | 19.54 KB | googletorp |
Comments
Comment #1
allie mickaThis is the type of issue where a patch would be most welcome!
Comment #2
xanoThe infamous "File a patch!" :D
I've been trying to capture these occurences with the following regular expression, but for some reason I can only find matches if I use only one space character instead of two:
Comment #3
mstrelan commentedJust search for "
." as a string instead of a regular expression.Comment #4
googletorp commentedI don't know if I got them all, but I got a lot.
Comment #5
jerdavisCommitted, thanks googletorp!