🖋️ améliorations des contenus suite aux retours accos

pull/436/head
Johan Girod 2018-12-06 16:41:46 +01:00
parent 93225eda89
commit 95cbfbabd2
5 changed files with 35 additions and 33 deletions

View File

@ -225,7 +225,7 @@ entreprise:
statuts:
titre: Write the company's articles
exemple: Example articles for your
description: <0>The company's articles of association</0> ( "les statuts"), is an official document written in French, describing the status choice, naming the associate(s) and the contributed capital. For more than one associate, it is recommended to ask for the help of a lawyer to write them.
description: The company's articles of association ( "les statuts"), is an official document written in French, describing the status choice, naming the associate(s) and the contributed capital. <2>For more than one associate, it is recommended to ask for the help of a lawyer to write them.</2>
banque:
titre: Open a business bank account
description:
@ -241,7 +241,7 @@ entreprise:
journal:
titre: Publish a notice of creation in a newspaper
description: |
<0>A <1>a notice of incorporation of the company</1> must be published in a newspaper of legal announcements (« JAL »), for a cost of publication that depends on the size of the announcement and the rates charged by the chosen newspaper.</0><1><0>Find a newspaper of legal announcements</0></1><2>For a SARL or EURL, the notice must contain the following information:</2>
<0>A notice of incorporation of the company must be published in a newspaper of legal announcements (« JAL » in French), for a cost of publication that depends on the size of the announcement and the rates charged by the chosen newspaper.</0><1><0>Find a newspaper of legal announcements</0></1><2>The notice must contain the following information:</2>
<3>
<0>The company's name and possibly its acronym</0>
<1>The legal form</1>
@ -302,9 +302,9 @@ formeJuridique:
intro: 'The French business law defines more than 20 possible legal statuses to declare a company with various acronyms and processes : SAS, SARL, SA, EIRL... This guide will help you find quickly the right status for your needs.'
EI: Also called company in own name or company in a personal name. No capital contribution is necessary. Private wealth and corporate wealth are one.
EIRL: Allows you to protect your personal assets by allocating specific capital to your professional activity. Society and the individual are the same person. Not suitable if the sole shareholder is a legal entity (company) or if you plan to welcome other shareholders during the development of your company (choose EURL in this case).
EURL: The company has only one partner. Liability is limited to the amount of the capital contribution of the sole shareholder. Evolves into a limited liability company when new partners join the company.
EURL: The company has only one partner. Liability is limited to the amount of the capital contribution of the sole shareholder. Evolves into a SARL when new partners join the company.
SARL: Composed of at least 2 partners whose financial responsibility is limited to the amount of their contribution to the company's capital. The minimum capital is freely fixed in the articles of association.
SAS: Company with at least 2 partners. The financial liability of the shareholders is limited to the amount of their contribution to the company's capital. The minimum capital is freely set in the Articles of Association.
SAS: Company with at least 2 partners. The financial liability of the shareholders is limited to the amount of their contribution to the company's capital. The minimum capital is freely set in the Articles of Association. An SAS is characterised by a high degree of flexibility in terms of functioning (tailor-made statutes).
SASU: Composed of only one partner. The financial responsibility is limited to the amount of his contribution to the company's capital. The minimum capital is freely fixed in the Articles of Association.
SA: Composed of at least 2 shareholders. This is the only status that allows you to be listed on the stock exchange (from 7 shareholders). The minimum share capital is €37.000.
SNC: The liability of the partners for the debts of the company is unified (one partner only can be sued for the entire debt) and indefinite (responsible on the entirety of their personnal wealth).

View File

@ -44,6 +44,11 @@ const CreateCompany = ({
const isMicroenterprise = [
'micro-entreprise',
'micro-entreprise-EIRL'
].includes(companyStatus);
const multipleAssociates = [
'SARL',
'SAS',
'SA'
].includes(companyStatus)
const isEI = isMicroenterprise || ['EI', 'EIRL'].includes(companyStatus)
if (!companyStatus) {
@ -172,11 +177,12 @@ const CreateCompany = ({
explanations={
<p>
<T k="entreprise.tâches.statuts.description">
<strong>Les statuts</strong> de l'entreprise sont un document
officiel qui donne le choix de la forme juridique, nomme les
associés et leurs contributions au capital. Dans le cas il
y a plus d'un associé, il est recommandé de faire appel à un
juriste pour les rédiger.{' '}
Il s'agit d'un document officiel qui intègre la forme juridique, nomme les
associés et leurs contributions au capital.{' '}
<span style={{display: multipleAssociates ? 'visible' : 'none'}}>
Dans le cas d'une création d'entreprise avec plusieurs associés, il est recommandé
de faire appel à un juriste pour les rédiger.{' '}
</span>
</T>
{['SARL', 'EURL'].includes(companyStatus) && (
<StatutsExample companyStatus={companyStatus} />
@ -293,9 +299,8 @@ const CreateCompany = ({
explanations={
<T k="entreprise.tâches.journal.description">
<p>
Une <strong>annonce légal de création d'entreprise</strong>{' '}
doit être publié dans un journal d'annonces légales (« JAL »),
pour un coût de publication qui dépend du volume de l'annonce
Vous devez publier la création de votre entreprise dans un journal
d'annonces légales (« JAL »), pour un coût de publication qui dépend du volume de l'annonce
et des tarifs pratiqués par le journal choisi{' '}
</p>
<p>
@ -304,8 +309,7 @@ const CreateCompany = ({
</a>
</p>
<p>
Pour une SARL ou EURL, cette annonce doit contenir les
informations suivantes :{' '}
Cette annonce doit contenir les informations suivantes :{' '}
</p>
<ul>
<li>Le nom de l'entreprise et éventuellement son acronyme</li>
@ -339,8 +343,7 @@ const CreateCompany = ({
explanations={
<T k="entreprise.tâches.formulaire.description">
<p>
Vous pouvez faire votre d'inscription en ligne à tout moment,
l'enregistrer et y revenir comme vous le souhaitez.{' '}
Vous pouvez faire votre inscription en ligne à tout moment, l'enregistrer et y revenir comme vous le souhaitez.
</p>
<div style={{ textAlign: 'center' }}>
<a

View File

@ -54,7 +54,7 @@ const Liability = ({
<T k="responsabilité.1">
<strong>Entreprise individuelle : </strong>
Une activité économique exercée par une seule personne physique, en
son nom propre. Moins de paperasse, mais plus de problèmes en cas de
son nom propre. Moins de formalités, mais plus de risques en cas de
faillite, car votre patrimoine personnel peut être mis à
contribution.
</T>
@ -82,10 +82,10 @@ const Liability = ({
<li>
<T k="responsabilité.3">
<strong>Responsabilité limitée : </strong>
Structure organisationnelle dans laquelle le/les membres de la société
ne peuvent être tenus personnellement responsables des dettes ou
obligations de la société. En revanche, les démarches de création sont
un peu plus lourdes, et vous devez fournir un capital initial.
Option dans laquelle le/les membres de la société ne peuvent être
tenus personnellement responsables des dettes ou obligations de la
société. En revanche, les démarches de création sont un peu plus
lourdes, et vous devez fournir un capital initial.
</T>
</li>
</ul>

View File

@ -58,13 +58,12 @@ const Microenterprise = ({ companyIsMicroenterprise, t }: Props) => (
importantes pour mener votre activité
</li>
<li>
Vous voulez tester la viabilité de votre modèle, ou prévoyez de rester
petits
Vous voulez tester la viabilité de votre modèle (activité ou projet), ou prévoyez de rester petits (une petite activité)
</li>
<li>Vous voulez la quantité minimale de paperasse pour commencer</li>
<li>vous souhaitez un minimum de formalités (ou démarches) pour commencer</li>
</ul>
<p>
<strong>Note</strong> : Certaines activités sont exclus de ce statut (
<strong>Note</strong> : Certaines activités sont exclues de ce statut (
<a href="https://www.afecreation.fr/pid10375/pour-quelles-activites.html#principales-exclusions">
{' '}
voir la liste

View File

@ -23,8 +23,8 @@ const StatusDescription = ({ status }: Props) =>
) : status === 'EURL' ? (
<T k="formeJuridique.EURL">
L'entreprise n'a qu'un associé. La responsabilité est limitée au montant
de l'apport de capital de l'unique associé. Evolue en SARL lors de
l'arrivée de nouveaux associés dans la société.
de l'apport de capital. Evolue en SARL lors de l'arrivée de nouveaux
associés dans la société.
</T>
) : status.includes('SARL') ? (
<T k="formeJuridique.SARL">
@ -33,7 +33,7 @@ const StatusDescription = ({ status }: Props) =>
librement dans les statuts. Les associés se répartissent des parts
sociales toutes identiques, et la société est dirigée par un ou plusieurs
gérants qui sont forcément des personnes physiques. Le fonctionnement
d'une SARL n'est pas libre, il est encadré par le code du commerce.
d'une SARL est encadré par le code du commerce.
</T>
) : status === 'SAS' ? (
<T k="formeJuridique.SAS">
@ -41,15 +41,15 @@ const StatusDescription = ({ status }: Props) =>
associés est limitée au montant de leur apport au capital de la société.
Le capital minimum est fixé librement dans les statuts. Les associés se
répartissent des actions qui peuvent être de plusieurs catégories, et la
société est dirigée notamment par un président qui peut être une personne
morale (une autre société). Le fonctionnement d'une SAS est peu encadré
par la législation.
société est dirigée par un président qui peut être une personne morale
(une autre société). La SAS se caractérise par une grande souplesse de
fonctionnement (statuts sur mesure).
</T>
) : status === 'SASU' ? (
<T k="formeJuridique.SASU">
L'entreprise n'a qu'un associé. La responsabilité est limitée au montant
de l'apport de capital de l'unique associé. Le fonctionnement d'une SASU
est peu encadré par la législation.
de l'apport de capital de l'unique associé (qui peut être une personne
morale).
</T>
) : status === 'SA' ? (
<T k="formeJuridique.SA">