Differences From Artifact [0ad6fe5843]:
- File gc_lang/fr/modules-js/gce_analyseur.js — part of check-in [1800ac6b98] at 2017-08-06 01:32:04 on branch webext2_fix — [core][fr][js] ajout des ; oubliés et ajustement des ; en trop (user: IllusionPerdu, size: 6286) [annotate] [blame] [check-ins using] [more...]
To Artifact [e2613ddcd2]:
- File gc_lang/fr/modules-js/gce_analyseur.js — part of check-in [b89dc82bc4] at 2017-08-08 19:11:22 on branch webext2_fix — [core] add inline config for JSHint assuming es6 synthax and some global (user: IllusionPerdu, size: 6310) [annotate] [blame] [check-ins using] [more...]
1 2 3 4 5 6 7 8 |
//// GRAMMAR CHECKING ENGINE PLUGIN: Parsing functions for French language
function rewriteSubject (s1, s2) {
// s1 is supposed to be prn/patr/npr (M[12P])
if (s2 == "lui") {
return "ils";
}
if (s2 == "moi") {
| > | 1 2 3 4 5 6 7 8 9 |
//// GRAMMAR CHECKING ENGINE PLUGIN: Parsing functions for French language
/*jslint esversion: 6*/
function rewriteSubject (s1, s2) {
// s1 is supposed to be prn/patr/npr (M[12P])
if (s2 == "lui") {
return "ils";
}
if (s2 == "moi") {
|
| ︙ | ︙ |