JSFiddle - React, Tailwind, and code Playground

HTML

<section class="wrap" ng-app ng-controller="Ctrl">
			<h1>tooltip</h1>
			
			В корзине <div ng-model="personCount">{{personCount}}</div>
			
			<ng-pluralize 
				count="personCount"
				when="{
					'one': 'товар',
					'few': 'товара',
					'many': 'товаров',
					'other': 'товара',
					'0': 'нет товаров'	
				}">
			</ng-pluralize>
		</section>

CSS

</style> <!-- Ugly Hack due to jsFiddle issue: http://goo.gl/BUfGZ --> 

<script src="http://code.angularjs.org/angular-1.0.1.min.js"></script>
<style>

JavaScript

function Ctrl($scope){
	$scope.personCount = 1;
}