You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replace jquery-datetimepicker with native date input (go-gitea#11684)
This removes the jQuery plugin as well as the associated config options.
Native input[type=date] does not require a language attribute as it is
localized by default, except for the placeholder attribute for which I
currently piggy-back the repo.issues.due_date_form localization option.
Implementation should pretty much match GH. Of note is that Safari does
not provide a UI for this input type, but I don't think providing one is
neccessary and GH did not bother either.
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
; Default ANSI charset to override non-UTF-8 charsets to
23
23
ANSI_CHARSET =
@@ -634,8 +634,8 @@ SUBJECT_PREFIX =
634
634
; Mail server
635
635
; Gmail: smtp.gmail.com:587
636
636
; QQ: smtp.qq.com:465
637
-
; Using STARTTLS on port 587 is recommended per RFC 6409.
638
-
; Note, if the port ends with "465", SMTPS will be used.
637
+
; Using STARTTLS on port 587 is recommended per RFC 6409.
638
+
; Note, if the port ends with "465", SMTPS will be used.
639
639
HOST =
640
640
; Disable HELO operation when hostnames are different.
641
641
DISABLE_HELO =
@@ -950,32 +950,6 @@ MAX_TOKEN_LENGTH=32767
950
950
LANGS = en-US,zh-CN,zh-HK,zh-TW,de-DE,fr-FR,nl-NL,lv-LV,ru-RU,uk-UA,ja-JP,es-ES,pt-BR,pt-PT,pl-PL,bg-BG,it-IT,fi-FI,tr-TR,cs-CZ,sr-SP,sv-SE,ko-KR
951
951
NAMES = English,简体中文,繁體中文(香港),繁體中文(台灣),Deutsch,français,Nederlands,latviešu,русский,Українська,日本語,español,português do Brasil,Português de Portugal,polski,български,italiano,suomi,Türkçe,čeština,српски,svenska,한국어
952
952
953
-
; Used for datetimepicker
954
-
[i18n.datelang]
955
-
en-US = en
956
-
zh-CN = zh
957
-
zh-HK = zh-HK
958
-
zh-TW = zh-TW
959
-
de-DE = de
960
-
fr-FR = fr
961
-
nl-NL = nl
962
-
lv-LV = lv
963
-
ru-RU = ru
964
-
uk-UA = uk
965
-
ja-JP = ja
966
-
es-ES = es
967
-
pt-BR = pt-BR
968
-
pt-PT = pt
969
-
pl-PL = pl
970
-
bg-BG = bg
971
-
it-IT = it
972
-
fi-FI = fi
973
-
tr-TR = tr
974
-
cs-CZ = cs-CZ
975
-
sr-SP = sr
976
-
sv-SE = sv
977
-
ko-KR = ko
978
-
979
953
[U2F]
980
954
; NOTE: THE DEFAULT VALUES HERE WILL NEED TO BE CHANGED
Copy file name to clipboardExpand all lines: docs/content/doc/advanced/config-cheat-sheet.en-us.md
-26Lines changed: 0 additions & 26 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -614,32 +614,6 @@ NB: You must `REDIRECT_MACARON_LOG` and have `DISABLE_ROUTER_LOG` set to `false`
614
614
-`LANGS`: **en-US,zh-CN,zh-HK,zh-TW,de-DE,fr-FR,nl-NL,lv-LV,ru-RU,ja-JP,es-ES,pt-BR,pt-PT,pl-PL,bg-BG,it-IT,fi-FI,tr-TR,cs-CZ,sr-SP,sv-SE,ko-KR**: List of locales shown in language selector
615
615
-`NAMES`: **English,简体中文,繁體中文(香港),繁體中文(台灣),Deutsch,français,Nederlands,latviešu,русский,日本語,español,português do Brasil,Português de Portugal,polski,български,italiano,suomi,Türkçe,čeština,српски,svenska,한국어**: Visible names corresponding to the locales
616
616
617
-
### i18n - Datepicker Language (`i18n.datelang`)
618
-
Maps locales to the languages used by the datepicker plugin
619
-
620
-
-`en-US`: **en**
621
-
-`zh-CN`: **zh**
622
-
-`zh-HK`: **zh-HK**
623
-
-`zh-TW`: **zh-TW**
624
-
-`de-DE`: **de**
625
-
-`fr-FR`: **fr**
626
-
-`nl-NL`: **nl**
627
-
-`lv-LV`: **lv**
628
-
-`ru-RU`: **ru**
629
-
-`ja-JP`: **ja**
630
-
-`es-ES`: **es**
631
-
-`pt-BR`: **pt-BR**
632
-
-`pt-PT`: **pt**
633
-
-`pl-PL`: **pl**
634
-
-`bg-BG`: **bg**
635
-
-`it-IT`: **it**
636
-
-`fi-FI`: **fi**
637
-
-`tr-TR`: **tr**
638
-
-`cs-CZ`: **cs-CZ**
639
-
-`sr-SP`: **sr**
640
-
-`sv-SE`: **sv**
641
-
-`ko-KR`: **ko**
642
-
643
617
## U2F (`U2F`)
644
618
-`APP_ID`: **`ROOT_URL`**: Declares the facet of the application. Requires HTTPS.
645
619
-`TRUSTED_FACETS`: List of additional facets which are trusted. This is not support by all browsers.
0 commit comments