extensionSystem: Add a DOWNLOADING state

https://bugzilla.gnome.org/show_bug.cgi?id=654770
This commit is contained in:
Jasper St. Pierre
2011-06-27 22:27:56 -04:00
parent a56cd3c3d6
commit 465d03ab2c
2 changed files with 9 additions and 0 deletions

View File

@ -690,6 +690,8 @@ Extensions.prototype = {
return _("Error");
case ExtensionSystem.ExtensionState.OUT_OF_DATE:
return _("Out of date");
case ExtensionSystem.ExtensionState.DOWNLOADING:
return _("Downloading");
}
return 'Unknown'; // Not translated, shouldn't appear
},