Giter VIP home page Giter VIP logo

date-names's Introduction

date-names

Repository of localized month and day names. Usable in Node.js or in the browser.

Installation

Install via npm:

% npm install date-names

Usage

The default locale is en (English). Thus, a require('date-names') implicitly does require('date-names/en').

var names = require('date-names');

names.months              // => ['January', 'February', 'March', ...]
names.abbreviated_months  // => ['Jan', 'Feb', 'Mar', 'Apr', ...]

names.days                // => ['Sunday', 'Monday', 'Tuesday', ...]
names.abbreviated_days    // => ['Sun', 'Mon', 'Tue', 'Wed', ...]

names.am                  // => 'AM'
names.pm                  // => 'PM'

You can fetch a different translation by requiring a specific locale:

var names = require('date-names/de');

names.months              // => ['Januar', 'Februar', 'März', ...]
names.abbreviated_months  // => ['Jan', 'Feb', 'Mär', 'Apr', ...]

names.days                // => ['Sonntag', 'Montag', 'Dienstag', ...]
names.abbreviated_days    // => ['So', 'Mo', 'Di', 'Mi', ...]

names.am                  // => 'vormittags'
names.pm                  // => 'nachmittags'

Brazilian Portuguese (pt-br), Czech (cs), Danish (da), Dutch (nl), English (en), Finnish (fi), French (fr), German (de), Spanish (es), Russian (ru), Slovak (sk), Swedish (sv) and Turkish (tr) are currently the only supported locales. Pull requests welcome.

Contributing

Here's a quick guide:

  1. Fork the repo and make install.
  2. Run the tests. We only take pull requests with passing tests, and it's great to know that you have a clean slate: make test.
  3. Add a test for your change. Only refactoring and documentation changes require no new tests. If you are adding functionality or are fixing a bug, we need a test!
  4. Make the test pass.
  5. Push to your fork and submit a pull request.

Licence

Released under The MIT License.

date-names's People

Contributors

andrealbinop avatar arnested avatar chtidkois avatar codefo avatar jiripudil avatar marten avatar martinandert avatar mdumandag avatar mryakobo avatar vsaarinen avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

date-names's Issues

List avaliable languages

More of an unsolvable issue I guess. I need to get input from the user about what language they have; Therefore I somehow need to know what languages that are supported by this package. Now, because of the way that this module defaults to English, I don't think that this feature would be possible without a breaking change. Well, I technically could readdirSync the node_modules folder, but that feels like a hack.

Just wanted to start a discussion about this. :)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.