Skip to content

a-x-/cyrillic-inflector

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cyrillic-inflector Build Status

cyrillic inflector (count, one, zero, some, many)

import inflect from 'cyrillic-inflector';

inflect(0, { zero: 'no calls', one: '{} call' }) // --> no calls

const loadPhrase = inflect({
  zero: 'Файлы не загружены',
  one: 'Загружен {} файл',
  some: 'Загружено {} файла',
  many: 'Загружено {} файлов'
});
test('complex zero', t => {
  t.is(loadPhrase(0), 'Файлы не загружены');
});
test('complex one', t => {
  t.is(loadPhrase(31), 'Загружен 31 файл');
});
test('complex some', t => {
  t.is(loadPhrase(5564), 'Загружено 5564 файла');
});
test('complex many', t => {
  t.is(loadPhrase(100500), 'Загружено 100500 файлов');
});

See test.js for more typical and edge cases

TODO

  • find alternative solutions

Relative libs