diff options
| -rw-r--r-- | lib/locales/ro/cell_phone/formats.js | 61 | ||||
| -rw-r--r-- | lib/locales/ro/cell_phone/index.js | 3 | ||||
| -rw-r--r-- | lib/locales/ro/date/index.js | 4 | ||||
| -rw-r--r-- | lib/locales/ro/date/month.js | 62 | ||||
| -rw-r--r-- | lib/locales/ro/date/weekday.js | 42 | ||||
| -rw-r--r-- | lib/locales/ro/index.js | 3 | ||||
| -rw-r--r-- | lib/locales/ro/phone_number/formats.js | 84 | ||||
| -rw-r--r-- | lib/locales/ro/phone_number/index.js | 3 |
8 files changed, 262 insertions, 0 deletions
diff --git a/lib/locales/ro/cell_phone/formats.js b/lib/locales/ro/cell_phone/formats.js new file mode 100644 index 00000000..b590c8f3 --- /dev/null +++ b/lib/locales/ro/cell_phone/formats.js @@ -0,0 +1,61 @@ +module["exports"] = [ + "0726######", + "0723######", + "0722######", + "0721######", + "0720######", + "0728######", + "0729######", + "0730######", + "0739######", + "0738######", + "0737######", + "0736######", + "0735######", + "0734######", + "0733######", + "0732######", + "0731######", + "0780######", + "0788######", + "0753######", + "0754######", + "0755######", + "0756######", + "0757######", + "0758######", + "0759######", + "0748######", + "0747######", + "0746######", + "0740######", + "0741######", + "0742######", + "0743######", + "0744######", + "0745######", + "0711######", + "0727######", + "0725######", + "0724######", + "0786######", + "0760######", + "0761######", + "0762######", + "0763######", + "0764######", + "0765######", + "0766######", + "0767######", + "0785######", + "0768######", + "0769######", + "0784######", + "0770######", + "0772######", + "0771######", + "0749######", + "0750######", + "0751######", + "0752######" +]; diff --git a/lib/locales/ro/cell_phone/index.js b/lib/locales/ro/cell_phone/index.js new file mode 100644 index 00000000..8de997ba --- /dev/null +++ b/lib/locales/ro/cell_phone/index.js @@ -0,0 +1,3 @@ +var cell_phone = {}; +module['exports'] = cell_phone; +cell_phone.formats = require("./formats"); diff --git a/lib/locales/ro/date/index.js b/lib/locales/ro/date/index.js new file mode 100644 index 00000000..8c45d3f6 --- /dev/null +++ b/lib/locales/ro/date/index.js @@ -0,0 +1,4 @@ +var date = {}; +module["exports"] = date; +date.month = require("./month"); +date.weekday = require("./weekday"); diff --git a/lib/locales/ro/date/month.js b/lib/locales/ro/date/month.js new file mode 100644 index 00000000..9a012bee --- /dev/null +++ b/lib/locales/ro/date/month.js @@ -0,0 +1,62 @@ +module["exports"] = { + wide: [ + "Ianuarie", + "Februarie", + "Martie", + "Aprilie", + "Mai", + "Iunie", + "Iulie", + "August", + "Septembrie", + "Octombrie", + "Noiembrie", + "Decembrie" + ], + // Property "wide_context" is optional, if not set then "wide" will be used instead + // It is used to specify a word in context, which may differ from a stand-alone word + wide_context: [ + "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" + ], + // Property "abbr_context" is optional, if not set then "abbr" will be used instead + // It is used to specify a word in context, which may differ from a stand-alone word + abbr_context: [ + "Ian", + "Feb", + "Mar", + "Apr", + "Mai", + "Iun", + "Iul", + "Aug", + "Sep", + "Oct", + "Noi", + "Dec" + ] +}; diff --git a/lib/locales/ro/date/weekday.js b/lib/locales/ro/date/weekday.js new file mode 100644 index 00000000..d4031473 --- /dev/null +++ b/lib/locales/ro/date/weekday.js @@ -0,0 +1,42 @@ +module["exports"] = { + wide: [ + "Luni", + "Marți", + "Miercuri", + "Joi", + "Vineri", + "Sâmbătă", + "Duminică" + ], + // Property "wide_context" is optional, if not set then "wide" will be used instead + // It is used to specify a word in context, which may differ from a stand-alone word + wide_context: [ + "Luni", + "Marți", + "Miercuri", + "Joi", + "Vineri", + "Sâmbătă", + "Duminică" + ], + abbr: [ + "Luni", + "Marți", + "Miercuri", + "Joi", + "Vineri", + "Sâmbătă", + "Duminică" + ], + // Property "abbr_context" is optional, if not set then "abbr" will be used instead + // It is used to specify a word in context, which may differ from a stand-alone word + abbr_context: [ + "Luni", + "Marți", + "Miercuri", + "Joi", + "Vineri", + "Sâmbătă", + "Duminică" + ] +}; diff --git a/lib/locales/ro/index.js b/lib/locales/ro/index.js index 385380e5..c6fdecf8 100644 --- a/lib/locales/ro/index.js +++ b/lib/locales/ro/index.js @@ -2,5 +2,8 @@ var ro = {}; module['exports'] = ro; ro.title = "Romanian"; ro.address = require("./address"); +ro.cell_phone = require("./cell_phone"); +ro.date = require("./date"); ro.internet = require("./internet"); ro.name = require("./name"); +ro.phone_number = require("./phone_number"); diff --git a/lib/locales/ro/phone_number/formats.js b/lib/locales/ro/phone_number/formats.js new file mode 100644 index 00000000..19adb938 --- /dev/null +++ b/lib/locales/ro/phone_number/formats.js @@ -0,0 +1,84 @@ +module["exports"] = [ + "021######", + "031######", + "0258######", + "0358######", + "0257######", + "0357######", + "0248######", + "0348######", + "0234######", + "0334######", + "0259######", + "0359######", + "0263######", + "0363######", + "0231######", + "0331######", + "0239######", + "0339######", + "0268######", + "0368######", + "0238######", + "0338######", + "0242######", + "0342######", + "0255######", + "0355######", + "0264######", + "0364######", + "0241######", + "0341######", + "0267######", + "0367######", + "0245######", + "0345######", + "0251######", + "0351######", + "0236######", + "0336######", + "0246######", + "0346######", + "0253######", + "0353######", + "0266######", + "0366######", + "0254######", + "0354######", + "0243######", + "0343######", + "0232######", + "0332######", + "0262######", + "0362######", + "0252######", + "0352######", + "0265######", + "0365######", + "0233######", + "0333######", + "0249######", + "0349######", + "0244######", + "0344######", + "0260######", + "0360######", + "0261######", + "0361######", + "0269######", + "0369######", + "0230######", + "0330######", + "0247######", + "0347######", + "0256######", + "0356######", + "0240######", + "0340######", + "0250######", + "0350######", + "0235######", + "0335######", + "0237######", + "0337######" +]; diff --git a/lib/locales/ro/phone_number/index.js b/lib/locales/ro/phone_number/index.js new file mode 100644 index 00000000..8d35e011 --- /dev/null +++ b/lib/locales/ro/phone_number/index.js @@ -0,0 +1,3 @@ +var phone_number = {}; +module['exports'] = phone_number; +phone_number.formats = require("./formats"); |
