rails_jq_grid 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (160) hide show
  1. data/COPYRIGHT.txt +17 -0
  2. data/GPL-LICENSE +675 -0
  3. data/README.rdoc +176 -0
  4. data/Rakefile +47 -0
  5. data/VERSION +1 -0
  6. data/app/helpers/rails_jq_grid/jq_grid_css_helper.rb +29 -0
  7. data/app/helpers/rails_jq_grid/jq_grid_helper.rb +21 -0
  8. data/app/helpers/rails_jq_grid/jq_grid_js_helper.rb +30 -0
  9. data/app/models/rails_jq_grid/jq_grid.rb +315 -0
  10. data/app/models/rails_jq_grid/jq_grid_column.rb +33 -0
  11. data/app/models/rails_jq_grid/jq_grid_method_missing.rb +50 -0
  12. data/app/models/rails_jq_grid/jq_grid_option_or_method.rb +46 -0
  13. data/lib/rails_jq_grid/acts_as_jq_grid_able.rb +76 -0
  14. data/lib/rails_jq_grid/acts_as_jq_grid_data_source.rb +34 -0
  15. data/lib/rails_jq_grid/engine.rb +23 -0
  16. data/lib/rails_jq_grid.rb +7 -0
  17. data/lib/tasks/rails_jq_grid.rake +1 -0
  18. data/public/javascripts/rails-jqgrid/Changes.txt +1160 -0
  19. data/public/javascripts/rails-jqgrid/i18n/grid.locale-bg.js +1 -0
  20. data/public/javascripts/rails-jqgrid/i18n/grid.locale-bg1251.js +1 -0
  21. data/public/javascripts/rails-jqgrid/i18n/grid.locale-cat.js +1 -0
  22. data/public/javascripts/rails-jqgrid/i18n/grid.locale-cn.js +1 -0
  23. data/public/javascripts/rails-jqgrid/i18n/grid.locale-cs.js +1 -0
  24. data/public/javascripts/rails-jqgrid/i18n/grid.locale-de.js +1 -0
  25. data/public/javascripts/rails-jqgrid/i18n/grid.locale-dk.js +1 -0
  26. data/public/javascripts/rails-jqgrid/i18n/grid.locale-el.js +1 -0
  27. data/public/javascripts/rails-jqgrid/i18n/grid.locale-en.js +1 -0
  28. data/public/javascripts/rails-jqgrid/i18n/grid.locale-es.js +1 -0
  29. data/public/javascripts/rails-jqgrid/i18n/grid.locale-fa.js +1 -0
  30. data/public/javascripts/rails-jqgrid/i18n/grid.locale-fi.js +1 -0
  31. data/public/javascripts/rails-jqgrid/i18n/grid.locale-fr.js +1 -0
  32. data/public/javascripts/rails-jqgrid/i18n/grid.locale-he.js +1 -0
  33. data/public/javascripts/rails-jqgrid/i18n/grid.locale-hu.js +1 -0
  34. data/public/javascripts/rails-jqgrid/i18n/grid.locale-is.js +1 -0
  35. data/public/javascripts/rails-jqgrid/i18n/grid.locale-it.js +1 -0
  36. data/public/javascripts/rails-jqgrid/i18n/grid.locale-ja.js +1 -0
  37. data/public/javascripts/rails-jqgrid/i18n/grid.locale-nl.js +1 -0
  38. data/public/javascripts/rails-jqgrid/i18n/grid.locale-no.js +1 -0
  39. data/public/javascripts/rails-jqgrid/i18n/grid.locale-pl.js +1 -0
  40. data/public/javascripts/rails-jqgrid/i18n/grid.locale-pt-br.js +1 -0
  41. data/public/javascripts/rails-jqgrid/i18n/grid.locale-pt.js +1 -0
  42. data/public/javascripts/rails-jqgrid/i18n/grid.locale-ro.js +1 -0
  43. data/public/javascripts/rails-jqgrid/i18n/grid.locale-ru.js +1 -0
  44. data/public/javascripts/rails-jqgrid/i18n/grid.locale-sk.js +1 -0
  45. data/public/javascripts/rails-jqgrid/i18n/grid.locale-sv.js +1 -0
  46. data/public/javascripts/rails-jqgrid/i18n/grid.locale-tr.js +1 -0
  47. data/public/javascripts/rails-jqgrid/i18n/grid.locale-ua.js +1 -0
  48. data/public/javascripts/rails-jqgrid/install.txt +43 -0
  49. data/public/javascripts/rails-jqgrid/jquery-1.4.2.min.js +154 -0
  50. data/public/javascripts/rails-jqgrid/jquery-ui-1.8.4.custom.min.js +763 -0
  51. data/public/javascripts/rails-jqgrid/jquery.jqGrid.min.js +445 -0
  52. data/public/javascripts/rails-jqgrid/src/JsonXml.js +330 -0
  53. data/public/javascripts/rails-jqgrid/src/css/ellipsis-xbl.xml +13 -0
  54. data/public/javascripts/rails-jqgrid/src/css/jquery.searchFilter.css +7 -0
  55. data/public/javascripts/rails-jqgrid/src/css/ui.jqgrid.css +129 -0
  56. data/public/javascripts/rails-jqgrid/src/css/ui.multiselect.css +30 -0
  57. data/public/javascripts/rails-jqgrid/src/grid.base.js +3003 -0
  58. data/public/javascripts/rails-jqgrid/src/grid.celledit.js +486 -0
  59. data/public/javascripts/rails-jqgrid/src/grid.common.js +636 -0
  60. data/public/javascripts/rails-jqgrid/src/grid.custom.js +818 -0
  61. data/public/javascripts/rails-jqgrid/src/grid.formedit.js +1872 -0
  62. data/public/javascripts/rails-jqgrid/src/grid.import.js +201 -0
  63. data/public/javascripts/rails-jqgrid/src/grid.inlinedit.js +250 -0
  64. data/public/javascripts/rails-jqgrid/src/grid.jqueryui.js +503 -0
  65. data/public/javascripts/rails-jqgrid/src/grid.loader.js +47 -0
  66. data/public/javascripts/rails-jqgrid/src/grid.postext.js +64 -0
  67. data/public/javascripts/rails-jqgrid/src/grid.setcolumns.js +126 -0
  68. data/public/javascripts/rails-jqgrid/src/grid.subgrid.js +260 -0
  69. data/public/javascripts/rails-jqgrid/src/grid.tbltogrid.js +106 -0
  70. data/public/javascripts/rails-jqgrid/src/grid.treegrid.js +483 -0
  71. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-bg.js +132 -0
  72. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-bg1251.js +132 -0
  73. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-cat.js +128 -0
  74. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-cn.js +132 -0
  75. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-cs.js +128 -0
  76. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-de.js +128 -0
  77. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-dk.js +128 -0
  78. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-el.js +126 -0
  79. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-en.js +128 -0
  80. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-es.js +128 -0
  81. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-fa.js +125 -0
  82. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-fi.js +130 -0
  83. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-fr.js +126 -0
  84. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-he.js +127 -0
  85. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-hu.js +129 -0
  86. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-is.js +126 -0
  87. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-it.js +1 -0
  88. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-ja.js +155 -0
  89. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-nl.js +149 -0
  90. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-no.js +1 -0
  91. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-pl.js +127 -0
  92. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-pt-br.js +127 -0
  93. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-pt.js +125 -0
  94. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-ro.js +139 -0
  95. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-ru.js +127 -0
  96. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-sk.js +127 -0
  97. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-sv.js +127 -0
  98. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-tr.js +126 -0
  99. data/public/javascripts/rails-jqgrid/src/i18n/grid.locale-ua.js +127 -0
  100. data/public/javascripts/rails-jqgrid/src/jqDnR.js +68 -0
  101. data/public/javascripts/rails-jqgrid/src/jqModal.js +69 -0
  102. data/public/javascripts/rails-jqgrid/src/jquery.fmatter.js +542 -0
  103. data/public/javascripts/rails-jqgrid/src/jquery.searchFilter.js +716 -0
  104. data/public/javascripts/rails-jqgrid/src/ui.multiselect.js +314 -0
  105. data/public/stylesheets/rails-jqgrid/ellipsis-xbl.xml +13 -0
  106. data/public/stylesheets/rails-jqgrid/themes/AUTHORS.txt +30 -0
  107. data/public/stylesheets/rails-jqgrid/themes/GPL-LICENSE.txt +278 -0
  108. data/public/stylesheets/rails-jqgrid/themes/MIT-LICENSE.txt +25 -0
  109. data/public/stylesheets/rails-jqgrid/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  110. data/public/stylesheets/rails-jqgrid/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  111. data/public/stylesheets/rails-jqgrid/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  112. data/public/stylesheets/rails-jqgrid/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  113. data/public/stylesheets/rails-jqgrid/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  114. data/public/stylesheets/rails-jqgrid/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  115. data/public/stylesheets/rails-jqgrid/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  116. data/public/stylesheets/rails-jqgrid/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  117. data/public/stylesheets/rails-jqgrid/themes/smoothness/images/ui-icons_222222_256x240.png +0 -0
  118. data/public/stylesheets/rails-jqgrid/themes/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
  119. data/public/stylesheets/rails-jqgrid/themes/smoothness/images/ui-icons_454545_256x240.png +0 -0
  120. data/public/stylesheets/rails-jqgrid/themes/smoothness/images/ui-icons_888888_256x240.png +0 -0
  121. data/public/stylesheets/rails-jqgrid/themes/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
  122. data/public/stylesheets/rails-jqgrid/themes/smoothness/jquery-ui-1.8.4.custom.css +572 -0
  123. data/public/stylesheets/rails-jqgrid/themes/start/images/ui-bg_flat_55_999999_40x100.png +0 -0
  124. data/public/stylesheets/rails-jqgrid/themes/start/images/ui-bg_flat_75_aaaaaa_40x100.png +0 -0
  125. data/public/stylesheets/rails-jqgrid/themes/start/images/ui-bg_glass_45_0078ae_1x400.png +0 -0
  126. data/public/stylesheets/rails-jqgrid/themes/start/images/ui-bg_glass_55_f8da4e_1x400.png +0 -0
  127. data/public/stylesheets/rails-jqgrid/themes/start/images/ui-bg_glass_75_79c9ec_1x400.png +0 -0
  128. data/public/stylesheets/rails-jqgrid/themes/start/images/ui-bg_gloss-wave_45_e14f1c_500x100.png +0 -0
  129. data/public/stylesheets/rails-jqgrid/themes/start/images/ui-bg_gloss-wave_50_6eac2c_500x100.png +0 -0
  130. data/public/stylesheets/rails-jqgrid/themes/start/images/ui-bg_gloss-wave_75_2191c0_500x100.png +0 -0
  131. data/public/stylesheets/rails-jqgrid/themes/start/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
  132. data/public/stylesheets/rails-jqgrid/themes/start/images/ui-icons_0078ae_256x240.png +0 -0
  133. data/public/stylesheets/rails-jqgrid/themes/start/images/ui-icons_056b93_256x240.png +0 -0
  134. data/public/stylesheets/rails-jqgrid/themes/start/images/ui-icons_d8e7f3_256x240.png +0 -0
  135. data/public/stylesheets/rails-jqgrid/themes/start/images/ui-icons_e0fdff_256x240.png +0 -0
  136. data/public/stylesheets/rails-jqgrid/themes/start/images/ui-icons_f5e175_256x240.png +0 -0
  137. data/public/stylesheets/rails-jqgrid/themes/start/images/ui-icons_f7a50d_256x240.png +0 -0
  138. data/public/stylesheets/rails-jqgrid/themes/start/images/ui-icons_fcd113_256x240.png +0 -0
  139. data/public/stylesheets/rails-jqgrid/themes/start/jquery-ui-1.8.4.custom.css +573 -0
  140. data/public/stylesheets/rails-jqgrid/themes/ui-darkness/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  141. data/public/stylesheets/rails-jqgrid/themes/ui-darkness/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  142. data/public/stylesheets/rails-jqgrid/themes/ui-darkness/images/ui-bg_glass_20_555555_1x400.png +0 -0
  143. data/public/stylesheets/rails-jqgrid/themes/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png +0 -0
  144. data/public/stylesheets/rails-jqgrid/themes/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  145. data/public/stylesheets/rails-jqgrid/themes/ui-darkness/images/ui-bg_gloss-wave_25_333333_500x100.png +0 -0
  146. data/public/stylesheets/rails-jqgrid/themes/ui-darkness/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  147. data/public/stylesheets/rails-jqgrid/themes/ui-darkness/images/ui-bg_inset-soft_25_000000_1x100.png +0 -0
  148. data/public/stylesheets/rails-jqgrid/themes/ui-darkness/images/ui-bg_inset-soft_30_f58400_1x100.png +0 -0
  149. data/public/stylesheets/rails-jqgrid/themes/ui-darkness/images/ui-icons_222222_256x240.png +0 -0
  150. data/public/stylesheets/rails-jqgrid/themes/ui-darkness/images/ui-icons_4b8e0b_256x240.png +0 -0
  151. data/public/stylesheets/rails-jqgrid/themes/ui-darkness/images/ui-icons_a83300_256x240.png +0 -0
  152. data/public/stylesheets/rails-jqgrid/themes/ui-darkness/images/ui-icons_cccccc_256x240.png +0 -0
  153. data/public/stylesheets/rails-jqgrid/themes/ui-darkness/images/ui-icons_ffffff_256x240.png +0 -0
  154. data/public/stylesheets/rails-jqgrid/themes/ui-darkness/jquery-ui-1.8.4.custom.css +572 -0
  155. data/public/stylesheets/rails-jqgrid/themes/version.txt +1 -0
  156. data/public/stylesheets/rails-jqgrid/ui.jqgrid.css +2 -0
  157. data/rails_jq_grid.gemspec +200 -0
  158. data/spec/spec.opts +1 -0
  159. data/spec/spec_helper.rb +8 -0
  160. metadata +240 -0
@@ -0,0 +1,130 @@
1
+ ;(function($){
2
+ /**
3
+ * jqGrid (fi) Finnish Translation
4
+ * Jukka Inkeri awot.fi 2010-05-19 Version
5
+ * http://awot.fi
6
+ * Dual licensed under the MIT and GPL licenses:
7
+ * http://www.opensource.org/licenses/mit-license.php
8
+ * http://www.gnu.org/licenses/gpl.html
9
+ **/
10
+ $.jgrid = {
11
+ defaults : {
12
+ //recordtext: "Näytä {0} - {1} / {2}",
13
+ recordtext: " {0}-{1}/{2}",
14
+ emptyrecords: "Ei näytettäviä",
15
+ loadtext: "Haetaan...",
16
+ //pgtext : "Sivu {0} / {1}"
17
+ pgtext : "{0}/{1}"
18
+ },
19
+ search : {
20
+ caption: "Etsi...",
21
+ Find: "Etsi",
22
+ Reset: "Tyhjää",
23
+ odata : ['=', '<>', '<', '<=','>','>=', 'alkaa','ei ala','joukossa','ei joukossa ','loppuu','ei lopu','sis&auml;lt&auml;&auml;','ei sis&auml;ll&auml;'],
24
+ groupOps: [ { op: "JA", text: "kaikki" }, { op: "TAI", text: "mik&auml; tahansa" } ],
25
+ matchText: " match",
26
+ rulesText: " rules"
27
+ },
28
+ edit : {
29
+ addCaption: "Uusi rivi",
30
+ editCaption: "Muokkaa rivi",
31
+ bSubmit: "OK",
32
+ bCancel: "Peru",
33
+ bClose: "Sulje",
34
+ saveData: "Tietoja muutettu! Tallenetaanko?",
35
+ bYes : "K",
36
+ bNo : "E",
37
+ bExit : "Peru",
38
+ msg: {
39
+ required:"pakollinen",
40
+ number:"Anna kelvollinen nro",
41
+ minValue:"arvo oltava >= ",
42
+ maxValue:"arvo oltava <= ",
43
+ email: "virheellinen sposti ",
44
+ integer: "Anna kelvollinen kokonaisluku",
45
+ date: "Anna kelvollinen pvm",
46
+ url: "Ei ole sopiva linkki(URL). Alku oltava ('http://' tai 'https://')",
47
+ nodefined : " ei ole m&auml;&auml;ritelty!",
48
+ novalue : " paluuarvo vaaditaan!",
49
+ customarray : "Custom function should return array!",
50
+ customfcheck : "Custom function should be present in case of custom checking!"
51
+ }
52
+ },
53
+ view : {
54
+ caption: "N&auml; rivi",
55
+ bClose: "Sulje"
56
+ },
57
+ del : {
58
+ caption: "Poista",
59
+ msg: "Poista valitut rivi(t)?",
60
+ bSubmit: "Poista",
61
+ bCancel: "Peru"
62
+ },
63
+ nav : {
64
+ edittext: " ",
65
+ edittitle: "Muokkaa valittu rivi",
66
+ addtext:" ",
67
+ addtitle: "Uusi rivi",
68
+ deltext: " ",
69
+ deltitle: "Poista valittu rivi",
70
+ searchtext: " ",
71
+ searchtitle: "Etsi tietoja",
72
+ refreshtext: "",
73
+ refreshtitle: "Lataa uudelleen",
74
+ alertcap: "Varoitus",
75
+ alerttext: "Valitse rivi",
76
+ viewtext: "",
77
+ viewtitle: "Nayta valitut rivit"
78
+ },
79
+ col : {
80
+ caption: "Nayta/Piilota sarakkeet",
81
+ bSubmit: "OK",
82
+ bCancel: "Peru"
83
+ },
84
+ errors : {
85
+ errcap : "Virhe",
86
+ nourl : "url asettamatta",
87
+ norecords: "Ei muokattavia tietoja",
88
+ model : "Pituus colNames <> colModel!"
89
+ },
90
+ formatter : {
91
+ integer : {thousandsSeparator: "", defaultValue: '0'},
92
+ number : {decimalSeparator:",", thousandsSeparator: "", decimalPlaces: 2, defaultValue: '0,00'},
93
+ currency : {decimalSeparator:",", thousandsSeparator: "", decimalPlaces: 2, prefix: "", suffix:"", defaultValue: '0,00'},
94
+ date : {
95
+ dayNames: [
96
+ "Su", "Ma", "Ti", "Ke", "To", "Pe", "La",
97
+ "Sunnuntai", "Maanantai", "Tiista", "Keskiviikko", "Torstai", "Perjantai", "Lauantai"
98
+ ],
99
+ monthNames: [
100
+ "Tam", "Hel", "Maa", "Huh", "Tou", "Kes", "Hei", "Elo", "Syy", "Lok", "Mar", "Jou",
101
+ "Tammikuu", "Helmikuu", "Maaliskuu", "Huhtikuu", "Toukokuu", "Kes&auml;kuu", "Hein&auml;kuu", "Elokuu", "Syyskuu", "Lokakuu", "Marraskuu", "Joulukuu"
102
+ ],
103
+ AmPm : ["am","pm","AM","PM"],
104
+ S: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},
105
+ srcformat: 'Y-m-d',
106
+ newformat: 'd/m/Y',
107
+ masks : {
108
+ ISO8601Long:"Y-m-d H:i:s",
109
+ ISO8601Short:"Y-m-d",
110
+ ShortDate: "d.m.Y",
111
+ LongDate: "l, F d, Y",
112
+ FullDateTime: "l, F d, Y g:i:s A",
113
+ MonthDay: "F d",
114
+ ShortTime: "g:i A",
115
+ LongTime: "g:i:s A",
116
+ SortableDateTime: "Y-m-d\\TH:i:s",
117
+ UniversalSortableDateTime: "Y-m-d H:i:sO",
118
+ YearMonth: "F, Y"
119
+ },
120
+ reformatAfterEdit : false
121
+ },
122
+ baseLinkUrl: '',
123
+ showAction: '',
124
+ target: '',
125
+ checkbox : {disabled:true},
126
+ idName : 'id'
127
+ }
128
+ };
129
+ // FI
130
+ })(jQuery);
@@ -0,0 +1,126 @@
1
+ ;(function($){
2
+ /**
3
+ * jqGrid French Translation
4
+ * Tony Tomov tony@trirand.com
5
+ * http://trirand.com/blog/
6
+ * Dual licensed under the MIT and GPL licenses:
7
+ * http://www.opensource.org/licenses/mit-license.php
8
+ * http://www.gnu.org/licenses/gpl.html
9
+ **/
10
+ $.jgrid = {
11
+ defaults : {
12
+ recordtext: "Enregistrements {0} - {1} sur {2}",
13
+ emptyrecords: "Aucun enregistrement à afficher",
14
+ loadtext: "Chargement...",
15
+ pgtext : "Page {0} sur {1}"
16
+ },
17
+ search : {
18
+ caption: "Recherche...",
19
+ Find: "Chercher",
20
+ Reset: "Annuler",
21
+ odata : ['égal', 'différent', 'inférieur', 'inférieur ou égal','supérieur','supérieur ou égal', 'commence par','ne commence pas par','est dans',"n'est pas dans",'finit par','ne finit pas par','contient','ne contient pas'],
22
+ groupOps: [ { op: "AND", text: "tous" }, { op: "OR", text: "aucun" } ],
23
+ matchText: " correspondance",
24
+ rulesText: " règles"
25
+ },
26
+ edit : {
27
+ addCaption: "Ajouter",
28
+ editCaption: "Editer",
29
+ bSubmit: "Valider",
30
+ bCancel: "Annuler",
31
+ bClose: "Fermer",
32
+ saveData: "Les données ont changé ! Enregistrer les modifications ?",
33
+ bYes: "Oui",
34
+ bNo: "Non",
35
+ bExit: "Annuler",
36
+ msg: {
37
+ required: "Champ obligatoire",
38
+ number: "Saisissez un nombre correct",
39
+ minValue: "La valeur doit être supérieure ou égale à 0",
40
+ maxValue: "La valeur doit être inférieure ou égale à 0",
41
+ email: "n'est pas un email correct",
42
+ integer: "Saisissez un entier correct",
43
+ url: "n'est pas une adresse correcte. Préfixe requis ('http://' or 'https://')",
44
+ nodefined : " n'est pas défini!",
45
+ novalue : " la valeur de retour est requise!",
46
+ customarray : "Une fonction personnalisée devrait retourner un tableau (array)!",
47
+ customfcheck : "Une fonction personnalisée devrait être présente dans le cas d'une vérification personnalisée!"
48
+ }
49
+ },
50
+ view : {
51
+ caption: "Voir les enregistrement",
52
+ bClose: "Fermer"
53
+ },
54
+ del : {
55
+ caption: "Supprimer",
56
+ msg: "Supprimer les enregistrements sélectionnés ?",
57
+ bSubmit: "Supprimer",
58
+ bCancel: "Annuler"
59
+ },
60
+ nav : {
61
+ edittext: " ",
62
+ edittitle: "Editer la ligne sélectionnée",
63
+ addtext:" ",
64
+ addtitle: "Ajouter une ligne",
65
+ deltext: " ",
66
+ deltitle: "Supprimer la ligne sélectionnée",
67
+ searchtext: " ",
68
+ searchtitle: "Chercher un enregistrement",
69
+ refreshtext: "",
70
+ refreshtitle: "Recharger le tableau",
71
+ alertcap: "Avertissement",
72
+ alerttext: "Veuillez sélectionner une ligne",
73
+ viewtext: "",
74
+ viewtitle: "Afficher la ligne sélectionnée"
75
+ },
76
+ col : {
77
+ caption: "Afficher/Masquer les colonnes",
78
+ bSubmit: "Valider",
79
+ bCancel: "Annuler"
80
+ },
81
+ errors : {
82
+ errcap : "Erreur",
83
+ nourl : "Aucune adresse n'est paramétrée",
84
+ norecords: "Aucun enregistrement à traiter",
85
+ model : "Nombre de titres (colNames) <> Nombre de données (colModel)!"
86
+ },
87
+ formatter : {
88
+ integer : {thousandsSeparator: " ", defaultValue: '0'},
89
+ number : {decimalSeparator:",", thousandsSeparator: " ", decimalPlaces: 2, defaultValue: '0,00'},
90
+ currency : {decimalSeparator:",", thousandsSeparator: " ", decimalPlaces: 2, prefix: "", suffix:"", defaultValue: '0,00'},
91
+ date : {
92
+ dayNames: [
93
+ "Dim", "Lun", "Mar", "Mer", "Jeu", "Ven", "Sam",
94
+ "Dimanche", "Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi"
95
+ ],
96
+ monthNames: [
97
+ "Jan", "Fév", "Mar", "Avr", "Mai", "Jui", "Jul", "Aou", "Sep", "Oct", "Nov", "Déc",
98
+ "Janvier", "Février", "Mars", "Avril", "Mai", "Juin", "Juillet", "Aout", "Septembre", "Octobre", "Novembre", "Décembre"
99
+ ],
100
+ AmPm : ["am","pm","AM","PM"],
101
+ S: function (j) {return j == 1 ? 'er' : 'e';},
102
+ srcformat: 'Y-m-d',
103
+ newformat: 'd/m/Y',
104
+ masks : {
105
+ ISO8601Long:"Y-m-d H:i:s",
106
+ ISO8601Short:"Y-m-d",
107
+ ShortDate: "n/j/Y",
108
+ LongDate: "l, F d, Y",
109
+ FullDateTime: "l, F d, Y g:i:s A",
110
+ MonthDay: "F d",
111
+ ShortTime: "g:i A",
112
+ LongTime: "g:i:s A",
113
+ SortableDateTime: "Y-m-d\\TH:i:s",
114
+ UniversalSortableDateTime: "Y-m-d H:i:sO",
115
+ YearMonth: "F, Y"
116
+ },
117
+ reformatAfterEdit : false
118
+ },
119
+ baseLinkUrl: '',
120
+ showAction: '',
121
+ target: '',
122
+ checkbox : {disabled:true},
123
+ idName : 'id'
124
+ }
125
+ };
126
+ })(jQuery);
@@ -0,0 +1,127 @@
1
+ ;(function($){
2
+ /**
3
+ * jqGrid Hebrew Translation
4
+ * Shuki Shukrun shukrun.shuki@gmail.com
5
+ * http://trirand.com/blog/
6
+ * Dual licensed under the MIT and GPL licenses:
7
+ * http://www.opensource.org/licenses/mit-license.php
8
+ * http://www.gnu.org/licenses/gpl.html
9
+ **/
10
+ $.jgrid = {
11
+ defaults : {
12
+ recordtext: "מציג {0} - {1} מתוך {2}",
13
+ emptyrecords: "אין רשומות להציג",
14
+ loadtext: "טוען...",
15
+ pgtext : "דף {0} מתוך {1}"
16
+ },
17
+ search : {
18
+ caption: "מחפש...",
19
+ Find: "חפש",
20
+ Reset: "התחל",
21
+ odata : ['שווה', 'לא שווה', 'קטן', 'קטן או שווה','גדול','גדול או שווה', 'מתחיל ב','לא מתחיל ב','נמצא ב','לא נמצא ב','מסתיים ב','לא מסתיים ב','מכיל','לא מכיל'],
22
+ groupOps: [ { op: "AND", text: "הכל" }, { op: "OR", text: "אחד מ" } ],
23
+ matchText: " תואם",
24
+ rulesText: " חוקים"
25
+ },
26
+ edit : {
27
+ addCaption: "הוסף רשומה",
28
+ editCaption: "ערוך רשומה",
29
+ bSubmit: "שלח",
30
+ bCancel: "בטל",
31
+ bClose: "סגור",
32
+ saveData: "נתונים השתנו! לשמור?",
33
+ bYes : "כן",
34
+ bNo : "לא",
35
+ bExit : "בטל",
36
+ msg: {
37
+ required:"שדה חובה",
38
+ number:"אנא, הכנס מספר תקין",
39
+ minValue:"ערך צריך להיות גדול או שווה ל ",
40
+ maxValue:"ערך צריך להיות קטן או שווה ל ",
41
+ email: "היא לא כתובת איימל תקינה",
42
+ integer: "אנא, הכנס מספר שלם",
43
+ date: "אנא, הכנס תאריך תקין",
44
+ url: "הכתובת אינה תקינה. דרושה תחילית ('http://' או 'https://')",
45
+ nodefined : " is not defined!",
46
+ novalue : " return value is required!",
47
+ customarray : "Custom function should return array!",
48
+ customfcheck : "Custom function should be present in case of custom checking!"
49
+ }
50
+ },
51
+ view : {
52
+ caption: "הצג רשומה",
53
+ bClose: "סגור"
54
+ },
55
+ del : {
56
+ caption: "מחק",
57
+ msg: "האם למחוק את הרשומה/ות המסומנות?",
58
+ bSubmit: "מחק",
59
+ bCancel: "בטל"
60
+ },
61
+ nav : {
62
+ edittext: "",
63
+ edittitle: "ערוך שורה מסומנת",
64
+ addtext:"",
65
+ addtitle: "הוסף שורה חדשה",
66
+ deltext: "",
67
+ deltitle: "מחק שורה מסומנת",
68
+ searchtext: "",
69
+ searchtitle: "חפש רשומות",
70
+ refreshtext: "",
71
+ refreshtitle: "טען גריד מחדש",
72
+ alertcap: "אזהרה",
73
+ alerttext: "אנא, בחר שורה",
74
+ viewtext: "",
75
+ viewtitle: "הצג שורה מסומנת"
76
+ },
77
+ col : {
78
+ caption: "הצג/הסתר עמודות",
79
+ bSubmit: "שלח",
80
+ bCancel: "בטל"
81
+ },
82
+ errors : {
83
+ errcap : "שגיאה",
84
+ nourl : "לא הוגדרה כתובת url",
85
+ norecords: "אין רשומות לעבד",
86
+ model : "אורך של colNames <> colModel!"
87
+ },
88
+ formatter : {
89
+ integer : {thousandsSeparator: " ", defaultValue: '0'},
90
+ number : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, defaultValue: '0.00'},
91
+ currency : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, prefix: "", suffix:"", defaultValue: '0.00'},
92
+ date : {
93
+ dayNames: [
94
+ "א", "ב", "ג", "ד", "ה", "ו", "ש",
95
+ "ראשון", "שני", "שלישי", "רביעי", "חמישי", "שישי", "שבת"
96
+ ],
97
+ monthNames: [
98
+ "ינו", "פבר", "מרץ", "אפר", "מאי", "יונ", "יול", "אוג", "ספט", "אוק", "נוב", "דצמ",
99
+ "ינואר", "פברואר", "מרץ", "אפריל", "מאי", "יוני", "יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר"
100
+ ],
101
+ AmPm : ["לפני הצהרים","אחר הצהרים","לפני הצהרים","אחר הצהרים"],
102
+ S: function (j) {return j < 11 || j > 13 ? ['', '', '', ''][Math.min((j - 1) % 10, 3)] : ''},
103
+ srcformat: 'Y-m-d',
104
+ newformat: 'd/m/Y',
105
+ masks : {
106
+ ISO8601Long:"Y-m-d H:i:s",
107
+ ISO8601Short:"Y-m-d",
108
+ ShortDate: "n/j/Y",
109
+ LongDate: "l, F d, Y",
110
+ FullDateTime: "l, F d, Y g:i:s A",
111
+ MonthDay: "F d",
112
+ ShortTime: "g:i A",
113
+ LongTime: "g:i:s A",
114
+ SortableDateTime: "Y-m-d\\TH:i:s",
115
+ UniversalSortableDateTime: "Y-m-d H:i:sO",
116
+ YearMonth: "F, Y"
117
+ },
118
+ reformatAfterEdit : false
119
+ },
120
+ baseLinkUrl: '',
121
+ showAction: '',
122
+ target: '',
123
+ checkbox : {disabled:true},
124
+ idName : 'id'
125
+ }
126
+ };
127
+ })(jQuery);
@@ -0,0 +1,129 @@
1
+ ;(function($){
2
+ /**
3
+ * jqGrid Hungarian Translation
4
+ * Őrszigety Ádám udx6bs@freemail.hu
5
+ * http://trirand.com/blog/
6
+ * Dual licensed under the MIT and GPL licenses:
7
+ * http://www.opensource.org/licenses/mit-license.php
8
+ * http://www.gnu.org/licenses/gpl.html
9
+ **/
10
+
11
+ $.jgrid = {
12
+ defaults : {
13
+ recordtext: "Oldal {0} - {1} / {2}",
14
+ emptyrecords: "Nincs találat",
15
+ loadtext: "Betöltés...",
16
+ pgtext : "Oldal {0} / {1}"
17
+ },
18
+ search : {
19
+ caption: "Keresés...",
20
+ Find: "Keres",
21
+ Reset: "Alapértelmezett",
22
+ odata : ['egyenlő', 'nem egyenlő', 'kevesebb', 'kevesebb vagy egyenlő','nagyobb','nagyobb vagy egyenlő', 'ezzel kezdődik','nem ezzel kezdődik','tartalmaz','nem tartalmaz','végződik','nem végződik','tartalmaz','nem tartalmaz'],
23
+ groupOps: [ { op: "AND", text: "all" }, { op: "OR", text: "any" } ],
24
+ matchText: " match",
25
+ rulesText: " rules"
26
+ },
27
+ edit : {
28
+ addCaption: "Új tétel",
29
+ editCaption: "Tétel szerkesztése",
30
+ bSubmit: "Mentés",
31
+ bCancel: "Mégse",
32
+ bClose: "Bezárás",
33
+ saveData: "A tétel megváltozott! Tétel mentése?",
34
+ bYes : "Igen",
35
+ bNo : "Nem",
36
+ bExit : "Mégse",
37
+ msg: {
38
+ required:"Kötelező mező",
39
+ number:"Kérjük, adjon meg egy helyes számot",
40
+ minValue:"Nagyobb vagy egyenlőnek kell lenni mint ",
41
+ maxValue:"Kisebb vagy egyenlőnek kell lennie mint",
42
+ email: "hibás emailcím",
43
+ integer: "Kérjük adjon meg egy helyes egész számot",
44
+ date: "Kérjük adjon meg egy helyes dátumot",
45
+ url: "nem helyes cím. Előtag kötelező ('http://' vagy 'https://')",
46
+ nodefined : " nem definiált!",
47
+ novalue : " visszatérési érték kötelező!!",
48
+ customarray : "Custom function should return array!",
49
+ customfcheck : "Custom function should be present in case of custom checking!"
50
+
51
+ }
52
+ },
53
+ view : {
54
+ caption: "Tétel megtekintése",
55
+ bClose: "Bezárás"
56
+ },
57
+ del : {
58
+ caption: "Törlés",
59
+ msg: "Kiválaztott tétel(ek) törlése?",
60
+ bSubmit: "Törlés",
61
+ bCancel: "Mégse"
62
+ },
63
+ nav : {
64
+ edittext: "",
65
+ edittitle: "Tétel szerkesztése",
66
+ addtext:"",
67
+ addtitle: "Új tétel hozzáadása",
68
+ deltext: "",
69
+ deltitle: "Tétel törlése",
70
+ searchtext: "",
71
+ searchtitle: "Keresés",
72
+ refreshtext: "",
73
+ refreshtitle: "Frissítés",
74
+ alertcap: "Figyelmeztetés",
75
+ alerttext: "Kérem válasszon tételt.",
76
+ viewtext: "",
77
+ viewtitle: "Tétel megtekintése"
78
+ },
79
+ col : {
80
+ caption: "Oszlopok kiválasztása",
81
+ bSubmit: "Ok",
82
+ bCancel: "Mégse"
83
+ },
84
+ errors : {
85
+ errcap : "Hiba",
86
+ nourl : "Nincs URL beállítva",
87
+ norecords: "Nincs feldolgozásra váró tétel",
88
+ model : "colNames és colModel hossza nem egyenlő!"
89
+ },
90
+ formatter : {
91
+ integer : {thousandsSeparator: " ", defaultValue: '0'},
92
+ number : {decimalSeparator:",", thousandsSeparator: " ", decimalPlaces: 2, defaultValue: '0,00'},
93
+ currency : {decimalSeparator:",", thousandsSeparator: " ", decimalPlaces: 2, prefix: "", suffix:"", defaultValue: '0,00'},
94
+ date : {
95
+ dayNames: [
96
+ "Va", "Hé", "Ke", "Sze", "Csü", "Pé", "Szo",
97
+ "Vasárnap", "Hétfő", "Kedd", "Szerda", "Csütörtök", "Péntek", "Szombat"
98
+ ],
99
+ monthNames: [
100
+ "Jan", "Feb", "Már", "Ápr", "Máj", "Jún", "Júl", "Aug", "Szep", "Okt", "Nov", "Dec",
101
+ "Január", "Február", "Március", "Áprili", "Május", "Június", "Július", "Augusztus", "Szeptember", "Október", "November", "December"
102
+ ],
103
+ AmPm : ["de","du","DE","DU"],
104
+ S: function (j) {return '.-ik';},
105
+ srcformat: 'Y-m-d',
106
+ newformat: 'Y/m/d',
107
+ masks : {
108
+ ISO8601Long:"Y-m-d H:i:s",
109
+ ISO8601Short:"Y-m-d",
110
+ ShortDate: "Y/j/n",
111
+ LongDate: "Y. F hó d., l",
112
+ FullDateTime: "l, F d, Y g:i:s A",
113
+ MonthDay: "F d",
114
+ ShortTime: "a g:i",
115
+ LongTime: "a g:i:s",
116
+ SortableDateTime: "Y-m-d\\TH:i:s",
117
+ UniversalSortableDateTime: "Y-m-d H:i:sO",
118
+ YearMonth: "Y, F"
119
+ },
120
+ reformatAfterEdit : false
121
+ },
122
+ baseLinkUrl: '',
123
+ showAction: '',
124
+ target: '',
125
+ checkbox : {disabled:true},
126
+ idName : 'id'
127
+ }
128
+ };
129
+ })(jQuery);
@@ -0,0 +1,126 @@
1
+ ;(function($){
2
+ /**
3
+ * jqGrid Icelandic Translation
4
+ * jtm@hi.is Univercity of Iceland
5
+ * Dual licensed under the MIT and GPL licenses:
6
+ * http://www.opensource.org/licenses/mit-license.php
7
+ * http://www.gnu.org/licenses/gpl.html
8
+ **/
9
+ $.jgrid = {
10
+ defaults : {
11
+ recordtext: "View {0} - {1} of {2}",
12
+ emptyrecords: "No records to view",
13
+ loadtext: "Hleður...",
14
+ pgtext : "Page {0} of {1}"
15
+ },
16
+ search : {
17
+ caption: "Leita...",
18
+ Find: "Leita",
19
+ Reset: "Endursetja",
20
+ odata : ['equal', 'not equal', 'less', 'less or equal','greater','greater or equal', 'begins with','does not begin with','is in','is not in','ends with','does not end with','contains','does not contain'],
21
+ groupOps: [ { op: "AND", text: "all" }, { op: "OR", text: "any" } ],
22
+ matchText: " match",
23
+ rulesText: " rules"
24
+ },
25
+ edit : {
26
+ addCaption: "Add Record",
27
+ editCaption: "Edit Record",
28
+ bSubmit: "Vista",
29
+ bCancel: "Hætta við",
30
+ bClose: "Loka",
31
+ saveData: "Data has been changed! Save changes?",
32
+ bYes : "Yes",
33
+ bNo : "No",
34
+ bExit : "Cancel",
35
+ msg: {
36
+ required:"Reitur er nauðsynlegur",
37
+ number:"Vinsamlega settu inn tölu",
38
+ minValue:"gildi verður að vera meira en eða jafnt og ",
39
+ maxValue:"gildi verður að vera minna en eða jafnt og ",
40
+ email: "er ekki löglegt email",
41
+ integer: "Vinsamlega settu inn tölu",
42
+ date: "Please, enter valid date value",
43
+ url: "is not a valid URL. Prefix required ('http://' or 'https://')",
44
+ nodefined : " is not defined!",
45
+ novalue : " return value is required!",
46
+ customarray : "Custom function should return array!",
47
+ customfcheck : "Custom function should be present in case of custom checking!"
48
+ }
49
+ },
50
+ view : {
51
+ caption: "View Record",
52
+ bClose: "Close"
53
+ },
54
+ del : {
55
+ caption: "Eyða",
56
+ msg: "Eyða völdum færslum ?",
57
+ bSubmit: "Eyða",
58
+ bCancel: "Hætta við"
59
+ },
60
+ nav : {
61
+ edittext: " ",
62
+ edittitle: "Breyta færslu",
63
+ addtext:" ",
64
+ addtitle: "Ný færsla",
65
+ deltext: " ",
66
+ deltitle: "Eyða færslu",
67
+ searchtext: " ",
68
+ searchtitle: "Leita",
69
+ refreshtext: "",
70
+ refreshtitle: "Endurhlaða",
71
+ alertcap: "Viðvörun",
72
+ alerttext: "Vinsamlega veldu færslu",
73
+ viewtext: "",
74
+ viewtitle: "View selected row"
75
+ },
76
+ col : {
77
+ caption: "Sýna / fela dálka",
78
+ bSubmit: "Vista",
79
+ bCancel: "Hætta við"
80
+ },
81
+ errors : {
82
+ errcap : "Villa",
83
+ nourl : "Vantar slóð",
84
+ norecords: "Engar færslur valdar",
85
+ model : "Length of colNames <> colModel!"
86
+ },
87
+ formatter : {
88
+ integer : {thousandsSeparator: " ", defaultValue: '0'},
89
+ number : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, defaultValue: '0.00'},
90
+ currency : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, prefix: "", suffix:"", defaultValue: '0.00'},
91
+ date : {
92
+ dayNames: [
93
+ "Sun", "Mon", "Tue", "Wed", "Thr", "Fri", "Sat",
94
+ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"
95
+ ],
96
+ monthNames: [
97
+ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec",
98
+ "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"
99
+ ],
100
+ AmPm : ["am","pm","AM","PM"],
101
+ S: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},
102
+ srcformat: 'Y-m-d',
103
+ newformat: 'd/m/Y',
104
+ masks : {
105
+ ISO8601Long:"Y-m-d H:i:s",
106
+ ISO8601Short:"Y-m-d",
107
+ ShortDate: "n/j/Y",
108
+ LongDate: "l, F d, Y",
109
+ FullDateTime: "l, F d, Y g:i:s A",
110
+ MonthDay: "F d",
111
+ ShortTime: "g:i A",
112
+ LongTime: "g:i:s A",
113
+ SortableDateTime: "Y-m-d\\TH:i:s",
114
+ UniversalSortableDateTime: "Y-m-d H:i:sO",
115
+ YearMonth: "F, Y"
116
+ },
117
+ reformatAfterEdit : false
118
+ },
119
+ baseLinkUrl: '',
120
+ showAction: '',
121
+ target: '',
122
+ checkbox : {disabled:true},
123
+ idName : 'id'
124
+ }
125
+ };
126
+ })(jQuery);
@@ -0,0 +1 @@
1
+ (function(a){a.jgrid={defaults:{recordtext:"Visualizzati {0} - {1} di {2}",emptyrecords:"Nessun record da visualizzare",loadtext:"Caricamento...",pgtext:"Pagina {0} di {1}"},search:{caption:"Ricerca...",Find:"Cerca",Reset:"Pulisci",odata:["uguale","diverso","minore","minore o uguale","maggiore","maggiore o uguale","inizia con","non inizia con","in","non in","termina con","non termina con","contiene","non contiene"],groupOps:[{op:"AND",text:"tutto"},{op:"OR",text:"almeno uno"}],matchText:" corrisponde",rulesText:" regole"},edit:{addCaption:"Aggiungi Record",editCaption:"Modifica Record",bSubmit:"Invia",bCancel:"Chiudi",bClose:"Chiudi",saveData:"Alcuni dati modificati! Salvare i cambiamenti?",bYes:"Si",bNo:"No",bExit:"Esci",msg:{required:"Campo richiesto",number:"Per favore, inserisci un valore valido",minValue:"il valore deve essere maggiore o uguale a ",maxValue:"il valore deve essere minore o uguale a",email:"e-mail non corretta",integer:"Per favore, inserisci un numero intero valido",date:"Per favore, inserisci una data valida",url:"URL non valido. Prefisso richiesto ('http://' or 'https://')",nodefined:" non � definito!",novalue:" valore di ritorno richiesto!",customarray:"La function custon deve tornare un array!",customfcheck:"La function custom deve esistere per il custom checking!"}},view:{caption:"Visualizzazione Record",bClose:"Chiudi"},del:{caption:"Cancella",msg:"Cancellare record selezionato/i?",bSubmit:"Cancella",bCancel:"Annulla"},nav:{edittext:" ",edittitle:"Modifica record selezionato",addtext:" ",addtitle:"Aggiungi nuovo record",deltext:" ",deltitle:"Cancella record selezionato",searchtext:" ",searchtitle:"Ricerca record",refreshtext:"",refreshtitle:"Aggiorna griglia",alertcap:"Attenzione",alerttext:"Per favore, seleziona un record",viewtext:"",viewtitle:"Visualizza riga selezionata"},col:{caption:"Mostra/Nascondi Colonne",bSubmit:"Invia",bCancel:"Annulla"},errors:{errcap:"Errore",nourl:"Url non settata",norecords:"Nessun record da elaborare",model:"Lunghezza di colNames &lt;&gt; colModel!"},formatter:{integer:{thousandsSeparator:" ",defaultValue:"0"},number:{decimalSeparator:",",thousandsSeparator:" ",decimalPlaces:2,defaultValue:"0,00"},currency:{decimalSeparator:",",thousandsSeparator:" ",decimalPlaces:2,prefix:"",suffix:"",defaultValue:"0,00"},date:{dayNames:["Dom","Lun","Mar","Mer","Gio","Ven","Sab","Domenica","Luned�","Marted�","Mercoled�","Gioved�","Venerd�","Sabato"],monthNames:["Gen","Feb","Mar","Apr","Mag","Gui","Lug","Ago","Set","Ott","Nov","Dic","Genneio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Movembre","Dicembre"],AmPm:["am","pm","AM","PM"],S:function(b){return b<11||b>13?["st","nd","rd","th"][Math.min((b-1)%10,3)]:"th"},srcformat:"Y-m-d",newformat:"d/m/Y",masks:{ISO8601Long:"Y-m-d H:i:s",ISO8601Short:"Y-m-d",ShortDate:"n/j/Y",LongDate:"l, F d, Y",FullDateTime:"l, F d, Y g:i:s A",MonthDay:"F d",ShortTime:"g:i A",LongTime:"g:i:s A",SortableDateTime:"Y-m-d\\TH:i:s",UniversalSortableDateTime:"Y-m-d H:i:sO",YearMonth:"F, Y"},reformatAfterEdit:false},baseLinkUrl:"",showAction:"",target:"",checkbox:{disabled:true},idName:"id"}}})(jQuery);