diff --git a/README.md b/README.md index d96663b2d17cb6b9402723c5222ea05f1d858c64..7aee0175396520784d51ebaf51a656bf86f0dc24 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,11 @@ This repository is the frontend application of the CoopStarter project. +This application has been developed with the [Startin'blox](https://startinblox.com/) framework. + +Here is the entry point of [the general documentation of Startin'blox](https://git.startinblox.com/documentation/doc). +Here is a [more specific documentation of the project](https://git.startinblox.com/applications/knowledge-base/knowledgebase-front/wikis/home). + ## Requirements To be able to run and work on this project, you will need: diff --git a/cypress/integration/test.spec.js b/cypress/integration/test.spec.js index a8e321ed4f17a37ffa40e5390ba52b1be5096b2c..73b1c2231195a117c115e11014095a155932c5f4 100644 --- a/cypress/integration/test.spec.js +++ b/cypress/integration/test.spec.js @@ -21,7 +21,7 @@ context('Window', () => { // https://on.cypress.io/title cy.get('h2.title_lead').should( 'contain.text', - 'Welcome to our international index of resources for cooperative mentors and entrepreneurs', + 'Welcome to our international index of resources for cooperative contributors and searchers', ); }); }); diff --git a/src/includes/account-creation.pug b/src/includes/account-creation.pug index 583340fec96e078c39dae790714314ae87c1774c..0d783b577406e787a00ca8b07d1834e69fb1f3b6 100644 --- a/src/includes/account-creation.pug +++ b/src/includes/account-creation.pug @@ -14,14 +14,14 @@ sib-router(default-route='account-creation-index') figure.img_log img(src="../images/mentor.png" alt="Create your account as mentor") - h2.button_base=`${data.IAmMentor}` + h2.button_base=`${data.IAmContributor}` sib-link.block_log(next='entrepreneur-new-account') div figure.img_log img(src="../images/fusee.png" alt="Create your account as entrepreneur") - h2.button_base=`${data.IAmEntrepreneur}` + h2.button_base=`${data.IAmSearcher}` #mentor-new-account(hidden).no-sidebar.container include mentor/profile/create.pug diff --git a/src/includes/components/widgets.pug b/src/includes/components/widgets.pug index c409ff245926c9b751b34eca55c9252ffb8563f5..219dc85e81015d613f7f7842bb2e1e85ddd77891 100644 --- a/src/includes/components/widgets.pug +++ b/src/includes/components/widgets.pug @@ -6,6 +6,10 @@ sib-widget(name='cs-display-resource-property') template p #[b ${label}] ${value} +sib-widget(name='cs-display-resource-comment') + template + div ${await value ? `<h3 class="title_form">Improvement suggestion</h3><p class="improvement_comment">${value}</p>` : ``} + sib-widget(name='cs-display-mentor-link') template p #[b ${label}] @@ -127,7 +131,7 @@ sib-widget(name='cs-resource-format-name') sib-widget(name='cs-resource-status') template - div.button_base.button_pending ${value == 'pending' ? `Pending validation` : ( value == 'to_improve' ? `Improvement required` : ( value == 'validated' ? `Validated` : `Refused` ) ) } + div ${await value == 'pending' ? `<div class="button_base button_pending">Pending validation</div>` : (await value == 'to_improve' ? `<div class="button_base button_improvement">Improvement required</div>` : (await value == 'validated' ? `<div class="button_base button_validated">Published</div>` : `<div class="button_base button_disputed">Refused</div>` ) ) } sib-widget(name='cs-validate-action') template diff --git a/src/includes/entrepreneur/profile/create.pug b/src/includes/entrepreneur/profile/create.pug index 37614b5a667faf5e38f8ba3baccdfb83075d1b38..7e9412f90bf4450d42ab0c677bd499ce6ea10a11 100644 --- a/src/includes/entrepreneur/profile/create.pug +++ b/src/includes/entrepreneur/profile/create.pug @@ -6,7 +6,7 @@ figure.logo.img_log img(src="../images/fusee.png" alt="Create an entrepreneur account") -h2.title_create=`${data.CompleteEntrepreneurAccount}` +h2.title_create=`${data.CompleteSearcherAccount}` sib-form#entrepreneur_profile_creation.block_log.block_creat_count( partial diff --git a/src/includes/entrepreneur/resources/detail.pug b/src/includes/entrepreneur/resources/detail.pug index 2246a924acb9bc2c6de2dad7132658db92b5f34d..3efe7304ee9ac6281c504c5ca4c8e9ee347561d1 100644 --- a/src/includes/entrepreneur/resources/detail.pug +++ b/src/includes/entrepreneur/resources/detail.pug @@ -120,7 +120,7 @@ nested-field="conversations" ) - h2.title_lead_avenir=`${data.RelatedResources}` + h2.title_form.related=`${data.RelatedResources}` sib-display( bind-resources diff --git a/src/includes/mentor/dashboard.pug b/src/includes/mentor/dashboard.pug index d30d8763b357b296e431b437e3f7b0cf2f3c84c9..42a5db89cc8fff3687935e3de55795e94b50d90b 100644 --- a/src/includes/mentor/dashboard.pug +++ b/src/includes/mentor/dashboard.pug @@ -1,4 +1,4 @@ -// Mentor dashboard, containing +// Contributor dashboard, containing // 3 tabs: // - History of my validated resources // - Resources validation request @@ -38,9 +38,17 @@ section#home hidden i.fas.fa-spinner.fa-spin +<<<<<<< HEAD include resources/detail.pug h2.title_lead_avenir=`${data.RelatedResources}` +======= + include resources/comment.pug + + include resources/detail.pug + + h2.title_form.related=`${data.RelatedResources}` +>>>>>>> 44ede0e17b643c8bf5eb11f00516bfea3ae53618 sib-display( bind-resources @@ -66,7 +74,7 @@ section#home include resources/detail.pug - h2.title_lead_avenir=`${data.RelatedResources}` + h2.title_form.related=`${data.RelatedResources}` sib-display( bind-resources diff --git a/src/includes/mentor/profile/create.pug b/src/includes/mentor/profile/create.pug index 23aa86ec62d4b629052dbc49ddadd399bdad452e..14da13460e7aac652d8e7f3ea8041cd0813ab83b 100644 --- a/src/includes/mentor/profile/create.pug +++ b/src/includes/mentor/profile/create.pug @@ -6,7 +6,7 @@ figure.logo.img_log img(src="../images/mentor.png" alt="Create a mentor account") -h2.title_create= data.CompleteMentorAccount +h2.title_create= data.CompleteContributorAccount sib-form#mentor_profile_creation.block_log.block_creat_count( bind-user @@ -40,7 +40,7 @@ sib-form#mentor_profile_creation.block_log.block_creat_count( label-mentorProfile.city=`${data.City}` label-mentorProfile.country=`${data.Country}` label-mentorProfile.biography=`${data.ActivitiesMore}` - label-mentorProfile.skills=`${data.SkillForEntrepreneur}` + label-mentorProfile.skills=`${data.SkillForSearcher}` label-mentorProfile.linkedin="Linkedin" label-mentorProfile.twitter="Twitter" diff --git a/src/includes/mentor/profile/edit.pug b/src/includes/mentor/profile/edit.pug index a67627c84fe2e8ec3fc1ce721372c32cd3fb8667..7be96a993ea19e0840f8c420f565fe3983c0e6e3 100644 --- a/src/includes/mentor/profile/edit.pug +++ b/src/includes/mentor/profile/edit.pug @@ -32,7 +32,7 @@ sib-form#mentor_profile_edition.block_log.block_creat_count( label-mentorProfile.city=`${data.City}` label-mentorProfile.country=`${data.Country}` label-mentorProfile.biography=`${data.ActivitiesMore}` - label-mentorProfile.skills=`${data.SkillForEntrepreneur}` + label-mentorProfile.skills=`${data.SkillForSearcher}` label-mentorProfile.linkedin="Linkedin" label-mentorProfile.twitter="Twitter" diff --git a/src/includes/mentor/resources/comment.pug b/src/includes/mentor/resources/comment.pug new file mode 100644 index 0000000000000000000000000000000000000000..89b51cbe52d86f9a07ccf032b93a4f3a25358358 --- /dev/null +++ b/src/includes/mentor/resources/comment.pug @@ -0,0 +1,8 @@ +sib-display#comment-detail( + loader-id="detail-mentor-loader" + bind-resources + + fields='review.comment' + label-review.comment='' + widget-review.comment='cs-display-resource-comment' +) diff --git a/src/includes/mentor/validation-process.pug b/src/includes/mentor/validation-process.pug index 008fb788dcfba36b6ed4d531d3d5ff82b73e95c9..9fc2df9310f205819876810e586d14667db47518 100644 --- a/src/includes/mentor/validation-process.pug +++ b/src/includes/mentor/validation-process.pug @@ -7,7 +7,7 @@ div.block_log.block_creat_count.no_shadow figure.w_50 img( src="../images/valid_1.png" alt="") - figcaption.w_75=`${data.MentorUploadResourceToDatabase}` + figcaption.w_75=`${data.ContributorUploadResourceToDatabase}` figure.w_50 img( src="../images/valid_2.png" diff --git a/src/includes/public/resources/detail.pug b/src/includes/public/resources/detail.pug index 0caf27428ee6372948aa69ce430ac69da979fa05..b462b5f0d87e626ad6894513aaff8abad44f7dfc 100644 --- a/src/includes/public/resources/detail.pug +++ b/src/includes/public/resources/detail.pug @@ -122,7 +122,7 @@ ) - h2.title_lead_avenir=`${data.RelatedResources}` + h2.title_form.related=`${data.RelatedResources}` sib-display( bind-resources diff --git a/src/scripts/coopstarter.js b/src/scripts/coopstarter.js index b93ffe88de7794e03bee4bee4ed61a021bca7285..9421d3999775e3384226e0527fbe26c654b9cea0 100644 --- a/src/scripts/coopstarter.js +++ b/src/scripts/coopstarter.js @@ -592,16 +592,16 @@ jQuery(document).ready(function($) { //Set the share links $(".twitter-link").on("populate", function (e) { - var regexMentor = /mentor/g - var regexEntrepreneur = /entrepreneur/g - var valUrl = window.location.href.replace(regexMentor, 'public').replace(regexEntrepreneur, 'public') + var regexContributor = /mentor/g + var regexSearcher = /entrepreneur/g + var valUrl = window.location.href.replace(regexContributor, 'public').replace(regexSearcher, 'public') $('.twshare').attr("href", "https://twitter.com/intent/tweet?text=Check%20this%20resource%20from%20Coopstarter%20:%20;original_referer=http%3A%2F%2F127.0.0.1%3A3000%2Fevenements&ref_src=twsrc%5Etfw&tw_p=tweetbutton&url=" + valUrl + "&"); }); $(".email-link").on("populate", function (e) { - var regexMentor = /mentor/g - var regexEntrepreneur = /entrepreneur/g - var valUrl = window.location.href.replace(regexMentor, 'public').replace(regexEntrepreneur, 'public') + var regexContributor = /mentor/g + var regexSearcher = /entrepreneur/g + var valUrl = window.location.href.replace(regexContributor, 'public').replace(regexSearcher, 'public') $('.emshare').attr("href", "mailto:?subject=Coopstarter%20shared%20resource&body=I%20share%20you%20this%20resource%20from%20Coopstarter%20:%20" + valUrl); }); @@ -686,8 +686,8 @@ jQuery(document).ready(function($) { XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/ window.setTimeout(() => { //Manage the form to report broken link. - let detailsMentor = document.getElementById("detail-mentor"); - detailsMentor.addEventListener("populate", event => { + let detailsContributor = document.getElementById("detail-mentor"); + detailsContributor.addEventListener("populate", event => { var userWhoSubmitReport = userAccountDataSrc.dataset.src var formBrokenLink = document.getElementById("report-broken-link-mentor"); fillReportBrokenLinkForm(event, userWhoSubmitReport, formBrokenLink); @@ -753,8 +753,8 @@ jQuery(document).ready(function($) { }; //Manage the form to report broken link. - let detailsEntrepreneur = document.getElementById("detail-entrepreneur"); - detailsEntrepreneur.addEventListener("populate", event => { + let detailsSearcher = document.getElementById("detail-entrepreneur"); + detailsSearcher.addEventListener("populate", event => { var formBrokenLink = document.getElementById("report-broken-link-entrepreneur"); var userWhoSubmitReport = userAccountDataSrc.dataset.src fillReportBrokenLinkForm(event, userWhoSubmitReport, formBrokenLink); diff --git a/src/styles/index.scss b/src/styles/index.scss index ddc6347f457477faad6ef749b3507cfd359b8234..ef5677ee9710e376815257f4b03e2220729e5d16 100644 --- a/src/styles/index.scss +++ b/src/styles/index.scss @@ -1230,7 +1230,7 @@ div .tit_element_list{ margin-bottom: 4rem; } sib-set-default[name="content"]{ - width: 70%; + width: 50%; } hidden-widget{ display: none; @@ -1275,18 +1275,23 @@ div .contenu_list p, div .contenu_list label{ } sib-display-value,sib-multiple label,cs-resource-status div{ - font-weight: bold; - } + font-weight: bold; +} + sib-multiple label{ margin-right: 1rem; } -#resources_history cs-resource-status[name="review.status"]{ +#resources_history cs-resource-status[name="review.status"] { width: 100%; display: block; text-align: right; div{ display: inline-block; - font-family: "var(--typo-btn)"; + font-family: "var(--typo-btn)"; + &>div { + display: inline-block; + font-family: "var(--typo-btn)"; + } } } #resources_history .fas{ @@ -1299,6 +1304,16 @@ sib-multiple label{ color: var(--clr-roll-black); } } + +cs-display-resource-comment p.improvement_comment { + font-size: 1.4rem; + color: #3D424A; + border: 2px solid #5DC6F2; + padding: 10px; + border-radius: 4px; + margin-bottom: 20px; +} + sib-multiple label, cs-resource-status[name="review.status"]+*{ float: left; width: auto; @@ -1307,7 +1322,48 @@ sib-multiple label, cs-resource-status[name="review.status"]+*{ background: #5DC6F2; border-radius: 4px; border: none; - cursor: pointer; + cursor: initial; + &:hover{ + background: #5DC6F2; + color: #FFFFFF; + border: none; + } +} +.button_validated{ + color: #5DC6F2; + background: transparent; + border-radius: 4px; + border: 1px solid #5DC6F2; + cursor: initial; + &:hover{ + background: transparent; + color: #5DC6F2; + border: 1px solid #5DC6F2; + } +} +.button_disputed{ + background: rgb(16, 17, 17); + color: #FFFFFF; + border-radius: 4px; + border: none; + cursor: initial; + &:hover{ + background: rgb(16, 17, 17); + color: #FFFFFF; + border: none; + } +} +.button_improvement{ + background: rgb(83, 83, 85); + border-radius: 4px; + color: #FFFFFF; + border: none; + cursor: initial; + &:hover{ + background: rgb(83, 83, 85); + color: #FFFFFF; + border: none; + } } #pending_resources > div sib-display[label-validate="Check ->"]>div{ display:flex; @@ -1668,9 +1724,7 @@ div#entrepreneur-resource-detail cs-display-property[name="name"].title_form p { } sib-set-default[name="specifications"]>cs-display-resource-property, -sib-set-default[name="specifications"]>sib-multiple, -cs-display-entrepreneur-related, cs-display-mentor-related, -cs-display-mentor-database-related, cs-display-public-related { +sib-set-default[name="specifications"]>sib-multiple{ display: block; float: left; width: 33%; @@ -1692,6 +1746,35 @@ cs-display-public-related { margin-left: 1px; } +cs-display-mentor-database-related, cs-display-public-related { + display: block; + float: left; + width: 33%; + border-radius: 3px; + padding: 2rem 0; + background: var(--bg-btn-base); + margin: 5px; + cursor: pointer; + p{ + text-align: center; + margin:0; + font-size: 1.4rem; + color: var(--clr-roll-black); + sib-link { + color: #FFFFFF; + } + } +} + +#mentor-resource-detail h2.title_form.related, +#mentor-database-resource-detail h2.title_form.related, +#public-resource-detail h2.title_form.related, +#entrepreneur-resource-detail h2.title_form.related { + border-bottom: 1px solid #DBE2ED; + padding-bottom: 1rem; +} + + .sib-conversation div.conversation-form{ border: none; position: relative; diff --git a/translation/en.yml b/translation/en.yml index 01921be7d4a4f7160fbf8c7f0a45ec24411585d4..7f502cfa657467066ae16e8fd304dfa45badc43d 100644 --- a/translation/en.yml +++ b/translation/en.yml @@ -5,8 +5,8 @@ MyAccount : My account Logout : Logout BackToDashboard : -> Back to dashboard BackToMyAccount : Back to my account -welcome : Welcome to our international index of resources for cooperative mentors and entrepreneurs -generalLabel : International index of resources for cooperative mentors and entrepreneurs +welcome : Welcome to our international index of resources for cooperative contributors and searchers +generalLabel : International index of resources for cooperative contributors and searchers PostResource: Post a new Resource BrowseDatabase: Browse database ResourcesRequestingValidation: Resources requesting validation @@ -44,21 +44,21 @@ Name : Name Surname : Surname AboutYou : About you Organisation: Organisation -EditAbout : Informations will appear on your profile to inform entrepreneurs about your skills and activities. We will also use those information to address specific resources for validation. +EditAbout : Informations will appear on your profile to inform searchers about your skills and activities. We will also use those information to address specific resources for validation. Headline : Headline or current position City : City Country : Country ActivitiesMore : Tell us more about your activities -SkillForEntrepreneur : What skills can you share with our entrepreneurs ? +SkillForSearcher : What skills can you share with our searchers ? SocialMedias : Social medias SaveModification : Save modifications Search : Search ModificationsProperlySaved: Your modifications have properly been saved. -CompleteMentorAccount : Complete your mentor account -CompleteEntrepreneurAccount : Complete your entrepreneur account +CompleteContributorAccount : Complete your contributor account +CompleteSearcherAccount : Complete your searcher account CompleteYourAccount : COMPLETE YOUR ACCOUNT RequestRessource : Request a ressource -RequestRessourceInfo : You can't find a resource you are looking for ? You need resources to acquire certain skills or progress in your cooperative developement ? It can be a book, a document model, a tutorial, anything you need, make a request to our mentors so they know how to help you. +RequestRessourceInfo : You can't find a resource you are looking for ? You need resources to acquire certain skills or progress in your cooperative developement ? It can be a book, a document model, a tutorial, anything you need, make a request to our contributors so they know how to help you. TitleRequired : Title* Description : Description FieldRequired: Field* @@ -75,7 +75,7 @@ Thanks : Thanks! ConfirmSendBrokenLink : The submitter of the resource will be advised that this link is broken. YouRequestHasBeenSubmitted : Your request has been submitted WhatValidationProcess : What is a validation process ? -MentorUploadResourceToDatabase: Mentor upload a resource to the database +ContributorUploadResourceToDatabase: Contributor upload a resource to the database ResourceSentToQualifiedPeersForValidation: Resource is sent to qualified peers for validation ResourceBecomesAvailableInDatabase: Resource is validated and becomes available in the database ResourceIsNotValidated: Resource is not validated and improvement is suggested. You get a list of improvement, can edit and re-load the resource. It goes to validation process again. @@ -86,7 +86,7 @@ YesSureDelete : Yes I am sure, delete AreYouSurArchive: Are you sur you want to archive this request ? ArchivethisRequest: Archive this request ThankYouEnrichingDatabase : Thank you for enriching our database ! -ThanksMsg: Once one of your pair, a fellow mentor, validate your resource, it will be published online and we will send you a notification. +ThanksMsg: Once one of your pair, a fellow contributor, validate your resource, it will be published online and we will send you a notification. Classification : Classification FormatReq: Format* LocationWeblinkReq: Location/weblink* @@ -112,6 +112,6 @@ ThanksForReview: Thanks for your review SubmitterWillReceiveReview: The submitter of the resource will now receive a notification of your review. HeWillPatch : He will then be able to patch and send back the resource to validation ExplainReasonsRefusal: Explain reasons of refusal* -IAmMentor: I am a mentor -IAmEntrepreneur: I am an entrepreneur -RequestIntro: The resources listed bellow were requested by entrepreneurs. By posting related resources you will help the cooperative community and enrich the database. \ No newline at end of file +IAmContributor: I am a contributor +IAmSearcher: I am a searcher +RequestIntro: The resources listed bellow were requested by searchers. By posting related resources you will help the cooperative community and enrich the database. \ No newline at end of file diff --git a/translation/fr.yml b/translation/fr.yml index ea222370c6c8d6855338742d431dd6250734f000..98841e2316fa68f1a602a6112eefac345b3fd2f6 100644 --- a/translation/fr.yml +++ b/translation/fr.yml @@ -1,14 +1,14 @@ --- -Dashboard : Tableau de board -ResourcesDatabase : Base de donnée de ressource +Dashboard : Tableau de bord +ResourcesDatabase : Bibliothèque de ressources MyAccount : Mon compte Logout : Déconnexion BackToDashboard : Retour au tableau de bord BackToMyAccount : Retour à mon compte -welcome : Bienvenue dans notre répertoire international de ressources pour les mentors et les entrepreneurs coopératifs. -generalLabel : Index international de ressources pour les mentors et les entrepreneurs coopératifs +welcome : Bienvenue dans notre répertoire international de ressources pour les contributeurs et les chercheurs coopératifs. +generalLabel : Index international de ressources pour les contributeurs et les chercheurs coopératifs PostResource: Poster une nouvelle ressource -BrowseDatabase: Rechercher dans la base de donnée +BrowseDatabase: Rechercher dans la base de données ResourcesRequestingValidation: Ressources à valider RequestedResources: Ressources demandées HistoryResources : Historique de vos ressources @@ -44,21 +44,21 @@ Name : Nom Surname : Nom de famille AboutYou : A propos de vous Organisation: Organisation -EditAbout : Des informations apparaîtront sur votre profil pour informer les entrepreneurs de vos compétences et de vos activités. Nous utiliserons également ces informations pour adresser des ressources spécifiques pour la validation. +EditAbout : Des informations apparaîtront sur votre profil pour informer les chercheurs de vos compétences et de vos activités. Nous utiliserons également ces informations pour adresser des ressources spécifiques pour la validation. Headline : Titre ou position actuelle City : Ville Country : Pays de publication ActivitiesMore : Parlez-nous de vos activités -SkillForEntrepreneur : Quelles compétences pouvez-vous partager avec nos entrepreneurs ? +SkillForSearcher : Quelles compétences pouvez-vous partager avec nos chercheurs ? SocialMedias : Médias sociaux SaveModification : Enregistrer les modifications Search : Rechercher ModificationsProperlySaved: Vos modifications ont bien été enregistrées. -CompleteMentorAccount : Completer votre compte mentor -CompleteEntrepreneurAccount : Completer votre compte entrepreneur -CompleteYourAccount : Completer votre compte +CompleteContributorAccount : Compléter votre compte contributeur +CompleteSearcherAccount : Compléter votre compte chercheur +CompleteYourAccount : Compléter votre compte RequestRessource : Demander une ressource -RequestRessourceInfo : Vous ne trouvez pas la ressource que vous recherchez ? Vous avez besoin de ressources pour acquérir certaines compétences ou progresser dans votre développement coopératif ? Il peut s'agir d'un livre, d'un modèle de document, d'un tutoriel, de tout ce dont vous avez besoin, faites une demande à nos mentors pour qu'ils sachent comment vous aider. +RequestRessourceInfo : Vous ne trouvez pas la ressource que vous recherchez ? Vous avez besoin de ressources pour acquérir certaines compétences ou progresser dans votre développement coopératif ? Il peut s'agir d'un livre, d'un modèle de document, d'un tutoriel, de tout ce dont vous avez besoin, faites une demande à nos contributeurs pour qu'ils sachent comment vous aider. TitleRequired : Titre* Description : Description FieldRequired: Domaine* @@ -69,7 +69,7 @@ ComplementaryInformation : Informations complémentaires WithThisResourceBeAbleTo : Grâce à cette ressource, vous serez en mesure de WatchThePresentation : Regarder la présentation WhatValidationProcess : Qu'est-ce qu'un processus de validation ? -MentorUploadResourceToDatabase: Le mentor télécharge une ressource dans la base de données +ContributorUploadResourceToDatabase: Le contributeur télécharge une ressource dans la base de données ResourceSentToQualifiedPeersForValidation : La ressource est envoyée à des pairs qualifiés pour validation. ResourceBecomesAvailableInDatabase: La ressource est validée et devient disponible dans la base de données ResourceIsNotValidated: La ressource n'est pas validée et l'amélioration est signalée. Vous obtenez une liste des améliorations, vous pouvez modifier et recharger la ressource. Il est de nouveau soumis au processus de validation. @@ -80,7 +80,7 @@ YesSureDelete : Oui, j'en suis sûr, supprimer AreYouSurArchive: Êtes-vous sur de vouloir archiver cette demande ? ArchivethisRequest: Archiver cette demande ThankYouEnrichingDatabase : Merci d'enrichir notre base de données ! -ThanksMsg: Une fois que l'un de vos pairs, un collègue mentor, aura validé votre ressource, elle sera publiée en ligne et nous vous enverrons un avis. +ThanksMsg: Une fois que l'un de vos pairs, un collègue contributeur, aura validé votre ressource, elle sera publiée en ligne et nous vous enverrons un avis. Classification : Classification FormatReq: Format* LocationWeblinkReq: Location/weblink* @@ -106,6 +106,6 @@ ThanksForReview: Merci pour votre avis SubmitterWillReceiveReview: L'auteur de la ressource recevra maintenant un avis de votre examen. HeWillPatch : Il pourra alors corriger et renvoyer la ressource à la validation. ExplainReasonsRefusal: Expliquez les raisons du refus*. -IAmMentor: Je suis un mentor -IAmEntrepreneur: je suis un entrepreneur -RequestIntro: Les ressources listées ci-dessous ont été demandées par des entrepreneurs. En publiant des ressources connexes, vous aiderez la communauté coopérative et enrichirez la base de données. \ No newline at end of file +IAmContributor: Je suis un contributeur +IAmSearcher: je suis un chercheur +RequestIntro: Les ressources listées ci-dessous ont été demandées par des chercheurs. En publiant des ressources connexes, vous aiderez la communauté coopérative et enrichirez la base de données. \ No newline at end of file