minimal-mistakes-jekyll 4.16.4 → 4.16.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 91823d19bd6aa143bcab6d00667c4bcd8815a584f6a0af25149031d5c9708aeb
4
- data.tar.gz: c9209235f9bd14ee14d848b6103e4a7990a51a37b45dbcc82a0b4da098ba867c
3
+ metadata.gz: f026867289bd43c96068d92a8e848ed5f7a981cc843604daa0d74a1c9105a01f
4
+ data.tar.gz: f66ea3ea4a63e60318656e339f904a54d8d7b6f068e91cd57246e1a7898b86d3
5
5
  SHA512:
6
- metadata.gz: 9c31e36bfbd7a98879aae7822ae9fda411ec0f49ebd6372af6029116090df9ef1cf2be94192ff23963dbe67013729257b8921aaeeecf04a098b012324e0a458c
7
- data.tar.gz: 3ebe5ceed5e13aa5cda85721f7927594930f4cfee16d1575ea1252773d785482cbe9c026040c1b4c2ba28f7afb85dbc7c2739175d5d4caba39276d38ca3ebc6d
6
+ metadata.gz: d5feb260f3d29390094daf83e637edc3d4da114d40e84c07ce200aabb197a5c67dcab542986fc4f79bc547ce206e3bf7f81e4726e0d2ddef3dcc6f03874cfd12
7
+ data.tar.gz: b530c70be2dcc25c1535e9c80d56ff9956b2865a472d78e0525592564e9845ea70b03605a8254edabb0467548c8d5544631a8c0f62eec19afeb159c94a93921e
@@ -1,3 +1,21 @@
1
+ ## [4.16.5](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.16.5)
2
+
3
+ ### Enhancements
4
+
5
+ - Add optional site subtitle to masthead. [#2173](https://github.com/mmistakes/minimal-mistakes/issues/2173)
6
+ - Add missing Punjabi and Hindi localized UI text strings. [#2212](https://github.com/mmistakes/minimal-mistakes/pull/2212)
7
+ - Add missing Korean localized UI text strings. [#2209](https://github.com/mmistakes/minimal-mistakes/pull/2209)
8
+ - Use [Font Awesome Kits](https://blog.fontawesome.com/introducing-font-awesome-kits-7134d1d59959) to use the latest version of icons. [#2184](https://github.com/mmistakes/minimal-mistakes/issues/2184)
9
+ - Remove unecessary console.log in `lunr-en.js` and `lunr-gr.js` JavaScript. [#2193](https://github.com/mmistakes/minimal-mistakes/issues/2193)
10
+ - Remove unecessary `type="text/javascript"` from Google Analytics JavaScript. [#2190](https://github.com/mmistakes/minimal-mistakes/pull/2190)
11
+ - Update links and fix typos in documentation. [#2186](https://github.com/mmistakes/minimal-mistakes/pull/2186)
12
+ - Add skip links. [#2182](https://github.com/mmistakes/minimal-mistakes/issues/2182)
13
+
14
+ ### Bug Fixes
15
+
16
+ - Fix aria issues with Lunr search form. [#2211](https://github.com/mmistakes/minimal-mistakes/pull/2211)
17
+ - Fix missing fallback title for table of contents.
18
+
1
19
  ## [4.16.4](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.16.4)
2
20
 
3
21
  ### Enhancements
data/README.md CHANGED
@@ -126,7 +126,7 @@ To install:
126
126
  bundle
127
127
  ```
128
128
 
129
- 4. Add `remote_theme: "mmistakes/minimal-mistakes@4.16.4"` to your `_config.yml` file. Remove any other `theme:` or `remote_theme:` entry.
129
+ 4. Add `remote_theme: "mmistakes/minimal-mistakes@4.16.5"` to your `_config.yml` file. Remove any other `theme:` or `remote_theme:` entry.
130
130
 
131
131
  **Looking for an example?** Fork the [Minimal Mistakes remote theme starter](https://github.com/mmistakes/mm-github-pages-starter) for the quickest method of getting a GitHub Pages hosted site up and running. Replace sample content with your own and configure as needed.
132
132
 
@@ -3,6 +3,10 @@
3
3
  # English (default)
4
4
  # -----------------
5
5
  en: &DEFAULT_EN
6
+ skip_links : "Skip links"
7
+ skip_primary_nav : "Skip to primary navigation"
8
+ skip_content : "Skip to content"
9
+ skip_footer : "Skip to footer"
6
10
  page : "Page"
7
11
  pagination_previous : "Previous"
8
12
  pagination_next : "Next"
@@ -41,6 +45,7 @@ en: &DEFAULT_EN
41
45
  comment_success_msg : "Thanks for your comment! It will show on the site once it has been approved."
42
46
  comment_error_msg : "Sorry, there was an error with your submission. Please make sure all required fields have been completed and try again."
43
47
  loading_label : "Loading..."
48
+ search_label_text : "Enter your search term..."
44
49
  search_placeholder_text : "Enter your search term..."
45
50
  results_found : "Result(s) found"
46
51
  back_to_top : "Back to top"
@@ -56,6 +61,10 @@ en-AU:
56
61
  # Spanish
57
62
  # -------
58
63
  es: &DEFAULT_ES
64
+ skip_links :
65
+ skip_primary_nav :
66
+ skip_content :
67
+ skip_footer :
59
68
  page : "Página"
60
69
  pagination_previous : "Anterior"
61
70
  pagination_next : "Siguiente"
@@ -94,6 +103,7 @@ es: &DEFAULT_ES
94
103
  comment_success_msg : "¡Gracias por tu comentario! Se publicará una vez sea aprobado."
95
104
  comment_error_msg : "Ha ocurrido un error al enviar el comentario. Asegúrate de completar todos los campos obligatorios e inténtalo de nuevo."
96
105
  loading_label : "Cargando..."
106
+ search_label_text :
97
107
  search_placeholder_text : "Términos de búsqueda..."
98
108
  results_found : "resultado(s) encontrado(s)"
99
109
  back_to_top : "Volver arriba"
@@ -105,6 +115,10 @@ es-CO:
105
115
  # French
106
116
  # ------
107
117
  fr: &DEFAULT_FR
118
+ skip_links :
119
+ skip_primary_nav :
120
+ skip_content :
121
+ skip_footer :
108
122
  page : "Page"
109
123
  pagination_previous : "Précédent"
110
124
  pagination_next : "Suivant"
@@ -143,6 +157,7 @@ fr: &DEFAULT_FR
143
157
  comment_success_msg : "Merci pour votre commentaire, il sera visible sur le site une fois approuvé."
144
158
  comment_error_msg : "Désolé, une erreur est survenue lors de la soumission. Vérifiez que les champs obligatoires ont été remplis et réessayez."
145
159
  loading_label : "Chargement..."
160
+ search_label_text :
146
161
  search_placeholder_text : "Entrez votre recherche..."
147
162
  results_found : "Résultat(s) trouvé(s)"
148
163
  back_to_top : "Retour en haut"
@@ -156,6 +171,10 @@ fr-CH:
156
171
  # Turkish
157
172
  # -------
158
173
  tr: &DEFAULT_TR
174
+ skip_links :
175
+ skip_primary_nav :
176
+ skip_content :
177
+ skip_footer :
159
178
  page : "Sayfa"
160
179
  pagination_previous : "Önceki"
161
180
  pagination_next : "Sonraki"
@@ -194,12 +213,17 @@ tr: &DEFAULT_TR
194
213
  comment_success_msg : "Yorumunuz için teşekkürler! Yorumunuz onaylandıktan sonra sitede gösterilecektir."
195
214
  comment_error_msg : "Maalesef bir hata oluştu. Lütfen zorunlu olan tüm alanları doldurduğunuzdan emin olun ve sonrasında tekrar deneyin."
196
215
  loading_label : "Yükleniyor..."
216
+ search_label_text :
197
217
  tr-TR:
198
218
  <<: *DEFAULT_TR
199
219
 
200
220
  # Portuguese
201
221
  # ----------
202
222
  pt: &DEFAULT_PT
223
+ skip_links :
224
+ skip_primary_nav :
225
+ skip_content :
226
+ skip_footer :
203
227
  page : "Página"
204
228
  pagination_previous : "Anterior"
205
229
  pagination_next : "Seguinte"
@@ -238,10 +262,15 @@ pt: &DEFAULT_PT
238
262
  comment_success_msg : "Obrigado pelo seu comentário! Será visível no site logo que aprovado."
239
263
  comment_error_msg : "Lamento, ocorreu um erro na sua submissão. Por favor verifique se todos os campos obrigatórios estão corretamente preenchidos e tente novamente."
240
264
  loading_label : "A carregar..."
265
+ search_label_text :
241
266
  pt-PT:
242
267
  <<: *DEFAULT_PT
243
268
  # Brazilian Portuguese
244
269
  pt-BR:
270
+ skip_links :
271
+ skip_primary_nav :
272
+ skip_content :
273
+ skip_footer :
245
274
  page : "Página"
246
275
  pagination_previous : "Anterior"
247
276
  pagination_next : "Próxima"
@@ -280,6 +309,7 @@ pt-BR:
280
309
  comment_success_msg : "Obrigado pelo seu comentário! Ele aparecerá no site assim que for aprovado."
281
310
  comment_error_msg : "Desculpe, ocorreu um erro no envio. Verifique se todos os campos obrigatórios foram preenchidos e tente novamente."
282
311
  loading_label : "Carregando..."
312
+ search_label_text :
283
313
  search_placeholder_text : "Pesquisar..."
284
314
  results_found : "Resultado(s) encontrado(s)"
285
315
  back_to_top : "Voltar para o topo"
@@ -287,6 +317,10 @@ pt-BR:
287
317
  # Italian
288
318
  # -------
289
319
  it: &DEFAULT_IT
320
+ skip_links :
321
+ skip_primary_nav :
322
+ skip_content :
323
+ skip_footer :
290
324
  page : "Pagina"
291
325
  pagination_previous : "Precedente"
292
326
  pagination_next : "Prossima"
@@ -325,6 +359,7 @@ it: &DEFAULT_IT
325
359
  comment_success_msg : "Grazie per il tuo commento! Verrà visualizzato nel sito una volta che sarà approvato."
326
360
  comment_error_msg : "C'è stato un errore con il tuo invio. Assicurati che tutti i campi richiesti siano stati completati e riprova."
327
361
  loading_label : "Caricamento..."
362
+ search_label_text :
328
363
  search_placeholder_text : "Inserisci termini di ricerca..."
329
364
  results_found : "Risultati"
330
365
  back_to_top : "Vai su"
@@ -334,6 +369,10 @@ it-IT:
334
369
  # Chinese (zh-CN Chinese - China)
335
370
  # --------------------------------
336
371
  zh: &DEFAULT_ZH_HANS
372
+ skip_links :
373
+ skip_primary_nav :
374
+ skip_content :
375
+ skip_footer :
337
376
  page : "页面"
338
377
  pagination_previous : "向前"
339
378
  pagination_next : "向后"
@@ -372,6 +411,7 @@ zh: &DEFAULT_ZH_HANS
372
411
  comment_success_msg : "感谢您的评论!被批准后它会立即在此站点展示。"
373
412
  comment_error_msg : "很抱歉,您的提交存在错误。请确保所有必填字段都已填写正确,然后再试一次。"
374
413
  loading_label : "正在加载..."
414
+ search_label_text :
375
415
  search_placeholder_text : "输入您要搜索的关键词..."
376
416
  results_found : "条记录匹配"
377
417
  back_to_top : "返回顶部"
@@ -381,6 +421,10 @@ zh-SG:
381
421
  <<: *DEFAULT_ZH_HANS
382
422
  # Taiwan (Traditional Chinese)
383
423
  zh-TW: &DEFAULT_ZH_HANT
424
+ skip_links :
425
+ skip_primary_nav :
426
+ skip_content :
427
+ skip_footer :
384
428
  page : "頁面"
385
429
  pagination_previous : "較舊"
386
430
  pagination_next : "較新"
@@ -419,12 +463,17 @@ zh-TW: &DEFAULT_ZH_HANT
419
463
  comment_success_msg : "感謝您的留言! 審核後將會顯示在站上。"
420
464
  comment_error_msg : "抱歉,部份資料輸入有問題。請確認資料填寫正確後再試一次。"
421
465
  loading_label : "載入中..."
466
+ search_label_text :
422
467
  zh-HK:
423
468
  <<: *DEFAULT_ZH_HANT
424
469
 
425
470
  # German / Deutsch
426
471
  # ----------------
427
472
  de: &DEFAULT_DE
473
+ skip_links :
474
+ skip_primary_nav :
475
+ skip_content :
476
+ skip_footer :
428
477
  page : "Seite"
429
478
  pagination_previous : "Vorherige"
430
479
  pagination_next : "Nächste"
@@ -463,6 +512,7 @@ de: &DEFAULT_DE
463
512
  comment_success_msg : "Danke für Ihren Kommentar! Er wird auf der Seite angezeigt, nachdem er geprüft wurde."
464
513
  comment_error_msg : "Entschuldigung, es gab einen Fehler. Bitte füllen Sie alle benötigten Felder aus und versuchen Sie es erneut."
465
514
  loading_label : "Lade..."
515
+ search_label_text :
466
516
  search_placeholder_text : "Suchbegriff eingeben..."
467
517
  results_found : "Ergebnis(se) gefunden"
468
518
  de-DE:
@@ -481,6 +531,10 @@ de-LU:
481
531
  # Nepali (Nepal)
482
532
  # --------------
483
533
  ne: &DEFAULT_NE
534
+ skip_links :
535
+ skip_primary_nav :
536
+ skip_content :
537
+ skip_footer :
484
538
  page : "पृष्‍ठ"
485
539
  pagination_previous : "अघिल्लो"
486
540
  pagination_next : "अर्को"
@@ -519,12 +573,17 @@ ne: &DEFAULT_NE
519
573
  comment_success_msg : "तपाईंको टिप्पणीको लागि धन्यवाद! एक पटक यो अनुमोदन गरेपछी यो साइटमा देखाउनेछ।"
520
574
  comment_error_msg : "माफ गर्नुहोस्, तपाईंको टिप्पणी त्रुटि थियो।सबै आवश्यक जानकारीहरु पूरा गरिएको छ भने निश्चित गर्नुहोस् र फेरि प्रयास गर्नुहोस्।"
521
575
  loading_label : "लोड हुँदैछ ..."
576
+ search_label_text :
522
577
  ne-NP:
523
578
  <<: *DEFAULT_NE
524
579
 
525
580
  # Korean
526
581
  # ------
527
582
  ko: &DEFAULT_KO
583
+ skip_links :
584
+ skip_primary_nav :
585
+ skip_content :
586
+ skip_footer :
528
587
  page : "페이지"
529
588
  pagination_previous : "이전"
530
589
  pagination_next : "다음"
@@ -563,12 +622,20 @@ ko: &DEFAULT_KO
563
622
  comment_success_msg : "감사합니다! 댓글이 머지된 후 확인하실 수 있습니다."
564
623
  comment_error_msg : "댓글 등록에 문제가 있습니다. 필요 필드를 작성했는지 확인하고 다시 시도하세요."
565
624
  loading_label : "로딩중..."
625
+ search_label_text :
626
+ search_placeholder_text : "검색어를 입력하세요..."
627
+ results_found : "개 결과 발견"
628
+ back_to_top : "맨 위로 이동"
566
629
  ko-KR:
567
630
  <<: *DEFAULT_KO
568
631
 
569
632
  # Russian / Русский
570
633
  # -----------------
571
634
  ru: &DEFAULT_RU
635
+ skip_links :
636
+ skip_primary_nav :
637
+ skip_content :
638
+ skip_footer :
572
639
  page : "Страница"
573
640
  pagination_previous : "Предыдущая"
574
641
  pagination_next : "Следующая"
@@ -607,6 +674,7 @@ ru: &DEFAULT_RU
607
674
  comment_success_msg : "Спасибо за Ваш комментарий! Он будет опубликован на сайте после проверки."
608
675
  comment_error_msg : "К сожалению, произошла ошибка с отправкой комментария. Пожалуйста, убедитесь, что все обязательные поля заполнены и попытайтесь снова."
609
676
  loading_label : "Отправка..."
677
+ search_label_text :
610
678
  search_placeholder_text : "Введите поисковый запрос..."
611
679
  results_found : "Найдено"
612
680
  ru-RU:
@@ -615,6 +683,10 @@ ru-RU:
615
683
  # Lithuanian / Lietuviškai
616
684
  # ------------------------
617
685
  lt: &DEFAULT_LT
686
+ skip_links :
687
+ skip_primary_nav :
688
+ skip_content :
689
+ skip_footer :
618
690
  page : "Puslapis"
619
691
  pagination_previous : "Ankstesnis"
620
692
  pagination_next : "Sekantis"
@@ -653,12 +725,17 @@ lt: &DEFAULT_LT
653
725
  comment_success_msg : "Ačiū už komentarą! Jis bus parodytas kai bus patvirtintas."
654
726
  comment_error_msg : "Atleiskite, įvyko netikėta klaida įrašant komentarą. Pasitikrinkite ar užpildėte visus būtinus laukus ir pamėginkite dar kartą."
655
727
  loading_label : "Kraunama..."
728
+ search_label_text :
656
729
  lt-LT:
657
730
  <<: *DEFAULT_LT
658
731
 
659
732
  # Greek
660
733
  # -----
661
734
  gr: &DEFAULT_GR
735
+ skip_links :
736
+ skip_primary_nav :
737
+ skip_content :
738
+ skip_footer :
662
739
  page : "Σελίδα"
663
740
  pagination_previous : "Προηγούμενo"
664
741
  pagination_next : "Επόμενo"
@@ -697,6 +774,7 @@ gr: &DEFAULT_GR
697
774
  comment_success_msg : "Ευχαριστούμε για το σχόλιό σας! Θα εμφανιστεί στην ιστοσελίδα αφού εγκριθεί."
698
775
  comment_error_msg : "Λυπούμαστε, παρουσιάστηκε σφάλμα με την υποβολή σας. Παρακαλούμε βεβαιωθείτε ότι έχετε όλα τα απαιτούμενα πεδία συμπληρωμένα και δοκιμάστε ξανά."
699
776
  loading_label : "Φόρτωση..."
777
+ search_label_text :
700
778
  search_placeholder_text : "Εισάγετε όρο αναζήτησης..."
701
779
  results_found : "Αποτελέσματα"
702
780
  gr-GR:
@@ -705,6 +783,10 @@ gr-GR:
705
783
  # Swedish
706
784
  # -------
707
785
  sv: &DEFAULT_SV
786
+ skip_links :
787
+ skip_primary_nav :
788
+ skip_content :
789
+ skip_footer :
708
790
  page : "Sidan"
709
791
  pagination_previous : "Föregående"
710
792
  pagination_next : "Nästa"
@@ -743,6 +825,7 @@ sv: &DEFAULT_SV
743
825
  comment_success_msg : "Tack för din kommentar! Den kommer att visas på sidan så fort den har godkännts."
744
826
  comment_error_msg : "Tyvärr det har blivit något fel i ett av fälten, se till att du fyllt i alla obligatoriska fält och försök igen."
745
827
  loading_label : "Laddar..."
828
+ search_label_text :
746
829
  search_placeholder_text : "Fyll i sökterm..."
747
830
  results_found : "Resultat funna"
748
831
  back_to_top : "Tillbaka till toppen"
@@ -754,6 +837,10 @@ sv-FI:
754
837
  # Dutch
755
838
  # -----
756
839
  nl: &DEFAULT_NL
840
+ skip_links :
841
+ skip_primary_nav :
842
+ skip_content :
843
+ skip_footer :
757
844
  page : "Pagina"
758
845
  pagination_previous : "Vorige"
759
846
  pagination_next : "Volgende"
@@ -792,6 +879,7 @@ nl: &DEFAULT_NL
792
879
  comment_success_msg : "Bedankt voor uw reactie! Het zal op de site worden weergegeven zodra het is goedgekeurd."
793
880
  comment_error_msg : "Sorry, er is een fout opgetreden bij uw inzending. Zorg ervoor dat alle vereiste velden zijn voltooid en probeer het opnieuw."
794
881
  loading_label : "Laden..."
882
+ search_label_text :
795
883
  nl-BE:
796
884
  <<: *DEFAULT_NL
797
885
  nl-NL:
@@ -800,6 +888,10 @@ nl-NL:
800
888
  # Indonesian
801
889
  # ----------
802
890
  id: &DEFAULT_ID
891
+ skip_links :
892
+ skip_primary_nav :
893
+ skip_content :
894
+ skip_footer :
803
895
  page : "Halaman"
804
896
  pagination_previous : "Kembali"
805
897
  pagination_next : "Maju"
@@ -838,12 +930,17 @@ id: &DEFAULT_ID
838
930
  comment_success_msg : "Terimakasih atas komentar Anda! Komentar ini akan tampil setelah disetujui."
839
931
  comment_error_msg : "Maaf, ada kesalahan pada submisi Anda. Pastikan seluruh kolom sudah dilengkapi dan coba kembali."
840
932
  loading_label : "Sedang meload..."
933
+ search_label_text :
841
934
  id-ID:
842
935
  <<: *DEFAULT_ID
843
936
 
844
937
  # Vietnamese
845
938
  # ----------
846
939
  vi: &DEFAULT_VI
940
+ skip_links :
941
+ skip_primary_nav :
942
+ skip_content :
943
+ skip_footer :
847
944
  page : "Trang"
848
945
  pagination_previous : "Trước"
849
946
  pagination_next : "Sau"
@@ -882,6 +979,7 @@ vi: &DEFAULT_VI
882
979
  comment_success_msg : "Cảm ơn bạn đã bình luận! Bình luận sẽ xuất hiện sau khi được duyệt."
883
980
  comment_error_msg : "Rất tiếc, có lỗi trong việc gửi bình luận. Hãy đảm bảo toàn bộ các phần bắt buộc đã được điền đầy đủ và thử lại."
884
981
  loading_label : "Đang tải..."
982
+ search_label_text :
885
983
  search_placeholder_text : "Nhập từ khóa cần tìm..."
886
984
  results_found : "Kết quả tìm được"
887
985
  back_to_top : "Lên đầu trang"
@@ -891,6 +989,10 @@ vi-VN:
891
989
  # Danish
892
990
  # ------
893
991
  da: &DEFAULT_DA
992
+ skip_links :
993
+ skip_primary_nav :
994
+ skip_content :
995
+ skip_footer :
894
996
  page : "Side"
895
997
  pagination_previous : "Forrige"
896
998
  pagination_next : "Næste"
@@ -929,6 +1031,7 @@ da: &DEFAULT_DA
929
1031
  comment_success_msg : "Tak for din kommentar! Den bliver vist på siden, så snart den er godkendt."
930
1032
  comment_error_msg : "Desværre skete der en fejl. Prøv igen, mens du sørger for at alle obligatoriske felter er udfyldt."
931
1033
  loading_label : "Indlæser..."
1034
+ search_label_text :
932
1035
  search_placeholder_text : "Hvad leder du efter..."
933
1036
  results_found : "Resultat(er) fundet"
934
1037
  back_to_top : "Tilbage til toppen"
@@ -938,6 +1041,10 @@ da-DK:
938
1041
  # Polish
939
1042
  # ------
940
1043
  pl: &DEFAULT_PL
1044
+ skip_links :
1045
+ skip_primary_nav :
1046
+ skip_content :
1047
+ skip_footer :
941
1048
  page : "Strona"
942
1049
  pagination_previous : "Poprzednia"
943
1050
  pagination_next : "Następna"
@@ -976,12 +1083,17 @@ pl: &DEFAULT_PL
976
1083
  comment_success_msg : "Dziękuję za Twój komentarz! Zostanie dodany po akceptacji."
977
1084
  comment_error_msg : "Niestety wystąpił błąd. Proszę upewnij się, że wszystkie wymagane pola zostały wypełnione i spróbuj ponownie."
978
1085
  loading_label : "Trwa ładowanie strony..."
1086
+ search_label_text :
979
1087
  pl-PL:
980
1088
  <<: *DEFAULT_PL
981
1089
 
982
1090
  # Japanese
983
1091
  # --------
984
1092
  ja: &DEFAULT_JA
1093
+ skip_links :
1094
+ skip_primary_nav :
1095
+ skip_content :
1096
+ skip_footer :
985
1097
  page : "ページ"
986
1098
  pagination_previous : "前へ"
987
1099
  pagination_next : "次へ"
@@ -1020,6 +1132,7 @@ ja: &DEFAULT_JA
1020
1132
  comment_success_msg : "コメントありがとうございます! コメントは承認されるとページに表示されます。"
1021
1133
  comment_error_msg : "送信エラーです。必須項目がすべて入力されていることを確認して再送信してください。"
1022
1134
  loading_label : "読み込み中..."
1135
+ search_label_text :
1023
1136
  search_placeholder_text : "検索キーワードを入力してください..."
1024
1137
  results_found : "件"
1025
1138
  ja-JP:
@@ -1028,6 +1141,10 @@ ja-JP:
1028
1141
  # Slovak
1029
1142
  # -----------------
1030
1143
  sk: &DEFAULT_SK
1144
+ skip_links :
1145
+ skip_primary_nav :
1146
+ skip_content :
1147
+ skip_footer :
1031
1148
  page : "Stránka"
1032
1149
  pagination_previous : "Predošlá"
1033
1150
  pagination_next : "Ďalšia"
@@ -1066,6 +1183,7 @@ sk: &DEFAULT_SK
1066
1183
  comment_success_msg : "Ďakujem za tvoj komentár! Po schválení bude zobrazený na stránke."
1067
1184
  comment_error_msg : "Prepáč, pri ukladaní nastala chyba. Ubezpeč sa prosím, že si vyplnil všetky požadované polia a skús znova."
1068
1185
  loading_label : "Načítava sa..."
1186
+ search_label_text :
1069
1187
  search_placeholder_text : "Zadaj hľadaný výraz..."
1070
1188
  results_found : "Nájdených výsledkov"
1071
1189
  back_to_top : "Na začiatok stránky"
@@ -1075,6 +1193,10 @@ sk-SK:
1075
1193
  # Hungarian
1076
1194
  # -----------------
1077
1195
  hu: &DEFAULT_HU
1196
+ skip_links :
1197
+ skip_primary_nav :
1198
+ skip_content :
1199
+ skip_footer :
1078
1200
  page : "Oldal"
1079
1201
  pagination_previous : "Előző"
1080
1202
  pagination_next : "Következő"
@@ -1113,6 +1235,7 @@ hu: &DEFAULT_HU
1113
1235
  comment_success_msg : "Köszönjük a Hozzászólást! A Hozzászólások csak előzetes moderáció után lesznek publikusak."
1114
1236
  comment_error_msg : "Hoppá, hiba történt a beküldés közben. Kérlek ellenőrizd hogy minden kötelező mező ki van-e töltve."
1115
1237
  loading_label : "Betöltés..."
1238
+ search_label_text :
1116
1239
  search_placeholder_text : "Keresendő szöveg..."
1117
1240
  results_found : "Találatok:"
1118
1241
  back_to_top : "Oldal tetejére"
@@ -1122,6 +1245,10 @@ hu-HU:
1122
1245
  # Romanian
1123
1246
  # -----------------
1124
1247
  ro: &DEFAULT_RO
1248
+ skip_links :
1249
+ skip_primary_nav :
1250
+ skip_content :
1251
+ skip_footer :
1125
1252
  page : "Pagina"
1126
1253
  pagination_previous : "Anterior"
1127
1254
  pagination_next : "Următor"
@@ -1160,6 +1287,7 @@ ro: &DEFAULT_RO
1160
1287
  comment_success_msg : "Mulțumesc pentru comentariu! Va apărea pe site în momentul în care va fi aprobat."
1161
1288
  comment_error_msg : "Scuze, este o problemă cu comentariul tău. Asigură-te că toate câmpurile obligatorii au fost completate și încearcă din nou."
1162
1289
  loading_label : "Se încarcă..."
1290
+ search_label_text :
1163
1291
  search_placeholder_text : "Caută ceva..."
1164
1292
  results_found : "Rezultate găsite"
1165
1293
  back_to_top : "Înapoi în susul paginii"
@@ -1169,19 +1297,23 @@ ro-RO:
1169
1297
  # Punjabi
1170
1298
  # -----------------
1171
1299
  pa: &DEFAULT_PA
1300
+ skip_links : "ਲਿੰਕ ਛੱਡੋ"
1301
+ skip_primary_nav : "ਮੂਲ ਮਾਰਗ ਛੱਡੋ"
1302
+ skip_content : "ਸਮੱਗਰੀ ਛੱਡੋ"
1303
+ skip_footer : "ਅੰਤ ਵਿਚ ਲਿਖਿਆ ਛੱਡੋ"
1172
1304
  page : "ਸਫ਼ਾ"
1173
1305
  pagination_previous : "ਪਿਛਲਾ"
1174
1306
  pagination_next : "ਅਗਲਾ "
1175
1307
  breadcrumb_home_label : "ਘਰ"
1176
1308
  breadcrumb_separator : "/"
1177
1309
  menu_label : "ਟੌਗਲ ਮੀਨੂ"
1178
- search_label :
1310
+ search_label : "ਖੋਜ"
1179
1311
  toc_label : "ਇਸ ਸਫ਼ੇ 'ਤੇ"
1180
1312
  ext_link_label : "ਸਿੱਧਾ ਸੰਪਰਕ"
1181
1313
  less_than : "ਤੋਂ ਘੱਟ"
1182
1314
  minute_read : "ਮਿੰਟ ਵਿੱਚ ਪੜਿਆ ਜਾ ਸਕਦਾ ਹੈ"
1183
1315
  share_on_label : "ਸਾਂਝਾ ਕਰੋ"
1184
- meta_label :
1316
+ meta_label : "ਸਵੈ-ਸੰਦਰਭ ਜਾਣਕਾਰੀ"
1185
1317
  tags_label : "ਟੈਗ"
1186
1318
  categories_label : "ਵਰਗ"
1187
1319
  date_label : "ਅਪਡੇਟ ਕੀਤਾ:"
@@ -1207,7 +1339,8 @@ pa: &DEFAULT_PA
1207
1339
  comment_success_msg : "ਤੁਹਾਡੀਆਂ ਟਿੱਪਣੀਆਂ ਲਈ ਧੰਨਵਾਦ! ਇਹ ਮਨਜ਼ੂਰੀ ਮਿਲਣ ਦੇ ਬਾਅਦ ਸਾਈਟ 'ਤੇ ਦਿਖਾਇਆ ਜਾਵੇਗਾ।"
1208
1340
  comment_error_msg : "ਮੁਆਫ ਕਰਨਾ, ਤੁਹਾਡੀ ਅਧੀਨਗੀ ਵਿੱਚ ਕੋਈ ਗਲਤੀ ਹੋਈ ਸੀ ਕਿਰਪਾ ਕਰਕੇ ਯਕੀਨੀ ਬਣਾਓ ਕਿ ਸਾਰੇ ਲੋੜੀਂਦੇ ਖੇਤਰ ਪੂਰੇ ਹੋ ਗਏ ਹਨ ਅਤੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।"
1209
1341
  loading_label : "ਲੋਡ ਹੋ ਰਿਹਾ ਹੈ..."
1210
- search_placeholder_text : "ਆਪਣੀ ਖੋਜ ਦੇ ਸ਼ਬਦ ਨੂੰ ਦਰਜ ਕਰੋ..."
1342
+ search_label_text : "ਖੋਜ"
1343
+ search_placeholder_text : "ਆਪਣੀ ਖੋਜ ਦੇ ਸ਼ਬਦ ਨੂੰ ਦਰਜ ਕਰੋ..."
1211
1344
  results_found : "ਨਤੀਜਾ ਮਿਲਿਆ/ਮਿਲੇ"
1212
1345
  back_to_top : "ਵਾਪਸ ਚੋਟੀ 'ਤੇ ਜਾਓ"
1213
1346
  pa-IN:
@@ -1216,6 +1349,10 @@ pa-IN:
1216
1349
  # Persian (Farsi)
1217
1350
  # --------------
1218
1351
  fa: &DEFAULT_FA
1352
+ skip_links :
1353
+ skip_primary_nav :
1354
+ skip_content :
1355
+ skip_footer :
1219
1356
  page : "صفحه"
1220
1357
  pagination_previous : "قبلی"
1221
1358
  pagination_next : "بعدی"
@@ -1253,6 +1390,7 @@ fa: &DEFAULT_FA
1253
1390
  comment_success_msg : ".باتشکر از ارسال دیدگاه! پس از تأیید، این دیدگاه در سایت نشان داده خواهد شد"
1254
1391
  comment_error_msg : ".متاسفانه در ارسال شما خطایی بود. لطفا مطمئن شوید تمام فیلدهای مورد نیاز تکمیل شده و دوباره امتحان کنید"
1255
1392
  loading_label : "...بارگذاری"
1393
+ search_label_text :
1256
1394
  search_placeholder_text : "...عبارت جستجوی خود را وارد کنید"
1257
1395
  results_found : "نتایج"
1258
1396
  back_to_top : "بازگشت به بالا"
@@ -1263,6 +1401,10 @@ fa-IR:
1263
1401
  # Malayalam
1264
1402
  # -----------------
1265
1403
  ml: &DEFAULT_ML
1404
+ skip_links :
1405
+ skip_primary_nav :
1406
+ skip_content :
1407
+ skip_footer :
1266
1408
  page : "പേജ്"
1267
1409
  pagination_previous : "തിരികെ"
1268
1410
  pagination_next : "മുന്നോട്ട്"
@@ -1300,7 +1442,8 @@ ml: &DEFAULT_ML
1300
1442
  comment_btn_submitted : "രേഖപ്പെടുത്തി"
1301
1443
  comment_success_msg : "നിങ്ങളുടെ അഭിപ്രായത്തിന് നന്ദി! ഇത് അംഗീകരിച്ചുകഴിഞ്ഞാൽ ഇത് സൈറ്റിൽ പ്രദർശിപ്പിക്കും."
1302
1444
  comment_error_msg : "ക്ഷമിക്കണം, നിങ്ങളുടെ സമർപ്പണവുമായി ബന്ധപ്പെട്ട് ഒരു പിശകുണ്ടായിരുന്നു. ആവശ്യമായ എല്ലാ ഫീൽഡുകളും പൂർത്തിയായിട്ടുണ്ടെന്ന് ഉറപ്പുവരുത്തുക, വീണ്ടും ശ്രമിക്കുക."
1303
- loading_label : "ലോഡിംഗ്..."
1445
+ loading_label : "ലോഡിംഗ്..."
1446
+ search_label_text :
1304
1447
  search_placeholder_text : "നിങ്ങളുടെ തിരയൽ പദം നൽകുക..."
1305
1448
  results_found : "ഫലം (കൾ) കണ്ടെത്തി"
1306
1449
  back_to_top : "മുകളിലേയ്ക്ക്"
@@ -1310,6 +1453,10 @@ ml-IN:
1310
1453
  # Thailand
1311
1454
  # --------------
1312
1455
  th: &DEFAULT_TH
1456
+ skip_links :
1457
+ skip_primary_nav :
1458
+ skip_content :
1459
+ skip_footer :
1313
1460
  page : "หน้า"
1314
1461
  pagination_previous : "ก่อนหน้า"
1315
1462
  pagination_next : "ถัดไป"
@@ -1348,6 +1495,7 @@ th: &DEFAULT_TH
1348
1495
  comment_success_msg : "ขอบคุณสำหรับการแสดงความคิดเห็น! ความคิดเห็นจะได้รับการแสดงหลังจากได้รับการยืนยัน"
1349
1496
  comment_error_msg : "ขออภัย, มีบางอย่างผิดพลาดจากการส่งแบบฟอร์ม กรุณาตรวจทานทุกช่อง และลองส่งใหม่อีกครั้ง"
1350
1497
  loading_label : "กำลังโหลด..."
1498
+ search_label_text :
1351
1499
  search_placeholder_text : "ใส่คำค้นหาของคุณ..."
1352
1500
  results_found : "ผลการค้นหา พบ"
1353
1501
  back_to_top : "กลับด้านบน"
@@ -1357,6 +1505,10 @@ th-TH:
1357
1505
  # Hindi
1358
1506
  # -----------------
1359
1507
  hi: &DEFAULT_HI
1508
+ skip_links : "लिंक छोड़ें"
1509
+ skip_primary_nav : "प्राथमिक पथ-प्रदर्शन छोड़ें"
1510
+ skip_content : "सामग्री छोड़ें"
1511
+ skip_footer : "अंत-में लिखा छोड़ें"
1360
1512
  page : "पृष्ठ"
1361
1513
  pagination_previous : "पिछला"
1362
1514
  pagination_next : "अगला"
@@ -1368,7 +1520,7 @@ hi: &DEFAULT_HI
1368
1520
  less_than : "से कम"
1369
1521
  minute_read : "मिनट में पढ़ सकते हैं"
1370
1522
  share_on_label : "साझा करें"
1371
- meta_label :
1523
+ meta_label : "स्व-संदर्भात्मक जानकारी"
1372
1524
  tags_label : "अंकितक:"
1373
1525
  categories_label : "श्रेणियाँ:"
1374
1526
  date_label : "अपडेट किया गया:"
@@ -1394,6 +1546,7 @@ hi: &DEFAULT_HI
1394
1546
  comment_success_msg : "आपके कमेंट के लिए धन्यवाद! इसे स्वीकृति मिलने के बाद साइट पर दिखाया जाएगा।"
1395
1547
  comment_error_msg : "क्षमा करें, आपके सबमिशन के साथ एक त्रुटि हुई थी। कृपया सुनिश्चित करें कि सभी आवश्यक फ़ील्ड पूरा हो गए हैं और पुनः प्रयास करें।"
1396
1548
  loading_label : "लोड हो रहा है..."
1549
+ search_label_text : "खोज"
1397
1550
  search_placeholder_text : "अपना खोज शब्द दर्ज करें..."
1398
1551
  results_found : "परिणाम मिला/मिले"
1399
1552
  back_to_top : "शीर्ष पर वापस"
@@ -1,4 +1,4 @@
1
- <script type="text/javascript">
1
+ <script>
2
2
  var _gaq = _gaq || [];
3
3
  _gaq.push(['_setAccount', '{{ site.analytics.google.tracking_id }}']);
4
4
  {% if site.analytics.google.anonymize_ip == true %}
@@ -11,4 +11,4 @@
11
11
  ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
12
12
  var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
13
13
  })();
14
- </script>
14
+ </script>
@@ -11,7 +11,10 @@
11
11
  {% unless logo_path == empty %}
12
12
  <a class="site-logo" href="{{ '/' | relative_url }}"><img src="{{ logo_path | relative_url }}" alt=""></a>
13
13
  {% endunless %}
14
- <a class="site-title" href="{{ '/' | relative_url }}">{{ site.masthead_title | default: site.title }}</a>
14
+ <a class="site-title" href="{{ '/' | relative_url }}">
15
+ {{ site.masthead_title | default: site.title }}
16
+ {% if site.subtitle %}<span class="site-subtitle">{{ site.subtitle }}</span>{% endif %}
17
+ </a>
15
18
  <ul class="visible-links">
16
19
  {%- for link in site.data.navigation.main -%}
17
20
  {%- if link.url contains '://' -%}
@@ -9,7 +9,7 @@
9
9
  {% endfor %}
10
10
  {% else %}
11
11
  <script src="{{ '/assets/js/main.min.js' | relative_url }}"></script>
12
- <script defer src="https://use.fontawesome.com/releases/v5.8.2/js/all.js" integrity="sha384-DJ25uNYET2XCl5ZF++U8eNxPWqcKohUUBUpKGlNLMchM7q4Wjg2CUpjHLaL8yYPH" crossorigin="anonymous"></script>
12
+ <script src="https://kit.fontawesome.com/4eee35f757.js"></script>
13
13
  {% endif %}
14
14
 
15
15
  {% if site.search == true or page.layout == "search" %}
@@ -1,18 +1,26 @@
1
1
  <div class="search-content__inner-wrap">
2
- {%- assign search_provider = site.search_provider | default: "lunr" -%}
3
- {%- case search_provider -%}
2
+ {%- assign search_provider = site.search_provider | default: "lunr" -%}
3
+ {%- case search_provider -%}
4
4
  {%- when "lunr" -%}
5
- <input type="search" id="search" aria-placeholder="{{ site.data.ui-text[site.locale].search_placeholder_text | default: 'Enter your search term...' }}" class="search-input" tabindex="-1" placeholder="{{ site.data.ui-text[site.locale].search_placeholder_text | default: 'Enter your search term...' }}" />
6
- <div id="results" class="results"></div>
5
+ <form class="search-content__form" onkeydown="return event.key != 'Enter';">
6
+ <label class="sr-only" for="search">
7
+ {{ site.data.ui-text[site.locale].search_label_text | default: 'Enter your search term...' }}
8
+ </label>
9
+ <input type="search" id="search" class="search-input" tabindex="-1" placeholder="{{ site.data.ui-text[site.locale].search_placeholder_text | default: 'Enter your search term...' }}" />
10
+ </form>
11
+ <div id="results" class="results"></div>
7
12
  {%- when "google" -%}
8
- <form onsubmit="return googleCustomSearchExecute();" id="cse-search-box-form-id">
9
- <input type="search" id="cse-search-input-box-id" aria-placeholder="{{ site.data.ui-text[site.locale].search_placeholder_text | default: 'Enter your search term...' }}" class="search-input" tabindex="-1" placeholder="{{ site.data.ui-text[site.locale].search_placeholder_text | default: 'Enter your search term...' }}" />
10
- </form>
11
- <div id="results" class="results">
12
- <gcse:searchresults-only></gcse:searchresults-only>
13
- </div>
13
+ <form onsubmit="return googleCustomSearchExecute();" id="cse-search-box-form-id">
14
+ <label class="sr-only" for="cse-search-input-box-id">
15
+ {{ site.data.ui-text[site.locale].search_label_text | default: 'Enter your search term...' }}
16
+ </label>
17
+ <input type="search" id="cse-search-input-box-id" class="search-input" tabindex="-1" placeholder="{{ site.data.ui-text[site.locale].search_placeholder_text | default: 'Enter your search term...' }}" />
18
+ </form>
19
+ <div id="results" class="results">
20
+ <gcse:searchresults-only></gcse:searchresults-only>
21
+ </div>
14
22
  {%- when "algolia" -%}
15
- <div class="search-searchbar"></div>
16
- <div class="search-hits"></div>
17
- {%- endcase -%}
23
+ <div class="search-searchbar"></div>
24
+ <div class="search-hits"></div>
25
+ {%- endcase -%}
18
26
  </div>
@@ -0,0 +1,8 @@
1
+ <nav class="skip-links">
2
+ <h2 class="screen-reader-text">{{ site.data.ui-text[site.locale].skip_links | default: 'Skip links' }}</h2>
3
+ <ul>
4
+ <li><a href="#site-nav" class="screen-reader-shortcut">{{ site.data.ui-text[site.locale].skip_primary_nav | default: 'Skip to primary navigation' }}</a></li>
5
+ <li><a href="#main" class="screen-reader-shortcut">{{ site.data.ui-text[site.locale].skip_content | default: 'Skip to content' }}</a></li>
6
+ <li><a href="#footer" class="screen-reader-shortcut">{{ site.data.ui-text[site.locale].skip_footer | default: 'Skip to footer' }}</a></li>
7
+ </ul>
8
+ </nav>
@@ -3,7 +3,7 @@
3
3
 
4
4
  <!doctype html>
5
5
  <!--
6
- Minimal Mistakes Jekyll Theme 4.16.4 by Michael Rose
6
+ Minimal Mistakes Jekyll Theme 4.16.5 by Michael Rose
7
7
  Copyright 2013-2019 Michael Rose - mademistakes.com | @mmistakes
8
8
  Free for personal and commercial use under the MIT license
9
9
  https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE
@@ -15,7 +15,7 @@
15
15
  </head>
16
16
 
17
17
  <body class="layout--{{ page.layout | default: layout.layout }}{% if page.classes or layout.classes %}{{ page.classes | default: layout.classes | join: ' ' | prepend: ' ' }}{% endif %}">
18
-
18
+ {% include_cached skip-links.html %}
19
19
  {% include_cached browser-upgrade.html %}
20
20
  {% include_cached masthead.html %}
21
21
 
@@ -29,7 +29,7 @@
29
29
  </div>
30
30
  {% endif %}
31
31
 
32
- <div class="page__footer">
32
+ <div id="footer" class="page__footer">
33
33
  <footer>
34
34
  {% include footer/custom.html %}
35
35
  {% include_cached footer.html %}
@@ -37,7 +37,7 @@ layout: default
37
37
  {% if page.toc %}
38
38
  <aside class="sidebar__right {% if page.toc_sticky %}sticky{% endif %}">
39
39
  <nav class="toc">
40
- <header><h4 class="nav__title"><i class="fas fa-{{ page.toc_icon | default: 'file-alt' }}"></i> {{ page.toc_label | default: site.data.ui-text[site.locale].toc_label }}</h4></header>
40
+ <header><h4 class="nav__title"><i class="fas fa-{{ page.toc_icon | default: 'file-alt' }}"></i> {{ page.toc_label | default: site.data.ui-text[site.locale].toc_label | default: "On this page" }}</h4></header>
41
41
  {% include toc.html sanitize=true html=content h_min=1 h_max=6 class="toc__menu" %}
42
42
  </nav>
43
43
  </aside>
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Minimal Mistakes Jekyll Theme 4.16.4 by Michael Rose
2
+ * Minimal Mistakes Jekyll Theme 4.16.5 by Michael Rose
3
3
  * Copyright 2013-2019 Michael Rose - mademistakes.com | @mmistakes
4
4
  * Licensed under MIT (https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE)
5
5
  */
@@ -53,6 +53,11 @@
53
53
  z-index: 20;
54
54
  }
55
55
 
56
+ .site-subtitle {
57
+ display: block;
58
+ font-size: $type-size-8;
59
+ }
60
+
56
61
  .masthead__menu {
57
62
  float: left;
58
63
  margin-left: 0;
@@ -50,6 +50,11 @@
50
50
  @include breakpoint($x-large) {
51
51
  max-width: $max-width;
52
52
  }
53
+
54
+ }
55
+
56
+ &__form {
57
+ background-color: transparent;
53
58
  }
54
59
 
55
60
  .search-input {
@@ -119,6 +124,7 @@
119
124
  font-style: normal;
120
125
  text-decoration: underline;
121
126
  }
127
+
122
128
  .archive__item-excerpt .ais-Highlight {
123
129
  color: $primary-color;
124
130
  font-style: normal;
@@ -22,8 +22,6 @@ var idx = lunr(function () {
22
22
  }
23
23
  });
24
24
 
25
- console.log( jQuery.type(idx) );
26
-
27
25
  $(document).ready(function() {
28
26
  $('input#search').on('keyup', function () {
29
27
  var resultdiv = $('#results');
@@ -475,8 +475,6 @@ var idx = lunr(function () {
475
475
  }
476
476
  });
477
477
 
478
- console.log( jQuery.type(idx) );
479
-
480
478
  $(document).ready(function() {
481
479
  $('input#search').on('keyup', function () {
482
480
  var resultdiv = $('#results');
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Minimal Mistakes Jekyll Theme 4.16.4 by Michael Rose
2
+ * Minimal Mistakes Jekyll Theme 4.16.5 by Michael Rose
3
3
  * Copyright 2013-2019 Michael Rose - mademistakes.com | @mmistakes
4
4
  * Licensed under MIT
5
5
  */
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minimal-mistakes-jekyll
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.16.4
4
+ version: 4.16.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Rose
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-27 00:00:00.000000000 Z
11
+ date: 2019-07-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -208,6 +208,7 @@ files:
208
208
  - _includes/search/search_form.html
209
209
  - _includes/seo.html
210
210
  - _includes/sidebar.html
211
+ - _includes/skip-links.html
211
212
  - _includes/social-share.html
212
213
  - _includes/tag-list.html
213
214
  - _includes/toc