@cross-nft-marketplace/auction-house-nft-components
Version:
NFT Media Rendering Components
266 lines (265 loc) • 6.89 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Strings = void 0;
exports.Strings = {
/**
* Collected, used in the full page ownership view
* @default Collected by:
*/
COLLECTED: "Collected by: ",
/**
* Created by, used in the thumbnail image view
*/
CREATED: "Created by: ",
/**
* Proof of authenticity box header
* @default Proof of authenticity
*/
PROOF_AUTHENTICITY: "Proof of authenticity",
/**
* Etherscan tx view in proof of authenticity box
* @default View on Etherscan
*/
ETHERSCAN_TXN: "View on Etherscan",
/**
* View on IPFS in proof of authenticity box
* @default View on IPFS
*/
VIEW_IPFS: "View on IPFS",
/**
* View metadata in proof of authenticity box
* @default View Metadata
*/
VIEW_METADATA: 'View Metadata',
/**
* List price used in pricing components
* @default List price
*/
LIST_PRICE: "List price",
/**
* Highest Bid used in pricing components
* @default Highest bid
*/
HIGHEST_BID: "Highest bid",
/**
* Reserve price used in pricing components
* @default Reserve price
*/
RESERVE_PRICE: "Reserve price",
/**
* Available currencies pricing components
* @default Available currencies
*/
AVAILABLE_CURRENCIES: "Available currencies",
/**
* Buy now price used in pricing components
* @default Buy now price
*/
BUY_NOW_PRICE: "Buy now price",
/**
* Top bid used in pricing components
* @default Top bid
*/
TOP_BID: "Top bid",
/**
* Sold for used in pricing components
* @default Sold for
* @group test
*/
SOLD_FOR: "Sold for",
/**
* Sold at used in pricing components
*/
SOLD_AT: "Nft sold at",
/**
* Not applicable used in pricing components
*/
NOT_APPLICABLE: "N/A",
/**
* Created by text in preview card
*/
CARD_CREATED_BY: "Created by",
/**
* Owned by text in preview card
*/
CARD_OWNED_BY: "Owned by",
/**
* Ends in used in pricing components
* @default Ends in
*/
ENDS_IN: "Ends in",
/**
* Creator, used in the full page ownership view
* @default Creator
*/
CREATOR: "Creator",
/**
* Artist, used in the full page ownership view
* @default Artist
*/
ARTIST: "Artist",
/**
* Owner, used in the full page ownership view
* @default Owner
*/
OWNER: "Owner",
/**
* Used for full page when the auction ends
* @default Auction ends
*/
AUCTION_ENDS: "Auction ends",
/**
* Bidder display for full auction page
* @default Bidder
*/
BIDDER: "Bidder",
/**
* Header for NFT / bid history box on full view page
* @default History
*/
NFT_HISTORY: "History",
/**
* Title for auction duration informationbox
* @default Auction duration
*/
AUCTION_PENDING_DURATION: "Duration",
/**
* Header for the box to show categoeries
* @default Category
*/
CATEGORY: "Category",
/**
* Information for curator fee box header
* @default Curator fee
*/
CURATOR_FEE: "Curator fee",
/**
* Header showing curator information on NFT full page
* @default of proceeds go to
*/
CURATOR_PROCEEDS_DESC: " of proceeds go to",
/**
* Sold for view on full view page auction info box
* @default Sold for
*/
AUCTION_SOLD_FOR: "Sold for",
/**
* Placed a bid message for bid history box on full view page
* @default placed a bid of
*/
BID_HISTORY_BID: "placed a bid of",
/**
* Placed a bought message for bid history box on full view page
* @default bought for
*/
BID_HISTORY_PURCHASED_FOR: "bought for",
/**
* Open offers from user box
* @default Open offers
*/
OPEN_OFFERS: "Open offers",
/**
* Winner of the auction on the full view page
* @default Winner
*/
WINNER: "Winner",
/**
* Listed in bid history text
* @default listed the NFT
*/
BID_HISTORY_LISTED: "listed the NFT",
/**
* Won the auction in bid history text
* @default won the auction
*/
BID_HISTORY_WON_AUCTION: "won the auction",
/**
* Link to transaction details from bid history
* @default View Transaction
*/
BID_HISTORY_VIEW_TRANSACTION: "View Transaction",
/**
* Minted by bid history text
* @default minted the NFT
*/
BID_HISTORY_MINTED: "minted the NFT",
/**
* Shown on media proposal card for proposed by user
* @default Proposed by
*/
PROPOSED_BY: "Proposed by",
/**
* Shown on media proposal card for curator share
* @default Curator share
*/
PROPOSAL_CURATOR_SHARE: "Curator share",
/**
* Shown on media proposal card for accepted auctions
* @default Accepted
*/
PROPOSAL_ACCEPTED: "Accepted",
/**
* String to show while pricing is loading
* @default ...
*/
PRICING_LOADING: "▒▒▒▒▒",
/**
* String to show while pricing is loading
* @default ...
*/
PRICING_LOADING_LABEL: "▒▒▒▒▒▒▒▒▒▒▒",
/**
* No pricing placeholder, shown if no pricing information
* exists but content is loaded
* @default --
*/
NO_PRICING_PLACEHOLDER: "···",
/**
* Play audio button description text
*
* @default Play audio
*/
AUDIO_CONTROLS_PLAY: "Play audio",
/**
* Pause audio description text
*
* @default Pause audio
*/
AUDIO_CONTROLS_PAUSE: "Pause audio",
/**
* aria-label for video controls container, announced when user selects video controls
*
* @default Video playback controls
*/
VIDEO_CONTROLS_LABEL: "Video playback controls",
/**
* Fullscreen button accessible label
* i
* @default Fullscreen
*/
VIDEO_CONTROLS_FULLSCREEN: "Fullscreen",
/**
* Play video button description text
*
* @default Play
*/
VIDEO_CONTROLS_PLAY: "Play",
/**
* Pause video description text
*
* @default Pause
*/
VIDEO_CONTROLS_PAUSE: "Pause",
/**
* Mute video controls description text
*
* @default Mute
*/
VIDEO_CONTROLS_MUTE: "Mute",
/**
* Properties component title text
*
* @default Properties
*/
PROPERTIES_TITLE: "Properties",
};