-
Notifications
You must be signed in to change notification settings - Fork 7
/
pluralize-ptbr.js
executable file
·138 lines (105 loc) · 3.48 KB
/
pluralize-ptbr.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
var regras = {
/**
* Palavras que terminam em a|e|i|o|u|ã|ãe|ão
* apenas acrescenta a letra 's' no final
* @type {Object}
*/
acrescentar: {
's' : ['a', 'e', 'i', 'o', 'u', 'ã', 'ãe'],
'es' : ['r', 'z', 'n', 'ás'],
'' : ['is', 'us', 'os']
},
/**
* Palavras que terminam em al|el|ol|ul|il|m
* substitui a terminação
* @type {Object}
*/
substituir: {
'ais' : 'al',
'eis' : 'el',
'ois' : 'ol',
'uis' : 'ul',
'is' : 'il',
'ns' : 'm',
'eses': 'ês',
'ões' : 'ão'
},
/**
* Plural das sete exceções
* @type {Object}
*/
excecoes: {
'males' : 'mal',
'cônsules' : 'cônsul',
'méis' : 'mel',
'féis' : 'fel',
'cais' : 'cal'
},
/**
* Palavras que não tem plural
* @type {Object}
*/
sem_plural: [
'não'
],
};
var plural = function(palavras) {
var palavrasPlural = palavras.split(' ');
palavrasPlural.forEach(function(palavra, i) {
palavrasPlural[i] = _plural(palavra);
});
return palavrasPlural.join(' ');
};
var _plural = function plural( palavra ) {
var regex_troca = "^([a-zA-Zà-úÀ-Ú]*)(%s)$"
, plural = "";
for ( var regra in regras ) {
switch ( regra ) {
case 'acrescentar':
for ( var adicao in regras[regra] ) {
var busca = regex_troca.replace("%s", regras[regra][adicao].join("|"))
, regex = new RegExp(busca, 'i');
if ( regex.exec(palavra) !== null ) {
plural = palavra + adicao;
break;
}
}
break;
case 'substituir':
for ( var substituicao in regras[regra] ) {
var busca = regex_troca.replace("%s", regras[regra][substituicao])
, regex = new RegExp(busca, 'i');
if ( regex.exec(palavra) !== null ) {
/**
* Se a palavra for paroxítona ou proparoxítona,
* troca-se 'il' por 'eis'
*/
if ( palavra.match(/([áéíóú])/) !== null && regex.exec(palavra)[2] == "il" ) {
plural = palavra.replace("il", "eis");
break;
} else {
var busca_sub = new RegExp(regex.exec(palavra)[2] + '$', 'i');
plural = palavra.replace(busca_sub, substituicao);
break;
}
}
}
break;
case 'excecoes':
for ( var excecao in regras[regra] ) {
if ( palavra == regras[regra][excecao] ) {
plural = excecao;
break;
}
}
break;
case 'sem_plural':
regras[regra].forEach(function(r) {
if (palavra === r) plural = palavra;
});
break;
}
}
return plural !== "" ? plural : palavra;
}
module.exports = plural;