001package org.gwtbootstrap3.extras.datepicker.client; 002 003/* 004 * #%L 005 * GwtBootstrap3 006 * %% 007 * Copyright (C) 2013 - 2016 GwtBootstrap3 008 * %% 009 * Licensed under the Apache License, Version 2.0 (the "License"); 010 * you may not use this file except in compliance with the License. 011 * You may obtain a copy of the License at 012 * 013 * http://www.apache.org/licenses/LICENSE-2.0 014 * 015 * Unless required by applicable law or agreed to in writing, software 016 * distributed under the License is distributed on an "AS IS" BASIS, 017 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 018 * See the License for the specific language governing permissions and 019 * limitations under the License. 020 * #L% 021 */ 022 023import com.google.gwt.core.client.GWT; 024import com.google.gwt.resources.client.ClientBundle; 025import com.google.gwt.resources.client.TextResource; 026 027/** 028 * @author Sven Jacobs 029 */ 030public interface DatePickerClientBundle extends ClientBundle { 031 032 static final DatePickerClientBundle INSTANCE = GWT.create(DatePickerClientBundle.class); 033 034 static final String VERSION = "1.6.4"; 035 static final String LOCALES_DIR = "resource/js/locales.cache." + VERSION + "/"; 036 037 @Source("resource/js/bootstrap-datepicker-" + VERSION + ".min.cache.js") 038 TextResource datePicker(); 039 040 @Source(LOCALES_DIR + "bootstrap-datepicker.ar.min.js") 041 TextResource ar(); 042 043 @Source(LOCALES_DIR + "bootstrap-datepicker.az.min.js") 044 TextResource az(); 045 046 @Source(LOCALES_DIR + "bootstrap-datepicker.bg.min.js") 047 TextResource bg(); 048 049 @Source(LOCALES_DIR + "bootstrap-datepicker.bs.min.js") 050 TextResource bs(); 051 052 @Source(LOCALES_DIR + "bootstrap-datepicker.ca.min.js") 053 TextResource ca(); 054 055 @Source(LOCALES_DIR + "bootstrap-datepicker.cs.min.js") 056 TextResource cs(); 057 058 @Source(LOCALES_DIR + "bootstrap-datepicker.cy.min.js") 059 TextResource cy(); 060 061 @Source(LOCALES_DIR + "bootstrap-datepicker.da.min.js") 062 TextResource da(); 063 064 @Source(LOCALES_DIR + "bootstrap-datepicker.de.min.js") 065 TextResource de(); 066 067 @Source(LOCALES_DIR + "bootstrap-datepicker.el.min.js") 068 TextResource el(); 069 070 @Source(LOCALES_DIR + "bootstrap-datepicker.en-GB.min.js") 071 TextResource en_GB(); 072 073 @Source(LOCALES_DIR + "bootstrap-datepicker.eo.min.js") 074 TextResource eo(); 075 076 @Source(LOCALES_DIR + "bootstrap-datepicker.es.min.js") 077 TextResource es(); 078 079 @Source(LOCALES_DIR + "bootstrap-datepicker.et.min.js") 080 TextResource et(); 081 082 @Source(LOCALES_DIR + "bootstrap-datepicker.eu.min.js") 083 TextResource eu(); 084 085 @Source(LOCALES_DIR + "bootstrap-datepicker.fa.min.js") 086 TextResource fa(); 087 088 @Source(LOCALES_DIR + "bootstrap-datepicker.fi.min.js") 089 TextResource fi(); 090 091 @Source(LOCALES_DIR + "bootstrap-datepicker.fo.min.js") 092 TextResource fo(); 093 094 @Source(LOCALES_DIR + "bootstrap-datepicker.fr.min.js") 095 TextResource fr(); 096 097 @Source(LOCALES_DIR + "bootstrap-datepicker.fr-CH.min.js") 098 TextResource fr_CH(); 099 100 @Source(LOCALES_DIR + "bootstrap-datepicker.gl.min.js") 101 TextResource gl(); 102 103 @Source(LOCALES_DIR + "bootstrap-datepicker.he.min.js") 104 TextResource he(); 105 106 @Source(LOCALES_DIR + "bootstrap-datepicker.hr.min.js") 107 TextResource hr(); 108 109 @Source(LOCALES_DIR + "bootstrap-datepicker.hu.min.js") 110 TextResource hu(); 111 112 @Source(LOCALES_DIR + "bootstrap-datepicker.hy.min.js") 113 TextResource hy(); 114 115 @Source(LOCALES_DIR + "bootstrap-datepicker.id.min.js") 116 TextResource id(); 117 118 @Source(LOCALES_DIR + "bootstrap-datepicker.is.min.js") 119 TextResource is(); 120 121 @Source(LOCALES_DIR + "bootstrap-datepicker.it.min.js") 122 TextResource it(); 123 124 @Source(LOCALES_DIR + "bootstrap-datepicker.it-CH.min.js") 125 TextResource it_CH(); 126 127 @Source(LOCALES_DIR + "bootstrap-datepicker.ja.min.js") 128 TextResource ja(); 129 130 @Source(LOCALES_DIR + "bootstrap-datepicker.ka.min.js") 131 TextResource ka(); 132 133 @Source(LOCALES_DIR + "bootstrap-datepicker.kh.min.js") 134 TextResource kh(); 135 136 @Source(LOCALES_DIR + "bootstrap-datepicker.kk.min.js") 137 TextResource kk(); 138 139 @Source(LOCALES_DIR + "bootstrap-datepicker.ko.min.js") 140 TextResource ko(); 141 142 @Source(LOCALES_DIR + "bootstrap-datepicker.kr.min.js") 143 TextResource kr(); 144 145 @Source(LOCALES_DIR + "bootstrap-datepicker.lt.min.js") 146 TextResource lt(); 147 148 @Source(LOCALES_DIR + "bootstrap-datepicker.lv.min.js") 149 TextResource lv(); 150 151 @Source(LOCALES_DIR + "bootstrap-datepicker.me.min.js") 152 TextResource me(); 153 154 @Source(LOCALES_DIR + "bootstrap-datepicker.mk.min.js") 155 TextResource mk(); 156 157 @Source(LOCALES_DIR + "bootstrap-datepicker.mn.min.js") 158 TextResource mn(); 159 160 @Source(LOCALES_DIR + "bootstrap-datepicker.ms.min.js") 161 TextResource ms(); 162 163 @Source(LOCALES_DIR + "bootstrap-datepicker.nb.min.js") 164 TextResource nb(); 165 166 @Source(LOCALES_DIR + "bootstrap-datepicker.nl.min.js") 167 TextResource nl(); 168 169 @Source(LOCALES_DIR + "bootstrap-datepicker.nl-BE.min.js") 170 TextResource nl_BE(); 171 172 @Source(LOCALES_DIR + "bootstrap-datepicker.no.min.js") 173 TextResource no(); 174 175 @Source(LOCALES_DIR + "bootstrap-datepicker.pl.min.js") 176 TextResource pl(); 177 178 @Source(LOCALES_DIR + "bootstrap-datepicker.pt.min.js") 179 TextResource pt(); 180 181 @Source(LOCALES_DIR + "bootstrap-datepicker.pt-BR.min.js") 182 TextResource pt_BR(); 183 184 @Source(LOCALES_DIR + "bootstrap-datepicker.ro.min.js") 185 TextResource ro(); 186 187 @Source(LOCALES_DIR + "bootstrap-datepicker.rs.min.js") 188 TextResource rs(); 189 190 @Source(LOCALES_DIR + "bootstrap-datepicker.rs-latin.min.js") 191 TextResource rs_latin(); 192 193 @Source(LOCALES_DIR + "bootstrap-datepicker.ru.min.js") 194 TextResource ru(); 195 196 @Source(LOCALES_DIR + "bootstrap-datepicker.sk.min.js") 197 TextResource sk(); 198 199 @Source(LOCALES_DIR + "bootstrap-datepicker.sl.min.js") 200 TextResource sl(); 201 202 @Source(LOCALES_DIR + "bootstrap-datepicker.sq.min.js") 203 TextResource sq(); 204 205 @Source(LOCALES_DIR + "bootstrap-datepicker.sr.min.js") 206 TextResource sr(); 207 208 @Source(LOCALES_DIR + "bootstrap-datepicker.sr-latin.min.js") 209 TextResource sr_latin(); 210 211 @Source(LOCALES_DIR + "bootstrap-datepicker.sv.min.js") 212 TextResource sv(); 213 214 @Source(LOCALES_DIR + "bootstrap-datepicker.sw.min.js") 215 TextResource sw(); 216 217 @Source(LOCALES_DIR + "bootstrap-datepicker.th.min.js") 218 TextResource th(); 219 220 @Source(LOCALES_DIR + "bootstrap-datepicker.tr.min.js") 221 TextResource tr(); 222 223 @Source(LOCALES_DIR + "bootstrap-datepicker.uk.min.js") 224 TextResource uk(); 225 226 @Source(LOCALES_DIR + "bootstrap-datepicker.vi.min.js") 227 TextResource vi(); 228 229 @Source(LOCALES_DIR + "bootstrap-datepicker.zh-CN.min.js") 230 TextResource zh_CN(); 231 232 @Source(LOCALES_DIR + "bootstrap-datepicker.zh-TW.min.js") 233 TextResource zh_TW(); 234}