-
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 #126 from adamwdraper/develop
Develop 1.5.3
- Loading branch information
Showing
17 changed files
with
592 additions
and
40 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,29 @@ | ||
node_modules/ | ||
# -------------------- | ||
# OSX Files | ||
# -------------------- | ||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
Icon | ||
._* | ||
.Spotlight-V100 | ||
.Trashes | ||
|
||
# -------------------- | ||
# IntelliJ Files | ||
# -------------------- | ||
*.iml | ||
*.ipr | ||
*.iws | ||
.idea/ | ||
|
||
# -------------------- | ||
# Sublime Files | ||
# -------------------- | ||
*.sublime-project | ||
*.sublime-workspace | ||
*.sublime-workspace | ||
|
||
# -------------------- | ||
# App Files | ||
# -------------------- | ||
node_modules/ |
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 : simplified chinese | ||
* author : badplum : https://github.com/badplum | ||
*/ | ||
(function () { | ||
var language = { | ||
delimiters: { | ||
thousands: ',', | ||
decimal: '.' | ||
}, | ||
abbreviations: { | ||
thousand: '千', | ||
million: '百万', | ||
billion: '十亿', | ||
trillion: '兆' | ||
}, | ||
ordinal: function (number) { | ||
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('chs', 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,37 @@ | ||
/*! | ||
* numeral.js language configuration | ||
* language : Estonian | ||
* author : Illimar Tambek : https://github.com/ragulka | ||
* | ||
* Note: in Estonian, abbreviations are always separated | ||
* from numbers with a space | ||
*/ | ||
(function () { | ||
var language = { | ||
delimiters: { | ||
thousands: ' ', | ||
decimal: ',' | ||
}, | ||
abbreviations: { | ||
thousand: ' tuh', | ||
million: ' mln', | ||
billion: ' mld', | ||
trillion: ' trl' | ||
}, | ||
ordinal: function (number) { | ||
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('et', 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
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,6 @@ | ||
/*! | ||
* numeral.js language configuration | ||
* language : simplified chinese | ||
* author : badplum : https://github.com/badplum | ||
*/ | ||
!function(){var a={delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"千",million:"百万",billion:"十亿",trillion:"兆"},ordinal:function(){return"."},currency:{symbol:"¥"}};"undefined"!=typeof module&&module.exports&&(module.exports=a),"undefined"!=typeof window&&this.numeral&&this.numeral.language&&this.numeral.language("chs",a)}(); |
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,9 @@ | ||
/*! | ||
* numeral.js language configuration | ||
* language : Estonian | ||
* author : Illimar Tambek : https://github.com/ragulka | ||
* | ||
* Note: in Estonian, abbreviations are always separated | ||
* from numbers with a space | ||
*/ | ||
!function(){var a={delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:" tuh",million:" mln",billion:" mld",trillion:" trl"},ordinal:function(){return"."},currency:{symbol:"€"}};"undefined"!=typeof module&&module.exports&&(module.exports=a),"undefined"!=typeof window&&this.numeral&&this.numeral.language&&this.numeral.language("et",a)}(); |
Oops, something went wrong.