-
-
Notifications
You must be signed in to change notification settings - Fork 929
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(locale): add ro_MD locale (#2084)
- Loading branch information
1 parent
a0fb69d
commit 08cf1d8
Showing
42 changed files
with
1,578 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* | ||
* This file is automatically generated. | ||
* Run 'pnpm run generate:locales' to update. | ||
*/ | ||
|
||
import { Faker } from '../faker'; | ||
import base from '../locales/base'; | ||
import en from '../locales/en'; | ||
import ro from '../locales/ro'; | ||
import ro_MD from '../locales/ro_MD'; | ||
|
||
export const faker = new Faker({ | ||
locale: [ro_MD, ro, en, base], | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
export default [ | ||
'0600#####', | ||
'0601#####', | ||
'0602#####', | ||
'0603#####', | ||
'0604#####', | ||
'0605#####', | ||
'0606#####', | ||
'0607#####', | ||
'0608#####', | ||
'0609#####', | ||
'0610#####', | ||
'0611#####', | ||
'0612#####', | ||
'0613#####', | ||
'0614#####', | ||
'0615#####', | ||
'0616#####', | ||
'0617#####', | ||
'0618#####', | ||
'0619#####', | ||
'0620#####', | ||
'0621#####', | ||
'0622#####', | ||
'0623#####', | ||
'0624#####', | ||
'0625#####', | ||
'0626#####', | ||
'0627#####', | ||
'0628#####', | ||
'0629#####', | ||
'0660#####', | ||
'0661#####', | ||
'0662#####', | ||
'0663#####', | ||
'0664#####', | ||
'0665#####', | ||
'0666#####', | ||
'0667#####', | ||
'0668#####', | ||
'0669#####', | ||
'0670#####', | ||
'0671#####', | ||
'0672#####', | ||
'0673#####', | ||
'0674#####', | ||
'0675#####', | ||
'0676#####', | ||
'0677#####', | ||
'0678#####', | ||
'0679#####', | ||
'0680#####', | ||
'0681#####', | ||
'0682#####', | ||
'0683#####', | ||
'0684#####', | ||
'0685#####', | ||
'0686#####', | ||
'0687#####', | ||
'0688#####', | ||
'0689#####', | ||
'0690#####', | ||
'0691#####', | ||
'0692#####', | ||
'0693#####', | ||
'0694#####', | ||
'0695#####', | ||
'0696#####', | ||
'0697#####', | ||
'0698#####', | ||
'0699#####', | ||
'0790#####', | ||
'0791#####', | ||
'0792#####', | ||
'0793#####', | ||
'0794#####', | ||
'0795#####', | ||
'0796#####', | ||
'0797#####', | ||
'0798#####', | ||
'0799#####', | ||
'0780#####', | ||
'0781#####', | ||
'0782#####', | ||
'0783#####', | ||
'0784#####', | ||
'0785#####', | ||
'0786#####', | ||
'0787#####', | ||
'0788#####', | ||
'0789#####', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/* | ||
* This file is automatically generated. | ||
* Run 'pnpm run generate:locales' to update. | ||
*/ | ||
import formats from './formats'; | ||
|
||
const cell_phone = { | ||
formats, | ||
}; | ||
|
||
export default cell_phone; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* | ||
* This file is automatically generated. | ||
* Run 'pnpm run generate:locales' to update. | ||
*/ | ||
import type { DateDefinition } from '../../..'; | ||
import month from './month'; | ||
import weekday from './weekday'; | ||
|
||
const date: DateDefinition = { | ||
month, | ||
weekday, | ||
}; | ||
|
||
export default date; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
export default { | ||
wide: [ | ||
'Ianuarie', | ||
'Februarie', | ||
'Martie', | ||
'Aprilie', | ||
'Mai', | ||
'Iunie', | ||
'Iulie', | ||
'August', | ||
'Septembrie', | ||
'Octombrie', | ||
'Noiembrie', | ||
'Decembrie', | ||
], | ||
abbr: [ | ||
'Ian', | ||
'Feb', | ||
'Mar', | ||
'Apr', | ||
'Mai', | ||
'Iun', | ||
'Iul', | ||
'Aug', | ||
'Sep', | ||
'Oct', | ||
'Noi', | ||
'Dec', | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export default { | ||
wide: ['Luni', 'Marți', 'Miercuri', 'Joi', 'Vineri', 'Sâmbătă', 'Duminică'], | ||
abbr: ['Lu', 'Ma', 'Mi', 'Jo', 'Vi', 'Sâ', 'Du'], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* This file is automatically generated. | ||
* Run 'pnpm run generate:locales' to update. | ||
*/ | ||
import type { LocaleDefinition } from '../..'; | ||
import cell_phone from './cell_phone'; | ||
import date from './date'; | ||
import internet from './internet'; | ||
import location from './location'; | ||
import metadata from './metadata'; | ||
import person from './person'; | ||
import phone_number from './phone_number'; | ||
|
||
const ro_MD: LocaleDefinition = { | ||
cell_phone, | ||
date, | ||
internet, | ||
location, | ||
metadata, | ||
person, | ||
phone_number, | ||
}; | ||
|
||
export default ro_MD; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export default [ | ||
'com', | ||
'ru', | ||
'net', | ||
'org', | ||
// Moldavian | ||
'md', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
export default [ | ||
'mail.ru', | ||
'rambler.ru', | ||
'yandex.ru', | ||
'gmail.com', | ||
'gmail.ru', | ||
'yahoo.com', | ||
'hotmail.com', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* | ||
* This file is automatically generated. | ||
* Run 'pnpm run generate:locales' to update. | ||
*/ | ||
import type { InternetDefinition } from '../../..'; | ||
import domain_suffix from './domain_suffix'; | ||
import free_email from './free_email'; | ||
|
||
const internet: InternetDefinition = { | ||
domain_suffix, | ||
free_email, | ||
}; | ||
|
||
export default internet; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export default ['Bloc ##', 'Bloc ##/##']; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export default [ | ||
'{{location.city_prefix}} {{person.firstName}}', | ||
'{{location.city_name}}', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
export default [ | ||
'Anenii Noi', | ||
'Basarabeasca', | ||
'Bender', | ||
'Briceni', | ||
'Bălți', | ||
'Cahul', | ||
'Ceadîr-Lunga', | ||
'Chișinău', | ||
'Cimișlia', | ||
'Cocieri', | ||
'Codru', | ||
'Comrat', | ||
'Criuleni', | ||
'Călărași', | ||
'Căușeni', | ||
'Dnestrovsc', | ||
'Dondușeni', | ||
'Drochia', | ||
'Dubăsari', | ||
'Dumbrava', | ||
'Edineț', | ||
'Florești', | ||
'Fălești', | ||
'Glodeni', | ||
'Grigoriopol', | ||
'Hîncești', | ||
'Ialoveni', | ||
'Iargara', | ||
'Leova', | ||
'Nisporeni', | ||
'Ocnița', | ||
'Orhei', | ||
'Otaci', | ||
'Rezina', | ||
'Rîbnița', | ||
'Sadaclia', | ||
'Sadaclia Mică', | ||
'Sadaclia Nouă', | ||
'Saharna', | ||
'Saharna Nouă', | ||
'Saharna Veche', | ||
'Salcia', | ||
'Seliște', | ||
'Sipoteni', | ||
'Sipoteni Noui', | ||
'Slobozia Mare', | ||
'Soroca', | ||
'Strășeni', | ||
'Stăuceni', | ||
'Susleni', | ||
'Suvorovca', | ||
'Sîngerei', | ||
'Talmaza', | ||
'Taraclia', | ||
'Taraclia de Salcie', | ||
'Telenesti', | ||
'Tigheci', | ||
'Tiraspol', | ||
'Tocuz', | ||
'Tocuzeni', | ||
'Tomai', | ||
'Trebisăuți', | ||
'Tvardița', | ||
'Tătărășeni', | ||
'Ungheni', | ||
'Vadul lui Isac', | ||
'Vadul lui Voda', | ||
'Vaduleni', | ||
'Valea Coloniței', | ||
'Valea Perjei', | ||
'Varnița', | ||
'Varvareuca', | ||
'Vatra', | ||
'Verdești', | ||
'Veverița', | ||
'Volintiri', | ||
'Vulcănești', | ||
'Zagarancea', | ||
'Zaicana', | ||
'Zaim', | ||
'Zamciogi', | ||
'Zgurița', | ||
'Zgărdești', | ||
'Zirnesti', | ||
'Zolonceni', | ||
'Zârnești', | ||
'Zîrnești', | ||
'Zăbriceni', | ||
'Zăicani', | ||
'Zăluceni', | ||
'Zăticeni', | ||
'Șofrîncani', | ||
'Ștefan Vodă', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export default ['Raionul', 'Municipiu']; |
Oops, something went wrong.