Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/typeofweb/polish-plurals
Package for generating correct plurals in Polish.
https://github.com/typeofweb/polish-plurals
grammar l20n language polish
Last synced: 19 days ago
JSON representation
Package for generating correct plurals in Polish.
- Host: GitHub
- URL: https://github.com/typeofweb/polish-plurals
- Owner: typeofweb
- Created: 2018-01-22T17:49:02.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-01T13:54:27.000Z (over 1 year ago)
- Last Synced: 2024-10-19T05:12:41.928Z (28 days ago)
- Topics: grammar, l20n, language, polish
- Language: JavaScript
- Homepage: https://typeofweb.com/2018/01/22/odmiana-rzeczownikow-przy-liczebnikach-jezyku-polskim/
- Size: 121 KB
- Stars: 57
- Watchers: 2
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# `polish-plurals`
[![npm version](https://badge.fury.io/js/polish-plurals.svg)](https://badge.fury.io/js/polish-plurals)
[![Build Status](https://travis-ci.org/mmiszy/polish-plurals.svg?branch=master)](https://travis-ci.org/mmiszy/polish-plurals)
[![Coverage Status](https://coveralls.io/repos/github/mmiszy/polish-plurals/badge.svg?branch=master)](https://coveralls.io/github/mmiszy/polish-plurals?branch=master)
[![Dependency Status](https://david-dm.org/mmiszy/polish-plurals.svg)](https://david-dm.org/mmiszy/polish-plurals)
[![devDependencies Status](https://david-dm.org/mmiszy/polish-plurals/dev-status.svg)](https://david-dm.org/mmiszy/polish-plurals?type=dev)# Description
Package meant mostly for Polish users who are looking for the simplest way to use nouns with numbers in Polish correctly.This package takes into account complicated Polish grammar rules and allows you to specify different forms – 1 singular and 2 plural — of nouns to be used.
## Usage
In the simplest case you need to provide 3 forms of the noun and a number. Those 3 required forms are:
* singular nominative
* plural nominative
* plural genitive```javascript
import { polishPlurals } from 'polish-plurals';polishPlurals("komentarz", "komentarze", "komentarzy", 1); // komentarz
polishPlurals("komentarz", "komentarze", "komentarzy", 0); // komentarzy
polishPlurals("komentarz", "komentarze", "komentarzy", 3); // komentarze
```### Binding
You might consider `bind`ing the function to save some typing and avoid repetition:```javascript
import { polishPlurals } from 'polish-plurals';const commentsLabel = polishPlurals.bind(null, 'komentarz', 'komentarze', 'komentarzy');
commentsLabel(1); // komentarz
commentsLabel(0); // komentarzy
commentsLabel(3); // komentarze
```