2018-10-25 16:50:16 +02:00
|
|
|
/*
|
|
|
|
* decaffeinate suggestions:
|
|
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
|
|
* DS207: Consider shorter variations of null checks
|
|
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
|
|
*/
|
|
|
|
'use strict';
|
2016-03-23 18:39:41 +01:00
|
|
|
|
2018-10-25 16:50:16 +02:00
|
|
|
Application.Services.factory('_t', ["$filter", $filter=>
|
|
|
|
function(key, interpolation, options) {
|
|
|
|
if (interpolation == null) { interpolation = undefined; }
|
|
|
|
if (options == null) { options = undefined; }
|
|
|
|
return $filter('translate')(key, interpolation, options);
|
|
|
|
}
|
|
|
|
|
|
|
|
]);
|