GNOME Bugzilla – Bug 325122
Remove double spaces typos within strings
Last modified: 2013-09-13 00:48:55 UTC
remove double spaces from #: ../mail/em-format-html-display.c "This message is not encrypted. Its content may be viewed in transit across " "This message is encrypted, but with a weak encryption algorithm. It would " "This message is encrypted, but with a weak encryption algorithm. It would " #: ../shell/e-shell-window.c msgid "Evolution is currently online. " should become only one whitespace. msgid ""Evolution is currently offline. " should become only one whitespace. #: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml <_secondary xml:space="preserve">Exchange Connector requires access to certain functionality on the Exchange Server that appears to be disabled or blocked. (This is usually unintentional.) Your Exchange Administrator will need to enable this functionality in order for you to be able to use Ximian Connector. NOTE: also, "Ximian Connector" should be renamed here ^^. #: ../shell/shell.error.xml.h msgid "" "The previous version of evolution stored its data in a different location.\n" "\n" "If you choose to remove this data, the entire contents of the "" "evolution" directory will be removed permanently. If you choose to " "keep this data, then you may manually remove the contents of "" "evolution" at your convenience.\n" #: ../addressbook/addressbook.error.xml <_secondary>A contact already exists with this address. Would you like to add a new card with the same address anyway?</_secondary> #: ../mail/mail.error.xml <_secondary xml:space="preserve">Check to make sure your password is spelled correctly. Remember that many passwords are case sensitive; your caps lock might be on.</_secondary> <_secondary xml:space="preserve">Unable to open the drafts folder for this account. Use the system drafts folder instead?</_secondary> <_secondary xml:space="preserve">The message was sent via the "sendmail" external application. Sendmail reports the following error: status 67: mail not sent. The message is stored in the Outbox folder. Check the message for errors and resend.</_secondary> <_secondary xml:space="preserve">Cannot read the license file "{0}", due to an installation problem. You will not be able to use this provider until you can accept its license.</_secondary> <_secondary xml:space="preserve">A read receipt notification has been requested for "{1}". Send the reciept notification to {0}?</_secondary> NOTE: Also change reciept to receipt here ^^. i guess there are more out there. time to find out who of the developers does this.
Thanks for the report. Sed sub'd all instances I could hit positive on these files. Please report if you can find more. You can always use CVS Blame but I guess a write-up on Do and Do nots on HACKING would be more helpful - this is spread over time and a lot of developers :-)
Harish, there is a report of both spaces being removed. See Bug 325568. Specifically, tooltip = _("Evolution is currently online." "Click on this button to work offline."); and tooltip = _("Evolution is currently offline." "Click on this button to work online."); As these are multiline messages, there should be a space as following: tooltip = _("Evolution is currently online. " "Click on this button to work offline."); and tooltip = _("Evolution is currently offline. " "Click on this button to work online.");
harish, you removed two whitespaces instead of one. :-) ok, reopening this, setting 325568 as a duplicate of this one.
*** Bug 325568 has been marked as a duplicate of this bug. ***
i added the two whitespaces back: http://cvs.gnome.org/viewcvs/evolution/shell/e-shell-window.c?r1=1.44&r2=1.45 closing as fixed - finally. :-)