After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 325122 - Remove double spaces typos within strings
Remove double spaces typos within strings
Status: RESOLVED FIXED
Product: evolution
Classification: Applications
Component: general
2.6.x (obsolete)
Other Linux
: Normal minor
: ---
Assigned To: André Klapper
Evolution QA team
: 325568 (view as bug list)
Depends on:
Blocks:
 
 
Reported: 2005-12-28 10:45 UTC by André Klapper
Modified: 2013-09-13 00:48 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description André Klapper 2005-12-28 10:45:34 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 &quot;"
"evolution&quot; directory will be removed permanently.  If you choose to "
"keep this data, then you may manually remove the contents of &quot;"
"evolution&quot; 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 &quot;sendmail&quot; 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 &quot;{0}&quot;, 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 &quot;{1}&quot;.  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.
Comment 1 Harish Krishnaswamy 2006-01-01 13:52:23 UTC
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 :-)
Comment 2 Simos Xenitellis 2006-01-03 06:15:18 UTC
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.");

Comment 3 André Klapper 2006-01-03 12:52:28 UTC
harish, you removed two whitespaces instead of one. :-)

ok, reopening this, setting 325568 as a duplicate of this one.
Comment 4 André Klapper 2006-01-03 12:53:02 UTC
*** Bug 325568 has been marked as a duplicate of this bug. ***
Comment 5 André Klapper 2006-01-06 14:23:44 UTC
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. :-)