Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

39 Zeilen
1.1 KiB

  1. /**
  2. * Bootstrap Table Italian translation
  3. * Author: Davide Renzi<davide.renzi@gmail.com>
  4. * Author: Davide Borsatto <davide.borsatto@gmail.com>
  5. */
  6. (function ($) {
  7. 'use strict';
  8. $.fn.bootstrapTable.locales['it-IT'] = {
  9. formatLoadingMessage: function () {
  10. return 'Caricamento in corso...';
  11. },
  12. formatRecordsPerPage: function (pageNumber) {
  13. return pageNumber + ' elementi per pagina';
  14. },
  15. formatShowingRows: function (pageFrom, pageTo, totalRows) {
  16. return 'Pagina ' + pageFrom + ' di ' + pageTo + ' (' + totalRows + ' records)';
  17. },
  18. formatSearch: function () {
  19. return 'Cerca';
  20. },
  21. formatNoMatches: function () {
  22. return 'Nessun elemento trovato';
  23. },
  24. formatRefresh: function () {
  25. return 'Aggiorna';
  26. },
  27. formatToggle: function () {
  28. return 'Alterna';
  29. },
  30. formatColumns: function () {
  31. return 'Colonne';
  32. }
  33. };
  34. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['it-IT']);
  35. })(jQuery);