faker 1.8.7 → 2.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/CHANGELOG.md +1423 -6
- data/History.md +4 -4
- data/License.txt +2 -2
- data/README.md +301 -126
- data/bin/faker +5 -0
- data/lib/faker.rb +150 -61
- data/lib/faker/blockchain/aeternity.rb +70 -0
- data/lib/faker/blockchain/bitcoin.rb +60 -0
- data/lib/faker/blockchain/ethereum.rb +26 -0
- data/lib/faker/blockchain/tezos.rb +135 -0
- data/lib/faker/books/book.rb +61 -0
- data/lib/faker/books/culture_series.rb +83 -0
- data/lib/faker/books/dune.rb +132 -0
- data/lib/faker/books/lovecraft.rb +280 -0
- data/lib/faker/creature/animal.rb +22 -0
- data/lib/faker/creature/cat.rb +50 -0
- data/lib/faker/creature/dog.rb +115 -0
- data/lib/faker/creature/horse.rb +37 -0
- data/lib/faker/default/address.rb +368 -0
- data/lib/faker/default/alphanumeric.rb +73 -0
- data/lib/faker/default/ancient.rb +59 -0
- data/lib/faker/default/app.rb +77 -0
- data/lib/faker/default/appliance.rb +33 -0
- data/lib/faker/default/artist.rb +20 -0
- data/lib/faker/default/avatar.rb +60 -0
- data/lib/faker/default/bank.rb +207 -0
- data/lib/faker/default/barcode.rb +165 -0
- data/lib/faker/default/beer.rb +113 -0
- data/lib/faker/default/blood.rb +48 -0
- data/lib/faker/default/boolean.rb +26 -0
- data/lib/faker/default/bossa_nova.rb +33 -0
- data/lib/faker/default/business.rb +50 -0
- data/lib/faker/default/camera.rb +46 -0
- data/lib/faker/default/cannabis.rb +135 -0
- data/lib/faker/default/chile_rut.rb +98 -0
- data/lib/faker/default/chuck_norris.rb +25 -0
- data/lib/faker/default/code.rb +282 -0
- data/lib/faker/default/coffee.rb +82 -0
- data/lib/faker/default/coin.rb +33 -0
- data/lib/faker/default/color.rb +79 -0
- data/lib/faker/default/commerce.rb +143 -0
- data/lib/faker/default/company.rb +581 -0
- data/lib/faker/default/compass.rb +202 -0
- data/lib/faker/default/computer.rb +63 -0
- data/lib/faker/default/construction.rb +83 -0
- data/lib/faker/default/cosmere.rb +138 -0
- data/lib/faker/default/crypto.rb +48 -0
- data/lib/faker/default/crypto_coin.rb +94 -0
- data/lib/faker/default/currency.rb +46 -0
- data/lib/faker/default/date.rb +186 -0
- data/lib/faker/default/dc_comics.rb +70 -0
- data/lib/faker/default/demographic.rb +98 -0
- data/lib/faker/default/dessert.rb +48 -0
- data/lib/faker/default/device.rb +85 -0
- data/lib/faker/default/driving_licence.rb +131 -0
- data/lib/faker/default/drone.rb +332 -0
- data/lib/faker/default/educator.rb +102 -0
- data/lib/faker/default/electrical_components.rb +48 -0
- data/lib/faker/default/esport.rb +72 -0
- data/lib/faker/default/faker_adjective.rb +35 -0
- data/lib/faker/default/file.rb +100 -0
- data/lib/faker/default/fillmurray.rb +45 -0
- data/lib/faker/default/finance.rb +89 -0
- data/lib/faker/default/food.rb +113 -0
- data/lib/faker/default/funny_name.rb +90 -0
- data/lib/faker/default/gender.rb +46 -0
- data/lib/faker/default/greek_philosophers.rb +33 -0
- data/lib/faker/default/hacker.rb +103 -0
- data/lib/faker/default/hipster.rb +194 -0
- data/lib/faker/default/house.rb +33 -0
- data/lib/faker/default/id_number.rb +279 -0
- data/lib/faker/default/industry_segments.rb +61 -0
- data/lib/faker/default/internet.rb +584 -0
- data/lib/faker/default/internet_http.rb +48 -0
- data/lib/faker/default/invoice.rb +136 -0
- data/lib/faker/default/job.rb +61 -0
- data/lib/faker/default/json.rb +143 -0
- data/lib/faker/default/kpop.rb +85 -0
- data/lib/faker/default/lorem.rb +306 -0
- data/lib/faker/default/lorem_flickr.rb +138 -0
- data/lib/faker/default/lorem_pixel.rb +70 -0
- data/lib/faker/default/markdown.rb +175 -0
- data/lib/faker/default/marketing.rb +22 -0
- data/lib/faker/default/measurement.rb +207 -0
- data/lib/faker/default/military.rb +98 -0
- data/lib/faker/default/mountain.rb +33 -0
- data/lib/faker/default/name.rb +156 -0
- data/lib/faker/default/nation.rb +76 -0
- data/lib/faker/default/nato_phonetic_alphabet.rb +20 -0
- data/lib/faker/default/nhs.rb +57 -0
- data/lib/faker/default/number.rb +289 -0
- data/lib/faker/default/omniauth.rb +461 -0
- data/lib/faker/default/phone_number.rb +137 -0
- data/lib/faker/default/placeholdit.rb +63 -0
- data/lib/faker/default/programming_language.rb +33 -0
- data/lib/faker/default/relationship.rb +91 -0
- data/lib/faker/default/restaurant.rb +63 -0
- data/lib/faker/default/science.rb +46 -0
- data/lib/faker/default/slack_emoji.rb +124 -0
- data/lib/faker/default/source.rb +76 -0
- data/lib/faker/default/south_africa.rb +141 -0
- data/lib/faker/default/space.rb +191 -0
- data/lib/faker/default/string.rb +66 -0
- data/lib/faker/default/stripe.rb +142 -0
- data/lib/faker/default/subscription.rb +70 -0
- data/lib/faker/default/superhero.rb +72 -0
- data/lib/faker/default/team.rb +74 -0
- data/lib/faker/default/time.rb +179 -0
- data/lib/faker/default/twitter.rb +223 -0
- data/lib/faker/default/types.rb +182 -0
- data/lib/faker/default/university.rb +75 -0
- data/lib/faker/default/vehicle.rb +342 -0
- data/lib/faker/default/verb.rb +72 -0
- data/lib/faker/default/world_cup.rb +86 -0
- data/lib/faker/fantasy/tolkien.rb +67 -0
- data/lib/faker/games/clash_of_clans.rb +48 -0
- data/lib/faker/games/control.rb +113 -0
- data/lib/faker/games/dnd.rb +136 -0
- data/lib/faker/games/dota.rb +80 -0
- data/lib/faker/games/elder_scrolls.rb +139 -0
- data/lib/faker/games/fallout.rb +62 -0
- data/lib/faker/games/game.rb +48 -0
- data/lib/faker/games/half_life.rb +48 -0
- data/lib/faker/games/heroes.rb +61 -0
- data/lib/faker/games/heroes_of_the_storm.rb +72 -0
- data/lib/faker/games/league_of_legends.rb +87 -0
- data/lib/faker/games/minecraft.rb +113 -0
- data/lib/faker/games/myst.rb +74 -0
- data/lib/faker/games/overwatch.rb +48 -0
- data/lib/faker/games/pokemon.rb +48 -0
- data/lib/faker/games/sonic_the_hedgehog.rb +48 -0
- data/lib/faker/games/street_fighter.rb +61 -0
- data/lib/faker/games/super_mario.rb +48 -0
- data/lib/faker/games/super_smash_bros.rb +35 -0
- data/lib/faker/games/touhou.rb +75 -0
- data/lib/faker/games/warhammer_fantasy.rb +74 -0
- data/lib/faker/games/witcher.rb +87 -0
- data/lib/faker/games/world_of_warcraft.rb +60 -0
- data/lib/faker/games/zelda.rb +62 -0
- data/lib/faker/japanese_media/conan.rb +48 -0
- data/lib/faker/japanese_media/doraemon.rb +48 -0
- data/lib/faker/japanese_media/dragon_ball.rb +48 -0
- data/lib/faker/japanese_media/naruto.rb +61 -0
- data/lib/faker/japanese_media/one_piece.rb +87 -0
- data/lib/faker/japanese_media/studio_ghibli.rb +48 -0
- data/lib/faker/japanese_media/sword_art_online.rb +61 -0
- data/lib/faker/movies/back_to_the_future.rb +49 -0
- data/lib/faker/movies/departed.rb +49 -0
- data/lib/faker/movies/ghostbusters.rb +49 -0
- data/lib/faker/movies/harry_potter.rb +87 -0
- data/lib/faker/movies/hitchhikers_guide_to_the_galaxy.rb +106 -0
- data/lib/faker/movies/hobbit.rb +62 -0
- data/lib/faker/movies/how_to_train_your_dragon.rb +48 -0
- data/lib/faker/movies/lebowski.rb +48 -0
- data/lib/faker/movies/lord_of_the_rings.rb +49 -0
- data/lib/faker/movies/movie.rb +33 -0
- data/lib/faker/movies/princess_bride.rb +36 -0
- data/lib/faker/movies/room.rb +63 -0
- data/lib/faker/movies/star_wars.rb +273 -0
- data/lib/faker/movies/v_for_vendetta.rb +50 -0
- data/lib/faker/music/grateful_dead.rb +37 -0
- data/lib/faker/music/hiphop.rb +48 -0
- data/lib/faker/music/music.rb +133 -0
- data/lib/faker/music/opera.rb +298 -0
- data/lib/faker/music/pearl_jam.rb +50 -0
- data/lib/faker/music/phish.rb +48 -0
- data/lib/faker/music/prince.rb +64 -0
- data/lib/faker/music/rock_band.rb +34 -0
- data/lib/faker/music/rush.rb +37 -0
- data/lib/faker/music/show.rb +49 -0
- data/lib/faker/music/umphreys_mcgee.rb +22 -0
- data/lib/faker/quotes/chiquito.rb +80 -0
- data/lib/faker/quotes/quote.rb +111 -0
- data/lib/faker/quotes/rajnikanth.rb +27 -0
- data/lib/faker/quotes/shakespeare.rb +111 -0
- data/lib/faker/sports/basketball.rb +61 -0
- data/lib/faker/sports/football.rb +74 -0
- data/lib/faker/sports/volleyball.rb +74 -0
- data/lib/faker/tv_shows/aqua_teen_hunger_force.rb +37 -0
- data/lib/faker/tv_shows/big_bang_theory.rb +37 -0
- data/lib/faker/tv_shows/bojack_horseman.rb +51 -0
- data/lib/faker/tv_shows/breaking_bad.rb +37 -0
- data/lib/faker/tv_shows/buffy.rb +89 -0
- data/lib/faker/tv_shows/community.rb +38 -0
- data/lib/faker/tv_shows/dr_who.rb +115 -0
- data/lib/faker/tv_shows/dumb_and_dumber.rb +51 -0
- data/lib/faker/tv_shows/family_guy.rb +51 -0
- data/lib/faker/tv_shows/final_space.rb +51 -0
- data/lib/faker/tv_shows/friends.rb +50 -0
- data/lib/faker/tv_shows/futurama.rb +65 -0
- data/lib/faker/tv_shows/game_of_thrones.rb +77 -0
- data/lib/faker/tv_shows/hey_arnold.rb +50 -0
- data/lib/faker/tv_shows/how_i_met_your_mother.rb +64 -0
- data/lib/faker/tv_shows/michael_scott.rb +26 -0
- data/lib/faker/tv_shows/new_girl.rb +38 -0
- data/lib/faker/tv_shows/parks_and_rec.rb +37 -0
- data/lib/faker/tv_shows/rick_and_morty.rb +51 -0
- data/lib/faker/tv_shows/ru_paul.rb +37 -0
- data/lib/faker/tv_shows/seinfeld.rb +51 -0
- data/lib/faker/tv_shows/silicon_valley.rb +118 -0
- data/lib/faker/tv_shows/simpsons.rb +65 -0
- data/lib/faker/tv_shows/south_park.rb +38 -0
- data/lib/faker/tv_shows/star_trek.rb +63 -0
- data/lib/faker/tv_shows/stargate.rb +51 -0
- data/lib/faker/tv_shows/stranger_things.rb +38 -0
- data/lib/faker/tv_shows/suits.rb +37 -0
- data/lib/faker/tv_shows/the_expanse.rb +63 -0
- data/lib/faker/tv_shows/the_fresh_prince_of_bel_air.rb +64 -0
- data/lib/faker/tv_shows/the_it_crowd.rb +64 -0
- data/lib/faker/tv_shows/the_thick_of_it.rb +51 -0
- data/lib/faker/tv_shows/twin_peaks.rb +51 -0
- data/lib/faker/tv_shows/venture_bros.rb +65 -0
- data/lib/faker/version.rb +3 -1
- data/lib/helpers/base58.rb +22 -0
- data/lib/helpers/char.rb +31 -35
- data/lib/helpers/unique_generator.rb +28 -2
- data/lib/locales/README.md +8 -9
- data/lib/locales/ar.yml +102 -0
- data/lib/locales/bg.yml +5 -2
- data/lib/locales/ca-CAT.yml +1 -1
- data/lib/locales/ca.yml +2 -4
- data/lib/locales/da-DK.yml +10 -6
- data/lib/locales/de-AT.yml +12 -3
- data/lib/locales/de-CH.yml +1696 -1
- data/lib/locales/de.yml +19 -9
- data/lib/locales/ee.yml +61 -0
- data/lib/locales/en-AU.yml +50 -8
- data/lib/locales/en-CA.yml +27 -2
- data/lib/locales/en-GB.yml +2 -1
- data/lib/locales/en-IND.yml +5 -2
- data/lib/locales/en-MS.yml +8 -1
- data/lib/locales/en-NEP.yml +6 -3
- data/lib/locales/en-NG.yml +2 -0
- data/lib/locales/en-NZ.yml +140 -17
- data/lib/locales/en-PAK.yml +4 -2
- data/lib/locales/en-SG.yml +6 -1
- data/lib/locales/en-TH.yml +360 -0
- data/lib/locales/en-US.yml +37 -9
- data/lib/locales/en-ZA.yml +114 -17
- data/lib/locales/en-au-ocker.yml +2 -1
- data/lib/locales/en.yml +0 -1
- data/lib/locales/en/address.yml +501 -3
- data/lib/locales/en/adjective.yml +179 -0
- data/lib/locales/en/animal.yml +6 -0
- data/lib/locales/en/appliance.yml +5 -0
- data/lib/locales/en/aqua_teen_hunger_force.yml +33 -1
- data/lib/locales/en/bank.yml +275 -60
- data/lib/locales/en/barcode.yml +24 -0
- data/lib/locales/en/basketball.yml +99 -0
- data/lib/locales/en/beer.yml +2 -1
- data/lib/locales/en/big_bang_theory.yml +38 -0
- data/lib/locales/en/blood.yml +13 -0
- data/lib/locales/en/bojack_horseman.yml +6 -0
- data/lib/locales/en/buffy.yml +260 -0
- data/lib/locales/en/camera.yml +611 -0
- data/lib/locales/en/cannabis.yml +13 -0
- data/lib/locales/en/cat.yml +5 -4
- data/lib/locales/en/chiquito.yml +64 -0
- data/lib/locales/en/clash_of_clan.yml +101 -0
- data/lib/locales/en/coin.yml +6 -0
- data/lib/locales/en/color.yml +1 -1
- data/lib/locales/en/community.yml +33 -0
- data/lib/locales/en/company.yml +3 -2
- data/lib/locales/en/computer.yml +36 -0
- data/lib/locales/en/conan.yml +171 -0
- data/lib/locales/en/construction.yml +425 -0
- data/lib/locales/en/control.yml +247 -0
- data/lib/locales/en/cosmere.yml +57 -0
- data/lib/locales/en/crypto_coin.yml +25 -0
- data/lib/locales/en/culture_series.yml +307 -0
- data/lib/locales/en/currency.yml +6 -0
- data/lib/locales/en/dc_comics.yml +52 -0
- data/lib/locales/en/demographic.yml +218 -5
- data/lib/locales/en/departed.yml +50 -0
- data/lib/locales/en/dessert.yml +3 -3
- data/lib/locales/en/device.yml +115 -0
- data/lib/locales/en/dnd.yml +451 -0
- data/lib/locales/en/dog.yml +9 -9
- data/lib/locales/en/doraemon.yml +286 -0
- data/lib/locales/en/dota.yml +573 -0
- data/lib/locales/en/dr_who.yml +6 -2
- data/lib/locales/en/dragon_ball.yml +243 -1
- data/lib/locales/en/driving_license.yml +181 -0
- data/lib/locales/en/drone.yml +95 -0
- data/lib/locales/en/dumb_and_dumber.yml +1 -1
- data/lib/locales/en/dune.yml +401 -131
- data/lib/locales/en/educator.yml +76 -6
- data/lib/locales/en/elder_scrolls.yml +583 -5
- data/lib/locales/en/electrical_components.yml +6 -0
- data/lib/locales/en/esport.yml +5 -5
- data/lib/locales/en/fallout.yml +313 -134
- data/lib/locales/en/final_space.yml +37 -0
- data/lib/locales/en/finance.yml +116 -0
- data/lib/locales/en/food.yml +6 -2
- data/lib/locales/en/football.yml +8 -0
- data/lib/locales/en/fresh_prince_of_bel_air.yml +1 -1
- data/lib/locales/en/friends.yml +3 -3
- data/lib/locales/en/futurama.yml +344 -0
- data/lib/locales/en/game.yml +283 -0
- data/lib/locales/en/gender.yml +6 -0
- data/lib/locales/en/ghostbusters.yml +91 -0
- data/lib/locales/en/grateful_dead.yml +48 -0
- data/lib/locales/en/greek_philosophers.yml +26 -0
- data/lib/locales/en/half_life.yml +88 -0
- data/lib/locales/en/harry_potter.yml +2 -1
- data/lib/locales/en/heroes.yml +411 -0
- data/lib/locales/en/heroes_of_the_storm.yml +134 -0
- data/lib/locales/en/horse.yml +6 -0
- data/lib/locales/en/house.yml +5 -0
- data/lib/locales/en/how_to_train_your_dragon.yml +174 -0
- data/lib/locales/en/industry_segments.yml +7 -0
- data/lib/locales/en/invoice.yml +6 -0
- data/lib/locales/en/jack_handey.yml +54 -0
- data/lib/locales/en/job.yml +2 -2
- data/lib/locales/en/kpop.yml +3 -3
- data/lib/locales/en/league_of_legends.yml +287 -7
- data/lib/locales/en/lebowski.yml +1 -1
- data/lib/locales/en/lorem.yml +6 -0
- data/lib/locales/en/marketing.yml +4 -0
- data/lib/locales/en/michael_scott.yml +45 -0
- data/lib/locales/en/military.yml +182 -0
- data/lib/locales/en/minecraft.yml +663 -0
- data/lib/locales/en/mountain.yml +158 -0
- data/lib/locales/en/movie.yml +192 -1
- data/lib/locales/en/music.yml +451 -1
- data/lib/locales/en/myst.yml +104 -0
- data/lib/locales/en/name.yml +15 -14
- data/lib/locales/en/naruto.yml +231 -0
- data/lib/locales/en/nation.yml +11 -0
- data/lib/locales/en/nato_phonetic_alphabet.yml +4 -0
- data/lib/locales/en/new_girl.yml +40 -0
- data/lib/locales/en/one_piece.yml +2 -2
- data/lib/locales/en/opera.yml +340 -0
- data/lib/locales/en/overwatch.yml +2652 -33
- data/lib/locales/en/parks_and_rec.yml +7 -0
- data/lib/locales/en/pearl_jam.yml +213 -0
- data/lib/locales/en/phish.yml +395 -0
- data/lib/locales/en/phone_number.yml +2 -1
- data/lib/locales/en/pokemon.yml +419 -5
- data/lib/locales/en/prince.yml +227 -0
- data/lib/locales/en/princess_bride.yml +5 -0
- data/lib/locales/en/programming_language.yml +2 -1
- data/lib/locales/en/quote.yml +695 -0
- data/lib/locales/en/rajnikanth.yml +77 -0
- data/lib/locales/en/relationship.yml +10 -0
- data/lib/locales/en/restaurant.yml +129 -0
- data/lib/locales/en/rock_band.yml +1 -0
- data/lib/locales/en/room.yml +68 -0
- data/lib/locales/en/rupaul.yml +51 -21
- data/lib/locales/en/rush.yml +32 -0
- data/lib/locales/en/science.yml +1 -0
- data/lib/locales/en/seinfeld.yml +2 -1
- data/lib/locales/en/shakespeare.yml +23 -26
- data/lib/locales/en/show.yml +597 -0
- data/lib/locales/en/silicon_valley.yml +1 -0
- data/lib/locales/en/simpsons.yml +668 -0
- data/lib/locales/en/sonic_the_hedgehog.yml +410 -0
- data/lib/locales/en/source.yml +46 -0
- data/lib/locales/en/south_park.yml +5 -0
- data/lib/locales/en/space.yml +3 -2
- data/lib/locales/en/star_trek.yml +1 -1
- data/lib/locales/en/star_wars.yml +568 -210
- data/lib/locales/en/stargate.yml +1 -2
- data/lib/locales/en/stranger_thing.yml +36 -0
- data/lib/locales/en/street_fighter.yml +1524 -0
- data/lib/locales/en/stripe.yml +42 -0
- data/lib/locales/en/studio_ghibli.yml +107 -0
- data/lib/locales/en/subscription.yml +8 -0
- data/lib/locales/en/suits.yml +45 -0
- data/lib/locales/en/super_mario.yml +58 -0
- data/lib/locales/en/super_smash_bros.yml +220 -0
- data/lib/locales/en/sword_art_online.yml +334 -0
- data/lib/locales/en/team.yml +1 -1
- data/lib/locales/en/the_expanse.yml +7 -0
- data/lib/locales/en/the_it_crowd.yml +155 -0
- data/lib/locales/en/tolkien.yml +2453 -0
- data/lib/locales/en/touhou.yml +839 -0
- data/lib/locales/en/vehicle.yml +77 -49
- data/lib/locales/en/verbs.yml +8 -0
- data/lib/locales/en/volleyball.yml +501 -0
- data/lib/locales/en/warhammer_fantasy.yml +582 -0
- data/lib/locales/en/witcher.yml +391 -8
- data/lib/locales/en/world_cup.yml +271 -0
- data/lib/locales/en/world_of_warcraft.yml +124 -5
- data/lib/locales/en/zelda.yml +964 -5
- data/lib/locales/es-AR.yml +4603 -0
- data/lib/locales/es-MX.yml +17 -1
- data/lib/locales/es.yml +75 -1
- data/lib/locales/fa.yml +6 -0
- data/lib/locales/fi-FI.yml +12 -6
- data/lib/locales/fr-CA.yml +107 -0
- data/lib/locales/fr-CH.yml +78 -0
- data/lib/locales/fr.yml +65 -12
- data/lib/locales/he.yml +2 -0
- data/lib/locales/hy.yml +411 -0
- data/lib/locales/id.yml +7 -2
- data/lib/locales/it.yml +15 -3
- data/lib/locales/ja.yml +86 -15
- data/lib/locales/ko.yml +96 -2
- data/lib/locales/lv.yml +55 -0
- data/lib/locales/nb-NO.yml +15 -6
- data/lib/locales/nl.yml +13 -4
- data/lib/locales/no.yml +7 -0
- data/lib/locales/pl.yml +12 -1
- data/lib/locales/pt-BR.yml +624 -17
- data/lib/locales/pt.yml +16 -6
- data/lib/locales/ru.yml +6 -2
- data/lib/locales/sk.yml +21 -13
- data/lib/locales/sv.yml +15 -7
- data/lib/locales/th.yml +380 -0
- data/lib/locales/tr.yml +14 -0
- data/lib/locales/uk.yml +17 -4
- data/lib/locales/vi.yml +7 -2
- data/lib/locales/zh-CN.yml +4 -4
- data/lib/locales/zh-TW.yml +3 -1
- metadata +448 -127
- data/lib/extensions/array.rb +0 -22
- data/lib/extensions/symbol.rb +0 -9
- data/lib/faker/address.rb +0 -67
- data/lib/faker/ancient.rb +0 -21
- data/lib/faker/app.rb +0 -23
- data/lib/faker/aqua_teen_hunger_force.rb +0 -9
- data/lib/faker/artist.rb +0 -9
- data/lib/faker/avatar.rb +0 -15
- data/lib/faker/back_to_the_future.rb +0 -17
- data/lib/faker/bank.rb +0 -37
- data/lib/faker/beer.rb +0 -40
- data/lib/faker/bitcoin.rb +0 -48
- data/lib/faker/book.rb +0 -23
- data/lib/faker/boolean.rb +0 -9
- data/lib/faker/bossa_nova.rb +0 -13
- data/lib/faker/breaking_bad.rb +0 -16
- data/lib/faker/business.rb +0 -22
- data/lib/faker/cat.rb +0 -19
- data/lib/faker/chuck_norris.rb +0 -11
- data/lib/faker/code.rb +0 -147
- data/lib/faker/coffee.rb +0 -29
- data/lib/faker/color.rb +0 -30
- data/lib/faker/commerce.rb +0 -64
- data/lib/faker/company.rb +0 -162
- data/lib/faker/compass.rb +0 -65
- data/lib/faker/crypto.rb +0 -19
- data/lib/faker/date.rb +0 -80
- data/lib/faker/demographic.rb +0 -35
- data/lib/faker/dessert.rb +0 -19
- data/lib/faker/dog.rb +0 -39
- data/lib/faker/dr_who.rb +0 -34
- data/lib/faker/dragon_ball.rb +0 -9
- data/lib/faker/dumb_and_dumber.rb +0 -17
- data/lib/faker/dune.rb +0 -54
- data/lib/faker/educator.rb +0 -23
- data/lib/faker/elder_scrolls.rb +0 -21
- data/lib/faker/esport.rb +0 -25
- data/lib/faker/fallout.rb +0 -21
- data/lib/faker/family_guy.rb +0 -17
- data/lib/faker/file.rb +0 -24
- data/lib/faker/fillmurray.rb +0 -14
- data/lib/faker/finance.rb +0 -28
- data/lib/faker/food.rb +0 -25
- data/lib/faker/friends.rb +0 -17
- data/lib/faker/funny_name.rb +0 -43
- data/lib/faker/game_of_thrones.rb +0 -25
- data/lib/faker/hacker.rb +0 -45
- data/lib/faker/harry_potter.rb +0 -25
- data/lib/faker/hey_arnold.rb +0 -17
- data/lib/faker/hipster.rb +0 -59
- data/lib/faker/hitchhikers_guide_to_the_galaxy.rb +0 -33
- data/lib/faker/hobbit.rb +0 -21
- data/lib/faker/how_i_met_your_mother.rb +0 -21
- data/lib/faker/id_number.rb +0 -36
- data/lib/faker/internet.rb +0 -178
- data/lib/faker/job.rb +0 -16
- data/lib/faker/kpop.rb +0 -29
- data/lib/faker/league_of_legends.rb +0 -29
- data/lib/faker/lebowski.rb +0 -17
- data/lib/faker/lord_of_the_rings.rb +0 -13
- data/lib/faker/lorem.rb +0 -68
- data/lib/faker/lorem_pixel.rb +0 -21
- data/lib/faker/lovecraft.rb +0 -73
- data/lib/faker/markdown.rb +0 -67
- data/lib/faker/matz.rb +0 -9
- data/lib/faker/measurement.rb +0 -127
- data/lib/faker/most_interesting_man_in_the_world.rb +0 -9
- data/lib/faker/movie.rb +0 -9
- data/lib/faker/music.rb +0 -33
- data/lib/faker/name.rb +0 -46
- data/lib/faker/number.rb +0 -86
- data/lib/faker/omniauth.rb +0 -340
- data/lib/faker/one_piece.rb +0 -29
- data/lib/faker/overwatch.rb +0 -17
- data/lib/faker/phone_number.rb +0 -44
- data/lib/faker/placeholdit.rb +0 -20
- data/lib/faker/pokemon.rb +0 -17
- data/lib/faker/programming_language.rb +0 -13
- data/lib/faker/rick_and_morty.rb +0 -17
- data/lib/faker/robin.rb +0 -9
- data/lib/faker/rock_band.rb +0 -9
- data/lib/faker/rupaul.rb +0 -15
- data/lib/faker/science.rb +0 -15
- data/lib/faker/seinfeld.rb +0 -13
- data/lib/faker/shakespeare.rb +0 -40
- data/lib/faker/silicon_valley.rb +0 -33
- data/lib/faker/simpsons.rb +0 -22
- data/lib/faker/slack_emoji.rb +0 -43
- data/lib/faker/space.rb +0 -58
- data/lib/faker/star_trek.rb +0 -21
- data/lib/faker/star_wars.rb +0 -102
- data/lib/faker/stargate.rb +0 -17
- data/lib/faker/superhero.rb +0 -25
- data/lib/faker/team.rb +0 -24
- data/lib/faker/the_fresh_prince_of_bel_air.rb +0 -17
- data/lib/faker/the_thick_of_it.rb +0 -17
- data/lib/faker/time.rb +0 -51
- data/lib/faker/twin_peaks.rb +0 -17
- data/lib/faker/twitter.rb +0 -172
- data/lib/faker/types.rb +0 -93
- data/lib/faker/umphreys_mcgee.rb +0 -9
- data/lib/faker/university.rb +0 -28
- data/lib/faker/v_for_vendetta.rb +0 -17
- data/lib/faker/vehicle.rb +0 -39
- data/lib/faker/venture_bros.rb +0 -21
- data/lib/faker/witcher.rb +0 -29
- data/lib/faker/world_of_warcraft.rb +0 -13
- data/lib/faker/yoda.rb +0 -10
- data/lib/faker/zelda.rb +0 -22
- data/lib/locales/en/hobbit.yml +0 -19
- data/lib/locales/en/lord_of_the_rings.yml +0 -5
- data/lib/locales/en/matz.yml +0 -28
- data/lib/locales/en/most_interesting_man_in_the_world.yml +0 -106
- data/lib/locales/en/robin.yml +0 -4
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
en:
|
|
2
|
+
faker:
|
|
3
|
+
final_space:
|
|
4
|
+
characters:
|
|
5
|
+
- A.V.A
|
|
6
|
+
- Ash Graven
|
|
7
|
+
- Avocato
|
|
8
|
+
- Bolo
|
|
9
|
+
- Clarence
|
|
10
|
+
- Gary Goodspeed
|
|
11
|
+
- H.U.E
|
|
12
|
+
- John Goodspeed
|
|
13
|
+
- KVN
|
|
14
|
+
- Little Cato
|
|
15
|
+
- Lord Commander
|
|
16
|
+
- Mooncake
|
|
17
|
+
- Nighfall
|
|
18
|
+
- Quinn Ergon
|
|
19
|
+
- Sheryl Goodspeed
|
|
20
|
+
|
|
21
|
+
vehicles:
|
|
22
|
+
- Crimson Light
|
|
23
|
+
- Galaxy One
|
|
24
|
+
- Imperium Cruiser
|
|
25
|
+
- F71 Hawk
|
|
26
|
+
- Heavy Incinerator
|
|
27
|
+
- Star Chaser
|
|
28
|
+
|
|
29
|
+
quotes:
|
|
30
|
+
- It's an alien on my face! It's an alien on my...It's a space alien!
|
|
31
|
+
- Get. Your. Finger. Out. Of. My. TUMMY!
|
|
32
|
+
- Chookity
|
|
33
|
+
- Twist my nipples rough
|
|
34
|
+
- Let's get wild, how about you buy me a drink
|
|
35
|
+
- Hey kids, it's me, your mother
|
|
36
|
+
- That's not a cookie. And you know that HUE, you know that!
|
|
37
|
+
- Get off my cheeks HUE!
|
data/lib/locales/en/finance.yml
CHANGED
|
@@ -48,3 +48,119 @@ en:
|
|
|
48
48
|
- /6706#########{5,6}L/
|
|
49
49
|
- /6771#########{5,6}L/
|
|
50
50
|
- /6709#########{5,6}L/
|
|
51
|
+
vat_number:
|
|
52
|
+
AT: "ATU########"
|
|
53
|
+
AR: "AR###########"
|
|
54
|
+
AU: "AU###########"
|
|
55
|
+
BR: "BR##.###.###/####-##"
|
|
56
|
+
BY: "УНП #########"
|
|
57
|
+
BE: "BE0#########"
|
|
58
|
+
BG:
|
|
59
|
+
- "BG#########"
|
|
60
|
+
- "BG##########"
|
|
61
|
+
CH: "CH######"
|
|
62
|
+
CL: "CL########-#"
|
|
63
|
+
CZ:
|
|
64
|
+
- "CZ########"
|
|
65
|
+
- "CZ#########"
|
|
66
|
+
- "CZ##########"
|
|
67
|
+
DK: "DK## ## ## ##"
|
|
68
|
+
EC: "EC#############"
|
|
69
|
+
EE: "EE#########"
|
|
70
|
+
FI: "FI########"
|
|
71
|
+
DE: "DE#########"
|
|
72
|
+
GB:
|
|
73
|
+
- "GB### #### ##"
|
|
74
|
+
- "GB### #### ## ###"
|
|
75
|
+
- "GBGD###"
|
|
76
|
+
- "GBHA###"
|
|
77
|
+
- "GB888 8### ##"
|
|
78
|
+
GR: "EL#########"
|
|
79
|
+
HR: "HR### ### ### ##"
|
|
80
|
+
"NO": "NO#########"
|
|
81
|
+
HU: "HU########"
|
|
82
|
+
IT: "IT##########"
|
|
83
|
+
LT:
|
|
84
|
+
- "LT#########"
|
|
85
|
+
- "LT############"
|
|
86
|
+
LU: "LU########"
|
|
87
|
+
LV: "LV###########"
|
|
88
|
+
MT: "MT########"
|
|
89
|
+
MX: "MX#### ###### ###"
|
|
90
|
+
PH: "PH### ### ### ###"
|
|
91
|
+
PL: "PL##########"
|
|
92
|
+
PT: "PT#########"
|
|
93
|
+
RO:
|
|
94
|
+
- "RO##"
|
|
95
|
+
- "RO###"
|
|
96
|
+
- "RO####"
|
|
97
|
+
- "RO#####"
|
|
98
|
+
- "RO######"
|
|
99
|
+
- "RO#######"
|
|
100
|
+
- "RO########"
|
|
101
|
+
- "RO#########"
|
|
102
|
+
- "RO##########"
|
|
103
|
+
RU:
|
|
104
|
+
- "RU##########"
|
|
105
|
+
- "RU############"
|
|
106
|
+
SE: "SE##########01"
|
|
107
|
+
SI: "SI########"
|
|
108
|
+
SK: "SK##########"
|
|
109
|
+
SM: "SM#####"
|
|
110
|
+
UA: "UA##########"
|
|
111
|
+
ZA:
|
|
112
|
+
- "ZA##########"
|
|
113
|
+
- "ZA###########"
|
|
114
|
+
ticker:
|
|
115
|
+
nasdaq:
|
|
116
|
+
- MSFT
|
|
117
|
+
- AAPL
|
|
118
|
+
- AMZN
|
|
119
|
+
- GOOG
|
|
120
|
+
- FB
|
|
121
|
+
- INTC
|
|
122
|
+
- CSCO
|
|
123
|
+
- CMCSA
|
|
124
|
+
- PEP
|
|
125
|
+
- ADBE
|
|
126
|
+
- NVDA
|
|
127
|
+
- NFLX
|
|
128
|
+
- PYPL
|
|
129
|
+
- COST
|
|
130
|
+
- AMGN
|
|
131
|
+
- AVGO
|
|
132
|
+
- TXN
|
|
133
|
+
- CHTR
|
|
134
|
+
- SBUX
|
|
135
|
+
- QCOM
|
|
136
|
+
- GILD
|
|
137
|
+
- MDLZ
|
|
138
|
+
- FISV
|
|
139
|
+
- BKNG
|
|
140
|
+
- INTU
|
|
141
|
+
nyse:
|
|
142
|
+
- XOM
|
|
143
|
+
- WFC
|
|
144
|
+
- JNJ
|
|
145
|
+
- GE
|
|
146
|
+
- NVX
|
|
147
|
+
- WMT
|
|
148
|
+
- JPM
|
|
149
|
+
- PG
|
|
150
|
+
- TM
|
|
151
|
+
- PFE
|
|
152
|
+
- CVX
|
|
153
|
+
- BABA
|
|
154
|
+
- VZ
|
|
155
|
+
- BUD
|
|
156
|
+
- ORCL
|
|
157
|
+
- DIS
|
|
158
|
+
- KO
|
|
159
|
+
- HSBC
|
|
160
|
+
- T
|
|
161
|
+
- BAC
|
|
162
|
+
- C
|
|
163
|
+
- MRK
|
|
164
|
+
- V
|
|
165
|
+
- BRK.B
|
|
166
|
+
- MA
|
data/lib/locales/en/food.yml
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
en:
|
|
2
2
|
faker:
|
|
3
3
|
food:
|
|
4
|
-
dish: ["Barbecue Ribs", "Bruschette with Tomato", "
|
|
5
|
-
|
|
4
|
+
dish: ["Arepas", "Barbecue Ribs", "Bruschette with Tomato", "Bunny Chow", "Caesar Salad", "California Maki", "Caprese Salad", "Cauliflower Penne", "Cheeseburger", "Chicken Fajitas", "Chicken Milanese", "Chicken Parm", "Chicken Wings", "Chilli con Carne", "Ebiten maki", "Fettuccine Alfredo", "Fish and Chips", "French Fries with Sausages", "French Toast", "Hummus", "Katsu Curry", "Kebab", "Lasagne", "Linguine with Clams", "Massaman Curry", "Meatballs with Sauce", "Mushroom Risotto", "Pappardelle alla Bolognese", "Pasta Carbonara", "Pasta and Beans", "Pasta with Tomato and Basil", "Peking Duck", "Philadelphia Maki", "Pho", "Pierogi", "Pizza", "Poke", "Pork Belly Buns", "Pork Sausage Roll", "Poutine", "Ricotta Stuffed Ravioli", "Risotto with Seafood", "Salmon Nigiri", "Scotch Eggs", "Seafood Paella", "Som Tam", "Souvlaki", "Stinky Tofu", "Sushi", "Tacos", "Teriyaki Chicken Donburi", "Tiramisù", "Tuna Sashimi", "Vegetable Soup"]
|
|
5
|
+
descriptions: ["Three eggs with cilantro, tomatoes, onions, avocados and melted Emmental cheese. With a side of roasted potatoes, and your choice of toast or croissant.", "Three egg omelet with Roquefort cheese, chives, and ham. With a side of roasted potatoes, and your choice of toast or croissant.", "Three egg whites with spinach, mushrooms, caramelized onions, tomatoes and low-fat feta cheese. With herbed quinoa, and your choice of rye or whole-grain toast.", "Smoked salmon, poached eggs, diced red onions and Hollandaise sauce on an English muffin. With a side of roasted potatoes.", "Fresh parsley, Italian sausage, shallots, garlic, sun-dried tomatoes and mozzarella cheese in an all-butter crust. With a side of mixed fruits.", "Thick slices of French toast bread, brown sugar, half-and-half and vanilla, topped with powdered sugar. With two eggs served any style, and your choice of smoked bacon or smoked ham.", "Two buttermilk waffles, topped with whipped cream and maple syrup, a side of two eggs served any style, and your choice of smoked bacon or smoked ham.", "Breaded fried chicken with waffles, and a side of maple syrup.", "Two butter croissants of your choice (plain, almond or cheese). With a side of herb butter or house-made hazelnut spread.", "28-day aged 300g USDA Certified Prime Ribeye, rosemary-thyme garlic butter, with choice of two sides.", "Breaded fried chicken with waffles. Served with maple syrup.", "Fresh Norwegian salmon, lightly brushed with our herbed Dijon mustard sauce, with choice of two sides.", "Creamy mascarpone cheese and custard layered between espresso and rum soaked house-made ladyfingers, topped with Valrhona cocoa powder.", "Granny Smith apples mixed with brown sugar and butter filling, in a flaky all-butter crust, with ice cream."]
|
|
6
|
+
ingredients: ["Achacha", "Adzuki Beans", "Agar", "Agave Syrup", "Ajowan Seed", "Albacore Tuna", "Alfalfa", "Allspice", "Almond Oil", "Almonds", "Amaranth", "Amchur", "Anchovies", "Anchovies", "Aniseed", "Annatto Seed", "Apple Cider Vinegar", "Apple Juice", "Apple Juice Concentrate", "Apples", "Bonza", "Apples", "Apricots", "Arborio Rice", "Arrowroot", "Artichoke", "Arugula", "Asafoetida", "Asian Greens", "Asian Noodles", "Asparagus", "Aubergine", "Avocado", "Avocado Oil", "Avocado Spread", "Bacon", "Baking Powder", "Baking Soda", "Balsamic Vinegar", "Bamboo Shoots", "Banana", "Barberry", "Barley", "Barramundi", "Basil Basmati Rice", "Bay Leaves", "Bean Shoots", "Bean Sprouts", "Beans", "Green Beans", "Beef", "Beetroot", "Berries", "Black Eyed Beans", "Blackberries", "Blood Oranges", "Blue Cheese", "Blue Eye Trevalla", "Blue Swimmer Crab", "Blueberries", "Bocconcini", "Bok Choy", "Bonito Flakes", "Borlotti Beans", "Brazil Nut", "Bran", "Bread", "Rye Bread", "Sour Dough Bread", "Spelt Bread", "White Bread", "Wholegrain Bread", "Wholemeal", "Brie", "Broccoli", "Broccolini", "Brown Rice", "Brown Rice Vinegar", "Brussels Sprouts", "Buckwheat", "Buckwheat Noodles", "Bulghur", "Bush Tomato", "Butter", "Butter Beans", "Buttermilk", "Butternut Lettuce", "Butternut Pumpkin", "Cabbage", "Cacao", "Cake", "Calamari", "Camellia Tea Oil", "Camembert", "Camomile", "Candle Nut", "Cannellini Beans", "Canola Oil", "Cantaloupe", "Capers", "Capsicum", "Starfruit", "Caraway Seed", "Cardamom", "Carob Carrot", "Carrot", "Cashews", "Cassia bark", "Cauliflower", "Cavalo", "Cayenne", "Celery", "Celery Seed", "Cheddar", "Cherries", "Chestnut", "Chia Seeds", "Chicken", "Chickory", "Chickpea", "Chilli Pepper", "Fresh Chillies", "Dried Chinese Broccoli", "Chinese Cabbage", "Chinese Five Spice", "Chives", "Dark Chocolate", "Milk Chocolate", "Choy Sum", "Cinnamon", "Clams", "Cloves", "Cocoa Powder", "Coconut", "Coconut Oil", "Coconut Water", "Coffee", "Corella Pear", "Coriander Leaves", "Coriander Seed", "Corn Oil", "Corn Syrup", "Corn Tortilla", "Cornichons", "Cornmeal", "Cos Lettuce", "Cottage Cheese", "Cous Cous", "Crabs", "Cranberry", "Cream", "Cream Cheese", "Cucumber", "Cumin", "Cumquat", "Currants", "Curry Leaves", "Curry Powder", "Custard Apples", "Dandelion", "Dashi", "Dates", "Dill", "Dragonfruit", "Dried Apricots", "Duck", "Edam", "Edamame", "Eggplant", "Eggs", "Elderberry", "Endive", "English Spinach", "Extra Virgin Olive Oil", "Farmed Prawns", "Feijoa", "Fennel", "Fennel Seeds", "Fenugreek", "Feta", "Figs", "File Powder", "Fingerlime", "Fish Sauce", "Flathead", "Flaxseed", "Flaxseed Oil", "Flounder", "Flour", "Besan", "Buckwheat Flour", "Oat Flour", "Potato Flour", "Rice Flour", "Brown Flour", "White Flour", "Soy Flour", "Tapioca Flour", "Unbleached Flour", "Wholewheat Flour", "Freekeh", "French Eschallots", "Fromage Blanc", "Fruit", "Galangal", "Garam Masala", "Garlic", "Chives", "Goat Cheese", "Goat Milk", "Goji Berry", "Grape Seed Oil", "Grapefruit", "Grapes", "Green Pepper", "Green Tea", "Green Tea Noodles", "Greenwheat Freekeh", "Gruyere", "Guava", "Gula Melaka", "Haloumi", "Ham", "Haricot Beans", "Harissa", "Hazelnut", "Hijiki", "Hiramasa Kingfish", "Hokkien Noodles", "Honey", "Honeydew Melon", "Horseradish", "Hot Smoked Salmon", "Hummus", "Iceberg Lettuce", "Incaberries", "Jarrahdale Pumpkin", "Jasmine Rice", "Jelly", "Jerusalem Artichoke", "Jewfish", "Jicama", "Juniper Berries", "Lime Leaves", "Kale", "Kangaroo", "Kecap Manis", "Kenchur", "Kidney Beans", "Kidneys", "Kiwi Fruit", "Kiwi Berries", "Kohlrabi", "Kokam", "Kombu", "Koshihikari Rice", "Kudzu", "Kumera", "Lamb", "Lavender Flowers", "Leeks", "Lemon", "Lemongrass", "Lentils", "Lettuce", "Licorice", "Limes", "Liver", "Lobster", "Longan", "Loquats", "Lotus Root", "Lychees", "Macadamia Nut", "Macadamia Oil", "Mace", "Mackerel", "Tinned", "Mahi Mahi", "Mahlab", "Malt Vinegar", "Mandarins", "Mango", "Mangosteens", "Maple Syrup", "Margarine", "Marigold", "Marjoram", "Mastic", "Melon", "Milk", "Mint", "Miso", "Molasses", "Monkfish", "Morwong", "Mountain Bread", "Mozzarella", "Muesli", "Mulberries", "Mullet", "Mung Beans", "Flat Mushrooms", "Brown Mushrooms", "Common Cultivated Mushrooms", "Enoki Mushrooms", "Oyster Mushrooms", "Shiitake Mushrooms" , "Mussels", "Mustard", "Mustard Seed", "Nashi Pear", "Nasturtium", "Nectarines", "Nori", "Nutmeg", "Nutritional Yeast", "Nuts", "Oatmeal", "Oats", "Octopus", "Okra", "Olive Oil", "Olives", "Omega Spread", "Onion", "Oranges", "Oregano", "Oyster Sauce", "Oysters", "Pear", "Pandanus Leaves", "Papaw", "Papaya", "Paprik", "Parmesan Cheese", "Parrotfish", "Parsley", "Parsnip", "Passionfruit", "Pasta", "Peaches", "Peanuts", "Pear Juice", "Pears", "Peas", "Pecan Nut", "Pecorino", "Pepitas", "Szechuan Pepperberry", "Peppercorns", "Peppermint", "Peppers", "Persimmon", "Pine Nut", "Pineapple", "Pinto Beans", "Pistachio Nut", "Plums", "Polenta", "Pomegranate", "Poppy Seed", "Porcini Mushrooms", "Pork", "Potatoes", "Provolone", "Prunes", "Pumpkin", "Pumpkin Seed", "Purple Carrot", "Purple Rice", "Quark Quinc", "Quinoa", "Radicchio", "Radish", "Raisin", "Raspberry", "Red Cabbage", "Red Lentils", "Red Pepper", "Red Wine Vinegar", "Redfish", "Rhubarb", "Rice Noodles", "Rice Paper", "Rice Syrup", "Ricemilk", "Ricotta", "Rockmelon", "Rose Water", "Rosemary", "Rye", "Safflower Oil", "Saffron", "Sage", "Sake", "Salmon", "Sardines", "Sausages", "Scallops", "Sea Salt", "Semolina", "Sesame Oil", "Sesame Seeds", "Shark", "Silverbeet", "Slivered Almonds", "Smoked Trout", "Snapper", "Snowpea sprouts", "Snowpeas", "Soba", "Soy Beans", "Soy Milk", "Soy Sauce", "Soy", "Sprouts", "Soymilk", "Spearmint", "Spelt", "Spinach", "Spring Onions", "Squash", "Squid", "Star Anise", "Star Fruit", "Stevia", "Beef Stock", "Chicken Stock", "Fish Stock", "Vegetable Stock", "Strawberries", "Sugar", "Sultanas", "Sun-Dried Tomatoes", "Sunflower Oil", "Sunflower Seeds", "Sweet Chilli Sauce", "Sweet Potato", "Swiss Chard", "Swordfish", "Tabasco", "Tahini", "Taleggio Cheese", "Tamari", "Tamarillo", "Tangelo", "Tapioca", "Tarragon", "Tea", "Tea Oil", "Tempeh", "Thyme", "Tofu", "Tom Yum", "Tomatoes", "Trout", "Tuna", "Turkey", "Turmeric", "Turnips", "Vanilla Beans", "Vegetable Oil", "Vegetable Spaghetti", "Vermicelli Noodles", "Vinegar", "Wakame", "Walnut", "Warehou", "Wasabi", "Water", "Watercress", "Watermelon", "Wattleseed", "Wheat", "Wheatgrass Juice", "White rice", "White Wine Vinegar", "Whiting Wild Rice", "William Pear", "Red Wine", "White Wine", "Yeast", "Yellow Papaw", "Yellowtail Kingfish", "Yoghurt", "Yogurt", "Zucchini"]
|
|
7
|
+
fruits: ["Apples", "Apricots", "Aubergine", "Avocado", "Banana", "Berries", "Blackberries", "Blood oranges", "Blueberries", "Bush Tomato", "Butternut pumpkin", "Cantaloupe", "Cavalo", "Starfruit", "Cherries", "Corella Pear", "Cranberry", "Cumquat", "Currants", "Custard Apples", "Custard Apples Daikon", "Dates", "Dragonfruit", "Dried Apricots", "Elderberry", "Feijoa", "Grapefruit", "Grapes", "Figs", "Fingerlime", "Goji Berry", "Guava", "Honeydew melon", "Incaberries", "Jarrahdale pumpkin", "Juniper Berries", "Kiwi Fruit", "Kiwiberries", "Lemon", "Limes", "Longan", "Loquats", "Lychees", "Mango", "Mangosteens", "Melon", "Mandarins", "Mulberries", "Nashi Pear", "Nectarines", "Olives", "Oranges", "Papaw", "Papaya", "Passionfruit", "Peaches", "Pears", "Pineapple", "Pomegranate", "Plums", "Prunes", "Rockmelon", "Snowpeas", "Sprouts", "Strawberries", "Sultanas", "Tangelo", "Tomatoes", "Watermelon"]
|
|
8
|
+
vegetables: ["Artichoke", "Arugula", "Asian Greens", "Asparagus", "Bean Shoots", "Bean Sprouts", "Beans", "Green beans", "Beetroot", "Bok Choy", "Broccoli", "Broccolini", "Brussels Sprouts", "Butternut lettuce", "Cabbage", "Capers", "Carob Carrot", "Carrot", "Cauliflower", "Celery", "Chilli Pepper", "Chinese Cabbage", "Fresh Chillies", "Dried Chinese Broccoli", "Cornichons", "Cos lettuce", "Cucumber", "Eggplant", "Endive", "English Spinach", "French eschallots", "Garlic", "Chives", "Green Pepper", "Hijiki", "Iceberg lettuce", "Jerusalem Artichoke", "Jicama", "Kale", "Kohlrabi", "Leeks", "Lettuce", "Onion", "Okra", "Parsnip", "Peas", "Peppers", "Potatoes", "Pumpkin", "Purple carrot", "Radicchio", "Radish", "Raspberry", "Red cabbage", "Red Pepper", "Rhubarb", "Snowpea sprouts", "Spinach", "Squash", "Sun dried tomatoes", "Sweet Potato", "Swiss Chard", "Turnips", "Zucchini"]
|
|
6
9
|
spices: ["Achiote Seed", "Ajwain Seed", "Ajwan Seed", "Allspice Ground", "Allspice Whole", "Amchoor", "Anise", "Anise Star", "Aniseed Whole", "Annatto Seed", "Arrowroot", "Asafoetida", "Baharat", "Balti Masala", "Balti Stir Fry Mix", "Basil", "Bay Leaves", "Bay Leaves Chopped", "BBQ Seasoning", "Biryani Spice Mix", "Cajun Seasoning", "Caraway Seed", "Cardamom Ground", "Cardamom Whole", "Cassia", "Cassia Bark", "Cayenne Pepper", "Celery Leaf", "Celery Salt", "Celery Seed", "Chamomile", "Chervil", "Chicken Seasoning", "Chilli Crushed", "Chilli Ground", "Chilli Pepper", "Chillies Whole", "China Star", "Chinese 5 Spice", "Chives", "Cinnamon Bark", "Cinnamon Ground", "Cinnamon Powder", "Cinnamon Sticks", "Cloves Ground", "Cloves Whole", "Colombo Powder", "Coriander Ground", "Coriander Leaf", "Coriander Seed", "Creole Seasoning", "Cumin Ground", "Cumin Seed", "Cumin Seed Black", "Cumin Seed Royal", "Curly Leaf Parsley", "Curry Chinese", "Curry Hot", "Curry Leaves", "Curry Madras Medium", "Curry Mild", "Curry Thai Green", "Curry Thai Red", "Dhansak Spice Mix", "Dill Herb", "Dill Leaf", "Dill Seed", "Fajita Seasoning", "Fennel Seed", "Fenugreek Ground", "Fenugreek Leaf", "Fenugreek Seed", "Fines Herbes", "Fish Seasoning", "Five Spice Mix", "French Lavender", "Galangal Ground", "Garam Masala", "Garlic Chips", "Garlic Granules", "Garlic Powder", "Garlic Salt", "German Chamomile", "Ginger Root", "Ginger Ground", "Green Cardamom", "Herbes de Provence", "Jalfrezi Curry Powder", "Jalfrezi Mix", "Jerk Seasoning", "Juniper Berries", "Kaffir Leaves", "Korma Curry Powder", "Korma Mix", "Lamb Seasoning", "Lavender", "Lemon Grass", "Lemon Grass Chopped", "Lemon Pepper", "Lime Leaves", "Lime Leaves Ground", "Liquorice Root", "Mace Ground", "Mace Whole", "Mango Powder", "Marjoram", "Methi", "Methi Leaves", "Mexican Salsa Mix", "Mint", "Mixed Herbs", "Mixed Spice", "Mulled Cider Spices", "Mulled Wine Spices", "Mustard Powder", "Mustard Seed Black", "Mustard Seed Brown", "Mustard Seed White", "Mustard Seed Yellow", "Nigella", "Nutmeg Ground", "Nutmeg Whole", "Onion Seed", "Orange Zest", "Oregano", "Paella Seasoning", "Paprika", "Paprika Hungarian", "Paprika Smoked", "Parsley", "Parsley Flat Leaf", "Pepper Black Coarse", "Pepper Black Ground", "Pepper White Ground", "Peppercorns Black", "Peppercorns Cracked Black", "Peppercorns Green", "Peppercorns Mixed", "Peppercorns Pink", "Peppercorns Szechwan", "Peppercorns White", "Pickling Spice", "Pimento Berries", "Pimento Ground", "Piri Piri Seasoning", "Pizza Topping Mix", "Poppy Seed", "Pot Marjoram", "Poudre de Colombo", "Ras-el-Hanout", "Rice Paper", "Rogan Josh Curry Powder", "Rogan Josh Mix", "Rose Baie", "Rosemary", "Saffron", "Sage", "Sea Salt Coarse", "Seasoning Salt", "Self Adhesive Spice Labels", "Sesame Seed", "Spearmint", "Spice Charts", "Steak Seasoning", "Sumac Ground", "Sweet Basil", "Sweet Laurel", "Tagine Seasoning", "Tandoori Masala", "Tandoori Mix", "Tarragon", "Thai Creen Curry Mix", "Thai Red Curry Mix", "Thai Stir Fry", "Thyme", "Tikka Masala", "Tikka Masala Curry Powder", "Turmeric", "Turmeric Powder", "Vanilla Bean", "Vanilla Pods", "Vegetable Seasoning", "Zahtar Spice Mix"]
|
|
7
10
|
measurements: ["teaspoon", "tablespoon", "cup", "pint", "quart", "gallon"]
|
|
8
11
|
measurement_sizes: ["1/4", "1/3", "1/2", "1", "2", "3"]
|
|
9
12
|
metric_measurements: ["milliliter", "deciliter", "centiliter", "liter"]
|
|
13
|
+
sushi: ["Abalone", "Alaskan pink shrimp", "Amberjack", "Bastard halibut", "Bloody clam", "Botan shrimp", "Crab", "Dotted gizzard shad", "Eel", "Firefly squid", "Greater amberjack", "Halfbeak", "Horned turban", "Japanese horse mackerel", "Japanese sea bass", "Japanese spanish mackerel", "Japanese style-chunky omelette", "Japanese whiting", "Mackerel", "Milt", "Mirugai clam", "Octopus", "Orient clam", "Oyster", "Rosy seabass", "Salmon roe", "Salmon", "Scallop", "Sea bream", "Skipjack tuna", "Small amberjack", "Squid", "Trough shells", "Trout", "Tuna", "White trevally", "Whitespotted conger"]
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
en:
|
|
2
|
+
faker:
|
|
3
|
+
football:
|
|
4
|
+
teams: ["Real Madrid", "FC Barcelona", "Valencia CF", "Atletico Madrid", "Manchester United", "Chelsea", "Liverpool", "Arsenal", "Tottenham Hotspur", "AC Milan", "Inter Milan", "AS Roma", "Juventus", "Bayern Munich", "Borussia Dortmund", "Schalke 04", "Benfica", "Galatasaray", "PSV Eindhoven", "LA Galaxy", "Paris Saint Germain"]
|
|
5
|
+
players: ["Lionel Messi", "Gerard Pique", "Sergio Ramos", "Cristiano Ronaldo", "David De Gea", "Paul Pogba", "Antoine Griezmann", "Alvaro Morata", "Andres Iniesta", "Roberto Firmino", "Mohammed Salah", "Harry Kane", "Delle Alli", "Arjen Robben", "Franck Ribery", "Marco Reus", "Robert Lewandoski", "Zlatan Ibrahimovic", "Edinson Cavani", "Sergio Aguero", "Neymar", "Mesut Ozil", "Gianluigi Buffon", "Willian", "Manuel Neuer", "Juan Mata", "Manuel Neuer", "Cesc Fabregas", "Gareth Bale", "Eden Hazard", "Mario Mandzukic", "Kylian Mbappe"]
|
|
6
|
+
coaches: ["Ernesto Valverde", "Zinedine Zidane", "Jose Mourinho", "Antonio Conte", "Jurgen Klopp", "Mauricio Pochettino", "Diego Simeone", "Massimiliano Allegri", "Jupp Heyneckes", "Arsene Wenger", "Jorge Sampaoli", "Fernando Santos", "Didier Deschamps", "Joachim Low", "Julen Lopetegui", "Mauricio Pochettino", "Unai Emery", "Massimiliano Allegri", "Thomas Tuchel"]
|
|
7
|
+
competitions: ["UEFA European Championship", "Asian Cup", "African Cup of Nations", "Copa America", "UEFA Champions League", "FIFA World Cup", "UEFA Europa League", "Serie A", "Barclays Premier League", "Bundesliga", "Liga Santander", "FA Cup", "Ligue 1", "Primeira Liga", "Eredivisie", "Super League", "Major League Soccer", "Coppa Italia", "DFB Pokal", "CONCACAF Gold Cup", "Nations Cup", "Copa del Rey"]
|
|
8
|
+
positions: ["Goalkeeper", "Full Back", "Right Back", "Left Back", "Defensive Midfielder", "Midfielder", "Attacking Midfielder", "Right Midfielder", "Left Midfielder", "Right Wing", "Left Wing", "Second Striker", "Centre Forward"]
|
|
@@ -2,7 +2,7 @@ en:
|
|
|
2
2
|
faker:
|
|
3
3
|
the_fresh_prince_of_bel_air:
|
|
4
4
|
characters: ['Will Smith', 'Philip Banks', 'Carlton Banks', 'Ashley Banks', 'Hilary Banks', 'Vivian Banks', 'Nicky Banks', 'Geoffrey Butler', 'Jazz', 'Vy Smith', 'Hattie Banks', 'Lisa Wilkes', 'Jackie Ames', 'Henry Furth', 'Trevor', 'Tyriq', 'Ice Tray', 'Dee Dee', 'Kellogg Lieberbaum', 'Coach Smiley', 'Judge Carl Robertson']
|
|
5
|
-
|
|
5
|
+
actors: ['Quincy Jones', 'Jay Leno', 'Ronald Reagan', 'Dick Clark', 'Evander Holyfield', 'Isaiah Thomas', 'Heavy D', 'Don Cornelius', 'Kadeem Hardison', 'Hugh M. Hefner', 'Kareem Abdul-Jabbar', 'Bo Jackson', 'Ken Griffey Jr.', 'Al B. Sure!', 'John Ridley', 'Doctor Dré', 'Regis Philbin', 'William Shatner', 'B. B. King', 'Kim Fields', 'Arthel Neville', 'Oprah Winfrey', 'Donal J. Trump', 'Leeza Gibbons', 'Susan Powter', 'Tempestt Bledsoe', 'Kathie Lee Gifford', 'Garcelle Beauvais', 'Bree Walker']
|
|
6
6
|
quotes: [
|
|
7
7
|
"Girl, you look so good, I would marry your brother just to get in your family.",
|
|
8
8
|
"In west Philadelphia born and raised, on the playground was where I spent most of my days.",
|
data/lib/locales/en/friends.yml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
en:
|
|
2
2
|
faker:
|
|
3
3
|
friends:
|
|
4
|
-
characters: ["
|
|
5
|
-
locations: ["Central Perk", "Javu", "945 Grove St Apt. 20",
|
|
6
|
-
quotes: ["We were on a break!", "Forty-two to twenty-one! Like the turkey, Ross is done!",
|
|
4
|
+
characters: ["Peter Becker", "Ben", "Chandler Bing", "Charles Bing", "Erica Bing", "Jack Bing", "Nora Tyler Bing", "Bonnie", "Amanda Buffamonteezi", "Frank Buffay, Jr.", "Frances Buffay", "Phoebe Buffay", "Ursula Buffay", "Joshua Burgin", "Richard Burke", "Chloe", "Will Colbert", "Danny", "David", "Rob Donnan", "Doug", "Eric", "Erica", "Erika", "Barry Farber", "Fun Bobby", "Gary", "Emma Geller", "Jack Geller", "Monica Geller", "Ross Geller", "Missy Goldberg", "Janice Goralnik", "Leonard Green", "Rachel Green", "Bitsy Hannigan", "Mike Hannigan", "Theodore Hannigan", "Mr. Heckles", "Benjamin Hobart", "Joanna", "Tag Jones", "Julie", "Kathy", "Kim", "Alice Knight", "Janine LaCroix", "Dr. Ledbetter", "Estelle Leonard", "Dr. Long", "Marcel", "Eddie Menuek", "Kate Miller", "Gavin Mitchell", "Molly", "Mona", "Susie Moss", "Parker", "Mark Robinson", "Roy", "Ryan", "Sandy", "Sophie", "Steve", "Elizabeth Stevens", "Paul Stevens", "Stu", "Terry", "Mr. Treeger", "Joey Tribbiani", "Ugly Naked Guy", "Mr. Waltham", "Andrea Waltham", "Emily Waltham", "Stephen Waltham", "Charlie Wheeler", "Mr. Zelner", "Carol Willick", "Miss Chanandler Bong"]
|
|
5
|
+
locations: ["Monica's Apartment", "Central Perk", "Chandler and Joey's Apartment", "Monica and Chandler's House", "Phoebe's Apartment", "Ross' Third Apartment", "Javu", "Moondance Diner", "Allesandro's", "Bloomingdale's", "Ross' First Apartment", "Ross' Second Apartment", "Lincoln High School", "Joey's Apartment", "Monica and Ross' Parents House", "Becco", "Dot's Spot", "Carol and Susan's Apartment", "Gina's House", "Waltham House", "Celestino Custom Tailor", "Ernie's", "New York University", "Silvercup Studios", "Marcel's", "945 Grove St Apt. 20", "Ralph Lauren", "New York Museum of Prehistoric History", "Days of Our Lives", "15 Yemen Road, Yemen"]
|
|
6
|
+
quotes: ["I can handle this. Handle is my middle name. Actually, handle is the middle of my first name.", "Pivot! Pivot! Pivot! Pivot! Pivot!", "Shut up! Shut up! Shut up!", "Joey doesn’t share food!", "Guys can fake it? Unbelievable! The one thing that’s ours!", "If you’re going to call me names, I would prefer Ross, the Divorce Force. It’s just cooler.", "All right, look if you absolutely have to tell her the truth, at least wait until the timing’s right. And that’s what deathbeds are for.", "Your teeth? Yeah, I saw them from outside.", "Dear God! This parachute is a knapsack!", "No, homo habilis was erect. Australopithecus was never fully erect.", "Well, maybe he was nervous.", "I’m glad we’re having a rehearsal dinner. I rarely practice my meals before I eat.", "Until I was 25 I thought the only response to ‘I love you’ was ‘Oh crap!'", "What’s not to like? Custard – good. Jam – good. Meat – good!", "No. Interestingly enough, her leaf blower picked up.", "You know what’s weird? Donald Duck never wore pants. But whenever he’s getting out of the shower, he always puts a towel around his waist. I mean, what is that about?", "Ross, just for my own peace of mind, you’re not married to any more of us are you?", "It’s a moo point. It’s like a cow’s opinion; it doesn’t matter. It’s moo.", "First divorce: wife’s hidden sexuality, not my fault. Second divorce: said the wrong name at the altar, kind of my fault. Third divorce: they shouldn’t let you get married when you’re that drunk and have stuff drawn all over your face, Nevada’s fault.", "It hurts my Joey’s apple!", "Oh, are you setting Ross up with someone? Does she have a wedding dress?", "Your collective dating record reads like a who’s who of human crap.", "If you don’t help me cook I’m going to take a bunch of those hot dogs and make a new appetiser called pigs in Ross.", "I’m not so good with the advice. Can I interest you in a sarcastic comment?", "No! No, Joey! U-N-I-sex.", "Oh look, ugly naked guy is decorating his Christmas tree! Wow, you should see the size of his Christmas balls!", "I can’t believe my Dad saw us having sex! He didn’t make it to one of my piano recitals, but this he sees!", "If you want to receive emails about my upcoming shows please give me money so I can buy a computer.", "Come on Ross you’re a palaeontologist – dig a little deeper.", "You can’t have S-E-X when your taking care of the B-A-B-I-E.", "A hundred million people went to see a movie about what I do. I wonder how many people would go see a movie called Jurassic Parka. No, no, no, a bunch of out-of-control jackets take over an island!", "Hey buddy, this is a family place. Put the mouse back in the house.", "I’m not someone who goes after a guy five minutes after he’s divorced.", "We were on a break!", "Oh, my God! If you say that one more time, I’m going to break up with you!", "How you doin’?", "Forty-two to twenty-one! Like the turkey, Ross is done!", "SEVEN! SEVEN! SEVEN!", "I'm Monica. I’m disgusting. I stalk guys and keep their underpants.", "Fine judge all you want but... married a lesbian, left a man at the altar, fell in love with a gay ice dancer, threw a girl’s wooden leg in the fire, LIVE IN A BOX.", "Welcome to the real world. It sucks. You’re gonna love it!", "Sure I peed on her. And if I had to, I’d pee on any one of you!", "If the homo sapiens were, in fact, HOMO sapiens…is that why they’re extinct?", "You could not be any more wrong. You could try, but you would not be successful.", "You’ve been BAMBOOZLED!", "It was summer… and it was hot. Rachel was there… A lonely grey couch…”OH LOOK!” cried Ned, and then the kingdom was his forever. The End.", "Je m’appelle Claude", "Raspberries? Good. Ladyfingers? Good. Beef? GOOD!", "Could I BE wearing any more clothes?", "Oh no, two women love me. They're both gorgeous and sexy. My wallet's too small for my fifties AND MY DIAMOND SHOES ARE TOO TIGHT."]
|
|
@@ -0,0 +1,344 @@
|
|
|
1
|
+
en:
|
|
2
|
+
faker:
|
|
3
|
+
futurama:
|
|
4
|
+
characters:
|
|
5
|
+
- Abner Doubledeal
|
|
6
|
+
- Al Gore's Head
|
|
7
|
+
- Amy Wong
|
|
8
|
+
- Antonio Calculon
|
|
9
|
+
- Barbados Slim
|
|
10
|
+
- Bender Bending Rodriguez
|
|
11
|
+
- Boxy
|
|
12
|
+
- Brain Slugs
|
|
13
|
+
- Brain Spawn
|
|
14
|
+
- Bubblegum Tate
|
|
15
|
+
- Calculon
|
|
16
|
+
- Chanukah Zombie
|
|
17
|
+
- Clamps
|
|
18
|
+
- Cubert Farnsworth
|
|
19
|
+
- Doctor John Zoidberg
|
|
20
|
+
- Donbot
|
|
21
|
+
- Dr. Ogden Wernstrom
|
|
22
|
+
- Dwight Conrad
|
|
23
|
+
- Elzar
|
|
24
|
+
- Father Changstein-El-Gamal
|
|
25
|
+
- Flexo
|
|
26
|
+
- Gypsy-bot
|
|
27
|
+
- Hattie McDoogal
|
|
28
|
+
- Headless Body of Agnew
|
|
29
|
+
- Hedonismbot
|
|
30
|
+
- Hermes Conrad
|
|
31
|
+
- Horrible Gelatinous Blob
|
|
32
|
+
- Hyperchicken
|
|
33
|
+
- Hypnotoad
|
|
34
|
+
- Inez Wong
|
|
35
|
+
- Joey Mousepad
|
|
36
|
+
- Kif Kroker
|
|
37
|
+
- Kwanzaabot
|
|
38
|
+
- LaBarbara Conrad
|
|
39
|
+
- Leo Wong
|
|
40
|
+
- Linda van Schoonhoven
|
|
41
|
+
- Lord Nibbler
|
|
42
|
+
- Lrrr
|
|
43
|
+
- Michelle
|
|
44
|
+
- Mom
|
|
45
|
+
- Morbo the Annihilator
|
|
46
|
+
- Mr. Panucci
|
|
47
|
+
- Pazuzu
|
|
48
|
+
- Petunia
|
|
49
|
+
- Philip J. Fry
|
|
50
|
+
- Professor Hubert J. Farnsworth
|
|
51
|
+
- Randy Munchnik
|
|
52
|
+
- Reverend Lionel Preacherbot
|
|
53
|
+
- Richard Nixon's Head
|
|
54
|
+
- Roberto
|
|
55
|
+
- Robot Devil
|
|
56
|
+
- Robot Santa
|
|
57
|
+
- Sal
|
|
58
|
+
- Scruffy
|
|
59
|
+
- Smitty
|
|
60
|
+
- Stephen Hawking
|
|
61
|
+
- The Crushinator
|
|
62
|
+
- Tinny Tim
|
|
63
|
+
- Turanga Leela
|
|
64
|
+
- Turanga Morris
|
|
65
|
+
- Turanga Munda
|
|
66
|
+
- URL
|
|
67
|
+
- Warden Vogel
|
|
68
|
+
- Zapp Brannigan
|
|
69
|
+
locations:
|
|
70
|
+
- 7¹¹
|
|
71
|
+
- Akbar
|
|
72
|
+
- Aldrin's Gulch
|
|
73
|
+
- Alien Overlord & Taylor
|
|
74
|
+
- Alien Zoo
|
|
75
|
+
- Amazonia
|
|
76
|
+
- Amish Homeworld
|
|
77
|
+
- Amphibios 9
|
|
78
|
+
- Antares System
|
|
79
|
+
- Anti-Chrysler building
|
|
80
|
+
- Apartment 00100100
|
|
81
|
+
- Apollo Theatre
|
|
82
|
+
- Applied Cryogenics
|
|
83
|
+
- Assisted Living Nebula
|
|
84
|
+
- Atlanta
|
|
85
|
+
- Atlantic City
|
|
86
|
+
- Atlantic Ocean
|
|
87
|
+
- Bender Statue
|
|
88
|
+
- Big Apple Bank
|
|
89
|
+
- Blernsball Hall of Fame
|
|
90
|
+
- Bogad
|
|
91
|
+
- Boston
|
|
92
|
+
- Brain Slug Planet
|
|
93
|
+
- Brooklyn
|
|
94
|
+
- Brooklyn Bridge
|
|
95
|
+
- Build-a-Bot
|
|
96
|
+
- Bumbase Alpha
|
|
97
|
+
- Cave of Hopelessness
|
|
98
|
+
- Cavern on the Green
|
|
99
|
+
- Central Bureaucracy
|
|
100
|
+
- Chapek 9
|
|
101
|
+
- Chrysler building
|
|
102
|
+
- Cineplex 14
|
|
103
|
+
- Circuit City
|
|
104
|
+
- CitiHall
|
|
105
|
+
- Coney Island Community College
|
|
106
|
+
- Cookieville Minimum-Security Orphanarium
|
|
107
|
+
- Cornwood
|
|
108
|
+
- Crack mansion
|
|
109
|
+
- CrindStar, Inc.
|
|
110
|
+
- Cyberia
|
|
111
|
+
- Cyclopia
|
|
112
|
+
- Cygnus 5
|
|
113
|
+
- DOOP Headquarters
|
|
114
|
+
- Decapod 10
|
|
115
|
+
- Decapodian Embassy
|
|
116
|
+
- Devil's Island
|
|
117
|
+
- Dogdoo 7
|
|
118
|
+
- Dogdoo 8
|
|
119
|
+
- Doohan 6
|
|
120
|
+
- Earth
|
|
121
|
+
- Ebola 9
|
|
122
|
+
- Eden 7
|
|
123
|
+
- Egypt
|
|
124
|
+
- Electric Ladyland
|
|
125
|
+
- Elzar's Fine Cuisine
|
|
126
|
+
- Empire State Building
|
|
127
|
+
- Eternium
|
|
128
|
+
- Eye Robot
|
|
129
|
+
- EyePhone Store
|
|
130
|
+
- Face on Mars
|
|
131
|
+
- Fishy Joe's
|
|
132
|
+
- Forbidden Zone
|
|
133
|
+
- Fountain of Aging
|
|
134
|
+
- Fronty's Meat Market
|
|
135
|
+
- Fry family house
|
|
136
|
+
- Future-Roma
|
|
137
|
+
- Galaxy of Terror
|
|
138
|
+
- Galápagos Islands
|
|
139
|
+
- Gandhi Nebula
|
|
140
|
+
- Gateway Arch
|
|
141
|
+
- GeneWorks, S.K.G.
|
|
142
|
+
- Geysers of Gygax
|
|
143
|
+
- Giza
|
|
144
|
+
- Globetrotter Homeworld Embassy
|
|
145
|
+
- Globetrotter Planet
|
|
146
|
+
- Glorianimous 3
|
|
147
|
+
- Hacking Jack's Fine Smokables
|
|
148
|
+
- Hal Institute for Criminally Insane Robots
|
|
149
|
+
- Halley's Comet
|
|
150
|
+
- Head Museum
|
|
151
|
+
- Intergalactic Stock Exchange
|
|
152
|
+
- Jupiter
|
|
153
|
+
- Keeler Canyon
|
|
154
|
+
- Kyoto
|
|
155
|
+
- Land Titanic
|
|
156
|
+
- Le Palm D'Orbit
|
|
157
|
+
- Leo Wong's "Miniature" Golf Course
|
|
158
|
+
- Little Bitaly
|
|
159
|
+
- Little Neptune
|
|
160
|
+
- Los Angeles
|
|
161
|
+
- Luna Park
|
|
162
|
+
- Madison Cube Garden
|
|
163
|
+
- Malfunctioning Eddie's Rocket-Car Emporium
|
|
164
|
+
- Manhattan
|
|
165
|
+
- Maple Craters
|
|
166
|
+
- Mars
|
|
167
|
+
- Mars University (location)
|
|
168
|
+
- Mars Vegas
|
|
169
|
+
- Mercury
|
|
170
|
+
- Mexico
|
|
171
|
+
- Milwaukee
|
|
172
|
+
- Milwaukee Mom's dark matter mine
|
|
173
|
+
- Mobile Oppression Palace
|
|
174
|
+
- Mom's Friendly Robot Company
|
|
175
|
+
- Mom's dark matter mine
|
|
176
|
+
- Monsanto Yokel Dome
|
|
177
|
+
- Monument Beach
|
|
178
|
+
- Moon
|
|
179
|
+
- Mount Rushmore
|
|
180
|
+
- Museum of Natural History
|
|
181
|
+
- NBC
|
|
182
|
+
- Nation of Joe
|
|
183
|
+
- Near Death Star
|
|
184
|
+
- Neptune
|
|
185
|
+
- Neutral Planet
|
|
186
|
+
- Neutropolis
|
|
187
|
+
- New New Jersey
|
|
188
|
+
- New New York
|
|
189
|
+
- New New York's Famous Original Ray's Superior Court
|
|
190
|
+
- Nigel 7
|
|
191
|
+
- Nintenduu 64
|
|
192
|
+
- Norway
|
|
193
|
+
- Nude Beach Planet
|
|
194
|
+
- Nukevada
|
|
195
|
+
- Nylar IV
|
|
196
|
+
- O'Cyris IV
|
|
197
|
+
- O'Grady's Pub
|
|
198
|
+
- O'Zorgnax's Pub
|
|
199
|
+
- Old New York
|
|
200
|
+
- Old New York Subway
|
|
201
|
+
- Omega 3
|
|
202
|
+
- Omicron Persei 8
|
|
203
|
+
- Orbiting Meadows National Cemetery
|
|
204
|
+
- Original lunar landing site
|
|
205
|
+
- Panucci's Pizza
|
|
206
|
+
- Parallel Universe
|
|
207
|
+
- Paris
|
|
208
|
+
- Past-O-Rama
|
|
209
|
+
- Peoples α
|
|
210
|
+
- Pet Shop
|
|
211
|
+
- Pisa
|
|
212
|
+
- Planet Earth
|
|
213
|
+
- Planet Express building
|
|
214
|
+
- Planet XXX
|
|
215
|
+
- Pluto
|
|
216
|
+
- Poopiter
|
|
217
|
+
- Reckless Ted's Funland
|
|
218
|
+
- Republic of French Stereotypes
|
|
219
|
+
- Robo-Hungarian Empire
|
|
220
|
+
- Robonia
|
|
221
|
+
- Robot Arms Apts
|
|
222
|
+
- Robot Hell
|
|
223
|
+
- Rockefeller Center
|
|
224
|
+
- Roswell
|
|
225
|
+
- Rumbledy-Hump (Planet)
|
|
226
|
+
- Sargaseous Sea
|
|
227
|
+
- Sewers of New New York
|
|
228
|
+
- Simian 7
|
|
229
|
+
- Simian 7 Zoo
|
|
230
|
+
- Slurm Factory
|
|
231
|
+
- Spa 5
|
|
232
|
+
- Spheron I
|
|
233
|
+
- Spleef Nebula
|
|
234
|
+
- St. Louis
|
|
235
|
+
- Starbabe's Cocoffee
|
|
236
|
+
- State of New New York
|
|
237
|
+
- Statue of Liberty
|
|
238
|
+
- Studio 1²2¹3³
|
|
239
|
+
- Stumbos IV
|
|
240
|
+
- Sub-sewer
|
|
241
|
+
- Svalvard Global Seed Vault
|
|
242
|
+
- Sweden
|
|
243
|
+
- Taco Bellevue Hospital
|
|
244
|
+
- Tarantulon 6
|
|
245
|
+
- Temple of Robotology
|
|
246
|
+
- That world that can't be mentioned in polite company
|
|
247
|
+
- The Hip Joint
|
|
248
|
+
- The Leaning Tower of Pisa
|
|
249
|
+
- The Robo-Hungarian Empir
|
|
250
|
+
- The Sewers of New New York
|
|
251
|
+
- The World
|
|
252
|
+
- Thermostadt
|
|
253
|
+
- Thermostadt Castle
|
|
254
|
+
- Third World of the Antares System
|
|
255
|
+
- Thuban 9
|
|
256
|
+
- Tokyo
|
|
257
|
+
- Tornadus
|
|
258
|
+
- Trisol
|
|
259
|
+
- Tweenis 12
|
|
260
|
+
- United States
|
|
261
|
+
- Universe Gamma
|
|
262
|
+
- Urectum
|
|
263
|
+
- V-GINY
|
|
264
|
+
- Venus
|
|
265
|
+
- Vergon 6
|
|
266
|
+
- Viga 4
|
|
267
|
+
- Vinci
|
|
268
|
+
- Violet Dwarf Star
|
|
269
|
+
- Washington, D.C.
|
|
270
|
+
- Wipe Castle
|
|
271
|
+
- Wong ranch
|
|
272
|
+
- Wormulon
|
|
273
|
+
quotes:
|
|
274
|
+
- A fancy dress gala? I'll wear my formal shell.
|
|
275
|
+
- Ah, Xmas Eve. Another pointless day where I accomplish nothing.
|
|
276
|
+
- Bite my shiny metal ass.
|
|
277
|
+
- Blackmail is such an ugly word. I prefer extortion. The ‘x' makes it sound
|
|
278
|
+
cool.
|
|
279
|
+
- Dammit Kif, where's the little umbrella? That's what makes it a scotch on
|
|
280
|
+
the rocks!
|
|
281
|
+
- Did everything just taste purple for a second?
|
|
282
|
+
- Excuse my language but I have had it with you ruffling my petticoats!
|
|
283
|
+
- Fry, it's been years since medical school, so remind me. Disemboweling in
|
|
284
|
+
your species, fatal or non-fatal?
|
|
285
|
+
- Gimme your biggest, strongest, cheapest drink!
|
|
286
|
+
- Have you ever tried simply turning off your TV, sitting down with your child,
|
|
287
|
+
and hitting them?
|
|
288
|
+
- Hey sexy mama. Wanna kill all humans?
|
|
289
|
+
- Hey! I got a busted ass here and I don't see anyone kissing it!
|
|
290
|
+
- Honey, I wouldn't talk about taste if I was wearing a lime green tank top.
|
|
291
|
+
- Hot diggity daffodil!
|
|
292
|
+
- I don't have emotions & sometimes that makes me very sad.
|
|
293
|
+
- I don't remember ever fighting Godzilla… But that is so what I would have
|
|
294
|
+
done!
|
|
295
|
+
- I don't want to live on this planet anymore.
|
|
296
|
+
- I got ants in my butt, and I needs to strut.
|
|
297
|
+
- I really ought to do something but I am already in my pyjamas.
|
|
298
|
+
- I took the liberty of fertilizing your caviar.
|
|
299
|
+
- It's when women are polite to each other you know there's a problem.
|
|
300
|
+
- I'm so embarrassed. I wish everybody else was dead.
|
|
301
|
+
- Men who call too much are the worst…I bet.
|
|
302
|
+
- My story is a lot like yours, only more interesting ‘cause it involves robots.
|
|
303
|
+
- Oh, no room for Bender, huh? Fine! I'll go build my own lunar lander, with
|
|
304
|
+
blackjack and hookers. In fact, forget the lunar lander and the blackjack.
|
|
305
|
+
Ahh, screw the whole thing!
|
|
306
|
+
- Shut up and take my money!
|
|
307
|
+
- Sweet llamas of the Bahamas!
|
|
308
|
+
- That's what they said about being alive!
|
|
309
|
+
- Ugh, it's like a party in my mouth & everyone's throwing up.
|
|
310
|
+
- Valentine's Day is coming up? Oh Crap, I forgot to get a girlfriend again!
|
|
311
|
+
- Well, if jacking on will make strangers think I'm cool, I'll do it
|
|
312
|
+
- We'll soon stage an attack on technology worthy of being chronicled in an
|
|
313
|
+
anthem by Rush!
|
|
314
|
+
- We're making beer. I'm the brewery!
|
|
315
|
+
- When you look this good, you don't have to know anything!
|
|
316
|
+
- Wow! Sporty go-cart, Leela! So hip and sexy. Not like you at all.
|
|
317
|
+
- You know what cheers me up? Other people's misfortune.
|
|
318
|
+
hermes_catchphrases:
|
|
319
|
+
- Cursed bacteria of Liberia!
|
|
320
|
+
- Great bonda of Uganda!
|
|
321
|
+
- Great cow of Moscow!
|
|
322
|
+
- Sacred boa of West and Eastern Samoa!
|
|
323
|
+
- Sacred hog of Prague!
|
|
324
|
+
- Sweet bongo of the Congo!
|
|
325
|
+
- Sweet candelabra of Le Havre, LaBarbara!
|
|
326
|
+
- Sweet coincidence of Port-au-Prince!
|
|
327
|
+
- Sweet fireball of Montreal!
|
|
328
|
+
- Sweet freak of Mozambique!
|
|
329
|
+
- Sweet ghost of Babylon!
|
|
330
|
+
- Sweet giant anteater of Santa Anita!
|
|
331
|
+
- Sweet gorilla of Manila!
|
|
332
|
+
- Sweet guinea pig of Winnipeg!
|
|
333
|
+
- Sweet honey bee of infinity!
|
|
334
|
+
- Sweet kookaburra of Edinburgh!
|
|
335
|
+
- Sweet lion of Zion!
|
|
336
|
+
- Sweet llamas of the Bahamas!
|
|
337
|
+
- Sweet manatee of Galilee!
|
|
338
|
+
- Sweet orca of Mallorca!
|
|
339
|
+
- Sweet reawakening of jamaicaing!
|
|
340
|
+
- Sweet something... of... someplace...!
|
|
341
|
+
- Sweet squid of Madrid!
|
|
342
|
+
- Sweet three-toed sloth of the ice planet Hoth!
|
|
343
|
+
- Sweet topology of cosmology!
|
|
344
|
+
- Sweet yeti of the Serengeti!
|