Overview
Comment: | [fr] conjugeur: mise à jour + pas de variable d’un seul caractère |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | fr |
Files: | files | file ages | folders |
SHA3-256: |
6a3646249d23cd8ebe4ac4c9de026448 |
User & Date: | olr on 2017-05-28 13:01:17 |
Other Links: | manifest | tags |
Context
2017-05-29
| ||
06:26 | [fr] déplacement des règles de confusion <différent/différend> + correction faux positifs check-in: b2901e8b0f user: olr tags: trunk, fr | |
2017-05-28
| ||
13:01 | [fr] conjugeur: mise à jour + pas de variable d’un seul caractère check-in: 6a3646249d user: olr tags: trunk, fr | |
12:15 | [fr] étiquettes pour les verbes pronominaux check-in: 3a71c07d37 user: olr tags: trunk, fr | |
Changes
Modified gc_lang/fr/modules-js/conj.js from [1c45293d0f] to [55db24a585].
︙ | |||
283 284 285 286 287 288 289 | 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 | - + - + - + - + - + - + - - + + - + - - + + - + | ]); }; _readableInfo () { // returns readable infos this.sVerbAux = (this._sRawInfo.slice(7,8) == "e") ? "être" : "avoir"; let sGroup = _dGroup.get(this._sRawInfo[0]); |
︙ | |||
341 342 343 344 345 346 347 | 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 | - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + | return this.dConj.get(":PQ").get(sWho); }; participePresent (bPro, bNeg, bTpsCo, bInt, bFem) { if (!this.dConj.get(":PQ").get(":P")) { return ""; } |
︙ |
Modified gc_lang/fr/modules/conj.py from [7c55bc9b32] to [55e5497434].
︙ | |||
24 25 26 27 28 29 30 | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | - - + + | _dGroup = { "0": "auxiliaire", "1": "1ᵉʳ groupe", "2": "2ᵉ groupe", "3": "3ᵉ groupe" } _dTenseIdx = { ":PQ": 0, ":Ip": 1, ":Iq": 2, ":Is": 3, ":If": 4, ":K": 5, ":Sp": 6, ":Sq": 7, ":E": 8 } |
︙ | |||
238 239 240 241 242 243 244 | 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 | - + - + - + - + - + - - - + + + - - - - + + + + | if not self._sRawInfo: return "verbe inconnu" if self._sRawInfo[7:8] == "e": self.sVerbAux = "être" else: self.sVerbAux = "avoir" sGroup = _dGroup.get(self._sRawInfo[0], "# erreur ") |
︙ | |||
294 295 296 297 298 299 300 | 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 | - + - - + + - + - + - + - + - + - + - - + + - + - - + + - + - + - + - + - - - + + + - + - + - + - + - - + + | return "# erreur" def participePresent (self, bPro, bNeg, bTpsCo, bInt, bFem): try: if not self.dConj[":PQ"][":P"]: return "" if bTpsCo: |
︙ | |||
378 379 380 381 382 383 384 | 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 | - + - - + + - + - + - + - + - + - + - - + + | return "# erreur" def imperatif (self, sWho, bPro, bNeg, bTpsCo, bFem): try: if not self.dConj[":E"][sWho]: return "" if bTpsCo: |
︙ |
Modified gc_lang/fr/oxt/Conjugueur/Conjugueur.py from [6ca66ec150] to [7525f9e8de].
︙ | |||
299 300 301 302 303 304 305 | 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 | - + - + | self.otco.Enabled = False self.infomsg.Label = self.sWarning else: self.infomsg.Label = "" if sRawInfo[5] == "_": self.opro.State = False self.opro.Enabled = False |
︙ |
Modified gc_lang/fr/tb/content/conjugueur.js from [d8559c53e4] to [52fcb1616a].
︙ | |||
98 99 100 101 102 103 104 | 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | - + - + | document.getElementById('otco').style = "color: #CCC;"; document.getElementById('smallnote').hidden = false; } else { if (sRawInfo[5] == "_") { document.getElementById('opro').checked = false; document.getElementById('opro').disabled = true; document.getElementById('opro').style = "color: #CCC;"; |
︙ |
Modified gc_lang/fr/xpi/data/conj_panel.js from [d0838c414c] to [0a29bb81bd].
︙ | |||
91 92 93 94 95 96 97 | 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 | - + - + | document.getElementById('otco_lbl').style = "color: #CCC;"; document.getElementById('smallnote').hidden = false; } else { if (sRawInfo[5] == "_") { document.getElementById('opro').checked = false; document.getElementById('opro').disabled = true; document.getElementById('opro_lbl').style = "color: #CCC;"; |
︙ |