*
* @param index index of expression
* @param expression false friend of this index
- * @param rev_grade dito, in opposite direction
+ * @param reverse if true, represents the direction translation to original
*/
void setFauxAmi(int index, const QString & expression, bool reverse = false);
/** returns false friend of this expression
*
* @param index index of expression
- * @param rev_grade dito, in opposite direction
+ * @param reverse if true, represents the direction translation to original
* @return false friend or "" if no string available
*/
QString fauxAmi(int index, bool reverse = false) const;
/** returns grade of given translation as string
*
* @param index index of expression
- * @param rev_grade dito, in opposite direction
+ * @param reverse if true, represents the direction translation to original
* @return number of knowlegde: 0=known, x=numbers not knows
*/
QString gradeStr(int index, bool reverse = false) const;
*
* @param index index of translation
* @param grade number of knowlegde: 0=known, x=numbers not knows
+ * @param reverse if true, represents the direction translation to original
*/
void setGrade(int index, grade_t grade, bool reverse = false);
/** returns grade of given translation as int
*
* @param index index of translation
- * @param rev_grade dito, in opposite direction
+ * @param reverse if true, represents the direction translation to original
* @return number of knowlegde: 0=known, x=numbers not knows
*/
grade_t grade(int index, bool reverse = false) const;
/** increments grade of given translation
*
* @param index index of translation
- * @param rev_grade dito, in opposite direction
+ * @param reverse if true, represents the direction translation to original
*/
void incGrade(int index, bool reverse = false);
/** decrements grade of given translation
*
* @param index index of translation
- * @param rev_grade dito, in opposite direction
+ * @param reverse if true, represents the direction translation to original
*/
void decGrade(int index, bool reverse = false);
/** returns last query date of given translation as int
*
* @param index index of translation
- * @param rev_date dito, in opposite direction
+ * @param reverse if true, represents the direction translation to original
*/
QDateTime queryDate(int index, bool reverse = false) const;
/** set last query date of given translation as int
*
* @param index index of translation
- * @param rev_date dito, in opposite direction
+ * @param date the new date
+ * @param reverse if true, represents the direction translation to original
*/
void setQueryDate(int index, const QDateTime & date, bool reverse = false);
/** sets conjugations
*
* @param index index of translation
- * @param conjugator conjugation block
+ * @param conjugaton conjugation block
*/
void setConjugation(int index, const KEduVocConjugation & conjugation);
/** returns query count of given translation as int
*
* @param index index of translation
- * @param rev_count dito, in opposite direction
+ * @param reverse if true, represents the direction translation to original
*/
count_t queryCount(int index, bool reverse = false) const;
/** set query count of given translation as int
*
* @param index index of translation
- * @param reverse dito, in opposite direction
+ * @param count the new count
+ * @param reverse if true, represents the direction translation to original
*/
void setQueryCount(int index, count_t count, bool reverse = false);
/** set bad query count of given translation as int
*
* @param index index of translation
- * @param reverse dito, in opposite direction
+ * @param count the new count
+ * @param reverse if true, represents the direction translation to original
*/
void setBadCount(int index, count_t count, bool reverse = false);
/** increment bad query count of given translation by 1
*
* @param index index of translation
- * @param rev_count dito, in opposite direction
+ * @param reverse if true, represents the direction translation to original
*/
void incBadCount(int index, bool reverse = false);
/** increment query count of given translation by 1
*
* @param index index of translation
- * @param rev_count dito, in opposite direction
+ * @param reverse if true, represents the direction translation to original
*/
void incQueryCount(int index, bool reverse = false);