summaryrefslogtreecommitdiff
path: root/date-fns/src/locale/ro/_lib
diff options
context:
space:
mode:
Diffstat (limited to 'date-fns/src/locale/ro/_lib')
-rw-r--r--date-fns/src/locale/ro/_lib/formatDistance/index.js101
-rw-r--r--date-fns/src/locale/ro/_lib/formatLong/index.js41
-rw-r--r--date-fns/src/locale/ro/_lib/formatRelative/index.js12
-rw-r--r--date-fns/src/locale/ro/_lib/localize/index.js164
-rw-r--r--date-fns/src/locale/ro/_lib/match/index.js146
5 files changed, 464 insertions, 0 deletions
diff --git a/date-fns/src/locale/ro/_lib/formatDistance/index.js b/date-fns/src/locale/ro/_lib/formatDistance/index.js
new file mode 100644
index 0000000..6fb15f5
--- /dev/null
+++ b/date-fns/src/locale/ro/_lib/formatDistance/index.js
@@ -0,0 +1,101 @@
+var formatDistanceLocale = {
+ lessThanXSeconds: {
+ one: 'mai puțin de o secundă',
+ other: 'mai puțin de {{count}} secunde'
+ },
+
+ xSeconds: {
+ one: '1 secundă',
+ other: '{{count}} secunde'
+ },
+
+ halfAMinute: 'jumătate de minut',
+
+ lessThanXMinutes: {
+ one: 'mai puțin de un minut',
+ other: 'mai puțin de {{count}} minute'
+ },
+
+ xMinutes: {
+ one: '1 minut',
+ other: '{{count}} minute'
+ },
+
+ aboutXHours: {
+ one: 'circa 1 oră',
+ other: 'circa {{count}} ore'
+ },
+
+ xHours: {
+ one: '1 oră',
+ other: '{{count}} ore'
+ },
+
+ xDays: {
+ one: '1 zi',
+ other: '{{count}} zile'
+ },
+
+ aboutXWeeks: {
+ one: 'circa o săptămână',
+ other: 'circa {{count}} săptămâni'
+ },
+
+ xWeeks: {
+ one: '1 săptămână',
+ other: '{{count}} săptămâni'
+ },
+
+ aboutXMonths: {
+ one: 'circa 1 lună',
+ other: 'circa {{count}} luni'
+ },
+
+ xMonths: {
+ one: '1 lună',
+ other: '{{count}} luni'
+ },
+
+ aboutXYears: {
+ one: 'circa 1 an',
+ other: 'circa {{count}} ani'
+ },
+
+ xYears: {
+ one: '1 an',
+ other: '{{count}} ani'
+ },
+
+ overXYears: {
+ one: 'peste 1 an',
+ other: 'peste {{count}} ani'
+ },
+
+ almostXYears: {
+ one: 'aproape 1 an',
+ other: 'aproape {{count}} ani'
+ }
+}
+
+export default function formatDistance(token, count, options) {
+ options = options || {}
+
+ var result
+ if (typeof formatDistanceLocale[token] === 'string') {
+ result = formatDistanceLocale[token]
+ } else if (count === 1) {
+ result = formatDistanceLocale[token].one
+ } else {
+ result = formatDistanceLocale[token].other.replace('{{count}}', count)
+ }
+
+ if (options.addSuffix) {
+ if (options.comparison > 0) {
+ return 'în ' + result
+ } else {
+ return result + ' în urmă'
+ }
+ }
+
+ return result
+}
diff --git a/date-fns/src/locale/ro/_lib/formatLong/index.js b/date-fns/src/locale/ro/_lib/formatLong/index.js
new file mode 100644
index 0000000..e3bc404
--- /dev/null
+++ b/date-fns/src/locale/ro/_lib/formatLong/index.js
@@ -0,0 +1,41 @@
+import buildFormatLongFn from '../../../_lib/buildFormatLongFn/index'
+
+var dateFormats = {
+ full: 'EEEE, d MMMM yyyy',
+ long: 'd MMMM yyyy',
+ medium: 'd MMM yyyy',
+ short: 'dd/MM/yyyy'
+}
+
+var timeFormats = {
+ full: 'HH:mm:ss zzzz',
+ long: 'HH:mm:ss z',
+ medium: 'HH:mm:ss',
+ short: 'HH:mm'
+}
+
+var dateTimeFormats = {
+ full: "{{date}} 'la' {{time}}",
+ long: "{{date}} 'la' {{time}}",
+ medium: '{{date}}, {{time}}',
+ short: '{{date}}, {{time}}'
+}
+
+var formatLong = {
+ date: buildFormatLongFn({
+ formats: dateFormats,
+ defaultWidth: 'full'
+ }),
+
+ time: buildFormatLongFn({
+ formats: timeFormats,
+ defaultWidth: 'full'
+ }),
+
+ dateTime: buildFormatLongFn({
+ formats: dateTimeFormats,
+ defaultWidth: 'full'
+ })
+}
+
+export default formatLong
diff --git a/date-fns/src/locale/ro/_lib/formatRelative/index.js b/date-fns/src/locale/ro/_lib/formatRelative/index.js
new file mode 100644
index 0000000..435ef8b
--- /dev/null
+++ b/date-fns/src/locale/ro/_lib/formatRelative/index.js
@@ -0,0 +1,12 @@
+var formatRelativeLocale = {
+ lastWeek: "eeee 'trecută la' p",
+ yesterday: "'ieri la' p",
+ today: "'astăzi la' p",
+ tomorrow: "'mâine la' p",
+ nextWeek: "eeee 'viitoare la' p",
+ other: 'P'
+}
+
+export default function formatRelative(token, _date, _baseDate, _options) {
+ return formatRelativeLocale[token]
+}
diff --git a/date-fns/src/locale/ro/_lib/localize/index.js b/date-fns/src/locale/ro/_lib/localize/index.js
new file mode 100644
index 0000000..f345da6
--- /dev/null
+++ b/date-fns/src/locale/ro/_lib/localize/index.js
@@ -0,0 +1,164 @@
+import buildLocalizeFn from '../../../_lib/buildLocalizeFn/index'
+
+var eraValues = {
+ narrow: ['Î', 'D'],
+ abbreviated: ['Î.d.C.', 'D.C.'],
+ wide: ['Înainte de Cristos', 'După Cristos']
+}
+
+var quarterValues = {
+ narrow: ['1', '2', '3', '4'],
+ abbreviated: ['T1', 'T2', 'T3', 'T4'],
+ wide: [
+ 'primul trimestru',
+ 'al doilea trimestru',
+ 'al treilea trimestru',
+ 'al patrulea trimestru'
+ ]
+}
+
+var monthValues = {
+ narrow: ['I', 'F', 'M', 'A', 'M', 'I', 'I', 'A', 'S', 'O', 'N', 'D'],
+ abbreviated: [
+ 'ian',
+ 'feb',
+ 'mar',
+ 'apr',
+ 'mai',
+ 'iun',
+ 'iul',
+ 'aug',
+ 'sep',
+ 'oct',
+ 'noi',
+ 'dec'
+ ],
+ wide: [
+ 'ianuarie',
+ 'februarie',
+ 'martie',
+ 'aprilie',
+ 'mai',
+ 'iunie',
+ 'iulie',
+ 'august',
+ 'septembrie',
+ 'octombrie',
+ 'noiembrie',
+ 'decembrie'
+ ]
+}
+
+var dayValues = {
+ narrow: ['d', 'l', 'm', 'm', 'j', 'v', 's'],
+ short: ['du', 'lu', 'ma', 'mi', 'jo', 'vi', 'sâ'],
+ abbreviated: ['dum', 'lun', 'mar', 'mie', 'joi', 'vin', 'sâm'],
+ wide: ['duminică', 'luni', 'marți', 'miercuri', 'joi', 'vineri', 'sâmbătă']
+}
+
+var dayPeriodValues = {
+ narrow: {
+ am: 'a',
+ pm: 'p',
+ midnight: 'mn',
+ noon: 'ami',
+ morning: 'dim',
+ afternoon: 'da',
+ evening: 's',
+ night: 'n'
+ },
+ abbreviated: {
+ am: 'AM',
+ pm: 'PM',
+ midnight: 'miezul nopții',
+ noon: 'amiază',
+ morning: 'dimineață',
+ afternoon: 'după-amiază',
+ evening: 'seară',
+ night: 'noapte'
+ },
+ wide: {
+ am: 'a.m.',
+ pm: 'p.m.',
+ midnight: 'miezul nopții',
+ noon: 'amiază',
+ morning: 'dimineață',
+ afternoon: 'după-amiază',
+ evening: 'seară',
+ night: 'noapte'
+ }
+}
+
+var formattingDayPeriodValues = {
+ narrow: {
+ am: 'a',
+ pm: 'p',
+ midnight: 'mn',
+ noon: 'amiază',
+ morning: 'dimineață',
+ afternoon: 'după-amiază',
+ evening: 'seară',
+ night: 'noapte'
+ },
+ abbreviated: {
+ am: 'AM',
+ pm: 'PM',
+ midnight: 'miezul nopții',
+ noon: 'amiază',
+ morning: 'dimineață',
+ afternoon: 'după-amiază',
+ evening: 'seară',
+ night: 'noapte'
+ },
+ wide: {
+ am: 'a.m.',
+ pm: 'p.m.',
+ midnight: 'miezul nopții',
+ noon: 'amiază',
+ morning: 'dimineață',
+ afternoon: 'după-amiază',
+ evening: 'seară',
+ night: 'noapte'
+ }
+}
+
+function ordinalNumber(dirtyNumber) {
+ var number = Number(dirtyNumber)
+ return String(number)
+}
+
+var localize = {
+ ordinalNumber: ordinalNumber,
+
+ era: buildLocalizeFn({
+ values: eraValues,
+ defaultWidth: 'wide'
+ }),
+
+ quarter: buildLocalizeFn({
+ values: quarterValues,
+ defaultWidth: 'wide',
+ argumentCallback: function(quarter) {
+ return Number(quarter) - 1
+ }
+ }),
+
+ month: buildLocalizeFn({
+ values: monthValues,
+ defaultWidth: 'wide'
+ }),
+
+ day: buildLocalizeFn({
+ values: dayValues,
+ defaultWidth: 'wide'
+ }),
+
+ dayPeriod: buildLocalizeFn({
+ values: dayPeriodValues,
+ defaultWidth: 'wide',
+ formattingValues: formattingDayPeriodValues,
+ defaultFormattingWidth: 'wide'
+ })
+}
+
+export default localize
diff --git a/date-fns/src/locale/ro/_lib/match/index.js b/date-fns/src/locale/ro/_lib/match/index.js
new file mode 100644
index 0000000..87048eb
--- /dev/null
+++ b/date-fns/src/locale/ro/_lib/match/index.js
@@ -0,0 +1,146 @@
+import buildMatchPatternFn from '../../../_lib/buildMatchPatternFn/index'
+import buildMatchFn from '../../../_lib/buildMatchFn/index'
+
+var matchOrdinalNumberPattern = /^(\d+)?/i
+var parseOrdinalNumberPattern = /\d+/i
+
+var matchEraPatterns = {
+ narrow: /^(Î|D)/i,
+ abbreviated: /^(Î\.?\s?d\.?\s?C\.?|Î\.?\s?e\.?\s?n\.?|D\.?\s?C\.?|e\.?\s?n\.?)/i,
+ wide: /^(Înainte de Cristos|Înaintea erei noastre|După Cristos|Era noastră)/i
+}
+
+var parseEraPatterns = {
+ any: [/^ÎC/i, /^DC/i],
+ wide: [
+ /^(Înainte de Cristos|Înaintea erei noastre)/i,
+ /^(După Cristos|Era noastră)/i
+ ]
+}
+
+var matchQuarterPatterns = {
+ narrow: /^[1234]/i,
+ abbreviated: /^T[1234]/i,
+ wide: /^trimestrul [1234]/i
+}
+
+var parseQuarterPatterns = {
+ any: [/1/i, /2/i, /3/i, /4/i]
+}
+
+var matchMonthPatterns = {
+ narrow: /^[ifmaasond]/i,
+ abbreviated: /^(ian|feb|mar|apr|mai|iun|iul|aug|sep|oct|noi|dec)/i,
+ wide: /^(ianuarie|februarie|martie|aprilie|mai|iunie|iulie|august|septembrie|octombrie|noiembrie|decembrie)/i
+}
+
+var parseMonthPatterns = {
+ narrow: [
+ /^i/i,
+ /^f/i,
+ /^m/i,
+ /^a/i,
+ /^m/i,
+ /^i/i,
+ /^i/i,
+ /^a/i,
+ /^s/i,
+ /^o/i,
+ /^n/i,
+ /^d/i
+ ],
+ any: [
+ /^ia/i,
+ /^f/i,
+ /^mar/i,
+ /^ap/i,
+ /^mai/i,
+ /^iun/i,
+ /^iul/i,
+ /^au/i,
+ /^s/i,
+ /^o/i,
+ /^n/i,
+ /^d/i
+ ]
+}
+
+var matchDayPatterns = {
+ narrow: /^[dlmjvs]/i,
+ short: /^(d|l|ma|mi|j|v|s)/i,
+ abbreviated: /^(dum|lun|mar|mie|jo|vi|sâ)/i,
+ wide: /^(duminica|luni|marţi|miercuri|joi|vineri|sâmbătă)/i
+}
+
+var parseDayPatterns = {
+ narrow: [/^d/i, /^l/i, /^m/i, /^m/i, /^j/i, /^v/i, /^s/i],
+ any: [/^d/i, /^l/i, /^ma/i, /^mi/i, /^j/i, /^v/i, /^s/i]
+}
+
+var matchDayPeriodPatterns = {
+ narrow: /^(a|p|mn|a|(dimineaţa|după-amiaza|seara|noaptea))/i,
+ any: /^([ap]\.?\s?m\.?|miezul nopții|amiaza|(dimineaţa|după-amiaza|seara|noaptea))/i
+}
+
+var parseDayPeriodPatterns = {
+ any: {
+ am: /^a/i,
+ pm: /^p/i,
+ midnight: /^mn/i,
+ noon: /amiaza/i,
+ morning: /dimineaţa/i,
+ afternoon: /după-amiaza/i,
+ evening: /seara/i,
+ night: /noaptea/i
+ }
+}
+
+var match = {
+ ordinalNumber: buildMatchPatternFn({
+ matchPattern: matchOrdinalNumberPattern,
+ parsePattern: parseOrdinalNumberPattern,
+ valueCallback: function(value) {
+ return parseInt(value, 10)
+ }
+ }),
+
+ era: buildMatchFn({
+ matchPatterns: matchEraPatterns,
+ defaultMatchWidth: 'wide',
+ parsePatterns: parseEraPatterns,
+ defaultParseWidth: 'any'
+ }),
+
+ quarter: buildMatchFn({
+ matchPatterns: matchQuarterPatterns,
+ defaultMatchWidth: 'wide',
+ parsePatterns: parseQuarterPatterns,
+ defaultParseWidth: 'any',
+ valueCallback: function(index) {
+ return index + 1
+ }
+ }),
+
+ month: buildMatchFn({
+ matchPatterns: matchMonthPatterns,
+ defaultMatchWidth: 'wide',
+ parsePatterns: parseMonthPatterns,
+ defaultParseWidth: 'any'
+ }),
+
+ day: buildMatchFn({
+ matchPatterns: matchDayPatterns,
+ defaultMatchWidth: 'wide',
+ parsePatterns: parseDayPatterns,
+ defaultParseWidth: 'any'
+ }),
+
+ dayPeriod: buildMatchFn({
+ matchPatterns: matchDayPeriodPatterns,
+ defaultMatchWidth: 'any',
+ parsePatterns: parseDayPeriodPatterns,
+ defaultParseWidth: 'any'
+ })
+}
+
+export default match