forked from 0x2620/pandora
this, closes #3118
This commit is contained in:
parent
11c8bb9076
commit
6fb635ebf8
1 changed files with 5 additions and 1 deletions
|
@ -104,7 +104,11 @@ pandora.ui.folderList = function(id, section) {
|
||||||
operator: '+',
|
operator: '+',
|
||||||
tooltip: function(data) {
|
tooltip: function(data) {
|
||||||
return data.type == 'static'
|
return data.type == 'static'
|
||||||
? (data.editable ? Ox._('Edit {0}', [Ox._(folderItem)]) : '')
|
? (data.editable
|
||||||
|
? folderItem == "Edit"
|
||||||
|
? Ox._('Edit this {0}', [Ox._(folderItem)])
|
||||||
|
: Ox._('Edit {0}', [Ox._(folderItem)])
|
||||||
|
: '')
|
||||||
: data.type == 'smart'
|
: data.type == 'smart'
|
||||||
? (data.editable ? Ox._('Edit Query') : Ox._('Show Query'))
|
? (data.editable ? Ox._('Edit Query') : Ox._('Show Query'))
|
||||||
: data.type.toUpperCase();
|
: data.type.toUpperCase();
|
||||||
|
|
Loading…
Reference in a new issue