module FFaker::LoremPL

def sentence(count = 7)

def sentence(count = 7)
  sentence = words(count + rand(0..5))
  sentence[rand(3..(sentence.length - 3))] += ',' if sentence.length > 10
  sentence = sentence.join(' ')
  sentence = sentence.capitalize
  "#{sentence}#{end_of_sentence}"
end