Merge "Improve docs for Title::getInternalURL/getCanonicalURL"
[lhc/web/wiklou.git] / resources / lib / moment / locale / ro.js
index 78b325a..15bea09 100644 (file)
@@ -1,18 +1,16 @@
 //! moment.js locale configuration
-//! locale : Romanian [ro]
-//! author : Vlad Gurdiga : https://github.com/gurdiga
-//! author : Valentin Agachi : https://github.com/avaly
 
 ;(function (global, factory) {
    typeof exports === 'object' && typeof module !== 'undefined'
        && typeof require === 'function' ? factory(require('../moment')) :
    typeof define === 'function' && define.amd ? define(['../moment'], factory) :
    factory(global.moment)
-}(this, function (moment) { 'use strict';
+}(this, (function (moment) { 'use strict';
 
 
     function relativeTimeWithPlural(number, withoutSuffix, key) {
         var format = {
+                'ss': 'secunde',
                 'mm': 'minute',
                 'hh': 'ore',
                 'dd': 'zile',
@@ -53,6 +51,7 @@
             future : 'peste %s',
             past : '%s în urmă',
             s : 'câteva secunde',
+            ss : relativeTimeWithPlural,
             m : 'un minut',
             mm : relativeTimeWithPlural,
             h : 'o oră',
         },
         week : {
             dow : 1, // Monday is the first day of the week.
-            doy : 7  // The week that contains Jan 1st is the first week of the year.
+            doy : 7  // The week that contains Jan 7th is the first week of the year.
         }
     });
 
     return ro;
 
-}));
\ No newline at end of file
+})));