fix menu text
This commit is contained in:
parent
7682ebb1df
commit
ed17a54b26
1 changed files with 3 additions and 2 deletions
|
@ -610,8 +610,9 @@ oml.ui.mainMenu = function() {
|
|||
selectionItemName = (
|
||||
selectionItems > 1 ? Ox.formatNumber(selectionItems) + ' ' : ''
|
||||
) + Ox._(selectionItems == 1 ? 'Book' : 'Books'),
|
||||
editItemName = Ox.formatNumber(selectionItems) + ' '
|
||||
+ Ox._(selectionItems == 1 ? 'Book' : 'Books'),
|
||||
editItemName = (
|
||||
selectionItems > 0 ? Ox.formatNumber(selectionItems) + ' ' : ''
|
||||
) + Ox._(selectionItems == 1 ? 'Book' : 'Books'),
|
||||
clipboardItems = oml.clipboard.items(),
|
||||
clipboardType = oml.clipboard.type(),
|
||||
clipboardItemName = !clipboardItems ? ''
|
||||
|
|
Loading…
Reference in a new issue