Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
490 views
in Q2A Core by

How do I translate the addresses of the pages in my language? is it possible?

example:

/questions

/unanswered

/categories

/users

/ask

and more...

1 Answer

+3 votes
by
selected by
 
Best answer

Sure!

You need to edit your  qa-config.php file :

 

$QA_CONST_PATH_MAP=array(
'questions' => 'pytania',
'categories' => 'kategorie',
'users' => 'użytkownicy',
'user' => 'użytkownik',
[...and so on]
);

 

by
Thanks, so only this and nothing else?
by
Ok it works ;)
...