fix menu text

This commit is contained in:
Rolux 2016-01-05 23:05:35 +05:30
parent 7682ebb1df
commit ed17a54b26
1 changed files with 3 additions and 2 deletions

View File

@ -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 ? ''