If you check plugin code, you realize slug is generated from title.
// GET SLUG FOR CATEGORY
function faq_category_slug($category, $locale = '') {
$text = osc_sanitizeString(faq_category_title($category, $locale));
if($text == '') {
$text = 'category';
}
return $text;
}