From d296e6a244020fbbb8a6d202b4a9b4cbb57ef459 Mon Sep 17 00:00:00 2001 From: "forgejo-actions[bot]" Date: Tue, 8 Oct 2024 15:12:32 +0000 Subject: [PATCH] join: add OpenCollective field --- generated.txt | 2 +- join.fr.mo | Bin 7352 -> 7939 bytes join/index.en.html | 5 +---- join/index.fr.html | 19 +++++++++---------- js/join.js | 7 +++---- 5 files changed, 14 insertions(+), 19 deletions(-) diff --git a/generated.txt b/generated.txt index 126f247..8331d9a 100644 --- a/generated.txt +++ b/generated.txt @@ -1 +1 @@ -Tue Oct 8 15:06:48 UTC 2024 +Tue Oct 8 15:12:32 UTC 2024 diff --git a/join.fr.mo b/join.fr.mo index f328664ad4b1a9042ac219631287cc2bbf802935..9a62eac78562267fa08b87a314e4ddfe7b5db360 100644 GIT binary patch delta 1022 zcmZvZzfTlF6vyAe$uGqprwH)}d5N(*j$q@DLKBEK8i|!ANU@BM+tIz5b$0dyLvn?Q ze}Kf;3Wnn7%vo4iV6L{ZG$Gn(LTzkJjNe`03Sg4ApM5iL-jDBmy!zsLW3yCzO;{&k z=U^XT=V5mW_+V{-w_%@QkKqq?6K#PDpaxZu=s5TVJPdB`_*>v<-1!SWz<#NRD24w7 z{0IL>FHua?pznP|C$Mp^pJ){U3d{m~kZlEAIzsdk=c7lF5L^TQfSB=mHP?eI9CJ6i=p>imCVQB`9j}>nYY(+tt|uYk>(GRbd43 zyf%SRl9UmaB2yekS_Q@@TuT$rVNe$i49kK}@=o{k$FZ~XI+8L!3$+RvS9wl25zlFi zaYAti&oEM#drL|T3)z>vK(fT@gv)H&5Xoo3`u<)C4KFn@zN1;YS>d}DD&SEfomi7JSc&(Nt0$R!_{~(Sw%46FHa6)9 zSm9~M_3ZW|smpT?>Q*~+zN--LQLfBSQ_ZoYp4;mlLn_y9wwstoE4};d7Y};({gMrr HRtEk9nSc%a delta 419 zcmXYtJxc>Y5Qg7P?#|@$>6wH`v=*!+T_9M9R+b`&*riFVVi6DoQwV}!Wk_Y?M{A*6 zV+8+#KOlm37Jh(*Bp@h0ciwRCJ~unFvpaLJcw6f}c~)PThi1?fnniWPf?dN^bc43> ze`3-rY{sP)T(hJ+yoV|H5cxy6f&T_OoL#o1U;H~qYQw>VG%0m8pO7v{sKX%fIVqjP zb*debI8I9?xSx?mun%{MA7{zOx4Hcb?!n+eZK@XGFybfVlS7AFundD{Iu^x^%epk;FWkF8=$pbV+<%`JdD&<02e(4?@eay3s$4hL-8=m?@jrD&0FW jm16K1%83DnQwK`<1G5zOJ?AA6Td4Zq*%ixg6wcf~w%Rks diff --git a/join/index.en.html b/join/index.en.html index 13625ba..482f11e 100644 --- a/join/index.en.html +++ b/join/index.en.html @@ -121,13 +121,10 @@

How did you find out about ilot? We want to better understand how people are finding us.

-

Code of Conduct:

New members must also agree to our Code of Conduct and must be over the age of consent.

diff --git a/join/index.fr.html b/join/index.fr.html index 8251ac9..627fe1e 100644 --- a/join/index.fr.html +++ b/join/index.fr.html @@ -136,17 +136,16 @@ gens nous trouvent.

- +

Open Collective:

+

Faire une contribution à travers Open +Collectivee est fortement encouragé. Nous +utilisons cette plateforme pour gêrer nos finances. Or vous devez avoir un +profile Open Collective, qui peut être créé +ici.

+

- -

Code de conduite:

+

Code de conduite:

Les nouveaux membres doivent également accepter notre Code de conduite et doivent avoir atteint l'âge du consentement.

diff --git a/js/join.js b/js/join.js index 74a9c81..c36de5a 100644 --- a/js/join.js +++ b/js/join.js @@ -53,10 +53,9 @@ var howfound = document.getElementById("how-found").value; var howfound = howfound.replace (/^/,'How I found ilot: '); var howfound = howfound.replace(/\r?\n/g, "%0A%0A"); - // add back on oc is setup - // var ocuser = document.getElementById("oc-user").value; - // var ocuser = ocuser.replace (/^/,'OpenCollective Profile: '); - // var description = name + "%0A%0A" + aboutme + "%0A%0A" + howfound + "%0A%0A" + ocuser; + var ocuser = document.getElementById("oc-user").value; + var ocuser = ocuser.replace (/^/,'OpenCollective Profile: '); + var description = name + "%0A%0A" + aboutme + "%0A%0A" + howfound + "%0A%0A" + ocuser; var description = name + "%0A%0A" + aboutme + "%0A%0A" + howfound; var url = baseurl.concat("&title=", email, "&description=", description); console.log('Description:', description);