Capitalize shared|community visibility for images

Added new visibility type `shared` and `community` to be
displayed in capital case as `Shared` or `Community` in
image listing page.
Similar to
`public` ==> `Public`
`private` ==> `Private`
`

Closes Bug: #1700546

Change-Id: Ia82bcd026412ad14a98dd5dca5b83eee14113e59
This commit is contained in:
Alok Kumar 2017-06-26 18:50:16 +05:30
parent 29a6ed4cc0
commit c9f541ec1c
1 changed files with 2 additions and 0 deletions

View File

@ -62,6 +62,8 @@
var imageVisibility = {
'public': gettext('Public'),
'private': gettext('Private'),
'shared': gettext('Shared'),
'community': gettext('Community'),
'other': null,
'unknown': gettext('Unknown')
};