Advertisement
justfrenzy

CrackFlix - frontend /src/components/App/MediaModalText.tsx

May 12th, 2024
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
TypeScript 0.46 KB | Source Code | 0 0
  1. import { mediaModalProps } from "./props.interface";
  2.  
  3.  
  4. const MediaModalText = {
  5.     bg : {
  6.         min: 'мин.',
  7.         country: 'Държава',
  8.         genre: 'Жанр',
  9.         closeBtn: 'Затвори',
  10.         playBtn: 'Пусни',
  11.     },
  12.     en: {
  13.         min: 'min.',
  14.         country: 'Country',
  15.         genre: 'Genre',
  16.         closeBtn: 'Close',
  17.         playBtn: 'Play',
  18.     },
  19. } as mediaModalProps;
  20.  
  21. export default MediaModalText;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement