diff options
Diffstat (limited to 'i18n/e2e/localeTest_sk.html')
| -rw-r--r-- | i18n/e2e/localeTest_sk.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/i18n/e2e/localeTest_sk.html b/i18n/e2e/localeTest_sk.html index 18902ac0..69eef1e9 100644 --- a/i18n/e2e/localeTest_sk.html +++ b/i18n/e2e/localeTest_sk.html @@ -6,24 +6,24 @@ <script src="../../build/angular.js"></script> <script src="../../build/i18n/angular-locale_sk-sk.js"></script> <script> - function AppCntl(){ - this.input = 234234443432; - this.plInput = 1; + function AppCntl($scope){ + $scope.input = 234234443432; + $scope.plInput = 1; } </script> </head> - <body ng:controller="AppCntl"> - <input type="text" ng:model="input" value="234234443432"><br> + <body ng-controller="AppCntl"> + <input type="text" ng-model="input" value="234234443432"><br> date: {{input | date:"medium"}}<br> date: {{input | date:"longDate"}}<br> number: {{input | number}}<br> currency: {{input | currency }} <hr/> - <input type="text" ng:model="plInput"><br> - <ng:pluralize count="plInput" + <input type="text" ng-model="plInput"><br> + <ng-pluralize count="plInput" when= "{ 'one': 'Mas jeden email!', 'few': 'Mas {} emaily!', 'other': 'Mas {} emailov!'}"> - </ng:pluralize> + </ng-pluralize> </body> </html> |
