91bcf09092cb60988042e6b83cdf61d286a4131b.svn-base 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. if ($.fn.pagination){
  2. $.fn.pagination.defaults.beforePageText = 'Strana';
  3. $.fn.pagination.defaults.afterPageText = 'z {pages}';
  4. $.fn.pagination.defaults.displayMsg = 'Zobrazuji {from} do {to} z {total} položky';
  5. }
  6. if ($.fn.datagrid){
  7. $.fn.datagrid.defaults.loadMsg = 'Zpracování, čekejte prosím ...';
  8. }
  9. if ($.fn.treegrid && $.fn.datagrid){
  10. $.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
  11. }
  12. if ($.messager){
  13. $.messager.defaults.ok = 'Ok';
  14. $.messager.defaults.cancel = 'Zrušit';
  15. }
  16. if ($.fn.validatebox){
  17. $.fn.validatebox.defaults.missingMessage = 'Toto pole je vyžadováno.';
  18. $.fn.validatebox.defaults.rules.email.message = 'Zadejte prosím platnou e-mailovou adresu.';
  19. $.fn.validatebox.defaults.rules.url.message = 'Zadejte prosím platnou adresu URL.';
  20. $.fn.validatebox.defaults.rules.length.message = 'Prosím, zadejte hodnotu mezi {0} a {1}.';
  21. }
  22. if ($.fn.numberbox){
  23. $.fn.numberbox.defaults.missingMessage = 'Toto pole je vyžadováno.';
  24. }
  25. if ($.fn.combobox){
  26. $.fn.combobox.defaults.missingMessage = 'Toto pole je vyžadováno.';
  27. }
  28. if ($.fn.combotree){
  29. $.fn.combotree.defaults.missingMessage = 'Toto pole je vyžadováno.';
  30. }
  31. if ($.fn.combogrid){
  32. $.fn.combogrid.defaults.missingMessage = 'Toto pole je vyžadováno.';
  33. }
  34. if ($.fn.calendar){
  35. $.fn.calendar.defaults.weeks = ['S','M','T','W','T','F','S'];
  36. $.fn.calendar.defaults.months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
  37. }
  38. if ($.fn.datebox){
  39. $.fn.datebox.defaults.currentText = 'Dnes';
  40. $.fn.datebox.defaults.closeText = 'Zavřít';
  41. $.fn.datebox.defaults.okText = 'Ok';
  42. $.fn.datebox.defaults.missingMessage = 'Toto pole je vyžadováno.';
  43. }
  44. if ($.fn.datetimebox && $.fn.datebox){
  45. $.extend($.fn.datetimebox.defaults,{
  46. currentText: $.fn.datebox.defaults.currentText,
  47. closeText: $.fn.datebox.defaults.closeText,
  48. okText: $.fn.datebox.defaults.okText,
  49. missingMessage: $.fn.datebox.defaults.missingMessage
  50. });
  51. }