File size: 180,431 Bytes
8978a83 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 |
{"translation": {"en": "A young man participates in a career while the subject who records it smiles.", "cs": ["Mladý muž se účastní závodu, zatímco ten, který jej zaznamenává, se usmívá."]}}
{"translation": {"en": "The man is scratching the back of his neck while looking for a book in a book store.", "cs": ["Muž se škrábe vzadu na krku, zatímco hledá knihu v knihkupectví."]}}
{"translation": {"en": "A person wearing goggles and a hat is sled riding.", "cs": ["Osoba s brýlemi a čepicí sáňkuje."]}}
{"translation": {"en": "A girl in a pink coat and flowered goloshes sledding down a hill.", "cs": ["Dívka v růžovém kabátě a květovaných galoších sjíždí z kopce."]}}
{"translation": {"en": "Three girls are standing in front of a window of a building.", "cs": ["Tři dívky stojí před oknem budovy."]}}
{"translation": {"en": "two dog is playing with a same chump on their mouth", "cs": ["dva psi si hrají se stejným klackem v tlamách"]}}
{"translation": {"en": "Low angle view of people suspended from the swings of a carnival ride.", "cs": ["Pohled zespoda na lidi, kteří jsou zavěšeni v houpačkách na kolotoči."]}}
{"translation": {"en": "Black and white photo of two people watching a beautiful painting", "cs": ["Černobílá fotografie dvou lidí, kteří se dívají na krásný obraz"]}}
{"translation": {"en": "Man dressed in black crosses the street screaming", "cs": ["Muž oblečený v černém přechází přes ulici a křičí"]}}
{"translation": {"en": "A child sits on street on a busy street.", "cs": ["Dítě sedí na rušné ulici."]}}
{"translation": {"en": "15 large dogs playing in a fenced yard beside a house.", "cs": ["15 velkých psů, kteří si hrají na oploceném dvorku u domu."]}}
{"translation": {"en": "A typical scene on a busy street in front of a red-painted building.", "cs": ["Typický výjev z rušné ulice před červeně natřenou budovou."]}}
{"translation": {"en": "A person walking one black dog on a leash while a yellow dog is unleashed.", "cs": ["Člověk venčí černého psa na vodítku, zatímco žlutý pes je na volno."]}}
{"translation": {"en": "Dog laying on outdoor wooden bench, with dog statue beside, yellow tennis ball laying on ground.", "cs": ["Pes leží venku na dřevěné lavičce vedle sochy psa a žlutého tenisového míčku, který leží na zemi."]}}
{"translation": {"en": "A man is riding a bike with a child.", "cs": ["Muž jede na kole s dítětem."]}}
{"translation": {"en": "A big brown dog and small white dog playing with a frisbee in their mouths.", "cs": ["Velký hnědý pes a malý bílý pes, kteří si hrají s létajícím talířem v tlamách."]}}
{"translation": {"en": "Four children are sitting against a wall having a conversation while two adult men stare into space.", "cs": ["Čtyři děti sedí u zdi a baví se, zatímco dva dospělí muži civí do prostoru."]}}
{"translation": {"en": "Three girls are sitting talking while the boys pose for the camera.", "cs": ["Tři dívky sedí a baví se, zatímco dva chlapci pózují na fotografii."]}}
{"translation": {"en": "A lifeguard building is on the sand on a cloudy day.", "cs": ["Domek plavčíka na písku v zamračeném dni."]}}
{"translation": {"en": "This is a young girl looking at a phone while the boy beside her is looking straight in to the camera.", "cs": ["Mladá dívka, která se dívá do telefonu, zatímco chlapec za ní hledí přímo do fotoaparátu."]}}
{"translation": {"en": "A high view of people walking near a beach.", "cs": ["Pohled z výšky na lidi, kteří jdou vedle pláže."]}}
{"translation": {"en": "A dog is peeing on a dog statue in a garden.", "cs": ["Pes čůrá na sochu psa v zahradě."]}}
{"translation": {"en": "A brown dog with a watering can on the ocico", "cs": ["Hnědý pes s konvičkou na čumáku"]}}
{"translation": {"en": "an African american man playing guitar and singing in an urban setting.", "cs": ["Afroameričan hraje na kytaru a zpívá na veřejném prostranství."]}}
{"translation": {"en": "A young girl dances on a stage as her blue skirt twirls.", "cs": ["Mladá dívka tancuje na pódiu a její modrá sukně se točí."]}}
{"translation": {"en": "This image is of four women dancing in dresses in front of a group of people.", "cs": ["Obrázek čtyř žen, které tančí v šatech před skupinou lidí."]}}
{"translation": {"en": "A woman stands on a subway platform waiting for the train.", "cs": ["Žena stojí na nástupiště metra a čeká na vlak."]}}
{"translation": {"en": "Two girls are wearing coats outside while eating ice cream.", "cs": ["Dvě dívky venku v kabátech jedí zmrzlinu."]}}
{"translation": {"en": "black and white shot of a man picking up a newspaper on a city street", "cs": ["černobílý snímek muže, který si bere noviny na ulici ve městě"]}}
{"translation": {"en": "A crowd is standing outside and holding up their cellphones", "cs": ["Dav stojí venku a drží nahoře své telefony"]}}
{"translation": {"en": "This image is of a dog running around a tree in a wooded area.", "cs": ["Obrázek psa, který běží okolo stromu v zalesněné oblasti."]}}
{"translation": {"en": "This image is of a man and a woman walking on a beach in front of palm trees.", "cs": ["Toto je obrázek muže a ženy, kteří jdou po pláži naproti palmám."]}}
{"translation": {"en": "Young girl holding sign : \"TENHO EM MIM TODOS OS SONHOS DO MUNDO\" sitting on shoulders of man.", "cs": ["Malá holčička, která drží nápis:\"TENHO EM MIM TODOS OS SONHOS DO MUNDO\", sedí muži na ramenou."]}}
{"translation": {"en": "A tan dog tugs on a hose from a vacuum cleaner.", "cs": ["Světle hnědý pes tahá za hadici od vysavače."]}}
{"translation": {"en": "A girl and a boy posing for a photo, in the background a lady sitting and several people standing", "cs": ["Dívka a chlapec pózují na fotografii, v pozadí sedí dáma a několik lidí stojí"]}}
{"translation": {"en": "Two people work on an elaborate sand sculpture that is shaped like a man.", "cs": ["Dva lidé pracují na složité soše z písku ve tvaru muže."]}}
{"translation": {"en": "Black and white photo of a boy in the middle of a street", "cs": ["Černobílá fotografie chlapce uprostřed ulice"]}}
{"translation": {"en": "The young girl in the white coat is clapping and clearly excited or happy.", "cs": ["Mladá dívka v bílém kabátu tleská a zřejmě je nadšená nebo šťastná."]}}
{"translation": {"en": "The dog is jumping after a toy held by the woman.", "cs": ["Pes skáče po hračce, kterou drží žena."]}}
{"translation": {"en": "White dog with brown spots digging with his paws the sand", "cs": ["Bílý pes s hnědými skvrnami hrabe packami v písku"]}}
{"translation": {"en": "A cat or dog trying to play the piano.", "cs": ["Kočka nebo pes se snaží hrát na piano."]}}
{"translation": {"en": "a child with a blue brimmed hat staring intently at something behind a fence.", "cs": ["dítě v klobouku s modrou krempou intenzivně pozoruje cosi skrz plot."]}}
{"translation": {"en": "This image is of a little girl leaning against her parents bed while she's looking at herself in the mirror.", "cs": ["Obrázek malé holčičky, která se opírá o postel svých rodičů, zatímco se na sebe dívá do zrcátka."]}}
{"translation": {"en": "A black girl hanging upside down with her little braids dragging the ground.", "cs": ["Černošská dívka visí vzhůru nohama a své malé copánky tahá po zemi."]}}
{"translation": {"en": "a black and white image of a woman in a coffee shop, and a reflection of a car in the window.", "cs": ["černobílý obrázek ženy v kavárně a s odrazem auta ve výloze"]}}
{"translation": {"en": "Black dog coming out of the beach with a toy on his trunk", "cs": ["Černý pes, který vychází z vody drží v tlamě hračku."]}}
{"translation": {"en": "Girls have suckers as they wear plastic over their costumes.", "cs": ["Dívky mají lízátka a pláštěnky přes kostýmy."]}}
{"translation": {"en": "A man holds and speaks through a megaphone in the street", "cs": ["Muž na ulici, který drží megafon a mluví do něj"]}}
{"translation": {"en": "Six children of different races stand in front of a wooden fence", "cs": ["Šest dětí různých ras stojí před dřevěným plotem"]}}
{"translation": {"en": "A child is dressed in all white with a white painted face.", "cs": ["Dítě je celé oblečeno v bílém a obličej má namalovaný na bílo."]}}
{"translation": {"en": "A man in a yellow biking shirt and sunglasses walks along a street.", "cs": ["Muž ve žlutém cyklistickém tričku a slunečních brýlích jde po ulici."]}}
{"translation": {"en": "A dog rests in the grass while its owner looks on.", "cs": ["Pes odpočívá v trávě, zatímco se na něj dívá panička."]}}
{"translation": {"en": "A woman laughs and hugs her dog as they sit on a grassy lawn together.", "cs": ["Žena se směje a objímá svého psa, zatímco oba sedí na trávníku."]}}
{"translation": {"en": "A blurry shot of someone walking through a terminal.", "cs": ["Rozmazaný snímek někoho, kdo prochází terminálem."]}}
{"translation": {"en": "A blond and white child with hands on waist", "cs": ["Blonďaté bělošské dítě s rukama v bok"]}}
{"translation": {"en": "Five white puppies huddled together with one licking the others snout.", "cs": ["Pět bílých štěňat se choulí k sobě, jeden olizuje druhému čumák."]}}
{"translation": {"en": "A puppy is content on top of a red train.", "cs": ["Spokojené štěně na vrchu červeného vlaku."]}}
{"translation": {"en": "Black dog with front legs out with one yellow bandage on one leg.", "cs": ["Černý pes s nataženýma předníma nohama a se žlutým obinadlem na jedné z nich."]}}
{"translation": {"en": "A young girl closes her eyes to enjoy the music of a guitarist on a stage.", "cs": ["Mladá dívka zavírá oči, aby si užila hudbu kytaristy na jevišti."]}}
{"translation": {"en": "Black and white photo of a woman with her guitar accompanied by a friend", "cs": ["Černobílá fotografie ženy s kytarou doprovázené přítelem"]}}
{"translation": {"en": "This is a woman looking at her phone and a man beside her drinking from a bottle.", "cs": ["Žena, která se dívá do svého telefonu a muž vedle ní pije z láhve."]}}
{"translation": {"en": "Black and white image of 3 men riding bicycles through a city street.", "cs": ["Černobílý obrázek tří mužů, kteří jedou na kole po ulici ve městě."]}}
{"translation": {"en": "Brown dog carries a bag on his back and inside a puppy", "cs": ["Hnědý pes nese na zádech tašku, uvnitř které je štěně"]}}
{"translation": {"en": "Three young people with a guitar resting on top of a mountain", "cs": ["Tři mladí lidé s kytarou odpočívají na vrcholu hory"]}}
{"translation": {"en": "A small girl and an old man do an acrobatic pirouette in front of a crowd in a street", "cs": ["Malá dívka a starý muž dělají akrobatickou piruetu před davem lidí na ulici"]}}
{"translation": {"en": "a tan dog splashes in a body of still water", "cs": ["světle hnědý pes se cáká ve vodě"]}}
{"translation": {"en": "A small dog giving a big jump to catch the ball", "cs": ["Malý pes ve velkém výskoku, aby chytil míček"]}}
{"translation": {"en": "Two men in a boat with a boy sitting on the bow holding a bottle.", "cs": ["Dva muži jsou na loďce s chlapce, co sedí na přídi a drží lahev."]}}
{"translation": {"en": "black and white picture of a girl hanging upside down and giving thumbs up", "cs": ["černobílý obrázek dívky, která visí vzhůru nohama a dává palce nahoru"]}}
{"translation": {"en": "A man with a beard is seen through a window holding a cup, while a man in the background reads a newspaper.", "cs": ["Muž s bradkou, který drží kelímek, je zachycen skrze okno, zatímco muž v pozadí si čte noviny."]}}
{"translation": {"en": "Five young children making heart shapes with their hands.", "cs": ["Pět mladých dětí dělá rukama tvar srdce."]}}
{"translation": {"en": "A large white dog trying to get on a wooden deck while in the water of a lake.", "cs": ["Velký bílý pes se snaží dostat z vody v jezeře na dřevěné molo."]}}
{"translation": {"en": "Black and white image of a little boy riding a big bicycle through the grass.", "cs": ["Černobílý obrázek malého chlapce, který jede na velkém kole po trávě."]}}
{"translation": {"en": "Two young women pause next to a wall in order to look at a cell phone.", "cs": ["Dvě mladé ženy zastavují vedle zdi, aby se podívaly na mobilní telefon."]}}
{"translation": {"en": "A crowd gathered in an urban setting uses umbrellas and plastic ponchos to protect themselves from the rain.", "cs": ["Dav shromážděný ve městě má deštníky a igelitová poncha, aby se ochránil před deštěm."]}}
{"translation": {"en": "A person jumps off of a high cliff into a river below.", "cs": ["Člověk, který skáče z vysokého útesu do řeky pod ním."]}}
{"translation": {"en": "A person on a floating raft over the rapids of a river", "cs": ["Muž sjíždí na raftu peřeje na řece"]}}
{"translation": {"en": "Two children jumping and running down a hill.", "cs": ["Dvě děti skáčou a běží dolů z kopce."]}}
{"translation": {"en": "A young child with a red sweater is jumping rope on a city sidewalk.", "cs": ["Mladé dítě s červeným svetrem skáče na chodníku přes švihadlo."]}}
{"translation": {"en": "Person behind window sill offering liquor with person standing outside of window opening.", "cs": ["Člověk za okenním parapetem, který nabízí lihoviny, a osoba, která stojí před otevřeným oknem."]}}
{"translation": {"en": "A large white dog standing on a wooden dock watching a duck swimming in a lake.", "cs": ["Velký bílý pes stojí na dřevěném mole a dívá se na kachnu, která plavá v jezeře."]}}
{"translation": {"en": "A dog in the water overlooking a sunset.", "cs": ["Pes ve vodě, který má výhled na západ slunce."]}}
{"translation": {"en": "a white dog chews on an empty plastic bottle while standing in a body of water", "cs": ["bílý pes žvýká prázdnou plastovou láhev, zatímco stojí ve vodě"]}}
{"translation": {"en": "A girl is sitting in the grass next to a white dog.", "cs": ["Dívka sedí na trávníku vedle bílého psa."]}}
{"translation": {"en": "Girl in unusual face mask with other people beside her.", "cs": ["Dívka s neobvyklou maskou na obličeji a s dalšími lidmi za ní."]}}
{"translation": {"en": "A woman holds her dog's face in her face and prepares to kiss it.", "cs": ["Žena drží obličej svého psa před svým obličejem a chystá se ho políbit."]}}
{"translation": {"en": "A group of police officers in Argentina in black and white.", "cs": ["Skupina členů argentinského policejního sboru v černobílém."]}}
{"translation": {"en": "Someone jumping off of a large cliff into a mountain lake.", "cs": ["Někdo skáče z velkého útesu do horského jezera."]}}
{"translation": {"en": "A painter is painting a larger version of a picture.", "cs": ["Malíř maluje větší verzi obrázku."]}}
{"translation": {"en": "A man and a woman look at flyers stuck in a glass.", "cs": ["Muž a žena se dívají na letáky nalepené na skle."]}}
{"translation": {"en": "a beach house next to sand and a group of people in the background of a black and white shot.", "cs": ["černobílý snímek plážového domku na písku se skupinou lidí v pozadí."]}}
{"translation": {"en": "A child wears a pair of goggles in front of a UHaul", "cs": ["Dítě, které má na sobě plavecké brýle, stojí před obchodem U-Haul."]}}
{"translation": {"en": "An old woman in a heavy jacket is eating of a plate on her lap.", "cs": ["Stará žena v teplé bundě jí z talířku na klíně."]}}
{"translation": {"en": "A person is beginning to descend the stairs to the subway in a foreign country.", "cs": ["Člověk začíná sestupovat po schodech v metru v cizí zemi."]}}
{"translation": {"en": "The girl is at a playground wearing a colorful dress.", "cs": ["Holčička na hřišti má na sobě barevné šaty."]}}
{"translation": {"en": "A person with arms extended wears a green and yellow parrot costume.", "cs": ["Člověk s roztaženýma rukama má na sobě zelenožlutý kostým papouška."]}}
{"translation": {"en": "A man is walking by himself in front of a church.", "cs": ["Muž, který jde sám před kostelem."]}}
{"translation": {"en": "A man plays a guitar and drinks a small coffee.", "cs": ["Muž hraje na kytaru a pije malou kávu."]}}
{"translation": {"en": "A man going down the stairs of the subway of the city", "cs": ["Muž, který jde dolů podchodem ve městě"]}}
{"translation": {"en": "A man walks dow a dirt path on the side of the road.", "cs": ["Muž jde po špinavé cestě podél silnice."]}}
{"translation": {"en": "A woman and her dog passing by the lake shore", "cs": ["Žena a její pes jdou po břehu jezera"]}}
{"translation": {"en": "A couple of old men sit in the sidewalk with some boxes and bags.", "cs": ["Pár starých mužů, kteří sedí na chodníku s nějakými krabicemi a taškami."]}}
{"translation": {"en": "A group of people and dogs are in a park.", "cs": ["Skupina lidí a psů v parku."]}}
{"translation": {"en": "Two women entering their dog in the yard", "cs": ["Dvě ženy vstupují se svým psem na dvorek"]}}
{"translation": {"en": "Dogs humping and playing beside a man in clear blue water at the beach.", "cs": ["Psi na sebe skáčou na pláži vedle muže v průzračné modré vodě."]}}
{"translation": {"en": "These children are keeping cool by playing in a city fountain.", "cs": ["Tyto lidi se osvěžují hraním v městské fontáně."]}}
{"translation": {"en": "A group of young girls in orange and purple perform a show.", "cs": ["Skupina mladých dívek v oranžovofialových úborech, které předvádí vystoupení."]}}
{"translation": {"en": "Two dogs swimming in a lagoon with something in their mouth", "cs": ["Dva psi plavou v laguně s něčím v tlamách"]}}
{"translation": {"en": "A cheerleader in black and orange is hoisted into the air by other cheerleaders.", "cs": ["Roztleskávačka v černooranžovém je vyzdvihována do vzduchu dalšími roztleskávačkami."]}}
{"translation": {"en": "A scene from the air of people walking on cobblestone sidewalk with a man standing near brightly colored prayer mats.", "cs": ["Pohled ze shora na lidi, kteří jdou po dlážděném chodníku a na muže, který stojí u pestrobarevných modlitebních rohoží."]}}
{"translation": {"en": "Several children are watching someone chase a ball on the sidewalk.", "cs": ["Několik dětí sleduje, jak někdo honí po chodníku míč."]}}
{"translation": {"en": "A dog is licking a man's face who has his glasses on top of his head.", "cs": ["Pes líže obličej muže, který má brýle na hlavě."]}}
{"translation": {"en": "A person wearing a blue and red outfit is standing in a sandy area near water.", "cs": ["Člověk v modročerveném oblečení stojí na písku u vody."]}}
{"translation": {"en": "A young blond woman dressed in costume is performing a baton routine on a football field.", "cs": ["Mladá blonďatá žena oblečená do úboru předvádí na fotbalovém hřišti sestavu s hůlkou."]}}
{"translation": {"en": "A man is sitting in a chair on the water's edge with a fishing pole.", "cs": ["Muž sedí na židli na břehu vody s rybářským prutem."]}}
{"translation": {"en": "A kid holding with hand up wearing a leopard mask", "cs": ["Dítě s rukou nahoře má na sobě leopardí masku"]}}
{"translation": {"en": "An owner standing still with her brown dog running toward her.", "cs": ["Panička, která stojí, a její hnědý pes běží k ní."]}}
{"translation": {"en": "A woman and her leashed dog near the edge of a pond.", "cs": ["Žena se psem na vodítku na břehu rybníka."]}}
{"translation": {"en": "A brown dog is sitting next to a man who is bending under a Christmas tree.", "cs": ["Hnědý pes sedí vedle muže, který se ohýbá pod vánoční stromek."]}}
{"translation": {"en": "A man and a woman are sitting on a park bench watching another man and woman walk by.", "cs": ["Muž a žena sedí na lavičce v parku a dívají se na jiného muže a ženu, kteří prochází okolo."]}}
{"translation": {"en": "A tan dog on a leash walking over a metal grate in the middle of a leaf covered wooden walkway.", "cs": ["Světle hnědý pes na vodítku jde přes kovovou mříž uprostřed dřevěného chodníku pokrytého listy."]}}
{"translation": {"en": "This image is of a girl looking to her right holding up three fingers.", "cs": ["Toto je obrázek dívky, která se dívá doprava a má zvednuté tři prsty."]}}
{"translation": {"en": "A boy with a hat sits on a duck riding toy.", "cs": ["Chlapec v klobouku sedí na jezdící hračce ve tvaru kachny."]}}
{"translation": {"en": "A woman taking a photograph of two women with a building of Asian architecture background", "cs": ["Žena, která fotografuje dvě ženy, v pozadí s budovou asijské architektury"]}}
{"translation": {"en": "A person dressed in white motocross gear sits on a white atv with a scenic view of mountains behind them.", "cs": ["Člověk oblečený v bílém motokrosovém vybavení sedí na bílé čtyřkolce a za ním je malebný výhled na hory."]}}
{"translation": {"en": "A boy in a white jacket stands alone by a gated door.", "cs": ["Chlapec v bílé bundě stojí sám u brány."]}}
{"translation": {"en": "A woman wearing headphones is walking on a path surrounded by trees.", "cs": ["Žena se sluchátky jde po chodníku obklopeném stromy."]}}
{"translation": {"en": "A fishmonger prepares a fish behind a table of fish neatly laid out for sale.", "cs": ["Rybář připravuje rybu za pultem s rybami určenými k prodeji."]}}
{"translation": {"en": "A woman taking her dog for a walk alongside a river in a forest.", "cs": ["Žena, která vzala svého psa na procházku podél řeky v lese."]}}
{"translation": {"en": "A bus stop vestibule on a city street with sparse snow and people walking about.", "cs": ["Vestibul autobusové zastávky na městské ulici, s popraškem sněhu a lidmi, kteří jdou okolo."]}}
{"translation": {"en": "three men is playing in a concert one have a horse mask", "cs": ["tři muži hrají na koncertě, jeden má masku koně"]}}
{"translation": {"en": "A woman on a bus with her chin in her hand with her eyes closed.", "cs": ["Žena v autobusu, která si rukou podpírá bradu a má zavřené oči."]}}
{"translation": {"en": "blond haired little girl with yellow tights, pink skirt and green top in a group activity", "cs": ["malá blonďatá dívka se žlutými punčochami, růžovou sukní a zeleným tričkem při skupinové aktivitě"]}}
{"translation": {"en": "A young girl posing for a woman who is drawing a caricature of her.", "cs": ["Mladá dívka pózuje ženě, která kreslí její karikaturu."]}}
{"translation": {"en": "A black and white scene of a woman sitting on a bench holding a leash on her dog beside water.", "cs": ["Černobílý výjev ženy, která sedí na lavičce u vody a drží vodítko svého psa."]}}
{"translation": {"en": "A black and white view of a person walking next to a big wall", "cs": ["Černobílý pohled na osobu, která jde podél velké zdi"]}}
{"translation": {"en": "A woman in a black gown buying food at a fruit and vegetables stand.", "cs": ["Žena v černé róbě nakupuje jídlo u stánku s ovocem a zeleninou."]}}
{"translation": {"en": "Bananas and other produce are displayed for sale in an outdoor market.", "cs": ["Banány a další plodiny jsou vystaveny na prodej na venkovním trhu."]}}
{"translation": {"en": "Several tourists are walking through a very nice arch on a rainy day.", "cs": ["Několik turistů prochází velmi pěkným obloukem za deštivého dne."]}}
{"translation": {"en": "Police dog waits patiently near sidewalk near a man in rubber boots and helmet.", "cs": ["Policejní pes trpělivě čeká u chodníku vedle muže v gumových botách a v helmě."]}}
{"translation": {"en": "A cat grabs a person's foot and bites it", "cs": ["Kočka popadá člověka za nohu a kouše do ní"]}}
{"translation": {"en": "A person sitting with crossed hands and a rat next to him", "cs": ["Osoba sedí se skříženýma rukama s krysou vedle sebe."]}}
{"translation": {"en": "A small brown eyed black dog adorned with a white fur rimmed red santa claus hat, sits on a wooden floor and stares off to the right of it.", "cs": ["Malý hnědooký černý pes, ozdobený bílou santa clausovskou čepicí lemovanou kožešinou, sedí na dřevěné podlaze a hledí napravo od něj."]}}
{"translation": {"en": "A woman holding a newborn sitting on a couch with a man holding a dog inspecting the newborn.", "cs": ["Žena, která drží novorozené dítě, sedí na gauči s mužem držícím psa, který si novorozence prohlíží."]}}
{"translation": {"en": "A gravel alleyway with over grown grass along the sides of worn out buildings.", "cs": ["Štěrková ulička s přerostlou trávou okolo ošuntělých budov"]}}
{"translation": {"en": "two people walking down a street next to a trash can.", "cs": ["dva lidé jdou po ulici okolo odpadkového koše"]}}
{"translation": {"en": "Black and white image of man sitting on small wall with young man standing next to him.", "cs": ["Černobílý obrázek muže sedícího na zídce a malého chlapce stojícího vedle něj."]}}
{"translation": {"en": "A black dog with a toy in its mouth walking in the water.", "cs": ["Černý pes s hračkou v tlamě jde ve vodě."]}}
{"translation": {"en": "A black puppy wearing a gold tag walks along tire tracks in the snow.", "cs": ["Černé štěně se zlatou známkou jde po otiscích pneumatik ve sněhu."]}}
{"translation": {"en": "Black and white image of a boy under ten years of age near a stairwell looking through the bars of a fence toward the camera.", "cs": ["Černobílý snímek chlapce do deseti let věku, který stojí vedle schodiště a dívá se skrz zábradlí do fotoaparátu."]}}
{"translation": {"en": "Two women sitting and man with camera standing next to them", "cs": ["Dvě ženy sedí a muž s fotoaparátem stojí vedle nich"]}}
{"translation": {"en": "Two women with linked arms are walking down a street.", "cs": ["Dvě ženy jdou po ulici se spojenými pažemi."]}}
{"translation": {"en": "A man is kneeling with his head lowered in a dark room with small lights on either side.", "cs": ["Muž klečí se skloněnou hlavou v temném pokoji osvětleném dvěma malými světly na každé straně."]}}
{"translation": {"en": "This image is of a dog sitting down looking at someone who is taking the picture of him.", "cs": ["Obrázek psa, který sedí a dívá se na někoho, kdo jej fotografuje."]}}
{"translation": {"en": "A man wearing a hat is sitting on the ground.", "cs": ["Muž s kšiltovkou sedí na zemi."]}}
{"translation": {"en": "Several people examining samples of fabric hung in a long row .", "cs": ["Několik lidí, kteří si prohlíží vzorky látek visící v dlouhé řadě."]}}
{"translation": {"en": "A white dog with a brown face is sitting on a brick walkway.", "cs": ["Bílý pes s hnědým obličejem sedí na cihlovém chodníku."]}}
{"translation": {"en": "A person holds onto the moving rail of a moving walkway.", "cs": ["Osoba se drží madla u pohyblivého chodníku."]}}
{"translation": {"en": "A person wearing a coat and scarf is writing in an open ledger.", "cs": ["Člověk v kabátu a šále píše do otevřené knihy."]}}
{"translation": {"en": "A couple of color, in what appears to be an amusement park", "cs": ["Barevný pár, nejspíše v zábavním parku"]}}
{"translation": {"en": "A young ponytailed woman with a jacket on stands in a subway train against the wall with her arms crossed.", "cs": ["Mladá žena s culíkem a v bundě stojí v metru u zdi se zkříženýma rukama."]}}
{"translation": {"en": "3 dogs, two black boxers and a small tan dog play in the snow.", "cs": ["3 psi, dva černí boxeři a jeden malý světle hnědý pes, kteří si hrají ve sněhu."]}}
{"translation": {"en": "A brown dog is about to bite a black and white dog.", "cs": ["Hnědý pes se chystá kousnout černobílého psa."]}}
{"translation": {"en": "A dog is jumping up trying to see over a concrete wall.", "cs": ["Pes vyskakuje, aby se podíval přes betonovou zeď."]}}
{"translation": {"en": "A bulldog is sitting in a chair at a table with an orange coffee cup.", "cs": ["Buldog sedí na židli u stolu s oranžovým kávovým šálkem."]}}
{"translation": {"en": "A blonde woman unlocks the glass door of a shop.", "cs": ["Blonďatá žena otevírá skleněné dveře obchodu."]}}
{"translation": {"en": "A person and a black dog sitting in front of a television set.", "cs": ["Člověk a černý pes sedící před televizorem."]}}
{"translation": {"en": "A man stands in a canter aisle of rows of empty pews.", "cs": ["Muž stojí v uličce mezi řadami prázdných kostelních lavic."]}}
{"translation": {"en": "A woman in a flowered skirt walking three children toward a woman and a boy.", "cs": ["Žena v květované sukni se třemi dětmi jde směrem k ženě a chlapci."]}}
{"translation": {"en": "A dog is wandering without a leash in front of a building.", "cs": ["Pes se potuluje před budovou bez vodítka."]}}
{"translation": {"en": "A woman wearing a checkered coat and carrying a purse.", "cs": ["Žena, která má kostkovaný kabát a drží peněženku."]}}
{"translation": {"en": "A red VW 'bug' sits in the foreground of a festival.", "cs": ["Červený VW \"brouk\" stojí v popředí festivalu."]}}
{"translation": {"en": "A man and three women, two of them speaking to each other, sit on a white bench.", "cs": ["Muž a tři ženy sedí na bílé lavičce, dvě z nich se baví mezi sebou."]}}
{"translation": {"en": "A woman is walking with her arm around a child.", "cs": ["Žena jde s rukou okolo dítěte."]}}
{"translation": {"en": "Two construction workers lean against supplies as they talk.", "cs": ["Dva stavební dělníci, kteří se opírají o materiál a baví se."]}}
{"translation": {"en": "a group of three men and a woman walking up stairs from an underground tunnel", "cs": ["skupina tří mužů a jedné ženy, kteří jdou po schodech z podchodu"]}}
{"translation": {"en": "The man and woman are holding hands.", "cs": ["Muž a žena, kteří se drží za ruce."]}}
{"translation": {"en": "Group of women and young girls with hand up in flamenco style on pavement.", "cs": ["Skupina žen a mladých dívek na chodníku s rukou nahoře ve stylu flamenca."]}}
{"translation": {"en": "A person runs towards another at a large monument.", "cs": ["Jeden člověk běží směrem ke druhému u velkého památníku."]}}
{"translation": {"en": "Two kids wearing winter outfit poising for a picture in black and white", "cs": ["Dvě děti v zimním oblečení, které pózují na černobílý snímek"]}}
{"translation": {"en": "Multiple pedestrians sitting, standing, and walking in an urban plaza with an elderly man in the foreground.", "cs": ["Několik chodců sedí, stojí a prochází se po náměstí ve městě, v popředí je postarší muž."]}}
{"translation": {"en": "a black and white image of a guy at a bench drinking a bottle of beer.", "cs": ["černobílý obrázek chlápka na lavičce, který pije pivo z láhve."]}}
{"translation": {"en": "A young woman, with flowers in her hair, poses in a long red dress with a sheer skirt.", "cs": ["Mladá žena s květy ve vlasech pózuje v dlouhých červených šatech s průhlednou sukní."]}}
{"translation": {"en": "A black bird decoy is stuck in the opening of wire fence.", "cs": ["Návnada v podobě černého ptáka je zaklesnutá v pleťovém plotě."]}}
{"translation": {"en": "A medium sized bird sits on an ivy covered metal fence.", "cs": ["Středně velký pták sedí na drátěném plotu pokrytým břečťanem."]}}
{"translation": {"en": "a top down view of a man reading a magazine at a table", "cs": ["pohled shora na muže, který si čte u stolu časopis"]}}
{"translation": {"en": "This image is of three kids with their faces painted posing for a photo.", "cs": ["Obrázek tří dětí s pomalovanými obličeji, které pózují na fotografii."]}}
{"translation": {"en": "A yellow labrador is about to pick up an egg from the grass.", "cs": ["Žlutý labrador se chystá zvednout vajíčko z trávy."]}}
{"translation": {"en": "This is a outdoor scene with rocks and a small body of water with a bridge in the background.", "cs": ["Venkovní pohled na kameny, malou vodní hladinu a most v pozadí."]}}
{"translation": {"en": "two women walking in a depressing urban area with a muggy cloudy day.", "cs": ["dvě ženy jdou za zamračeného dusného dne po nehezké městské části."]}}
{"translation": {"en": "A man sitting holding a stroller that has a fluffy medium size dog in it.", "cs": ["Muž sedí a drží sportovní kočárek, ve kterém je středně velký chlupatý pes."]}}
{"translation": {"en": "A man wearing dark shorts is walking past another man wearing a red shirt.", "cs": ["Muž v tmavých šortkách, který prochází okolo jiného muže v červeném tričku."]}}
{"translation": {"en": "A girl in a jean jacket playing the guitar and singing into a microphone.", "cs": ["Dívka v džínové bundě hraje na kytaru a zpívá do mikrofonu."]}}
{"translation": {"en": "Four men at the top of a set of stairs and one man walking up the stairs.", "cs": ["Čtyři lidé na vrchu schodiště, jede jde po schodech."]}}
{"translation": {"en": "Black and white picture of kids running down steps before their mother.", "cs": ["Černobílý obrázek dětí, které běží dolů po schodech před svou matkou."]}}
{"translation": {"en": "A lady walks while the shadow covers part of a house.", "cs": ["Dáma prochází okolo domu, který je částečně zastíněn."]}}
{"translation": {"en": "A small child in a hat is holding a shovel as someone hold onto her arm.", "cs": ["Malé dítě v čepici drží lopatku a někdo jej drží za ruku."]}}
{"translation": {"en": "Young boy and man on deck of a ship outside in the sun.", "cs": ["Mladý chlapec a muž na palubě lodi venku na slunci."]}}
{"translation": {"en": "Two girls one with a cap and the other with sunglasses", "cs": ["Dvě dívky, jedna s kloboukem, druhá se slunečními brýlemi."]}}
{"translation": {"en": "Black and white photo of a man and his wife near a car", "cs": ["Černobílá fotografie muže a jeho ženy vedle auta"]}}
{"translation": {"en": "A woman wearing a red coat walks down a street next to a building.", "cs": ["Žena v červeném kabátu jde po ulici vedle budovy."]}}
{"translation": {"en": "A man stands at the end of a bridge and underneath it, large trees.", "cs": ["Muž stojí na konci mostu a pod velkými stromy."]}}
{"translation": {"en": "This is a window in a concrete brick wall with a man on the other side walking.", "cs": ["Jedná se o okno v betonové zdi a muž, který prochází po druhé straně."]}}
{"translation": {"en": "an old woman is standing on the street (photo in black and white)", "cs": ["stará žena stojí na ulici (černobílá fotografie)"]}}
{"translation": {"en": "A young man appears to be in the middle of a splash fight in a pool.", "cs": ["Mladý muž, který vypadá, že se nachází uprostřed vodní bitvy v bazénu."]}}
{"translation": {"en": "This cute little girl is looking for somebody, probably her mother.", "cs": ["Tato roztomilá malá holčička se na někoho dívá, pravděpodobně na svou matku."]}}
{"translation": {"en": "A young girl dressed in a coat and hat standing on a sidewalk with other people walking around behind her.", "cs": ["Mladá dívka oděná v kabátu a čepici stojí na chodníku a za ní prochází jiní lidé."]}}
{"translation": {"en": "A small girl wearing glasses and winter clothes is surrounded by several other people wearing winter clothes.", "cs": ["Malá holčička s brýlemi a v zimním oblečení, která je obklopena několika lidmi v zimních oděvech."]}}
{"translation": {"en": "Black and white picture of man sitting by a window.", "cs": ["Černobílý obrázek muže, který sedí u okna."]}}
{"translation": {"en": "A young boy with a beanie is next to a car in the city", "cs": ["Mladý chlapec v čepici je vedle auta ve městě"]}}
{"translation": {"en": "A young boy stands beside a street, colored in black and white.", "cs": ["Mladý chlapec stojí vedle ulice, černobíle zabarvené."]}}
{"translation": {"en": "A white and black dog is shaking the water out of its fur.", "cs": ["Černobílý pes si vytřepává vodu z kožichu."]}}
{"translation": {"en": "A man rows his boat through the water with yellow oars.", "cs": ["Muž vesluje po vodě na svém člunu se žlutými vesly."]}}
{"translation": {"en": "Several young girls performing a dance routine on a stage.", "cs": ["Několik mladých dívek předvádí na jevišti taneční vystoupení."]}}
{"translation": {"en": "A man in a coat and hat walks by a red sign.", "cs": ["Muž v kabátu jde okolo červeného nápisu."]}}
{"translation": {"en": "A child with yellow ear muffs watches a show.", "cs": ["Dítě se žlutými sluchátky pozoruje představení."]}}
{"translation": {"en": "The brown dog jumps in the air to catch a yellow toy.", "cs": ["Hnědý pes skáče do vzduchu, aby chytil žlutou hračku."]}}
{"translation": {"en": "One girl in a red and black dress with another in a white dress.", "cs": ["Jedna dívka v červenočerných šatech, jiná v bílých šatech."]}}
{"translation": {"en": "a group of little girls at a birthday party, and one little girl is saying something to the other.", "cs": ["skupina malých holčiček na narozeninové oslavě, jedna dívka říká něco druhé"]}}
{"translation": {"en": "Men's rugby match where one man throws himself over another", "cs": ["Zápas mužského rugby, při kterém jeden muž hází s jiným"]}}
{"translation": {"en": "A rugby player in blue runs with ball while other players surround him.", "cs": ["Hráč rugby v modrém běží s míčem, zatímco jej ostatní hráči obklopují."]}}
{"translation": {"en": "Woman in blue swimsuit wet her hair in the river", "cs": ["Žena v modrých plavkách, která si namáčí vlasy v řece"]}}
{"translation": {"en": "A young girl eats a small treat as another girl rests her head on her arm and looks on.", "cs": ["Malá holčička jí malý kousek jídla, jiná dívka má hlavu položenou na ruce a sleduje ji."]}}
{"translation": {"en": "Polo players push their horses to be the first to get to the ball.", "cs": ["Hráči póla pobízí své koně, aby se dostali k míči jako první."]}}
{"translation": {"en": "People playing polo with five people in action on their horses.", "cs": ["Lidé hrají polo s pěti lidmi na koních v akci."]}}
{"translation": {"en": "A woman wearing a blue dress standing outside of a storefront on the sidewalk near steps.", "cs": ["Žena v modrých šatech stojí na chodníku před obchodem poblíž schodů."]}}
{"translation": {"en": "The two girls in bowties and collared shirts hold hands.", "cs": ["Dvě dívky v kravatách a v košilích s límečky se drží za ruce."]}}
{"translation": {"en": "Three people with surfboards on the shore of the beach", "cs": ["Tři lidé se surfy na kraji pláže"]}}
{"translation": {"en": "A woman is on a mountain and to the front has a beautiful beach.", "cs": ["Žena je na hoře a před sebou má krásnou pláž."]}}
{"translation": {"en": "A woman with curly hair and blue jacket walking by a shop window on a city sidewalk.", "cs": ["Žena s kudrnatými vlasy v modré bundě prochází po chodníku okolo výlohy obchodu."]}}
{"translation": {"en": "Two women walking on the wet floor of the city", "cs": ["Dvě ženy jdou ve městě po mokré zemi"]}}
{"translation": {"en": "Two people stand outside a large white building overlooking a city.", "cs": ["Dva lidé stojí venku u velké bílé budovy s výhledem na město."]}}
{"translation": {"en": "man in the water on a tiny sail boat", "cs": ["muž ve vodě na malé plachetnici"]}}
{"translation": {"en": "A fluffy brown and white dog leaping through an obstacle course.", "cs": ["Chlupatý hnědobílý pes skáče přes překážkovou dráhu."]}}
{"translation": {"en": "There are five zebras running in front of a leopard", "cs": ["Pět zeber, které běží před leopardem"]}}
{"translation": {"en": "A dirt biker in yellow and blue rides through the course.", "cs": ["Špinavý jezdec ve žlutomodrém jede po trati."]}}
{"translation": {"en": "Two people are riding on dirt bikes and jumping in the air.", "cs": ["Dva lidé jedou na špinavých motorkách a skáčou do vzduchu."]}}
{"translation": {"en": "A colorful bird catches a red fish as it jumps out of the water", "cs": ["Barevný pták chytá při výskoku z vody červenou rybu."]}}
{"translation": {"en": "what looks like a family dinner, and a young boy looks over at the photographer.", "cs": ["vypadá to jako rodinná večeře, a mladý chlapec se dívá na fotografa"]}}
{"translation": {"en": "A woman and two men standing on the corner of a city", "cs": ["Žena a dva muži stojí na rohu ulice"]}}
{"translation": {"en": "A man collecting things from the street for his use", "cs": ["Muž sbírá věci z ulice pro svou potřebu"]}}
{"translation": {"en": "Athlete running at full speed in a competition", "cs": ["Sportovec běžící v závodu plnou rychlostí"]}}
{"translation": {"en": "Two girls and a dog are sitting and playing on a rock by the river.", "cs": ["Dvě dívky a pes sedí a hrají si na kameni u řeky."]}}
{"translation": {"en": "A very athletic boxer hitting the sack", "cs": ["Velmi atletická boxerka udeřuje do pytle"]}}
{"translation": {"en": "There is a boy with a yellow shirt doing tricks on a skateboard.", "cs": ["Chlapec ve žlutém tričku, který dělá triky na skateboardu."]}}
{"translation": {"en": "A man is waiting and watching a train go by", "cs": ["Muž čeká a dívá se, jak okolo projíždí vlak."]}}
{"translation": {"en": "A black and white photo of woman on phone with young girl beside her on a city walk.", "cs": ["Černobílá fotografie ženy, která telefonuje, a malé dívky vedle ní, na procházce ve městě."]}}
{"translation": {"en": "A group of men on bikes are racing down the street.", "cs": ["Skupina mužů na kolech závodí na ulici."]}}
{"translation": {"en": "People are riding bicycles down a street in a race.", "cs": ["Lidé jedou během závodu na kolech po silnici."]}}
{"translation": {"en": "A man wearing a safety helmet, blue t-shirt, and back pack, is bicycling through an overgrowth of vegetation in a wooded area consisting of white birch trees.", "cs": ["Muž v bezpečnostní helmě, modrém tričku a s černým batohem, jede na kole skrze vzrostlou vegetaci v oblasti zalesněné bílými břízami."]}}
{"translation": {"en": "A man and two young children enjoying the beach and several sailboats on the water.", "cs": ["Muž a dvě malé děti, kteří se baví na pláži, na vodě je několik plachetnic."]}}
{"translation": {"en": "An otter floating in the water with bubbles all around.", "cs": ["Vydra plave ve vodě a všude okolo jsou bublinky."]}}
{"translation": {"en": "Three people are holding on as they go tubing on a lake.", "cs": ["Tři lidé, kteří se drží, zatímco jedou po jezeře na nafukovací duši."]}}
{"translation": {"en": "A girl in a polka dot shirt plays outside in water spray.", "cs": ["Dívka v puntíkovaném tričku, která si hraje ve vodní spršce."]}}
{"translation": {"en": "people ride bikes down a windy road next to a mountain.", "cs": ["lidé jedou na kole po větrné silnici vedle hory."]}}
{"translation": {"en": "Low angle view of male cyclists racing around a curve.", "cs": ["Pohled zespodu na cyklistu, který projíždí zatáčkou."]}}
{"translation": {"en": "Two women sitting at a cafe table on the side walk laughing while one drinks an iced coffee and the other looks at her phone.", "cs": ["Dvě ženy, které sedí u stolku v kavárně na kraji chodníku, se smějí, jedna pije ledovou kávu a druhá se dívá do svého telefonu."]}}
{"translation": {"en": "The view of a beautiful bird in free fall", "cs": ["Pohled na nádherného ptáka ve volném pádu"]}}
{"translation": {"en": "A man in a vintage race car wearing a white helmet driving on a track.", "cs": ["Muž s bílou helmou jede po trati ve starém závodním autě."]}}
{"translation": {"en": "A man is doing the cannon ball as he jumps into the water.", "cs": ["Muž skáče vajíčkem do vody."]}}
{"translation": {"en": "An old photograph showing people sitting on the edge of a street", "cs": ["Stará fotografie, která zachycuje lidi sedící na kraji ulice"]}}
{"translation": {"en": "A woman wearing black pants and shirt is doing a pose.", "cs": ["Žena v černých kalhotách a tričku pózuje."]}}
{"translation": {"en": "A biker on a bicycle and biking gear going down the highway by a yellow line.", "cs": ["Cyklista na kole s cyklistickou výbavou jede po silnici podle žluté čáry."]}}
{"translation": {"en": "A woman is leaping in the air while a bunch of other girls dance behind her.", "cs": ["Žena vyskočí do vzduchu, zatímco skupina dalších dívek za ní tancuje."]}}
{"translation": {"en": "A woman in a yellow top and black shorts is surfing a high wave on a white surf board.", "cs": ["Žena ve žlutém vršku a v černých šortkách surfuje na bílém prkně po vysoké vlně."]}}
{"translation": {"en": "Cyclists are participating in some sort of race through a park with several tall city buildings in the background.", "cs": ["Cyklisté se účastní nějakého závodu v parku s několika vysokými městskými budovami v pozadí."]}}
{"translation": {"en": "Several white water rafts full of passengers are being guided through a tight space in the river.", "cs": ["Několik raftů plně naložených lidmi proplouvá úzkým místem na řece."]}}
{"translation": {"en": "Four cyclists are riding in a row.", "cs": ["Čtyři cyklisté jedou v řadě."]}}
{"translation": {"en": "Three bicyclists ride down a trail through a lush, green forest.", "cs": ["Tři cyklisté projíždí po pěšině skrze svěží zelený les."]}}
{"translation": {"en": "A young man creates a splash as he catches a wave on his surfboard.", "cs": ["Mladý muž kolem sebe cáká vodu během toho co na svém surfu chytá vlnu."]}}
{"translation": {"en": "the pitcher for the jays is about to launch a ball to the batter.", "cs": ["nadhazovač Jays se chystá nadhodit míček pálkaři."]}}
{"translation": {"en": "dog jumping over a hurdle with his mouth open at a fair while people watch him.", "cs": ["pes skáče s otevřenou hubou přes překážku na veletrhu, zatímco jej sledují lidé."]}}
{"translation": {"en": "Eye level view of girls holding hands in a circle.", "cs": ["Pohled ve výšce očí na dívky, které se drží za ruce v kroužku."]}}
{"translation": {"en": "A small boy posing for the camera on stairs", "cs": ["Malý chlapec pózuje na schodech na fotografii"]}}
{"translation": {"en": "A man from Uruguay is running through a park as part of a race or marathon.", "cs": ["Muž z Uruguaye, který běží parkem, je součástí závodu nebo maratonu."]}}
{"translation": {"en": "This image is of a band onstage performing in front of a crowd of people.", "cs": ["Obrázek kapely na pódiu, která vystupuje před publikem."]}}
{"translation": {"en": "girl jumping out of the surf of the ocean.", "cs": ["dívka skáče ze surfu do oceánu."]}}
{"translation": {"en": "A cycle race through city streets with a man in a red uniform on his bike taking a corner in the lead.", "cs": ["Cyklistický závod v ulici města ve vedení s mužem v červeném dresu, který projíždí zatáčkou."]}}
{"translation": {"en": "a women in a bikini surfing on a sunny day.", "cs": ["žena v bikinách surfuje za slunného dne"]}}
{"translation": {"en": "girl competitors playing a game of outdoor hockey", "cs": ["závodnice hrají zápas venkovního hokeje"]}}
{"translation": {"en": "A soccer player tries to control the ball while a defender tries to take it away.", "cs": ["Fotbalista se snaží dostat míč pod kontrolu, zatímco obránce se jej snaží získat."]}}
{"translation": {"en": "This surfer is trying to avoid wiping out.", "cs": ["Tento surfař se snaží vyvarovat pádu."]}}
{"translation": {"en": "A man crouched on a surfboard in the water while riding a wave.", "cs": ["Muž přikrčený ve vodě na surfovém prkně, zatímco jede na vlně."]}}
{"translation": {"en": "A man wearing a green shirt is holding a baby in an area of water.", "cs": ["Muž v zeleném tričku drží dítě na hladině."]}}
{"translation": {"en": "A surfer takes a jump while out on the waves.", "cs": ["Surfař skáče na vlnách."]}}
{"translation": {"en": "Football players are playing in a school game with gold and blue uniforms playing against white and black.", "cs": ["Fotbalisté hrají školní zápas ve zlatomodrých dresech proti bíločerným."]}}
{"translation": {"en": "A person riding a parachute down to the ground.", "cs": ["Člověk přistává s padákem na zem."]}}
{"translation": {"en": "The windmills are lit up along the dark path.", "cs": ["Větrné mlýny, které jsou rozsvíceny na tmavé cestě."]}}
{"translation": {"en": "Black woman dressed in white who disputed with white women dressed in blue.", "cs": ["Černoška oblečená v bílém, která bojuje s běloškou oblečenou v modrém."]}}
{"translation": {"en": "Two soccer players in different uniforms struggle to take control of the ball", "cs": ["Dva fotbaloví hráči v rozdílných dresech bojují o míč"]}}
{"translation": {"en": "Low angle view of two male cyclists racing around a corner.", "cs": ["Pohled zespodu na dva cyklisty, kteří závodí v zatáčce."]}}
{"translation": {"en": "Six men are in a line as they are riding their bikes.", "cs": ["Šest mužů, kteří jedou v řadě na kolech."]}}
{"translation": {"en": "Two cyclist on bikess, one wearing red shirt and helmet, the other wearing green shirt and helmet.", "cs": ["Dva cyklisté na kolech, jeden má na sobě červené tričko a helmu, druhý má zelené tričko a helmu."]}}
{"translation": {"en": "A man driving a green racing car identified with the number 5", "cs": ["Muž, který řídí zelené závodní auto označené číslem 5"]}}
{"translation": {"en": "Girls playing volleyball are celebrating while fans cheer them on.", "cs": ["Dívky, které hrají volejbal, oslavují, zatímco je povzbuzují fanoušci."]}}
{"translation": {"en": "a soccer game and the player in the red is attempting to steal the ball from the player in the green.", "cs": ["fotbalový zápas, hráč v červeném se chystá sebrat míč hráči v zeleném."]}}
{"translation": {"en": "A soccer player makes a move against his opponent.", "cs": ["Fotbalista dělá rychlý pohyb proti svému soupeři."]}}
{"translation": {"en": "Two young females on opposing teams are playing field hockey.", "cs": ["Dvě mladé ženy z konkurenčních týmů hrají pozemní hokej."]}}
{"translation": {"en": "A soccer player in gray making a successful shot on goal in a soccer game.", "cs": ["Fotbalista v šedém úspěšně vystřelil na branku při hře."]}}
{"translation": {"en": "This image is of a man swinging a bat at a baseball while people watch.", "cs": ["Obrázek muže, který při baseballu odpaluje pálkou, zatímco jej pozorují lidé."]}}
{"translation": {"en": "A boy and a Japanese girl go on a bus with their bags on their legs.", "cs": ["Chlapec a japonská dívka jedou v autobuse s taškami na klíně."]}}
{"translation": {"en": "Beautiful fireworks in the middle of the night with a tower at the end", "cs": ["Krásný ohňostroj uprostřed noci, s věží vzadu."]}}
{"translation": {"en": "A group of guys with cameras and hands in the air.", "cs": ["Skupina kluků s kamerami a rukama ve vzduchu."]}}
{"translation": {"en": "young man jumping on a ramp with a scooter", "cs": ["mladý muž skáče na rampě na koloběžce"]}}
{"translation": {"en": "there is a man riding a mountain bike", "cs": ["muž na horském kole"]}}
{"translation": {"en": "Girls wearing black leotards are dancing on a stage.", "cs": ["Dívky v černých úborech tancují na pódiu."]}}
{"translation": {"en": "A man is walking out of a cave and onto a beach.", "cs": ["Muž vychází z jeskyně na pláž."]}}
{"translation": {"en": "A man is running into the waves of the ocean with a surf board.", "cs": ["Muž běží do vln oceánu se surfovým prknem."]}}
{"translation": {"en": "A group of men in bathing suits are looking at the water and rocks.", "cs": ["Skupina mužů v plavkách se dívá na vodu a na kameny."]}}
{"translation": {"en": "A bird is flying out of the water with a fish in its mouth.", "cs": ["Pták letí z vody s rybou v zobáku."]}}
{"translation": {"en": "A orange and white old model volkswagen van full with people on the road", "cs": ["Oranžovobílý starý model dodávky volkswagen na silnici, který je plný lidí"]}}
{"translation": {"en": "The man is pitching a baseball game in front of a large crowd.", "cs": ["Muž začíná baseballový zápas nadhozem před mnoha diváky."]}}
{"translation": {"en": "Black and white photo of a man walking on the beach with his ball", "cs": ["Černobílá fotografie muže, který jde po pláži s balonem"]}}
{"translation": {"en": "A person on a black and yellow jet ski with boats in the background.", "cs": ["Člověk na černožlutém vodním skútru, s loděmi v pozadí."]}}
{"translation": {"en": "Some children gather around a man who is putting up a mural on a wall.", "cs": ["Několik dětí se shlukuje okolo muže, který natírá zeď."]}}
{"translation": {"en": "Blue-green choppy water with a black and a red speed boat in the background and a red bouy marker.", "cs": ["Modrozelená rozbouřená voda s černočerveným motorovým člunem v pozadí a červenou bójkou."]}}
{"translation": {"en": "Three people playing football, two wearing purple, the other holding ball and wearing white.", "cs": ["Tři lidé hrají fotbal, dva ve fialovém, další, který drží míč, je v bílém."]}}
{"translation": {"en": "This image is of two hummingbirds sitting on top of a flower.", "cs": ["Toto je obrázek dvou kolibříků sedících na vrcholu květiny."]}}
{"translation": {"en": "A large boat sails across a body of water with shipping containers and trees in the background.", "cs": ["Velký člun pluje po hladině, v pozadí jsou přepravní kontejnery a stromy."]}}
{"translation": {"en": "A man stands with his leg up on a rail looking at the water.", "cs": ["Muž stojí s nohou na zábradlí a dívá se na vodu."]}}
{"translation": {"en": "A young person is performing a BMX stunt with their bike at a BMX course on a sunny day.", "cs": ["Mladý člověk předvádí za slunečného dne na svém kole BMX kousek na BMX dráze."]}}
{"translation": {"en": "A large black horse standing in front of two buckets.", "cs": ["Velký černý kůň stojí před dvěma kyblíky."]}}
{"translation": {"en": "A dog running on the shore of the beach", "cs": ["Pes běží na břehu pláže"]}}
{"translation": {"en": "A football player in red throws the ball while another player in white runs toward him.", "cs": ["Fotbalista v červeném hází míč, zatímco jiný hráč běží směrem k němu."]}}
{"translation": {"en": "A woman dressed in pioneer clothing sitting at a table with a book in a room with yellow wallpaper.", "cs": ["Žena oblečená ve starodávných šatech sedí u stolu s knihou v pokoji se žlutou tapetou."]}}
{"translation": {"en": "A group of people contemplating a beautiful sunset", "cs": ["Skupina lidí si rozjímá při západu slunce."]}}
{"translation": {"en": "a man in thick protective clothing standing over a dog", "cs": ["muž v tlustém ochranném oblečení stojí nad psem"]}}
{"translation": {"en": "an upside down black and white image of a guy riding a bike but his silhouette looks like a normal person riding a bike.", "cs": ["obrácený obraz chlápka jedoucího na kole jehož odraz však vypadá jako normální osoba jedoucí na kole."]}}
{"translation": {"en": "boats on the water with a city in the background", "cs": ["lodě na vodě s městem v pozadí"]}}
{"translation": {"en": "A young boy dressed in a blue shirt peeks out of the open window of a blue and white bus.", "cs": ["Mladý chlapec v modré košili vykukuje z otevřeného okna modrobílého autobusu."]}}
{"translation": {"en": "A man in jeans and a black cowboy hat sprints towards a building.", "cs": ["Muž v džínách a černém kovbojském klobouku sprintuje směrem k budově."]}}
{"translation": {"en": "This image is of a man sitting on a horse holding onto it while it bucks and jumps.", "cs": ["Obrázek muže, který sedí na koni a drží se jej, zatímco vyhazuje a skáče."]}}
{"translation": {"en": "Two players wearing yellow uniforms are playing with two players wearing a white uniform.", "cs": ["Dva hráči ve žlutých dresech hrají se dvěma hráči v bílých dresech."]}}
{"translation": {"en": "This image is of a black and white picture while a person on a bicycle is riding their bike up a road.", "cs": ["Toto je černobílý obrázek člověka na kole, který jede nahoru do kopce."]}}
{"translation": {"en": "Hiking trail in the country with no horses allowed.", "cs": ["Turistická stezka na venkově, na kterou mají koně zákaz vstupu."]}}
{"translation": {"en": "Legs of men in a race with shoes of different colors", "cs": ["Nohy mužů během závodu v botách různých barev."]}}
{"translation": {"en": "A couple of women playing beach volleyball", "cs": ["Pár žen, které hrají plážový volejbal"]}}
{"translation": {"en": "A boy wearing protective gear is performing a bicycle jump on a dirt course.", "cs": ["Chlapec v ochranném oblečení provádí výskok na kole na prašné trati."]}}
{"translation": {"en": "An Oriental woman holding a drawing pad is looking off in the distance.", "cs": ["Dívka z východu, která drží podložku na kreslení, se dívá do dálky."]}}
{"translation": {"en": "A young man surfing with a large spray of water behind him.", "cs": ["Mladý muž surfuje a za ním je velký proud vody."]}}
{"translation": {"en": "Sand next to the beach with a small town in the distance.", "cs": ["Písek na pláži a malé městečko v dálce."]}}
{"translation": {"en": "Concert goers enjoy the entertainment as fireworks go off in the background.", "cs": ["Návštěvníci koncertu si užívají představení, v jehož pozadí jsou ohňostroje."]}}
{"translation": {"en": "A cyclist riding up a grassy dirt trail.", "cs": ["Cyklista jede po travnaté zabahněné cestě."]}}
{"translation": {"en": "The surfer rides the waves along the pier.", "cs": ["Surfař jede po vlně podél mola."]}}
{"translation": {"en": "A group of girls are playing against each other in volleyball.", "cs": ["Skupina dívek, které proti sobě hrají volejbal."]}}
{"translation": {"en": "The shadows of a man pushing a stroller and a woman holding a bag are cast on a nearby wall.", "cs": ["Stíny muže tlačícího kočárek a ženy držící tašku se odráží na nedaleké zdi."]}}
{"translation": {"en": "In a field of pumpkins displayed on and around bales of hay, is an older boy wearing a blue t-shirt squatted down in a small cart between two very large pumpkins holding tightly to a younger boy wearing a green t-shirt at Moore's Pumpkins, which are the words hand printed on the cart.", "cs": ["Na dýňovém poli s vyskládanými balíky slámy je starší chlapec, co má na sobě modré tričko a sedí v malém vozíku mezi dvěma velkými dýněmi a drží těsně menšího chlapce v zeleném tričku u Moore's Pumkpins, což jsou slova napsaná na vozíku."]}}
{"translation": {"en": "A man is about to wipe out while surfing a very large wave.", "cs": ["Muž, který bude při surfování smeten velmi velkou vlnou."]}}
{"translation": {"en": "Cyclists are crowded together as they compete in front of a crowd.", "cs": ["Cyklisté se sjíždějí, když závodí před fanoušky."]}}
{"translation": {"en": "a crowd watching a bike race and a large Norwegian flag being flown", "cs": ["dav sleduje cyklistický závod a velká norská vlajka plápolá"]}}
{"translation": {"en": "Three race cars on a racecourse, one is red and two are black.", "cs": ["Tři závodní auta na dráze, jedno je červené, dvě černé."]}}
{"translation": {"en": "A street corner and parked cars seen through a dark alley.", "cs": ["Roh ulice a zaparkovaná auta viděna skrze temnou uličku."]}}
{"translation": {"en": "A mountain lake in the fall on a clear day.", "cs": ["Horské jezero za jasného podzimního dne."]}}
{"translation": {"en": "A man in black shirt climbs a big rock while a man in a green shirt spots him.", "cs": ["Muž v černém tričku leze na veliký kámen, zatímco jej muž v zeleném tričku jistí."]}}
{"translation": {"en": "A red stone lighthouse tower.", "cs": ["Věž majáku z červených cihel."]}}
{"translation": {"en": "A green door is at the top of a rocky staircase.", "cs": ["Zelené dveře, které jsou na konci kamenného schodiště."]}}
{"translation": {"en": "Two women celebrating a volleyball match", "cs": ["Dvě ženy oslavují volejbalový zápas"]}}
{"translation": {"en": "A white and black spotted dog jumping through the weeds.", "cs": ["Bíločerný skvrnitý pes skáče přes plevel."]}}
{"translation": {"en": "A guy and a girl are sitting at a table working on computers.", "cs": ["Chlápek a dívka sedí u stolu a pracují na počítačích."]}}
{"translation": {"en": "Lots of cats outside of a storefront laying on the steps and the cobblestone walk way.", "cs": ["Spousta koček, které leží před obchodem na schodech a na dlážděném chodníku."]}}
{"translation": {"en": "Two cyclists and a car make their way up a steep winding road surrounded by autumn colors.", "cs": ["Dva cyklisté a auto jedou po strmé klikatící se silnici obklopené podzimními barvami."]}}
{"translation": {"en": "The female Southern Oregon University volleyball player is about to hit the ball during a game.", "cs": ["Volejbalistka Univerzity v Jižním Oregonu, která se chystá odpálit míč během hry."]}}
{"translation": {"en": "Low angle view of a large electrical tower against a cloudy sky.", "cs": ["Pohled zespoda na velkou elektrickou věž proti oblačné obloze."]}}
{"translation": {"en": "Picture of a leafy path, with trees on the left, and fields on both sides, in the fall.", "cs": ["Obrázek pěšiny pokryté listím, se stromy nalevo a poli na obou stranách, na podzim."]}}
{"translation": {"en": "Bird takes a bath in an old ceramic bowl.", "cs": ["Pták se koupe ve staré keramické misce."]}}
{"translation": {"en": "A great band and their cheerleaders making a show for their team", "cs": ["Veliká kapela a její roztleskávačky dělají představení pro svůj tým"]}}
{"translation": {"en": "There are 2 spider webs on the new wooden construction.", "cs": ["Dvě pavoučí sítě na nové dřevěné stavbě."]}}
{"translation": {"en": "A woman with a red bag is sitting across from another woman with a flowered bag.", "cs": ["Žena s červenou taškou sedí naproti jiné ženě s květovanou taškou."]}}
{"translation": {"en": "There is three mushrooms with green ivy around them.", "cs": ["Tři houby obklopené zeleným břečťanem."]}}
{"translation": {"en": "black and white shot of people outside at round tables.", "cs": ["černobílý snímek lidí u venkovních kulatých stolů"]}}
{"translation": {"en": "A paw print of an animal is in the snow.", "cs": ["Otisk zvířecí tlapky ve sněhu."]}}
{"translation": {"en": "Three men ride bikes.", "cs": ["Tři muži jedou na kolech."]}}
{"translation": {"en": "Two football teams on a field with half wearing purple uniforms and half wearing white uniforms tackling each other.", "cs": ["Dva fotbalové týmy, které spolu zápasí na hřišti, polovina ve fialových dresech, polovina v bílých."]}}
{"translation": {"en": "A cute little bird on the branch of a tree", "cs": ["Roztomilý malý ptáček na větvi stromu"]}}
{"translation": {"en": "A tiny furry animal peeks out from behind a tree branch.", "cs": ["Malé chlupaté zvíře vykukuje zpoza větve stromu."]}}
{"translation": {"en": "A woman looks down at something as she sits alone at a table with a tray of food.", "cs": ["Žena, která sedí sama u stolu s tácem jídla, se dívá na něco dolů."]}}
{"translation": {"en": "A dam over a small river with a building nearby.", "cs": ["Přehrada nad malou řekou s nedalekou budovou."]}}
{"translation": {"en": "A hummingbird eating out of a flower while hovering in midair.", "cs": ["Kolibřík sosá z květiny, zatímco se vznáší ve vzduchu."]}}
{"translation": {"en": "Woman and dog running across the obstacle course", "cs": ["Žena a pes běží přes překážkovou dráhu"]}}
{"translation": {"en": "a cascading river thats cut through a mountain covered in pine trees.", "cs": ["kaskádovitá řeka protínající horu pokrytou borovicemi"]}}
{"translation": {"en": "A beautiful photo of a concentration of water surrounded by snow", "cs": ["Nádherná fotografie vodní hladiny obklopené sněhem"]}}
{"translation": {"en": "Several tents in a field on a starry night", "cs": ["Několik stanů na poli za hvězdné noci"]}}
{"translation": {"en": "A person carrying a bucket walks through water.", "cs": ["Člověk nesoucí kyblík prochází vodou."]}}
{"translation": {"en": "Young woman is wearing a jacket on her arm and walking on the sidewalk", "cs": ["Mladá žena nese v ruce bundu a jde po ulici"]}}
{"translation": {"en": "A dog looking at the camera on a sidewalk with a man writing on a chalkboard board outside of a storefront.", "cs": ["Pes na chodníku se dívá do fotoaparátu, muž před obchodem píše na tabuli."]}}
{"translation": {"en": "Bikers ride down a hill with a twilight sky above them.", "cs": ["Cyklisté jedou z kopce, nad nimi se smráká."]}}
{"translation": {"en": "A father and his son are rolling on the street with a roller coaster", "cs": ["Otec a jeho syn jedou na koloběžce po silnici"]}}
{"translation": {"en": "There are people riding bikes on the road near snow covered grounds.", "cs": ["Lidé jedoucí na kolech na silnici vedle půdy pokryté sněhem."]}}
{"translation": {"en": "lonely woman watching the shore of the beach", "cs": ["osamělá žena, která pozoruje pobřeží"]}}
{"translation": {"en": "A barren ground with a large mountain in the background.", "cs": ["Vyprahlá zem s velkou horou v pozadí."]}}
{"translation": {"en": "A black dog with a stick in the trunk", "cs": ["Černý pes s klackem v hubě"]}}
{"translation": {"en": "A moose stands in a snowy field near a small settlement.", "cs": ["Los stojí na zasněženém poli nedaleko malé osady."]}}
{"translation": {"en": "A long bridge crossing the river below.", "cs": ["Dlouhý most přes řeku pod ním."]}}
{"translation": {"en": "A bird perched on a branch and eating berries.", "cs": ["Pták posazený na větvi, který jí červené bobule."]}}
{"translation": {"en": "A man on snow in the distance with a light shining into a lavender sky filled with stars and a small hill in the background.", "cs": ["Muž v dálce na sněhu se světlem svítícím na levandulově fialovou oblohu plnou hvězd a na pozadí je malý kopec."]}}
{"translation": {"en": "A black and white picture of a cabin in the woods", "cs": ["Černobílý obrázek boudy v lesích"]}}
{"translation": {"en": "A bench in front of a house with vines hanging over it.", "cs": ["Lavička před domem, na kterém visí vinná réva."]}}
{"translation": {"en": "the perspective from the hiker looking back at the trail, looking at a snowy landscape with beautiful fur trees.", "cs": ["pohled turisty, který se ohlíží zpět na cestu, dívá se na zasněženou krajinu s krásnými jehličnatými stromy."]}}
{"translation": {"en": "Construction workers try to put up a neon sign.", "cs": ["Dělníci se pokouší vyvěsit neonový nápis."]}}
{"translation": {"en": "Three people sit in a bar looking sad or tired.", "cs": ["Tři lidi sedí v baru a vypadají smutně nebo unaveně."]}}
{"translation": {"en": "Three people suspended on thin wires high in the sky.", "cs": ["Tři lidé na obloze zavěšeni na tenkých drátech."]}}
{"translation": {"en": "A view of a mountainous landscape with snow and a big house with blue roof", "cs": ["Pohled na hornatou krajinu pokrytou sněhem a velký dům s modrou střechou"]}}
{"translation": {"en": "A man is sitting alone at a table looking at his receipts.", "cs": ["Muž sedí sám u stolu a dívá se na své účtenky."]}}
{"translation": {"en": "A rock arch with a road under it and a forest on the other side", "cs": ["Kamenný oblouk s cestou pod ním a lesem na druhé straně"]}}
{"translation": {"en": "Picture of white water river, house in background, and train crossing bridge on the hill behind.", "cs": ["Obrázek bílé vody v řece, domu v pozadí a vlaku projíždějícího po mostě na kopci."]}}
{"translation": {"en": "A baseball pitcher wearing a green and white uniform pitching a baseball", "cs": ["Baseballový nadhazovač v zelenobílém dresu nadhazuje míček"]}}
{"translation": {"en": "A man riding a horse and leading a line of donkeys through a rocky area.", "cs": ["Muž jede na koni a vede zástup oslů skalnatou oblastí."]}}
{"translation": {"en": "golden leaves falling off a tree onto a sidewalk.b", "cs": ["zlaté listy padají ze stromu na chodník"]}}
{"translation": {"en": "A man plays the piano as people walks by in the background.", "cs": ["Muž hraje na piano, zatímco lidé procházejí v pozadí."]}}
{"translation": {"en": "A small tree is growing out of a crack in a rock.", "cs": ["Malý strom, který roste z praskliny ve skále."]}}
{"translation": {"en": "A vehicle is driven by a man in a red shirt through a poor looking area.", "cs": ["Vozidlo, které řídí muž v červeném tričku, jede přes chudě vypadající oblast."]}}
{"translation": {"en": "This is scene of people at a table with a building with a large marquee in the background.", "cs": ["Pohled na lidi u stolu a budovu s velkým neonovým poutačem v pozadí."]}}
{"translation": {"en": "Man with a great hairstyle celebrates with himself.", "cs": ["Muž se skvělým hárem sám se sebou oslavuje."]}}
{"translation": {"en": "A large wrestler is about to hit his opponent with something.", "cs": ["Velký zápasník se chystá něčím udeřit svého protivníka."]}}
{"translation": {"en": "Two men in a boxing ring participate in mixed martial arts.", "cs": ["Dva muži v boxerském ringu, kteří se účastní jakéhosi bojového umění."]}}
{"translation": {"en": "A cute boy with his hat looking out of a window", "cs": ["Roztomilý chlapec s čepicí, který se kouká z okna"]}}
{"translation": {"en": "A view of the harbor with two boats, some buildings, and trees in the distance.", "cs": ["Pohled na přístav se dvěma loděmi, několika budovami a stromy v dálce."]}}
{"translation": {"en": "The black dog sits on the passenger side of the car looking out the window.", "cs": ["Černý pes sedí na sedadle spolujezdce a dívá se z okna."]}}
{"translation": {"en": "Several people are climbing a snowy pass in the mountains.", "cs": ["Několik lidí, kteří šplhají po zasněženém horském průsmyku."]}}
{"translation": {"en": "Photo of a beautiful cloud sunset surrounded by houses", "cs": ["Fotografie krásného západu slunce nad mraky obklopených domy"]}}
{"translation": {"en": "Desolate road in the middle of the desert", "cs": ["Opuštěná cesta uprostřed pustiny"]}}
{"translation": {"en": "Close up of a hummingbird from the side of its head.", "cs": ["Pohled zblízka na profil hlavy kolibříka."]}}
{"translation": {"en": "The sun is setting while people float in the sky.", "cs": ["Lidé se vznáší na obloze při západu slunce."]}}
{"translation": {"en": "A skier is climbing up a snow covered hill.", "cs": ["Lyžař vystupuje po zasněženém kopci."]}}
{"translation": {"en": "A ray that falls in the middle of a small population at night", "cs": ["Blesk, který v noci udeří doprostřed malé vísky."]}}
{"translation": {"en": "A person is skiing down a steep hill surrounded by tall trees.", "cs": ["Člověk lyžuje dolů ze strmého kopce obklopeného vysokými stromy."]}}
{"translation": {"en": "Two white boats are sitting in an area of water.", "cs": ["Dva bílé čluny stojí na vodní hladině."]}}
{"translation": {"en": "One man appears to be cooking on a grill behind two barefoot men chatting and using PDAs on a ledge in the mountains at the end of dusk with shoes and backpacks behind them and a yellow egg-crate style mat between them.", "cs": ["Jeden člověk vypadá, že vaří na grilu za bosým mužem, co si povídá a používá tablet na skalní římse za úsvitu, boty a batohy jsou za nimi a mezi nimi je žlutá karimatka."]}}
{"translation": {"en": "A dog is coming out into a snowy alley filled with refuse.", "cs": ["Pes vchází do zasněžené uličky plné odpadků."]}}
{"translation": {"en": "A female skier in a bright orange jacket makes her way down a steep slope.", "cs": ["Lyžařka v jasně oranžové bundě jede ze strmé sjezdovky."]}}
{"translation": {"en": "A girls' basketball team is attempting to grab the ball from their competitor.", "cs": ["Dívčí basketbalový tým se pokouší získat míč svého soupeře."]}}
{"translation": {"en": "A surfer sprays water as he catches a wave and becomes airborne.", "cs": ["Surfař stříká vodu zatímco chytá ve výskoku vlnu."]}}
{"translation": {"en": "A man carries boxes to a room while a boy sweeps the street.", "cs": ["Muž nese krabice do místnosti, zatímco chlapec zametá ulici."]}}
{"translation": {"en": "A person in an orange jacket climbs up a mountain side.", "cs": ["Člověk v oranžové bundě leze nahoru do horského kopce."]}}
{"translation": {"en": "The view of the red roof of a house", "cs": ["Pohled na červenou střechu domu"]}}
{"translation": {"en": "Snow flies as a skiier crests the top of a hill.", "cs": ["Odletuje sníh, když lyžař přejíždí vrchol kopce."]}}
{"translation": {"en": "A woman in a black ski suit is skiing down a mountain.", "cs": ["Žena v černém lyžařském oblečení jede dolů z kopce."]}}
{"translation": {"en": "A black dog and two white dogs on the beach bathe next to a girl and her father", "cs": ["Černý a bílý na pláži vedle holčičky a jejího otce."]}}
{"translation": {"en": "A plane leaves a long contrail underneath the moon in a deep blue sky.", "cs": ["Letadlo za sebou zanechává dlouhou stopu hned pod měsícem na temně modré obloze."]}}
{"translation": {"en": "A black dog standing on his hinlegs with his front paws being held by a person.", "cs": ["Černý pes stojí na zadních, přední tlapy mu drží člověk."]}}
{"translation": {"en": "This is a group of many cyclists riding in a park.", "cs": ["Skupina mnoha cyklistů, kteří jedou v parku."]}}
{"translation": {"en": "The brown dog carries a soccer ball in his mouth through the snow.", "cs": ["Hnědý pes drží v tlamě fotbalový míč a jde po sněhu."]}}
{"translation": {"en": "A man in a cowboy hat is standing in front of a sign,", "cs": ["Muž v kovbojském klobouku stojí před vývěskou,"]}}
{"translation": {"en": "Two wrestlers are in the middle of a match in a blue and white arena.", "cs": ["Dva zápasníci uprostřed zápasu v modrobílé aréně."]}}
{"translation": {"en": "Man fishing on the river bank surrounded by lots of green grass", "cs": ["Muž rybaří na břehu řeky obklopen spoustou zelených travin"]}}
{"translation": {"en": "A group of cowboys marching some longhorn steers through a street.", "cs": ["Skupina kovbojů, kteří vedou ulicí dlouhorohé býky."]}}
{"translation": {"en": "Person sitting on a stone pier beside a large body of water.", "cs": ["Člověk sedící na kamenném mole vedle rozlehlé vodní hladiny."]}}
{"translation": {"en": "People running in the snow as a snowball almost hits a man with a camera.", "cs": ["Lidé, kteří běží ve sněhu, a sněhové koule téměř zasáhla muže s fotoaparátem."]}}
{"translation": {"en": "A crowd of people in the snow while a man in a green jacket throws a snowball.", "cs": ["Zástup lidí na sněhu, muž v zelené bundě hází sněhovou kouli."]}}
{"translation": {"en": "A woman is demonstrating how to use a wall harness while two men and a teenager look on.", "cs": ["Žena předvádí, jak se používá nástěnný postroj, zatímco ji pozorují dva muži a teenager."]}}
{"translation": {"en": "A beautiful photo where you can see a bench and mountains in the background", "cs": ["Nádherná fotografie, na které můžeme vidět lavičku a hory v pozadí"]}}
{"translation": {"en": "photo of jockeys competing in a race at an outdoor horse racetrack", "cs": ["fotografie žokejů, kteří závodí na venkovní dostihové dráze"]}}
{"translation": {"en": "People walk on the beach as the sun sets over the water.", "cs": ["Lidé se prochází po pláži, zatímco slunce zapadá nad vodou."]}}
{"translation": {"en": "View of several buildings with glass windows", "cs": ["Pohled na několik budov se skleněnými okny"]}}
{"translation": {"en": "There is a lady with a black bathing suit on a beach with two dogs.", "cs": ["Dáma v černých plavkách, která je na pláži se dvěma psy."]}}
{"translation": {"en": "Several people are running out of the cold water.", "cs": ["Několik lidí běží ze studené vody."]}}
{"translation": {"en": "Woman walking on the sidewalk of a city with her phone in her hand", "cs": ["Žena jde po chodníku ve městě se svým telefonem v ruce"]}}
{"translation": {"en": "A man looking at his phone on the steps of a subway station.", "cs": ["Muž, který se dívá do svého telefonu na schodech ve stanici metra."]}}
{"translation": {"en": "Horses and jockeys run in a race around a track.", "cs": ["Koně a žokejové běží závod okolo dostihové dráhy."]}}
{"translation": {"en": "A road passes through a countryside with grass and trees on a slightly overcast day.", "cs": ["Silnice, která vede krajinou s trávou a stromy, za mírně zataženého dne."]}}
{"translation": {"en": "two dogs, a brown and black, are playing and brown dog is sitting on the black dog.", "cs": ["dva psi, hnědý a černý, si hrají a hnědý pes sedí na černém."]}}
{"translation": {"en": "A woman standing on one foot with a man standing in front of her on beach sand.", "cs": ["Žena stojí na jedné noze v písku na pláži a před ní stojí muž."]}}
{"translation": {"en": "a guy on a skateboard in the city grinding down a handrail on some stairs.", "cs": ["kluk na skateboardu ve městě, který jede po zábradlí u schodů"]}}
{"translation": {"en": "The goalie dives on a loose puck as two players battle beside him.", "cs": ["Brankář skáče po hlavě po vystřeleném puku, zatímco dva hráči vedle něj zápasí."]}}
{"translation": {"en": "A group of bicyclists riding down a road surrounded by fields of snow and mountains.", "cs": ["Skupina cyklistů, kteří jedou po silnici obklopené zasněženými poli a horami."]}}
{"translation": {"en": "An elderly woman and dog are walking on a beach.", "cs": ["Postarší žena a pes se prochází po pláži."]}}
{"translation": {"en": "A scene of an empty street leading to a downtown section of a city.", "cs": ["Výjev prázdné ulice vedoucí do centra města."]}}
{"translation": {"en": "Two large trucks on the road going to their destination", "cs": ["Dva velké kamiony na silnici jedou do cíle"]}}
{"translation": {"en": "Tall thin green trees surround a wooden fence that encloses a frozen lake that is almost white.", "cs": ["Vysoké tenké zelené stromy obklopují dřevěný plot okolo téměř bílého zamrzlého jezera."]}}
{"translation": {"en": "An ancient stone lighthouse sits on a rocky shore.", "cs": ["Starobylý kamenný maják stojí na skalnatém pobřeží."]}}
{"translation": {"en": "A small black and white dog plays in the snow.", "cs": ["Malý černobílý pes si hraje ve sněhu."]}}
{"translation": {"en": "A person is riding on a surf board with a sail attached to it.", "cs": ["Člověk jede na surfovém prkně, na kterém je připevněna plachta."]}}
{"translation": {"en": "Woman and girl sitting in two chairs one green and one red", "cs": ["Žena a dívka sedí na dvou židlích, jedné zelené a jedné červené"]}}
{"translation": {"en": "A long skier makes his way downhill through trees.", "cs": ["Osamělý lyžař jede z kopce mezi stromy."]}}
{"translation": {"en": "A small dog playing on the lawn with an empty plastic soda bottle", "cs": ["Malý pes si hraje na trávě s prázdnou plastovou láhví"]}}
{"translation": {"en": "A woman tries to throw a basketball as the team's mascot stands watching.", "cs": ["Žena se pokouší hodit basketbalový míč, zatímco ji pozoruje týmový maskot."]}}
{"translation": {"en": "A lake with a rocky path along the edge with trees and a mountain range behind", "cs": ["Jezero s kamenitou cestou podél břehu, se stromy a pohořím v pozadí"]}}
{"translation": {"en": "Black and white night image of people walking on city paved walking area with umbrellas.", "cs": ["Černobílý noční snímek lidí, kteří se prochází s deštníky po pěší zóně ve městě."]}}
{"translation": {"en": "A young man pauses to check his cell phone, as does a woman in the background.", "cs": ["Mladý muž se zastaví, aby zkontroloval svůj mobilní telefon, stejně tak jako žena v pozadí."]}}
{"translation": {"en": "A woman sits on a white bench as someone on a bike rides by.", "cs": ["Žena sedí na bílé lavičce, zatímco někdo na kole jede okolo ní."]}}
{"translation": {"en": "male in the mid-flip above blue strap on grass", "cs": ["muž na trávníku uprostřed výskoku přes modrou pásku"]}}
{"translation": {"en": "A person looking a three pictures, one is a flower bouquet and the other two are of maidens.", "cs": ["Člověk, který se dívá na tři obrazy, na jednom je květinová kytice a na dalších dvou dívky."]}}
{"translation": {"en": "Grey scale picture of a small girl running along a fence towards a group of people in the distance", "cs": ["Šedý obrázek malé holčičky, která běží podél plotu směrem ke skupině lidí v dálce"]}}
{"translation": {"en": "A lone scraggly tree survives in a depression between two hills.", "cs": ["Osamocený divnotvarý strom přežívá v nížině mezi dvěma kopci."]}}
{"translation": {"en": "A tan dog runs through a large red curved tube.", "cs": ["Světle hnědý pes běží skrze červenou zahnutou rouru."]}}
{"translation": {"en": "Men in blue and white uniforms are playing basketball.", "cs": ["Muži v modrých a bílých dresech hrají basketbal."]}}
{"translation": {"en": "A small girl wearing a pink skirt is on a gravel surface with a body water in the back ground.", "cs": ["Malá holčička, která má růžovou sukni, je na kamenitém povrchu a v pozadí je vodní hladina."]}}
{"translation": {"en": "Someone is flying through the air wearing a pair of skis.", "cs": ["Někdo s párem lyží letí vzduchem."]}}
{"translation": {"en": "A man wearing an orange hat and pant with a green coat snow boarding down a snow covered hill.", "cs": ["Muž, který má na sobě oranžovou čepici a kalhoty a zelenou bundu, snowboarduje dolů ze zasněženého kopce."]}}
{"translation": {"en": "A cabin with snow on the roof is in the forest", "cs": ["Chatka v lese se sněhem na střeše"]}}
{"translation": {"en": "Two females are wrestling each other on a mat.", "cs": ["Dvě ženy spolu zápasí na žíněnce."]}}
{"translation": {"en": "A woman is rolling a bowling ball down a bowling lane.", "cs": ["Žena hází bowlingovou kouli na bowlingovou dráhu."]}}
{"translation": {"en": "Old castle with high walls and a bridge in the middle of the towers", "cs": ["Starý hrad s vysokými zdmi a mostem uprostřed věží"]}}
{"translation": {"en": "Dry tree next to a lake at sunset", "cs": ["Suchý strom u jezera při západu slunce."]}}
{"translation": {"en": "Three photographers as seen through the lens of another photographer.", "cs": ["Tři fotografové viděni skrze objektiv dalšího fotografa."]}}
{"translation": {"en": "Man on a motorcycle watching as a car falls into the water", "cs": ["Muž na motocyklu sleduje auto, které se noří do vody"]}}
{"translation": {"en": "A tree stands in the foreground of a scenic picture featuring a snowy lake and mountains on a partly cloudy day.", "cs": ["Strom stojí v popředí malebného obrazu, který zachycuje zasněžené jezero a hory za polojasného dne."]}}
{"translation": {"en": "Two women are holding hands and walking in water.", "cs": ["Dvě ženy se drží za ruce a jdou ve vodě."]}}
{"translation": {"en": "A group of houses are lined up along the waters edge.", "cs": ["Skupina domů, které jsou postaveny na břehu vody."]}}
{"translation": {"en": "Smiling young woman wearing a safety helmet, t-shirt, and athletic pants, bicycling on a gravel road bordered by trees and brush near a large, black dog who is walking across the path with his tongue hanging out.", "cs": ["Usmívající se mladá žena s ochrannou helmou, tričkem a sportovními kalhotami, jede na kole po kamenité cestě, ohraničené stromy a keři, vedle velkého černého psa, který jde po cestě s vyplazeným jazykem."]}}
{"translation": {"en": "A young male baseball player swinging at a pitch.", "cs": ["Mladý baseballista odpaluje na hřišti."]}}
{"translation": {"en": "A lone skier zigzags his way down a snowy mountain.", "cs": ["Osamělý lyžař klikatě sjezduje ze zasněžené hory."]}}
{"translation": {"en": "A small table and 6 lovely blue chairs is on the photo.", "cs": ["Na fotografii je malý stůl a šest krásných modrých židlí."]}}
{"translation": {"en": "Young kids with clown makeup and red noses", "cs": ["Mladé děti s makeupem klauna a červenými nosy"]}}
{"translation": {"en": "Bikes are parked on a sidewalk while other vehicles are parked on a street.", "cs": ["Kola zaparkovaná na chodníku, zatímco vozidla parkují na silnici."]}}
{"translation": {"en": "a black and white image of people soaking in some water and a waterfall behind them.", "cs": ["černobílý obrázek lidí, kteří se koupou ve vodě a za nimi je vodopád."]}}
{"translation": {"en": "Teams playing a rugby match on the ground", "cs": ["Týmy hrají na hřišti zápas rugby"]}}
{"translation": {"en": "Bride throwing a bouquet to a group of women behind her.", "cs": ["Nevěsta hází kytici skupině žen za ní."]}}
{"translation": {"en": "Cyclist pulls away from the pack on a long straight stretch of road.", "cs": ["Cyklista ujíždí od skupiny na dlouhé úseku silnice."]}}
{"translation": {"en": "Several people pause to look at a portrait in an art gallery.", "cs": ["Několik lidí zastavuje, aby se podívali na portrét v umělecké galerii."]}}
{"translation": {"en": "The white swans swim in the large lake.", "cs": ["Bílé labutě plují na velkém jezeře."]}}
{"translation": {"en": "A ball player landing on a base while another player rushes to tag them out.", "cs": ["Odpalovač skáče na metu, zatímco zatímco za ním pospíchá další hráč."]}}
{"translation": {"en": "There are large mountains on the side of a well maintained road.", "cs": ["Vysoké hory vedle dobře udržované silnice."]}}
{"translation": {"en": "a bunch of power lines or a cable cart system to cross a river, with large rocks stacked along its sides.", "cs": ["několik elektrických drátů nebo vozík na překonání řeky s velkými kameny po stranách."]}}
{"translation": {"en": "A small creek in the middle of two large rocks in the snow", "cs": ["Malý potok ve sněhu uprostřed dvou velkých skal"]}}
{"translation": {"en": "A woman waiting to throw the ball in baseball", "cs": ["Žena čeká na vyhození míčku při baseballu"]}}
{"translation": {"en": "A rocky ledge jutting out over some water below.", "cs": ["Skalnatá římsa vyčnívající nad vodu."]}}
{"translation": {"en": "The street is full of people and cars.", "cs": ["Ulice je plná lidí a aut."]}}
{"translation": {"en": "A red and blue ferris wheel in front of a clock tower.", "cs": ["Červenomodré ruské kolo před věží s hodinami."]}}
{"translation": {"en": "Appears to be the a team of Clydesdale horses pulling a red wagon with two men wearing white shirts and green hat and pants.", "cs": ["Vypadá to, že spřežení clydesdalských koní táhne červený vůz se dvěma muži v bílých košilích a zelených čepicích a kalhotách."]}}
{"translation": {"en": "A boy skateboarding on concrete in an open area in the city with a theatre in the background.", "cs": ["Chlapec skateboarduje na betonu na otevřeném prostranství ve městě s divadlem v pozadí."]}}
{"translation": {"en": "Three ducks swim in a row through the water.", "cs": ["Tři kachny v řadě plavou ve vodě."]}}
{"translation": {"en": "A beautiful forest surrounded by pine trees and lots of snow", "cs": ["Krásný les obklopený borovicemi a spoustou sněhu"]}}
{"translation": {"en": "A woman with a tattoo on her belly is showing her belly to a bulldog.", "cs": ["Žena s tetováním na břiše ukazuje své břicho buldokovi."]}}
{"translation": {"en": "A couple lays beneath a small tree while others sit and walk around.", "cs": ["Pár leží pod malým stromem, zatímco ostatní sedí nebo chodí okolo."]}}
{"translation": {"en": "The two lacrosse players are playing in a match.", "cs": ["Dva lakrosoví hráči hrají zápas."]}}
{"translation": {"en": "Three men running wearing sport outfts in a obstacle race", "cs": ["Tři muži ve sportovním oděvu běží po překážkové dráze"]}}
{"translation": {"en": "A cheerleader is in midair performing a backflip on a basketball court.", "cs": ["Roztleskávačka na basketbalovém hřišti uprostřed salta vzad."]}}
{"translation": {"en": "A skier is going past the previous trails of several other skiers on their way down the trail.", "cs": ["Lyžař projíždí okolo stop několika dalších lyžařů, kteří se vydali po sjezdovce."]}}
{"translation": {"en": "A shallow body of water with evergreen trees on each side and mountains in the distance.", "cs": ["Mělká vodní plocha se stálezelenými stromy na každé straně a horami v dálce."]}}
{"translation": {"en": "Scene of a ball game, woman in red shirt pitching and another woman in red shirt catching, person in blue and white shirt batting, with male umpire looking on.", "cs": ["Výjev ze softballového zápasu, žena v červeném tričku nadhazuje jiné ženě v červeném, která chytá, osoba v modrobílém odpaluje a vrchní rozhodčí vše sleduje."]}}
{"translation": {"en": "A woman is doing a leap with her legs spread apart.", "cs": ["Žena dělá výskok s roztaženýma nohama."]}}
{"translation": {"en": "Numerous cars are traveling down a winding road.", "cs": ["Mnohá auta jedou po klikatící se silnici."]}}
{"translation": {"en": "a pair of stuffed animals, bear and reindeer, are tied to a tree branch", "cs": ["pár plyšových zvířat, medvěd a sob, přivázaných na větvi stromu"]}}
{"translation": {"en": "Two men are running on the grass chasing a soccer ball.", "cs": ["Dva muži běží po trávníku a honí fotbalový míč."]}}
{"translation": {"en": "A baseball team high fiving a player as he comes in.", "cs": ["Baseballový tým si plácá s hráčem, který přichází."]}}
{"translation": {"en": "A man is sitting on a bucket in front of a van.", "cs": ["Muž sedí na kyblíku před dodávkou."]}}
{"translation": {"en": "A small body of water is surrounded by evergreens with a majestic mountain range in the background.", "cs": ["Malá vodní hladina obklopena stálezelenými stromy s majestátním pohořím v pozadí."]}}
{"translation": {"en": "There is many green trees and high mountains.", "cs": ["Spousta zelených stromů a vysokých hor."]}}
{"translation": {"en": "Woman in black coat walking away from a crowd gathering in front of a train.", "cs": ["Žena v černém kabátu odchází od davu, který se shromažďuje před vlakem."]}}
{"translation": {"en": "A sunset on a bay with boats docked and a lighthouse in the background.", "cs": ["Západ slunce v přístavu se zakotvenými loděmi a s majákem v pozadí."]}}
{"translation": {"en": "A cowboy falls off of a bucking horse while people watch in the background.", "cs": ["Kovboj padá z jančícího koně, zatímco jej lidé v pozadí sledují."]}}
{"translation": {"en": "A photo of a concrete dam with water flowing through it.", "cs": ["Fotografie betonové přehrady s vodou tekoucí skrz ni."]}}
{"translation": {"en": "Two boys playing soccer the one in red just kicked the ball.", "cs": ["Dva chlapci hrají fotbal, ten v červeném právě kopl do balonu."]}}
{"translation": {"en": "A man on a motorcycle in the middle of a flip.", "cs": ["Muž na motocyklu uprostřed výskoku."]}}
{"translation": {"en": "Large dunes of sand extending for a long time before meeting dark mountains in the back ground", "cs": ["Velké písečné duny se táhnou daleko ke tmavým horám v pozadí"]}}
{"translation": {"en": "A woman in an orange shirt and black shorts hiking up a gravel path in the forest.", "cs": ["Žena v oranžovém tričku a černých šortkách prochází po štěrkové cestě v lese."]}}
{"translation": {"en": "A baseball player is wearing a red and white Grizzlies uniform and throwing a ball.", "cs": ["Hráč baseballu, který má na sobě červenobílý dres Grizzly, hází míček."]}}
{"translation": {"en": "Parents accompanying several children playing on bungee-like jumping equipment.", "cs": ["Rodiče doprovází několik dětí, které si hrají na atrakci napodobující bungee-jumping."]}}
{"translation": {"en": "A sunset on the beach besides a lake, with a single boat nearby.", "cs": ["Západ slunce na pláži u jezera, s jedním člunem poblíž."]}}
{"translation": {"en": "A mallard duck is swimming in a body of water.", "cs": ["Divoká kachna plave po hladině."]}}
{"translation": {"en": "This image is of a cabin in the woods while the stars and the moon is out.", "cs": ["Obrázek chatky v lese za svitu hvězd a měsíce."]}}
{"translation": {"en": "A large group all dressed in black shirts are playing the drums.", "cs": ["Velká skupina, oblečená v černých tričkách, hraje na bubny."]}}
{"translation": {"en": "A bright blue door is the entrance for a white building.", "cs": ["Jasně modré dveře jsou vchodem do bílé budovy."]}}
{"translation": {"en": "Two deer next to a statue while a dog watches them", "cs": ["Dvě srny vedle sochy, na které se dívá pes"]}}
{"translation": {"en": "Photo of a beautiful swan in the middle of a forest", "cs": ["Fotografie nádherné labutě uprostřed lesa"]}}
{"translation": {"en": "The women dance with colorful skirts and dresses.", "cs": ["Ženy tančí v barevných sukních a šatech."]}}
{"translation": {"en": "Two female soccer players trying to kick a ball.", "cs": ["Dvě hráčky fotbalu, které se snaží kopnout do míče."]}}
{"translation": {"en": "A large dog is walking along the wooden logs of a beach with the waves crashing in", "cs": ["Velký pes jde po pláži podél dřevěných kmenů, do kterých naráží vlny"]}}
{"translation": {"en": "A rushing river with blue green water.", "cs": ["Proudící řeka s modrozelenou vodou."]}}
{"translation": {"en": "Player kicks the ball to another while teammates look on.", "cs": ["Hráč kope míč jinému, zatímco jej sledují spoluhráči."]}}
{"translation": {"en": "This is a pathway heading to a bridge in the woods.", "cs": ["Cesta směřující k mostu v lese."]}}
{"translation": {"en": "A hockey player wearing a blue and gold uniforms is hitting the puck while and green and white uniform is following.", "cs": ["Hokejový hráč v modrozlatém dresu odpaluje puk, zatímco zelenobílý jej pronásleduje."]}}
{"translation": {"en": "A group of women wearing black and red shirts performing a choreographed dance on stage.", "cs": ["Skupina žen v černočervených svršcích předvádí choreografii na pódiu."]}}
{"translation": {"en": "Two hockey teams out on the ice playing a hockey game.", "cs": ["Dva hokejové týmy, kteří hrají na ledě zápas."]}}
{"translation": {"en": "A small bird is sitting on a branch next to a power line.", "cs": ["Malý ptáček sedí na větvičce vedle drátu elektrického napětí."]}}
{"translation": {"en": "A young girl wearing a white shirt is walking down a gravel road.", "cs": ["Malá holčička v bílém tričku jde po štěrkové cestě."]}}
{"translation": {"en": "A man is riding a jacked up bike on the road.", "cs": ["Muž, který jede po silnici na vysokém jízdním kole."]}}
{"translation": {"en": "Baby in pajamas playing in the sand with his mom", "cs": ["Dítě v pyžamu, které si hraje na písku se svou mámou"]}}
{"translation": {"en": "A beige bridge spans a body of water with a large evergreen tree in the foreground.", "cs": ["Béžový most, který se klene přes hladinu, s velkým stálezeleným stromem v popředí."]}}
{"translation": {"en": "A scenic pond autumn setting with blue sky with thin clouds in the background", "cs": ["Malebný podzimní rybník v prostředí s modrou oblohou s řídkými mraky v pozadí"]}}
{"translation": {"en": "This image is of a pool of water with mountains and clouds in the background.", "cs": ["Obrázek vodní hladiny s horami a mraky v pozadí."]}}
{"translation": {"en": "Giant jungle with some houses at the end", "cs": ["Obří džungle s několika domy na konci"]}}
{"translation": {"en": "A red sports car with the number 8 on it rides down a road.", "cs": ["Červené sportovní auto s číslem 8 jede po silnici."]}}
{"translation": {"en": "Dog in the middle of the field playing with his ball", "cs": ["Pes, který si hraje se svým míčkem uprostřed pole"]}}
{"translation": {"en": "A surfer surfing a wave on the beach", "cs": ["Surfař surfuje na vlně na pláži"]}}
{"translation": {"en": "A white dog with black spots runs down a small hill.", "cs": ["Bílý pes s černými skvrnami běží dolů z kopečka."]}}
{"translation": {"en": "the three women and one gentlemen is racing on a red track", "cs": ["tři ženy a jeden muž závodí na dráze"]}}
{"translation": {"en": "A boy with shorts and a hat is skateboarding,", "cs": ["Chlapec v šortkách a v kšiltovce skateboarduje,"]}}
{"translation": {"en": "A man in a white shirt races a remote control car in the dirt.", "cs": ["Muž v bílém tričku závodí v hlíně s autem na dálkové ovládání."]}}
{"translation": {"en": "Group of people walking on the subway", "cs": ["Skupina lidí, kteří jdou v metru"]}}
{"translation": {"en": "A black dog on a leash rolling in the dirt.", "cs": ["Černý pes na vodítku, který se válí ve špíně."]}}
{"translation": {"en": "A man is jumping in the air with legs crossed in sitting position to appear as if he is sitting on mountain in the background.", "cs": ["Muž skáče do vzduchu v sedící pozici se zkříženýma nohama, aby to vypadalo, jako že sedí na hoře v pozadí."]}}
{"translation": {"en": "The moth is perched on a flower in the green grass.", "cs": ["Můra sedí na květině uprostřed zeleného trávníku."]}}
{"translation": {"en": "A bird taking a bath in the water and reeds.", "cs": ["Pták se koupe ve vodě a rákosu."]}}
{"translation": {"en": "A butterfly is sitting on a thin green leaf.", "cs": ["Motýl sedí na tenkém zeleném listu."]}}
{"translation": {"en": "Three soccer players are in the middle of a game.", "cs": ["Tři hráči fotbalu uprostřed hry."]}}
{"translation": {"en": "a beautiful landscape with a big forest on it", "cs": ["krásná krajina s velkým lesem"]}}
{"translation": {"en": "A shadow of a person is seen on a trail between the trees.", "cs": ["Na cestě mezi stromy je vidět stín člověka."]}}
{"translation": {"en": "People riding down the street on very tall bicycles.", "cs": ["Lidé, kteří jedou po ulici na velmi vysokých kolech."]}}
{"translation": {"en": "Parents and three small children on the sidewalk in a large city.", "cs": ["Rodiče a tři malé děti na chodníku ve velkém městě."]}}
{"translation": {"en": "Small castle structure atop rocky ledge overlooking body of water.", "cs": ["Malý hrad na skalní římse nad hladinou vody."]}}
{"translation": {"en": "two cyclists going down a long flight of stairs", "cs": ["dva cyklisté jedou dolů po dlouhém schodišti"]}}
{"translation": {"en": "A bunch of people sitting in a public park on the grass.", "cs": ["Spousta lidí, kteří sedí na trávě v parku pro veřejnost."]}}
{"translation": {"en": "Two high towers in the middle of a water embankment", "cs": ["Dvě vysoké věže uprostřed vodního valu"]}}
{"translation": {"en": "Woman in color dancing with two hoops around her", "cs": ["Žena v barevném tancuje se dvěma obručemi okolo ní"]}}
{"translation": {"en": "A man is holding a sword and chopping a fruit on a table.", "cs": ["Muž drží meč a seká ovoce na stole."]}}
{"translation": {"en": "photo of beautiful roses in the middle of a forest", "cs": ["fotka krásných růží uprostřed leda"]}}
{"translation": {"en": "The silhouette of two men and three women in front of a lake with a city on the background", "cs": ["Siluety dvou mužů a tří žen u jezera s městem v pozadí"]}}
{"translation": {"en": "Children stand in the streets dressed in dark colored box-costumes.", "cs": ["Děti stojí na ulici oblečeny do kostýmů tmavé barvy ve tvaru krabic."]}}
{"translation": {"en": "A person is sailing in a river of strong waters.", "cs": ["Člověk, který pluje na řece se silným proudem."]}}
{"translation": {"en": "ten dancers in khakis, vests, and ties perform a dance routine", "cs": ["deset tanečníků v maskáčích, vestách a kravatách, předvádí taneční vystoupení"]}}
{"translation": {"en": "a pit bull and a small dog looking at each other through a chain link fence", "cs": ["pitbul a malý pes, kteří se na sebe dívají přes drátěný plot"]}}
{"translation": {"en": "Four dancers on a stage are performing a dance in white skirts.", "cs": ["Čtyři tanečnice, které tancují na jevišti v bílých sukních."]}}
{"translation": {"en": "Multiple cyclists crossing a river on a bicycle trail bridge.", "cs": ["Několik cyklistů přejíždí po mostě na cyklostezce přes řeku."]}}
{"translation": {"en": "A blue green lake in the mountains on a clear day.", "cs": ["Modrozelené jezero v horách za jasného dne."]}}
{"translation": {"en": "A man with a red uniform shirt and black shorts with black leggings jumping into the air after a small ball.", "cs": ["Muž v červeném dresu, černých šortkách a černých legínách skáče do vzduchu pro malý míček."]}}
{"translation": {"en": "A guy in chucks, jeans and a sweat jacket sleeping on a subway chair.", "cs": ["Kluk v converskách, džínách a mikině s kapucí, spí na sedadle v metru."]}}
{"translation": {"en": "A graduating class throws their hats in the air in the middle of a green field", "cs": ["Třída absolventů vyhazuje do vzduchu své klobouky uprostřed zeleného pole"]}}
{"translation": {"en": "The mountainside is covered in snow and green pine trees.", "cs": ["Sjezdovka je pokryta sněhem a zelenými borovicemi."]}}
{"translation": {"en": "Four women in black leotards are dancing in a circle.", "cs": ["Čtyři ženy v černých trikotech tancují v kruhu."]}}
{"translation": {"en": "Dog jumping into the water in search of a ball", "cs": ["Pes skáče do vody, aby našel míček"]}}
{"translation": {"en": "A wooden enclosure for livestock stands in the middle of a green field with a sparse amount of tall green trees in the distance.", "cs": ["Dřevěná ohrada pro hospodářská zvířata stojí uprostřed zeleného pole s řídkým porostem vysokých zelených stromů v dálce."]}}
{"translation": {"en": "Passengers walking down the platform after getting off a subway train.", "cs": ["Cestující jdou po nástupišti poté, co vystoupili z metra."]}}
{"translation": {"en": "A woman is sitting at a table and frowning at a man.", "cs": ["Žena sedí u stolu a mračí se na muže."]}}
{"translation": {"en": "A castle on a green hill top surrounded by trees.", "cs": ["Hrad na zeleném kopci obklopený stromy."]}}
{"translation": {"en": "People in a yellow raft boat floating down a river with steep embankments covered in green trees and mountains in the distance.", "cs": ["Lidé ve žlutém raftu plují po řece se strmými břehy pokryté zelenými stromy a s horami v dálce."]}}
{"translation": {"en": "a bird sitting in a tree with a bright yellow breast.", "cs": ["pták s jasně žlutou náprsenkou sedí na stromě."]}}
{"translation": {"en": "Man playing football in red is passing man in white trying to tackle him.", "cs": ["Muž v červeném, který hraje fotbal, míjí muže v bílém, který se jej snaží složit."]}}
{"translation": {"en": "A scenic picture of a small bridge over a shallow stream on a clear day.", "cs": ["Malebný obraz malého mostu přes mělký potok za jasného dne."]}}
{"translation": {"en": "There is a girl with a basket and pink boots walking in the woods.", "cs": ["Dívka s košíčkem v růžových holinách, která jde lesem."]}}
{"translation": {"en": "There is fog in the distance of the city.", "cs": ["Mlha nad městem v dálce."]}}
{"translation": {"en": "Man reading a book with a drink next to it", "cs": ["Muž si čte knihu a vedle má nápoj"]}}
{"translation": {"en": "Dozens of cyclists racing past a large building on the edge of a lake.", "cs": ["Desítky cyklistů projíždějí okolo velké budovy na břehu jezera."]}}
{"translation": {"en": "A tree stands on a field with the sun setting in the distance.", "cs": ["Strom stojí na poli se západem slunce v dálce."]}}
{"translation": {"en": "Two teams of rowers are competing in boats adorned with dragon sculptures.", "cs": ["Dva týmy veslařů soutěží v lodích, které jsou ozdobené plastikami draků."]}}
{"translation": {"en": "Two shirtless young boys play in a sprinkler on a grassy field.", "cs": ["Dva mladí chlapci bez trička, kteří si hrají na trávníku se zavlažovačem."]}}
{"translation": {"en": "A banner with the faces of two women, one of them has her face blacked out.", "cs": ["Banner s tvářemi dvou žen, jedna z nich má začerněný obličej."]}}
{"translation": {"en": "A white bird is flying by trees.", "cs": ["Bílý pták letí u stromů."]}}
{"translation": {"en": "Black man lying on the wall on the sidewalk of a street", "cs": ["Černoch se opírá o zeď na straně chodníku"]}}
{"translation": {"en": "A dog with a cone on his head jumps for a ball.", "cs": ["Pes s límcem na hlavě skáče pro míček."]}}
{"translation": {"en": "This image is of a wooden bench sitting out in the woods.", "cs": ["Obrázek dřevěné lavičky stojící v lese."]}}
{"translation": {"en": "This is a squirrel sitting on a tree limb and scratching itself.", "cs": ["Veverka, která sedí na větvi stromu a škrábe se."]}}
{"translation": {"en": "A person is sunning them self on a large concrete block near a blue body of water.", "cs": ["Člověk, který se opaluje na velkém betonovém kvádru poblíž modré hladiny."]}}
{"translation": {"en": "A black and white photo of a woman sitting on a stool and leaning against a building.", "cs": ["Černobílá fotografie ženy, která sedí na stoličce a opírá se o budovu."]}}
{"translation": {"en": "A tree with green leaves and another with red leaves with a blue sky in the background", "cs": ["Strom se zelenými listy a další s červenými listy a modrou oblohou v pozadí."]}}
{"translation": {"en": "A man is sitting on a horse that is eating the weeds.", "cs": ["Muž sedí na koni, který jí trávu."]}}
{"translation": {"en": "Two men are sitting on a bench and reading.", "cs": ["Dva muži sedí na lavičce a čtou si."]}}
{"translation": {"en": "There is a walking path beside a stream in the forest.", "cs": ["Stezka pro pěší v lese u potoka."]}}
{"translation": {"en": "A young man without a shirt standing on a sidewalk smoking a cigarette.", "cs": ["Mladý muž bez trička stojí na chodníku a kouří cigaretu."]}}
{"translation": {"en": "A man dressed in athletic gear trains his dog at an outdoor dog park.", "cs": ["Muž oblečen do sportovního oblečení trénuje svého psa na venkovním parku pro psy."]}}
{"translation": {"en": "a city is lit up at night among dark forested mountains", "cs": ["město v noci, které svítí uprostřed tmavých zalesněných hor"]}}
{"translation": {"en": "A singer in a concert with a crowd that animates him", "cs": ["Zpěvák na koncertě s publikem, který jej povzbuzuje"]}}
{"translation": {"en": "Cars driving through a hilly road with green tree covered mountains in the distance.", "cs": ["Auta, která projíždí kopcovitou silnicí s horami pokrytými stromy v dálce."]}}
{"translation": {"en": "A hilly backdrop with trees and grass in front.", "cs": ["Kopcovitá krajina se stromy a trávou v popředí."]}}
{"translation": {"en": "Overlooking a river and a rocky ledge during the day.", "cs": ["Výhled na řeku a skalní římsu během dne."]}}
{"translation": {"en": "Scene of 2 people in a canoe on a river with mountains in the background.", "cs": ["Výjev 2 lidí na řece v kanoi s horami v pozadí."]}}
{"translation": {"en": "A brown and white dog is swimming in water with long stick in its mouth.", "cs": ["Hnědobílý pes plave ve vodě s dlouhým klackem v hubě."]}}
{"translation": {"en": "An old building on a hill next to the ocean is falling apart.", "cs": ["Stará budova na kopci vedle oceánu, která se rozpadá."]}}
{"translation": {"en": "A little girl squeezing a fish, wearing pink and a blue striped and polka dotted hat, with strings attached.", "cs": ["Malá holčička, která mačká rybu, je oblečená v růžové a má modrý pruhovaný a puntíkovaný klobouk se šňůrkami."]}}
{"translation": {"en": "Beautiful landscape with large trees in the distance and a big river", "cs": ["Nádherná krajina se vzrostlými stromy v dálce a s velkou řekou"]}}
{"translation": {"en": "A young girl with a basket stands next to an uprooted tree in a forest.", "cs": ["Mladá dívka s košíčkem, která stojí v lese vedle vyvráceného stromu."]}}
{"translation": {"en": "Numerous white swans are swimming in an area of water.", "cs": ["Větší počet bílých labutí, které plavou ve vodě."]}}
{"translation": {"en": "Man with glasses and backpack at the train station", "cs": ["Muž s brýlemi a batohem na vlakovém nádraží"]}}
{"translation": {"en": "A lake next to a wooded area on a sunny day.", "cs": ["Jezero vedle lesa za slunného dne."]}}
{"translation": {"en": "A girl playing softball slides into a base while being tagged by another player.", "cs": ["Dívka, která hraje fotbal, sklouzla na metu, zatímco ji vyautovala jiná hráčka."]}}
{"translation": {"en": "The soccer player red tries to kick the ball as the player in white blocks him.", "cs": ["Červený fotbalista se snaží kopnout do míče, bílý fotbalista jej blokuje."]}}
{"translation": {"en": "In a garden with light pink flowers, sits a small white dog that stares off into the distance.", "cs": ["V zahradě se světle růžovými květinami sedí malý bílý pes, který se dívá do dálky."]}}
{"translation": {"en": "A dug runs in the yard with a blue and orange toy in it's mouth.", "cs": ["Pes běží přes dvorek s modrooranžovou hračkou v puse."]}}
{"translation": {"en": "A toddler in a woolen hat holds onto a metal railing atop a cliff overlooking the ocean.", "cs": ["Batole ve vlněné čepičce, které se drží kovového zábradlí na vrcholu útesu s výhledem na oceán."]}}
{"translation": {"en": "A landscape of rolling hills and trees underneath a cloudy sky.", "cs": ["Kopcovitá krajina se stromy pod zataženou oblohou."]}}
{"translation": {"en": "a campfire pit with a fire burning and a lake behind it, wooded with pine trees.", "cs": ["ohniště s hořícím ohněm a za ním je jezero obklopeno borovicemi."]}}
{"translation": {"en": "A band of musicians play outside while an audience of kids watches.", "cs": ["Skupina hudebníků hraje venku, zatímco je pozoruje dětské publikum."]}}
{"translation": {"en": "A boy juggles a soccer ball outside.", "cs": ["Chlapec venku žongluje s fotbalovým míčem."]}}
{"translation": {"en": "A fire truck is parked on a street.", "cs": ["Hasičské auto je zaparkované na ulici."]}}
{"translation": {"en": "A black race car with the number 28 on the track", "cs": ["Černé závodní auto s číslem 28 na trati"]}}
{"translation": {"en": "the sun casting through a forest of pine trees and a clearing in the background with a small lake and pick-nick table.", "cs": ["sluneční paprsky prosvítají skrz borovicový les, v pozadí je mýtina, malé jezírko a piknikový stůl."]}}
{"translation": {"en": "Man taking a photo of a woman posing in front of water.", "cs": ["Muž si fotí ženu, která pózuje u vody."]}}
{"translation": {"en": "Picture of picnic scene, with a folding camping chair covered in red Canada fabric.", "cs": ["Obrázek piknikového prostředí se skládací kempingovou židlí pokrytou červenou látkou s potiskem Kanady."]}}
{"translation": {"en": "A man holds a frisbee white a black and white dog jumps over him.", "cs": ["Muž drží létající talíř a černobílý pes jej přeskakuje."]}}
{"translation": {"en": "The children stand with white headpieces with colorful streamers attached.", "cs": ["Děti stojí a mají na hlavách bílé masky, na kterých jsou připevněny barevné stužky."]}}
{"translation": {"en": "Four mean soccer players on a soccer field crashing into each other, one falling backwards onto the ground.", "cs": ["Čtyři drsní fotbalisté na fotbalovém hřišti, kteří se navzájem sráží, jeden padá zády na zem."]}}
{"translation": {"en": "A black and white dog with a frisbee in its mouth is jumping over a mans back.", "cs": ["Černobílý pes s létajícím talířem v hubě skáče přes mužova záda."]}}
{"translation": {"en": "A woman with two small dogs, one all wet, is sitting in a red kayak.", "cs": ["Žena se dvěma malými psy, jedním úplně mokrým, sedí v červeném kajaku."]}}
{"translation": {"en": "Two large black dogs running through a grassy yard.", "cs": ["Dva velcí černí psi běží přes travnatý dvorek."]}}
{"translation": {"en": "3 old red race cars in focus but the background is a blur.", "cs": ["3 stará závodní auta v záběru, ale pozadí je rozostřené."]}}
{"translation": {"en": "Three people are standing at the edge of a cliff looking down at the water.", "cs": ["Tři lidé stojí na okraji útesu a dívají se dolů na vodu."]}}
{"translation": {"en": "A train on the tracks with the back open in a rural backdrop.", "cs": ["Vlak s otevřenou zadní částí na kolejích ve venkovském prostředí."]}}
{"translation": {"en": "a beautiful contrast of two colors of rock, white on the left and reddish sandstone on the right.", "cs": ["nádherný kontrast dvou barev horniny, bílé nalevo a načervenalého pískovce napravo"]}}
{"translation": {"en": "A race car that is smoking and headed towards a crash.", "cs": ["Závodní auto, ze kterého se kouří, a směřuje ke srážce."]}}
{"translation": {"en": "This image is of a big dog standing on top of some wooden steps.", "cs": ["Obrázek velkého psa, který stojí na několika dřevěných schodech."]}}
{"translation": {"en": "A man operating a saw on pavement causes sparks to fly.", "cs": ["Muž, který pracuje na chodníku s pilou, způsobuje jiskření."]}}
{"translation": {"en": "Large white concrete stairs with trees throughout and a man sad sitting with his head in his hands.", "cs": ["Velké bílé betonové schody se stromy okolo a smutným mužem, který sedí s hlavou v dlaních."]}}
{"translation": {"en": "Landscape of stone structure and sand a little collapsed", "cs": ["Pohled na lehce zřícenou stavbu z písku"]}}
{"translation": {"en": "A woman is on the shore of the water holding a red striped towel.", "cs": ["Žena na břehu vody, která drží červený pruhovaný ručník."]}}
{"translation": {"en": "Two people fighting in the mud, several people in the background enjoying the show", "cs": ["Dva lidé zápasí v bahně, několik lidí v pozadí se tím baví"]}}
{"translation": {"en": "Some men are playing frisbee while one of them leaps into the air.", "cs": ["Nějací muži hrají frisbee, zatímco jeden z nich skáče do vzduchu."]}}
{"translation": {"en": "A boy is hopping along the side of walkway while other pedestrians walk along.", "cs": ["Kluk skáče podél chodníku, zatímco jdou chodci okolo."]}}
{"translation": {"en": "A canyon with several trees at the bottom", "cs": ["Kaňon s několika stromy na úpatí"]}}
{"translation": {"en": "Colorful swim flippers stacked on the rocky shore of a beach.", "cs": ["Barevné potápěčské ploutve vyrovnané na kamenitém břehu pláže."]}}
{"translation": {"en": "A large moth is resting on a cage full of melon pieces.", "cs": ["Velký motýl odpočívá na kleci plné kousků melounu."]}}
{"translation": {"en": "The ice skater in purple performs a trick close to the ice.", "cs": ["Bruslař ve fialovém předvádí trik blízko ledu."]}}
{"translation": {"en": "badger standing in grass at base of tree stump", "cs": ["jezevec stojí na trávě na pařezu"]}}
{"translation": {"en": "Snake camouflaged on a stony ground", "cs": ["Had maskovaný na kamenité zemi"]}}
{"translation": {"en": "A woman walks barefoot through a vast expanse of sandy soil.", "cs": ["Žena kráčí bosa po rozlehlé písčité půdě."]}}
{"translation": {"en": "A close-up photo depicts big bee on green leaf", "cs": ["Fotografie zblízka, která zachycuje velikou včelu na zeleném listu"]}}
{"translation": {"en": "A woman is resting in the snow, wrapped in a fur coat.", "cs": ["Žena zabalená do kožichu odpočívá ve sněhu."]}}
{"translation": {"en": "Two young men in colorful swim trunks hold onto a rubber raft for as they are towed by a boat.", "cs": ["Dva mladí muži v barevných plavkách, kteří se drží gumového raftu, protože jsou taženi člunem."]}}
{"translation": {"en": "A seabird flies over a body of water with a dock in the background.", "cs": ["Mořský pták letí nad hladinou, v pozadí je molo."]}}
{"translation": {"en": "A group of bicyclers ride on a mountainous path.", "cs": ["Skupina cyklistů jedoucích po horské cestě."]}}
{"translation": {"en": "A young girl dressed mostly in pink is disrespectfully sitting on a sculpture at a park on a partly cloudy day.", "cs": ["Mladá dívka, oblečená převážně v růžovém, sedí neslušně na soše v parku za polojasného dne."]}}
{"translation": {"en": "Photo of a beautiful sunset full of palm trees", "cs": ["Fotka nádherného západu slunce nad palmami"]}}
{"translation": {"en": "A closeup of a spotted butterfly on a green leaf.", "cs": ["Záběr zblízka na tečkovaného motýla na zeleném listu."]}}
{"translation": {"en": "A photographer is ready to take a shot, with his backpack on.", "cs": ["Fotograf s batohem na zádech je připraven udělat snímek."]}}
{"translation": {"en": "Tiger stalks his prey on a barren landscape.", "cs": ["Tygr sleduje svou kořist ve vyprahlé krajině."]}}
{"translation": {"en": "Young man making figures with his skateboard on an urban street", "cs": ["Mladý muž předvádí triky na skateboardu na ulici ve městě"]}}
{"translation": {"en": "Woman after having pitched a ball at another woman batting.", "cs": ["Žena poté, co nadhodila míček jiné ženě, které jej odpaluje."]}}
{"translation": {"en": "This image is of a deer in a field looking up at someone.", "cs": ["Obrázek srnce v poli, který se na někoho dívá."]}}
{"translation": {"en": "A waterfall is flowing into a stream in the middle of a forest.", "cs": ["Vodopád proudí do potoka uprostřed lesa."]}}
{"translation": {"en": "German shepherd dog walking in the nature of a field", "cs": ["Německý ovčák jde po poli v přírodě"]}}
{"translation": {"en": "This image is of a girl riding on top of a horse in front of a crowd of people.", "cs": ["Obrázek dívky, která jede na koni před davem lidí."]}}
{"translation": {"en": "A man with a mustache sits in front of a concrete wall.", "cs": ["Muž s knírem sedí u betonové zdi."]}}
{"translation": {"en": "An woman and her children are standing on the sidewalk while their picture gets taken.", "cs": ["Žena a její děti stojí na chodníku, když je fotí."]}}
{"translation": {"en": "A female athlete jumping in the air on a field.", "cs": ["Atletka skáče na závodišti do vzduchu."]}}
{"translation": {"en": "A medium sized white horse stand on a rocky ledge overlooking a field or prairie.", "cs": ["Středně velký bílý kůň stojí na skalní římse s výhledem na pole či prérie."]}}
{"translation": {"en": "This image is of a group of dancers on a stage performing.", "cs": ["Obrázek skupiny tanečníků, kteří vystupují na pódiu."]}}
{"translation": {"en": "On the edge of the water is a dock with many kayaks.", "cs": ["Na břehu vody je přístaviště s mnoha kajaky."]}}
{"translation": {"en": "A car is airborne as it is driving on a dirt road.", "cs": ["Auto letí ve vzduchu během jízdy po prachové cestě."]}}
{"translation": {"en": "A group of girls clapping and dancing while people seated at tabled watch them.", "cs": ["Skupina dívek, které tleskají a tančí, zatímco je pozorují lidé sedící u stolu."]}}
{"translation": {"en": "A statue of a man on a horse in a ranch", "cs": ["Socha muže na koni na ranči"]}}
{"translation": {"en": "A child sitting at a restaurant table eating from a plate.", "cs": ["Dítě sedí u stolu v restauraci a jí z talíře."]}}
{"translation": {"en": "Photo of a man with his wagon and background of a cute cabin", "cs": ["Fotografie muže se svým povozem a s roztomilou chatkou v pozadí"]}}
{"translation": {"en": "A person wearing gray shorts is rolling around in mud.", "cs": ["Člověk v šedivých šortkách se kutálí do bláta."]}}
{"translation": {"en": "Several people and a brown dog enjoying the water and a sandy beach.", "cs": ["Několik lidí a hnědý pes, kteří se radují z vody a písečné pláže."]}}
{"translation": {"en": "a vulture posing atop a dead branch unfurling his wings with a blue sky background.", "cs": ["sup pózuje na vrchu větve mrtvého stromu a roztahuje křídla a za ním je modrá obloha."]}}
{"translation": {"en": "Two people are walking along a trail along some steep hills.", "cs": ["Dva lidé jdou po cestě podél strmých kopců."]}}
{"translation": {"en": "Kayakers race down a river around orange balls.", "cs": ["Kajakáři závodí na řece mezi oranžovými míči."]}}
{"translation": {"en": "A boy in a kayak paddles in fast-moving water with a big orange ball nearby.", "cs": ["Chlapec v kajaku pádluje na rychle se pohybující vodě poblíž oranžového balonu."]}}
{"translation": {"en": "A deer is standing outside in a grassy area.", "cs": ["Jelen stojí venku na travnatém území."]}}
{"translation": {"en": "A woman and her three children are going across a brick walkway in front of a building.", "cs": ["Žena a její tři děti jdou po cihlovém chodníku před budovou."]}}
{"translation": {"en": "A man with a beard is sitting on a step in front of a building.", "cs": ["Muž s plnovousem sedí na schodu před budovou."]}}
{"translation": {"en": "A man and woman enjoying a conversation at a coffee shop.", "cs": ["Muž a žena při konverzaci v kavárně."]}}
{"translation": {"en": "Two water skijets flying kite sails in water.", "cs": ["Dva vodní lyžaři s padáky na vodě."]}}
{"translation": {"en": "Four cyclists cross the railroad tracks during the race.", "cs": ["Čtyři cyklisté přejíždí během závodu přes koleje."]}}
{"translation": {"en": "A deer stands in the grass next to a dead end sign.", "cs": ["Srnec stojí v trávě vedle značky slepé ulice."]}}
{"translation": {"en": "Several people in kayaks can be seen going through a treacherous part of a white water course.", "cs": ["Několik lidí v kajacích, kteří jedou zrádným úsekem bílého vodního toku."]}}
{"translation": {"en": "lady in wet gear in a light green kyak in a river", "cs": ["žena v neoprenu v zeleném kajaku na řece"]}}
{"translation": {"en": "A black and white photo of a walk way in the woods.", "cs": ["Černobílá fotka cesty v lese."]}}
{"translation": {"en": "night shot of a starry sky with rocks in the foreground", "cs": ["noční snímek hvězdné oblohy s kameny v popředí"]}}
{"translation": {"en": "A woman is sitting against a wall with a cup between her legs.", "cs": ["Žena sedí u zdi s hrníčkem mezi nohama."]}}
{"translation": {"en": "shadows of tall trees against the blue sky and wispy clouds of a sunrise", "cs": ["stíny vysokých stromů na modré obloze a řídké mraky při východu slunce"]}}
{"translation": {"en": "Several children perform a dance choreography during class", "cs": ["Několik dětí předvádí při hodině taneční choreografii"]}}
{"translation": {"en": "A waterfall with large rocks next to it", "cs": ["Vodopád s velkými skalami vedle něj"]}}
{"translation": {"en": "A horse is jumping over a rail in a jumping competition.", "cs": ["Kůň skáče přes zábradlí při soutěži ve skocích."]}}
{"translation": {"en": "Two men running on the football field", "cs": ["Dva muži běží po fotbalovém hřišti."]}}
{"translation": {"en": "A female singer whips her hair back as a male guitarist plays beside her on stage.", "cs": ["Zpěvačka si odhazuje vlasy dozadu, zatímco za ní na pódiu stojí kytarista."]}}
{"translation": {"en": "There is a double rainbow over a green pasture.", "cs": ["Dvojitá duha nad zelenou pastvinou."]}}
{"translation": {"en": "A rider on a horse jumps an obstacle in a track", "cs": ["Jezdec na koni skáče přes překážku na trati"]}}
{"translation": {"en": "Wild flowers are blooming near a lake with a mountain in the distance.", "cs": ["Divoké květiny kvetou u jezera, s horou v dálce."]}}
{"translation": {"en": "A blond dog and a blonde woman play in a swimming pool.", "cs": ["Bílý pes a blonďatá paní si hrají v bazénu."]}}
{"translation": {"en": "Sepia toned image of snow mountains with two people walking cross sountry style.", "cs": ["Fotka s efektem sépie, na které jsou zasněžené hory a lidé, co prochází."]}}
{"translation": {"en": "This is a picture of a outdoor scene with mountains in the background and a couple of trees and a bench in the foreground.", "cs": ["Tohle je obrázek venkovní scény s horou v pozadí a několika stromy a lavičkou v popředí."]}}
{"translation": {"en": "A lizard swimming around branches and weeds.", "cs": ["Ještěrka pluje kolem větví a řas."]}}
{"translation": {"en": "An old blue truck is parked by some antique gas pumps.", "cs": ["Starý modrý náklaďák zaparkovaný u starobylého čerpacího stojanu."]}}
{"translation": {"en": "A blue sky and brown mountains adorn the natural landscape", "cs": ["Modrá obloha a hnědé hory zdobí přírodní krajinu"]}}
{"translation": {"en": "A boat in the middle of a large lake surrounded by woods.", "cs": ["Loď uprostřed velkého jezera obklopeného lesy."]}}
{"translation": {"en": "A motocross rider performs an aerial stunt, in selective focus.", "cs": ["Motokrosový jezdec, na kterého je zaostřeno, předvádí letecký kousek."]}}
{"translation": {"en": "A group of men are playing baseball in front of a crowd.", "cs": ["Skupina mužů hraje baseball před publikem."]}}
{"translation": {"en": "A group of children and a woman stand with their arms held in the air.", "cs": ["Skupina dětí a žena stojí s rukama zvednutýma do vzduchu."]}}
{"translation": {"en": "A group of cyclists are racing down a steep hill.", "cs": ["Skupina cyklistů závodí ze strmého kopce."]}}
{"translation": {"en": "A black and white photo of a hillside.", "cs": ["Černobílá fotka úbočí kopce."]}}
{"translation": {"en": "A man in a striped helmet is falling off of a motorcycle.", "cs": ["Muž s pruhovanou helmou padá z motorky."]}}
{"translation": {"en": "A group of people are at a sporting event holding up small umbrellas.", "cs": ["Skupina lidí na sportovní akci drží malé deštníky."]}}
{"translation": {"en": "a group of men walking a laden down horse down a tree lined path.", "cs": ["skupina mužů, kteří jdou s obtěžkaným koněm po cestě lemované stromy."]}}
{"translation": {"en": "a volcano or crater hole with a bunch of snow in it, with a lake in the background.", "cs": ["sopka nebo kráter s kupou sněhu vevnitř a na pozadí je jezero."]}}
{"translation": {"en": "A cattle gate lies flat on a dusty road.", "cs": ["Pastvinová brána leží na prašné cestě."]}}
{"translation": {"en": "A black and white photo of a busy outdoor area with people walking and a women smiling.", "cs": ["Černobílá fotografie rušného venkovního prostoru s procházejícími lidmi a ženami, které se usmívají."]}}
{"translation": {"en": "Many of the wooden bars were stacked in an artistic way.", "cs": ["Spousta polen byla umělecky rozestavěna."]}}
{"translation": {"en": "Small shed with the door open on the yard of a house", "cs": ["Malá budka s otevřenými dveřmi na dvoře domu"]}}
{"translation": {"en": "an old wooden bridge with a mountain behind it covered in pine trees.", "cs": ["starý dřevěný most s horou pokrytou borovicemi za ním."]}}
{"translation": {"en": "A ferry waits by a long dock with a city in the background while the sun sets.", "cs": ["Přívoz čeká u dlouhého mola, s městem v pozadí, při západu slunce."]}}
{"translation": {"en": "A white horse standing in front of a red hut", "cs": ["Bílý kůň stojí před červenou chatou"]}}
{"translation": {"en": "Camping site and car of another era in the middle of nowhere.", "cs": ["Tábořiště a auto z jiné doby uprostřed ničeho."]}}
{"translation": {"en": "This image is of a black cat sitting on top of a log scratching itself.", "cs": ["Obrázek černé kočky, která sedí na vrchu klády a škrábe se."]}}
{"translation": {"en": "A wagon is sitting in a yard with children playing and a red barn in the distance.", "cs": ["Povoz stojí na dvoře, okolo si hrají děti a v dálce je červená stodola."]}}
{"translation": {"en": "A lone wagon is parked on the grass near a barn.", "cs": ["Osamělý povoz, který je zaparkován na trávníku u stodoly."]}}
{"translation": {"en": "a man in black clothes and a hat performs a skateboarding trick along a concrete wall", "cs": ["muž v černém oblečení předvádí trik na skateboardu podél betonové zdi"]}}
{"translation": {"en": "Person standing on a wooden bridge over the river", "cs": ["Člověk stojí na dřevěném mostě přes řeku"]}}
{"translation": {"en": "This is a scene of a forest in the background and a lake in the foreground.", "cs": ["Obraz lesa v pozadí a jezera v popředí."]}}
{"translation": {"en": "A photograph of a man with a big beard.", "cs": ["Fotografie muže s velkým vousem."]}}
{"translation": {"en": "Woman in mid jump in middle of street surrounded by buildings.", "cs": ["Žena ve výskoku uprostřed ulice obklopené budovami."]}}
{"translation": {"en": "A young boy and girl playing outside hold a rope between them.", "cs": ["Malý chlapec a holčička, kteří si hrají venku, drží mezi sebou provaz."]}}
{"translation": {"en": "Two old men are are laughing together while sitting on some steps.", "cs": ["Dva staří muži, kteří se spolu smějí, zatímco sedí na nějakých schodech."]}}
{"translation": {"en": "A man riding on another mans shoulders amidst a sea of people.", "cs": ["Muž, který sedí jinému muži na ramenou uprostřed moře lidí."]}}
{"translation": {"en": "There are men on a subway car.", "cs": ["Muži ve vagonu metra."]}}
{"translation": {"en": "A paraglider leaves a spray of water as he is lifted out of the water.", "cs": ["Paraglidista za sebou zanechává spršku vody, když se zvedá z hladiny."]}}
{"translation": {"en": "An older man is playing a string instrument and is pictured in black and white.", "cs": ["Postarší muž hraje na strunný nástroj a je zobrazen černobíle."]}}
{"translation": {"en": "A yellow dog is running over a ball in the grass.", "cs": ["Žlutý pes běží po trávníku, na kterém je míč."]}}
{"translation": {"en": "A Swiss airplane gets ready for takeoff under a pink sky.", "cs": ["Švýcarské letadlo se připravuje na vzlet pod růžovou oblohou."]}}
{"translation": {"en": "The photo in which many oval wires are observed", "cs": ["Fotografie, na které jsou zachyceny oválné dráty"]}}
{"translation": {"en": "Several people dressed in kilts playing bagpipes on a green field.", "cs": ["Několik lidí v kiltech na zeleném poli hraje na dudy."]}}
{"translation": {"en": "A woman holding some books standing in front of an old or condemned building.", "cs": ["Žena, která drží nějaké knihy, stojí před starou budovou určenou k demolici."]}}
{"translation": {"en": "A group of men in a canoe race", "cs": ["Skupina mužů při závodu v kanoích"]}}
{"translation": {"en": "a pair of feet with two pairs of shoes on either side of them.", "cs": ["pár nohou se dvěma páry bot na obou stranách."]}}
{"translation": {"en": "The number 2 tram, which transports people up a long flight of steps.", "cs": ["Tramvaj číslo 2, která přepravuje lidi po dlouhých schodech."]}}
{"translation": {"en": "Guitar close up view with its ropes", "cs": ["Pohled zblízka na kytaru se strunami"]}}
{"translation": {"en": "A person wearing a gray shirt is riding a surfboard.", "cs": ["Člověk v šedém tričku jede na surfovém prkně."]}}
{"translation": {"en": "Dog in the street on a towel next to a motorbike", "cs": ["Pes na ulici na ručníku vedle motorky"]}}
{"translation": {"en": "A man in a red shirt is riding a skateboard down a railing.", "cs": ["Muž v červeném tričku jede na skateboardu po zábradlí."]}}
{"translation": {"en": "A snow owl sits on a branch staring into the distance.", "cs": ["Sněžná sova sedí na větvi a zírá do dálky."]}}
{"translation": {"en": "A woman running her candy stand which carries chocolate covered strawberries while people look at her wares.", "cs": ["Žena u svého stánku se sladkostmi, který nabízí jahody v čokoládě, zatímco si lidé prohlíží její zboží."]}}
{"translation": {"en": "An old woman dressed in leather print jacket and clothes for a much younger person.", "cs": ["Stará žena oblečená do kožené bundy a do oblečení pro mnohem mladší osobu."]}}
{"translation": {"en": "A man stands in the middle of a stony road", "cs": ["Muž stojí uprostřed kamenité cesty"]}}
{"translation": {"en": "People walking down the hall near a subway train.", "cs": ["Lidé jdou chodbou vedle metra."]}}
{"translation": {"en": "A woman and a black dog on a surfboard paddling through a pool of blue water with a little boy swimming nearby.", "cs": ["Žena a černý pes na surfovém prkně pádlují v bazénu s modrou vodou a poblíž nich plave malý chlapec."]}}
{"translation": {"en": "A closeup of a bee on pink flowers.", "cs": ["Detail včely na růžových květech."]}}
{"translation": {"en": "A clock in the foreground reads 6:51 while a tall skyscraper fills the background.", "cs": ["Hodiny v popředí ukazují 6:51, zatímco pozadí zaplňuje vysoký mrakodrap."]}}
{"translation": {"en": "A tropical beach with rocks, sand and waves.", "cs": ["Tropická pláž s kameny, pískem a vlnami."]}}
{"translation": {"en": "A picture of a river and a chinese like building.", "cs": ["Obrázek řeky a budovy, která vypadá jako čínská."]}}
{"translation": {"en": "A beautiful sunset in the sea with a bridge in the background", "cs": ["Krásný západ slunce na moři s mostem v pozadí"]}}
{"translation": {"en": "There is one man catching a ball and another wearing red sliding into base on a field.", "cs": ["Jeden muž, který chytá míček a další, v červeném, ve skluzu na metu."]}}
{"translation": {"en": "A man and a woman sit together on a green park bench.", "cs": ["Muž a žena sedí společně na zelené lavičce v parku."]}}
{"translation": {"en": "A black dog coming out of a swimming pool", "cs": ["Černý pes vylézá z bazénu"]}}
{"translation": {"en": "A brown lizard is sitting in an area of dried leaves.", "cs": ["Hnědá ještěrka sedí na suchém listí."]}}
{"translation": {"en": "People are walking on a sidewalk next to the beach,", "cs": ["Lidé, kteří jdou po chodníku vedle pláže,"]}}
{"translation": {"en": "A man with a black bag is walking barefoot through a city pond.", "cs": ["Muž s černou taškou jde bosý přes rybníček ve městě."]}}
{"translation": {"en": "large storm clouds pouring rain with a small rainbow inside over great plains", "cs": ["velké bouřkové mraky, ze kterých prší a mezi nimi malá duha nad rozlehlými pláněmi"]}}
{"translation": {"en": "A woman wearing a pink helmet and a backpack rides a bike in front of a city", "cs": ["Žena s růžovou helmou a batohem jede na kole po městě"]}}
{"translation": {"en": "Men playing football on the pitch", "cs": ["Muži hrají na hřišti fotbal"]}}
{"translation": {"en": "A butterfly perches on several raspberries.", "cs": ["Motýl se posadil na několika malinách."]}}
{"translation": {"en": "A man wipes his nose as he looks into the shop window.", "cs": ["Muž si utírá nos, když se dívá do výlohy obchodu."]}}
{"translation": {"en": "A rock cliff in the desert behind several green trees.", "cs": ["Skalní útes v poušti za několika zelenými stromy."]}}
{"translation": {"en": "A communications truck with equipment parked outside an official-looking building.", "cs": ["Nákladní vůz s vybavením zaparkovaným před oficiálně vypadající budovou."]}}
{"translation": {"en": "Football player number 8 is ready to catch the football as number 44 tries to block him.", "cs": ["Fotbalista s číslem 8 chytá míč a fotbalista s číslem 44 se jej snaží ubránit."]}}
{"translation": {"en": "There is a girl with a blue shirt and black pants sitting on the door steps.", "cs": ["Dívka v modrém vršku a černých kalhotách sedí na schodech."]}}
{"translation": {"en": "Two young men hike down a gravel path through the woods.", "cs": ["Dva mladí muži prochází lesem po kamenité cestě."]}}
{"translation": {"en": "Black and white photograph of bridge over water with heavy fog.", "cs": ["Černobílá fotografie mostu přes vodu v husté mlze."]}}
{"translation": {"en": "a line of triangular roofed, white and red houses are near an outdoor area with chairs and tables", "cs": ["řada bílých a červených domů s trojúhelníkovou střechou, které se nachází poblíž venkovního prostoru se židlemi a stoly"]}}
{"translation": {"en": "Palm trees are in the foreground of a body of water with a ferris wheel in the background.", "cs": ["Palmy před vodní hladinou a ruská kola v pozadí."]}}
{"translation": {"en": "A woman wearing a backpack is eating a sundae at a restaurant.", "cs": ["Žena s batohem jí v restauraci zmrzlinový pohár."]}}
{"translation": {"en": "Night view of a city on the banks of a river", "cs": ["Noční pohled na město na břehu řeky"]}}
{"translation": {"en": "A man in a red jacket at a race track is blowing a horn.", "cs": ["Muž v červeném saku fouká na závodní dráze do trubky."]}}
{"translation": {"en": "Jugglers are busy throwing pins to each other.", "cs": ["Žongléři jsou zaneprázdněni házením kuželek jeden druhému."]}}
{"translation": {"en": "A group of young children are smiling and dancing.", "cs": ["Skupina malých dětí, které se smějí a tancují."]}}
{"translation": {"en": "A hand is holding up a white pot that has a plant growing in it.", "cs": ["Ruka drží bílý květináč, ve kterém roste rostlina."]}}
{"translation": {"en": "An octopus is in a bag in a white box.", "cs": ["Chobotnice v tašce v bílé krabici."]}}
{"translation": {"en": "Three people on dirt bikes are riding through a muddy part of the course and causing mud to fly at the camera person.", "cs": ["Tři lidé na špinavých kolech jedou bahnitou tratí a způsobují, že bahno létá na fotografa."]}}
{"translation": {"en": "View from the front seat of a car being driven down a curving road at sunset.", "cs": ["Pohled z přední sedačky auta, které jede po zahnuté silnici při západu slunce."]}}
{"translation": {"en": "A copse of trees in the middle of a mist-covered body of water.", "cs": ["Husté stromy uprostřed zamlžené vodní plochy."]}}
{"translation": {"en": "This is one football player holding up in the air a teammate while in the end zone.", "cs": ["Jeden fotbalista, který drží ve vzduchu svého spoluhráče, zatímco stojí za koncovou čárou."]}}
{"translation": {"en": "A fireworks display is in mid bloom while a shooting star firework is in the background.", "cs": ["Ohňostroj je v polo odpalu zatímco ohňostrojová hvězda padá na pozadí dolů."]}}
{"translation": {"en": "A whale's tail disappearing into the water as people on a schooner look on.", "cs": ["Velrybí ocas mizí ve vodě, zatímco jej sledují lidé na škuneru."]}}
{"translation": {"en": "A wide view of another galaxy or sector of space.", "cs": ["Široký pohled na jinou galaxii nebo sektor vesmíru."]}}
{"translation": {"en": "A mountain lake under a blue sky with low clouds.", "cs": ["Horské jezero pod modrou oblohou s nízko položenými mraky."]}}
{"translation": {"en": "A dock next to a street and a few small buildings", "cs": ["Molo vedle silnice a několik malých budov"]}}
{"translation": {"en": "Picture of 3 types of camera lenses, and one made into a plant holder in a pot.", "cs": ["Obrázek 3 typů objektivů fotoaparátu a z jednoho je udělán držák na rostliny v květináči."]}}
{"translation": {"en": "A women holds her gloved hand over her face while standing on a deck.", "cs": ["Žena drží před obličejem ruku v rukavici, když stojí na plošině."]}}
{"translation": {"en": "A young blonde woman in a red shirt stands inside a church and stares intensely at the abundance of lit white candles with her hand raised to one of the candles.", "cs": ["Mladá blonďatá dívka v červené košili stojí uvnitř kostela a intenzivně pozoruje množství zapálených bílých svíček s rukou zdviženou k jedné z nich."]}}
{"translation": {"en": "Five horses and jockeys participating in a race.", "cs": ["Pět koní a žokejů, kteří se účastní závodu."]}}
{"translation": {"en": "A view of the blue ocean with a boat floating and green trees and mountains along the shore.", "cs": ["Pohled na modrý oceán s plovoucí lodí a zelenými stromy a horami podél pobřeží."]}}
{"translation": {"en": "A fallen tree in a river is in the foreground of a scenic picture of mountains on a partly cloudy day.", "cs": ["Padlý strom v řece v popředí malebného obrazu hor za polojasného dne."]}}
{"translation": {"en": "A dock in a lake that is surrounded by trees and hills.", "cs": ["Molo v jezeře, které je obklopené stromy a kopci."]}}
{"translation": {"en": "Beautiful landscape of a waterfall in the middle of the forest", "cs": ["Krásná krajina u vodopádu uprostřed lesa"]}}
{"translation": {"en": "A lady wearing purple and red is standing under a tree.", "cs": ["Žena ve fialovočerveném stojí pod stromem."]}}
{"translation": {"en": "A bunch of little kids are exercising.", "cs": ["Banda malých dětí, které cvičí."]}}
{"translation": {"en": "View of fireworks and a lake at night", "cs": ["Pohled na ohňostroje a jezero v noci"]}}
{"translation": {"en": "This image is of a lady laying down reaching towards the camera.", "cs": ["Snímek ležící dámy, která se natahuje směrem k fotoaparátu."]}}
{"translation": {"en": "This image is of a squirrel sitting on top of a person's bag.", "cs": ["Obrázek veverky sedící na něčí tašce."]}}
{"translation": {"en": "A squirrel eats something standing on a wooden surface", "cs": ["Veverka, která stojí na dřevěném povrchu, něco jí."]}}
{"translation": {"en": "Tree limbs protruding from body of water with fog coming off the water with pinkish/orange glow to the left through the fig.", "cs": ["Větve stromu vyčnívající ze zamlžené růžovooranžové hladiny."]}}
{"translation": {"en": "Black, white, tan dog running with water falling off, wearing a red bandanna.", "cs": ["Černobílohnědý pes s červeným šátkem, který běží a stříká z něj voda."]}}
{"translation": {"en": "A man wearing a red hat is sitting next to a woman wearing a red dress.", "cs": ["Muž s červeným kloboukem sedí vedle ženy v červených šatech."]}}
{"translation": {"en": "Two children are riding their bikes on a fenced path.", "cs": ["Dvě děti jedou na svých kolech po oplocené cestě."]}}
{"translation": {"en": "Car approaching by the road at sunset", "cs": ["Auto přijíždí po ulici při západu slunce"]}}
{"translation": {"en": "The blackened grey stoned architecture features stairs and a small water fountain.", "cs": ["Načernalá architektonická stavba ze šedého kamene zahrnuje schody a malou vodní fontánu."]}}
{"translation": {"en": "A black and white photo of a misty day with stunted trees in a field.", "cs": ["Černobílá fotografie mlhavého dne se zakrnělými stromy na poli."]}}
{"translation": {"en": "Larges rocks near a river with mountains and trees behind it.", "cs": ["Velké kameny u řeky, s horami a stromy za nimi."]}}
{"translation": {"en": "Two people walk through a field with trees and yellow leaves on the ground.", "cs": ["Dva lidé jdou po poli se stromy a se žlutými listy na zemi."]}}
{"translation": {"en": "A lake surrounded by snow-capped mountains under a cloudy sky.", "cs": ["Jezero obklopené sněhem pokrytými horami pod zamračenou oblohou."]}}
{"translation": {"en": "A woman in white looks through a store window.", "cs": ["Žena v bílém, která se dívá skrze výlohu obchodu."]}}
{"translation": {"en": "Two woman sitting in front of a mirror.", "cs": ["Dvě ženy sedí před zrcadlem."]}}
{"translation": {"en": "You see a long pier on the beach at sunset", "cs": ["Dlouhé molo na pláži při západu slunce"]}}
{"translation": {"en": "Woman with hair in her face with green sign in background.", "cs": ["Žena s vlasy do tváře se zeleným nápisem v pozadí."]}}
{"translation": {"en": "A man in a hard hat with a light stands by a building.", "cs": ["Muž v helmě se světlem stojí u budovy."]}}
{"translation": {"en": "A woman is dressed in yellow like her pikachu toy next to her.", "cs": ["Žena je oblečena do žlutého jako její hračka pikachu vedle ní."]}}
{"translation": {"en": "picture with a big lobby with a beautiful architecture", "cs": ["obrázek velké haly s nádhernou architekturou"]}}
{"translation": {"en": "Numerous people are walking near an old building with archways.", "cs": ["Několik lidí jde okolo staré budovy s klenutými chodbami."]}}
{"translation": {"en": "This is a scene of a walkway between wooden buildings with a person in the far background.", "cs": ["Výjev chodníku mezi dřevěnými budovami s osobou v dáli."]}}
{"translation": {"en": "A city lit up at night next to the river.", "cs": ["Svítící město v noci u řeky."]}}
{"translation": {"en": "This image is of a top view of a pool of water and people's houses.", "cs": ["Tento obrázek je pohled shora na bazén a lidská obydlí."]}}
{"translation": {"en": "The blackberries appear ripe while the leaves are changing color in the fall.", "cs": ["Ostružiny vypadají, že jsou zralé, zatímco listy na podzim mění barvu."]}}
{"translation": {"en": "Black and white image of two women standing at the bottom of concrete stairs outside.", "cs": ["Černobílý obrázek dvou žen, které stojí na úpatí venkovních betonových schodů."]}}
{"translation": {"en": "a large beach with people under umbrellas in the background and a person using a shower in the foreground", "cs": ["veliká pláž s lidmi pod slunečníky v pozadí a člověkem, který se sprchuje, v popředí"]}}
{"translation": {"en": "A green baseball scoreboard with a score of 2-0.", "cs": ["Zelená baseballová výsledková tabule se skóre 2-0."]}}
{"translation": {"en": "A brick residence with one small window and a satellite dish in the yard.", "cs": ["Cihlový příbytek s jedním malým oknem a satelitní parabolou na dvorku."]}}
{"translation": {"en": "This image is of a yellow and red airplane parked on a beach.", "cs": ["Obrázek žlutočerveného letounu zaparkovaného na pláži."]}}
{"translation": {"en": "People walk down a dirt path past a tree.", "cs": ["Lidé, kteří jdou po hliněné cestě, míjí strom."]}}
{"translation": {"en": "A man in a mask and rainbow wig stands on a busy road.", "cs": ["Muž v masce a v duhové paruce stojí na rušné silnici."]}}
{"translation": {"en": "Black and white photo of a woman racing on her horse.", "cs": ["Černobílá fotografie ženy, která závodí na svém koni."]}}
{"translation": {"en": "Close up of the end of an orange paddle held by a man on a sandy beach.", "cs": ["Pohled zblízka na konec oranžového pádla, které drží muž na písečné pláži."]}}
{"translation": {"en": "People in the street girl in blue sweater and carrying a bag", "cs": ["Lidé na ulici, dívka v modrém svetru, která nese tašku"]}}
{"translation": {"en": "This is a image of a wall with pink and blue image on it.", "cs": ["Toto je snímek zdi, na které je růžový a modrý obrázek."]}}
{"translation": {"en": "This image is of a painting on a wall of wolves running.", "cs": ["Obrázek běžících vlků namalovaných na zdi."]}}
{"translation": {"en": "shadow of bell tower on brick building and reflected in window", "cs": ["stín zvonice na cihlové budově, která se odráží i v okně"]}}
{"translation": {"en": "A sunset on a lake with trees along the lake.", "cs": ["Západ slunce na jezeře se stromy okolo jezera."]}}
{"translation": {"en": "A group of trees with golden leaves sits reflected in a lake.", "cs": ["Skupina stromů se zlatými listy, které se odráží v jezeře."]}}
{"translation": {"en": "There are many windows with many colors with candles near them.", "cs": ["Hodně oken mnoha barev, se svíčkami v jejich blízkosti."]}}
{"translation": {"en": "Man sitting on a stool painting a business sign on a garage door.", "cs": ["Muž sedí na židli a maluje na dveře garáže znak obchodu."]}}
{"translation": {"en": "This is a close-up view of a right foot flip-flop.", "cs": ["Záběr zblízka na pravou žabku."]}}
{"translation": {"en": "Photo of a beautiful sea with a nice bridge in the middle", "cs": ["Fotografie krásného moře s pěkným mostem uprostřed"]}}
{"translation": {"en": "Three people walking in the courtyard of a city.", "cs": ["Tři lidé, kteří jdou po městském nádvoří."]}}
{"translation": {"en": "clay figures of a dog in the foreground and three black men in orange hats in the background", "cs": ["keramická soška psa v popředí a tří černochů v oranžových kloboucích v pozadí"]}}
{"translation": {"en": "A woman with a feathered hat takes a selfie as a woman dressed in blue looks on", "cs": ["Žena s kloboukem z peří si fotí selfie a žena v modrém se na ni dívá"]}}
{"translation": {"en": "A woman's face is painted like a clown and she is wearing layers of colorful clothes.", "cs": ["Tvář ženy je pomalovaná jako klaun a má na sobě vrstvy barevného oblečení"]}}
{"translation": {"en": "A machine is working in a field of water.", "cs": ["Stroj, který pracuje na zavodněném poli."]}}
{"translation": {"en": "The sun sets behind a pier on the beach.", "cs": ["Slunce zapadá za molem na pláži."]}}
{"translation": {"en": "The ceiling of what looks like a train station is bathed in light from large windows.", "cs": ["Strop toho, co vypadá jako vlakové nádraží, je zalit sluncem z velkých oken."]}}
{"translation": {"en": "A black and white image of three people appearing to be college aged standing looking through books.", "cs": ["Černobílý obrázek tří lidí, nejspíše vysokoškoláků, kteří stojí a prohlíží si knihy."]}}
{"translation": {"en": "Groups of people in front of an historic building with a nearby fountain.", "cs": ["Skupiny lidí před historickou budovou s nedalekou fontánou."]}}
{"translation": {"en": "The lady with the red purse is taking pictures of the lady in the white dress with a brown purse.", "cs": ["Dáma s červenou kabelkou, která si fotí dámu v bílých šatech a s hnědou kabelkou."]}}
{"translation": {"en": "A man and a woman pose at the Eiffel Tower.", "cs": ["Muž a žena pózují u Eiffelovy věže."]}}
{"translation": {"en": "A young boy is kicking off of his scooter.", "cs": ["Mladý chlapec se odráží na koloběžce."]}}
{"translation": {"en": "A turtle climbs on a branch floating in the water", "cs": ["Želva leze na větev, která plave ve vodě"]}}
{"translation": {"en": "A view of a road winding through a forest by a cliffside.", "cs": ["Pohled na silnici vinoucí se lesem na straně útesu."]}}
{"translation": {"en": "A women with short black hair, wearing glasses and a green, red and black sweater, is looking at some postcards in an outdoor shop.", "cs": ["Žena s krátkými černými vlasy, brýlemi a zelenočervenočerném svetru, která si prohlíží nějaké pohlednice u venkovního stánku."]}}
{"translation": {"en": "Two men sitting watching notes in a notebook", "cs": ["Dva muži sedí a dívají se do poznámkového bloku"]}}
{"translation": {"en": "Two young women, one with a large backpack, looking at a river over a metal handrail.", "cs": ["Dvě mladé ženy, jedna s velkým batohem, se dívají na řeku přes kovové zábradlí."]}}
{"translation": {"en": "A blonde woman with a backwards hat on is lounging and making a peace sign.", "cs": ["Blonďatá žena s obrácenou kšiltovkou posedává a ukazuje znamení míru."]}}
{"translation": {"en": "A black and white photo of an elderly Asian man in a crowd.", "cs": ["Černobílá fotografie postaršího Asiata v davu."]}}
{"translation": {"en": "A woman is leaning her arm on her cheek while looking out her window over flag-decorated balcony.", "cs": ["Žena si podpírá rukou tvář, zatímco se kouká z okna nad balkonem vyzdobeným vlajkami."]}}
{"translation": {"en": "A pool is covered by a large blue covering next to a several story tall building.", "cs": ["Bazén poblíž několikapatrové vysoké budovy je pokryt velkou modrou krycí plachtou."]}}
{"translation": {"en": "Colorful purple graffiti art covers a wall alongside a curved road.", "cs": ["Barevné graffiti pokrývá zeď podél zahnuté silnice."]}}
{"translation": {"en": "two ladies walking down a sidewalk and one of them is looking at the camera.", "cs": ["dvě dámy jdou po chodníku a jedna z nich se dívá do fotoaparátu."]}}
{"translation": {"en": "A girl wears a blue bathing suit and blue dotted sunhat.", "cs": ["Dívka má na sobě modré plavky a modrý puntíkovaný klobouk proti slunci."]}}
{"translation": {"en": "Structures of old houses of different colors and people in front", "cs": ["Stavby starých domků různých barev a lidé před nimi"]}}
{"translation": {"en": "This image is of a person in a tent camping out in a grassy area.", "cs": ["Obrázek člověka ve stanu, který kempuje na travnaté ploše."]}}
{"translation": {"en": "A city skyscape in back of several metal pipes.", "cs": ["Pohled na město zpoza několika kovových trubek."]}}
{"translation": {"en": "Yellow and red fire-fighting airplane dropping water.", "cs": ["Žlutočervené hasičské letadlo vypouští vodu."]}}
{"translation": {"en": "A close up of an old man walking down the sidewalk.", "cs": ["Pohled zblízka na starého muže, který jde po chodníku."]}}
{"translation": {"en": "Three blue fighters jets doing a formation in the air.", "cs": ["Tři dobré stíhačky vytvářejí formaci ve vzduchu."]}}
{"translation": {"en": "A man standing alone in a black and white hallway.", "cs": ["Muž stojí sám v černobílé chodbě."]}}
{"translation": {"en": "A man in a red shirt and red hat throws a baseball.", "cs": ["Muž v červeném tričku a červené kšiltovce hází baseballový míček."]}}
{"translation": {"en": "A person is filling a bottle of juice with a dispenser.", "cs": ["Člověk plní dávkovačem láhev džusu."]}}
{"translation": {"en": "A man walks in front of a wall that has graffiti on it", "cs": ["Muž jde před stěnou s graffiti"]}}
{"translation": {"en": "A group of five dancers in black costumes are captured mid jump on the stage.", "cs": ["Skupina pěti tanečnic v černých úborech, které jsou zachyceny uprostřed výskoku na jevišti."]}}
{"translation": {"en": "Green pasture blending into trees surrounding a castle.", "cs": ["Zelené pastviny přechází do stromů, co obklopují hrad."]}}
{"translation": {"en": "A women in red holding an American flag and two trump election signs.", "cs": ["Žena v červeném drží americkou vlajku a dvě Trumpovy volební cedule."]}}
{"translation": {"en": "Beautiful landscape of a farm and his meadow", "cs": ["Krásný výjev louky a krajiny na farmě"]}}
{"translation": {"en": "A person boards a plane on the tarmac.", "cs": ["Člověk nastupuje do letadla na asfaltu."]}}
{"translation": {"en": "A young girl stretches beside a large body of water.", "cs": ["Mladá dívka se protahuje před rozlehlou vodní hladinou."]}}
{"translation": {"en": "A black and white picture of the back of a single engine plane over water.", "cs": ["Černobílý obrázek zádě jednomotorového letadla nad vodou."]}}
{"translation": {"en": "An empty hall with several entrances to other rooms and a door at the end", "cs": ["Prázdná chodba s několika vchody do dalších místností a s dveřmi na konci"]}}
{"translation": {"en": "a human pyramid in front of an old sculpture", "cs": ["lidská pyramida před sochou"]}}
{"translation": {"en": "A picture of a tree and a cloudy sky.", "cs": ["Obrázek stromu a zatažené oblohy."]}}
{"translation": {"en": "A beautiful landscape with a great river and pine trees", "cs": ["Krásná krajina s velkou řekou a borovicemi"]}}
{"translation": {"en": "Two red sedans are parked on the lawn.", "cs": ["Dva červené sedany zaparkované na trávníku."]}}
{"translation": {"en": "Woman baseball player moving the bat hard", "cs": ["Hráčka baseballu tvrdě odpaluje pálkou"]}}
{"translation": {"en": "A walkway at the beach lined with palm trees and flags.", "cs": ["Chodníček na pláži lemovaný palmami a vlajkami."]}}
{"translation": {"en": "The cityline is filled with large buildings of various sizes and few people walk along the streets.", "cs": ["Pohled na město je tvořen velkými budovami různých velikostí a několik lidí kráčí po ulicích."]}}
{"translation": {"en": "A city street with several people walking and riding bicycles.", "cs": ["Městská ulice s několika lidmi, co jsou nebo jedou na kole."]}}
{"translation": {"en": "A Chicago Cubs second baseman prepares to field the ball as the pitcher winds up.", "cs": ["Druhý hráč na metě klubu Chicago Cubs se připravuje na odehrání míčku zatímco se nadhazovač napřahuje."]}}
{"translation": {"en": "A girl holds a sunflower", "cs": ["Dívka drží slunečnici."]}}
{"translation": {"en": "A close-up shot of a sunflower and grass with pebbles nearby.", "cs": ["Detailní záběr slunečnice, trávy a oblázků poblíž."]}}
{"translation": {"en": "A black and white image of a man and a woman laughing really hard, the man is covering his face with his hand.", "cs": ["Černobílý obrázek muže a ženy, kteří se nahlas smějí, muž si zakrývá tvář rukou."]}}
{"translation": {"en": "Tall building with lights in billboard marketing of Bud Light, TOSHIBA and TDK.", "cs": ["Vysoká budova se světelnými reklamami na Bud Light, Toshibu a TDK."]}}
{"translation": {"en": "A large elk standing in the middle of the field.", "cs": ["Velký jeden stojí uprostřed pole."]}}
{"translation": {"en": "Black and white photo of a dog on a log in the middle of a forest", "cs": ["Černobílá fotografie psa na kmeni uprostřed lesa"]}}
{"translation": {"en": "A yellow and black butterfly sitting on a tree branch with its wings fully exposed.", "cs": ["Žlutočerný motýl sedí na větvi stromu s široce roztaženými křídly."]}}
{"translation": {"en": "A man wearing a red scarf is riding a motorcycle.", "cs": ["Muž, který má červenou šálu, řídí motorku."]}}
{"translation": {"en": "The red flowers sit on the outside glass table.", "cs": ["Červená květina položená na skleněném stole venku."]}}
{"translation": {"en": "Beautiful old model car is parked.", "cs": ["Zaparkovaný krásný model starého auta."]}}
{"translation": {"en": "A body of water is in the foreground at dusk with a lighted path up the hill in the distance.", "cs": ["Vodní hladina za soumraku v popředí a osvětlená cesta na kopci v dálce."]}}
{"translation": {"en": "A red bird on the branch of a tree", "cs": ["Červený pták na větvi stromu"]}}
{"translation": {"en": "A man and a woman using their cell phones in the corner of a store", "cs": ["Muž a žena na rohu obchodu, kteří používají své mobilní telefony"]}}
{"translation": {"en": "A mountain lion is sitting on rocks with red fallen leaves scattered over the rocks and landscape.", "cs": ["Puma sedí na kamenech s červenými listy, které jsou na nich a po okolí napadané."]}}
{"translation": {"en": "Low angle view of a man and woman embracing outside a garden surrounding a church.", "cs": ["Pohled zezdola na muže a ženu v objetí u kostela obklopeného zahradou."]}}
{"translation": {"en": "Numerous green vines are growing on a lattice formation.", "cs": ["Několik zelených rév roste na mřížové konstrukci."]}}
{"translation": {"en": "Cars are parked in a grassy field near a two story house.", "cs": ["Auta jsou zaparkovaná na trávníku vedle dvoupatrového domu."]}}
{"translation": {"en": "A white sedan and a silver sedan is parked under a graffitied wall containing two brown beetles holding light pink flowers.", "cs": ["Bílý sedan a stříbrný sedan jsou zaparkovány u zdí pokryté graffiti, na které jsou dva hnědí brouci držící světle růžové květiny."]}}
{"translation": {"en": "A woman with dark hair is wearing a floppy white hat and leather jacket.", "cs": ["Žena s tmavými vlasy má na sobě bílý měkký klobouk a koženou bundu."]}}
{"translation": {"en": "An ancient, historic building glows golden in the setting sun.", "cs": ["Starobylá historická budova září v zapadajícím slunci."]}}
{"translation": {"en": "A kite with the Lone Star flag of Texas on it stuck in a tree.", "cs": ["Drak s vlajkou Lone Star v Texasu, který uvízl na stromě."]}}
{"translation": {"en": "A canyon has green trees and dirt roads on its floor while the sun shines in from the right side.", "cs": ["Kaňon se zelenými stromy a prašnými stezkami na dně, zatímco na něj zprava svítí slunce."]}}
{"translation": {"en": "Landscape with trees and at the end the sun shining", "cs": ["Krajina se stromy a svítícím sluncem v dáli"]}}
{"translation": {"en": "Mountain landscape and green pastures", "cs": ["Horná krajina a zelené pastviny"]}}
{"translation": {"en": "A corn plant is growing in a small patch of grass by the road.", "cs": ["Rostlina kukuřice roste na malé ploše trávy u silnice."]}}
{"translation": {"en": "a group of coins sitting on a blue background", "cs": ["seskupení mincí ležících na modrém pozadí"]}}
{"translation": {"en": "Two wooden tables with bottles of liquor on top.", "cs": ["Dva dřevěné stolky, na nichž jsou láhve alkoholu."]}}
{"translation": {"en": "Rainbow lights are shown above a music concert, made more bright by smoke.", "cs": ["Duhová světla zvýrazněná kouřem nad hudebním koncertem."]}}
{"translation": {"en": "A large jumbo jet in the air with its landing gear down.", "cs": ["Velké tryskové letadlo ve vzduchu se spuštěným podvozkem."]}}
{"translation": {"en": "A man in a yellow vest pushes a cart next to a train.", "cs": ["Muž ve žluté vestě tlačí vozík vedle vlaku."]}}
{"translation": {"en": "Man standing by the sea taking a photo of the sunset", "cs": ["Muž stojí u moře a fotí si západ slunce"]}}
{"translation": {"en": "A couple is standing together near a clock face.", "cs": ["Pár stojí společně před ciferníkem."]}}
{"translation": {"en": "A woman standing in front of a work of art in the museum taking a photograph", "cs": ["Žena, která stojí před uměleckým dílem v muzeu, fotografuje"]}}
{"translation": {"en": "People are scattered on the beach in the daytime.", "cs": ["Lidé jsou během dne roztroušeni na pláži."]}}
{"translation": {"en": "view through the net of a soccer goal being scored", "cs": ["pohled přes síť na vstřelený fotbalový míč do brány"]}}
{"translation": {"en": "The corner of a building where you see a man taking a picture", "cs": ["Roh budovy, kde vidíte muže, který fotografuje"]}}
{"translation": {"en": "A man sitted having a smoke with a glass of pepsi in black and white", "cs": ["Černobílý záběr muže, který sedí a dává si cigaretu a sklenici Pepsi"]}}
{"translation": {"en": "Man on a motorcycle running on a road without a road", "cs": ["Muž na motocyklu jede po cestě bez asfaltu"]}}
{"translation": {"en": "A small girl in a pink shirt is eating something from a bowl with a spoon.", "cs": ["Malá holčička v růžovém tričku jí něco lžící z misky."]}}
{"translation": {"en": "A hand on the water and some mountains in the background", "cs": ["Ruka nad vodou a nějaké hory v pozadí."]}}
{"translation": {"en": "A person is running in the grass in front of a leaning building.", "cs": ["Osoba běží na trávníku před nakloněnou budovou."]}}
{"translation": {"en": "A city street at night with trucks lining the side.", "cs": ["Městská ulice se zaparkovanými náklaďáky u kraje."]}}
{"translation": {"en": "A young boy is walking up a path surrounded by water.", "cs": ["Malý chlapec jde po cestě obklopené vodou."]}}
{"translation": {"en": "A picture of a sunset through the trees and fog", "cs": ["Obrázek západu slunce skrze stromy a mlhu"]}}
{"translation": {"en": "An elderly couple on a wooden deck looking at the mountain scenery.", "cs": ["Postarší pár se z dřevěné terasy dívá na horské scenérie."]}}
{"translation": {"en": "Different types of boats on the edge of a city with people around", "cs": ["Různé typy lodí na okraji města s lidmi okolo"]}}
{"translation": {"en": "A cobblestone lined street with stucco buildings on each side.", "cs": ["Ulice dlážděná dlažebními kostkami se štukovanými budovami na každé straně."]}}
{"translation": {"en": "a solitary soccer player with the jersey number 2, runs on the field.", "cs": ["osamělý fotbalista s číslem 2 na dresu běží po hřišti"]}}
{"translation": {"en": "A white lighthouse set against a cloudy blue sky.", "cs": ["Bílý maják, který se tyčí na zamračené modré obloze."]}}
{"translation": {"en": "Several interesting looking buildings are featured in the background of a busy street featuring many vehicles.", "cs": ["Několik zajímavě vypadajících budov, které se nachází na pozadí rušné ulice s mnoha vozidly."]}}
{"translation": {"en": "A soccer player in a white uniform falling in the air after a soccer player in a black uniform kicks his foot underneath him.", "cs": ["Fotbalista v bílém dresu letí do vzduchu poté, co mu fotbalista v černém podkopává nohu."]}}
{"translation": {"en": "three wine glasses with wine sitting outside on ledge", "cs": ["tři skleničky s vínem stojí na římse"]}}
{"translation": {"en": "a boat is seen sailing along a large body of water in overcast weather", "cs": ["člun, který plachtí po hladině za zamračeného počasí"]}}
{"translation": {"en": "A group of tall buildings is shown in black and white.", "cs": ["Skupina vysokých budov je zobrazena černobíle."]}}
{"translation": {"en": "There is a red train on railroad tracks.", "cs": ["Červený vlak na železničních kolejích."]}}
{"translation": {"en": "This is a tree with no leaves in the foreground and there are trees with colorful leaves in the background.", "cs": ["Strom bez listů v popředí a v pozadí jsou stromy s barevnými listy."]}}
{"translation": {"en": "Two cyclists are riding on the street at night.", "cs": ["Dva cyklisté jedou v noci po silnici."]}}
{"translation": {"en": "A group of cyclists waiting to bike ride at night", "cs": ["Skupina cyklistů čekají na noční jízdu na kole"]}}
{"translation": {"en": "This image is of a woman carrying her bike running across a field.", "cs": ["Toto je obrázek ženy, která drží kolo a běží přes pole."]}}
{"translation": {"en": "A person in biking gear walking a bicycle up a hill.", "cs": ["Osoba v cyklistickém tlačí kolo do kopce."]}}
{"translation": {"en": "The photo of a large shopping center in the city", "cs": ["Fotografie velkého nákupního centra ve městě"]}}
{"translation": {"en": "A small brown dog wearing a pink sweater is crawling out of a large strawberry made of fabric.", "cs": ["Malý hnědý pes v růžovém svetru se plazí z velké látkové jahody."]}}
{"translation": {"en": "An empty bus stop with a half-full trash can.", "cs": ["Prázdná autobusová zastávka s poloprázdným odpadkovým košem."]}}
{"translation": {"en": "a city in sunset, a large orange colored building in the back right corner.", "cs": ["město při západu slunce, velká oranžová budova v pravém zadním rohu."]}}
{"translation": {"en": "A book in a foreign language sits among other publications on a chair.", "cs": ["Kniha v cizím jazyce leží na křesle vedle dalších publikací."]}}
{"translation": {"en": "black and white shot of a man walking carrying a latter", "cs": ["černobílý snímek muže, co jde a nese žebřík"]}}
{"translation": {"en": "Man in cowboy uniform on white horse flying denver broncos flag", "cs": ["Muž v kovbojské uniformě na bílém koni a s vlající vlajkou Denver Broncos"]}}
{"translation": {"en": "A white dog and a black dog playing in the sand", "cs": ["Bílý pes a černý pes si hrají na písku"]}}
{"translation": {"en": "A silver car sits in front of a bright pink trailer.", "cs": ["Stříbrné auto stojí před jasně růžovým přívěsem."]}}
{"translation": {"en": "A purple flower wins 3rd place in a competition.", "cs": ["Fialová květina, která vyhrála 3.místo v soutěži."]}}
{"translation": {"en": "Photo of a beautiful cloudy city with big clouds", "cs": ["Fotografie krásného oblačného města v velkými mraky"]}}
{"translation": {"en": "A woman takes a nap on her purse with a book covering her face.", "cs": ["Žena odpočívá na své kabelce, knihou si zakrývá obličej."]}}
{"translation": {"en": "a barge on a muddy river with heavy machinery raping coal from the planet in the background.", "cs": ["bagr na bahnité řece s těžkými stroji těžícími uhlí z půdy v pozadí."]}}
{"translation": {"en": "A white statue and a gray statue are at the entrance of a building.", "cs": ["Bílá a šedá socha stojí u vchodu do budovy."]}}
{"translation": {"en": "a tree with the leaves yellowing behind a small tool shed.", "cs": ["strom se žloutnoucími listy za malou kůlnou"]}}
{"translation": {"en": "Photo of a beautiful mountainous bed full of snow and a lake around it", "cs": ["Fotka krásného zasněženého horského hřebenu s jezerem okolo."]}}
{"translation": {"en": "A row of townhouses seem to tilt on an uphill street.", "cs": ["Zdá se, že se řada městských domů naklání směrem do ulice."]}}
{"translation": {"en": "The bird is sitting on an old signpost.", "cs": ["Pták, který sedí na starém rozcestníku."]}}
{"translation": {"en": "There is a structure inside of a small wooden fence.", "cs": ["Uvnitř malého dřevěného plotu je stavba."]}}
{"translation": {"en": "There is a large cliff with greenery on top next to the ocean.", "cs": ["Velký útes se zelení na vrchu vedle oceánu."]}}
{"translation": {"en": "The sky is bright blue with clouds over the train tracks and buildings.", "cs": ["Jasně modrá obloha s mraky nad železničními kolejemi a budovami."]}}
{"translation": {"en": "A mountain lake under a cloudy sky with commercial buildings in the foreground.", "cs": ["Horské jezero pod zamračenou oblohou, s komerčními budovami v popředí."]}}
{"translation": {"en": "This image is of a man and woman skeleton sitting at a table \"eating\" a meal.", "cs": ["Obrázek kostry muže a ženy, kteří sedí u stolu a \"jedí\" jídlo."]}}
{"translation": {"en": "This is is a scene of a modern-looking building with a brick walkway and some small trees.", "cs": ["Výjev moderně vypadající budovy s cihlovou cestou pro pěší a několika malými stromky."]}}
{"translation": {"en": "A city view of a street that runs between two row of buildings with cars lining the streets", "cs": ["Pohled na městskou ulici, která vede skrze dvě řady budov a auta, která lemují silnici."]}}
{"translation": {"en": "blonde girl in a blue shirt sitting against a tree", "cs": ["blonďatá dívka v modrém tričku sedí u stromu"]}}
{"translation": {"en": "A bullet-ridden rusty old car is located in the desert.", "cs": ["Staré auto v poušti proděravěné kulkami."]}}
{"translation": {"en": "A squirrel gathering nuts on a stretch of grass.", "cs": ["Veverka sbírá oříšky na travnatém pásu."]}}
{"translation": {"en": "A man is cooking food at a stand while a woman in a red jacket stands by.", "cs": ["Muž vaří jídlo ve stánku, u kterého stojí žena v červené bundě."]}}
{"translation": {"en": "Black and white photo of several chairs near a wall", "cs": ["Černobílá fotografie několika židlí u zdi"]}}
{"translation": {"en": "The view of a bicycle handlebar going down a long dirt road", "cs": ["Pohled na řidítka jízdního kola, které jede po dlouhé špinavé cestě"]}}
{"translation": {"en": "Two female are outside on the street looking at a map.", "cs": ["Dvě ženy, které se venku na ulici dívají do mapy."]}}
{"translation": {"en": "An arrow points to a man who is standing on a striped floor.", "cs": ["Šipka ukazuje na muže, co stojí na pruhované podlaze."]}}
{"translation": {"en": "Group of people talking and getting ready behind the dressing rooms", "cs": ["Skupina lidí, kteří se baví a připravují se v šatnách"]}}
{"translation": {"en": "A very beautiful woman posing to the camera in a forest", "cs": ["Velmi krásná žena pózuje v lese na fotografii"]}}
{"translation": {"en": "Large buildings sit under a blue sky with scattered clouds.", "cs": ["Velké budovy pod modrou oblohou s rozptýlenými mraky."]}}
{"translation": {"en": "Two women row a canoe along a calm body of water with a city in the background.", "cs": ["Dvě ženy veslují v kanoi po klidné hladině s městem v pozadí."]}}
{"translation": {"en": "This is a picture of a wall with beer cans painted on the wall.", "cs": ["Obrázek zdi, na které jsou nakresleny pivní plechovky."]}}
{"translation": {"en": "A woman sings into a microphone in a smoky room.", "cs": ["Žena zpívá do mikrofonu v zakouřeném pokoji."]}}
{"translation": {"en": "Man in a race competition with orange shirt and sweatshirt on his head", "cs": ["Muž na závodě v oranžovém tričku a s potítkem na hlavě."]}}
{"translation": {"en": "Silhouette of two men climbing a pedestrian stairwell into the outdoors.", "cs": ["Siluety dvou mužů, kteří stoupají nahoru ven po jezdících schodech."]}}
{"translation": {"en": "This is a person sitting on stage with someone looking in the background.", "cs": ["Člověk sedí na pódiu a někdo v pozadí jej sleduje."]}}
{"translation": {"en": "Eye level view of the front of several antique cars.", "cs": ["Pohled ve výšce očí na předky několika starožitných automobilů."]}}
{"translation": {"en": "A picture of the train in the train tracks in black and white", "cs": ["Černobílý obrázek vlaku na kolejích"]}}
{"translation": {"en": "Group of people holding hands and feet", "cs": ["Skupina lidí se drží za ruce a za nohy."]}}
{"translation": {"en": "A smiling young attractive woman in a blue baseball cap sitting on the side of the road.", "cs": ["Usmívající se mladá atraktivní žena v kšiltovce sedí na kraji silnice."]}}
{"translation": {"en": "The sun is rising over a foggy town.", "cs": ["Slunce vychází nad zamlženým městem."]}}
{"translation": {"en": "A dirt road through a forest with the leaves changing colors.", "cs": ["Špinavá cesta přes les s listy měnícími barvu."]}}
{"translation": {"en": "Lots of stars in the night sky beside a tree and a rock formation at night.", "cs": ["Mnoho hvězd na noční obloze vedle stromu a skalního útvaru."]}}
{"translation": {"en": "An action photo of a roller coaster that goes beside tall cliffs and a waterfall", "cs": ["Akční fotka horské dráhy, která jede vedle vysokých útesů a vodopádu"]}}
{"translation": {"en": "A vineyard in the rolling hills have dark, gray skies overhead.", "cs": ["Vinice ve vinoucích se kopcích mají nad sebou tmavě šedá mračna."]}}
{"translation": {"en": "A sports car with a number 20 on its door parked outside a stone building.", "cs": ["Sportovní auto s číslem 20 na dveřích zaparkované před kamennou budovou."]}}
{"translation": {"en": "Two girls laugh while walking on a street in front of several stores", "cs": ["Dvě dívky se smějí, když prochází na ulici okolo několika obchodů"]}}
{"translation": {"en": "A lake takes the foreground in a scenic picture that features mountains in the background.", "cs": ["Jezero v popředí malebného obrazu, který obsahuje i hory v pozadí."]}}
{"translation": {"en": "A man and a women are talking while walking next to a dunkin donuts.", "cs": ["Muž a žena spolu mluví, když stojí vedle dunkin donuts."]}}
{"translation": {"en": "An old woman wearing a gold and black coat in the middle of the winter", "cs": ["Stará žena v černozlatém kabátu uprostřed zimy."]}}
{"translation": {"en": "A boy stares out the window on a crowded train.", "cs": ["Chlapec se dívá z okna přeplněného vlaku."]}}
{"translation": {"en": "A woman with a cigarette in her mouth outside and a man walking in the background.", "cs": ["Žena venku s cigaretou v ústech a muž, který jde v pozadí."]}}
{"translation": {"en": "A man and a woman with their heads together in an intimate conversation.", "cs": ["Muž a žena s hlavami u sebe při důvěrné konverzaci."]}}
{"translation": {"en": "A woman and a man holding hands on the beach at night looking up at The Star filled sky.", "cs": ["Žena a muž, kteří se v noci drží za ruce na pláži, a dívají se na hvězdami pokrytou oblohu."]}}
|