You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

date-names

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

date-names

Repository of localized month and day names

0.1.13
latest
Source
npmnpm
Version published
Weekly downloads
8.4K
-7.42%
Maintainers
1
Weekly downloads
 
Created
Source

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:

  • Fork the repo and make install.
  • 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.
  • 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!
  • Make the test pass.
  • Push to your fork and submit a pull request.

Licence

Released under The MIT License.

Keywords

localization

FAQs

Package last updated on 18 Feb 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts