mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-03 14:24:23 +01:00
10 lines
317 B
JavaScript
10 lines
317 B
JavaScript
'use strict';
|
|
|
|
Application.Services.factory('_t', ['$filter', function ($filter) {
|
|
return function (key, interpolation, options) {
|
|
if (interpolation == null) { interpolation = undefined; }
|
|
if (options == null) { options = undefined; }
|
|
return $filter('translate')(key, interpolation, options);
|
|
};
|
|
}]);
|