bootstrap-table-locale-all.js 117 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774
  1. (function (global, factory) {
  2. if (typeof define === "function" && define.amd) {
  3. define([], factory);
  4. } else if (typeof exports !== "undefined") {
  5. factory();
  6. } else {
  7. var mod = {
  8. exports: {}
  9. };
  10. factory();
  11. global.bootstrapTableAfZA = mod.exports;
  12. }
  13. })(this, function () {
  14. 'use strict';
  15. /**
  16. * Bootstrap Table Afrikaans translation
  17. * Author: Phillip Kruger <phillip.kruger@gmail.com>
  18. */
  19. (function ($) {
  20. $.fn.bootstrapTable.locales['af-ZA'] = {
  21. formatLoadingMessage: function formatLoadingMessage() {
  22. return 'Besig om te laai, wag asseblief';
  23. },
  24. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  25. return pageNumber + ' rekords per bladsy';
  26. },
  27. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  28. return 'Resultate ' + pageFrom + ' tot ' + pageTo + ' van ' + totalRows + ' rye';
  29. },
  30. formatDetailPagination: function formatDetailPagination(totalRows) {
  31. return 'Showing ' + totalRows + ' rows';
  32. },
  33. formatSearch: function formatSearch() {
  34. return 'Soek';
  35. },
  36. formatNoMatches: function formatNoMatches() {
  37. return 'Geen rekords gevind nie';
  38. },
  39. formatPaginationSwitch: function formatPaginationSwitch() {
  40. return 'Wys/verberg bladsy nummering';
  41. },
  42. formatRefresh: function formatRefresh() {
  43. return 'Herlaai';
  44. },
  45. formatToggle: function formatToggle() {
  46. return 'Wissel';
  47. },
  48. formatColumns: function formatColumns() {
  49. return 'Kolomme';
  50. },
  51. formatFullscreen: function formatFullscreen() {
  52. return 'Fullscreen';
  53. },
  54. formatAllRows: function formatAllRows() {
  55. return 'All';
  56. },
  57. formatAutoRefresh: function formatAutoRefresh() {
  58. return 'Auto Refresh';
  59. },
  60. formatExport: function formatExport() {
  61. return 'Export data';
  62. },
  63. formatClearFilters: function formatClearFilters() {
  64. return 'Clear filters';
  65. },
  66. formatJumpto: function formatJumpto() {
  67. return 'GO';
  68. },
  69. formatAdvancedSearch: function formatAdvancedSearch() {
  70. return 'Advanced search';
  71. },
  72. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  73. return 'Close';
  74. }
  75. };
  76. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['af-ZA']);
  77. })(jQuery);
  78. });
  79. (function (global, factory) {
  80. if (typeof define === "function" && define.amd) {
  81. define([], factory);
  82. } else if (typeof exports !== "undefined") {
  83. factory();
  84. } else {
  85. var mod = {
  86. exports: {}
  87. };
  88. factory();
  89. global.bootstrapTableArSA = mod.exports;
  90. }
  91. })(this, function () {
  92. 'use strict';
  93. /**
  94. * Bootstrap Table English translation
  95. * Author: Zhixin Wen<wenzhixin2010@gmail.com>
  96. */
  97. (function ($) {
  98. $.fn.bootstrapTable.locales['ar-SA'] = {
  99. formatLoadingMessage: function formatLoadingMessage() {
  100. return 'جاري التحميل, يرجى الإنتظار';
  101. },
  102. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  103. return pageNumber + ' \u0633\u062C\u0644 \u0644\u0643\u0644 \u0635\u0641\u062D\u0629';
  104. },
  105. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  106. return '\u0627\u0644\u0638\u0627\u0647\u0631 ' + pageFrom + ' \u0625\u0644\u0649 ' + pageTo + ' \u0645\u0646 ' + totalRows + ' \u0633\u062C\u0644';
  107. },
  108. formatDetailPagination: function formatDetailPagination(totalRows) {
  109. return 'Showing ' + totalRows + ' rows';
  110. },
  111. formatSearch: function formatSearch() {
  112. return 'بحث';
  113. },
  114. formatNoMatches: function formatNoMatches() {
  115. return 'لا توجد نتائج مطابقة للبحث';
  116. },
  117. formatPaginationSwitch: function formatPaginationSwitch() {
  118. /* eslint-disable no-useless-escape */
  119. return 'إخفاء\إظهار ترقيم الصفحات';
  120. },
  121. formatRefresh: function formatRefresh() {
  122. return 'تحديث';
  123. },
  124. formatToggle: function formatToggle() {
  125. return 'تغيير';
  126. },
  127. formatColumns: function formatColumns() {
  128. return 'أعمدة';
  129. },
  130. formatFullscreen: function formatFullscreen() {
  131. return 'Fullscreen';
  132. },
  133. formatAllRows: function formatAllRows() {
  134. return 'All';
  135. },
  136. formatAutoRefresh: function formatAutoRefresh() {
  137. return 'Auto Refresh';
  138. },
  139. formatExport: function formatExport() {
  140. return 'Export data';
  141. },
  142. formatClearFilters: function formatClearFilters() {
  143. return 'Clear filters';
  144. },
  145. formatJumpto: function formatJumpto() {
  146. return 'GO';
  147. },
  148. formatAdvancedSearch: function formatAdvancedSearch() {
  149. return 'Advanced search';
  150. },
  151. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  152. return 'Close';
  153. }
  154. };
  155. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ar-SA']);
  156. })(jQuery);
  157. });
  158. (function (global, factory) {
  159. if (typeof define === "function" && define.amd) {
  160. define([], factory);
  161. } else if (typeof exports !== "undefined") {
  162. factory();
  163. } else {
  164. var mod = {
  165. exports: {}
  166. };
  167. factory();
  168. global.bootstrapTableCaES = mod.exports;
  169. }
  170. })(this, function () {
  171. 'use strict';
  172. /**
  173. * Bootstrap Table Catalan translation
  174. * Authors: Marc Pina<iwalkalone69@gmail.com>
  175. * Claudi Martinez<claudix.kernel@gmail.com>
  176. */
  177. (function ($) {
  178. $.fn.bootstrapTable.locales['ca-ES'] = {
  179. formatLoadingMessage: function formatLoadingMessage() {
  180. return 'Espereu, si us plau';
  181. },
  182. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  183. return pageNumber + ' resultats per p\xE0gina';
  184. },
  185. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  186. return 'Mostrant de ' + pageFrom + ' fins ' + pageTo + ' - total ' + totalRows + ' resultats';
  187. },
  188. formatDetailPagination: function formatDetailPagination(totalRows) {
  189. return 'Showing ' + totalRows + ' rows';
  190. },
  191. formatSearch: function formatSearch() {
  192. return 'Cerca';
  193. },
  194. formatNoMatches: function formatNoMatches() {
  195. return 'No s\'han trobat resultats';
  196. },
  197. formatPaginationSwitch: function formatPaginationSwitch() {
  198. return 'Amaga/Mostra paginació';
  199. },
  200. formatRefresh: function formatRefresh() {
  201. return 'Refresca';
  202. },
  203. formatToggle: function formatToggle() {
  204. return 'Alterna formatació';
  205. },
  206. formatColumns: function formatColumns() {
  207. return 'Columnes';
  208. },
  209. formatFullscreen: function formatFullscreen() {
  210. return 'Fullscreen';
  211. },
  212. formatAllRows: function formatAllRows() {
  213. return 'Tots';
  214. },
  215. formatAutoRefresh: function formatAutoRefresh() {
  216. return 'Auto Refresh';
  217. },
  218. formatExport: function formatExport() {
  219. return 'Export data';
  220. },
  221. formatClearFilters: function formatClearFilters() {
  222. return 'Clear filters';
  223. },
  224. formatJumpto: function formatJumpto() {
  225. return 'GO';
  226. },
  227. formatAdvancedSearch: function formatAdvancedSearch() {
  228. return 'Advanced search';
  229. },
  230. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  231. return 'Close';
  232. }
  233. };
  234. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ca-ES']);
  235. })(jQuery);
  236. });
  237. (function (global, factory) {
  238. if (typeof define === "function" && define.amd) {
  239. define([], factory);
  240. } else if (typeof exports !== "undefined") {
  241. factory();
  242. } else {
  243. var mod = {
  244. exports: {}
  245. };
  246. factory();
  247. global.bootstrapTableCsCZ = mod.exports;
  248. }
  249. })(this, function () {
  250. 'use strict';
  251. /**
  252. * Bootstrap Table Czech translation
  253. * Author: Lukas Kral (monarcha@seznam.cz)
  254. * Author: Jakub Svestka <svestka1999@gmail.com>
  255. */
  256. (function ($) {
  257. $.fn.bootstrapTable.locales['cs-CZ'] = {
  258. formatLoadingMessage: function formatLoadingMessage() {
  259. return 'Čekejte, prosím';
  260. },
  261. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  262. return pageNumber + ' polo\u017Eek na str\xE1nku';
  263. },
  264. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  265. return 'Zobrazena ' + pageFrom + '. - ' + pageTo + '. polo\u017Eka z celkov\xFDch ' + totalRows;
  266. },
  267. formatDetailPagination: function formatDetailPagination(totalRows) {
  268. return 'Showing ' + totalRows + ' rows';
  269. },
  270. formatSearch: function formatSearch() {
  271. return 'Vyhledávání';
  272. },
  273. formatNoMatches: function formatNoMatches() {
  274. return 'Nenalezena žádná vyhovující položka';
  275. },
  276. formatPaginationSwitch: function formatPaginationSwitch() {
  277. return 'Skrýt/Zobrazit stránkování';
  278. },
  279. formatRefresh: function formatRefresh() {
  280. return 'Aktualizovat';
  281. },
  282. formatToggle: function formatToggle() {
  283. return 'Přepni';
  284. },
  285. formatColumns: function formatColumns() {
  286. return 'Sloupce';
  287. },
  288. formatFullscreen: function formatFullscreen() {
  289. return 'Fullscreen';
  290. },
  291. formatAllRows: function formatAllRows() {
  292. return 'Vše';
  293. },
  294. formatAutoRefresh: function formatAutoRefresh() {
  295. return 'Auto Refresh';
  296. },
  297. formatExport: function formatExport() {
  298. return 'Export data';
  299. },
  300. formatClearFilters: function formatClearFilters() {
  301. return 'Clear filters';
  302. },
  303. formatJumpto: function formatJumpto() {
  304. return 'GO';
  305. },
  306. formatAdvancedSearch: function formatAdvancedSearch() {
  307. return 'Advanced search';
  308. },
  309. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  310. return 'Close';
  311. }
  312. };
  313. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['cs-CZ']);
  314. })(jQuery);
  315. });
  316. (function (global, factory) {
  317. if (typeof define === "function" && define.amd) {
  318. define([], factory);
  319. } else if (typeof exports !== "undefined") {
  320. factory();
  321. } else {
  322. var mod = {
  323. exports: {}
  324. };
  325. factory();
  326. global.bootstrapTableDaDK = mod.exports;
  327. }
  328. })(this, function () {
  329. 'use strict';
  330. /**
  331. * Bootstrap Table danish translation
  332. * Author: Your Name Jan Borup Coyle, github@coyle.dk
  333. */
  334. (function ($) {
  335. $.fn.bootstrapTable.locales['da-DK'] = {
  336. formatLoadingMessage: function formatLoadingMessage() {
  337. return 'Indlæser, vent venligst';
  338. },
  339. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  340. return pageNumber + ' poster pr side';
  341. },
  342. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  343. return 'Viser ' + pageFrom + ' til ' + pageTo + ' af ' + totalRows + ' r\xE6kke' + (totalRows > 1 ? 'r' : '');
  344. },
  345. formatDetailPagination: function formatDetailPagination(totalRows) {
  346. return 'Viser ' + totalRows + ' r\xE6kke' + (totalRows > 1 ? 'r' : '');
  347. },
  348. formatSearch: function formatSearch() {
  349. return 'Søg';
  350. },
  351. formatNoMatches: function formatNoMatches() {
  352. return 'Ingen poster fundet';
  353. },
  354. formatPaginationSwitch: function formatPaginationSwitch() {
  355. return 'Skjul/vis nummerering';
  356. },
  357. formatRefresh: function formatRefresh() {
  358. return 'Opdater';
  359. },
  360. formatToggle: function formatToggle() {
  361. return 'Skift';
  362. },
  363. formatColumns: function formatColumns() {
  364. return 'Kolonner';
  365. },
  366. formatFullscreen: function formatFullscreen() {
  367. return 'Fullscreen';
  368. },
  369. formatAllRows: function formatAllRows() {
  370. return 'Alle';
  371. },
  372. formatAutoRefresh: function formatAutoRefresh() {
  373. return 'Auto Refresh';
  374. },
  375. formatExport: function formatExport() {
  376. return 'Eksporter';
  377. },
  378. formatClearFilters: function formatClearFilters() {
  379. return 'Ryd filtre';
  380. },
  381. formatJumpto: function formatJumpto() {
  382. return 'GO';
  383. },
  384. formatAdvancedSearch: function formatAdvancedSearch() {
  385. return 'Advanced search';
  386. },
  387. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  388. return 'Close';
  389. }
  390. };
  391. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['da-DK']);
  392. })(jQuery);
  393. });
  394. (function (global, factory) {
  395. if (typeof define === "function" && define.amd) {
  396. define([], factory);
  397. } else if (typeof exports !== "undefined") {
  398. factory();
  399. } else {
  400. var mod = {
  401. exports: {}
  402. };
  403. factory();
  404. global.bootstrapTableDeDE = mod.exports;
  405. }
  406. })(this, function () {
  407. 'use strict';
  408. /**
  409. * Bootstrap Table German translation
  410. * Author: Paul Mohr - Sopamo<p.mohr@sopamo.de>
  411. */
  412. (function ($) {
  413. $.fn.bootstrapTable.locales['de-DE'] = {
  414. formatLoadingMessage: function formatLoadingMessage() {
  415. return 'Lade, bitte warten';
  416. },
  417. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  418. return pageNumber + ' Zeilen pro Seite.';
  419. },
  420. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  421. return 'Zeige Zeile ' + pageFrom + ' bis ' + pageTo + ' von ' + totalRows + ' Zeile' + (totalRows > 1 ? 'n' : '') + '.';
  422. },
  423. formatDetailPagination: function formatDetailPagination(totalRows) {
  424. return 'Zeige ' + totalRows + ' Zeile' + (totalRows > 1 ? 'n' : '') + '.';
  425. },
  426. formatSearch: function formatSearch() {
  427. return 'Suchen';
  428. },
  429. formatNoMatches: function formatNoMatches() {
  430. return 'Keine passenden Ergebnisse gefunden';
  431. },
  432. formatPaginationSwitch: function formatPaginationSwitch() {
  433. return 'Verstecke/Zeige Nummerierung';
  434. },
  435. formatRefresh: function formatRefresh() {
  436. return 'Neu laden';
  437. },
  438. formatToggle: function formatToggle() {
  439. return 'Umschalten';
  440. },
  441. formatColumns: function formatColumns() {
  442. return 'Spalten';
  443. },
  444. formatFullscreen: function formatFullscreen() {
  445. return 'Fullscreen';
  446. },
  447. formatAllRows: function formatAllRows() {
  448. return 'Alle';
  449. },
  450. formatAutoRefresh: function formatAutoRefresh() {
  451. return 'Auto Refresh';
  452. },
  453. formatExport: function formatExport() {
  454. return 'Datenexport';
  455. },
  456. formatClearFilters: function formatClearFilters() {
  457. return 'Lösche Filter';
  458. },
  459. formatJumpto: function formatJumpto() {
  460. return 'GO';
  461. },
  462. formatAdvancedSearch: function formatAdvancedSearch() {
  463. return 'Advanced search';
  464. },
  465. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  466. return 'Close';
  467. }
  468. };
  469. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['de-DE']);
  470. })(jQuery);
  471. });
  472. (function (global, factory) {
  473. if (typeof define === "function" && define.amd) {
  474. define([], factory);
  475. } else if (typeof exports !== "undefined") {
  476. factory();
  477. } else {
  478. var mod = {
  479. exports: {}
  480. };
  481. factory();
  482. global.bootstrapTableElGR = mod.exports;
  483. }
  484. })(this, function () {
  485. 'use strict';
  486. /**
  487. * Bootstrap Table Greek translation
  488. * Author: giannisdallas
  489. */
  490. (function ($) {
  491. $.fn.bootstrapTable.locales['el-GR'] = {
  492. formatLoadingMessage: function formatLoadingMessage() {
  493. return 'Φορτώνει, παρακαλώ περιμένετε';
  494. },
  495. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  496. return pageNumber + ' \u03B1\u03C0\u03BF\u03C4\u03B5\u03BB\u03AD\u03C3\u03BC\u03B1\u03C4\u03B1 \u03B1\u03BD\u03AC \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1';
  497. },
  498. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  499. return '\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD ' + pageFrom + ' \u03C9\u03C2 \u03C4\u03B7\u03BD ' + pageTo + ' \u03B1\u03C0\u03CC \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF ' + totalRows + ' \u03C3\u03B5\u03B9\u03C1\u03CE\u03BD';
  500. },
  501. formatDetailPagination: function formatDetailPagination(totalRows) {
  502. return 'Showing ' + totalRows + ' rows';
  503. },
  504. formatSearch: function formatSearch() {
  505. return 'Αναζητήστε';
  506. },
  507. formatNoMatches: function formatNoMatches() {
  508. return 'Δεν βρέθηκαν αποτελέσματα';
  509. },
  510. formatPaginationSwitch: function formatPaginationSwitch() {
  511. return 'Hide/Show pagination';
  512. },
  513. formatRefresh: function formatRefresh() {
  514. return 'Refresh';
  515. },
  516. formatToggle: function formatToggle() {
  517. return 'Toggle';
  518. },
  519. formatColumns: function formatColumns() {
  520. return 'Columns';
  521. },
  522. formatFullscreen: function formatFullscreen() {
  523. return 'Fullscreen';
  524. },
  525. formatAllRows: function formatAllRows() {
  526. return 'All';
  527. },
  528. formatAutoRefresh: function formatAutoRefresh() {
  529. return 'Auto Refresh';
  530. },
  531. formatExport: function formatExport() {
  532. return 'Export data';
  533. },
  534. formatClearFilters: function formatClearFilters() {
  535. return 'Clear filters';
  536. },
  537. formatJumpto: function formatJumpto() {
  538. return 'GO';
  539. },
  540. formatAdvancedSearch: function formatAdvancedSearch() {
  541. return 'Advanced search';
  542. },
  543. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  544. return 'Close';
  545. }
  546. };
  547. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['el-GR']);
  548. })(jQuery);
  549. });
  550. (function (global, factory) {
  551. if (typeof define === "function" && define.amd) {
  552. define([], factory);
  553. } else if (typeof exports !== "undefined") {
  554. factory();
  555. } else {
  556. var mod = {
  557. exports: {}
  558. };
  559. factory();
  560. global.bootstrapTableEnUS = mod.exports;
  561. }
  562. })(this, function () {
  563. 'use strict';
  564. /**
  565. * Bootstrap Table English translation
  566. * Author: Zhixin Wen<wenzhixin2010@gmail.com>
  567. */
  568. (function ($) {
  569. $.fn.bootstrapTable.locales['en-US'] = {
  570. formatLoadingMessage: function formatLoadingMessage() {
  571. return 'Loading, please wait';
  572. },
  573. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  574. return pageNumber + ' rows per page';
  575. },
  576. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  577. return 'Showing ' + pageFrom + ' to ' + pageTo + ' of ' + totalRows + ' rows';
  578. },
  579. formatDetailPagination: function formatDetailPagination(totalRows) {
  580. return 'Showing ' + totalRows + ' rows';
  581. },
  582. formatSearch: function formatSearch() {
  583. return 'Search';
  584. },
  585. formatNoMatches: function formatNoMatches() {
  586. return 'No matching records found';
  587. },
  588. formatPaginationSwitch: function formatPaginationSwitch() {
  589. return 'Hide/Show pagination';
  590. },
  591. formatRefresh: function formatRefresh() {
  592. return 'Refresh';
  593. },
  594. formatToggle: function formatToggle() {
  595. return 'Toggle';
  596. },
  597. formatColumns: function formatColumns() {
  598. return 'Columns';
  599. },
  600. formatFullscreen: function formatFullscreen() {
  601. return 'Fullscreen';
  602. },
  603. formatAllRows: function formatAllRows() {
  604. return 'All';
  605. },
  606. formatAutoRefresh: function formatAutoRefresh() {
  607. return 'Auto Refresh';
  608. },
  609. formatExport: function formatExport() {
  610. return 'Export data';
  611. },
  612. formatClearFilters: function formatClearFilters() {
  613. return 'Clear filters';
  614. },
  615. formatJumpto: function formatJumpto() {
  616. return 'GO';
  617. },
  618. formatAdvancedSearch: function formatAdvancedSearch() {
  619. return 'Advanced search';
  620. },
  621. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  622. return 'Close';
  623. }
  624. };
  625. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['en-US']);
  626. })(jQuery);
  627. });
  628. (function (global, factory) {
  629. if (typeof define === "function" && define.amd) {
  630. define([], factory);
  631. } else if (typeof exports !== "undefined") {
  632. factory();
  633. } else {
  634. var mod = {
  635. exports: {}
  636. };
  637. factory();
  638. global.bootstrapTableEsAR = mod.exports;
  639. }
  640. })(this, function () {
  641. 'use strict';
  642. /**
  643. * Bootstrap Table Spanish (Argentina) translation
  644. * Author: Felix Vera (felix.vera@gmail.com)
  645. */
  646. (function ($) {
  647. $.fn.bootstrapTable.locales['es-AR'] = {
  648. formatLoadingMessage: function formatLoadingMessage() {
  649. return 'Cargando, espere por favor';
  650. },
  651. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  652. return pageNumber + ' registros por p\xE1gina';
  653. },
  654. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  655. return 'Mostrando ' + pageFrom + ' a ' + pageTo + ' de ' + totalRows + ' filas';
  656. },
  657. formatDetailPagination: function formatDetailPagination(totalRows) {
  658. return 'Showing ' + totalRows + ' rows';
  659. },
  660. formatSearch: function formatSearch() {
  661. return 'Buscar';
  662. },
  663. formatNoMatches: function formatNoMatches() {
  664. return 'No se encontraron registros';
  665. },
  666. formatPaginationSwitch: function formatPaginationSwitch() {
  667. return 'Hide/Show pagination';
  668. },
  669. formatRefresh: function formatRefresh() {
  670. return 'Refresh';
  671. },
  672. formatToggle: function formatToggle() {
  673. return 'Toggle';
  674. },
  675. formatColumns: function formatColumns() {
  676. return 'Columns';
  677. },
  678. formatFullscreen: function formatFullscreen() {
  679. return 'Fullscreen';
  680. },
  681. formatAllRows: function formatAllRows() {
  682. return 'Todo';
  683. },
  684. formatAutoRefresh: function formatAutoRefresh() {
  685. return 'Auto Refresh';
  686. },
  687. formatExport: function formatExport() {
  688. return 'Export data';
  689. },
  690. formatClearFilters: function formatClearFilters() {
  691. return 'Clear filters';
  692. },
  693. formatJumpto: function formatJumpto() {
  694. return 'GO';
  695. },
  696. formatAdvancedSearch: function formatAdvancedSearch() {
  697. return 'Advanced search';
  698. },
  699. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  700. return 'Close';
  701. }
  702. };
  703. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['es-AR']);
  704. })(jQuery);
  705. });
  706. (function (global, factory) {
  707. if (typeof define === "function" && define.amd) {
  708. define([], factory);
  709. } else if (typeof exports !== "undefined") {
  710. factory();
  711. } else {
  712. var mod = {
  713. exports: {}
  714. };
  715. factory();
  716. global.bootstrapTableEsCL = mod.exports;
  717. }
  718. })(this, function () {
  719. 'use strict';
  720. /**
  721. * Traducción de librería Bootstrap Table a Español (Chile)
  722. * @author Brian Álvarez Azócar
  723. * email brianalvarezazocar@gmail.com
  724. */
  725. (function ($) {
  726. $.fn.bootstrapTable.locales['es-CL'] = {
  727. formatLoadingMessage: function formatLoadingMessage() {
  728. return 'Cargando, espere por favor';
  729. },
  730. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  731. return pageNumber + ' filas por p\xE1gina';
  732. },
  733. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  734. return 'Mostrando ' + pageFrom + ' a ' + pageTo + ' de ' + totalRows + ' filas';
  735. },
  736. formatDetailPagination: function formatDetailPagination(totalRows) {
  737. return 'Showing ' + totalRows + ' rows';
  738. },
  739. formatSearch: function formatSearch() {
  740. return 'Buscar';
  741. },
  742. formatNoMatches: function formatNoMatches() {
  743. return 'No se encontraron registros';
  744. },
  745. formatPaginationSwitch: function formatPaginationSwitch() {
  746. return 'Ocultar/Mostrar paginaci\xF3n';
  747. },
  748. formatRefresh: function formatRefresh() {
  749. return 'Refrescar';
  750. },
  751. formatToggle: function formatToggle() {
  752. return 'Cambiar';
  753. },
  754. formatColumns: function formatColumns() {
  755. return 'Columnas';
  756. },
  757. formatFullscreen: function formatFullscreen() {
  758. return 'Fullscreen';
  759. },
  760. formatAllRows: function formatAllRows() {
  761. return 'Todo';
  762. },
  763. formatAutoRefresh: function formatAutoRefresh() {
  764. return 'Auto Refresh';
  765. },
  766. formatExport: function formatExport() {
  767. return 'Export data';
  768. },
  769. formatClearFilters: function formatClearFilters() {
  770. return 'Clear filters';
  771. },
  772. formatJumpto: function formatJumpto() {
  773. return 'GO';
  774. },
  775. formatAdvancedSearch: function formatAdvancedSearch() {
  776. return 'Advanced search';
  777. },
  778. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  779. return 'Close';
  780. }
  781. };
  782. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['es-CL']);
  783. })(jQuery);
  784. });
  785. (function (global, factory) {
  786. if (typeof define === "function" && define.amd) {
  787. define([], factory);
  788. } else if (typeof exports !== "undefined") {
  789. factory();
  790. } else {
  791. var mod = {
  792. exports: {}
  793. };
  794. factory();
  795. global.bootstrapTableEsCR = mod.exports;
  796. }
  797. })(this, function () {
  798. 'use strict';
  799. /**
  800. * Bootstrap Table Spanish (Costa Rica) translation
  801. * Author: Dennis Hernández (http://djhvscf.github.io/Blog/)
  802. */
  803. (function ($) {
  804. $.fn.bootstrapTable.locales['es-CR'] = {
  805. formatLoadingMessage: function formatLoadingMessage() {
  806. return 'Cargando, por favor espere';
  807. },
  808. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  809. return pageNumber + ' registros por p\xE1gina';
  810. },
  811. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  812. return 'Mostrando de ' + pageFrom + ' a ' + pageTo + ' registros de ' + totalRows + ' registros en total';
  813. },
  814. formatDetailPagination: function formatDetailPagination(totalRows) {
  815. return 'Showing ' + totalRows + ' rows';
  816. },
  817. formatSearch: function formatSearch() {
  818. return 'Buscar';
  819. },
  820. formatNoMatches: function formatNoMatches() {
  821. return 'No se encontraron registros';
  822. },
  823. formatPaginationSwitch: function formatPaginationSwitch() {
  824. return 'Hide/Show pagination';
  825. },
  826. formatRefresh: function formatRefresh() {
  827. return 'Refrescar';
  828. },
  829. formatToggle: function formatToggle() {
  830. return 'Alternar';
  831. },
  832. formatColumns: function formatColumns() {
  833. return 'Columnas';
  834. },
  835. formatFullscreen: function formatFullscreen() {
  836. return 'Fullscreen';
  837. },
  838. formatAllRows: function formatAllRows() {
  839. return 'Todo';
  840. },
  841. formatAutoRefresh: function formatAutoRefresh() {
  842. return 'Auto Refresh';
  843. },
  844. formatExport: function formatExport() {
  845. return 'Export data';
  846. },
  847. formatClearFilters: function formatClearFilters() {
  848. return 'Clear filters';
  849. },
  850. formatJumpto: function formatJumpto() {
  851. return 'GO';
  852. },
  853. formatAdvancedSearch: function formatAdvancedSearch() {
  854. return 'Advanced search';
  855. },
  856. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  857. return 'Close';
  858. }
  859. };
  860. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['es-CR']);
  861. })(jQuery);
  862. });
  863. (function (global, factory) {
  864. if (typeof define === "function" && define.amd) {
  865. define([], factory);
  866. } else if (typeof exports !== "undefined") {
  867. factory();
  868. } else {
  869. var mod = {
  870. exports: {}
  871. };
  872. factory();
  873. global.bootstrapTableEsES = mod.exports;
  874. }
  875. })(this, function () {
  876. 'use strict';
  877. /**
  878. * Bootstrap Table Spanish Spain translation
  879. * Author: Marc Pina<iwalkalone69@gmail.com>
  880. */
  881. (function ($) {
  882. $.fn.bootstrapTable.locales['es-ES'] = {
  883. formatLoadingMessage: function formatLoadingMessage() {
  884. return 'Por favor espere';
  885. },
  886. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  887. return pageNumber + ' resultados por p\xE1gina';
  888. },
  889. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  890. return 'Mostrando desde ' + pageFrom + ' hasta ' + pageTo + ' - En total ' + totalRows + ' resultados';
  891. },
  892. formatDetailPagination: function formatDetailPagination(totalRows) {
  893. return 'Showing ' + totalRows + ' rows';
  894. },
  895. formatSearch: function formatSearch() {
  896. return 'Buscar';
  897. },
  898. formatNoMatches: function formatNoMatches() {
  899. return 'No se encontraron resultados';
  900. },
  901. formatPaginationSwitch: function formatPaginationSwitch() {
  902. return 'Ocultar/Mostrar paginación';
  903. },
  904. formatRefresh: function formatRefresh() {
  905. return 'Refrescar';
  906. },
  907. formatToggle: function formatToggle() {
  908. return 'Ocultar/Mostrar';
  909. },
  910. formatColumns: function formatColumns() {
  911. return 'Columnas';
  912. },
  913. formatFullscreen: function formatFullscreen() {
  914. return 'Fullscreen';
  915. },
  916. formatAllRows: function formatAllRows() {
  917. return 'Todos';
  918. },
  919. formatAutoRefresh: function formatAutoRefresh() {
  920. return 'Auto Refresh';
  921. },
  922. formatExport: function formatExport() {
  923. return 'Exportar los datos';
  924. },
  925. formatClearFilters: function formatClearFilters() {
  926. return 'Borrar los filtros';
  927. },
  928. formatJumpto: function formatJumpto() {
  929. return 'GO';
  930. },
  931. formatAdvancedSearch: function formatAdvancedSearch() {
  932. return 'Búsqueda avanzada';
  933. },
  934. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  935. return 'Cerrar';
  936. }
  937. };
  938. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['es-ES']);
  939. })(jQuery);
  940. });
  941. (function (global, factory) {
  942. if (typeof define === "function" && define.amd) {
  943. define([], factory);
  944. } else if (typeof exports !== "undefined") {
  945. factory();
  946. } else {
  947. var mod = {
  948. exports: {}
  949. };
  950. factory();
  951. global.bootstrapTableEsMX = mod.exports;
  952. }
  953. })(this, function () {
  954. 'use strict';
  955. /**
  956. * Bootstrap Table Spanish (México) translation (Obtenido de traducción de Argentina)
  957. * Author: Felix Vera (felix.vera@gmail.com)
  958. * Copiado: Mauricio Vera (mauricioa.vera@gmail.com)
  959. * Revisión: J Manuel Corona (jmcg92@gmail.com) (13/Feb/2018).
  960. */
  961. (function ($) {
  962. $.fn.bootstrapTable.locales['es-MX'] = {
  963. formatLoadingMessage: function formatLoadingMessage() {
  964. return 'Cargando, espere por favor';
  965. },
  966. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  967. return pageNumber + ' registros por p\xE1gina';
  968. },
  969. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  970. return 'Mostrando ' + pageFrom + ' a ' + pageTo + ' de ' + totalRows + ' filas';
  971. },
  972. formatDetailPagination: function formatDetailPagination(totalRows) {
  973. return 'Mostrando ' + totalRows + ' filas';
  974. },
  975. formatSearch: function formatSearch() {
  976. return 'Buscar';
  977. },
  978. formatNoMatches: function formatNoMatches() {
  979. return 'No se encontraron registros que coincidan';
  980. },
  981. formatPaginationSwitch: function formatPaginationSwitch() {
  982. return 'Mostrar/ocultar paginación';
  983. },
  984. formatRefresh: function formatRefresh() {
  985. return 'Actualizar';
  986. },
  987. formatToggle: function formatToggle() {
  988. return 'Cambiar vista';
  989. },
  990. formatColumns: function formatColumns() {
  991. return 'Columnas';
  992. },
  993. formatFullscreen: function formatFullscreen() {
  994. return 'Pantalla completa';
  995. },
  996. formatAllRows: function formatAllRows() {
  997. return 'Todo';
  998. },
  999. formatAutoRefresh: function formatAutoRefresh() {
  1000. return 'Auto Refresh';
  1001. },
  1002. formatExport: function formatExport() {
  1003. return 'Export data';
  1004. },
  1005. formatClearFilters: function formatClearFilters() {
  1006. return 'Clear filters';
  1007. },
  1008. formatJumpto: function formatJumpto() {
  1009. return 'GO';
  1010. },
  1011. formatAdvancedSearch: function formatAdvancedSearch() {
  1012. return 'Advanced search';
  1013. },
  1014. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  1015. return 'Close';
  1016. }
  1017. };
  1018. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['es-MX']);
  1019. })(jQuery);
  1020. });
  1021. (function (global, factory) {
  1022. if (typeof define === "function" && define.amd) {
  1023. define([], factory);
  1024. } else if (typeof exports !== "undefined") {
  1025. factory();
  1026. } else {
  1027. var mod = {
  1028. exports: {}
  1029. };
  1030. factory();
  1031. global.bootstrapTableEsNI = mod.exports;
  1032. }
  1033. })(this, function () {
  1034. 'use strict';
  1035. /**
  1036. * Bootstrap Table Spanish (Nicaragua) translation
  1037. * Author: Dennis Hernández (http://djhvscf.github.io/Blog/)
  1038. */
  1039. (function ($) {
  1040. $.fn.bootstrapTable.locales['es-NI'] = {
  1041. formatLoadingMessage: function formatLoadingMessage() {
  1042. return 'Cargando, por favor espere';
  1043. },
  1044. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  1045. return pageNumber + ' registros por p\xE1gina';
  1046. },
  1047. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  1048. return 'Mostrando de ' + pageFrom + ' a ' + pageTo + ' registros de ' + totalRows + ' registros en total';
  1049. },
  1050. formatDetailPagination: function formatDetailPagination(totalRows) {
  1051. return 'Showing ' + totalRows + ' rows';
  1052. },
  1053. formatSearch: function formatSearch() {
  1054. return 'Buscar';
  1055. },
  1056. formatNoMatches: function formatNoMatches() {
  1057. return 'No se encontraron registros';
  1058. },
  1059. formatPaginationSwitch: function formatPaginationSwitch() {
  1060. return 'Hide/Show pagination';
  1061. },
  1062. formatRefresh: function formatRefresh() {
  1063. return 'Refrescar';
  1064. },
  1065. formatToggle: function formatToggle() {
  1066. return 'Alternar';
  1067. },
  1068. formatColumns: function formatColumns() {
  1069. return 'Columnas';
  1070. },
  1071. formatFullscreen: function formatFullscreen() {
  1072. return 'Fullscreen';
  1073. },
  1074. formatAllRows: function formatAllRows() {
  1075. return 'Todo';
  1076. },
  1077. formatAutoRefresh: function formatAutoRefresh() {
  1078. return 'Auto Refresh';
  1079. },
  1080. formatExport: function formatExport() {
  1081. return 'Export data';
  1082. },
  1083. formatClearFilters: function formatClearFilters() {
  1084. return 'Clear filters';
  1085. },
  1086. formatJumpto: function formatJumpto() {
  1087. return 'GO';
  1088. },
  1089. formatAdvancedSearch: function formatAdvancedSearch() {
  1090. return 'Advanced search';
  1091. },
  1092. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  1093. return 'Close';
  1094. }
  1095. };
  1096. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['es-NI']);
  1097. })(jQuery);
  1098. });
  1099. (function (global, factory) {
  1100. if (typeof define === "function" && define.amd) {
  1101. define([], factory);
  1102. } else if (typeof exports !== "undefined") {
  1103. factory();
  1104. } else {
  1105. var mod = {
  1106. exports: {}
  1107. };
  1108. factory();
  1109. global.bootstrapTableEsSP = mod.exports;
  1110. }
  1111. })(this, function () {
  1112. 'use strict';
  1113. /**
  1114. * Bootstrap Table Spanish (España) translation
  1115. * Author: Antonio Pérez <anpegar@gmail.com>
  1116. */
  1117. (function ($) {
  1118. $.fn.bootstrapTable.locales['es-SP'] = {
  1119. formatLoadingMessage: function formatLoadingMessage() {
  1120. return 'Cargando, por favor espera';
  1121. },
  1122. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  1123. return pageNumber + ' registros por p&#225;gina.';
  1124. },
  1125. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  1126. return pageFrom + ' - ' + pageTo + ' de ' + totalRows + ' registros.';
  1127. },
  1128. formatDetailPagination: function formatDetailPagination(totalRows) {
  1129. return 'Showing ' + totalRows + ' rows';
  1130. },
  1131. formatSearch: function formatSearch() {
  1132. return 'Buscar';
  1133. },
  1134. formatNoMatches: function formatNoMatches() {
  1135. return 'No se han encontrado registros.';
  1136. },
  1137. formatPaginationSwitch: function formatPaginationSwitch() {
  1138. return 'Hide/Show pagination';
  1139. },
  1140. formatRefresh: function formatRefresh() {
  1141. return 'Actualizar';
  1142. },
  1143. formatToggle: function formatToggle() {
  1144. return 'Alternar';
  1145. },
  1146. formatColumns: function formatColumns() {
  1147. return 'Columnas';
  1148. },
  1149. formatFullscreen: function formatFullscreen() {
  1150. return 'Fullscreen';
  1151. },
  1152. formatAllRows: function formatAllRows() {
  1153. return 'Todo';
  1154. },
  1155. formatAutoRefresh: function formatAutoRefresh() {
  1156. return 'Auto Refresh';
  1157. },
  1158. formatExport: function formatExport() {
  1159. return 'Export data';
  1160. },
  1161. formatClearFilters: function formatClearFilters() {
  1162. return 'Clear filters';
  1163. },
  1164. formatJumpto: function formatJumpto() {
  1165. return 'GO';
  1166. },
  1167. formatAdvancedSearch: function formatAdvancedSearch() {
  1168. return 'Advanced search';
  1169. },
  1170. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  1171. return 'Close';
  1172. }
  1173. };
  1174. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['es-SP']);
  1175. })(jQuery);
  1176. });
  1177. (function (global, factory) {
  1178. if (typeof define === "function" && define.amd) {
  1179. define([], factory);
  1180. } else if (typeof exports !== "undefined") {
  1181. factory();
  1182. } else {
  1183. var mod = {
  1184. exports: {}
  1185. };
  1186. factory();
  1187. global.bootstrapTableEtEE = mod.exports;
  1188. }
  1189. })(this, function () {
  1190. 'use strict';
  1191. /**
  1192. * Bootstrap Table Estonian translation
  1193. * Author: kristjan@logist.it>
  1194. */
  1195. (function ($) {
  1196. $.fn.bootstrapTable.locales['et-EE'] = {
  1197. formatLoadingMessage: function formatLoadingMessage() {
  1198. return 'Päring käib, palun oota';
  1199. },
  1200. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  1201. return pageNumber + ' rida lehe kohta';
  1202. },
  1203. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  1204. return 'N\xE4itan tulemusi ' + pageFrom + ' kuni ' + pageTo + ' - kokku ' + totalRows + ' tulemust';
  1205. },
  1206. formatDetailPagination: function formatDetailPagination(totalRows) {
  1207. return 'Showing ' + totalRows + ' rows';
  1208. },
  1209. formatSearch: function formatSearch() {
  1210. return 'Otsi';
  1211. },
  1212. formatNoMatches: function formatNoMatches() {
  1213. return 'Päringu tingimustele ei vastanud ühtegi tulemust';
  1214. },
  1215. formatPaginationSwitch: function formatPaginationSwitch() {
  1216. return 'Näita/Peida lehtedeks jagamine';
  1217. },
  1218. formatRefresh: function formatRefresh() {
  1219. return 'Värskenda';
  1220. },
  1221. formatToggle: function formatToggle() {
  1222. return 'Lülita';
  1223. },
  1224. formatColumns: function formatColumns() {
  1225. return 'Veerud';
  1226. },
  1227. formatFullscreen: function formatFullscreen() {
  1228. return 'Fullscreen';
  1229. },
  1230. formatAllRows: function formatAllRows() {
  1231. return 'Kõik';
  1232. },
  1233. formatAutoRefresh: function formatAutoRefresh() {
  1234. return 'Auto Refresh';
  1235. },
  1236. formatExport: function formatExport() {
  1237. return 'Export data';
  1238. },
  1239. formatClearFilters: function formatClearFilters() {
  1240. return 'Clear filters';
  1241. },
  1242. formatJumpto: function formatJumpto() {
  1243. return 'GO';
  1244. },
  1245. formatAdvancedSearch: function formatAdvancedSearch() {
  1246. return 'Advanced search';
  1247. },
  1248. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  1249. return 'Close';
  1250. }
  1251. };
  1252. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['et-EE']);
  1253. })(jQuery);
  1254. });
  1255. (function (global, factory) {
  1256. if (typeof define === "function" && define.amd) {
  1257. define([], factory);
  1258. } else if (typeof exports !== "undefined") {
  1259. factory();
  1260. } else {
  1261. var mod = {
  1262. exports: {}
  1263. };
  1264. factory();
  1265. global.bootstrapTableEuEU = mod.exports;
  1266. }
  1267. })(this, function () {
  1268. 'use strict';
  1269. /**
  1270. * Bootstrap Table Basque (Basque Country) translation
  1271. * Author: Iker Ibarguren Berasaluze<ikerib@gmail.com>
  1272. */
  1273. (function ($) {
  1274. $.fn.bootstrapTable.locales['eu-EU'] = {
  1275. formatLoadingMessage: function formatLoadingMessage() {
  1276. return 'Itxaron mesedez';
  1277. },
  1278. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  1279. return pageNumber + ' emaitza orriko.';
  1280. },
  1281. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  1282. return totalRows + ' erregistroetatik ' + pageFrom + 'etik ' + pageTo + 'erakoak erakusten.';
  1283. },
  1284. formatDetailPagination: function formatDetailPagination(totalRows) {
  1285. return 'Showing ' + totalRows + ' rows';
  1286. },
  1287. formatSearch: function formatSearch() {
  1288. return 'Bilatu';
  1289. },
  1290. formatNoMatches: function formatNoMatches() {
  1291. return 'Ez da emaitzarik aurkitu';
  1292. },
  1293. formatPaginationSwitch: function formatPaginationSwitch() {
  1294. return 'Ezkutatu/Erakutsi orrikatzea';
  1295. },
  1296. formatRefresh: function formatRefresh() {
  1297. return 'Eguneratu';
  1298. },
  1299. formatToggle: function formatToggle() {
  1300. return 'Ezkutatu/Erakutsi';
  1301. },
  1302. formatColumns: function formatColumns() {
  1303. return 'Zutabeak';
  1304. },
  1305. formatFullscreen: function formatFullscreen() {
  1306. return 'Fullscreen';
  1307. },
  1308. formatAllRows: function formatAllRows() {
  1309. return 'Guztiak';
  1310. },
  1311. formatAutoRefresh: function formatAutoRefresh() {
  1312. return 'Auto Refresh';
  1313. },
  1314. formatExport: function formatExport() {
  1315. return 'Export data';
  1316. },
  1317. formatClearFilters: function formatClearFilters() {
  1318. return 'Clear filters';
  1319. },
  1320. formatJumpto: function formatJumpto() {
  1321. return 'GO';
  1322. },
  1323. formatAdvancedSearch: function formatAdvancedSearch() {
  1324. return 'Advanced search';
  1325. },
  1326. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  1327. return 'Close';
  1328. }
  1329. };
  1330. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['eu-EU']);
  1331. })(jQuery);
  1332. });
  1333. (function (global, factory) {
  1334. if (typeof define === "function" && define.amd) {
  1335. define([], factory);
  1336. } else if (typeof exports !== "undefined") {
  1337. factory();
  1338. } else {
  1339. var mod = {
  1340. exports: {}
  1341. };
  1342. factory();
  1343. global.bootstrapTableFaIR = mod.exports;
  1344. }
  1345. })(this, function () {
  1346. 'use strict';
  1347. /**
  1348. * Bootstrap Table Persian translation
  1349. * Author: MJ Vakili <mjv.1989@Gmail.com>
  1350. */
  1351. (function ($) {
  1352. $.fn.bootstrapTable.locales['fa-IR'] = {
  1353. formatLoadingMessage: function formatLoadingMessage() {
  1354. return 'در حال بارگذاری, لطفا صبر کنید';
  1355. },
  1356. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  1357. return pageNumber + ' \u0631\u06A9\u0648\u0631\u062F \u062F\u0631 \u0635\u0641\u062D\u0647';
  1358. },
  1359. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  1360. return '\u0646\u0645\u0627\u06CC\u0634 ' + pageFrom + ' \u062A\u0627 ' + pageTo + ' \u0627\u0632 ' + totalRows + ' \u0631\u062F\u06CC\u0641';
  1361. },
  1362. formatDetailPagination: function formatDetailPagination(totalRows) {
  1363. return 'Showing ' + totalRows + ' rows';
  1364. },
  1365. formatSearch: function formatSearch() {
  1366. return 'جستجو';
  1367. },
  1368. formatNoMatches: function formatNoMatches() {
  1369. return 'رکوردی یافت نشد.';
  1370. },
  1371. formatPaginationSwitch: function formatPaginationSwitch() {
  1372. return 'نمایش/مخفی صفحه بندی';
  1373. },
  1374. formatRefresh: function formatRefresh() {
  1375. return 'به روز رسانی';
  1376. },
  1377. formatToggle: function formatToggle() {
  1378. return 'تغییر نمایش';
  1379. },
  1380. formatColumns: function formatColumns() {
  1381. return 'سطر ها';
  1382. },
  1383. formatFullscreen: function formatFullscreen() {
  1384. return 'Fullscreen';
  1385. },
  1386. formatAllRows: function formatAllRows() {
  1387. return 'همه';
  1388. },
  1389. formatAutoRefresh: function formatAutoRefresh() {
  1390. return 'Auto Refresh';
  1391. },
  1392. formatExport: function formatExport() {
  1393. return 'Export data';
  1394. },
  1395. formatClearFilters: function formatClearFilters() {
  1396. return 'Clear filters';
  1397. },
  1398. formatJumpto: function formatJumpto() {
  1399. return 'GO';
  1400. },
  1401. formatAdvancedSearch: function formatAdvancedSearch() {
  1402. return 'Advanced search';
  1403. },
  1404. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  1405. return 'Close';
  1406. }
  1407. };
  1408. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['fa-IR']);
  1409. })(jQuery);
  1410. });
  1411. (function (global, factory) {
  1412. if (typeof define === "function" && define.amd) {
  1413. define([], factory);
  1414. } else if (typeof exports !== "undefined") {
  1415. factory();
  1416. } else {
  1417. var mod = {
  1418. exports: {}
  1419. };
  1420. factory();
  1421. global.bootstrapTableFiFI = mod.exports;
  1422. }
  1423. })(this, function () {
  1424. 'use strict';
  1425. /**
  1426. * Bootstrap Table Finnish translations
  1427. * Author: Minna Lehtomäki <minna.j.lehtomaki@gmail.com>
  1428. */
  1429. (function ($) {
  1430. $.fn.bootstrapTable.locales['fi-FI'] = {
  1431. formatLoadingMessage: function formatLoadingMessage() {
  1432. return 'Ladataan, ole hyvä ja odota';
  1433. },
  1434. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  1435. return pageNumber + ' rivi\xE4 sivulla';
  1436. },
  1437. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  1438. return 'N\xE4ytet\xE4\xE4n rivit ' + pageFrom + ' - ' + pageTo + ' / ' + totalRows;
  1439. },
  1440. formatDetailPagination: function formatDetailPagination(totalRows) {
  1441. return 'Showing ' + totalRows + ' rows';
  1442. },
  1443. formatSearch: function formatSearch() {
  1444. return 'Hae';
  1445. },
  1446. formatNoMatches: function formatNoMatches() {
  1447. return 'Hakuehtoja vastaavia tuloksia ei löytynyt';
  1448. },
  1449. formatPaginationSwitch: function formatPaginationSwitch() {
  1450. return 'Näytä/Piilota sivutus';
  1451. },
  1452. formatRefresh: function formatRefresh() {
  1453. return 'Päivitä';
  1454. },
  1455. formatToggle: function formatToggle() {
  1456. return 'Valitse';
  1457. },
  1458. formatColumns: function formatColumns() {
  1459. return 'Sarakkeet';
  1460. },
  1461. formatFullscreen: function formatFullscreen() {
  1462. return 'Fullscreen';
  1463. },
  1464. formatAllRows: function formatAllRows() {
  1465. return 'Kaikki';
  1466. },
  1467. formatAutoRefresh: function formatAutoRefresh() {
  1468. return 'Auto Refresh';
  1469. },
  1470. formatExport: function formatExport() {
  1471. return 'Vie tiedot';
  1472. },
  1473. formatClearFilters: function formatClearFilters() {
  1474. return 'Poista suodattimet';
  1475. },
  1476. formatJumpto: function formatJumpto() {
  1477. return 'GO';
  1478. },
  1479. formatAdvancedSearch: function formatAdvancedSearch() {
  1480. return 'Advanced search';
  1481. },
  1482. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  1483. return 'Close';
  1484. }
  1485. };
  1486. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['fi-FI']);
  1487. })(jQuery);
  1488. });
  1489. (function (global, factory) {
  1490. if (typeof define === "function" && define.amd) {
  1491. define([], factory);
  1492. } else if (typeof exports !== "undefined") {
  1493. factory();
  1494. } else {
  1495. var mod = {
  1496. exports: {}
  1497. };
  1498. factory();
  1499. global.bootstrapTableFrBE = mod.exports;
  1500. }
  1501. })(this, function () {
  1502. 'use strict';
  1503. /**
  1504. * Bootstrap Table French (Belgium) translation
  1505. * Author: Julien Bisconti (julien.bisconti@gmail.com)
  1506. */
  1507. (function ($) {
  1508. $.fn.bootstrapTable.locales['fr-BE'] = {
  1509. formatLoadingMessage: function formatLoadingMessage() {
  1510. return 'Chargement en cours';
  1511. },
  1512. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  1513. return pageNumber + ' entr\xE9es par page';
  1514. },
  1515. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  1516. return 'Affiche de' + pageFrom + ' \xE0 ' + pageTo + ' sur ' + totalRows + ' lignes';
  1517. },
  1518. formatDetailPagination: function formatDetailPagination(totalRows) {
  1519. return 'Showing ' + totalRows + ' rows';
  1520. },
  1521. formatSearch: function formatSearch() {
  1522. return 'Recherche';
  1523. },
  1524. formatNoMatches: function formatNoMatches() {
  1525. return 'Pas de fichiers trouvés';
  1526. },
  1527. formatPaginationSwitch: function formatPaginationSwitch() {
  1528. return 'Hide/Show pagination';
  1529. },
  1530. formatRefresh: function formatRefresh() {
  1531. return 'Refresh';
  1532. },
  1533. formatToggle: function formatToggle() {
  1534. return 'Toggle';
  1535. },
  1536. formatColumns: function formatColumns() {
  1537. return 'Columns';
  1538. },
  1539. formatFullscreen: function formatFullscreen() {
  1540. return 'Fullscreen';
  1541. },
  1542. formatAllRows: function formatAllRows() {
  1543. return 'All';
  1544. },
  1545. formatAutoRefresh: function formatAutoRefresh() {
  1546. return 'Auto Refresh';
  1547. },
  1548. formatExport: function formatExport() {
  1549. return 'Export data';
  1550. },
  1551. formatClearFilters: function formatClearFilters() {
  1552. return 'Clear filters';
  1553. },
  1554. formatJumpto: function formatJumpto() {
  1555. return 'GO';
  1556. },
  1557. formatAdvancedSearch: function formatAdvancedSearch() {
  1558. return 'Advanced search';
  1559. },
  1560. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  1561. return 'Close';
  1562. }
  1563. };
  1564. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['fr-BE']);
  1565. })(jQuery);
  1566. });
  1567. (function (global, factory) {
  1568. if (typeof define === "function" && define.amd) {
  1569. define([], factory);
  1570. } else if (typeof exports !== "undefined") {
  1571. factory();
  1572. } else {
  1573. var mod = {
  1574. exports: {}
  1575. };
  1576. factory();
  1577. global.bootstrapTableFrFR = mod.exports;
  1578. }
  1579. })(this, function () {
  1580. 'use strict';
  1581. /**
  1582. * Bootstrap Table French (France) translation
  1583. * Author: Dennis Hernández (http://djhvscf.github.io/Blog/)
  1584. * Modification: Tidalf (https://github.com/TidalfFR)
  1585. */
  1586. (function ($) {
  1587. $.fn.bootstrapTable.locales['fr-FR'] = {
  1588. formatLoadingMessage: function formatLoadingMessage() {
  1589. return 'Chargement en cours, patientez, s´il vous plaît';
  1590. },
  1591. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  1592. return pageNumber + ' lignes par page';
  1593. },
  1594. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  1595. return 'Affichage des lignes ' + pageFrom + ' \xE0 ' + pageTo + ' sur ' + totalRows + ' lignes au total';
  1596. },
  1597. formatDetailPagination: function formatDetailPagination(totalRows) {
  1598. return 'Showing ' + totalRows + ' rows';
  1599. },
  1600. formatSearch: function formatSearch() {
  1601. return 'Rechercher';
  1602. },
  1603. formatNoMatches: function formatNoMatches() {
  1604. return 'Aucun résultat trouvé';
  1605. },
  1606. formatPaginationSwitch: function formatPaginationSwitch() {
  1607. return 'Montrer/Masquer pagination';
  1608. },
  1609. formatRefresh: function formatRefresh() {
  1610. return 'Rafraîchir';
  1611. },
  1612. formatToggle: function formatToggle() {
  1613. return 'Alterner';
  1614. },
  1615. formatColumns: function formatColumns() {
  1616. return 'Colonnes';
  1617. },
  1618. formatFullscreen: function formatFullscreen() {
  1619. return 'Fullscreen';
  1620. },
  1621. formatAllRows: function formatAllRows() {
  1622. return 'Tous';
  1623. },
  1624. formatAutoRefresh: function formatAutoRefresh() {
  1625. return 'Auto Refresh';
  1626. },
  1627. formatExport: function formatExport() {
  1628. return 'Exporter les données';
  1629. },
  1630. formatClearFilters: function formatClearFilters() {
  1631. return 'Vider les filtres';
  1632. },
  1633. formatJumpto: function formatJumpto() {
  1634. return 'GO';
  1635. },
  1636. formatAdvancedSearch: function formatAdvancedSearch() {
  1637. return 'Recherche avancée';
  1638. },
  1639. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  1640. return 'Fermer';
  1641. }
  1642. };
  1643. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['fr-FR']);
  1644. })(jQuery);
  1645. });
  1646. (function (global, factory) {
  1647. if (typeof define === "function" && define.amd) {
  1648. define([], factory);
  1649. } else if (typeof exports !== "undefined") {
  1650. factory();
  1651. } else {
  1652. var mod = {
  1653. exports: {}
  1654. };
  1655. factory();
  1656. global.bootstrapTableHeIL = mod.exports;
  1657. }
  1658. })(this, function () {
  1659. 'use strict';
  1660. /**
  1661. * Bootstrap Table Hebrew translation
  1662. * Author: legshooter
  1663. */
  1664. (function ($) {
  1665. $.fn.bootstrapTable.locales['he-IL'] = {
  1666. formatLoadingMessage: function formatLoadingMessage() {
  1667. return 'טוען, נא להמתין';
  1668. },
  1669. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  1670. return pageNumber + ' \u05E9\u05D5\u05E8\u05D5\u05EA \u05D1\u05E2\u05DE\u05D5\u05D3';
  1671. },
  1672. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  1673. return '\u05DE\u05E6\u05D9\u05D2 ' + pageFrom + ' \u05E2\u05D3 ' + pageTo + ' \u05DE-' + totalRows + ' \u05E9\u05D5\u05E8\u05D5\u05EA';
  1674. },
  1675. formatDetailPagination: function formatDetailPagination(totalRows) {
  1676. return 'Showing ' + totalRows + ' rows';
  1677. },
  1678. formatSearch: function formatSearch() {
  1679. return 'חיפוש';
  1680. },
  1681. formatNoMatches: function formatNoMatches() {
  1682. return 'לא נמצאו רשומות תואמות';
  1683. },
  1684. formatPaginationSwitch: function formatPaginationSwitch() {
  1685. return 'הסתר/הצג מספור דפים';
  1686. },
  1687. formatRefresh: function formatRefresh() {
  1688. return 'רענן';
  1689. },
  1690. formatToggle: function formatToggle() {
  1691. return 'החלף תצוגה';
  1692. },
  1693. formatColumns: function formatColumns() {
  1694. return 'עמודות';
  1695. },
  1696. formatFullscreen: function formatFullscreen() {
  1697. return 'Fullscreen';
  1698. },
  1699. formatAllRows: function formatAllRows() {
  1700. return 'הכל';
  1701. },
  1702. formatAutoRefresh: function formatAutoRefresh() {
  1703. return 'Auto Refresh';
  1704. },
  1705. formatExport: function formatExport() {
  1706. return 'Export data';
  1707. },
  1708. formatClearFilters: function formatClearFilters() {
  1709. return 'Clear filters';
  1710. },
  1711. formatJumpto: function formatJumpto() {
  1712. return 'GO';
  1713. },
  1714. formatAdvancedSearch: function formatAdvancedSearch() {
  1715. return 'Advanced search';
  1716. },
  1717. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  1718. return 'Close';
  1719. }
  1720. };
  1721. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['he-IL']);
  1722. })(jQuery);
  1723. });
  1724. (function (global, factory) {
  1725. if (typeof define === "function" && define.amd) {
  1726. define([], factory);
  1727. } else if (typeof exports !== "undefined") {
  1728. factory();
  1729. } else {
  1730. var mod = {
  1731. exports: {}
  1732. };
  1733. factory();
  1734. global.bootstrapTableHrHR = mod.exports;
  1735. }
  1736. })(this, function () {
  1737. 'use strict';
  1738. /**
  1739. * Bootstrap Table Croatian translation
  1740. * Author: Petra Štrbenac (petra.strbenac@gmail.com)
  1741. * Author: Petra Štrbenac (petra.strbenac@gmail.com)
  1742. */
  1743. (function ($) {
  1744. $.fn.bootstrapTable.locales['hr-HR'] = {
  1745. formatLoadingMessage: function formatLoadingMessage() {
  1746. return 'Molimo pričekajte';
  1747. },
  1748. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  1749. return pageNumber + ' broj zapisa po stranici';
  1750. },
  1751. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  1752. return 'Prikazujem ' + pageFrom + '. - ' + pageTo + '. od ukupnog broja zapisa ' + totalRows;
  1753. },
  1754. formatDetailPagination: function formatDetailPagination(totalRows) {
  1755. return 'Showing ' + totalRows + ' rows';
  1756. },
  1757. formatSearch: function formatSearch() {
  1758. return 'Pretraži';
  1759. },
  1760. formatNoMatches: function formatNoMatches() {
  1761. return 'Nije pronađen niti jedan zapis';
  1762. },
  1763. formatPaginationSwitch: function formatPaginationSwitch() {
  1764. return 'Prikaži/sakrij stranice';
  1765. },
  1766. formatRefresh: function formatRefresh() {
  1767. return 'Osvježi';
  1768. },
  1769. formatToggle: function formatToggle() {
  1770. return 'Promijeni prikaz';
  1771. },
  1772. formatColumns: function formatColumns() {
  1773. return 'Kolone';
  1774. },
  1775. formatFullscreen: function formatFullscreen() {
  1776. return 'Fullscreen';
  1777. },
  1778. formatAllRows: function formatAllRows() {
  1779. return 'Sve';
  1780. },
  1781. formatAutoRefresh: function formatAutoRefresh() {
  1782. return 'Auto Refresh';
  1783. },
  1784. formatExport: function formatExport() {
  1785. return 'Export data';
  1786. },
  1787. formatClearFilters: function formatClearFilters() {
  1788. return 'Clear filters';
  1789. },
  1790. formatJumpto: function formatJumpto() {
  1791. return 'GO';
  1792. },
  1793. formatAdvancedSearch: function formatAdvancedSearch() {
  1794. return 'Advanced search';
  1795. },
  1796. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  1797. return 'Close';
  1798. }
  1799. };
  1800. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['hr-HR']);
  1801. })(jQuery);
  1802. });
  1803. (function (global, factory) {
  1804. if (typeof define === "function" && define.amd) {
  1805. define([], factory);
  1806. } else if (typeof exports !== "undefined") {
  1807. factory();
  1808. } else {
  1809. var mod = {
  1810. exports: {}
  1811. };
  1812. factory();
  1813. global.bootstrapTableHuHU = mod.exports;
  1814. }
  1815. })(this, function () {
  1816. 'use strict';
  1817. /**
  1818. * Bootstrap Table Hungarian translation
  1819. * Author: Nagy Gergely <info@nagygergely.eu>
  1820. */
  1821. (function ($) {
  1822. $.fn.bootstrapTable.locales['hu-HU'] = {
  1823. formatLoadingMessage: function formatLoadingMessage() {
  1824. return 'Betöltés, kérem várjon';
  1825. },
  1826. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  1827. return pageNumber + ' rekord per oldal';
  1828. },
  1829. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  1830. return 'Megjelen\xEDtve ' + pageFrom + ' - ' + pageTo + ' / ' + totalRows + ' \xF6sszesen';
  1831. },
  1832. formatDetailPagination: function formatDetailPagination(totalRows) {
  1833. return 'Showing ' + totalRows + ' rows';
  1834. },
  1835. formatSearch: function formatSearch() {
  1836. return 'Keresés';
  1837. },
  1838. formatNoMatches: function formatNoMatches() {
  1839. return 'Nincs találat';
  1840. },
  1841. formatPaginationSwitch: function formatPaginationSwitch() {
  1842. return 'Lapozó elrejtése/megjelenítése';
  1843. },
  1844. formatRefresh: function formatRefresh() {
  1845. return 'Frissítés';
  1846. },
  1847. formatToggle: function formatToggle() {
  1848. return 'Összecsuk/Kinyit';
  1849. },
  1850. formatColumns: function formatColumns() {
  1851. return 'Oszlopok';
  1852. },
  1853. formatFullscreen: function formatFullscreen() {
  1854. return 'Fullscreen';
  1855. },
  1856. formatAllRows: function formatAllRows() {
  1857. return 'Összes';
  1858. },
  1859. formatAutoRefresh: function formatAutoRefresh() {
  1860. return 'Auto Refresh';
  1861. },
  1862. formatExport: function formatExport() {
  1863. return 'Export data';
  1864. },
  1865. formatClearFilters: function formatClearFilters() {
  1866. return 'Clear filters';
  1867. },
  1868. formatJumpto: function formatJumpto() {
  1869. return 'GO';
  1870. },
  1871. formatAdvancedSearch: function formatAdvancedSearch() {
  1872. return 'Advanced search';
  1873. },
  1874. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  1875. return 'Close';
  1876. }
  1877. };
  1878. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['hu-HU']);
  1879. })(jQuery);
  1880. });
  1881. (function (global, factory) {
  1882. if (typeof define === "function" && define.amd) {
  1883. define([], factory);
  1884. } else if (typeof exports !== "undefined") {
  1885. factory();
  1886. } else {
  1887. var mod = {
  1888. exports: {}
  1889. };
  1890. factory();
  1891. global.bootstrapTableIdID = mod.exports;
  1892. }
  1893. })(this, function () {
  1894. 'use strict';
  1895. /**
  1896. * Bootstrap Table Indonesian translation
  1897. * Author: Andre Gardiner<andre@sirdre.com>
  1898. */
  1899. (function ($) {
  1900. $.fn.bootstrapTable.locales['id-ID'] = {
  1901. formatLoadingMessage: function formatLoadingMessage() {
  1902. return 'Memuat, mohon tunggu';
  1903. },
  1904. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  1905. return pageNumber + ' baris per halaman';
  1906. },
  1907. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  1908. return 'Menampilkan ' + pageFrom + ' sampai ' + pageTo + ' dari ' + totalRows + ' baris';
  1909. },
  1910. formatDetailPagination: function formatDetailPagination(totalRows) {
  1911. return 'Showing ' + totalRows + ' rows';
  1912. },
  1913. formatSearch: function formatSearch() {
  1914. return 'Pencarian';
  1915. },
  1916. formatNoMatches: function formatNoMatches() {
  1917. return 'Tidak ditemukan data yang cocok';
  1918. },
  1919. formatPaginationSwitch: function formatPaginationSwitch() {
  1920. return 'Sembunyikan/Tampilkan halaman';
  1921. },
  1922. formatRefresh: function formatRefresh() {
  1923. return 'Muat ulang';
  1924. },
  1925. formatToggle: function formatToggle() {
  1926. return 'Beralih';
  1927. },
  1928. formatColumns: function formatColumns() {
  1929. return 'kolom';
  1930. },
  1931. formatFullscreen: function formatFullscreen() {
  1932. return 'Fullscreen';
  1933. },
  1934. formatAllRows: function formatAllRows() {
  1935. return 'Semua';
  1936. },
  1937. formatAutoRefresh: function formatAutoRefresh() {
  1938. return 'Auto Refresh';
  1939. },
  1940. formatExport: function formatExport() {
  1941. return 'Ekspor data';
  1942. },
  1943. formatClearFilters: function formatClearFilters() {
  1944. return 'Bersihkan filter';
  1945. },
  1946. formatJumpto: function formatJumpto() {
  1947. return 'GO';
  1948. },
  1949. formatAdvancedSearch: function formatAdvancedSearch() {
  1950. return 'Advanced search';
  1951. },
  1952. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  1953. return 'Close';
  1954. }
  1955. };
  1956. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['id-ID']);
  1957. })(jQuery);
  1958. });
  1959. (function (global, factory) {
  1960. if (typeof define === "function" && define.amd) {
  1961. define([], factory);
  1962. } else if (typeof exports !== "undefined") {
  1963. factory();
  1964. } else {
  1965. var mod = {
  1966. exports: {}
  1967. };
  1968. factory();
  1969. global.bootstrapTableItIT = mod.exports;
  1970. }
  1971. })(this, function () {
  1972. 'use strict';
  1973. /**
  1974. * Bootstrap Table Italian translation
  1975. * Author: Davide Renzi<davide.renzi@gmail.com>
  1976. * Author: Davide Borsatto <davide.borsatto@gmail.com>
  1977. * Author: Alessio Felicioni <alessio.felicioni@gmail.com>
  1978. */
  1979. (function ($) {
  1980. $.fn.bootstrapTable.locales['it-IT'] = {
  1981. formatLoadingMessage: function formatLoadingMessage() {
  1982. return 'Caricamento in corso';
  1983. },
  1984. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  1985. return pageNumber + ' elementi per pagina';
  1986. },
  1987. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  1988. return 'Visualizzazione da ' + pageFrom + ' a ' + pageTo + ' di ' + totalRows + ' elementi';
  1989. },
  1990. formatDetailPagination: function formatDetailPagination(totalRows) {
  1991. return 'Showing ' + totalRows + ' rows';
  1992. },
  1993. formatSearch: function formatSearch() {
  1994. return 'Cerca';
  1995. },
  1996. formatNoMatches: function formatNoMatches() {
  1997. return 'Nessun elemento trovato';
  1998. },
  1999. formatPaginationSwitch: function formatPaginationSwitch() {
  2000. return 'Nascondi/Mostra paginazione';
  2001. },
  2002. formatRefresh: function formatRefresh() {
  2003. return 'Aggiorna';
  2004. },
  2005. formatToggle: function formatToggle() {
  2006. return 'Attiva/Disattiva';
  2007. },
  2008. formatColumns: function formatColumns() {
  2009. return 'Colonne';
  2010. },
  2011. formatFullscreen: function formatFullscreen() {
  2012. return 'Fullscreen';
  2013. },
  2014. formatAllRows: function formatAllRows() {
  2015. return 'Tutto';
  2016. },
  2017. formatAutoRefresh: function formatAutoRefresh() {
  2018. return 'Auto Refresh';
  2019. },
  2020. formatExport: function formatExport() {
  2021. return 'Esporta dati';
  2022. },
  2023. formatClearFilters: function formatClearFilters() {
  2024. return 'Pulisci filtri';
  2025. },
  2026. formatJumpto: function formatJumpto() {
  2027. return 'GO';
  2028. },
  2029. formatAdvancedSearch: function formatAdvancedSearch() {
  2030. return 'Advanced search';
  2031. },
  2032. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  2033. return 'Close';
  2034. }
  2035. };
  2036. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['it-IT']);
  2037. })(jQuery);
  2038. });
  2039. (function (global, factory) {
  2040. if (typeof define === "function" && define.amd) {
  2041. define([], factory);
  2042. } else if (typeof exports !== "undefined") {
  2043. factory();
  2044. } else {
  2045. var mod = {
  2046. exports: {}
  2047. };
  2048. factory();
  2049. global.bootstrapTableJaJP = mod.exports;
  2050. }
  2051. })(this, function () {
  2052. 'use strict';
  2053. /**
  2054. * Bootstrap Table Japanese translation
  2055. * Author: Azamshul Azizy <azamshul@gmail.com>
  2056. */
  2057. (function ($) {
  2058. $.fn.bootstrapTable.locales['ja-JP'] = {
  2059. formatLoadingMessage: function formatLoadingMessage() {
  2060. return '読み込み中です。少々お待ちください。';
  2061. },
  2062. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  2063. return '\u30DA\u30FC\u30B8\u5F53\u305F\u308A\u6700\u5927' + pageNumber + '\u4EF6';
  2064. },
  2065. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  2066. return '\u5168' + totalRows + '\u4EF6\u304B\u3089\u3001' + pageFrom + '\u304B\u3089' + pageTo + '\u4EF6\u76EE\u307E\u3067\u8868\u793A\u3057\u3066\u3044\u307E\u3059';
  2067. },
  2068. formatDetailPagination: function formatDetailPagination(totalRows) {
  2069. return 'Showing ' + totalRows + ' rows';
  2070. },
  2071. formatSearch: function formatSearch() {
  2072. return '検索';
  2073. },
  2074. formatNoMatches: function formatNoMatches() {
  2075. return '該当するレコードが見つかりません';
  2076. },
  2077. formatPaginationSwitch: function formatPaginationSwitch() {
  2078. return 'ページ数を表示・非表示';
  2079. },
  2080. formatRefresh: function formatRefresh() {
  2081. return '更新';
  2082. },
  2083. formatToggle: function formatToggle() {
  2084. return 'トグル';
  2085. },
  2086. formatColumns: function formatColumns() {
  2087. return '列';
  2088. },
  2089. formatFullscreen: function formatFullscreen() {
  2090. return 'Fullscreen';
  2091. },
  2092. formatAllRows: function formatAllRows() {
  2093. return 'すべて';
  2094. },
  2095. formatAutoRefresh: function formatAutoRefresh() {
  2096. return 'Auto Refresh';
  2097. },
  2098. formatExport: function formatExport() {
  2099. return 'Export data';
  2100. },
  2101. formatClearFilters: function formatClearFilters() {
  2102. return 'Clear filters';
  2103. },
  2104. formatJumpto: function formatJumpto() {
  2105. return 'GO';
  2106. },
  2107. formatAdvancedSearch: function formatAdvancedSearch() {
  2108. return 'Advanced search';
  2109. },
  2110. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  2111. return 'Close';
  2112. }
  2113. };
  2114. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ja-JP']);
  2115. })(jQuery);
  2116. });
  2117. (function (global, factory) {
  2118. if (typeof define === "function" && define.amd) {
  2119. define([], factory);
  2120. } else if (typeof exports !== "undefined") {
  2121. factory();
  2122. } else {
  2123. var mod = {
  2124. exports: {}
  2125. };
  2126. factory();
  2127. global.bootstrapTableKaGE = mod.exports;
  2128. }
  2129. })(this, function () {
  2130. 'use strict';
  2131. /**
  2132. * Bootstrap Table Georgian translation
  2133. * Author: Levan Lotuashvili <l.lotuashvili@gmail.com>
  2134. */
  2135. (function ($) {
  2136. $.fn.bootstrapTable.locales['ka-GE'] = {
  2137. formatLoadingMessage: function formatLoadingMessage() {
  2138. return 'იტვირთება, გთხოვთ მოიცადოთ';
  2139. },
  2140. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  2141. return pageNumber + ' \u10E9\u10D0\u10DC\u10D0\u10EC\u10D4\u10E0\u10D8 \u10D7\u10D8\u10D7\u10DD \u10D2\u10D5\u10D4\u10E0\u10D3\u10D6\u10D4';
  2142. },
  2143. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  2144. return '\u10DC\u10D0\u10E9\u10D5\u10D4\u10DC\u10D4\u10D1\u10D8\u10D0 ' + pageFrom + '-\u10D3\u10D0\u10DC ' + pageTo + '-\u10DB\u10D3\u10D4 \u10E9\u10D0\u10DC\u10D0\u10EC\u10D4\u10E0\u10D8 \u10EF\u10D0\u10DB\u10E3\u10E0\u10D8 ' + totalRows + '-\u10D3\u10D0\u10DC';
  2145. },
  2146. formatDetailPagination: function formatDetailPagination(totalRows) {
  2147. return 'Showing ' + totalRows + ' rows';
  2148. },
  2149. formatSearch: function formatSearch() {
  2150. return 'ძებნა';
  2151. },
  2152. formatNoMatches: function formatNoMatches() {
  2153. return 'მონაცემები არ არის';
  2154. },
  2155. formatPaginationSwitch: function formatPaginationSwitch() {
  2156. return 'გვერდების გადამრთველის დამალვა/გამოჩენა';
  2157. },
  2158. formatRefresh: function formatRefresh() {
  2159. return 'განახლება';
  2160. },
  2161. formatToggle: function formatToggle() {
  2162. return 'ჩართვა/გამორთვა';
  2163. },
  2164. formatColumns: function formatColumns() {
  2165. return 'სვეტები';
  2166. },
  2167. formatFullscreen: function formatFullscreen() {
  2168. return 'Fullscreen';
  2169. },
  2170. formatAllRows: function formatAllRows() {
  2171. return 'All';
  2172. },
  2173. formatAutoRefresh: function formatAutoRefresh() {
  2174. return 'Auto Refresh';
  2175. },
  2176. formatExport: function formatExport() {
  2177. return 'Export data';
  2178. },
  2179. formatClearFilters: function formatClearFilters() {
  2180. return 'Clear filters';
  2181. },
  2182. formatJumpto: function formatJumpto() {
  2183. return 'GO';
  2184. },
  2185. formatAdvancedSearch: function formatAdvancedSearch() {
  2186. return 'Advanced search';
  2187. },
  2188. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  2189. return 'Close';
  2190. }
  2191. };
  2192. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ka-GE']);
  2193. })(jQuery);
  2194. });
  2195. (function (global, factory) {
  2196. if (typeof define === "function" && define.amd) {
  2197. define([], factory);
  2198. } else if (typeof exports !== "undefined") {
  2199. factory();
  2200. } else {
  2201. var mod = {
  2202. exports: {}
  2203. };
  2204. factory();
  2205. global.bootstrapTableKoKR = mod.exports;
  2206. }
  2207. })(this, function () {
  2208. 'use strict';
  2209. /**
  2210. * Bootstrap Table Korean translation
  2211. * Author: Yi Tae-Hyeong (jsonobject@gmail.com)
  2212. */
  2213. (function ($) {
  2214. $.fn.bootstrapTable.locales['ko-KR'] = {
  2215. formatLoadingMessage: function formatLoadingMessage() {
  2216. return '데이터를 불러오는 중입니다';
  2217. },
  2218. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  2219. return '\uD398\uC774\uC9C0 \uB2F9 ' + pageNumber + '\uAC1C \uB370\uC774\uD130 \uCD9C\uB825';
  2220. },
  2221. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  2222. return '\uC804\uCCB4 ' + totalRows + '\uAC1C \uC911 ' + pageFrom + '~' + pageTo + '\uBC88\uC9F8 \uB370\uC774\uD130 \uCD9C\uB825,';
  2223. },
  2224. formatDetailPagination: function formatDetailPagination(totalRows) {
  2225. return 'Showing ' + totalRows + ' rows';
  2226. },
  2227. formatSearch: function formatSearch() {
  2228. return '검색';
  2229. },
  2230. formatNoMatches: function formatNoMatches() {
  2231. return '조회된 데이터가 없습니다.';
  2232. },
  2233. formatPaginationSwitch: function formatPaginationSwitch() {
  2234. return 'Hide/Show pagination';
  2235. },
  2236. formatRefresh: function formatRefresh() {
  2237. return '새로 고침';
  2238. },
  2239. formatToggle: function formatToggle() {
  2240. return '전환';
  2241. },
  2242. formatColumns: function formatColumns() {
  2243. return '컬럼 필터링';
  2244. },
  2245. formatFullscreen: function formatFullscreen() {
  2246. return 'Fullscreen';
  2247. },
  2248. formatAllRows: function formatAllRows() {
  2249. return 'All';
  2250. },
  2251. formatAutoRefresh: function formatAutoRefresh() {
  2252. return 'Auto Refresh';
  2253. },
  2254. formatExport: function formatExport() {
  2255. return 'Export data';
  2256. },
  2257. formatClearFilters: function formatClearFilters() {
  2258. return 'Clear filters';
  2259. },
  2260. formatJumpto: function formatJumpto() {
  2261. return 'GO';
  2262. },
  2263. formatAdvancedSearch: function formatAdvancedSearch() {
  2264. return 'Advanced search';
  2265. },
  2266. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  2267. return 'Close';
  2268. }
  2269. };
  2270. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ko-KR']);
  2271. })(jQuery);
  2272. });
  2273. (function (global, factory) {
  2274. if (typeof define === "function" && define.amd) {
  2275. define([], factory);
  2276. } else if (typeof exports !== "undefined") {
  2277. factory();
  2278. } else {
  2279. var mod = {
  2280. exports: {}
  2281. };
  2282. factory();
  2283. global.bootstrapTableMsMY = mod.exports;
  2284. }
  2285. })(this, function () {
  2286. 'use strict';
  2287. /**
  2288. * Bootstrap Table Malay translation
  2289. * Author: Azamshul Azizy <azamshul@gmail.com>
  2290. */
  2291. (function ($) {
  2292. $.fn.bootstrapTable.locales['ms-MY'] = {
  2293. formatLoadingMessage: function formatLoadingMessage() {
  2294. return 'Permintaan sedang dimuatkan. Sila tunggu sebentar';
  2295. },
  2296. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  2297. return pageNumber + ' rekod setiap muka surat';
  2298. },
  2299. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  2300. return 'Sedang memaparkan rekod ' + pageFrom + ' hingga ' + pageTo + ' daripada jumlah ' + totalRows + ' rekod';
  2301. },
  2302. formatDetailPagination: function formatDetailPagination(totalRows) {
  2303. return 'Showing ' + totalRows + ' rows';
  2304. },
  2305. formatSearch: function formatSearch() {
  2306. return 'Cari';
  2307. },
  2308. formatNoMatches: function formatNoMatches() {
  2309. return 'Tiada rekod yang menyamai permintaan';
  2310. },
  2311. formatPaginationSwitch: function formatPaginationSwitch() {
  2312. return 'Tunjuk/sembunyi muka surat';
  2313. },
  2314. formatRefresh: function formatRefresh() {
  2315. return 'Muatsemula';
  2316. },
  2317. formatToggle: function formatToggle() {
  2318. return 'Tukar';
  2319. },
  2320. formatColumns: function formatColumns() {
  2321. return 'Lajur';
  2322. },
  2323. formatFullscreen: function formatFullscreen() {
  2324. return 'Fullscreen';
  2325. },
  2326. formatAllRows: function formatAllRows() {
  2327. return 'Semua';
  2328. },
  2329. formatAutoRefresh: function formatAutoRefresh() {
  2330. return 'Auto Refresh';
  2331. },
  2332. formatExport: function formatExport() {
  2333. return 'Export data';
  2334. },
  2335. formatClearFilters: function formatClearFilters() {
  2336. return 'Clear filters';
  2337. },
  2338. formatJumpto: function formatJumpto() {
  2339. return 'GO';
  2340. },
  2341. formatAdvancedSearch: function formatAdvancedSearch() {
  2342. return 'Advanced search';
  2343. },
  2344. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  2345. return 'Close';
  2346. }
  2347. };
  2348. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ms-MY']);
  2349. })(jQuery);
  2350. });
  2351. (function (global, factory) {
  2352. if (typeof define === "function" && define.amd) {
  2353. define([], factory);
  2354. } else if (typeof exports !== "undefined") {
  2355. factory();
  2356. } else {
  2357. var mod = {
  2358. exports: {}
  2359. };
  2360. factory();
  2361. global.bootstrapTableNbNO = mod.exports;
  2362. }
  2363. })(this, function () {
  2364. 'use strict';
  2365. /**
  2366. * Bootstrap Table norwegian translation
  2367. * Author: Jim Nordbø, jim@nordb.no
  2368. */
  2369. (function ($) {
  2370. $.fn.bootstrapTable.locales['nb-NO'] = {
  2371. formatLoadingMessage: function formatLoadingMessage() {
  2372. return 'Oppdaterer, vennligst vent';
  2373. },
  2374. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  2375. return pageNumber + ' poster pr side';
  2376. },
  2377. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  2378. return 'Viser ' + pageFrom + ' til ' + pageTo + ' av ' + totalRows + ' rekker';
  2379. },
  2380. formatDetailPagination: function formatDetailPagination(totalRows) {
  2381. return 'Showing ' + totalRows + ' rows';
  2382. },
  2383. formatSearch: function formatSearch() {
  2384. return 'Søk';
  2385. },
  2386. formatNoMatches: function formatNoMatches() {
  2387. return 'Ingen poster funnet';
  2388. },
  2389. formatPaginationSwitch: function formatPaginationSwitch() {
  2390. return 'Hide/Show pagination';
  2391. },
  2392. formatRefresh: function formatRefresh() {
  2393. return 'Oppdater';
  2394. },
  2395. formatToggle: function formatToggle() {
  2396. return 'Endre';
  2397. },
  2398. formatColumns: function formatColumns() {
  2399. return 'Kolonner';
  2400. },
  2401. formatFullscreen: function formatFullscreen() {
  2402. return 'Fullscreen';
  2403. },
  2404. formatAllRows: function formatAllRows() {
  2405. return 'All';
  2406. },
  2407. formatAutoRefresh: function formatAutoRefresh() {
  2408. return 'Auto Refresh';
  2409. },
  2410. formatExport: function formatExport() {
  2411. return 'Export data';
  2412. },
  2413. formatClearFilters: function formatClearFilters() {
  2414. return 'Clear filters';
  2415. },
  2416. formatJumpto: function formatJumpto() {
  2417. return 'GO';
  2418. },
  2419. formatAdvancedSearch: function formatAdvancedSearch() {
  2420. return 'Advanced search';
  2421. },
  2422. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  2423. return 'Close';
  2424. }
  2425. };
  2426. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['nb-NO']);
  2427. })(jQuery);
  2428. });
  2429. (function (global, factory) {
  2430. if (typeof define === "function" && define.amd) {
  2431. define([], factory);
  2432. } else if (typeof exports !== "undefined") {
  2433. factory();
  2434. } else {
  2435. var mod = {
  2436. exports: {}
  2437. };
  2438. factory();
  2439. global.bootstrapTableNlNL = mod.exports;
  2440. }
  2441. })(this, function () {
  2442. 'use strict';
  2443. /**
  2444. * Bootstrap Table Dutch translation
  2445. * Author: Your Name <info@a2hankes.nl>
  2446. */
  2447. (function ($) {
  2448. $.fn.bootstrapTable.locales['nl-NL'] = {
  2449. formatLoadingMessage: function formatLoadingMessage() {
  2450. return 'Laden, even geduld';
  2451. },
  2452. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  2453. return pageNumber + ' records per pagina';
  2454. },
  2455. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  2456. return 'Toon ' + pageFrom + ' tot ' + pageTo + ' van ' + totalRows + ' record' + (totalRows > 1 ? 's' : '');
  2457. },
  2458. formatDetailPagination: function formatDetailPagination(totalRows) {
  2459. return 'Toon ' + totalRows + ' record' + (totalRows > 1 ? 's' : '');
  2460. },
  2461. formatSearch: function formatSearch() {
  2462. return 'Zoeken';
  2463. },
  2464. formatNoMatches: function formatNoMatches() {
  2465. return 'Geen resultaten gevonden';
  2466. },
  2467. formatPaginationSwitch: function formatPaginationSwitch() {
  2468. return 'Verberg/Toon paginatie';
  2469. },
  2470. formatRefresh: function formatRefresh() {
  2471. return 'Vernieuwen';
  2472. },
  2473. formatToggle: function formatToggle() {
  2474. return 'Omschakelen';
  2475. },
  2476. formatColumns: function formatColumns() {
  2477. return 'Kolommen';
  2478. },
  2479. formatFullscreen: function formatFullscreen() {
  2480. return 'Fullscreen';
  2481. },
  2482. formatAllRows: function formatAllRows() {
  2483. return 'Alle';
  2484. },
  2485. formatAutoRefresh: function formatAutoRefresh() {
  2486. return 'Auto Refresh';
  2487. },
  2488. formatExport: function formatExport() {
  2489. return 'Exporteer data';
  2490. },
  2491. formatClearFilters: function formatClearFilters() {
  2492. return 'Verwijder filters';
  2493. },
  2494. formatJumpto: function formatJumpto() {
  2495. return 'GO';
  2496. },
  2497. formatAdvancedSearch: function formatAdvancedSearch() {
  2498. return 'Advanced search';
  2499. },
  2500. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  2501. return 'Close';
  2502. }
  2503. };
  2504. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['nl-NL']);
  2505. })(jQuery);
  2506. });
  2507. (function (global, factory) {
  2508. if (typeof define === "function" && define.amd) {
  2509. define([], factory);
  2510. } else if (typeof exports !== "undefined") {
  2511. factory();
  2512. } else {
  2513. var mod = {
  2514. exports: {}
  2515. };
  2516. factory();
  2517. global.bootstrapTablePlPL = mod.exports;
  2518. }
  2519. })(this, function () {
  2520. 'use strict';
  2521. /**
  2522. * Bootstrap Table Polish translation
  2523. * Author: zergu <michal.zagdan @ gmail com>
  2524. */
  2525. (function ($) {
  2526. $.fn.bootstrapTable.locales['pl-PL'] = {
  2527. formatLoadingMessage: function formatLoadingMessage() {
  2528. return 'Ładowanie, proszę czekać';
  2529. },
  2530. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  2531. return pageNumber + ' rekord\xF3w na stron\u0119';
  2532. },
  2533. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  2534. return 'Wy\u015Bwietlanie rekord\xF3w od ' + pageFrom + ' do ' + pageTo + ' z ' + totalRows;
  2535. },
  2536. formatDetailPagination: function formatDetailPagination(totalRows) {
  2537. return 'Showing ' + totalRows + ' rows';
  2538. },
  2539. formatSearch: function formatSearch() {
  2540. return 'Szukaj';
  2541. },
  2542. formatNoMatches: function formatNoMatches() {
  2543. return 'Niestety, nic nie znaleziono';
  2544. },
  2545. formatPaginationSwitch: function formatPaginationSwitch() {
  2546. return 'Hide/Show pagination';
  2547. },
  2548. formatRefresh: function formatRefresh() {
  2549. return 'Odśwież';
  2550. },
  2551. formatToggle: function formatToggle() {
  2552. return 'Przełącz';
  2553. },
  2554. formatColumns: function formatColumns() {
  2555. return 'Kolumny';
  2556. },
  2557. formatFullscreen: function formatFullscreen() {
  2558. return 'Fullscreen';
  2559. },
  2560. formatAllRows: function formatAllRows() {
  2561. return 'All';
  2562. },
  2563. formatAutoRefresh: function formatAutoRefresh() {
  2564. return 'Auto Refresh';
  2565. },
  2566. formatExport: function formatExport() {
  2567. return 'Export data';
  2568. },
  2569. formatClearFilters: function formatClearFilters() {
  2570. return 'Clear filters';
  2571. },
  2572. formatJumpto: function formatJumpto() {
  2573. return 'GO';
  2574. },
  2575. formatAdvancedSearch: function formatAdvancedSearch() {
  2576. return 'Advanced search';
  2577. },
  2578. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  2579. return 'Close';
  2580. }
  2581. };
  2582. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['pl-PL']);
  2583. })(jQuery);
  2584. });
  2585. (function (global, factory) {
  2586. if (typeof define === "function" && define.amd) {
  2587. define([], factory);
  2588. } else if (typeof exports !== "undefined") {
  2589. factory();
  2590. } else {
  2591. var mod = {
  2592. exports: {}
  2593. };
  2594. factory();
  2595. global.bootstrapTablePtBR = mod.exports;
  2596. }
  2597. })(this, function () {
  2598. 'use strict';
  2599. /**
  2600. * Bootstrap Table Brazilian Portuguese Translation
  2601. * Author: Eduardo Cerqueira<egcerqueira@gmail.com>
  2602. * Update: João Mello<jmello@hotmail.com.br>
  2603. */
  2604. (function ($) {
  2605. $.fn.bootstrapTable.locales['pt-BR'] = {
  2606. formatLoadingMessage: function formatLoadingMessage() {
  2607. return 'Carregando, aguarde';
  2608. },
  2609. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  2610. return pageNumber + ' registros por p\xE1gina';
  2611. },
  2612. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  2613. return 'Exibindo ' + pageFrom + ' at\xE9 ' + pageTo + ' de ' + totalRows + ' linhas';
  2614. },
  2615. formatDetailPagination: function formatDetailPagination(totalRows) {
  2616. return 'Showing ' + totalRows + ' rows';
  2617. },
  2618. formatSearch: function formatSearch() {
  2619. return 'Pesquisar';
  2620. },
  2621. formatNoMatches: function formatNoMatches() {
  2622. return 'Nenhum registro encontrado';
  2623. },
  2624. formatPaginationSwitch: function formatPaginationSwitch() {
  2625. return 'Ocultar/Exibir paginação';
  2626. },
  2627. formatRefresh: function formatRefresh() {
  2628. return 'Recarregar';
  2629. },
  2630. formatToggle: function formatToggle() {
  2631. return 'Alternar';
  2632. },
  2633. formatColumns: function formatColumns() {
  2634. return 'Colunas';
  2635. },
  2636. formatFullscreen: function formatFullscreen() {
  2637. return 'Fullscreen';
  2638. },
  2639. formatAllRows: function formatAllRows() {
  2640. return 'All';
  2641. },
  2642. formatAutoRefresh: function formatAutoRefresh() {
  2643. return 'Auto Refresh';
  2644. },
  2645. formatExport: function formatExport() {
  2646. return 'Export data';
  2647. },
  2648. formatClearFilters: function formatClearFilters() {
  2649. return 'Clear filters';
  2650. },
  2651. formatJumpto: function formatJumpto() {
  2652. return 'GO';
  2653. },
  2654. formatAdvancedSearch: function formatAdvancedSearch() {
  2655. return 'Advanced search';
  2656. },
  2657. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  2658. return 'Close';
  2659. }
  2660. };
  2661. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['pt-BR']);
  2662. })(jQuery);
  2663. });
  2664. (function (global, factory) {
  2665. if (typeof define === "function" && define.amd) {
  2666. define([], factory);
  2667. } else if (typeof exports !== "undefined") {
  2668. factory();
  2669. } else {
  2670. var mod = {
  2671. exports: {}
  2672. };
  2673. factory();
  2674. global.bootstrapTablePtPT = mod.exports;
  2675. }
  2676. })(this, function () {
  2677. 'use strict';
  2678. /**
  2679. * Bootstrap Table Portuguese Portugal Translation
  2680. * Author: Burnspirit<burnspirit@gmail.com>
  2681. */
  2682. (function ($) {
  2683. $.fn.bootstrapTable.locales['pt-PT'] = {
  2684. formatLoadingMessage: function formatLoadingMessage() {
  2685. return 'A carregar, por favor aguarde';
  2686. },
  2687. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  2688. return pageNumber + ' registos por p&aacute;gina';
  2689. },
  2690. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  2691. return 'A mostrar ' + pageFrom + ' at&eacute; ' + pageTo + ' de ' + totalRows + ' linhas';
  2692. },
  2693. formatDetailPagination: function formatDetailPagination(totalRows) {
  2694. return 'Showing ' + totalRows + ' rows';
  2695. },
  2696. formatSearch: function formatSearch() {
  2697. return 'Pesquisa';
  2698. },
  2699. formatNoMatches: function formatNoMatches() {
  2700. return 'Nenhum registo encontrado';
  2701. },
  2702. formatPaginationSwitch: function formatPaginationSwitch() {
  2703. return 'Esconder/Mostrar pagina&ccedil&atilde;o';
  2704. },
  2705. formatRefresh: function formatRefresh() {
  2706. return 'Atualizar';
  2707. },
  2708. formatToggle: function formatToggle() {
  2709. return 'Alternar';
  2710. },
  2711. formatColumns: function formatColumns() {
  2712. return 'Colunas';
  2713. },
  2714. formatFullscreen: function formatFullscreen() {
  2715. return 'Fullscreen';
  2716. },
  2717. formatAllRows: function formatAllRows() {
  2718. return 'Tudo';
  2719. },
  2720. formatAutoRefresh: function formatAutoRefresh() {
  2721. return 'Auto Refresh';
  2722. },
  2723. formatExport: function formatExport() {
  2724. return 'Export data';
  2725. },
  2726. formatClearFilters: function formatClearFilters() {
  2727. return 'Clear filters';
  2728. },
  2729. formatJumpto: function formatJumpto() {
  2730. return 'GO';
  2731. },
  2732. formatAdvancedSearch: function formatAdvancedSearch() {
  2733. return 'Advanced search';
  2734. },
  2735. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  2736. return 'Close';
  2737. }
  2738. };
  2739. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['pt-PT']);
  2740. })(jQuery);
  2741. });
  2742. (function (global, factory) {
  2743. if (typeof define === "function" && define.amd) {
  2744. define([], factory);
  2745. } else if (typeof exports !== "undefined") {
  2746. factory();
  2747. } else {
  2748. var mod = {
  2749. exports: {}
  2750. };
  2751. factory();
  2752. global.bootstrapTableRoRO = mod.exports;
  2753. }
  2754. })(this, function () {
  2755. 'use strict';
  2756. /**
  2757. * Bootstrap Table Romanian translation
  2758. * Author: cristake <cristianiosif@me.com>
  2759. */
  2760. (function ($) {
  2761. $.fn.bootstrapTable.locales['ro-RO'] = {
  2762. formatLoadingMessage: function formatLoadingMessage() {
  2763. return 'Se incarca, va rugam asteptati';
  2764. },
  2765. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  2766. return pageNumber + ' inregistrari pe pagina';
  2767. },
  2768. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  2769. return 'Arata de la ' + pageFrom + ' pana la ' + pageTo + ' din ' + totalRows + ' randuri';
  2770. },
  2771. formatDetailPagination: function formatDetailPagination(totalRows) {
  2772. return 'Showing ' + totalRows + ' rows';
  2773. },
  2774. formatSearch: function formatSearch() {
  2775. return 'Cauta';
  2776. },
  2777. formatNoMatches: function formatNoMatches() {
  2778. return 'Nu au fost gasite inregistrari';
  2779. },
  2780. formatPaginationSwitch: function formatPaginationSwitch() {
  2781. return 'Ascunde/Arata paginatia';
  2782. },
  2783. formatRefresh: function formatRefresh() {
  2784. return 'Reincarca';
  2785. },
  2786. formatToggle: function formatToggle() {
  2787. return 'Comuta';
  2788. },
  2789. formatColumns: function formatColumns() {
  2790. return 'Coloane';
  2791. },
  2792. formatFullscreen: function formatFullscreen() {
  2793. return 'Fullscreen';
  2794. },
  2795. formatAllRows: function formatAllRows() {
  2796. return 'Toate';
  2797. },
  2798. formatAutoRefresh: function formatAutoRefresh() {
  2799. return 'Auto Refresh';
  2800. },
  2801. formatExport: function formatExport() {
  2802. return 'Export data';
  2803. },
  2804. formatClearFilters: function formatClearFilters() {
  2805. return 'Clear filters';
  2806. },
  2807. formatJumpto: function formatJumpto() {
  2808. return 'GO';
  2809. },
  2810. formatAdvancedSearch: function formatAdvancedSearch() {
  2811. return 'Advanced search';
  2812. },
  2813. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  2814. return 'Close';
  2815. }
  2816. };
  2817. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ro-RO']);
  2818. })(jQuery);
  2819. });
  2820. (function (global, factory) {
  2821. if (typeof define === "function" && define.amd) {
  2822. define([], factory);
  2823. } else if (typeof exports !== "undefined") {
  2824. factory();
  2825. } else {
  2826. var mod = {
  2827. exports: {}
  2828. };
  2829. factory();
  2830. global.bootstrapTableRuRU = mod.exports;
  2831. }
  2832. })(this, function () {
  2833. 'use strict';
  2834. /**
  2835. * Bootstrap Table Russian translation
  2836. * Author: Dunaevsky Maxim <dunmaksim@yandex.ru>
  2837. */
  2838. (function ($) {
  2839. $.fn.bootstrapTable.locales['ru-RU'] = {
  2840. formatLoadingMessage: function formatLoadingMessage() {
  2841. return 'Пожалуйста, подождите, идёт загрузка';
  2842. },
  2843. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  2844. return pageNumber + ' \u0437\u0430\u043F\u0438\u0441\u0435\u0439 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0443';
  2845. },
  2846. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  2847. return '\u0417\u0430\u043F\u0438\u0441\u0438 \u0441 ' + pageFrom + ' \u043F\u043E ' + pageTo + ' \u0438\u0437 ' + totalRows;
  2848. },
  2849. formatDetailPagination: function formatDetailPagination(totalRows) {
  2850. return 'Showing ' + totalRows + ' rows';
  2851. },
  2852. formatSearch: function formatSearch() {
  2853. return 'Поиск';
  2854. },
  2855. formatNoMatches: function formatNoMatches() {
  2856. return 'Ничего не найдено';
  2857. },
  2858. formatPaginationSwitch: function formatPaginationSwitch() {
  2859. return 'Hide/Show pagination';
  2860. },
  2861. formatRefresh: function formatRefresh() {
  2862. return 'Обновить';
  2863. },
  2864. formatToggle: function formatToggle() {
  2865. return 'Переключить';
  2866. },
  2867. formatColumns: function formatColumns() {
  2868. return 'Колонки';
  2869. },
  2870. formatFullscreen: function formatFullscreen() {
  2871. return 'Fullscreen';
  2872. },
  2873. formatAllRows: function formatAllRows() {
  2874. return 'All';
  2875. },
  2876. formatAutoRefresh: function formatAutoRefresh() {
  2877. return 'Auto Refresh';
  2878. },
  2879. formatExport: function formatExport() {
  2880. return 'Export data';
  2881. },
  2882. formatClearFilters: function formatClearFilters() {
  2883. return 'Очистить фильтры';
  2884. },
  2885. formatJumpto: function formatJumpto() {
  2886. return 'GO';
  2887. },
  2888. formatAdvancedSearch: function formatAdvancedSearch() {
  2889. return 'Advanced search';
  2890. },
  2891. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  2892. return 'Close';
  2893. }
  2894. };
  2895. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ru-RU']);
  2896. })(jQuery);
  2897. });
  2898. (function (global, factory) {
  2899. if (typeof define === "function" && define.amd) {
  2900. define([], factory);
  2901. } else if (typeof exports !== "undefined") {
  2902. factory();
  2903. } else {
  2904. var mod = {
  2905. exports: {}
  2906. };
  2907. factory();
  2908. global.bootstrapTableSkSK = mod.exports;
  2909. }
  2910. })(this, function () {
  2911. 'use strict';
  2912. /**
  2913. * Bootstrap Table Slovak translation
  2914. * Author: Jozef Dúc<jozef.d13@gmail.com>
  2915. */
  2916. (function ($) {
  2917. $.fn.bootstrapTable.locales['sk-SK'] = {
  2918. formatLoadingMessage: function formatLoadingMessage() {
  2919. return 'Prosím čakajte';
  2920. },
  2921. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  2922. return pageNumber + ' z\xE1znamov na stranu';
  2923. },
  2924. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  2925. return 'Zobrazen\xE1 ' + pageFrom + '. - ' + pageTo + '. polo\u017Eka z celkov\xFDch ' + totalRows;
  2926. },
  2927. formatDetailPagination: function formatDetailPagination(totalRows) {
  2928. return 'Showing ' + totalRows + ' rows';
  2929. },
  2930. formatSearch: function formatSearch() {
  2931. return 'Vyhľadávanie';
  2932. },
  2933. formatNoMatches: function formatNoMatches() {
  2934. return 'Nenájdená žiadna vyhovujúca položka';
  2935. },
  2936. formatPaginationSwitch: function formatPaginationSwitch() {
  2937. return 'Skry/Zobraz stránkovanie';
  2938. },
  2939. formatRefresh: function formatRefresh() {
  2940. return 'Obnoviť';
  2941. },
  2942. formatToggle: function formatToggle() {
  2943. return 'Prepni';
  2944. },
  2945. formatColumns: function formatColumns() {
  2946. return 'Stĺpce';
  2947. },
  2948. formatFullscreen: function formatFullscreen() {
  2949. return 'Fullscreen';
  2950. },
  2951. formatAllRows: function formatAllRows() {
  2952. return 'Všetky';
  2953. },
  2954. formatAutoRefresh: function formatAutoRefresh() {
  2955. return 'Auto Refresh';
  2956. },
  2957. formatExport: function formatExport() {
  2958. return 'Exportuj dáta';
  2959. },
  2960. formatClearFilters: function formatClearFilters() {
  2961. return 'Odstráň filtre';
  2962. },
  2963. formatJumpto: function formatJumpto() {
  2964. return 'GO';
  2965. },
  2966. formatAdvancedSearch: function formatAdvancedSearch() {
  2967. return 'Advanced search';
  2968. },
  2969. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  2970. return 'Close';
  2971. }
  2972. };
  2973. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['sk-SK']);
  2974. })(jQuery);
  2975. });
  2976. (function (global, factory) {
  2977. if (typeof define === "function" && define.amd) {
  2978. define([], factory);
  2979. } else if (typeof exports !== "undefined") {
  2980. factory();
  2981. } else {
  2982. var mod = {
  2983. exports: {}
  2984. };
  2985. factory();
  2986. global.bootstrapTableSvSE = mod.exports;
  2987. }
  2988. })(this, function () {
  2989. 'use strict';
  2990. /**
  2991. * Bootstrap Table Swedish translation
  2992. * Author: C Bratt <bratt@inix.se>
  2993. */
  2994. (function ($) {
  2995. $.fn.bootstrapTable.locales['sv-SE'] = {
  2996. formatLoadingMessage: function formatLoadingMessage() {
  2997. return 'Laddar, vänligen vänta';
  2998. },
  2999. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  3000. return pageNumber + ' rader per sida';
  3001. },
  3002. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  3003. return 'Visa ' + pageFrom + ' till ' + pageTo + ' av ' + totalRows + ' rader';
  3004. },
  3005. formatDetailPagination: function formatDetailPagination(totalRows) {
  3006. return 'Showing ' + totalRows + ' rows';
  3007. },
  3008. formatSearch: function formatSearch() {
  3009. return 'Sök';
  3010. },
  3011. formatNoMatches: function formatNoMatches() {
  3012. return 'Inga matchande resultat funna.';
  3013. },
  3014. formatPaginationSwitch: function formatPaginationSwitch() {
  3015. return 'Hide/Show pagination';
  3016. },
  3017. formatRefresh: function formatRefresh() {
  3018. return 'Uppdatera';
  3019. },
  3020. formatToggle: function formatToggle() {
  3021. return 'Skifta';
  3022. },
  3023. formatColumns: function formatColumns() {
  3024. return 'kolumn';
  3025. },
  3026. formatFullscreen: function formatFullscreen() {
  3027. return 'Fullscreen';
  3028. },
  3029. formatAllRows: function formatAllRows() {
  3030. return 'All';
  3031. },
  3032. formatAutoRefresh: function formatAutoRefresh() {
  3033. return 'Auto Refresh';
  3034. },
  3035. formatExport: function formatExport() {
  3036. return 'Export data';
  3037. },
  3038. formatClearFilters: function formatClearFilters() {
  3039. return 'Clear filters';
  3040. },
  3041. formatJumpto: function formatJumpto() {
  3042. return 'GO';
  3043. },
  3044. formatAdvancedSearch: function formatAdvancedSearch() {
  3045. return 'Advanced search';
  3046. },
  3047. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  3048. return 'Close';
  3049. }
  3050. };
  3051. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['sv-SE']);
  3052. })(jQuery);
  3053. });
  3054. (function (global, factory) {
  3055. if (typeof define === "function" && define.amd) {
  3056. define([], factory);
  3057. } else if (typeof exports !== "undefined") {
  3058. factory();
  3059. } else {
  3060. var mod = {
  3061. exports: {}
  3062. };
  3063. factory();
  3064. global.bootstrapTableThTH = mod.exports;
  3065. }
  3066. })(this, function () {
  3067. 'use strict';
  3068. /**
  3069. * Bootstrap Table Thai translation
  3070. * Author: Monchai S.<monchais@gmail.com>
  3071. */
  3072. (function ($) {
  3073. $.fn.bootstrapTable.locales['th-TH'] = {
  3074. formatLoadingMessage: function formatLoadingMessage() {
  3075. return 'กำลังโหลดข้อมูล, กรุณารอสักครู่';
  3076. },
  3077. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  3078. return pageNumber + ' \u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E15\u0E48\u0E2D\u0E2B\u0E19\u0E49\u0E32';
  3079. },
  3080. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  3081. return '\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E17\u0E35\u0E48 ' + pageFrom + ' \u0E16\u0E36\u0E07 ' + pageTo + ' \u0E08\u0E32\u0E01\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14 ' + totalRows + ' \u0E23\u0E32\u0E22\u0E01\u0E32\u0E23';
  3082. },
  3083. formatDetailPagination: function formatDetailPagination(totalRows) {
  3084. return 'Showing ' + totalRows + ' rows';
  3085. },
  3086. formatSearch: function formatSearch() {
  3087. return 'ค้นหา';
  3088. },
  3089. formatNoMatches: function formatNoMatches() {
  3090. return 'ไม่พบรายการที่ค้นหา !';
  3091. },
  3092. formatPaginationSwitch: function formatPaginationSwitch() {
  3093. return 'Hide/Show pagination';
  3094. },
  3095. formatRefresh: function formatRefresh() {
  3096. return 'รีเฟรส';
  3097. },
  3098. formatToggle: function formatToggle() {
  3099. return 'สลับมุมมอง';
  3100. },
  3101. formatColumns: function formatColumns() {
  3102. return 'คอลัมน์';
  3103. },
  3104. formatFullscreen: function formatFullscreen() {
  3105. return 'Fullscreen';
  3106. },
  3107. formatAllRows: function formatAllRows() {
  3108. return 'All';
  3109. },
  3110. formatAutoRefresh: function formatAutoRefresh() {
  3111. return 'Auto Refresh';
  3112. },
  3113. formatExport: function formatExport() {
  3114. return 'Export data';
  3115. },
  3116. formatClearFilters: function formatClearFilters() {
  3117. return 'Clear filters';
  3118. },
  3119. formatJumpto: function formatJumpto() {
  3120. return 'GO';
  3121. },
  3122. formatAdvancedSearch: function formatAdvancedSearch() {
  3123. return 'Advanced search';
  3124. },
  3125. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  3126. return 'Close';
  3127. }
  3128. };
  3129. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['th-TH']);
  3130. })(jQuery);
  3131. });
  3132. (function (global, factory) {
  3133. if (typeof define === "function" && define.amd) {
  3134. define([], factory);
  3135. } else if (typeof exports !== "undefined") {
  3136. factory();
  3137. } else {
  3138. var mod = {
  3139. exports: {}
  3140. };
  3141. factory();
  3142. global.bootstrapTableTrTR = mod.exports;
  3143. }
  3144. })(this, function () {
  3145. 'use strict';
  3146. /**
  3147. * Bootstrap Table Turkish translation
  3148. * Author: Emin Şen
  3149. * Author: Sercan Cakir <srcnckr@gmail.com>
  3150. */
  3151. (function ($) {
  3152. $.fn.bootstrapTable.locales['tr-TR'] = {
  3153. formatLoadingMessage: function formatLoadingMessage() {
  3154. return 'Yükleniyor, lütfen bekleyin';
  3155. },
  3156. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  3157. return 'Sayfa ba\u015F\u0131na ' + pageNumber + ' kay\u0131t.';
  3158. },
  3159. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  3160. return totalRows + ' kay\u0131ttan ' + pageFrom + '-' + pageTo + ' aras\u0131 g\xF6steriliyor.';
  3161. },
  3162. formatDetailPagination: function formatDetailPagination(totalRows) {
  3163. return 'Showing ' + totalRows + ' rows';
  3164. },
  3165. formatSearch: function formatSearch() {
  3166. return 'Ara';
  3167. },
  3168. formatNoMatches: function formatNoMatches() {
  3169. return 'Eşleşen kayıt bulunamadı.';
  3170. },
  3171. formatPaginationSwitch: function formatPaginationSwitch() {
  3172. return 'Hide/Show pagination';
  3173. },
  3174. formatRefresh: function formatRefresh() {
  3175. return 'Yenile';
  3176. },
  3177. formatToggle: function formatToggle() {
  3178. return 'Değiştir';
  3179. },
  3180. formatColumns: function formatColumns() {
  3181. return 'Sütunlar';
  3182. },
  3183. formatFullscreen: function formatFullscreen() {
  3184. return 'Fullscreen';
  3185. },
  3186. formatAllRows: function formatAllRows() {
  3187. return 'Tüm Satırlar';
  3188. },
  3189. formatAutoRefresh: function formatAutoRefresh() {
  3190. return 'Auto Refresh';
  3191. },
  3192. formatExport: function formatExport() {
  3193. return 'Export data';
  3194. },
  3195. formatClearFilters: function formatClearFilters() {
  3196. return 'Clear filters';
  3197. },
  3198. formatJumpto: function formatJumpto() {
  3199. return 'GO';
  3200. },
  3201. formatAdvancedSearch: function formatAdvancedSearch() {
  3202. return 'Advanced search';
  3203. },
  3204. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  3205. return 'Close';
  3206. }
  3207. };
  3208. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['tr-TR']);
  3209. })(jQuery);
  3210. });
  3211. (function (global, factory) {
  3212. if (typeof define === "function" && define.amd) {
  3213. define([], factory);
  3214. } else if (typeof exports !== "undefined") {
  3215. factory();
  3216. } else {
  3217. var mod = {
  3218. exports: {}
  3219. };
  3220. factory();
  3221. global.bootstrapTableUkUA = mod.exports;
  3222. }
  3223. })(this, function () {
  3224. 'use strict';
  3225. /**
  3226. * Bootstrap Table Ukrainian translation
  3227. * Author: Vitaliy Timchenko <vitaliy.timchenko@gmail.com>
  3228. */
  3229. (function ($) {
  3230. $.fn.bootstrapTable.locales['uk-UA'] = {
  3231. formatLoadingMessage: function formatLoadingMessage() {
  3232. return 'Завантаження, будь ласка, зачекайте';
  3233. },
  3234. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  3235. return pageNumber + ' \u0437\u0430\u043F\u0438\u0441\u0456\u0432 \u043D\u0430 \u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0443';
  3236. },
  3237. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  3238. return '\u041F\u043E\u043A\u0430\u0437\u0430\u043D\u043E \u0437 ' + pageFrom + ' \u043F\u043E ' + pageTo + '. \u0412\u0441\u044C\u043E\u0433\u043E: ' + totalRows;
  3239. },
  3240. formatDetailPagination: function formatDetailPagination(totalRows) {
  3241. return 'Showing ' + totalRows + ' rows';
  3242. },
  3243. formatSearch: function formatSearch() {
  3244. return 'Пошук';
  3245. },
  3246. formatNoMatches: function formatNoMatches() {
  3247. return 'Не знайдено жодного запису';
  3248. },
  3249. formatPaginationSwitch: function formatPaginationSwitch() {
  3250. return 'Hide/Show pagination';
  3251. },
  3252. formatRefresh: function formatRefresh() {
  3253. return 'Оновити';
  3254. },
  3255. formatToggle: function formatToggle() {
  3256. return 'Змінити';
  3257. },
  3258. formatColumns: function formatColumns() {
  3259. return 'Стовпці';
  3260. },
  3261. formatFullscreen: function formatFullscreen() {
  3262. return 'Fullscreen';
  3263. },
  3264. formatAllRows: function formatAllRows() {
  3265. return 'All';
  3266. },
  3267. formatAutoRefresh: function formatAutoRefresh() {
  3268. return 'Auto Refresh';
  3269. },
  3270. formatExport: function formatExport() {
  3271. return 'Export data';
  3272. },
  3273. formatClearFilters: function formatClearFilters() {
  3274. return 'Очистити фільтри';
  3275. },
  3276. formatJumpto: function formatJumpto() {
  3277. return 'GO';
  3278. },
  3279. formatAdvancedSearch: function formatAdvancedSearch() {
  3280. return 'Advanced search';
  3281. },
  3282. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  3283. return 'Close';
  3284. }
  3285. };
  3286. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['uk-UA']);
  3287. })(jQuery);
  3288. });
  3289. (function (global, factory) {
  3290. if (typeof define === "function" && define.amd) {
  3291. define([], factory);
  3292. } else if (typeof exports !== "undefined") {
  3293. factory();
  3294. } else {
  3295. var mod = {
  3296. exports: {}
  3297. };
  3298. factory();
  3299. global.bootstrapTableUrPK = mod.exports;
  3300. }
  3301. })(this, function () {
  3302. 'use strict';
  3303. /**
  3304. * Bootstrap Table Urdu translation
  3305. * Author: Malik <me@malikrizwan.com>
  3306. */
  3307. (function ($) {
  3308. $.fn.bootstrapTable.locales['ur-PK'] = {
  3309. formatLoadingMessage: function formatLoadingMessage() {
  3310. return 'براۓ مہربانی انتظار کیجئے';
  3311. },
  3312. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  3313. return pageNumber + ' \u0631\u06CC\u06A9\u0627\u0631\u0688\u0632 \u0641\u06CC \u0635\u0641\u06C1 ';
  3314. },
  3315. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  3316. return '\u062F\u06CC\u06A9\u06BE\u06CC\u06BA ' + pageFrom + ' \u0633\u06D2 ' + pageTo + ' \u06A9\u06D2 ' + totalRows + '\u0631\u06CC\u06A9\u0627\u0631\u0688\u0632';
  3317. },
  3318. formatDetailPagination: function formatDetailPagination(totalRows) {
  3319. return 'Showing ' + totalRows + ' rows';
  3320. },
  3321. formatSearch: function formatSearch() {
  3322. return 'تلاش';
  3323. },
  3324. formatNoMatches: function formatNoMatches() {
  3325. return 'کوئی ریکارڈ نہیں ملا';
  3326. },
  3327. formatPaginationSwitch: function formatPaginationSwitch() {
  3328. return 'Hide/Show pagination';
  3329. },
  3330. formatRefresh: function formatRefresh() {
  3331. return 'تازہ کریں';
  3332. },
  3333. formatToggle: function formatToggle() {
  3334. return 'تبدیل کریں';
  3335. },
  3336. formatColumns: function formatColumns() {
  3337. return 'کالم';
  3338. },
  3339. formatFullscreen: function formatFullscreen() {
  3340. return 'Fullscreen';
  3341. },
  3342. formatAllRows: function formatAllRows() {
  3343. return 'All';
  3344. },
  3345. formatAutoRefresh: function formatAutoRefresh() {
  3346. return 'Auto Refresh';
  3347. },
  3348. formatExport: function formatExport() {
  3349. return 'Export data';
  3350. },
  3351. formatClearFilters: function formatClearFilters() {
  3352. return 'Clear filters';
  3353. },
  3354. formatJumpto: function formatJumpto() {
  3355. return 'GO';
  3356. },
  3357. formatAdvancedSearch: function formatAdvancedSearch() {
  3358. return 'Advanced search';
  3359. },
  3360. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  3361. return 'Close';
  3362. }
  3363. };
  3364. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ur-PK']);
  3365. })(jQuery);
  3366. });
  3367. (function (global, factory) {
  3368. if (typeof define === "function" && define.amd) {
  3369. define([], factory);
  3370. } else if (typeof exports !== "undefined") {
  3371. factory();
  3372. } else {
  3373. var mod = {
  3374. exports: {}
  3375. };
  3376. factory();
  3377. global.bootstrapTableUzLatnUZ = mod.exports;
  3378. }
  3379. })(this, function () {
  3380. 'use strict';
  3381. /**
  3382. * Bootstrap Table Uzbek translation
  3383. * Author: Nabijon Masharipov <mnabijonz@gmail.com>
  3384. */
  3385. (function ($) {
  3386. $.fn.bootstrapTable.locales['uz-Latn-UZ'] = {
  3387. formatLoadingMessage: function formatLoadingMessage() {
  3388. return 'Yuklanyapti, iltimos kuting';
  3389. },
  3390. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  3391. return pageNumber + ' qator har sahifada';
  3392. },
  3393. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  3394. return 'Ko\'rsatypati ' + pageFrom + ' dan ' + pageTo + ' gacha ' + totalRows + ' qatorlarni';
  3395. },
  3396. formatDetailPagination: function formatDetailPagination(totalRows) {
  3397. return 'Showing ' + totalRows + ' rows';
  3398. },
  3399. formatSearch: function formatSearch() {
  3400. return 'Qidirish';
  3401. },
  3402. formatNoMatches: function formatNoMatches() {
  3403. return 'Hech narsa topilmadi';
  3404. },
  3405. formatPaginationSwitch: function formatPaginationSwitch() {
  3406. return 'Sahifalashni yashirish/ko\'rsatish';
  3407. },
  3408. formatRefresh: function formatRefresh() {
  3409. return 'Yangilash';
  3410. },
  3411. formatToggle: function formatToggle() {
  3412. return 'Ko\'rinish';
  3413. },
  3414. formatColumns: function formatColumns() {
  3415. return 'Ustunlar';
  3416. },
  3417. formatFullscreen: function formatFullscreen() {
  3418. return 'Fullscreen';
  3419. },
  3420. formatAllRows: function formatAllRows() {
  3421. return 'Hammasi';
  3422. },
  3423. formatAutoRefresh: function formatAutoRefresh() {
  3424. return 'Auto Refresh';
  3425. },
  3426. formatExport: function formatExport() {
  3427. return 'Eksport';
  3428. },
  3429. formatClearFilters: function formatClearFilters() {
  3430. return 'Filtrlarni tozalash';
  3431. },
  3432. formatJumpto: function formatJumpto() {
  3433. return 'GO';
  3434. },
  3435. formatAdvancedSearch: function formatAdvancedSearch() {
  3436. return 'Advanced search';
  3437. },
  3438. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  3439. return 'Close';
  3440. }
  3441. };
  3442. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['uz-Latn-UZ']);
  3443. })(jQuery);
  3444. });
  3445. (function (global, factory) {
  3446. if (typeof define === "function" && define.amd) {
  3447. define([], factory);
  3448. } else if (typeof exports !== "undefined") {
  3449. factory();
  3450. } else {
  3451. var mod = {
  3452. exports: {}
  3453. };
  3454. factory();
  3455. global.bootstrapTableViVN = mod.exports;
  3456. }
  3457. })(this, function () {
  3458. 'use strict';
  3459. /**
  3460. * Bootstrap Table Vietnamese translation
  3461. * Author: Duc N. PHAM <pngduc@gmail.com>
  3462. */
  3463. (function ($) {
  3464. $.fn.bootstrapTable.locales['vi-VN'] = {
  3465. formatLoadingMessage: function formatLoadingMessage() {
  3466. return 'Đang tải';
  3467. },
  3468. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  3469. return pageNumber + ' b\u1EA3n ghi m\u1ED7i trang';
  3470. },
  3471. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  3472. return 'Hi\u1EC3n th\u1ECB t\u1EEB trang ' + pageFrom + ' \u0111\u1EBFn ' + pageTo + ' c\u1EE7a ' + totalRows + ' b\u1EA3ng ghi';
  3473. },
  3474. formatDetailPagination: function formatDetailPagination(totalRows) {
  3475. return 'Showing ' + totalRows + ' rows';
  3476. },
  3477. formatSearch: function formatSearch() {
  3478. return 'Tìm kiếm';
  3479. },
  3480. formatNoMatches: function formatNoMatches() {
  3481. return 'Không có dữ liệu';
  3482. },
  3483. formatPaginationSwitch: function formatPaginationSwitch() {
  3484. return 'Hide/Show pagination';
  3485. },
  3486. formatRefresh: function formatRefresh() {
  3487. return 'Refresh';
  3488. },
  3489. formatToggle: function formatToggle() {
  3490. return 'Toggle';
  3491. },
  3492. formatColumns: function formatColumns() {
  3493. return 'Columns';
  3494. },
  3495. formatFullscreen: function formatFullscreen() {
  3496. return 'Fullscreen';
  3497. },
  3498. formatAllRows: function formatAllRows() {
  3499. return 'All';
  3500. },
  3501. formatAutoRefresh: function formatAutoRefresh() {
  3502. return 'Auto Refresh';
  3503. },
  3504. formatExport: function formatExport() {
  3505. return 'Export data';
  3506. },
  3507. formatClearFilters: function formatClearFilters() {
  3508. return 'Clear filters';
  3509. },
  3510. formatJumpto: function formatJumpto() {
  3511. return 'GO';
  3512. },
  3513. formatAdvancedSearch: function formatAdvancedSearch() {
  3514. return 'Advanced search';
  3515. },
  3516. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  3517. return 'Close';
  3518. }
  3519. };
  3520. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['vi-VN']);
  3521. })(jQuery);
  3522. });
  3523. (function (global, factory) {
  3524. if (typeof define === "function" && define.amd) {
  3525. define([], factory);
  3526. } else if (typeof exports !== "undefined") {
  3527. factory();
  3528. } else {
  3529. var mod = {
  3530. exports: {}
  3531. };
  3532. factory();
  3533. global.bootstrapTableZhCN = mod.exports;
  3534. }
  3535. })(this, function () {
  3536. 'use strict';
  3537. /**
  3538. * Bootstrap Table Chinese translation
  3539. * Author: Zhixin Wen<wenzhixin2010@gmail.com>
  3540. */
  3541. (function ($) {
  3542. $.fn.bootstrapTable.locales['zh-CN'] = {
  3543. formatLoadingMessage: function formatLoadingMessage() {
  3544. return '正在努力地加载数据中,请稍候';
  3545. },
  3546. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  3547. return '\u6BCF\u9875\u663E\u793A ' + pageNumber + ' \u6761\u8BB0\u5F55';
  3548. },
  3549. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  3550. return '\u663E\u793A\u7B2C ' + pageFrom + ' \u5230\u7B2C ' + pageTo + ' \u6761\u8BB0\u5F55\uFF0C\u603B\u5171 ' + totalRows + ' \u6761\u8BB0\u5F55';
  3551. },
  3552. formatDetailPagination: function formatDetailPagination(totalRows) {
  3553. return '\u603B\u5171 ' + totalRows + ' \u6761\u8BB0\u5F55';
  3554. },
  3555. formatSearch: function formatSearch() {
  3556. return '搜索';
  3557. },
  3558. formatNoMatches: function formatNoMatches() {
  3559. return '没有找到匹配的记录';
  3560. },
  3561. formatPaginationSwitch: function formatPaginationSwitch() {
  3562. return '隐藏/显示分页';
  3563. },
  3564. formatRefresh: function formatRefresh() {
  3565. return '刷新';
  3566. },
  3567. formatToggle: function formatToggle() {
  3568. return '切换';
  3569. },
  3570. formatColumns: function formatColumns() {
  3571. return '列';
  3572. },
  3573. formatFullscreen: function formatFullscreen() {
  3574. return '全屏';
  3575. },
  3576. formatAllRows: function formatAllRows() {
  3577. return '所有';
  3578. },
  3579. formatAutoRefresh: function formatAutoRefresh() {
  3580. return '自动刷新';
  3581. },
  3582. formatExport: function formatExport() {
  3583. return '导出数据';
  3584. },
  3585. formatClearFilters: function formatClearFilters() {
  3586. return '清空过滤';
  3587. },
  3588. formatJumpto: function formatJumpto() {
  3589. return '跳转';
  3590. },
  3591. formatAdvancedSearch: function formatAdvancedSearch() {
  3592. return '高级搜索';
  3593. },
  3594. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  3595. return '关闭';
  3596. }
  3597. };
  3598. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['zh-CN']);
  3599. })(jQuery);
  3600. });
  3601. (function (global, factory) {
  3602. if (typeof define === "function" && define.amd) {
  3603. define([], factory);
  3604. } else if (typeof exports !== "undefined") {
  3605. factory();
  3606. } else {
  3607. var mod = {
  3608. exports: {}
  3609. };
  3610. factory();
  3611. global.bootstrapTableZhTW = mod.exports;
  3612. }
  3613. })(this, function () {
  3614. 'use strict';
  3615. /**
  3616. * Bootstrap Table Chinese translation
  3617. * Author: Zhixin Wen<wenzhixin2010@gmail.com>
  3618. */
  3619. (function ($) {
  3620. $.fn.bootstrapTable.locales['zh-TW'] = {
  3621. formatLoadingMessage: function formatLoadingMessage() {
  3622. return '正在努力地載入資料,請稍候';
  3623. },
  3624. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  3625. return '\u6BCF\u9801\u986F\u793A ' + pageNumber + ' \u9805\u8A18\u9304';
  3626. },
  3627. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
  3628. return '\u986F\u793A\u7B2C ' + pageFrom + ' \u5230\u7B2C ' + pageTo + ' \u9805\u8A18\u9304\uFF0C\u7E3D\u5171 ' + totalRows + ' \u9805\u8A18\u9304';
  3629. },
  3630. formatDetailPagination: function formatDetailPagination(totalRows) {
  3631. return '\u7E3D\u5171 ' + totalRows + ' \u9805\u8A18\u9304';
  3632. },
  3633. formatSearch: function formatSearch() {
  3634. return '搜尋';
  3635. },
  3636. formatNoMatches: function formatNoMatches() {
  3637. return '沒有找到符合的結果';
  3638. },
  3639. formatPaginationSwitch: function formatPaginationSwitch() {
  3640. return '隱藏/顯示分頁';
  3641. },
  3642. formatRefresh: function formatRefresh() {
  3643. return '重新整理';
  3644. },
  3645. formatToggle: function formatToggle() {
  3646. return '切換';
  3647. },
  3648. formatColumns: function formatColumns() {
  3649. return '列';
  3650. },
  3651. formatFullscreen: function formatFullscreen() {
  3652. return '全屏';
  3653. },
  3654. formatAllRows: function formatAllRows() {
  3655. return '所有';
  3656. },
  3657. formatAutoRefresh: function formatAutoRefresh() {
  3658. return '自動刷新';
  3659. },
  3660. formatExport: function formatExport() {
  3661. return '導出數據';
  3662. },
  3663. formatClearFilters: function formatClearFilters() {
  3664. return '清空過濾';
  3665. },
  3666. formatJumpto: function formatJumpto() {
  3667. return '跳轉';
  3668. },
  3669. formatAdvancedSearch: function formatAdvancedSearch() {
  3670. return '高級搜尋';
  3671. },
  3672. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  3673. return '關閉';
  3674. }
  3675. };
  3676. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['zh-TW']);
  3677. })(jQuery);
  3678. });