This commit is contained in:
rolux 2015-04-20 10:13:56 +02:00
commit c6c2a425cc
16 changed files with 224 additions and 73 deletions

View file

@ -27,11 +27,17 @@ pandora.ui.makeListPrivateDialog = function(name, subscribers, callback) {
}
})
],
content: Ox._('Are you sure you want to make the {0} "{1}" private and lose its {2}?', [
folderItem.toLowerCase(),
name,
subscribers == 1 ? Ox._('subscriber') : Ox._('{0} subscribers', [subscribers])
]),
content: Ox._(
'Are you sure you want to make the {0} "{1}" private'
+ ' and lose its {2}?',
[
folderItem.toLowerCase(),
name,
subscribers == 1
? Ox._('subscriber')
: Ox._('{0} subscribers', [subscribers])
]
),
keys: {enter: 'make', escape: 'keep'},
title: Ox._('Make {0} Private', [folderItem])
});