app.js 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. (function () {
  2. 'use strict';
  3. angular
  4. .module('fehlerberichtApp', [
  5. 'ngAnimate',
  6. 'ngCookies',
  7. 'ngResource',
  8. 'ngRoute',
  9. 'ngSanitize',
  10. 'ngTouch'
  11. ])
  12. .config(function ($routeProvider) {
  13. $routeProvider
  14. .when('/overview/:customer/:date/:status', {
  15. templateUrl: 'views/overview.html',
  16. controller: 'OverviewCtrl'
  17. })
  18. .when('/calendar', {
  19. templateUrl: 'views/calendar.html',
  20. controller: 'CalendarCtrl'
  21. })
  22. .when('/customers', {
  23. templateUrl: 'views/customers.html',
  24. controller: 'CustomersCtrl'
  25. })
  26. .when('/stats/:customer', {
  27. templateUrl: 'views/stats.html',
  28. controller: 'StatsCtrl'
  29. })
  30. .when('/config/:customer/:date', {
  31. templateUrl: 'views/config.html',
  32. controller: 'ConfigCtrl'
  33. })
  34. .when('/config', {
  35. templateUrl: 'views/config.html',
  36. controller: 'ConfigCtrl'
  37. })
  38. .otherwise({
  39. redirectTo: '/overview/all/today/errors'
  40. });
  41. });
  42. moment.locale('de', {
  43. calendar: {
  44. lastDay: "[Gestern]",
  45. lastWeek: "[letzten] dddd",
  46. nextDay: "[Morgen]",
  47. nextWeek: "dddd",
  48. sameDay: "[Heute]",
  49. sameElse: "L"
  50. }
  51. });
  52. })();