Commit a191941c9f5c7e0d5aa0d278e48868b70b835780
1 parent
49481095
Exists in
master
[Redmine #4685]Labels
Showing
2 changed files
with
3 additions
and
2 deletions
Show diff stats
cit-portal-web/src/main/java/br/com/centralit/listener/StartupListener.java
... | ... | @@ -1442,7 +1442,8 @@ public class StartupListener extends UtilStartup implements ApplicationListener< |
1442 | 1442 | |
1443 | 1443 | internacionalizacaoList.add(new Internacionalizacao("INTERFACE_USUARIO.INSERIR", "Inserir", dominio, modulo)); |
1444 | 1444 | internacionalizacaoList.add(new Internacionalizacao("LABEL.DETENTOR", "Detentor", dominio, modulo)); |
1445 | - | |
1445 | + internacionalizacaoList.add(new Internacionalizacao("LABEL.DETALHES_AUDITORIA", "Detalhes Auditoria", dominio, modulo)); | |
1446 | + internacionalizacaoList.add(new Internacionalizacao("LABEL.DOCUMENTOS", "Documentos", dominio, modulo)); | |
1446 | 1447 | |
1447 | 1448 | } |
1448 | 1449 | ... | ... |
cit-portal-web/src/main/webapp/assets/js/angular/custom/controller/AuditController.js
... | ... | @@ -170,7 +170,7 @@ citApp.controller('AuditController', ['$scope', '$http', '$filter', 'AuditReposi |
170 | 170 | var file = new Blob([response], {type: 'text/csv'}); |
171 | 171 | var urlFile = window.URL.createObjectURL(file); |
172 | 172 | var anchor = document.createElement("a"); |
173 | - anchor.download = $translate.instant("LABEL.TITULO_EXPORT_CSV_Audit").concat($filter('date')(new Date(), "dd/MM/yyyy HH:mm")).concat(".csv"); | |
173 | + anchor.download = $translate.instant("LABEL.TITULO_EXPORT_CSV_AUDIT").concat($filter('date')(new Date(), "dd/MM/yyyy HH:mm")).concat(".csv"); | |
174 | 174 | anchor.href = urlFile; |
175 | 175 | anchor.click(); |
176 | 176 | $scope.setLoading(false); | ... | ... |