phgrosjean / rfrench

R translation in French
MIT License
3 stars 1 forks source link

base/po TYPO source a corriger: src/main/relop.c:185 "comparison (%s) is not possible language types" #20

Open ChristianWia opened 2 months ago

ChristianWia commented 2 months ago

il manque un 'for' dans le fichier source : (voir dernier cas)

static SEXP compute_languagerelop(SEXP call, SEXP op, SEXP x, SEXP y) { static enum {... default: errorcall(call, ("comparison (%s) is not possible for language types"), PRIMNAME(op)); } case IDENTICALCALLS:.... errorcall(call, ("comparison (%s) is not possible for language types"), PRIMNAME(op)); } case IDENTICAL_CALLSATTR:..... ("comparison (%s) is not possible for language types"), PRIMNAME(op)); } case IDENTICAL:.... default: errorcall(call, _("comparison (%s) is not possible language types"), <<< msgid "comparison (%s) is not possible for language types" PRIMNAME(op)); }....

phgrosjean commented 3 days ago

@ChristianWia Ah oui, effectivement. Il faudrait faire un rapport de bug au R Core Team. L'explication pour le faire est ici: https://www.r-project.org/bugs.html

ChristianWia commented 3 days ago

This is to remember a point to be raised to R team.