add Indonesian dictionary
This commit is contained in:
parent
9d81841eaa
commit
26a53f0901
|
|
@ -128,6 +128,7 @@ Pull requests are welcome, but please make sure you provide unit tests to cover
|
|||
- Serbian ( provided by [@Djuki](https://github.com/Djuki) )
|
||||
- Filipino ( provided by [@credocleo](https://github.com/credocleo) )
|
||||
- Romanian ( provided by [@rchioreanu](https://github.com/rchioreanu) )
|
||||
- Indonesian ( provided by [@rizasaputra](https://github.com/rizasaputra) )
|
||||
|
||||
## License
|
||||
This project is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT).
|
||||
|
|
|
|||
|
|
@ -0,0 +1,64 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* List of common swear words in Indonesian, sorted alphabetically.
|
||||
* Since some common swear words are simply animal names, those animal names are omitted from this list.
|
||||
*
|
||||
* Provided by @rizasaputra
|
||||
*/
|
||||
|
||||
return [
|
||||
'anjink',
|
||||
'asu',
|
||||
'bajingan',
|
||||
'banci',
|
||||
'bego',
|
||||
'bencong',
|
||||
'bolot',
|
||||
'brengsek',
|
||||
'budeg',
|
||||
'budek',
|
||||
'cukimai',
|
||||
'eek',
|
||||
'ewe',
|
||||
'gebleg',
|
||||
'geblek',
|
||||
'gelo',
|
||||
'gembel',
|
||||
'gila',
|
||||
'goblog',
|
||||
'goblok',
|
||||
'itil',
|
||||
'jablay',
|
||||
'jancok',
|
||||
'jancuk',
|
||||
'jembut',
|
||||
'jing',
|
||||
'kacrut',
|
||||
'kampret',
|
||||
'keparat',
|
||||
'kontol',
|
||||
'koplak',
|
||||
'koplok',
|
||||
'kunyuk',
|
||||
'lonte',
|
||||
'maho',
|
||||
'memek',
|
||||
'monyong',
|
||||
'ngehe',
|
||||
'ngentot',
|
||||
'njing',
|
||||
'ontohod',
|
||||
'pantek',
|
||||
'pecun',
|
||||
'peju',
|
||||
'perek',
|
||||
'sarap',
|
||||
'sinting',
|
||||
'sompret',
|
||||
'tai',
|
||||
'titit',
|
||||
'tolol',
|
||||
'udik',
|
||||
'upil'
|
||||
];
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'profane' => ':attribute mengandung konten yang vulgar',
|
||||
];
|
||||
Loading…
Reference in New Issue