Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
449 views
in Q2A Core by
When i try to go to http://www.jocurisupertari.ro/intrebari (my website) I get this message : Missing ^ in language string main/x_views.

What does it mean? What should I do?

2 Answers

0 votes
by
It means you should have the ^ character in the translation string somewhere. It gets replaced by a number - in this case, the number of views. So if you have '^ views' on the site it will show e.g. '10 views'.
0 votes
by
Yes, you should edit your lang file :

\qa\qa-lang\<<your_lanuguage_code>>\qa-lang-main.php

and put the ^ character to the line:

'x_views' => '^ views',

The ^ is a variable parameter. In this case a number of views. You can put it anywhere in the string, e.g.: 'views: ^'   .
...