lbry-desktop/ui/constants/claim.js

25 lines
656 B
JavaScript
Raw Normal View History

2020-03-27 17:49:41 +01:00
export const MINIMUM_PUBLISH_BID = 0.00001;
2018-03-26 23:32:43 +02:00
export const CHANNEL_ANONYMOUS = 'anonymous';
export const CHANNEL_NEW = 'new';
2018-11-03 03:17:55 +01:00
export const PAGE_SIZE = 20;
export const MY_CLAIMS_PAGE_SIZE = 10;
export const PAGE_PARAM = 'page';
export const PAGE_SIZE_PARAM = 'page_size';
2019-10-03 23:40:54 +02:00
export const INVALID_NAME_ERROR =
__('LBRY names cannot contain spaces or reserved symbols') + ' ' + '($#@;/"<>%{}|^~[]`)';
2020-03-27 17:49:41 +01:00
export const FORCE_CONTENT_TYPE_PLAYER = [
'video/quicktime',
'application/x-ext-mkv',
'video/x-matroska',
'video/x-ms-wmv',
'video/x-msvideo',
'video/mpeg',
'video/m4v',
'audio/ogg',
'application/x-ext-ogg',
'application/x-ext-m4a',
];