-
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.
Merge pull request #104 from adamwdraper/develop
Develop
- Loading branch information
Showing
24 changed files
with
867 additions
and
37 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
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,34 @@ | ||
/*! | ||
* numeral.js language configuration | ||
* language : french (Canada) (fr-CA) | ||
* author : Léo Renaud-Allaire : https://github.com/renaudleo | ||
*/ | ||
(function () { | ||
var language = { | ||
delimiters: { | ||
thousands: ' ', | ||
decimal: ',' | ||
}, | ||
abbreviations: { | ||
thousand: 'k', | ||
million: 'M', | ||
billion: 'G', | ||
trillion: 'T' | ||
}, | ||
ordinal : function (number) { | ||
return number === 1 ? 'er' : 'e'; | ||
}, | ||
currency: { | ||
symbol: '$' | ||
} | ||
}; | ||
|
||
// Node | ||
if (typeof module !== 'undefined' && module.exports) { | ||
module.exports = language; | ||
} | ||
// Browser | ||
if (typeof window !== 'undefined' && this.numeral && this.numeral.language) { | ||
this.numeral.language('fr-CA', language); | ||
} | ||
}()); |
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,34 @@ | ||
/*! | ||
* numeral.js language configuration | ||
* language : Hungarian (hu) | ||
* author : Peter Bakondy : https://github.com/pbakondy | ||
*/ | ||
(function () { | ||
var language = { | ||
delimiters: { | ||
thousands: ' ', | ||
decimal: ',' | ||
}, | ||
abbreviations: { | ||
thousand: 'E', // ezer | ||
million: 'M', // millió | ||
billion: 'Mrd', // milliárd | ||
trillion: 'T' // trillió | ||
}, | ||
ordinal: function (number) { | ||
return '.'; | ||
}, | ||
currency: { | ||
symbol: ' Ft' | ||
} | ||
}; | ||
|
||
// Node | ||
if (typeof module !== 'undefined' && module.exports) { | ||
module.exports = language; | ||
} | ||
// Browser | ||
if (typeof window !== 'undefined' && this.numeral && this.numeral.language) { | ||
this.numeral.language('hu', language); | ||
} | ||
}()); |
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,35 @@ | ||
/*! | ||
* numeral.js language configuration | ||
* language : netherlands-dutch (nl-nl) | ||
* author : Dave Clayton : https://github.com/davedx | ||
*/ | ||
(function () { | ||
var language = { | ||
delimiters: { | ||
thousands: '.', | ||
decimal : ',' | ||
}, | ||
abbreviations: { | ||
thousand : 'k', | ||
million : 'mln', | ||
billion : 'mrd', | ||
trillion : 'bln' | ||
}, | ||
ordinal : function (number) { | ||
var remainder = number % 100; | ||
return (number !== 0 && remainder <= 1 || remainder === 8 || remainder >= 20) ? 'ste' : 'de'; | ||
}, | ||
currency: { | ||
symbol: '€ ' | ||
} | ||
}; | ||
|
||
// Node | ||
if (typeof module !== 'undefined' && module.exports) { | ||
module.exports = language; | ||
} | ||
// Browser | ||
if (typeof window !== 'undefined' && this.numeral && this.numeral.language) { | ||
this.numeral.language('nl-nl', language); | ||
} | ||
}()); |
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,34 @@ | ||
/*! | ||
* numeral.js language configuration | ||
* language : slovak (sk) | ||
* author : Ahmed Al Hafoudh : http://www.freevision.sk | ||
*/ | ||
(function () { | ||
var language = { | ||
delimiters: { | ||
thousands: ' ', | ||
decimal: ',' | ||
}, | ||
abbreviations: { | ||
thousand: 'tis.', | ||
million: 'mil.', | ||
billion: 'b', | ||
trillion: 't' | ||
}, | ||
ordinal: function () { | ||
return '.'; | ||
}, | ||
currency: { | ||
symbol: '€' | ||
} | ||
}; | ||
|
||
// Node | ||
if (typeof module !== 'undefined' && module.exports) { | ||
module.exports = language; | ||
} | ||
// Browser | ||
if (typeof window !== 'undefined' && this.numeral && this.numeral.language) { | ||
this.numeral.language('sk', language); | ||
} | ||
}()); |
Oops, something went wrong.