Use '' for non-translated strings

Pay attention to the style guidelines.

https://bugzilla.gnome.org/show_bug.cgi?id=660600
This commit is contained in:
Jasper St. Pierre
2011-09-30 17:30:47 -04:00
parent 4e114107ed
commit f13f5bc1bb
8 changed files with 16 additions and 16 deletions

View File

@ -310,7 +310,7 @@ IMStatusChooserItem.prototype = {
return;
status = this._statusForPresence(newPresence);
msg = msg ? msg : "";
msg = msg ? msg : '';
this._accountMgr.set_all_requested_presences(newPresence, status, msg);
},
@ -346,7 +346,7 @@ IMStatusChooserItem.prototype = {
return;
status = this._statusForPresence(newPresence);
msg = msg ? msg : "";
msg = msg ? msg : '';
this._expectedPresence = newPresence;
this._accountMgr.set_all_requested_presences(newPresence, status, msg);