From 89de04b26dbeed784f578381f5165d48bb987ae8 Mon Sep 17 00:00:00 2001
From: Arnaud Levy <contact@arnaudlevy.com>
Date: Thu, 10 Feb 2022 13:24:53 +0100
Subject: [PATCH] Fix #180

---
 app/models/education/program.rb | 1 +
 config/locales/education/en.yml | 5 +++--
 config/locales/education/fr.yml | 1 +
 3 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/app/models/education/program.rb b/app/models/education/program.rb
index 86067455a..097fab90a 100644
--- a/app/models/education/program.rb
+++ b/app/models/education/program.rb
@@ -94,6 +94,7 @@ class Education::Program < ApplicationRecord
   accepts_nested_attributes_for :university_person_involvements, reject_if: :all_blank, allow_destroy: true
 
   enum level: {
+    not_applicable: 0,
     primary: 40,
     secondary: 60,
     high: 80,
diff --git a/config/locales/education/en.yml b/config/locales/education/en.yml
index 40ee06498..d1f9e138e 100644
--- a/config/locales/education/en.yml
+++ b/config/locales/education/en.yml
@@ -75,10 +75,11 @@ en:
           dut: DUT
           first_year: First year
           high: High School
-          secondary: Secondary school
-          second_year: Second year
           master: Master
+          not_applicable: Not applicable
           primary: Primary school
+          secondary: Secondary school
+          second_year: Second year
   simple_form:
     hints:
       education_program:
diff --git a/config/locales/education/fr.yml b/config/locales/education/fr.yml
index 410a50af2..e8db3e7b7 100644
--- a/config/locales/education/fr.yml
+++ b/config/locales/education/fr.yml
@@ -76,6 +76,7 @@ fr:
           first_year: Bac + 1
           high: Lycée
           master: Master
+          not_applicable: Non applicable
           primary: École primaire
           secondary: Collège
           second_year: Bac + 2
-- 
GitLab