-
Notifications
You must be signed in to change notification settings - Fork 7
/
pluralize-ptbr.browser.js
142 lines (108 loc) · 4.35 KB
/
pluralize-ptbr.browser.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
139
140
141
142
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.pluralize = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
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;
},{}]},{},[1])(1)
});