Merge "Improve docs for Title::getInternalURL/getCanonicalURL"
[lhc/web/wiklou.git] / resources / lib / moment / locale / sk.js
index 582ae7e..6938f95 100644 (file)
@@ -1,14 +1,11 @@
 //! moment.js locale configuration
-//! locale : Slovak [sk]
-//! author : Martin Minka : https://github.com/k2s
-//! based on work of petrbela : https://github.com/petrbela
 
 ;(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';
 
 
     var months = 'január_február_marec_apríl_máj_jún_júl_august_september_október_november_december'.split('_'),
         switch (key) {
             case 's':  // a few seconds / in a few seconds / a few seconds ago
                 return (withoutSuffix || isFuture) ? 'pár sekúnd' : 'pár sekundami';
+            case 'ss': // 9 seconds / in 9 seconds / 9 seconds ago
+                if (withoutSuffix || isFuture) {
+                    return result + (plural(number) ? 'sekundy' : 'sekúnd');
+                } else {
+                    return result + 'sekundami';
+                }
+                break;
             case 'm':  // a minute / in a minute / a minute ago
                 return withoutSuffix ? 'minúta' : (isFuture ? 'minútu' : 'minútou');
             case 'mm': // 9 minutes / in 9 minutes / 9 minutes ago
             future : 'za %s',
             past : 'pred %s',
             s : translate,
+            ss : translate,
             m : translate,
             mm : translate,
             h : translate,
             y : translate,
             yy : translate
         },
-        ordinalParse: /\d{1,2}\./,
+        dayOfMonthOrdinalParse: /\d{1,2}\./,
         ordinal : '%d.',
         week : {
             dow : 1, // Monday is the first day of the week.
 
     return sk;
 
-}));
\ No newline at end of file
+})));