diff options
| author | Marak <[email protected]> | 2018-09-24 21:27:36 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-09-24 21:27:36 -0400 |
| commit | ddb1699d97b2be52e6faab87d0160570dbcc4900 (patch) | |
| tree | e0fba38810c1c727d7ea7f7e16590074015e6acc /lib | |
| parent | 948d0dac5aae515739e3b5fa5b6a64f69aebaa00 (diff) | |
| parent | 8e5451f6e36ba71c24b87005f38f3a4153068742 (diff) | |
| download | faker-ddb1699d97b2be52e6faab87d0160570dbcc4900.tar.xz faker-ddb1699d97b2be52e6faab87d0160570dbcc4900.zip | |
Merge pull request #595 from ru03/ruben/AddCommerceEs
Added commerce for `es` locale
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/locales/es/commerce/color.js | 11 | ||||
| -rw-r--r-- | lib/locales/es/commerce/department.js | 21 | ||||
| -rw-r--r-- | lib/locales/es/commerce/index.js | 5 | ||||
| -rw-r--r-- | lib/locales/es/commerce/product_name.js | 56 | ||||
| -rw-r--r-- | lib/locales/es/index.js | 1 |
5 files changed, 94 insertions, 0 deletions
diff --git a/lib/locales/es/commerce/color.js b/lib/locales/es/commerce/color.js new file mode 100644 index 00000000..d08b5bbc --- /dev/null +++ b/lib/locales/es/commerce/color.js @@ -0,0 +1,11 @@ +module["exports"] = [ + "Rojo", + "Azul", + "Negro", + "Gris", + "Blanco", + "Amarillo", + "Verde", + "Morado", + "Violeta" +]
\ No newline at end of file diff --git a/lib/locales/es/commerce/department.js b/lib/locales/es/commerce/department.js new file mode 100644 index 00000000..50fd8504 --- /dev/null +++ b/lib/locales/es/commerce/department.js @@ -0,0 +1,21 @@ +module["exports"] = [ + "Librería", + "Deportes", + "Videojuegos", + "Electrónica", + "Moda", + "Joyería", + "Marroquinería", + "Juguetería", + "Mascotas", + "Bebes", + "Bricolaje", + "Informática", + "Salud", + "Parafarmacia", + "Papelería", + "Cine", + "Música", + "Hogar", + "Decoración" +]
\ No newline at end of file diff --git a/lib/locales/es/commerce/index.js b/lib/locales/es/commerce/index.js new file mode 100644 index 00000000..c5513b11 --- /dev/null +++ b/lib/locales/es/commerce/index.js @@ -0,0 +1,5 @@ +var commerce = {}; +module["exports"] = commerce; +commerce.color = require("./color"); +commerce.department = require("./department"); +commerce.product_name = require("./product_name"); diff --git a/lib/locales/es/commerce/product_name.js b/lib/locales/es/commerce/product_name.js new file mode 100644 index 00000000..df5f82d2 --- /dev/null +++ b/lib/locales/es/commerce/product_name.js @@ -0,0 +1,56 @@ +module["exports"] = { + "adjective": [ + "Pequeño", + "Ergonómico", + "Rústico", + "Inteligente", + "Increible", + "Fantástico", + "Práctico", + "Sorprendente", + "Genérico", + "Artesanal", + "Hecho a mano", + "Guapo", + "Guapa", + "Refinado", + "Sabroso" + ], + "material": [ + "Acero", + "Madera", + "Plástico", + "Algodón", + "Granito", + "Metal", + "Ladrillo", + "Hormigon" + ], + "product": [ + "Silla", + "Coche", + "Ordenador", + "Teclado", + "Raton", + "Bicicleta", + "Pelota", + "Guantes", + "Pantalones", + "Camiseta", + "Mesa", + "Zapatos", + "Gorro", + "Toallas", + "Sopa", + "Atún", + "Pollo", + "Pescado", + "Queso", + "Bacon", + "Pizza", + "Ensalada", + "Salchichas", + "Patatas fritas" + ] + }; +
\ No newline at end of file diff --git a/lib/locales/es/index.js b/lib/locales/es/index.js index 3abfe808..7f3a5697 100644 --- a/lib/locales/es/index.js +++ b/lib/locales/es/index.js @@ -7,3 +7,4 @@ es.internet = require("./internet"); es.name = require("./name"); es.phone_number = require("./phone_number"); es.cell_phone = require("./cell_phone"); +es.commerce = require("./commerce"); |
