Skip to content
Snippets Groups Projects
Commit ae88e143 authored by Vytor Calixto's avatar Vytor Calixto :space_invader:
Browse files

Change 'Não classificado' to 'Não classificada'

parent 9ce0c87a
No related branches found
No related tags found
1 merge request!116Release v1.0.0
Pipeline #
...@@ -15,6 +15,6 @@ module.exports = function citySize(id) { ...@@ -15,6 +15,6 @@ module.exports = function citySize(id) {
case 7: case 7:
return 'mais que 500000'; return 'mais que 500000';
default: default:
return 'Não classificado'; return 'Não classificada';
} }
}; };
...@@ -23,6 +23,6 @@ module.exports = function educationLevelMod(id) { ...@@ -23,6 +23,6 @@ module.exports = function educationLevelMod(id) {
case 11: case 11:
return 'Educação Profissional'; return 'Educação Profissional';
default: default:
return 'Não classificado'; return 'Não classificada';
} }
}; };
...@@ -15,6 +15,6 @@ module.exports = function educationLevelShort(id) { ...@@ -15,6 +15,6 @@ module.exports = function educationLevelShort(id) {
case 7: case 7:
return 'EE exclusiva'; return 'EE exclusiva';
default: default:
return 'Não classificado'; return 'Não classificada';
} }
}; };
...@@ -11,6 +11,6 @@ module.exports = function idhmLevel(id) { ...@@ -11,6 +11,6 @@ module.exports = function idhmLevel(id) {
case 5: case 5:
return 'Muito Alto'; return 'Muito Alto';
default: default:
return 'Não classificado'; return 'Não classificada';
} }
}; };
...@@ -11,6 +11,6 @@ module.exports = function citySize(id) { ...@@ -11,6 +11,6 @@ module.exports = function citySize(id) {
case 5: case 5:
return '5º quintil – 20% maiores'; return '5º quintil – 20% maiores';
default: default:
return 'Não classificado'; return 'Não classificada';
} }
}; };
...@@ -49,6 +49,6 @@ module.exports = function schoolYear(id) { ...@@ -49,6 +49,6 @@ module.exports = function schoolYear(id) {
case 71: case 71:
return 'Educação Profissional'; return 'Educação Profissional';
default: default:
return 'Não classificado'; return 'Não classificada';
} }
}; };
...@@ -97,7 +97,7 @@ classApp.get('/education_level_mod', (req, res, next) => { ...@@ -97,7 +97,7 @@ classApp.get('/education_level_mod', (req, res, next) => {
classApp.get('/education_level_short', (req, res, next) => { classApp.get('/education_level_short', (req, res, next) => {
req.result = [ req.result = [
{id: null, name: 'Não Classificado'}, {id: null, name: 'Não classificada'},
{id: 1, name: 'Creche'}, {id: 1, name: 'Creche'},
{id: 2, name: 'Pré-Escola'}, {id: 2, name: 'Pré-Escola'},
{id: 3, name: 'Ensino Fundamental - anos iniciais'}, {id: 3, name: 'Ensino Fundamental - anos iniciais'},
......
...@@ -80,7 +80,7 @@ enrollmentApp.get('/education_level_mod', (req, res, next) => { ...@@ -80,7 +80,7 @@ enrollmentApp.get('/education_level_mod', (req, res, next) => {
enrollmentApp.get('/education_level_short', (req, res, next) => { enrollmentApp.get('/education_level_short', (req, res, next) => {
req.result = [ req.result = [
{id: null, name: 'Não Classificado'}, {id: null, name: 'Não classificada'},
{id: 1, name: 'Creche'}, {id: 1, name: 'Creche'},
{id: 2, name: 'Pré-Escola'}, {id: 2, name: 'Pré-Escola'},
{id: 3, name: 'Ensino Fundamental - anos iniciais'}, {id: 3, name: 'Ensino Fundamental - anos iniciais'},
......
...@@ -61,7 +61,7 @@ idhmApp.get('/years', (req, res, next) => { ...@@ -61,7 +61,7 @@ idhmApp.get('/years', (req, res, next) => {
idhmApp.get('/IDHM_level', (req, res, next) => { idhmApp.get('/IDHM_level', (req, res, next) => {
req.result = [ req.result = [
{id: null, name: 'Não Classificado'}, {id: null, name: 'Não classificada'},
{id: 1, name: 'Muito Baixa'}, {id: 1, name: 'Muito Baixa'},
{id: 2, name: 'Baixo'}, {id: 2, name: 'Baixo'},
{id: 3, name: 'Médio'}, {id: 3, name: 'Médio'},
......
...@@ -56,7 +56,7 @@ teacherApp.get('/education_level_mod', (req, res, next) => { ...@@ -56,7 +56,7 @@ teacherApp.get('/education_level_mod', (req, res, next) => {
teacherApp.get('/education_level_short', (req, res, next) => { teacherApp.get('/education_level_short', (req, res, next) => {
req.result = [ req.result = [
{id: null, name: 'Não Classificado'}, {id: null, name: 'Não classificada'},
{id: 1, name: 'Creche'}, {id: 1, name: 'Creche'},
{id: 2, name: 'Pré-Escola'}, {id: 2, name: 'Pré-Escola'},
{id: 3, name: 'Ensino Fundamental - anos iniciais'}, {id: 3, name: 'Ensino Fundamental - anos iniciais'},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment