messages.arb 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433
  1. {
  2. "@@locale": "fr",
  3. "3996542468246131656": "Fiche d'un participant",
  4. "@3996542468246131656": {
  5. "x-locations": [
  6. {
  7. "file": "src/app/composants/account-details/account-details.component.html",
  8. "start": { "line": "3", "column": "46" },
  9. "end": { "line": "3", "column": "70" }
  10. },
  11. {
  12. "file": "src/app/composants/account-update/account-update.component.html",
  13. "start": { "line": "4", "column": "46" },
  14. "end": { "line": "4", "column": "70" }
  15. },
  16. {
  17. "file": "src/app/composants/participant-create/participant-create.component.html",
  18. "start": { "line": "4", "column": "47" },
  19. "end": { "line": "4", "column": "71" }
  20. },
  21. {
  22. "file": "src/app/composants/participant-details/participant-details.component.html",
  23. "start": { "line": "3", "column": "46" },
  24. "end": { "line": "3", "column": "70" }
  25. },
  26. {
  27. "file": "src/app/composants/participant-update/participant-update.component.html",
  28. "start": { "line": "4", "column": "46" },
  29. "end": { "line": "4", "column": "70" }
  30. }
  31. ]
  32. },
  33. "8168765646794661881": "Retour",
  34. "@8168765646794661881": {
  35. "x-locations": [
  36. {
  37. "file": "src/app/composants/account-details/account-details.component.html",
  38. "start": { "line": "5", "column": "133" },
  39. "end": { "line": "5", "column": "141" }
  40. },
  41. {
  42. "file": "src/app/composants/account-update/account-update.component.html",
  43. "start": { "line": "6", "column": "133" },
  44. "end": { "line": "6", "column": "141" }
  45. },
  46. {
  47. "file": "src/app/composants/categorie-create/categorie-create.component.html",
  48. "start": { "line": "6", "column": "143" },
  49. "end": { "line": "6", "column": "151" }
  50. },
  51. {
  52. "file": "src/app/composants/categorie-details/categorie-details.component.html",
  53. "start": { "line": "5", "column": "142" },
  54. "end": { "line": "5", "column": "150" }
  55. },
  56. {
  57. "file": "src/app/composants/categorie-update/categorie-update.component.html",
  58. "start": { "line": "6", "column": "142" },
  59. "end": { "line": "6", "column": "150" }
  60. },
  61. {
  62. "file": "src/app/composants/participant-create/participant-create.component.html",
  63. "start": { "line": "6", "column": "145" },
  64. "end": { "line": "6", "column": "153" }
  65. },
  66. {
  67. "file": "src/app/composants/participant-details/participant-details.component.html",
  68. "start": { "line": "5", "column": "144" },
  69. "end": { "line": "5", "column": "152" }
  70. },
  71. {
  72. "file": "src/app/composants/participant-update/participant-update.component.html",
  73. "start": { "line": "6", "column": "144" },
  74. "end": { "line": "6", "column": "152" }
  75. },
  76. {
  77. "file": "src/app/composants/production-create/production-create.component.html",
  78. "start": { "line": "6", "column": "144" },
  79. "end": { "line": "6", "column": "152" }
  80. },
  81. {
  82. "file": "src/app/composants/production-details/production-details.component.html",
  83. "start": { "line": "5", "column": "143" },
  84. "end": { "line": "5", "column": "151" }
  85. },
  86. {
  87. "file": "src/app/composants/production-update/production-update.component.html",
  88. "start": { "line": "6", "column": "144" },
  89. "end": { "line": "6", "column": "152" }
  90. },
  91. {
  92. "file": "src/app/composants/production-upload/production-upload.component.html",
  93. "start": { "line": "6", "column": "144" },
  94. "end": { "line": "6", "column": "152" }
  95. },
  96. {
  97. "file": "src/app/composants/variable-create/variable-create.component.html",
  98. "start": { "line": "6", "column": "142" },
  99. "end": { "line": "6", "column": "150" }
  100. },
  101. {
  102. "file": "src/app/composants/variable-details/variable-details.component.html",
  103. "start": { "line": "5", "column": "157" },
  104. "end": { "line": "5", "column": "165" }
  105. },
  106. {
  107. "file": "src/app/composants/variable-update/variable-update.component.html",
  108. "start": { "line": "6", "column": "156" },
  109. "end": { "line": "6", "column": "164" }
  110. }
  111. ]
  112. },
  113. "5976453380036450181": "Créé le",
  114. "@5976453380036450181": {
  115. "x-locations": [
  116. {
  117. "file": "src/app/composants/account-details/account-details.component.html",
  118. "start": { "line": "10", "column": "91" },
  119. "end": { "line": "10", "column": "100" }
  120. },
  121. {
  122. "file": "src/app/composants/account-update/account-update.component.html",
  123. "start": { "line": "11", "column": "91" },
  124. "end": { "line": "11", "column": "100" }
  125. },
  126. {
  127. "file": "src/app/composants/categorie-details/categorie-details.component.html",
  128. "start": { "line": "11", "column": "91" },
  129. "end": { "line": "11", "column": "100" }
  130. },
  131. {
  132. "file": "src/app/composants/categorie-update/categorie-update.component.html",
  133. "start": { "line": "11", "column": "91" },
  134. "end": { "line": "11", "column": "100" }
  135. },
  136. {
  137. "file": "src/app/composants/participant-details/participant-details.component.html",
  138. "start": { "line": "10", "column": "91" },
  139. "end": { "line": "10", "column": "100" }
  140. },
  141. {
  142. "file": "src/app/composants/participant-update/participant-update.component.html",
  143. "start": { "line": "11", "column": "91" },
  144. "end": { "line": "11", "column": "100" }
  145. },
  146. {
  147. "file": "src/app/composants/production-details/production-details.component.html",
  148. "start": { "line": "10", "column": "91" },
  149. "end": { "line": "10", "column": "100" }
  150. },
  151. {
  152. "file": "src/app/composants/production-update/production-update.component.html",
  153. "start": { "line": "11", "column": "92" },
  154. "end": { "line": "11", "column": "101" }
  155. },
  156. {
  157. "file": "src/app/composants/variable-details/variable-details.component.html",
  158. "start": { "line": "10", "column": "94" },
  159. "end": { "line": "10", "column": "103" }
  160. },
  161. {
  162. "file": "src/app/composants/variable-update/variable-update.component.html",
  163. "start": { "line": "11", "column": "92" },
  164. "end": { "line": "11", "column": "101" }
  165. }
  166. ]
  167. },
  168. "8690005162837882910": "Modifié le",
  169. "@8690005162837882910": {
  170. "x-locations": [
  171. {
  172. "file": "src/app/composants/account-details/account-details.component.html",
  173. "start": { "line": "17", "column": "91" },
  174. "end": { "line": "17", "column": "103" }
  175. },
  176. {
  177. "file": "src/app/composants/account-update/account-update.component.html",
  178. "start": { "line": "18", "column": "91" },
  179. "end": { "line": "18", "column": "103" }
  180. },
  181. {
  182. "file": "src/app/composants/categorie-details/categorie-details.component.html",
  183. "start": { "line": "18", "column": "91" },
  184. "end": { "line": "18", "column": "103" }
  185. },
  186. {
  187. "file": "src/app/composants/categorie-update/categorie-update.component.html",
  188. "start": { "line": "18", "column": "91" },
  189. "end": { "line": "18", "column": "103" }
  190. },
  191. {
  192. "file": "src/app/composants/participant-details/participant-details.component.html",
  193. "start": { "line": "17", "column": "91" },
  194. "end": { "line": "17", "column": "103" }
  195. },
  196. {
  197. "file": "src/app/composants/participant-update/participant-update.component.html",
  198. "start": { "line": "18", "column": "91" },
  199. "end": { "line": "18", "column": "103" }
  200. },
  201. {
  202. "file": "src/app/composants/production-details/production-details.component.html",
  203. "start": { "line": "17", "column": "91" },
  204. "end": { "line": "17", "column": "103" }
  205. },
  206. {
  207. "file": "src/app/composants/production-update/production-update.component.html",
  208. "start": { "line": "18", "column": "92" },
  209. "end": { "line": "18", "column": "104" }
  210. },
  211. {
  212. "file": "src/app/composants/variable-details/variable-details.component.html",
  213. "start": { "line": "17", "column": "94" },
  214. "end": { "line": "17", "column": "106" }
  215. },
  216. {
  217. "file": "src/app/composants/variable-update/variable-update.component.html",
  218. "start": { "line": "18", "column": "92" },
  219. "end": { "line": "18", "column": "104" }
  220. }
  221. ]
  222. },
  223. "5363451304863092478": "Nom",
  224. "@5363451304863092478": {
  225. "x-locations": [
  226. {
  227. "file": "src/app/composants/account-details/account-details.component.html",
  228. "start": { "line": "24", "column": "91" },
  229. "end": { "line": "24", "column": "96" }
  230. },
  231. {
  232. "file": "src/app/composants/account-update/account-update.component.html",
  233. "start": { "line": "25", "column": "91" },
  234. "end": { "line": "25", "column": "96" }
  235. },
  236. {
  237. "file": "src/app/composants/participant-create/participant-create.component.html",
  238. "start": { "line": "11", "column": "92" },
  239. "end": { "line": "11", "column": "97" }
  240. },
  241. {
  242. "file": "src/app/composants/participant-details/participant-details.component.html",
  243. "start": { "line": "24", "column": "91" },
  244. "end": { "line": "24", "column": "96" }
  245. },
  246. {
  247. "file": "src/app/composants/participant-list/participant-list.component.html",
  248. "start": { "line": "53", "column": "60" },
  249. "end": { "line": "53", "column": "65" }
  250. },
  251. {
  252. "file": "src/app/composants/participant-update/participant-update.component.html",
  253. "start": { "line": "25", "column": "91" },
  254. "end": { "line": "25", "column": "96" }
  255. }
  256. ]
  257. },
  258. "8203024106711668685": "Prénom",
  259. "@8203024106711668685": {
  260. "x-locations": [
  261. {
  262. "file": "src/app/composants/account-details/account-details.component.html",
  263. "start": { "line": "31", "column": "91" },
  264. "end": { "line": "31", "column": "99" }
  265. },
  266. {
  267. "file": "src/app/composants/account-update/account-update.component.html",
  268. "start": { "line": "32", "column": "91" },
  269. "end": { "line": "32", "column": "99" }
  270. },
  271. {
  272. "file": "src/app/composants/participant-create/participant-create.component.html",
  273. "start": { "line": "18", "column": "92" },
  274. "end": { "line": "18", "column": "100" }
  275. },
  276. {
  277. "file": "src/app/composants/participant-details/participant-details.component.html",
  278. "start": { "line": "31", "column": "91" },
  279. "end": { "line": "31", "column": "99" }
  280. },
  281. {
  282. "file": "src/app/composants/participant-update/participant-update.component.html",
  283. "start": { "line": "32", "column": "91" },
  284. "end": { "line": "32", "column": "99" }
  285. }
  286. ]
  287. },
  288. "1710348196830286554": "Pseudonyme",
  289. "@1710348196830286554": {
  290. "x-locations": [
  291. {
  292. "file": "src/app/composants/account-details/account-details.component.html",
  293. "start": { "line": "38", "column": "91" },
  294. "end": { "line": "38", "column": "103" }
  295. },
  296. {
  297. "file": "src/app/composants/account-update/account-update.component.html",
  298. "start": { "line": "39", "column": "91" },
  299. "end": { "line": "39", "column": "103" }
  300. },
  301. {
  302. "file": "src/app/composants/login/login.component.html",
  303. "start": { "line": "16", "column": "92" },
  304. "end": { "line": "16", "column": "104" }
  305. },
  306. {
  307. "file": "src/app/composants/participant-create/participant-create.component.html",
  308. "start": { "line": "25", "column": "92" },
  309. "end": { "line": "25", "column": "104" }
  310. },
  311. {
  312. "file": "src/app/composants/participant-details/participant-details.component.html",
  313. "start": { "line": "38", "column": "91" },
  314. "end": { "line": "38", "column": "103" }
  315. },
  316. {
  317. "file": "src/app/composants/participant-list/participant-list.component.html",
  318. "start": { "line": "54", "column": "60" },
  319. "end": { "line": "54", "column": "72" }
  320. },
  321. {
  322. "file": "src/app/composants/participant-update/participant-update.component.html",
  323. "start": { "line": "39", "column": "91" },
  324. "end": { "line": "39", "column": "103" }
  325. }
  326. ]
  327. },
  328. "5712320245580483957": "Groupe",
  329. "@5712320245580483957": {
  330. "x-locations": [
  331. {
  332. "file": "src/app/composants/account-details/account-details.component.html",
  333. "start": { "line": "45", "column": "91" },
  334. "end": { "line": "45", "column": "99" }
  335. },
  336. {
  337. "file": "src/app/composants/account-update/account-update.component.html",
  338. "start": { "line": "46", "column": "91" },
  339. "end": { "line": "46", "column": "99" }
  340. }
  341. ]
  342. },
  343. "5249891717669571568": "Mot de passe",
  344. "@5249891717669571568": {
  345. "x-locations": [
  346. {
  347. "file": "src/app/composants/account-details/account-details.component.html",
  348. "start": { "line": "52", "column": "91" },
  349. "end": { "line": "52", "column": "105" }
  350. },
  351. {
  352. "file": "src/app/composants/account-update/account-update.component.html",
  353. "start": { "line": "53", "column": "91" },
  354. "end": { "line": "53", "column": "105" }
  355. },
  356. {
  357. "file": "src/app/composants/login/login.component.html",
  358. "start": { "line": "23", "column": "92" },
  359. "end": { "line": "23", "column": "106" }
  360. },
  361. {
  362. "file": "src/app/composants/participant-create/participant-create.component.html",
  363. "start": { "line": "39", "column": "92" },
  364. "end": { "line": "39", "column": "106" }
  365. },
  366. {
  367. "file": "src/app/composants/participant-details/participant-details.component.html",
  368. "start": { "line": "52", "column": "91" },
  369. "end": { "line": "52", "column": "105" }
  370. },
  371. {
  372. "file": "src/app/composants/participant-update/participant-update.component.html",
  373. "start": { "line": "53", "column": "91" },
  374. "end": { "line": "53", "column": "105" }
  375. }
  376. ]
  377. },
  378. "8166761559287030447": "Délai avant déconnexion",
  379. "@8166761559287030447": {
  380. "x-locations": [
  381. {
  382. "file": "src/app/composants/account-details/account-details.component.html",
  383. "start": { "line": "59", "column": "91" },
  384. "end": { "line": "59", "column": "116" }
  385. },
  386. {
  387. "file": "src/app/composants/participant-create/participant-create.component.html",
  388. "start": { "line": "46", "column": "92" },
  389. "end": { "line": "46", "column": "117" }
  390. },
  391. {
  392. "file": "src/app/composants/participant-details/participant-details.component.html",
  393. "start": { "line": "59", "column": "91" },
  394. "end": { "line": "59", "column": "116" }
  395. },
  396. {
  397. "file": "src/app/composants/participant-update/participant-update.component.html",
  398. "start": { "line": "60", "column": "91" },
  399. "end": { "line": "60", "column": "116" }
  400. }
  401. ]
  402. },
  403. "1815195286714301387": "Adresse",
  404. "@1815195286714301387": {
  405. "x-locations": [
  406. {
  407. "file": "src/app/composants/account-details/account-details.component.html",
  408. "start": { "line": "66", "column": "91" },
  409. "end": { "line": "66", "column": "100" }
  410. },
  411. {
  412. "file": "src/app/composants/account-update/account-update.component.html",
  413. "start": { "line": "60", "column": "91" },
  414. "end": { "line": "60", "column": "100" }
  415. },
  416. {
  417. "file": "src/app/composants/participant-create/participant-create.component.html",
  418. "start": { "line": "53", "column": "92" },
  419. "end": { "line": "53", "column": "101" }
  420. },
  421. {
  422. "file": "src/app/composants/participant-details/participant-details.component.html",
  423. "start": { "line": "66", "column": "91" },
  424. "end": { "line": "66", "column": "100" }
  425. },
  426. {
  427. "file": "src/app/composants/participant-update/participant-update.component.html",
  428. "start": { "line": "67", "column": "91" },
  429. "end": { "line": "67", "column": "100" }
  430. }
  431. ]
  432. },
  433. "4716513778549226272": "Code postal",
  434. "@4716513778549226272": {
  435. "x-locations": [
  436. {
  437. "file": "src/app/composants/account-details/account-details.component.html",
  438. "start": { "line": "73", "column": "91" },
  439. "end": { "line": "73", "column": "104" }
  440. },
  441. {
  442. "file": "src/app/composants/account-update/account-update.component.html",
  443. "start": { "line": "67", "column": "91" },
  444. "end": { "line": "67", "column": "104" }
  445. },
  446. {
  447. "file": "src/app/composants/participant-create/participant-create.component.html",
  448. "start": { "line": "60", "column": "92" },
  449. "end": { "line": "60", "column": "105" }
  450. },
  451. {
  452. "file": "src/app/composants/participant-details/participant-details.component.html",
  453. "start": { "line": "73", "column": "91" },
  454. "end": { "line": "73", "column": "104" }
  455. },
  456. {
  457. "file": "src/app/composants/participant-update/participant-update.component.html",
  458. "start": { "line": "74", "column": "91" },
  459. "end": { "line": "74", "column": "104" }
  460. }
  461. ]
  462. },
  463. "5407759070423985131": "Ville",
  464. "@5407759070423985131": {
  465. "x-locations": [
  466. {
  467. "file": "src/app/composants/account-details/account-details.component.html",
  468. "start": { "line": "80", "column": "91" },
  469. "end": { "line": "80", "column": "98" }
  470. },
  471. {
  472. "file": "src/app/composants/account-update/account-update.component.html",
  473. "start": { "line": "74", "column": "91" },
  474. "end": { "line": "74", "column": "98" }
  475. },
  476. {
  477. "file": "src/app/composants/participant-create/participant-create.component.html",
  478. "start": { "line": "67", "column": "92" },
  479. "end": { "line": "67", "column": "99" }
  480. },
  481. {
  482. "file": "src/app/composants/participant-details/participant-details.component.html",
  483. "start": { "line": "80", "column": "91" },
  484. "end": { "line": "80", "column": "98" }
  485. },
  486. {
  487. "file": "src/app/composants/participant-update/participant-update.component.html",
  488. "start": { "line": "81", "column": "91" },
  489. "end": { "line": "81", "column": "98" }
  490. }
  491. ]
  492. },
  493. "7135345516243177577": "Pays",
  494. "@7135345516243177577": {
  495. "x-locations": [
  496. {
  497. "file": "src/app/composants/account-details/account-details.component.html",
  498. "start": { "line": "87", "column": "91" },
  499. "end": { "line": "87", "column": "97" }
  500. },
  501. {
  502. "file": "src/app/composants/account-update/account-update.component.html",
  503. "start": { "line": "81", "column": "91" },
  504. "end": { "line": "81", "column": "97" }
  505. },
  506. {
  507. "file": "src/app/composants/participant-create/participant-create.component.html",
  508. "start": { "line": "74", "column": "92" },
  509. "end": { "line": "74", "column": "98" }
  510. },
  511. {
  512. "file": "src/app/composants/participant-details/participant-details.component.html",
  513. "start": { "line": "87", "column": "91" },
  514. "end": { "line": "87", "column": "97" }
  515. },
  516. {
  517. "file": "src/app/composants/participant-update/participant-update.component.html",
  518. "start": { "line": "88", "column": "91" },
  519. "end": { "line": "88", "column": "97" }
  520. }
  521. ]
  522. },
  523. "7542094483332182245": "Numéro de téléphone",
  524. "@7542094483332182245": {
  525. "x-locations": [
  526. {
  527. "file": "src/app/composants/account-details/account-details.component.html",
  528. "start": { "line": "94", "column": "91" },
  529. "end": { "line": "94", "column": "112" }
  530. },
  531. {
  532. "file": "src/app/composants/account-update/account-update.component.html",
  533. "start": { "line": "88", "column": "91" },
  534. "end": { "line": "88", "column": "112" }
  535. },
  536. {
  537. "file": "src/app/composants/participant-create/participant-create.component.html",
  538. "start": { "line": "81", "column": "92" },
  539. "end": { "line": "81", "column": "113" }
  540. },
  541. {
  542. "file": "src/app/composants/participant-details/participant-details.component.html",
  543. "start": { "line": "94", "column": "91" },
  544. "end": { "line": "94", "column": "112" }
  545. },
  546. {
  547. "file": "src/app/composants/participant-update/participant-update.component.html",
  548. "start": { "line": "95", "column": "91" },
  549. "end": { "line": "95", "column": "112" }
  550. }
  551. ]
  552. },
  553. "6451366853552763375": "Adresse email",
  554. "@6451366853552763375": {
  555. "x-locations": [
  556. {
  557. "file": "src/app/composants/account-details/account-details.component.html",
  558. "start": { "line": "101", "column": "91" },
  559. "end": { "line": "101", "column": "106" }
  560. },
  561. {
  562. "file": "src/app/composants/account-update/account-update.component.html",
  563. "start": { "line": "95", "column": "91" },
  564. "end": { "line": "95", "column": "106" }
  565. },
  566. {
  567. "file": "src/app/composants/participant-create/participant-create.component.html",
  568. "start": { "line": "88", "column": "92" },
  569. "end": { "line": "88", "column": "107" }
  570. },
  571. {
  572. "file": "src/app/composants/participant-details/participant-details.component.html",
  573. "start": { "line": "101", "column": "91" },
  574. "end": { "line": "101", "column": "106" }
  575. },
  576. {
  577. "file": "src/app/composants/participant-list/participant-list.component.html",
  578. "start": { "line": "58", "column": "60" },
  579. "end": { "line": "58", "column": "75" }
  580. },
  581. {
  582. "file": "src/app/composants/participant-update/participant-update.component.html",
  583. "start": { "line": "102", "column": "91" },
  584. "end": { "line": "102", "column": "106" }
  585. }
  586. ]
  587. },
  588. "8751414212402399949": "Inscrit le",
  589. "@8751414212402399949": {
  590. "x-locations": [
  591. {
  592. "file": "src/app/composants/account-details/account-details.component.html",
  593. "start": { "line": "108", "column": "91" },
  594. "end": { "line": "108", "column": "103" }
  595. },
  596. {
  597. "file": "src/app/composants/account-update/account-update.component.html",
  598. "start": { "line": "102", "column": "91" },
  599. "end": { "line": "102", "column": "103" }
  600. },
  601. {
  602. "file": "src/app/composants/participant-details/participant-details.component.html",
  603. "start": { "line": "119", "column": "91" },
  604. "end": { "line": "119", "column": "103" }
  605. },
  606. {
  607. "file": "src/app/composants/participant-update/participant-update.component.html",
  608. "start": { "line": "120", "column": "91" },
  609. "end": { "line": "120", "column": "103" }
  610. }
  611. ]
  612. },
  613. "1102046622055756860": "Avec machine",
  614. "@1102046622055756860": {
  615. "x-locations": [
  616. {
  617. "file": "src/app/composants/account-details/account-details.component.html",
  618. "start": { "line": "118", "column": "222" },
  619. "end": { "line": "118", "column": "236" }
  620. },
  621. {
  622. "file": "src/app/composants/account-update/account-update.component.html",
  623. "start": { "line": "112", "column": "222" },
  624. "end": { "line": "112", "column": "236" }
  625. },
  626. {
  627. "file": "src/app/composants/participant-create/participant-create.component.html",
  628. "start": { "line": "110", "column": "76" },
  629. "end": { "line": "110", "column": "90" }
  630. },
  631. {
  632. "file": "src/app/composants/participant-details/participant-details.component.html",
  633. "start": { "line": "129", "column": "222" },
  634. "end": { "line": "129", "column": "236" }
  635. },
  636. {
  637. "file": "src/app/composants/participant-update/participant-update.component.html",
  638. "start": { "line": "130", "column": "213" },
  639. "end": { "line": "130", "column": "227" }
  640. }
  641. ]
  642. },
  643. "6375643576873540296": "Dort sur place",
  644. "@6375643576873540296": {
  645. "x-locations": [
  646. {
  647. "file": "src/app/composants/account-details/account-details.component.html",
  648. "start": { "line": "154", "column": "234" },
  649. "end": { "line": "154", "column": "250" }
  650. },
  651. {
  652. "file": "src/app/composants/account-update/account-update.component.html",
  653. "start": { "line": "148", "column": "234" },
  654. "end": { "line": "148", "column": "250" }
  655. },
  656. {
  657. "file": "src/app/composants/participant-create/participant-create.component.html",
  658. "start": { "line": "150", "column": "79" },
  659. "end": { "line": "150", "column": "95" }
  660. },
  661. {
  662. "file": "src/app/composants/participant-details/participant-details.component.html",
  663. "start": { "line": "165", "column": "234" },
  664. "end": { "line": "165", "column": "250" }
  665. },
  666. {
  667. "file": "src/app/composants/participant-update/participant-update.component.html",
  668. "start": { "line": "166", "column": "225" },
  669. "end": { "line": "166", "column": "241" }
  670. }
  671. ]
  672. },
  673. "4952719776065687721": "Commentaire",
  674. "@4952719776065687721": {
  675. "x-locations": [
  676. {
  677. "file": "src/app/composants/account-details/account-details.component.html",
  678. "start": { "line": "170", "column": "91" },
  679. "end": { "line": "170", "column": "104" }
  680. },
  681. {
  682. "file": "src/app/composants/account-update/account-update.component.html",
  683. "start": { "line": "164", "column": "91" },
  684. "end": { "line": "164", "column": "104" }
  685. },
  686. {
  687. "file": "src/app/composants/participant-create/participant-create.component.html",
  688. "start": { "line": "166", "column": "92" },
  689. "end": { "line": "166", "column": "105" }
  690. },
  691. {
  692. "file": "src/app/composants/participant-details/participant-details.component.html",
  693. "start": { "line": "181", "column": "91" },
  694. "end": { "line": "181", "column": "104" }
  695. },
  696. {
  697. "file": "src/app/composants/participant-update/participant-update.component.html",
  698. "start": { "line": "182", "column": "91" },
  699. "end": { "line": "182", "column": "104" }
  700. },
  701. {
  702. "file": "src/app/composants/production-create/production-create.component.html",
  703. "start": { "line": "50", "column": "92" },
  704. "end": { "line": "50", "column": "105" }
  705. },
  706. {
  707. "file": "src/app/composants/production-details/production-details.component.html",
  708. "start": { "line": "63", "column": "91" },
  709. "end": { "line": "63", "column": "104" }
  710. },
  711. {
  712. "file": "src/app/composants/production-update/production-update.component.html",
  713. "start": { "line": "64", "column": "92" },
  714. "end": { "line": "64", "column": "105" }
  715. }
  716. ]
  717. },
  718. "1158164796106814364": "Arrivé",
  719. "@1158164796106814364": {
  720. "x-locations": [
  721. {
  722. "file": "src/app/composants/account-details/account-details.component.html",
  723. "start": { "line": "180", "column": "206" },
  724. "end": { "line": "180", "column": "214" }
  725. },
  726. {
  727. "file": "src/app/composants/account-update/account-update.component.html",
  728. "start": { "line": "174", "column": "206" },
  729. "end": { "line": "174", "column": "214" }
  730. },
  731. {
  732. "file": "src/app/composants/participant-create/participant-create.component.html",
  733. "start": { "line": "195", "column": "72" },
  734. "end": { "line": "195", "column": "80" }
  735. },
  736. {
  737. "file": "src/app/composants/participant-details/participant-details.component.html",
  738. "start": { "line": "209", "column": "206" },
  739. "end": { "line": "209", "column": "214" }
  740. },
  741. {
  742. "file": "src/app/composants/participant-list/participant-list.component.html",
  743. "start": { "line": "56", "column": "60" },
  744. "end": { "line": "56", "column": "68" }
  745. },
  746. {
  747. "file": "src/app/composants/participant-update/participant-update.component.html",
  748. "start": { "line": "210", "column": "197" },
  749. "end": { "line": "210", "column": "205" }
  750. }
  751. ]
  752. },
  753. "1526012245521314857": "Editer",
  754. "@1526012245521314857": {
  755. "x-locations": [
  756. {
  757. "file": "src/app/composants/account-details/account-details.component.html",
  758. "start": { "line": "187", "column": "149" },
  759. "end": { "line": "187", "column": "157" }
  760. },
  761. {
  762. "file": "src/app/composants/categorie-details/categorie-details.component.html",
  763. "start": { "line": "90", "column": "177" },
  764. "end": { "line": "90", "column": "185" }
  765. },
  766. {
  767. "file": "src/app/composants/participant-details/participant-details.component.html",
  768. "start": { "line": "216", "column": "183" },
  769. "end": { "line": "216", "column": "191" }
  770. },
  771. {
  772. "file": "src/app/composants/production-details/production-details.component.html",
  773. "start": { "line": "100", "column": "180" },
  774. "end": { "line": "100", "column": "188" }
  775. },
  776. {
  777. "file": "src/app/composants/variable-details/variable-details.component.html",
  778. "start": { "line": "54", "column": "176" },
  779. "end": { "line": "54", "column": "184" }
  780. }
  781. ]
  782. },
  783. "1785052497460968940": "Modifier",
  784. "@1785052497460968940": {
  785. "x-locations": [
  786. {
  787. "file": "src/app/composants/account-update/account-update.component.html",
  788. "start": { "line": "181", "column": "211" },
  789. "end": { "line": "181", "column": "221" }
  790. },
  791. {
  792. "file": "src/app/composants/categorie-update/categorie-update.component.html",
  793. "start": { "line": "90", "column": "211" },
  794. "end": { "line": "90", "column": "221" }
  795. },
  796. {
  797. "file": "src/app/composants/participant-update/participant-update.component.html",
  798. "start": { "line": "217", "column": "211" },
  799. "end": { "line": "217", "column": "221" }
  800. },
  801. {
  802. "file": "src/app/composants/production-update/production-update.component.html",
  803. "start": { "line": "97", "column": "211" },
  804. "end": { "line": "97", "column": "221" }
  805. },
  806. {
  807. "file": "src/app/composants/variable-update/variable-update.component.html",
  808. "start": { "line": "55", "column": "211" },
  809. "end": { "line": "55", "column": "221" }
  810. }
  811. ]
  812. },
  813. "5110775922928231258": "Modification",
  814. "@5110775922928231258": {
  815. "x-locations": [
  816. {
  817. "file": "src/app/composants/account-update/account-update.component.html",
  818. "start": { "line": "190", "column": "72" },
  819. "end": { "line": "190", "column": "86" }
  820. }
  821. ]
  822. },
  823. "950357080467930295": "Actualiser cet enregistrement ?",
  824. "@950357080467930295": {
  825. "x-locations": [
  826. {
  827. "file": "src/app/composants/account-update/account-update.component.html",
  828. "start": { "line": "192", "column": "47" },
  829. "end": { "line": "192", "column": "80" }
  830. },
  831. {
  832. "file": "src/app/composants/categorie-update/categorie-update.component.html",
  833. "start": { "line": "102", "column": "47" },
  834. "end": { "line": "102", "column": "80" }
  835. },
  836. {
  837. "file": "src/app/composants/participant-update/participant-update.component.html",
  838. "start": { "line": "229", "column": "47" },
  839. "end": { "line": "229", "column": "80" }
  840. },
  841. {
  842. "file": "src/app/composants/production-update/production-update.component.html",
  843. "start": { "line": "109", "column": "47" },
  844. "end": { "line": "109", "column": "80" }
  845. },
  846. {
  847. "file": "src/app/composants/variable-update/variable-update.component.html",
  848. "start": { "line": "67", "column": "47" },
  849. "end": { "line": "67", "column": "80" }
  850. }
  851. ]
  852. },
  853. "1711750570766225138": "Annuler",
  854. "@1711750570766225138": {
  855. "x-locations": [
  856. {
  857. "file": "src/app/composants/account-update/account-update.component.html",
  858. "start": { "line": "194", "column": "115" },
  859. "end": { "line": "194", "column": "124" }
  860. },
  861. {
  862. "file": "src/app/composants/categorie-update/categorie-update.component.html",
  863. "start": { "line": "104", "column": "115" },
  864. "end": { "line": "104", "column": "124" }
  865. },
  866. {
  867. "file": "src/app/composants/categorie-update/categorie-update.component.html",
  868. "start": { "line": "119", "column": "115" },
  869. "end": { "line": "119", "column": "124" }
  870. },
  871. {
  872. "file": "src/app/composants/menu/menu.component.html",
  873. "start": { "line": "83", "column": "119" },
  874. "end": { "line": "83", "column": "128" }
  875. },
  876. {
  877. "file": "src/app/composants/participant-update/participant-update.component.html",
  878. "start": { "line": "231", "column": "115" },
  879. "end": { "line": "231", "column": "124" }
  880. },
  881. {
  882. "file": "src/app/composants/participant-update/participant-update.component.html",
  883. "start": { "line": "246", "column": "115" },
  884. "end": { "line": "246", "column": "124" }
  885. },
  886. {
  887. "file": "src/app/composants/production-update/production-update.component.html",
  888. "start": { "line": "111", "column": "115" },
  889. "end": { "line": "111", "column": "124" }
  890. },
  891. {
  892. "file": "src/app/composants/production-update/production-update.component.html",
  893. "start": { "line": "126", "column": "115" },
  894. "end": { "line": "126", "column": "124" }
  895. },
  896. {
  897. "file": "src/app/composants/variable-update/variable-update.component.html",
  898. "start": { "line": "69", "column": "115" },
  899. "end": { "line": "69", "column": "124" }
  900. },
  901. {
  902. "file": "src/app/composants/variable-update/variable-update.component.html",
  903. "start": { "line": "84", "column": "115" },
  904. "end": { "line": "84", "column": "124" }
  905. }
  906. ]
  907. },
  908. "4247263368529700262": "Confirmer",
  909. "@4247263368529700262": {
  910. "x-locations": [
  911. {
  912. "file": "src/app/composants/account-update/account-update.component.html",
  913. "start": { "line": "195", "column": "141" },
  914. "end": { "line": "195", "column": "152" }
  915. },
  916. {
  917. "file": "src/app/composants/categorie-update/categorie-update.component.html",
  918. "start": { "line": "105", "column": "141" },
  919. "end": { "line": "105", "column": "152" }
  920. },
  921. {
  922. "file": "src/app/composants/categorie-update/categorie-update.component.html",
  923. "start": { "line": "120", "column": "140" },
  924. "end": { "line": "120", "column": "151" }
  925. },
  926. {
  927. "file": "src/app/composants/menu/menu.component.html",
  928. "start": { "line": "84", "column": "141" },
  929. "end": { "line": "84", "column": "152" }
  930. },
  931. {
  932. "file": "src/app/composants/participant-update/participant-update.component.html",
  933. "start": { "line": "232", "column": "141" },
  934. "end": { "line": "232", "column": "152" }
  935. },
  936. {
  937. "file": "src/app/composants/participant-update/participant-update.component.html",
  938. "start": { "line": "247", "column": "140" },
  939. "end": { "line": "247", "column": "151" }
  940. },
  941. {
  942. "file": "src/app/composants/production-update/production-update.component.html",
  943. "start": { "line": "112", "column": "141" },
  944. "end": { "line": "112", "column": "152" }
  945. },
  946. {
  947. "file": "src/app/composants/production-update/production-update.component.html",
  948. "start": { "line": "127", "column": "140" },
  949. "end": { "line": "127", "column": "151" }
  950. },
  951. {
  952. "file": "src/app/composants/variable-update/variable-update.component.html",
  953. "start": { "line": "70", "column": "141" },
  954. "end": { "line": "70", "column": "152" }
  955. },
  956. {
  957. "file": "src/app/composants/variable-update/variable-update.component.html",
  958. "start": { "line": "85", "column": "140" },
  959. "end": { "line": "85", "column": "151" }
  960. }
  961. ]
  962. },
  963. "1056975647247811549": "Fiche d'une catégorie",
  964. "@1056975647247811549": {
  965. "x-locations": [
  966. {
  967. "file": "src/app/composants/categorie-create/categorie-create.component.html",
  968. "start": { "line": "4", "column": "46" },
  969. "end": { "line": "4", "column": "69" }
  970. },
  971. {
  972. "file": "src/app/composants/categorie-details/categorie-details.component.html",
  973. "start": { "line": "3", "column": "46" },
  974. "end": { "line": "3", "column": "69" }
  975. },
  976. {
  977. "file": "src/app/composants/categorie-update/categorie-update.component.html",
  978. "start": { "line": "4", "column": "46" },
  979. "end": { "line": "4", "column": "69" }
  980. }
  981. ]
  982. },
  983. "1167969454663460101": "Libellé",
  984. "@1167969454663460101": {
  985. "x-locations": [
  986. {
  987. "file": "src/app/composants/categorie-create/categorie-create.component.html",
  988. "start": { "line": "11", "column": "92" },
  989. "end": { "line": "11", "column": "101" }
  990. },
  991. {
  992. "file": "src/app/composants/categorie-details/categorie-details.component.html",
  993. "start": { "line": "25", "column": "91" },
  994. "end": { "line": "25", "column": "100" }
  995. },
  996. {
  997. "file": "src/app/composants/categorie-list/categorie-list.component.html",
  998. "start": { "line": "16", "column": "60" },
  999. "end": { "line": "16", "column": "69" }
  1000. },
  1001. {
  1002. "file": "src/app/composants/categorie-update/categorie-update.component.html",
  1003. "start": { "line": "25", "column": "91" },
  1004. "end": { "line": "25", "column": "100" }
  1005. }
  1006. ]
  1007. },
  1008. "7126705387324369355": "Numéro d'ordre",
  1009. "@7126705387324369355": {
  1010. "x-locations": [
  1011. {
  1012. "file": "src/app/composants/categorie-create/categorie-create.component.html",
  1013. "start": { "line": "18", "column": "92" },
  1014. "end": { "line": "18", "column": "108" }
  1015. },
  1016. {
  1017. "file": "src/app/composants/categorie-details/categorie-details.component.html",
  1018. "start": { "line": "32", "column": "91" },
  1019. "end": { "line": "32", "column": "107" }
  1020. },
  1021. {
  1022. "file": "src/app/composants/categorie-update/categorie-update.component.html",
  1023. "start": { "line": "32", "column": "91" },
  1024. "end": { "line": "32", "column": "107" }
  1025. }
  1026. ]
  1027. },
  1028. "9067456695925284781": "Disponible",
  1029. "@9067456695925284781": {
  1030. "x-locations": [
  1031. {
  1032. "file": "src/app/composants/categorie-create/categorie-create.component.html",
  1033. "start": { "line": "29", "column": "74" },
  1034. "end": { "line": "29", "column": "86" }
  1035. },
  1036. {
  1037. "file": "src/app/composants/categorie-details/categorie-details.component.html",
  1038. "start": { "line": "43", "column": "73" },
  1039. "end": { "line": "43", "column": "85" }
  1040. },
  1041. {
  1042. "file": "src/app/composants/categorie-list/categorie-list.component.html",
  1043. "start": { "line": "17", "column": "60" },
  1044. "end": { "line": "17", "column": "72" }
  1045. },
  1046. {
  1047. "file": "src/app/composants/categorie-update/categorie-update.component.html",
  1048. "start": { "line": "43", "column": "73" },
  1049. "end": { "line": "43", "column": "85" }
  1050. }
  1051. ]
  1052. },
  1053. "7709172455474905808": "Téléversable",
  1054. "@7709172455474905808": {
  1055. "x-locations": [
  1056. {
  1057. "file": "src/app/composants/categorie-create/categorie-create.component.html",
  1058. "start": { "line": "39", "column": "75" },
  1059. "end": { "line": "39", "column": "89" }
  1060. },
  1061. {
  1062. "file": "src/app/composants/categorie-details/categorie-details.component.html",
  1063. "start": { "line": "53", "column": "74" },
  1064. "end": { "line": "53", "column": "88" }
  1065. },
  1066. {
  1067. "file": "src/app/composants/categorie-list/categorie-list.component.html",
  1068. "start": { "line": "18", "column": "60" },
  1069. "end": { "line": "18", "column": "74" }
  1070. },
  1071. {
  1072. "file": "src/app/composants/categorie-update/categorie-update.component.html",
  1073. "start": { "line": "53", "column": "74" },
  1074. "end": { "line": "53", "column": "88" }
  1075. }
  1076. ]
  1077. },
  1078. "8451694533752444073": "Vote ouvert",
  1079. "@8451694533752444073": {
  1080. "x-locations": [
  1081. {
  1082. "file": "src/app/composants/categorie-create/categorie-create.component.html",
  1083. "start": { "line": "49", "column": "73" },
  1084. "end": { "line": "49", "column": "86" }
  1085. },
  1086. {
  1087. "file": "src/app/composants/categorie-details/categorie-details.component.html",
  1088. "start": { "line": "63", "column": "72" },
  1089. "end": { "line": "63", "column": "85" }
  1090. },
  1091. {
  1092. "file": "src/app/composants/categorie-list/categorie-list.component.html",
  1093. "start": { "line": "19", "column": "60" },
  1094. "end": { "line": "19", "column": "73" }
  1095. },
  1096. {
  1097. "file": "src/app/composants/categorie-update/categorie-update.component.html",
  1098. "start": { "line": "63", "column": "72" },
  1099. "end": { "line": "63", "column": "85" }
  1100. }
  1101. ]
  1102. },
  1103. "6152762083501726958": "Vote calculé",
  1104. "@6152762083501726958": {
  1105. "x-locations": [
  1106. {
  1107. "file": "src/app/composants/categorie-create/categorie-create.component.html",
  1108. "start": { "line": "59", "column": "73" },
  1109. "end": { "line": "59", "column": "87" }
  1110. },
  1111. {
  1112. "file": "src/app/composants/categorie-details/categorie-details.component.html",
  1113. "start": { "line": "73", "column": "72" },
  1114. "end": { "line": "73", "column": "86" }
  1115. },
  1116. {
  1117. "file": "src/app/composants/categorie-update/categorie-update.component.html",
  1118. "start": { "line": "73", "column": "72" },
  1119. "end": { "line": "73", "column": "86" }
  1120. }
  1121. ]
  1122. },
  1123. "8410333980120061505": "Vote publié",
  1124. "@8410333980120061505": {
  1125. "x-locations": [
  1126. {
  1127. "file": "src/app/composants/categorie-create/categorie-create.component.html",
  1128. "start": { "line": "69", "column": "76" },
  1129. "end": { "line": "69", "column": "89" }
  1130. },
  1131. {
  1132. "file": "src/app/composants/categorie-details/categorie-details.component.html",
  1133. "start": { "line": "83", "column": "75" },
  1134. "end": { "line": "83", "column": "88" }
  1135. },
  1136. {
  1137. "file": "src/app/composants/categorie-list/categorie-list.component.html",
  1138. "start": { "line": "21", "column": "60" },
  1139. "end": { "line": "21", "column": "73" }
  1140. },
  1141. {
  1142. "file": "src/app/composants/categorie-update/categorie-update.component.html",
  1143. "start": { "line": "83", "column": "75" },
  1144. "end": { "line": "83", "column": "88" }
  1145. }
  1146. ]
  1147. },
  1148. "9222330152375559662": "Créer",
  1149. "@9222330152375559662": {
  1150. "x-locations": [
  1151. {
  1152. "file": "src/app/composants/categorie-create/categorie-create.component.html",
  1153. "start": { "line": "76", "column": "179" },
  1154. "end": { "line": "76", "column": "186" }
  1155. },
  1156. {
  1157. "file": "src/app/composants/categorie-list/categorie-list.component.html",
  1158. "start": { "line": "8", "column": "183" },
  1159. "end": { "line": "8", "column": "190" }
  1160. },
  1161. {
  1162. "file": "src/app/composants/participant-create/participant-create.component.html",
  1163. "start": { "line": "202", "column": "179" },
  1164. "end": { "line": "202", "column": "186" }
  1165. },
  1166. {
  1167. "file": "src/app/composants/participant-list/participant-list.component.html",
  1168. "start": { "line": "8", "column": "200" },
  1169. "end": { "line": "8", "column": "207" }
  1170. },
  1171. {
  1172. "file": "src/app/composants/production-create/production-create.component.html",
  1173. "start": { "line": "92", "column": "179" },
  1174. "end": { "line": "92", "column": "186" }
  1175. },
  1176. {
  1177. "file": "src/app/composants/production-list/production-list.component.html",
  1178. "start": { "line": "8", "column": "184" },
  1179. "end": { "line": "8", "column": "191" }
  1180. },
  1181. {
  1182. "file": "src/app/composants/variable-create/variable-create.component.html",
  1183. "start": { "line": "40", "column": "179" },
  1184. "end": { "line": "40", "column": "186" }
  1185. },
  1186. {
  1187. "file": "src/app/composants/variable-list/variable-list.component.html",
  1188. "start": { "line": "8", "column": "197" },
  1189. "end": { "line": "8", "column": "204" }
  1190. }
  1191. ]
  1192. },
  1193. "2504378199361638969": "Table des catégories",
  1194. "@2504378199361638969": {
  1195. "x-locations": [
  1196. {
  1197. "file": "src/app/composants/categorie-list/categorie-list.component.html",
  1198. "start": { "line": "3", "column": "46" },
  1199. "end": { "line": "3", "column": "68" }
  1200. }
  1201. ]
  1202. },
  1203. "5925860946277274949": "Actualiser",
  1204. "@5925860946277274949": {
  1205. "x-locations": [
  1206. {
  1207. "file": "src/app/composants/categorie-list/categorie-list.component.html",
  1208. "start": { "line": "7", "column": "193" },
  1209. "end": { "line": "7", "column": "205" }
  1210. },
  1211. {
  1212. "file": "src/app/composants/participant-list/participant-list.component.html",
  1213. "start": { "line": "7", "column": "210" },
  1214. "end": { "line": "7", "column": "222" }
  1215. },
  1216. {
  1217. "file": "src/app/composants/production-list/production-list.component.html",
  1218. "start": { "line": "7", "column": "194" },
  1219. "end": { "line": "7", "column": "206" }
  1220. },
  1221. {
  1222. "file": "src/app/composants/variable-list/variable-list.component.html",
  1223. "start": { "line": "7", "column": "207" },
  1224. "end": { "line": "7", "column": "219" }
  1225. }
  1226. ]
  1227. },
  1228. "2730628440070513438": "Vote terminé",
  1229. "@2730628440070513438": {
  1230. "x-locations": [
  1231. {
  1232. "file": "src/app/composants/categorie-list/categorie-list.component.html",
  1233. "start": { "line": "20", "column": "60" },
  1234. "end": { "line": "20", "column": "74" }
  1235. }
  1236. ]
  1237. },
  1238. "3052621220241641308": "Effacer",
  1239. "@3052621220241641308": {
  1240. "x-locations": [
  1241. {
  1242. "file": "src/app/composants/categorie-update/categorie-update.component.html",
  1243. "start": { "line": "91", "column": "202" },
  1244. "end": { "line": "91", "column": "211" }
  1245. },
  1246. {
  1247. "file": "src/app/composants/participant-update/participant-update.component.html",
  1248. "start": { "line": "218", "column": "202" },
  1249. "end": { "line": "218", "column": "211" }
  1250. },
  1251. {
  1252. "file": "src/app/composants/production-update/production-update.component.html",
  1253. "start": { "line": "98", "column": "202" },
  1254. "end": { "line": "98", "column": "211" }
  1255. },
  1256. {
  1257. "file": "src/app/composants/variable-update/variable-update.component.html",
  1258. "start": { "line": "56", "column": "202" },
  1259. "end": { "line": "56", "column": "211" }
  1260. }
  1261. ]
  1262. },
  1263. "5590943340189881231": "Modification d'une catégorie",
  1264. "@5590943340189881231": {
  1265. "x-locations": [
  1266. {
  1267. "file": "src/app/composants/categorie-update/categorie-update.component.html",
  1268. "start": { "line": "100", "column": "72" },
  1269. "end": { "line": "100", "column": "102" }
  1270. }
  1271. ]
  1272. },
  1273. "2421039405005930878": "Suppression d'une catégorie",
  1274. "@2421039405005930878": {
  1275. "x-locations": [
  1276. {
  1277. "file": "src/app/composants/categorie-update/categorie-update.component.html",
  1278. "start": { "line": "115", "column": "83" },
  1279. "end": { "line": "115", "column": "112" }
  1280. }
  1281. ]
  1282. },
  1283. "4183980712617713140": "Effacer cet enregistrement ?",
  1284. "@4183980712617713140": {
  1285. "x-locations": [
  1286. {
  1287. "file": "src/app/composants/categorie-update/categorie-update.component.html",
  1288. "start": { "line": "117", "column": "47" },
  1289. "end": { "line": "117", "column": "77" }
  1290. },
  1291. {
  1292. "file": "src/app/composants/participant-update/participant-update.component.html",
  1293. "start": { "line": "244", "column": "47" },
  1294. "end": { "line": "244", "column": "77" }
  1295. },
  1296. {
  1297. "file": "src/app/composants/production-update/production-update.component.html",
  1298. "start": { "line": "124", "column": "47" },
  1299. "end": { "line": "124", "column": "77" }
  1300. },
  1301. {
  1302. "file": "src/app/composants/variable-update/variable-update.component.html",
  1303. "start": { "line": "82", "column": "47" },
  1304. "end": { "line": "82", "column": "77" }
  1305. }
  1306. ]
  1307. },
  1308. "1729406214519639874": "Bienvenue",
  1309. "@1729406214519639874": {
  1310. "x-locations": [
  1311. {
  1312. "file": "src/app/composants/home/home.component.html",
  1313. "start": { "line": "4", "column": "48" },
  1314. "end": { "line": "4", "column": "59" }
  1315. }
  1316. ]
  1317. },
  1318. "5845195747053018413": "Merci de vous {$START_LINK}connecter{$CLOSE_LINK} pour accéder à plus de fonctionnalités.",
  1319. "@5845195747053018413": {
  1320. "x-locations": [
  1321. {
  1322. "file": "src/app/composants/home/home.component.html",
  1323. "start": { "line": "13", "column": "84" },
  1324. "end": { "line": "13", "column": "173" }
  1325. }
  1326. ]
  1327. },
  1328. "8655142270609867079": "S'identifier",
  1329. "@8655142270609867079": {
  1330. "x-locations": [
  1331. {
  1332. "file": "src/app/composants/login/login.component.html",
  1333. "start": { "line": "4", "column": "47" },
  1334. "end": { "line": "4", "column": "61" }
  1335. }
  1336. ]
  1337. },
  1338. "8116179437952488503": "Merci de contacter l'administrateur si vous l'avez oublié ou ne le connaissez pas.",
  1339. "@8116179437952488503": {
  1340. "x-locations": [
  1341. {
  1342. "file": "src/app/composants/login/login.component.html",
  1343. "start": { "line": "26", "column": "63" },
  1344. "end": { "line": "26", "column": "147" }
  1345. }
  1346. ]
  1347. },
  1348. "2454050363478003966": "Login",
  1349. "@2454050363478003966": {
  1350. "x-locations": [
  1351. {
  1352. "file": "src/app/composants/login/login.component.html",
  1353. "start": { "line": "32", "column": "191" },
  1354. "end": { "line": "32", "column": "198" }
  1355. },
  1356. {
  1357. "file": "src/app/composants/menu/menu.component.html",
  1358. "start": { "line": "5", "column": "125" },
  1359. "end": { "line": "5", "column": "132" }
  1360. }
  1361. ]
  1362. },
  1363. "3476583629594890489": "Accueil",
  1364. "@3476583629594890489": {
  1365. "x-locations": [
  1366. {
  1367. "file": "src/app/composants/menu/menu.component.html",
  1368. "start": { "line": "4", "column": "125" },
  1369. "end": { "line": "4", "column": "134" }
  1370. },
  1371. {
  1372. "file": "src/app/composants/menu/menu.component.html",
  1373. "start": { "line": "15", "column": "125" },
  1374. "end": { "line": "15", "column": "134" }
  1375. },
  1376. {
  1377. "file": "src/app/composants/menu/menu.component.html",
  1378. "start": { "line": "35", "column": "125" },
  1379. "end": { "line": "35", "column": "134" }
  1380. },
  1381. {
  1382. "file": "src/app/composants/menu/menu.component.html",
  1383. "start": { "line": "55", "column": "125" },
  1384. "end": { "line": "55", "column": "134" }
  1385. }
  1386. ]
  1387. },
  1388. "6668584344316209309": "Planning",
  1389. "@6668584344316209309": {
  1390. "x-locations": [
  1391. {
  1392. "file": "src/app/composants/menu/menu.component.html",
  1393. "start": { "line": "6", "column": "130" },
  1394. "end": { "line": "6", "column": "140" }
  1395. },
  1396. {
  1397. "file": "src/app/composants/menu/menu.component.html",
  1398. "start": { "line": "18", "column": "130" },
  1399. "end": { "line": "18", "column": "140" }
  1400. },
  1401. {
  1402. "file": "src/app/composants/menu/menu.component.html",
  1403. "start": { "line": "38", "column": "130" },
  1404. "end": { "line": "38", "column": "140" }
  1405. },
  1406. {
  1407. "file": "src/app/composants/menu/menu.component.html",
  1408. "start": { "line": "58", "column": "130" },
  1409. "end": { "line": "58", "column": "140" }
  1410. }
  1411. ]
  1412. },
  1413. "3419967175702537737": "Caméras",
  1414. "@3419967175702537737": {
  1415. "x-locations": [
  1416. {
  1417. "file": "src/app/composants/menu/menu.component.html",
  1418. "start": { "line": "7", "column": "131" },
  1419. "end": { "line": "7", "column": "140" }
  1420. },
  1421. {
  1422. "file": "src/app/composants/menu/menu.component.html",
  1423. "start": { "line": "19", "column": "131" },
  1424. "end": { "line": "19", "column": "140" }
  1425. },
  1426. {
  1427. "file": "src/app/composants/menu/menu.component.html",
  1428. "start": { "line": "39", "column": "131" },
  1429. "end": { "line": "39", "column": "140" }
  1430. },
  1431. {
  1432. "file": "src/app/composants/menu/menu.component.html",
  1433. "start": { "line": "59", "column": "131" },
  1434. "end": { "line": "59", "column": "140" }
  1435. }
  1436. ]
  1437. },
  1438. "2332866508838027590": "Compte",
  1439. "@2332866508838027590": {
  1440. "x-locations": [
  1441. {
  1442. "file": "src/app/composants/menu/menu.component.html",
  1443. "start": { "line": "16", "column": "135" },
  1444. "end": { "line": "16", "column": "143" }
  1445. },
  1446. {
  1447. "file": "src/app/composants/menu/menu.component.html",
  1448. "start": { "line": "36", "column": "135" },
  1449. "end": { "line": "36", "column": "143" }
  1450. },
  1451. {
  1452. "file": "src/app/composants/menu/menu.component.html",
  1453. "start": { "line": "56", "column": "135" },
  1454. "end": { "line": "56", "column": "143" }
  1455. }
  1456. ]
  1457. },
  1458. "3797778920049399855": "Logout",
  1459. "@3797778920049399855": {
  1460. "x-locations": [
  1461. {
  1462. "file": "src/app/composants/menu/menu.component.html",
  1463. "start": { "line": "17", "column": "163" },
  1464. "end": { "line": "17", "column": "171" }
  1465. },
  1466. {
  1467. "file": "src/app/composants/menu/menu.component.html",
  1468. "start": { "line": "37", "column": "163" },
  1469. "end": { "line": "37", "column": "171" }
  1470. },
  1471. {
  1472. "file": "src/app/composants/menu/menu.component.html",
  1473. "start": { "line": "57", "column": "163" },
  1474. "end": { "line": "57", "column": "171" }
  1475. }
  1476. ]
  1477. },
  1478. "4883750697490748201": "Messagerie",
  1479. "@4883750697490748201": {
  1480. "x-locations": [
  1481. {
  1482. "file": "src/app/composants/menu/menu.component.html",
  1483. "start": { "line": "21", "column": "124" },
  1484. "end": { "line": "21", "column": "136" }
  1485. },
  1486. {
  1487. "file": "src/app/composants/menu/menu.component.html",
  1488. "start": { "line": "41", "column": "124" },
  1489. "end": { "line": "41", "column": "136" }
  1490. },
  1491. {
  1492. "file": "src/app/composants/menu/menu.component.html",
  1493. "start": { "line": "61", "column": "124" },
  1494. "end": { "line": "61", "column": "136" }
  1495. }
  1496. ]
  1497. },
  1498. "5697499845932268849": "Productions",
  1499. "@5697499845932268849": {
  1500. "x-locations": [
  1501. {
  1502. "file": "src/app/composants/menu/menu.component.html",
  1503. "start": { "line": "23", "column": "135" },
  1504. "end": { "line": "23", "column": "148" }
  1505. },
  1506. {
  1507. "file": "src/app/composants/menu/menu.component.html",
  1508. "start": { "line": "45", "column": "135" },
  1509. "end": { "line": "45", "column": "148" }
  1510. },
  1511. {
  1512. "file": "src/app/composants/menu/menu.component.html",
  1513. "start": { "line": "66", "column": "135" },
  1514. "end": { "line": "66", "column": "148" }
  1515. }
  1516. ]
  1517. },
  1518. "835836004237796752": "Voter",
  1519. "@835836004237796752": {
  1520. "x-locations": [
  1521. {
  1522. "file": "src/app/composants/menu/menu.component.html",
  1523. "start": { "line": "25", "column": "129" },
  1524. "end": { "line": "25", "column": "136" }
  1525. },
  1526. {
  1527. "file": "src/app/composants/menu/menu.component.html",
  1528. "start": { "line": "46", "column": "129" },
  1529. "end": { "line": "46", "column": "136" }
  1530. },
  1531. {
  1532. "file": "src/app/composants/menu/menu.component.html",
  1533. "start": { "line": "68", "column": "129" },
  1534. "end": { "line": "68", "column": "136" }
  1535. }
  1536. ]
  1537. },
  1538. "4873897997619847055": "Résultats",
  1539. "@4873897997619847055": {
  1540. "x-locations": [
  1541. {
  1542. "file": "src/app/composants/menu/menu.component.html",
  1543. "start": { "line": "26", "column": "131" },
  1544. "end": { "line": "26", "column": "142" }
  1545. },
  1546. {
  1547. "file": "src/app/composants/menu/menu.component.html",
  1548. "start": { "line": "47", "column": "131" },
  1549. "end": { "line": "47", "column": "142" }
  1550. },
  1551. {
  1552. "file": "src/app/composants/menu/menu.component.html",
  1553. "start": { "line": "69", "column": "131" },
  1554. "end": { "line": "69", "column": "142" }
  1555. }
  1556. ]
  1557. },
  1558. "3481736869685494304": "Participants",
  1559. "@3481736869685494304": {
  1560. "x-locations": [
  1561. {
  1562. "file": "src/app/composants/menu/menu.component.html",
  1563. "start": { "line": "43", "column": "136" },
  1564. "end": { "line": "43", "column": "150" }
  1565. },
  1566. {
  1567. "file": "src/app/composants/menu/menu.component.html",
  1568. "start": { "line": "63", "column": "136" },
  1569. "end": { "line": "63", "column": "150" }
  1570. }
  1571. ]
  1572. },
  1573. "7860595597926666929": "Catégories",
  1574. "@7860595597926666929": {
  1575. "x-locations": [
  1576. {
  1577. "file": "src/app/composants/menu/menu.component.html",
  1578. "start": { "line": "65", "column": "134" },
  1579. "end": { "line": "65", "column": "146" }
  1580. }
  1581. ]
  1582. },
  1583. "4739496835866797007": "Présentations",
  1584. "@4739496835866797007": {
  1585. "x-locations": [
  1586. {
  1587. "file": "src/app/composants/menu/menu.component.html",
  1588. "start": { "line": "67", "column": "129" },
  1589. "end": { "line": "67", "column": "144" }
  1590. }
  1591. ]
  1592. },
  1593. "1443789630753458022": "Paramétrages",
  1594. "@1443789630753458022": {
  1595. "x-locations": [
  1596. {
  1597. "file": "src/app/composants/menu/menu.component.html",
  1598. "start": { "line": "71", "column": "133" },
  1599. "end": { "line": "71", "column": "147" }
  1600. }
  1601. ]
  1602. },
  1603. "2056113439223170910": "Voulez-vous vous déconnecter ?",
  1604. "@2056113439223170910": {
  1605. "x-locations": [
  1606. {
  1607. "file": "src/app/composants/menu/menu.component.html",
  1608. "start": { "line": "81", "column": "50" },
  1609. "end": { "line": "81", "column": "82" }
  1610. }
  1611. ]
  1612. },
  1613. "7549066573921150406": "Groupe(s)",
  1614. "@7549066573921150406": {
  1615. "x-locations": [
  1616. {
  1617. "file": "src/app/composants/participant-create/participant-create.component.html",
  1618. "start": { "line": "32", "column": "92" },
  1619. "end": { "line": "32", "column": "103" }
  1620. },
  1621. {
  1622. "file": "src/app/composants/participant-details/participant-details.component.html",
  1623. "start": { "line": "45", "column": "91" },
  1624. "end": { "line": "45", "column": "102" }
  1625. },
  1626. {
  1627. "file": "src/app/composants/participant-update/participant-update.component.html",
  1628. "start": { "line": "46", "column": "91" },
  1629. "end": { "line": "46", "column": "102" }
  1630. },
  1631. {
  1632. "file": "src/app/composants/production-create/production-create.component.html",
  1633. "start": { "line": "36", "column": "92" },
  1634. "end": { "line": "36", "column": "103" }
  1635. },
  1636. {
  1637. "file": "src/app/composants/production-details/production-details.component.html",
  1638. "start": { "line": "49", "column": "91" },
  1639. "end": { "line": "49", "column": "102" }
  1640. },
  1641. {
  1642. "file": "src/app/composants/production-update/production-update.component.html",
  1643. "start": { "line": "50", "column": "92" },
  1644. "end": { "line": "50", "column": "103" }
  1645. }
  1646. ]
  1647. },
  1648. "5611592591303869712": "Status",
  1649. "@5611592591303869712": {
  1650. "x-locations": [
  1651. {
  1652. "file": "src/app/composants/participant-create/participant-create.component.html",
  1653. "start": { "line": "95", "column": "92" },
  1654. "end": { "line": "95", "column": "100" }
  1655. },
  1656. {
  1657. "file": "src/app/composants/participant-details/participant-details.component.html",
  1658. "start": { "line": "108", "column": "91" },
  1659. "end": { "line": "108", "column": "99" }
  1660. },
  1661. {
  1662. "file": "src/app/composants/participant-list/participant-list.component.html",
  1663. "start": { "line": "55", "column": "60" },
  1664. "end": { "line": "55", "column": "68" }
  1665. },
  1666. {
  1667. "file": "src/app/composants/participant-update/participant-update.component.html",
  1668. "start": { "line": "109", "column": "91" },
  1669. "end": { "line": "109", "column": "99" }
  1670. }
  1671. ]
  1672. },
  1673. "4598762061603761080": "Mode de paiement",
  1674. "@4598762061603761080": {
  1675. "x-locations": [
  1676. {
  1677. "file": "src/app/composants/participant-create/participant-create.component.html",
  1678. "start": { "line": "173", "column": "92" },
  1679. "end": { "line": "173", "column": "110" }
  1680. },
  1681. {
  1682. "file": "src/app/composants/participant-details/participant-details.component.html",
  1683. "start": { "line": "188", "column": "91" },
  1684. "end": { "line": "188", "column": "109" }
  1685. },
  1686. {
  1687. "file": "src/app/composants/participant-update/participant-update.component.html",
  1688. "start": { "line": "189", "column": "91" },
  1689. "end": { "line": "189", "column": "109" }
  1690. }
  1691. ]
  1692. },
  1693. "5192310602568960435": "Somme reçue",
  1694. "@5192310602568960435": {
  1695. "x-locations": [
  1696. {
  1697. "file": "src/app/composants/participant-create/participant-create.component.html",
  1698. "start": { "line": "184", "column": "92" },
  1699. "end": { "line": "184", "column": "105" }
  1700. },
  1701. {
  1702. "file": "src/app/composants/participant-details/participant-details.component.html",
  1703. "start": { "line": "199", "column": "91" },
  1704. "end": { "line": "199", "column": "104" }
  1705. },
  1706. {
  1707. "file": "src/app/composants/participant-update/participant-update.component.html",
  1708. "start": { "line": "200", "column": "91" },
  1709. "end": { "line": "200", "column": "104" }
  1710. }
  1711. ]
  1712. },
  1713. "4620277891493695023": "Liste des participants",
  1714. "@4620277891493695023": {
  1715. "x-locations": [
  1716. {
  1717. "file": "src/app/composants/participant-list/participant-list.component.html",
  1718. "start": { "line": "3", "column": "46" },
  1719. "end": { "line": "3", "column": "70" }
  1720. }
  1721. ]
  1722. },
  1723. "6312279753327141624": "Tri",
  1724. "@6312279753327141624": {
  1725. "x-locations": [
  1726. {
  1727. "file": "src/app/composants/participant-list/participant-list.component.html",
  1728. "start": { "line": "12", "column": "116" },
  1729. "end": { "line": "12", "column": "121" }
  1730. }
  1731. ]
  1732. },
  1733. "1005198589167566031": "par nom, prénom, pseudo",
  1734. "@1005198589167566031": {
  1735. "x-locations": [
  1736. {
  1737. "file": "src/app/composants/participant-list/participant-list.component.html",
  1738. "start": { "line": "14", "column": "44" },
  1739. "end": { "line": "14", "column": "69" }
  1740. }
  1741. ]
  1742. },
  1743. "4952631785212667246": "par ordre d'inscription",
  1744. "@4952631785212667246": {
  1745. "x-locations": [
  1746. {
  1747. "file": "src/app/composants/participant-list/participant-list.component.html",
  1748. "start": { "line": "15", "column": "44" },
  1749. "end": { "line": "15", "column": "69" }
  1750. }
  1751. ]
  1752. },
  1753. "673430564078029527": "Filtrer",
  1754. "@673430564078029527": {
  1755. "x-locations": [
  1756. {
  1757. "file": "src/app/composants/participant-list/participant-list.component.html",
  1758. "start": { "line": "21", "column": "172" },
  1759. "end": { "line": "21", "column": "181" }
  1760. }
  1761. ]
  1762. },
  1763. "6462245428999877270": "Filtrer par nom, prenom, pseudonyme ou adresse email",
  1764. "@6462245428999877270": {
  1765. "x-locations": [
  1766. {
  1767. "file": "src/app/composants/participant-list/participant-list.component.html",
  1768. "start": { "line": "22", "column": "181" },
  1769. "end": { "line": "22", "column": "235" }
  1770. }
  1771. ]
  1772. },
  1773. "8564352977822135075": "Réglement",
  1774. "@8564352977822135075": {
  1775. "x-locations": [
  1776. {
  1777. "file": "src/app/composants/participant-list/participant-list.component.html",
  1778. "start": { "line": "27", "column": "116" },
  1779. "end": { "line": "27", "column": "127" }
  1780. }
  1781. ]
  1782. },
  1783. "5896013225697893921": "En attente",
  1784. "@5896013225697893921": {
  1785. "x-locations": [
  1786. {
  1787. "file": "src/app/composants/participant-list/participant-list.component.html",
  1788. "start": { "line": "30", "column": "44" },
  1789. "end": { "line": "30", "column": "56" }
  1790. },
  1791. {
  1792. "file": "src/app/interfaces/participant.ts",
  1793. "start": { "line": "4", "column": "39" },
  1794. "end": { "line": "4", "column": "51" }
  1795. }
  1796. ]
  1797. },
  1798. "1886321238220228512": "Arrivé(s)",
  1799. "@1886321238220228512": {
  1800. "x-locations": [
  1801. {
  1802. "file": "src/app/composants/participant-list/participant-list.component.html",
  1803. "start": { "line": "36", "column": "116" },
  1804. "end": { "line": "36", "column": "127" }
  1805. }
  1806. ]
  1807. },
  1808. "4709450557795328287": "Non",
  1809. "@4709450557795328287": {
  1810. "x-locations": [
  1811. {
  1812. "file": "src/app/composants/participant-list/participant-list.component.html",
  1813. "start": { "line": "39", "column": "44" },
  1814. "end": { "line": "39", "column": "49" }
  1815. }
  1816. ]
  1817. },
  1818. "7180575964287205441": "Oui",
  1819. "@7180575964287205441": {
  1820. "x-locations": [
  1821. {
  1822. "file": "src/app/composants/participant-list/participant-list.component.html",
  1823. "start": { "line": "40", "column": "44" },
  1824. "end": { "line": "40", "column": "49" }
  1825. }
  1826. ]
  1827. },
  1828. "8363252164224214061": "Retirer les filtres",
  1829. "@8363252164224214061": {
  1830. "x-locations": [
  1831. {
  1832. "file": "src/app/composants/participant-list/participant-list.component.html",
  1833. "start": { "line": "45", "column": "185" },
  1834. "end": { "line": "45", "column": "206" }
  1835. }
  1836. ]
  1837. },
  1838. "4769578347258290752": "Journées",
  1839. "@4769578347258290752": {
  1840. "x-locations": [
  1841. {
  1842. "file": "src/app/composants/participant-list/participant-list.component.html",
  1843. "start": { "line": "57", "column": "60" },
  1844. "end": { "line": "57", "column": "70" }
  1845. }
  1846. ]
  1847. },
  1848. "5848504930706993893": "Modification d'un participant",
  1849. "@5848504930706993893": {
  1850. "x-locations": [
  1851. {
  1852. "file": "src/app/composants/participant-update/participant-update.component.html",
  1853. "start": { "line": "227", "column": "72" },
  1854. "end": { "line": "227", "column": "103" }
  1855. }
  1856. ]
  1857. },
  1858. "6425286939262815261": "Suppression d'un participant",
  1859. "@6425286939262815261": {
  1860. "x-locations": [
  1861. {
  1862. "file": "src/app/composants/participant-update/participant-update.component.html",
  1863. "start": { "line": "242", "column": "83" },
  1864. "end": { "line": "242", "column": "113" }
  1865. }
  1866. ]
  1867. },
  1868. "4330330782384546942": "Fiche d'une production",
  1869. "@4330330782384546942": {
  1870. "x-locations": [
  1871. {
  1872. "file": "src/app/composants/production-create/production-create.component.html",
  1873. "start": { "line": "4", "column": "47" },
  1874. "end": { "line": "4", "column": "71" }
  1875. },
  1876. {
  1877. "file": "src/app/composants/production-details/production-details.component.html",
  1878. "start": { "line": "3", "column": "46" },
  1879. "end": { "line": "3", "column": "70" }
  1880. },
  1881. {
  1882. "file": "src/app/composants/production-update/production-update.component.html",
  1883. "start": { "line": "4", "column": "47" },
  1884. "end": { "line": "4", "column": "71" }
  1885. }
  1886. ]
  1887. },
  1888. "8650499415827640724": "Type",
  1889. "@8650499415827640724": {
  1890. "x-locations": [
  1891. {
  1892. "file": "src/app/composants/production-create/production-create.component.html",
  1893. "start": { "line": "11", "column": "92" },
  1894. "end": { "line": "11", "column": "98" }
  1895. },
  1896. {
  1897. "file": "src/app/composants/production-details/production-details.component.html",
  1898. "start": { "line": "24", "column": "91" },
  1899. "end": { "line": "24", "column": "97" }
  1900. },
  1901. {
  1902. "file": "src/app/composants/production-update/production-update.component.html",
  1903. "start": { "line": "25", "column": "92" },
  1904. "end": { "line": "25", "column": "98" }
  1905. },
  1906. {
  1907. "file": "src/app/composants/variable-create/variable-create.component.html",
  1908. "start": { "line": "11", "column": "92" },
  1909. "end": { "line": "11", "column": "98" }
  1910. },
  1911. {
  1912. "file": "src/app/composants/variable-details/variable-details.component.html",
  1913. "start": { "line": "24", "column": "94" },
  1914. "end": { "line": "24", "column": "100" }
  1915. },
  1916. {
  1917. "file": "src/app/composants/variable-list/variable-list.component.html",
  1918. "start": { "line": "27", "column": "60" },
  1919. "end": { "line": "27", "column": "66" }
  1920. },
  1921. {
  1922. "file": "src/app/composants/variable-update/variable-update.component.html",
  1923. "start": { "line": "25", "column": "92" },
  1924. "end": { "line": "25", "column": "98" }
  1925. }
  1926. ]
  1927. },
  1928. "6518032478600962138": "Titre",
  1929. "@6518032478600962138": {
  1930. "x-locations": [
  1931. {
  1932. "file": "src/app/composants/production-create/production-create.component.html",
  1933. "start": { "line": "22", "column": "92" },
  1934. "end": { "line": "22", "column": "99" }
  1935. },
  1936. {
  1937. "file": "src/app/composants/production-details/production-details.component.html",
  1938. "start": { "line": "35", "column": "91" },
  1939. "end": { "line": "35", "column": "98" }
  1940. },
  1941. {
  1942. "file": "src/app/composants/production-update/production-update.component.html",
  1943. "start": { "line": "36", "column": "92" },
  1944. "end": { "line": "36", "column": "99" }
  1945. },
  1946. {
  1947. "file": "src/app/composants/production-upload/production-upload.component.html",
  1948. "start": { "line": "11", "column": "92" },
  1949. "end": { "line": "11", "column": "99" }
  1950. }
  1951. ]
  1952. },
  1953. "4184547672124399805": "Auteur(s)",
  1954. "@4184547672124399805": {
  1955. "x-locations": [
  1956. {
  1957. "file": "src/app/composants/production-create/production-create.component.html",
  1958. "start": { "line": "29", "column": "92" },
  1959. "end": { "line": "29", "column": "103" }
  1960. },
  1961. {
  1962. "file": "src/app/composants/production-details/production-details.component.html",
  1963. "start": { "line": "42", "column": "91" },
  1964. "end": { "line": "42", "column": "102" }
  1965. },
  1966. {
  1967. "file": "src/app/composants/production-update/production-update.component.html",
  1968. "start": { "line": "43", "column": "92" },
  1969. "end": { "line": "43", "column": "103" }
  1970. }
  1971. ]
  1972. },
  1973. "1961861928422837439": "Plateforme",
  1974. "@1961861928422837439": {
  1975. "x-locations": [
  1976. {
  1977. "file": "src/app/composants/production-create/production-create.component.html",
  1978. "start": { "line": "43", "column": "92" },
  1979. "end": { "line": "43", "column": "104" }
  1980. },
  1981. {
  1982. "file": "src/app/composants/production-details/production-details.component.html",
  1983. "start": { "line": "56", "column": "91" },
  1984. "end": { "line": "56", "column": "103" }
  1985. },
  1986. {
  1987. "file": "src/app/composants/production-update/production-update.component.html",
  1988. "start": { "line": "57", "column": "92" },
  1989. "end": { "line": "57", "column": "104" }
  1990. }
  1991. ]
  1992. },
  1993. "1084303486709778995": "Informations privées",
  1994. "@1084303486709778995": {
  1995. "x-locations": [
  1996. {
  1997. "file": "src/app/composants/production-create/production-create.component.html",
  1998. "start": { "line": "57", "column": "92" },
  1999. "end": { "line": "57", "column": "114" }
  2000. },
  2001. {
  2002. "file": "src/app/composants/production-details/production-details.component.html",
  2003. "start": { "line": "70", "column": "91" },
  2004. "end": { "line": "70", "column": "113" }
  2005. },
  2006. {
  2007. "file": "src/app/composants/production-update/production-update.component.html",
  2008. "start": { "line": "71", "column": "92" },
  2009. "end": { "line": "71", "column": "114" }
  2010. }
  2011. ]
  2012. },
  2013. "1161984780845954496": "Gestionnaire",
  2014. "@1161984780845954496": {
  2015. "x-locations": [
  2016. {
  2017. "file": "src/app/composants/production-create/production-create.component.html",
  2018. "start": { "line": "64", "column": "92" },
  2019. "end": { "line": "64", "column": "106" }
  2020. },
  2021. {
  2022. "file": "src/app/composants/production-details/production-details.component.html",
  2023. "start": { "line": "77", "column": "91" },
  2024. "end": { "line": "77", "column": "105" }
  2025. },
  2026. {
  2027. "file": "src/app/composants/production-update/production-update.component.html",
  2028. "start": { "line": "78", "column": "92" },
  2029. "end": { "line": "78", "column": "106" }
  2030. }
  2031. ]
  2032. },
  2033. "1055686627716339120": "Archive",
  2034. "@1055686627716339120": {
  2035. "x-locations": [
  2036. {
  2037. "file": "src/app/composants/production-create/production-create.component.html",
  2038. "start": { "line": "77", "column": "92" },
  2039. "end": { "line": "77", "column": "101" }
  2040. },
  2041. {
  2042. "file": "src/app/composants/production-details/production-details.component.html",
  2043. "start": { "line": "84", "column": "91" },
  2044. "end": { "line": "84", "column": "100" }
  2045. },
  2046. {
  2047. "file": "src/app/composants/production-upload/production-upload.component.html",
  2048. "start": { "line": "18", "column": "92" },
  2049. "end": { "line": "18", "column": "101" }
  2050. }
  2051. ]
  2052. },
  2053. "2724936237785756734": "Vignette",
  2054. "@2724936237785756734": {
  2055. "x-locations": [
  2056. {
  2057. "file": "src/app/composants/production-create/production-create.component.html",
  2058. "start": { "line": "84", "column": "92" },
  2059. "end": { "line": "84", "column": "102" }
  2060. },
  2061. {
  2062. "file": "src/app/composants/production-details/production-details.component.html",
  2063. "start": { "line": "92", "column": "91" },
  2064. "end": { "line": "92", "column": "101" }
  2065. },
  2066. {
  2067. "file": "src/app/composants/production-update/production-update.component.html",
  2068. "start": { "line": "89", "column": "92" },
  2069. "end": { "line": "89", "column": "102" }
  2070. }
  2071. ]
  2072. },
  2073. "8195208457775959680": "Téléverser",
  2074. "@8195208457775959680": {
  2075. "x-locations": [
  2076. {
  2077. "file": "src/app/composants/production-details/production-details.component.html",
  2078. "start": { "line": "86", "column": "197" },
  2079. "end": { "line": "86", "column": "209" }
  2080. },
  2081. {
  2082. "file": "src/app/composants/production-upload/production-upload.component.html",
  2083. "start": { "line": "26", "column": "179" },
  2084. "end": { "line": "26", "column": "191" }
  2085. }
  2086. ]
  2087. },
  2088. "58329231923784121": "déjà enregistré :",
  2089. "@58329231923784121": {
  2090. "x-locations": [
  2091. {
  2092. "file": "src/app/composants/production-details/production-details.component.html",
  2093. "start": { "line": "87", "column": "62" },
  2094. "end": { "line": "87", "column": "81" }
  2095. }
  2096. ]
  2097. },
  2098. "8045815724051021670": "Liste des productions",
  2099. "@8045815724051021670": {
  2100. "x-locations": [
  2101. {
  2102. "file": "src/app/composants/production-list/production-list.component.html",
  2103. "start": { "line": "3", "column": "46" },
  2104. "end": { "line": "3", "column": "69" }
  2105. }
  2106. ]
  2107. },
  2108. "4187322933889458370": "Modification d'une production",
  2109. "@4187322933889458370": {
  2110. "x-locations": [
  2111. {
  2112. "file": "src/app/composants/production-update/production-update.component.html",
  2113. "start": { "line": "107", "column": "72" },
  2114. "end": { "line": "107", "column": "103" }
  2115. }
  2116. ]
  2117. },
  2118. "6720734055763034290": "Suppression d'une production",
  2119. "@6720734055763034290": {
  2120. "x-locations": [
  2121. {
  2122. "file": "src/app/composants/production-update/production-update.component.html",
  2123. "start": { "line": "122", "column": "83" },
  2124. "end": { "line": "122", "column": "113" }
  2125. }
  2126. ]
  2127. },
  2128. "4171207248166423862": "Changement de l'archive d'une production",
  2129. "@4171207248166423862": {
  2130. "x-locations": [
  2131. {
  2132. "file": "src/app/composants/production-upload/production-upload.component.html",
  2133. "start": { "line": "4", "column": "47" },
  2134. "end": { "line": "4", "column": "89" }
  2135. }
  2136. ]
  2137. },
  2138. "4707714000062092858": "Fiche d'une variable",
  2139. "@4707714000062092858": {
  2140. "x-locations": [
  2141. {
  2142. "file": "src/app/composants/variable-create/variable-create.component.html",
  2143. "start": { "line": "4", "column": "47" },
  2144. "end": { "line": "4", "column": "69" }
  2145. },
  2146. {
  2147. "file": "src/app/composants/variable-details/variable-details.component.html",
  2148. "start": { "line": "3", "column": "47" },
  2149. "end": { "line": "3", "column": "69" }
  2150. },
  2151. {
  2152. "file": "src/app/composants/variable-update/variable-update.component.html",
  2153. "start": { "line": "4", "column": "47" },
  2154. "end": { "line": "4", "column": "69" }
  2155. }
  2156. ]
  2157. },
  2158. "8186013988289067040": "Code",
  2159. "@8186013988289067040": {
  2160. "x-locations": [
  2161. {
  2162. "file": "src/app/composants/variable-create/variable-create.component.html",
  2163. "start": { "line": "18", "column": "92" },
  2164. "end": { "line": "18", "column": "98" }
  2165. },
  2166. {
  2167. "file": "src/app/composants/variable-details/variable-details.component.html",
  2168. "start": { "line": "31", "column": "94" },
  2169. "end": { "line": "31", "column": "100" }
  2170. },
  2171. {
  2172. "file": "src/app/composants/variable-list/variable-list.component.html",
  2173. "start": { "line": "28", "column": "60" },
  2174. "end": { "line": "28", "column": "66" }
  2175. },
  2176. {
  2177. "file": "src/app/composants/variable-update/variable-update.component.html",
  2178. "start": { "line": "32", "column": "92" },
  2179. "end": { "line": "32", "column": "98" }
  2180. }
  2181. ]
  2182. },
  2183. "3717603792840045364": "Valeur",
  2184. "@3717603792840045364": {
  2185. "x-locations": [
  2186. {
  2187. "file": "src/app/composants/variable-create/variable-create.component.html",
  2188. "start": { "line": "25", "column": "92" },
  2189. "end": { "line": "25", "column": "100" }
  2190. },
  2191. {
  2192. "file": "src/app/composants/variable-details/variable-details.component.html",
  2193. "start": { "line": "38", "column": "94" },
  2194. "end": { "line": "38", "column": "102" }
  2195. },
  2196. {
  2197. "file": "src/app/composants/variable-list/variable-list.component.html",
  2198. "start": { "line": "29", "column": "60" },
  2199. "end": { "line": "29", "column": "68" }
  2200. },
  2201. {
  2202. "file": "src/app/composants/variable-update/variable-update.component.html",
  2203. "start": { "line": "39", "column": "92" },
  2204. "end": { "line": "39", "column": "100" }
  2205. }
  2206. ]
  2207. },
  2208. "8104421162933956065": "Notes",
  2209. "@8104421162933956065": {
  2210. "x-locations": [
  2211. {
  2212. "file": "src/app/composants/variable-create/variable-create.component.html",
  2213. "start": { "line": "32", "column": "92" },
  2214. "end": { "line": "32", "column": "99" }
  2215. },
  2216. {
  2217. "file": "src/app/composants/variable-details/variable-details.component.html",
  2218. "start": { "line": "45", "column": "94" },
  2219. "end": { "line": "45", "column": "101" }
  2220. },
  2221. {
  2222. "file": "src/app/composants/variable-update/variable-update.component.html",
  2223. "start": { "line": "46", "column": "92" },
  2224. "end": { "line": "46", "column": "99" }
  2225. }
  2226. ]
  2227. },
  2228. "323112119150982238": "Table des variables",
  2229. "@323112119150982238": {
  2230. "x-locations": [
  2231. {
  2232. "file": "src/app/composants/variable-list/variable-list.component.html",
  2233. "start": { "line": "3", "column": "46" },
  2234. "end": { "line": "3", "column": "67" }
  2235. }
  2236. ]
  2237. },
  2238. "8444614605019049321": "Filtrer par type",
  2239. "@8444614605019049321": {
  2240. "x-locations": [
  2241. {
  2242. "file": "src/app/composants/variable-list/variable-list.component.html",
  2243. "start": { "line": "12", "column": "116" },
  2244. "end": { "line": "12", "column": "134" }
  2245. }
  2246. ]
  2247. },
  2248. "8635670126415586847": "Modification d'une variable",
  2249. "@8635670126415586847": {
  2250. "x-locations": [
  2251. {
  2252. "file": "src/app/composants/variable-update/variable-update.component.html",
  2253. "start": { "line": "65", "column": "72" },
  2254. "end": { "line": "65", "column": "101" }
  2255. }
  2256. ]
  2257. },
  2258. "1288398567325236374": "Suppression d'une variable",
  2259. "@1288398567325236374": {
  2260. "x-locations": [
  2261. {
  2262. "file": "src/app/composants/variable-update/variable-update.component.html",
  2263. "start": { "line": "80", "column": "83" },
  2264. "end": { "line": "80", "column": "111" }
  2265. }
  2266. ]
  2267. },
  2268. "2068446867150639780": "Payé chèque",
  2269. "@2068446867150639780": {
  2270. "x-locations": [
  2271. {
  2272. "file": "src/app/interfaces/participant.ts",
  2273. "start": { "line": "5", "column": "40" },
  2274. "end": { "line": "5", "column": "53" }
  2275. }
  2276. ]
  2277. },
  2278. "8790345408792320258": "Payé espèces",
  2279. "@8790345408792320258": {
  2280. "x-locations": [
  2281. {
  2282. "file": "src/app/interfaces/participant.ts",
  2283. "start": { "line": "6", "column": "41" },
  2284. "end": { "line": "6", "column": "55" }
  2285. }
  2286. ]
  2287. },
  2288. "7316661139827937280": "Virement bancaire",
  2289. "@7316661139827937280": {
  2290. "x-locations": [
  2291. {
  2292. "file": "src/app/interfaces/participant.ts",
  2293. "start": { "line": "7", "column": "46" },
  2294. "end": { "line": "7", "column": "65" }
  2295. }
  2296. ]
  2297. },
  2298. "5991780187978770703": "Virement Paypal",
  2299. "@5991780187978770703": {
  2300. "x-locations": [
  2301. {
  2302. "file": "src/app/interfaces/participant.ts",
  2303. "start": { "line": "8", "column": "44" },
  2304. "end": { "line": "8", "column": "61" }
  2305. }
  2306. ]
  2307. },
  2308. "5561979832240808969": "Orga",
  2309. "@5561979832240808969": {
  2310. "x-locations": [
  2311. {
  2312. "file": "src/app/interfaces/participant.ts",
  2313. "start": { "line": "9", "column": "33" },
  2314. "end": { "line": "9", "column": "39" }
  2315. }
  2316. ]
  2317. },
  2318. "268369328039605234": "Guest",
  2319. "@268369328039605234": {
  2320. "x-locations": [
  2321. {
  2322. "file": "src/app/interfaces/participant.ts",
  2323. "start": { "line": "10", "column": "34" },
  2324. "end": { "line": "10", "column": "41" }
  2325. }
  2326. ]
  2327. },
  2328. "549266631374246949": "Chèque",
  2329. "@549266631374246949": {
  2330. "x-locations": [
  2331. {
  2332. "file": "src/app/interfaces/participant.ts",
  2333. "start": { "line": "15", "column": "35" },
  2334. "end": { "line": "15", "column": "43" }
  2335. }
  2336. ]
  2337. },
  2338. "6615189560277928691": "Virement",
  2339. "@6615189560277928691": {
  2340. "x-locations": [
  2341. {
  2342. "file": "src/app/interfaces/participant.ts",
  2343. "start": { "line": "16", "column": "37" },
  2344. "end": { "line": "16", "column": "47" }
  2345. }
  2346. ]
  2347. },
  2348. "3515693069597622304": "Paypal",
  2349. "@3515693069597622304": {
  2350. "x-locations": [
  2351. {
  2352. "file": "src/app/interfaces/participant.ts",
  2353. "start": { "line": "17", "column": "35" },
  2354. "end": { "line": "17", "column": "43" }
  2355. }
  2356. ]
  2357. },
  2358. "251571291349102694": "Espèces",
  2359. "@251571291349102694": {
  2360. "x-locations": [
  2361. {
  2362. "file": "src/app/interfaces/participant.ts",
  2363. "start": { "line": "18", "column": "36" },
  2364. "end": { "line": "18", "column": "45" }
  2365. }
  2366. ]
  2367. },
  2368. "6751441754948847748": "Autre",
  2369. "@6751441754948847748": {
  2370. "x-locations": [
  2371. {
  2372. "file": "src/app/interfaces/participant.ts",
  2373. "start": { "line": "19", "column": "34" },
  2374. "end": { "line": "19", "column": "41" }
  2375. },
  2376. {
  2377. "file": "src/app/interfaces/production.ts",
  2378. "start": { "line": "10", "column": "34" },
  2379. "end": { "line": "10", "column": "41" }
  2380. }
  2381. ]
  2382. },
  2383. "7790959368122127003": "Exécutable",
  2384. "@7790959368122127003": {
  2385. "x-locations": [
  2386. {
  2387. "file": "src/app/interfaces/production.ts",
  2388. "start": { "line": "5", "column": "39" },
  2389. "end": { "line": "5", "column": "51" }
  2390. }
  2391. ]
  2392. },
  2393. "557807731285509805": "Graphe",
  2394. "@557807731285509805": {
  2395. "x-locations": [
  2396. {
  2397. "file": "src/app/interfaces/production.ts",
  2398. "start": { "line": "6", "column": "35" },
  2399. "end": { "line": "6", "column": "43" }
  2400. }
  2401. ]
  2402. },
  2403. "2870385527157560263": "Musique",
  2404. "@2870385527157560263": {
  2405. "x-locations": [
  2406. {
  2407. "file": "src/app/interfaces/production.ts",
  2408. "start": { "line": "7", "column": "36" },
  2409. "end": { "line": "7", "column": "45" }
  2410. }
  2411. ]
  2412. },
  2413. "790986261814390491": "Vidéo",
  2414. "@790986261814390491": {
  2415. "x-locations": [
  2416. {
  2417. "file": "src/app/interfaces/production.ts",
  2418. "start": { "line": "8", "column": "34" },
  2419. "end": { "line": "8", "column": "41" }
  2420. }
  2421. ]
  2422. },
  2423. "5885452247889934944": "Topic",
  2424. "@5885452247889934944": {
  2425. "x-locations": [
  2426. {
  2427. "file": "src/app/interfaces/production.ts",
  2428. "start": { "line": "9", "column": "34" },
  2429. "end": { "line": "9", "column": "41" }
  2430. }
  2431. ]
  2432. }
  2433. }