Welcome to mirror list, hosted at ThFree Co, Russian Federation.

localize.js « filters « scripts « ngax « webroot « Server « Duplicati - github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aabd3dc682f348401d8cfb77ef41a810031291c2 (plain)
1
2
3
4
5
backupApp.filter('localize', function(Localization) {
  return function() {
      return Localization.localize.apply(Localization, arguments);
  }
});