angular-timeago
Advanced tools
Comparing version 0.1.6 to 0.1.7
@@ -27,3 +27,3 @@ { | ||
}, | ||
"version": "0.1.6" | ||
"version": "0.1.7" | ||
} |
/** | ||
* Angular directive/filter/service for formatting date so that it displays how long ago the given time was compared to now. | ||
* @version v0.1.6 - 2014-12-18 | ||
* @version v0.1.7 - 2015-01-15 | ||
* @link https://github.com/yaru22/angular-timeago | ||
@@ -108,2 +108,20 @@ * @author Brian Park <yaru22@gmail.com> | ||
numbers: [] | ||
}, | ||
'pt_BR': { | ||
prefixAgo: null, | ||
prefixFromNow: 'daqui a', | ||
suffixAgo: 'atr\xe1s', | ||
suffixFromNow: null, | ||
seconds: 'menos de um minuto', | ||
minute: 'cerca de um minuto', | ||
minutes: '%d minutos', | ||
hour: 'cerca de uma hora', | ||
hours: 'cerca de %d horas', | ||
day: 'um dia', | ||
days: '%d dias', | ||
month: 'cerca de um m\xeas', | ||
months: '%d meses', | ||
year: 'cerca de um ano', | ||
years: '%d anos', | ||
numbers: [] | ||
} | ||
@@ -176,9 +194,2 @@ } | ||
} | ||
]); | ||
angular.module('namespace.component-name.tmpls', []).run([ | ||
'$templateCache', | ||
function ($templateCache) { | ||
'use strict'; | ||
$templateCache.put('template/blink.tmpl', '<div><marquee ng-click=edit() ng-hide=editMode scrollamount=100% ng-transclude=""></marquee><input ng-show=editMode></div>'); | ||
} | ||
]); |
@@ -8,3 +8,3 @@ { | ||
"description": "Angular directive/filter/service for formatting date so that it displays how long ago the given time was compared to now.", | ||
"version": "0.1.6", | ||
"version": "0.1.7", | ||
"license": "MIT", | ||
@@ -11,0 +11,0 @@ "homepage": "https://github.com/yaru22/angular-timeago", |
@@ -99,2 +99,20 @@ /* global angular */ | ||
numbers: [] | ||
}, | ||
'pt_BR': { | ||
prefixAgo: null, | ||
prefixFromNow: 'daqui a', | ||
suffixAgo: 'atrás', | ||
suffixFromNow: null, | ||
seconds: 'menos de um minuto', | ||
minute: 'cerca de um minuto', | ||
minutes: '%d minutos', | ||
hour: 'cerca de uma hora', | ||
hours: 'cerca de %d horas', | ||
day: 'um dia', | ||
days: '%d dias', | ||
month: 'cerca de um mês', | ||
months: '%d meses', | ||
year: 'cerca de um ano', | ||
years: '%d anos', | ||
numbers: [] | ||
} | ||
@@ -101,0 +119,0 @@ } |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
756223
19461