├── .github └── workflows │ ├── cd.yml │ ├── ci.yml │ └── publish.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE.md ├── NOTICE.txt ├── README.md ├── bin └── kendo-translate.js ├── commitlint.config.js ├── messages ├── aiprompt │ ├── aiprompt.ar.yml │ ├── aiprompt.bg-BG.yml │ ├── aiprompt.cs-CZ.yml │ ├── aiprompt.da-DK.yml │ ├── aiprompt.de-AT.yml │ ├── aiprompt.de-CH.yml │ ├── aiprompt.de-DE.yml │ ├── aiprompt.de-LI.yml │ ├── aiprompt.en-AU.yml │ ├── aiprompt.en-CA.yml │ ├── aiprompt.en-GB.yml │ ├── aiprompt.en-US.yml │ ├── aiprompt.es-AR.yml │ ├── aiprompt.es-BO.yml │ ├── aiprompt.es-CL.yml │ ├── aiprompt.es-CO.yml │ ├── aiprompt.es-CR.yml │ ├── aiprompt.es-DO.yml │ ├── aiprompt.es-EC.yml │ ├── aiprompt.es-ES.yml │ ├── aiprompt.es-GT.yml │ ├── aiprompt.es-HN.yml │ ├── aiprompt.es-MX.yml │ ├── aiprompt.es-NI.yml │ ├── aiprompt.es-PA.yml │ ├── aiprompt.es-PE.yml │ ├── aiprompt.es-PR.yml │ ├── aiprompt.es-PY.yml │ ├── aiprompt.es-US.yml │ ├── aiprompt.es-UY.yml │ ├── aiprompt.es-VE.yml │ ├── aiprompt.fa-IR.yml │ ├── aiprompt.fi-FI.yml │ ├── aiprompt.fr-BE.yml │ ├── aiprompt.fr-CA.yml │ ├── aiprompt.fr-CD.yml │ ├── aiprompt.fr-CH.yml │ ├── aiprompt.fr-CI.yml │ ├── aiprompt.fr-CM.yml │ ├── aiprompt.fr-FR.yml │ ├── aiprompt.fr-HT.yml │ ├── aiprompt.fr-LU.yml │ ├── aiprompt.fr-MA.yml │ ├── aiprompt.fr-MC.yml │ ├── aiprompt.fr-ML.yml │ ├── aiprompt.fr-SN.yml │ ├── aiprompt.he-IL.yml │ ├── aiprompt.hy-AM.yml │ ├── aiprompt.it-CH.yml │ ├── aiprompt.it-IT.yml │ ├── aiprompt.ja-JP.yml │ ├── aiprompt.ka-GE.yml │ ├── aiprompt.nb-NO.yml │ ├── aiprompt.nl-BE.yml │ ├── aiprompt.nl-NL.yml │ ├── aiprompt.pl-PL.yml │ ├── aiprompt.pt-BR.yml │ ├── aiprompt.pt-PT.yml │ ├── aiprompt.ro-RO.yml │ ├── aiprompt.ru-RU.yml │ ├── aiprompt.sk-SK.yml │ ├── aiprompt.sv-SE.yml │ ├── aiprompt.tr-TR.yml │ ├── aiprompt.uk-UA.yml │ ├── aiprompt.zh-CN.yml │ ├── aiprompt.zh-HK.yml │ └── aiprompt.zh-TW.yml ├── avatar │ ├── avatar.ar.yml │ ├── avatar.bg-BG.yml │ ├── avatar.cs-CZ.yml │ ├── avatar.da-DK.yml │ ├── avatar.de-AT.yml │ ├── avatar.de-CH.yml │ ├── avatar.de-DE.yml │ ├── avatar.de-LI.yml │ ├── avatar.en-AU.yml │ ├── avatar.en-CA.yml │ ├── avatar.en-GB.yml │ ├── avatar.en-US.yml │ ├── avatar.es-AR.yml │ ├── avatar.es-BO.yml │ ├── avatar.es-CL.yml │ ├── avatar.es-CO.yml │ ├── avatar.es-CR.yml │ ├── avatar.es-DO.yml │ ├── avatar.es-EC.yml │ ├── avatar.es-ES.yml │ ├── avatar.es-GT.yml │ ├── avatar.es-HN.yml │ ├── avatar.es-MX.yml │ ├── avatar.es-NI.yml │ ├── avatar.es-PA.yml │ ├── avatar.es-PE.yml │ ├── avatar.es-PR.yml │ ├── avatar.es-PY.yml │ ├── avatar.es-US.yml │ ├── avatar.es-UY.yml │ ├── avatar.es-VE.yml │ ├── avatar.fa-IR.yml │ ├── avatar.fi-FI.yml │ ├── avatar.fr-BE.yml │ ├── avatar.fr-CA.yml │ ├── avatar.fr-CD.yml │ ├── avatar.fr-CH.yml │ ├── avatar.fr-CI.yml │ ├── avatar.fr-CM.yml │ ├── avatar.fr-FR.yml │ ├── avatar.fr-HT.yml │ ├── avatar.fr-LU.yml │ ├── avatar.fr-MA.yml │ ├── avatar.fr-MC.yml │ ├── avatar.fr-ML.yml │ ├── avatar.fr-SN.yml │ ├── avatar.he-IL.yml │ ├── avatar.hy-AM.yml │ ├── avatar.it-CH.yml │ ├── avatar.it-IT.yml │ ├── avatar.ja-JP.yml │ ├── avatar.ka-GE.yml │ ├── avatar.nb-NO.yml │ ├── avatar.nl-BE.yml │ ├── avatar.nl-NL.yml │ ├── avatar.pl-PL.yml │ ├── avatar.pt-BR.yml │ ├── avatar.pt-PT.yml │ ├── avatar.ro-RO.yml │ ├── avatar.ru-RU.yml │ ├── avatar.sk-SK.yml │ ├── avatar.sv-SE.yml │ ├── avatar.tr-TR.yml │ ├── avatar.uk-UA.yml │ ├── avatar.zh-CN.yml │ ├── avatar.zh-HK.yml │ └── avatar.zh-TW.yml ├── calendar │ ├── calendar.ar.yml │ ├── calendar.bg-BG.yml │ ├── calendar.cs-CZ.yml │ ├── calendar.da-DK.yml │ ├── calendar.de-AT.yml │ ├── calendar.de-CH.yml │ ├── calendar.de-DE.yml │ ├── calendar.de-LI.yml │ ├── calendar.en-AU.yml │ ├── calendar.en-CA.yml │ ├── calendar.en-GB.yml │ ├── calendar.en-US.yml │ ├── calendar.es-AR.yml │ ├── calendar.es-BO.yml │ ├── calendar.es-CL.yml │ ├── calendar.es-CO.yml │ ├── calendar.es-CR.yml │ ├── calendar.es-DO.yml │ ├── calendar.es-EC.yml │ ├── calendar.es-ES.yml │ ├── calendar.es-GT.yml │ ├── calendar.es-HN.yml │ ├── calendar.es-MX.yml │ ├── calendar.es-NI.yml │ ├── calendar.es-PA.yml │ ├── calendar.es-PE.yml │ ├── calendar.es-PR.yml │ ├── calendar.es-PY.yml │ ├── calendar.es-US.yml │ ├── calendar.es-UY.yml │ ├── calendar.es-VE.yml │ ├── calendar.fa-IR.yml │ ├── calendar.fi-FI.yml │ ├── calendar.fr-BE.yml │ ├── calendar.fr-CA.yml │ ├── calendar.fr-CD.yml │ ├── calendar.fr-CH.yml │ ├── calendar.fr-CI.yml │ ├── calendar.fr-CM.yml │ ├── calendar.fr-FR.yml │ ├── calendar.fr-HT.yml │ ├── calendar.fr-LU.yml │ ├── calendar.fr-MA.yml │ ├── calendar.fr-MC.yml │ ├── calendar.fr-ML.yml │ ├── calendar.fr-SN.yml │ ├── calendar.he-IL.yml │ ├── calendar.hy-AM.yml │ ├── calendar.it-CH.yml │ ├── calendar.it-IT.yml │ ├── calendar.ja-JP.yml │ ├── calendar.ka-GE.yml │ ├── calendar.nb-NO.yml │ ├── calendar.nl-BE.yml │ ├── calendar.nl-NL.yml │ ├── calendar.pl-PL.yml │ ├── calendar.pt-BR.yml │ ├── calendar.pt-PT.yml │ ├── calendar.ro-RO.yml │ ├── calendar.ru-RU.yml │ ├── calendar.sk-SK.yml │ ├── calendar.sv-SE.yml │ ├── calendar.tr-TR.yml │ ├── calendar.uk-UA.yml │ ├── calendar.zh-CN.yml │ ├── calendar.zh-HK.yml │ └── calendar.zh-TW.yml ├── chartwizard │ ├── chartwizard.ar.yml │ ├── chartwizard.bg-BG.yml │ ├── chartwizard.cs-CZ.yml │ ├── chartwizard.da-DK.yml │ ├── chartwizard.de-AT.yml │ ├── chartwizard.de-CH.yml │ ├── chartwizard.de-DE.yml │ ├── chartwizard.de-LI.yml │ ├── chartwizard.en-AU.yml │ ├── chartwizard.en-CA.yml │ ├── chartwizard.en-GB.yml │ ├── chartwizard.en-US.yml │ ├── chartwizard.es-AR.yml │ ├── chartwizard.es-BO.yml │ ├── chartwizard.es-CL.yml │ ├── chartwizard.es-CO.yml │ ├── chartwizard.es-CR.yml │ ├── chartwizard.es-DO.yml │ ├── chartwizard.es-EC.yml │ ├── chartwizard.es-ES.yml │ ├── chartwizard.es-GT.yml │ ├── chartwizard.es-HN.yml │ ├── chartwizard.es-MX.yml │ ├── chartwizard.es-NI.yml │ ├── chartwizard.es-PA.yml │ ├── chartwizard.es-PE.yml │ ├── chartwizard.es-PR.yml │ ├── chartwizard.es-PY.yml │ ├── chartwizard.es-US.yml │ ├── chartwizard.es-UY.yml │ ├── chartwizard.es-VE.yml │ ├── chartwizard.fa-IR.yml │ ├── chartwizard.fi-FI.yml │ ├── chartwizard.fr-BE.yml │ ├── chartwizard.fr-CA.yml │ ├── chartwizard.fr-CD.yml │ ├── chartwizard.fr-CH.yml │ ├── chartwizard.fr-CI.yml │ ├── chartwizard.fr-CM.yml │ ├── chartwizard.fr-FR.yml │ ├── chartwizard.fr-HT.yml │ ├── chartwizard.fr-LU.yml │ ├── chartwizard.fr-MA.yml │ ├── chartwizard.fr-MC.yml │ ├── chartwizard.fr-ML.yml │ ├── chartwizard.fr-SN.yml │ ├── chartwizard.he-IL.yml │ ├── chartwizard.hy-AM.yml │ ├── chartwizard.it-CH.yml │ ├── chartwizard.it-IT.yml │ ├── chartwizard.ja-JP.yml │ ├── chartwizard.ka-GE.yml │ ├── chartwizard.nb-NO.yml │ ├── chartwizard.nl-BE.yml │ ├── chartwizard.nl-NL.yml │ ├── chartwizard.pl-PL.yml │ ├── chartwizard.pt-BR.yml │ ├── chartwizard.pt-PT.yml │ ├── chartwizard.ro-RO.yml │ ├── chartwizard.ru-RU.yml │ ├── chartwizard.sk-SK.yml │ ├── chartwizard.sv-SE.yml │ ├── chartwizard.tr-TR.yml │ ├── chartwizard.uk-UA.yml │ ├── chartwizard.zh-CN.yml │ ├── chartwizard.zh-HK.yml │ └── chartwizard.zh-TW.yml ├── chat │ ├── chat.ar.yml │ ├── chat.bg-BG.yml │ ├── chat.cs-CZ.yml │ ├── chat.da-DK.yml │ ├── chat.de-AT.yml │ ├── chat.de-CH.yml │ ├── chat.de-DE.yml │ ├── chat.de-LI.yml │ ├── chat.en-AU.yml │ ├── chat.en-CA.yml │ ├── chat.en-GB.yml │ ├── chat.en-US.yml │ ├── chat.es-AR.yml │ ├── chat.es-BO.yml │ ├── chat.es-CL.yml │ ├── chat.es-CO.yml │ ├── chat.es-CR.yml │ ├── chat.es-DO.yml │ ├── chat.es-EC.yml │ ├── chat.es-ES.yml │ ├── chat.es-GT.yml │ ├── chat.es-HN.yml │ ├── chat.es-MX.yml │ ├── chat.es-NI.yml │ ├── chat.es-PA.yml │ ├── chat.es-PE.yml │ ├── chat.es-PR.yml │ ├── chat.es-PY.yml │ ├── chat.es-US.yml │ ├── chat.es-UY.yml │ ├── chat.es-VE.yml │ ├── chat.fa-IR.yml │ ├── chat.fi-FI.yml │ ├── chat.fr-BE.yml │ ├── chat.fr-CA.yml │ ├── chat.fr-CD.yml │ ├── chat.fr-CH.yml │ ├── chat.fr-CI.yml │ ├── chat.fr-CM.yml │ ├── chat.fr-FR.yml │ ├── chat.fr-HT.yml │ ├── chat.fr-LU.yml │ ├── chat.fr-MA.yml │ ├── chat.fr-MC.yml │ ├── chat.fr-ML.yml │ ├── chat.fr-SN.yml │ ├── chat.he-IL.yml │ ├── chat.hy-AM.yml │ ├── chat.it-CH.yml │ ├── chat.it-IT.yml │ ├── chat.ja-JP.yml │ ├── chat.nb-NO.yml │ ├── chat.nl-BE.yml │ ├── chat.nl-NL.yml │ ├── chat.pl-PL.yml │ ├── chat.pt-BR.yml │ ├── chat.pt-PT.yml │ ├── chat.ro-RO.yml │ ├── chat.ru-RU.yml │ ├── chat.sk-SK.yml │ ├── chat.sv-SE.yml │ ├── chat.tr-TR.yml │ ├── chat.uk-UA.yml │ ├── chat.zh-CN.yml │ ├── chat.zh-HK.yml │ └── chat.zh-TW.yml ├── colorgradient │ ├── colorgradient.ar.yml │ ├── colorgradient.bg-BG.yml │ ├── colorgradient.cs-CZ.yml │ ├── colorgradient.da-DK.yml │ ├── colorgradient.de-AT.yml │ ├── colorgradient.de-CH.yml │ ├── colorgradient.de-DE.yml │ ├── colorgradient.de-LI.yml │ ├── colorgradient.en-AU.yml │ ├── colorgradient.en-CA.yml │ ├── colorgradient.en-GB.yml │ ├── colorgradient.en-US.yml │ ├── colorgradient.es-AR.yml │ ├── colorgradient.es-BO.yml │ ├── colorgradient.es-CL.yml │ ├── colorgradient.es-CO.yml │ ├── colorgradient.es-CR.yml │ ├── colorgradient.es-DO.yml │ ├── colorgradient.es-EC.yml │ ├── colorgradient.es-ES.yml │ ├── colorgradient.es-GT.yml │ ├── colorgradient.es-HN.yml │ ├── colorgradient.es-MX.yml │ ├── colorgradient.es-NI.yml │ ├── colorgradient.es-PA.yml │ ├── colorgradient.es-PE.yml │ ├── colorgradient.es-PR.yml │ ├── colorgradient.es-PY.yml │ ├── colorgradient.es-US.yml │ ├── colorgradient.es-UY.yml │ ├── colorgradient.es-VE.yml │ ├── colorgradient.fa-IR.yml │ ├── colorgradient.fi-FI.yml │ ├── colorgradient.fr-BE.yml │ ├── colorgradient.fr-CA.yml │ ├── colorgradient.fr-CD.yml │ ├── colorgradient.fr-CH.yml │ ├── colorgradient.fr-CI.yml │ ├── colorgradient.fr-CM.yml │ ├── colorgradient.fr-FR.yml │ ├── colorgradient.fr-HT.yml │ ├── colorgradient.fr-LU.yml │ ├── colorgradient.fr-MA.yml │ ├── colorgradient.fr-MC.yml │ ├── colorgradient.fr-ML.yml │ ├── colorgradient.fr-SN.yml │ ├── colorgradient.he-IL.yml │ ├── colorgradient.hy-AM.yml │ ├── colorgradient.it-CH.yml │ ├── colorgradient.it-IT.yml │ ├── colorgradient.ja-JP.yml │ ├── colorgradient.ka-GE.yml │ ├── colorgradient.nb-NO.yml │ ├── colorgradient.nl-BE.yml │ ├── colorgradient.nl-NL.yml │ ├── colorgradient.pl-PL.yml │ ├── colorgradient.pt-BR.yml │ ├── colorgradient.pt-PT.yml │ ├── colorgradient.ro-RO.yml │ ├── colorgradient.ru-RU.yml │ ├── colorgradient.sk-SK.yml │ ├── colorgradient.sv-SE.yml │ ├── colorgradient.tr-TR.yml │ ├── colorgradient.uk-UA.yml │ ├── colorgradient.zh-CN.yml │ ├── colorgradient.zh-HK.yml │ └── colorgradient.zh-TW.yml ├── colorpalette │ ├── colorpalette.ar.yml │ ├── colorpalette.bg-BG.yml │ ├── colorpalette.cs-CZ.yml │ ├── colorpalette.da-DK.yml │ ├── colorpalette.de-AT.yml │ ├── colorpalette.de-CH.yml │ ├── colorpalette.de-DE.yml │ ├── colorpalette.de-LI.yml │ ├── colorpalette.en-AU.yml │ ├── colorpalette.en-CA.yml │ ├── colorpalette.en-GB.yml │ ├── colorpalette.en-US.yml │ ├── colorpalette.es-AR.yml │ ├── colorpalette.es-BO.yml │ ├── colorpalette.es-CL.yml │ ├── colorpalette.es-CO.yml │ ├── colorpalette.es-CR.yml │ ├── colorpalette.es-DO.yml │ ├── colorpalette.es-EC.yml │ ├── colorpalette.es-ES.yml │ ├── colorpalette.es-GT.yml │ ├── colorpalette.es-HN.yml │ ├── colorpalette.es-MX.yml │ ├── colorpalette.es-NI.yml │ ├── colorpalette.es-PA.yml │ ├── colorpalette.es-PE.yml │ ├── colorpalette.es-PR.yml │ ├── colorpalette.es-PY.yml │ ├── colorpalette.es-US.yml │ ├── colorpalette.es-UY.yml │ ├── colorpalette.es-VE.yml │ ├── colorpalette.fa-IR.yml │ ├── colorpalette.fi-FI.yml │ ├── colorpalette.fr-BE.yml │ ├── colorpalette.fr-CA.yml │ ├── colorpalette.fr-CD.yml │ ├── colorpalette.fr-CH.yml │ ├── colorpalette.fr-CI.yml │ ├── colorpalette.fr-CM.yml │ ├── colorpalette.fr-FR.yml │ ├── colorpalette.fr-HT.yml │ ├── colorpalette.fr-LU.yml │ ├── colorpalette.fr-MA.yml │ ├── colorpalette.fr-MC.yml │ ├── colorpalette.fr-ML.yml │ ├── colorpalette.fr-SN.yml │ ├── colorpalette.he-IL.yml │ ├── colorpalette.hy-AM.yml │ ├── colorpalette.it-CH.yml │ ├── colorpalette.it-IT.yml │ ├── colorpalette.ja-JP.yml │ ├── colorpalette.ka-GE.yml │ ├── colorpalette.nb-NO.yml │ ├── colorpalette.nl-BE.yml │ ├── colorpalette.nl-NL.yml │ ├── colorpalette.pl-PL.yml │ ├── colorpalette.pt-BR.yml │ ├── colorpalette.pt-PT.yml │ ├── colorpalette.ro-RO.yml │ ├── colorpalette.ru-RU.yml │ ├── colorpalette.sk-SK.yml │ ├── colorpalette.sv-SE.yml │ ├── colorpalette.tr-TR.yml │ ├── colorpalette.uk-UA.yml │ ├── colorpalette.zh-CN.yml │ ├── colorpalette.zh-HK.yml │ └── colorpalette.zh-TW.yml ├── colorpicker │ ├── colorpicker.ar.yml │ ├── colorpicker.bg-BG.yml │ ├── colorpicker.cs-CZ.yml │ ├── colorpicker.da-DK.yml │ ├── colorpicker.de-AT.yml │ ├── colorpicker.de-CH.yml │ ├── colorpicker.de-DE.yml │ ├── colorpicker.de-LI.yml │ ├── colorpicker.en-AU.yml │ ├── colorpicker.en-CA.yml │ ├── colorpicker.en-GB.yml │ ├── colorpicker.en-US.yml │ ├── colorpicker.es-AR.yml │ ├── colorpicker.es-BO.yml │ ├── colorpicker.es-CL.yml │ ├── colorpicker.es-CO.yml │ ├── colorpicker.es-CR.yml │ ├── colorpicker.es-DO.yml │ ├── colorpicker.es-EC.yml │ ├── colorpicker.es-ES.yml │ ├── colorpicker.es-GT.yml │ ├── colorpicker.es-HN.yml │ ├── colorpicker.es-MX.yml │ ├── colorpicker.es-NI.yml │ ├── colorpicker.es-PA.yml │ ├── colorpicker.es-PE.yml │ ├── colorpicker.es-PR.yml │ ├── colorpicker.es-PY.yml │ ├── colorpicker.es-US.yml │ ├── colorpicker.es-UY.yml │ ├── colorpicker.es-VE.yml │ ├── colorpicker.fa-IR.yml │ ├── colorpicker.fi-FI.yml │ ├── colorpicker.fr-BE.yml │ ├── colorpicker.fr-CA.yml │ ├── colorpicker.fr-CD.yml │ ├── colorpicker.fr-CH.yml │ ├── colorpicker.fr-CI.yml │ ├── colorpicker.fr-CM.yml │ ├── colorpicker.fr-FR.yml │ ├── colorpicker.fr-HT.yml │ ├── colorpicker.fr-LU.yml │ ├── colorpicker.fr-MA.yml │ ├── colorpicker.fr-MC.yml │ ├── colorpicker.fr-ML.yml │ ├── colorpicker.fr-SN.yml │ ├── colorpicker.he-IL.yml │ ├── colorpicker.hy-AM.yml │ ├── colorpicker.it-CH.yml │ ├── colorpicker.it-IT.yml │ ├── colorpicker.ja-JP.yml │ ├── colorpicker.ka-GE.yml │ ├── colorpicker.nb-NO.yml │ ├── colorpicker.nl-BE.yml │ ├── colorpicker.nl-NL.yml │ ├── colorpicker.pl-PL.yml │ ├── colorpicker.pt-BR.yml │ ├── colorpicker.pt-PT.yml │ ├── colorpicker.ro-RO.yml │ ├── colorpicker.ru-RU.yml │ ├── colorpicker.sk-SK.yml │ ├── colorpicker.sv-SE.yml │ ├── colorpicker.tr-TR.yml │ ├── colorpicker.uk-UA.yml │ ├── colorpicker.zh-CN.yml │ ├── colorpicker.zh-HK.yml │ └── colorpicker.zh-TW.yml ├── dateinput │ ├── dateinput.ar.yml │ ├── dateinput.bg-BG.yml │ ├── dateinput.cs-CZ.yml │ ├── dateinput.da-DK.yml │ ├── dateinput.de-AT.yml │ ├── dateinput.de-CH.yml │ ├── dateinput.de-DE.yml │ ├── dateinput.de-LI.yml │ ├── dateinput.en-AU.yml │ ├── dateinput.en-CA.yml │ ├── dateinput.en-GB.yml │ ├── dateinput.en-US.yml │ ├── dateinput.es-AR.yml │ ├── dateinput.es-BO.yml │ ├── dateinput.es-CL.yml │ ├── dateinput.es-CO.yml │ ├── dateinput.es-CR.yml │ ├── dateinput.es-DO.yml │ ├── dateinput.es-EC.yml │ ├── dateinput.es-ES.yml │ ├── dateinput.es-GT.yml │ ├── dateinput.es-HN.yml │ ├── dateinput.es-MX.yml │ ├── dateinput.es-NI.yml │ ├── dateinput.es-PA.yml │ ├── dateinput.es-PE.yml │ ├── dateinput.es-PR.yml │ ├── dateinput.es-PY.yml │ ├── dateinput.es-US.yml │ ├── dateinput.es-UY.yml │ ├── dateinput.es-VE.yml │ ├── dateinput.fa-IR.yml │ ├── dateinput.fi-FI.yml │ ├── dateinput.fr-BE.yml │ ├── dateinput.fr-CA.yml │ ├── dateinput.fr-CD.yml │ ├── dateinput.fr-CH.yml │ ├── dateinput.fr-CI.yml │ ├── dateinput.fr-CM.yml │ ├── dateinput.fr-FR.yml │ ├── dateinput.fr-HT.yml │ ├── dateinput.fr-LU.yml │ ├── dateinput.fr-MA.yml │ ├── dateinput.fr-MC.yml │ ├── dateinput.fr-ML.yml │ ├── dateinput.fr-SN.yml │ ├── dateinput.he-IL.yml │ ├── dateinput.hy-AM.yml │ ├── dateinput.it-CH.yml │ ├── dateinput.it-IT.yml │ ├── dateinput.ja-JP.yml │ ├── dateinput.ka-GE.yml │ ├── dateinput.nb-NO.yml │ ├── dateinput.nl-BE.yml │ ├── dateinput.nl-NL.yml │ ├── dateinput.pl-PL.yml │ ├── dateinput.pt-BR.yml │ ├── dateinput.pt-PT.yml │ ├── dateinput.ro-RO.yml │ ├── dateinput.ru-RU.yml │ ├── dateinput.sk-SK.yml │ ├── dateinput.sv-SE.yml │ ├── dateinput.tr-TR.yml │ ├── dateinput.uk-UA.yml │ ├── dateinput.zh-CN.yml │ ├── dateinput.zh-HK.yml │ └── dateinput.zh-TW.yml ├── datepicker │ ├── datepicker.ar.yml │ ├── datepicker.bg-BG.yml │ ├── datepicker.cs-CZ.yml │ ├── datepicker.da-DK.yml │ ├── datepicker.de-AT.yml │ ├── datepicker.de-CH.yml │ ├── datepicker.de-DE.yml │ ├── datepicker.de-LI.yml │ ├── datepicker.en-AU.yml │ ├── datepicker.en-CA.yml │ ├── datepicker.en-GB.yml │ ├── datepicker.en-US.yml │ ├── datepicker.es-AR.yml │ ├── datepicker.es-BO.yml │ ├── datepicker.es-CL.yml │ ├── datepicker.es-CO.yml │ ├── datepicker.es-CR.yml │ ├── datepicker.es-DO.yml │ ├── datepicker.es-EC.yml │ ├── datepicker.es-ES.yml │ ├── datepicker.es-GT.yml │ ├── datepicker.es-HN.yml │ ├── datepicker.es-MX.yml │ ├── datepicker.es-NI.yml │ ├── datepicker.es-PA.yml │ ├── datepicker.es-PE.yml │ ├── datepicker.es-PR.yml │ ├── datepicker.es-PY.yml │ ├── datepicker.es-US.yml │ ├── datepicker.es-UY.yml │ ├── datepicker.es-VE.yml │ ├── datepicker.fa-IR.yml │ ├── datepicker.fi-FI.yml │ ├── datepicker.fr-BE.yml │ ├── datepicker.fr-CA.yml │ ├── datepicker.fr-CD.yml │ ├── datepicker.fr-CH.yml │ ├── datepicker.fr-CI.yml │ ├── datepicker.fr-CM.yml │ ├── datepicker.fr-FR.yml │ ├── datepicker.fr-HT.yml │ ├── datepicker.fr-LU.yml │ ├── datepicker.fr-MA.yml │ ├── datepicker.fr-MC.yml │ ├── datepicker.fr-ML.yml │ ├── datepicker.fr-SN.yml │ ├── datepicker.he-IL.yml │ ├── datepicker.hy-AM.yml │ ├── datepicker.it-CH.yml │ ├── datepicker.it-IT.yml │ ├── datepicker.ja-JP.yml │ ├── datepicker.ka-GE.yml │ ├── datepicker.nb-NO.yml │ ├── datepicker.nl-BE.yml │ ├── datepicker.nl-NL.yml │ ├── datepicker.pl-PL.yml │ ├── datepicker.pt-BR.yml │ ├── datepicker.pt-PT.yml │ ├── datepicker.ro-RO.yml │ ├── datepicker.ru-RU.yml │ ├── datepicker.sk-SK.yml │ ├── datepicker.sv-SE.yml │ ├── datepicker.tr-TR.yml │ ├── datepicker.uk-UA.yml │ ├── datepicker.zh-CN.yml │ ├── datepicker.zh-HK.yml │ └── datepicker.zh-TW.yml ├── daterangepopup │ ├── daterangepopup.ar.yml │ ├── daterangepopup.bg-BG.yml │ ├── daterangepopup.cs-CZ.yml │ ├── daterangepopup.da-DK.yml │ ├── daterangepopup.de-AT.yml │ ├── daterangepopup.de-CH.yml │ ├── daterangepopup.de-DE.yml │ ├── daterangepopup.de-LI.yml │ ├── daterangepopup.en-AU.yml │ ├── daterangepopup.en-CA.yml │ ├── daterangepopup.en-GB.yml │ ├── daterangepopup.en-US.yml │ ├── daterangepopup.es-AR.yml │ ├── daterangepopup.es-BO.yml │ ├── daterangepopup.es-CL.yml │ ├── daterangepopup.es-CO.yml │ ├── daterangepopup.es-CR.yml │ ├── daterangepopup.es-DO.yml │ ├── daterangepopup.es-EC.yml │ ├── daterangepopup.es-ES.yml │ ├── daterangepopup.es-GT.yml │ ├── daterangepopup.es-HN.yml │ ├── daterangepopup.es-MX.yml │ ├── daterangepopup.es-NI.yml │ ├── daterangepopup.es-PA.yml │ ├── daterangepopup.es-PE.yml │ ├── daterangepopup.es-PR.yml │ ├── daterangepopup.es-PY.yml │ ├── daterangepopup.es-US.yml │ ├── daterangepopup.es-UY.yml │ ├── daterangepopup.es-VE.yml │ ├── daterangepopup.fa-IR.yml │ ├── daterangepopup.fi-FI.yml │ ├── daterangepopup.fr-BE.yml │ ├── daterangepopup.fr-CA.yml │ ├── daterangepopup.fr-CD.yml │ ├── daterangepopup.fr-CH.yml │ ├── daterangepopup.fr-CI.yml │ ├── daterangepopup.fr-CM.yml │ ├── daterangepopup.fr-FR.yml │ ├── daterangepopup.fr-HT.yml │ ├── daterangepopup.fr-LU.yml │ ├── daterangepopup.fr-MA.yml │ ├── daterangepopup.fr-MC.yml │ ├── daterangepopup.fr-ML.yml │ ├── daterangepopup.fr-SN.yml │ ├── daterangepopup.he-IL.yml │ ├── daterangepopup.hy-AM.yml │ ├── daterangepopup.it-CH.yml │ ├── daterangepopup.it-IT.yml │ ├── daterangepopup.ja-JP.yml │ ├── daterangepopup.ka-GE.yml │ ├── daterangepopup.nb-NO.yml │ ├── daterangepopup.nl-BE.yml │ ├── daterangepopup.nl-NL.yml │ ├── daterangepopup.pl-PL.yml │ ├── daterangepopup.pt-BR.yml │ ├── daterangepopup.pt-PT.yml │ ├── daterangepopup.ro-RO.yml │ ├── daterangepopup.ru-RU.yml │ ├── daterangepopup.sk-SK.yml │ ├── daterangepopup.sv-SE.yml │ ├── daterangepopup.tr-TR.yml │ ├── daterangepopup.uk-UA.yml │ ├── daterangepopup.zh-CN.yml │ ├── daterangepopup.zh-HK.yml │ └── daterangepopup.zh-TW.yml ├── datetimepicker │ ├── datetimepicker.ar.yml │ ├── datetimepicker.bg-BG.yml │ ├── datetimepicker.cs-CZ.yml │ ├── datetimepicker.da-DK.yml │ ├── datetimepicker.de-AT.yml │ ├── datetimepicker.de-CH.yml │ ├── datetimepicker.de-DE.yml │ ├── datetimepicker.de-LI.yml │ ├── datetimepicker.en-AU.yml │ ├── datetimepicker.en-CA.yml │ ├── datetimepicker.en-GB.yml │ ├── datetimepicker.en-US.yml │ ├── datetimepicker.es-AR.yml │ ├── datetimepicker.es-BO.yml │ ├── datetimepicker.es-CL.yml │ ├── datetimepicker.es-CO.yml │ ├── datetimepicker.es-CR.yml │ ├── datetimepicker.es-DO.yml │ ├── datetimepicker.es-EC.yml │ ├── datetimepicker.es-ES.yml │ ├── datetimepicker.es-GT.yml │ ├── datetimepicker.es-HN.yml │ ├── datetimepicker.es-MX.yml │ ├── datetimepicker.es-NI.yml │ ├── datetimepicker.es-PA.yml │ ├── datetimepicker.es-PE.yml │ ├── datetimepicker.es-PR.yml │ ├── datetimepicker.es-PY.yml │ ├── datetimepicker.es-US.yml │ ├── datetimepicker.es-UY.yml │ ├── datetimepicker.es-VE.yml │ ├── datetimepicker.fa-IR.yml │ ├── datetimepicker.fi-FI.yml │ ├── datetimepicker.fr-BE.yml │ ├── datetimepicker.fr-CA.yml │ ├── datetimepicker.fr-CD.yml │ ├── datetimepicker.fr-CH.yml │ ├── datetimepicker.fr-CI.yml │ ├── datetimepicker.fr-CM.yml │ ├── datetimepicker.fr-FR.yml │ ├── datetimepicker.fr-HT.yml │ ├── datetimepicker.fr-LU.yml │ ├── datetimepicker.fr-MA.yml │ ├── datetimepicker.fr-MC.yml │ ├── datetimepicker.fr-ML.yml │ ├── datetimepicker.fr-SN.yml │ ├── datetimepicker.he-IL.yml │ ├── datetimepicker.hy-AM.yml │ ├── datetimepicker.it-CH.yml │ ├── datetimepicker.it-IT.yml │ ├── datetimepicker.ja-JP.yml │ ├── datetimepicker.ka-GE.yml │ ├── datetimepicker.nb-NO.yml │ ├── datetimepicker.nl-BE.yml │ ├── datetimepicker.nl-NL.yml │ ├── datetimepicker.pl-PL.yml │ ├── datetimepicker.pt-BR.yml │ ├── datetimepicker.pt-PT.yml │ ├── datetimepicker.ro-RO.yml │ ├── datetimepicker.ru-RU.yml │ ├── datetimepicker.sk-SK.yml │ ├── datetimepicker.sv-SE.yml │ ├── datetimepicker.tr-TR.yml │ ├── datetimepicker.uk-UA.yml │ ├── datetimepicker.zh-CN.yml │ ├── datetimepicker.zh-HK.yml │ └── datetimepicker.zh-TW.yml ├── dialog │ ├── dialog.ar.yml │ ├── dialog.bg-BG.yml │ ├── dialog.cs-CZ.yml │ ├── dialog.da-DK.yml │ ├── dialog.de-AT.yml │ ├── dialog.de-CH.yml │ ├── dialog.de-DE.yml │ ├── dialog.de-LI.yml │ ├── dialog.en-AU.yml │ ├── dialog.en-CA.yml │ ├── dialog.en-GB.yml │ ├── dialog.en-US.yml │ ├── dialog.es-AR.yml │ ├── dialog.es-BO.yml │ ├── dialog.es-CL.yml │ ├── dialog.es-CO.yml │ ├── dialog.es-CR.yml │ ├── dialog.es-DO.yml │ ├── dialog.es-EC.yml │ ├── dialog.es-ES.yml │ ├── dialog.es-GT.yml │ ├── dialog.es-HN.yml │ ├── dialog.es-MX.yml │ ├── dialog.es-NI.yml │ ├── dialog.es-PA.yml │ ├── dialog.es-PE.yml │ ├── dialog.es-PR.yml │ ├── dialog.es-PY.yml │ ├── dialog.es-US.yml │ ├── dialog.es-UY.yml │ ├── dialog.es-VE.yml │ ├── dialog.fa-IR.yml │ ├── dialog.fi-FI.yml │ ├── dialog.fr-BE.yml │ ├── dialog.fr-CA.yml │ ├── dialog.fr-CD.yml │ ├── dialog.fr-CH.yml │ ├── dialog.fr-CI.yml │ ├── dialog.fr-CM.yml │ ├── dialog.fr-FR.yml │ ├── dialog.fr-HT.yml │ ├── dialog.fr-LU.yml │ ├── dialog.fr-MA.yml │ ├── dialog.fr-MC.yml │ ├── dialog.fr-ML.yml │ ├── dialog.fr-SN.yml │ ├── dialog.he-IL.yml │ ├── dialog.hy-AM.yml │ ├── dialog.it-CH.yml │ ├── dialog.it-IT.yml │ ├── dialog.ja-JP.yml │ ├── dialog.ka-GE.yml │ ├── dialog.nb-NO.yml │ ├── dialog.nl-BE.yml │ ├── dialog.nl-NL.yml │ ├── dialog.pl-PL.yml │ ├── dialog.pt-BR.yml │ ├── dialog.pt-PT.yml │ ├── dialog.ro-RO.yml │ ├── dialog.ru-RU.yml │ ├── dialog.sk-SK.yml │ ├── dialog.sv-SE.yml │ ├── dialog.tr-TR.yml │ ├── dialog.uk-UA.yml │ ├── dialog.zh-CN.yml │ ├── dialog.zh-HK.yml │ └── dialog.zh-TW.yml ├── dropdowns │ ├── dropdowns.ar.yml │ ├── dropdowns.bg-BG.yml │ ├── dropdowns.cs-CZ.yml │ ├── dropdowns.da-DK.yml │ ├── dropdowns.de-AT.yml │ ├── dropdowns.de-CH.yml │ ├── dropdowns.de-DE.yml │ ├── dropdowns.de-LI.yml │ ├── dropdowns.en-AU.yml │ ├── dropdowns.en-CA.yml │ ├── dropdowns.en-GB.yml │ ├── dropdowns.en-US.yml │ ├── dropdowns.es-AR.yml │ ├── dropdowns.es-BO.yml │ ├── dropdowns.es-CL.yml │ ├── dropdowns.es-CO.yml │ ├── dropdowns.es-CR.yml │ ├── dropdowns.es-DO.yml │ ├── dropdowns.es-EC.yml │ ├── dropdowns.es-ES.yml │ ├── dropdowns.es-GT.yml │ ├── dropdowns.es-HN.yml │ ├── dropdowns.es-MX.yml │ ├── dropdowns.es-NI.yml │ ├── dropdowns.es-PA.yml │ ├── dropdowns.es-PE.yml │ ├── dropdowns.es-PR.yml │ ├── dropdowns.es-PY.yml │ ├── dropdowns.es-US.yml │ ├── dropdowns.es-UY.yml │ ├── dropdowns.es-VE.yml │ ├── dropdowns.fa-IR.yml │ ├── dropdowns.fi-FI.yml │ ├── dropdowns.fr-BE.yml │ ├── dropdowns.fr-CA.yml │ ├── dropdowns.fr-CD.yml │ ├── dropdowns.fr-CH.yml │ ├── dropdowns.fr-CI.yml │ ├── dropdowns.fr-CM.yml │ ├── dropdowns.fr-FR.yml │ ├── dropdowns.fr-HT.yml │ ├── dropdowns.fr-LU.yml │ ├── dropdowns.fr-MA.yml │ ├── dropdowns.fr-MC.yml │ ├── dropdowns.fr-ML.yml │ ├── dropdowns.fr-SN.yml │ ├── dropdowns.he-IL.yml │ ├── dropdowns.hy-AM.yml │ ├── dropdowns.it-CH.yml │ ├── dropdowns.it-IT.yml │ ├── dropdowns.ja-JP.yml │ ├── dropdowns.ka-GE.yml │ ├── dropdowns.nb-NO.yml │ ├── dropdowns.nl-BE.yml │ ├── dropdowns.nl-NL.yml │ ├── dropdowns.pl-PL.yml │ ├── dropdowns.pt-BR.yml │ ├── dropdowns.pt-PT.yml │ ├── dropdowns.ro-RO.yml │ ├── dropdowns.ru-RU.yml │ ├── dropdowns.sk-SK.yml │ ├── dropdowns.sv-SE.yml │ ├── dropdowns.tr-TR.yml │ ├── dropdowns.uk-UA.yml │ ├── dropdowns.zh-CN.yml │ ├── dropdowns.zh-HK.yml │ └── dropdowns.zh-TW.yml ├── editor │ ├── editor.ar.yml │ ├── editor.bg-BG.yml │ ├── editor.cs-CZ.yml │ ├── editor.da-DK.yml │ ├── editor.de-AT.yml │ ├── editor.de-CH.yml │ ├── editor.de-DE.yml │ ├── editor.de-LI.yml │ ├── editor.en-AU.yml │ ├── editor.en-CA.yml │ ├── editor.en-GB.yml │ ├── editor.en-US.yml │ ├── editor.es-AR.yml │ ├── editor.es-BO.yml │ ├── editor.es-CL.yml │ ├── editor.es-CO.yml │ ├── editor.es-CR.yml │ ├── editor.es-DO.yml │ ├── editor.es-EC.yml │ ├── editor.es-ES.yml │ ├── editor.es-GT.yml │ ├── editor.es-HN.yml │ ├── editor.es-MX.yml │ ├── editor.es-NI.yml │ ├── editor.es-PA.yml │ ├── editor.es-PE.yml │ ├── editor.es-PR.yml │ ├── editor.es-PY.yml │ ├── editor.es-US.yml │ ├── editor.es-UY.yml │ ├── editor.es-VE.yml │ ├── editor.fi-FI.yml │ ├── editor.fr-BE.yml │ ├── editor.fr-CA.yml │ ├── editor.fr-CD.yml │ ├── editor.fr-CH.yml │ ├── editor.fr-CI.yml │ ├── editor.fr-CM.yml │ ├── editor.fr-FR.yml │ ├── editor.fr-HT.yml │ ├── editor.fr-LU.yml │ ├── editor.fr-MA.yml │ ├── editor.fr-MC.yml │ ├── editor.fr-ML.yml │ ├── editor.fr-SN.yml │ ├── editor.he-IL.yml │ ├── editor.hy-AM.yml │ ├── editor.it-CH.yml │ ├── editor.it-IT.yml │ ├── editor.ja-JP.yml │ ├── editor.ka-GE.yml │ ├── editor.nb-NO.yml │ ├── editor.nl-BE.yml │ ├── editor.nl-NL.yml │ ├── editor.pl-PL.yml │ ├── editor.pt-BR.yml │ ├── editor.pt-PT.yml │ ├── editor.ro-RO.yml │ ├── editor.ru-RU.yml │ ├── editor.sk-SK.yml │ ├── editor.sv-SE.yml │ ├── editor.tr-TR.yml │ ├── editor.uk-UA.yml │ ├── editor.zh-CN.yml │ ├── editor.zh-HK.yml │ └── editor.zh-TW.yml ├── fileselect │ ├── fileselect.ar.yml │ ├── fileselect.bg-BG.yml │ ├── fileselect.cs-CZ.yml │ ├── fileselect.da-DK.yml │ ├── fileselect.de-AT.yml │ ├── fileselect.de-CH.yml │ ├── fileselect.de-DE.yml │ ├── fileselect.de-LI.yml │ ├── fileselect.en-AU.yml │ ├── fileselect.en-CA.yml │ ├── fileselect.en-GB.yml │ ├── fileselect.en-US.yml │ ├── fileselect.es-AR.yml │ ├── fileselect.es-BO.yml │ ├── fileselect.es-CL.yml │ ├── fileselect.es-CO.yml │ ├── fileselect.es-CR.yml │ ├── fileselect.es-DO.yml │ ├── fileselect.es-EC.yml │ ├── fileselect.es-ES.yml │ ├── fileselect.es-GT.yml │ ├── fileselect.es-HN.yml │ ├── fileselect.es-MX.yml │ ├── fileselect.es-NI.yml │ ├── fileselect.es-PA.yml │ ├── fileselect.es-PE.yml │ ├── fileselect.es-PR.yml │ ├── fileselect.es-PY.yml │ ├── fileselect.es-US.yml │ ├── fileselect.es-UY.yml │ ├── fileselect.es-VE.yml │ ├── fileselect.fa-IR.yml │ ├── fileselect.fi-FI.yml │ ├── fileselect.fr-BE.yml │ ├── fileselect.fr-CA.yml │ ├── fileselect.fr-CD.yml │ ├── fileselect.fr-CH.yml │ ├── fileselect.fr-CI.yml │ ├── fileselect.fr-CM.yml │ ├── fileselect.fr-FR.yml │ ├── fileselect.fr-HT.yml │ ├── fileselect.fr-LU.yml │ ├── fileselect.fr-MA.yml │ ├── fileselect.fr-MC.yml │ ├── fileselect.fr-ML.yml │ ├── fileselect.fr-SN.yml │ ├── fileselect.he-IL.yml │ ├── fileselect.hy-AM.yml │ ├── fileselect.it-CH.yml │ ├── fileselect.it-IT.yml │ ├── fileselect.ja-JP.yml │ ├── fileselect.ka-GE.yml │ ├── fileselect.nb-NO.yml │ ├── fileselect.nl-BE.yml │ ├── fileselect.nl-NL.yml │ ├── fileselect.pl-PL.yml │ ├── fileselect.pt-BR.yml │ ├── fileselect.pt-PT.yml │ ├── fileselect.ro-RO.yml │ ├── fileselect.ru-RU.yml │ ├── fileselect.sk-SK.yml │ ├── fileselect.sv-SE.yml │ ├── fileselect.tr-TR.yml │ ├── fileselect.uk-UA.yml │ ├── fileselect.zh-CN.yml │ ├── fileselect.zh-HK.yml │ └── fileselect.zh-TW.yml ├── filter │ ├── filter.ar.yml │ ├── filter.bg-BG.yml │ ├── filter.cs-CZ.yml │ ├── filter.da-DK.yml │ ├── filter.de-AT.yml │ ├── filter.de-CH.yml │ ├── filter.de-DE.yml │ ├── filter.de-LI.yml │ ├── filter.en-AU.yml │ ├── filter.en-CA.yml │ ├── filter.en-GB.yml │ ├── filter.en-US.yml │ ├── filter.es-AR.yml │ ├── filter.es-BO.yml │ ├── filter.es-CL.yml │ ├── filter.es-CO.yml │ ├── filter.es-CR.yml │ ├── filter.es-DO.yml │ ├── filter.es-EC.yml │ ├── filter.es-ES.yml │ ├── filter.es-GT.yml │ ├── filter.es-HN.yml │ ├── filter.es-MX.yml │ ├── filter.es-NI.yml │ ├── filter.es-PA.yml │ ├── filter.es-PE.yml │ ├── filter.es-PR.yml │ ├── filter.es-PY.yml │ ├── filter.es-US.yml │ ├── filter.es-UY.yml │ ├── filter.es-VE.yml │ ├── filter.fa-IR.yml │ ├── filter.fi-FI.yml │ ├── filter.fr-BE.yml │ ├── filter.fr-CA.yml │ ├── filter.fr-CD.yml │ ├── filter.fr-CH.yml │ ├── filter.fr-CI.yml │ ├── filter.fr-CM.yml │ ├── filter.fr-FR.yml │ ├── filter.fr-HT.yml │ ├── filter.fr-LU.yml │ ├── filter.fr-MA.yml │ ├── filter.fr-MC.yml │ ├── filter.fr-ML.yml │ ├── filter.fr-SN.yml │ ├── filter.he-IL.yml │ ├── filter.hy-AM.yml │ ├── filter.it-CH.yml │ ├── filter.it-IT.yml │ ├── filter.ja-JP.yml │ ├── filter.ka-GE.yml │ ├── filter.nb-NO.yml │ ├── filter.nl-BE.yml │ ├── filter.nl-NL.yml │ ├── filter.pl-PL.yml │ ├── filter.pt-BR.yml │ ├── filter.pt-PT.yml │ ├── filter.ro-RO.yml │ ├── filter.ru-RU.yml │ ├── filter.sk-SK.yml │ ├── filter.sv-SE.yml │ ├── filter.tr-TR.yml │ ├── filter.uk-UA.yml │ ├── filter.zh-CN.yml │ ├── filter.zh-HK.yml │ └── filter.zh-TW.yml ├── flatcolorpicker │ ├── flatcolorpicker.ar.yml │ ├── flatcolorpicker.bg-BG.yml │ ├── flatcolorpicker.cs-CZ.yml │ ├── flatcolorpicker.da-DK.yml │ ├── flatcolorpicker.de-AT.yml │ ├── flatcolorpicker.de-CH.yml │ ├── flatcolorpicker.de-DE.yml │ ├── flatcolorpicker.de-LI.yml │ ├── flatcolorpicker.en-AU.yml │ ├── flatcolorpicker.en-CA.yml │ ├── flatcolorpicker.en-GB.yml │ ├── flatcolorpicker.en-US.yml │ ├── flatcolorpicker.es-AR.yml │ ├── flatcolorpicker.es-BO.yml │ ├── flatcolorpicker.es-CL.yml │ ├── flatcolorpicker.es-CO.yml │ ├── flatcolorpicker.es-CR.yml │ ├── flatcolorpicker.es-DO.yml │ ├── flatcolorpicker.es-EC.yml │ ├── flatcolorpicker.es-ES.yml │ ├── flatcolorpicker.es-GT.yml │ ├── flatcolorpicker.es-HN.yml │ ├── flatcolorpicker.es-MX.yml │ ├── flatcolorpicker.es-NI.yml │ ├── flatcolorpicker.es-PA.yml │ ├── flatcolorpicker.es-PE.yml │ ├── flatcolorpicker.es-PR.yml │ ├── flatcolorpicker.es-PY.yml │ ├── flatcolorpicker.es-US.yml │ ├── flatcolorpicker.es-UY.yml │ ├── flatcolorpicker.es-VE.yml │ ├── flatcolorpicker.fa-IR.yml │ ├── flatcolorpicker.fi-FI.yml │ ├── flatcolorpicker.fr-BE.yml │ ├── flatcolorpicker.fr-CA.yml │ ├── flatcolorpicker.fr-CD.yml │ ├── flatcolorpicker.fr-CH.yml │ ├── flatcolorpicker.fr-CI.yml │ ├── flatcolorpicker.fr-CM.yml │ ├── flatcolorpicker.fr-FR.yml │ ├── flatcolorpicker.fr-HT.yml │ ├── flatcolorpicker.fr-LU.yml │ ├── flatcolorpicker.fr-MA.yml │ ├── flatcolorpicker.fr-MC.yml │ ├── flatcolorpicker.fr-ML.yml │ ├── flatcolorpicker.fr-SN.yml │ ├── flatcolorpicker.he-IL.yml │ ├── flatcolorpicker.hy-AM.yml │ ├── flatcolorpicker.it-CH.yml │ ├── flatcolorpicker.it-IT.yml │ ├── flatcolorpicker.ja-JP.yml │ ├── flatcolorpicker.ka-GE.yml │ ├── flatcolorpicker.nb-NO.yml │ ├── flatcolorpicker.nl-BE.yml │ ├── flatcolorpicker.nl-NL.yml │ ├── flatcolorpicker.pl-PL.yml │ ├── flatcolorpicker.pt-BR.yml │ ├── flatcolorpicker.pt-PT.yml │ ├── flatcolorpicker.ro-RO.yml │ ├── flatcolorpicker.ru-RU.yml │ ├── flatcolorpicker.sk-SK.yml │ ├── flatcolorpicker.sv-SE.yml │ ├── flatcolorpicker.tr-TR.yml │ ├── flatcolorpicker.uk-UA.yml │ ├── flatcolorpicker.zh-CN.yml │ ├── flatcolorpicker.zh-HK.yml │ └── flatcolorpicker.zh-TW.yml ├── gantt │ ├── gantt.ar.yml │ ├── gantt.bg-BG.yml │ ├── gantt.cs-CZ.yml │ ├── gantt.da-DK.yml │ ├── gantt.de-AT.yml │ ├── gantt.de-CH.yml │ ├── gantt.de-DE.yml │ ├── gantt.de-LI.yml │ ├── gantt.en-AU.yml │ ├── gantt.en-CA.yml │ ├── gantt.en-GB.yml │ ├── gantt.en-US.yml │ ├── gantt.es-AR.yml │ ├── gantt.es-BO.yml │ ├── gantt.es-CL.yml │ ├── gantt.es-CO.yml │ ├── gantt.es-CR.yml │ ├── gantt.es-DO.yml │ ├── gantt.es-EC.yml │ ├── gantt.es-ES.yml │ ├── gantt.es-GT.yml │ ├── gantt.es-HN.yml │ ├── gantt.es-MX.yml │ ├── gantt.es-NI.yml │ ├── gantt.es-PA.yml │ ├── gantt.es-PE.yml │ ├── gantt.es-PR.yml │ ├── gantt.es-PY.yml │ ├── gantt.es-US.yml │ ├── gantt.es-UY.yml │ ├── gantt.es-VE.yml │ ├── gantt.fa-IR.yml │ ├── gantt.fi-FI.yml │ ├── gantt.fr-BE.yml │ ├── gantt.fr-CA.yml │ ├── gantt.fr-CD.yml │ ├── gantt.fr-CH.yml │ ├── gantt.fr-CI.yml │ ├── gantt.fr-CM.yml │ ├── gantt.fr-FR.yml │ ├── gantt.fr-HT.yml │ ├── gantt.fr-LU.yml │ ├── gantt.fr-MA.yml │ ├── gantt.fr-MC.yml │ ├── gantt.fr-ML.yml │ ├── gantt.fr-SN.yml │ ├── gantt.he-IL.yml │ ├── gantt.hy-AM.yml │ ├── gantt.it-CH.yml │ ├── gantt.it-IT.yml │ ├── gantt.ja-JP.yml │ ├── gantt.ka-GE.yml │ ├── gantt.nb-NO.yml │ ├── gantt.nl-BE.yml │ ├── gantt.nl-NL.yml │ ├── gantt.pl-PL.yml │ ├── gantt.pt-BR.yml │ ├── gantt.pt-PT.yml │ ├── gantt.ro-RO.yml │ ├── gantt.ru-RU.yml │ ├── gantt.sk-SK.yml │ ├── gantt.sv-SE.yml │ ├── gantt.tr-TR.yml │ ├── gantt.uk-UA.yml │ ├── gantt.zh-CN.yml │ ├── gantt.zh-HK.yml │ └── gantt.zh-TW.yml ├── grid │ ├── grid.ar.yml │ ├── grid.bg-BG.yml │ ├── grid.cs-CZ.yml │ ├── grid.da-DK.yml │ ├── grid.de-AT.yml │ ├── grid.de-CH.yml │ ├── grid.de-DE.yml │ ├── grid.de-LI.yml │ ├── grid.en-AU.yml │ ├── grid.en-CA.yml │ ├── grid.en-GB.yml │ ├── grid.en-US.yml │ ├── grid.es-AR.yml │ ├── grid.es-BO.yml │ ├── grid.es-CL.yml │ ├── grid.es-CO.yml │ ├── grid.es-CR.yml │ ├── grid.es-DO.yml │ ├── grid.es-EC.yml │ ├── grid.es-ES.yml │ ├── grid.es-GT.yml │ ├── grid.es-HN.yml │ ├── grid.es-MX.yml │ ├── grid.es-NI.yml │ ├── grid.es-PA.yml │ ├── grid.es-PE.yml │ ├── grid.es-PR.yml │ ├── grid.es-PY.yml │ ├── grid.es-US.yml │ ├── grid.es-UY.yml │ ├── grid.es-VE.yml │ ├── grid.fa-IR.yml │ ├── grid.fi-FI.yml │ ├── grid.fr-BE.yml │ ├── grid.fr-CA.yml │ ├── grid.fr-CD.yml │ ├── grid.fr-CH.yml │ ├── grid.fr-CI.yml │ ├── grid.fr-CM.yml │ ├── grid.fr-FR.yml │ ├── grid.fr-HT.yml │ ├── grid.fr-LU.yml │ ├── grid.fr-MA.yml │ ├── grid.fr-MC.yml │ ├── grid.fr-ML.yml │ ├── grid.fr-SN.yml │ ├── grid.he-IL.yml │ ├── grid.hy-AM.yml │ ├── grid.it-CH.yml │ ├── grid.it-IT.yml │ ├── grid.ja-JP.yml │ ├── grid.ka-GE.yml │ ├── grid.nb-NO.yml │ ├── grid.nl-BE.yml │ ├── grid.nl-NL.yml │ ├── grid.pl-PL.yml │ ├── grid.pt-BR.yml │ ├── grid.pt-PT.yml │ ├── grid.ro-RO.yml │ ├── grid.ru-RU.yml │ ├── grid.sk-SK.yml │ ├── grid.sv-SE.yml │ ├── grid.tr-TR.yml │ ├── grid.uk-UA.yml │ ├── grid.zh-CN.yml │ ├── grid.zh-HK.yml │ └── grid.zh-TW.yml ├── label │ ├── label.ar.yml │ ├── label.bg-BG.yml │ ├── label.cs-CZ.yml │ ├── label.da-DK.yml │ ├── label.de-AT.yml │ ├── label.de-CH.yml │ ├── label.de-DE.yml │ ├── label.de-LI.yml │ ├── label.en-AU.yml │ ├── label.en-CA.yml │ ├── label.en-GB.yml │ ├── label.en-US.yml │ ├── label.es-AR.yml │ ├── label.es-BO.yml │ ├── label.es-CL.yml │ ├── label.es-CO.yml │ ├── label.es-CR.yml │ ├── label.es-DO.yml │ ├── label.es-EC.yml │ ├── label.es-ES.yml │ ├── label.es-GT.yml │ ├── label.es-HN.yml │ ├── label.es-MX.yml │ ├── label.es-NI.yml │ ├── label.es-PA.yml │ ├── label.es-PE.yml │ ├── label.es-PR.yml │ ├── label.es-PY.yml │ ├── label.es-US.yml │ ├── label.es-UY.yml │ ├── label.es-VE.yml │ ├── label.fa-IR.yml │ ├── label.fi-FI.yml │ ├── label.fr-BE.yml │ ├── label.fr-CA.yml │ ├── label.fr-CD.yml │ ├── label.fr-CH.yml │ ├── label.fr-CI.yml │ ├── label.fr-CM.yml │ ├── label.fr-FR.yml │ ├── label.fr-HT.yml │ ├── label.fr-LU.yml │ ├── label.fr-MA.yml │ ├── label.fr-MC.yml │ ├── label.fr-ML.yml │ ├── label.fr-SN.yml │ ├── label.he-IL.yml │ ├── label.hy-AM.yml │ ├── label.it-CH.yml │ ├── label.it-IT.yml │ ├── label.ja-JP.yml │ ├── label.ka-GE.yml │ ├── label.nb-NO.yml │ ├── label.nl-BE.yml │ ├── label.nl-NL.yml │ ├── label.pl-PL.yml │ ├── label.pt-BR.yml │ ├── label.pt-PT.yml │ ├── label.ro-RO.yml │ ├── label.ru-RU.yml │ ├── label.sk-SK.yml │ ├── label.sv-SE.yml │ ├── label.tr-TR.yml │ ├── label.uk-UA.yml │ ├── label.zh-CN.yml │ ├── label.zh-HK.yml │ └── label.zh-TW.yml ├── listbox │ ├── listbox.ar.yml │ ├── listbox.bg-BG.yml │ ├── listbox.cs-CZ.yml │ ├── listbox.da-DK.yml │ ├── listbox.de-AT.yml │ ├── listbox.de-CH.yml │ ├── listbox.de-DE.yml │ ├── listbox.de-LI.yml │ ├── listbox.en-AU.yml │ ├── listbox.en-CA.yml │ ├── listbox.en-GB.yml │ ├── listbox.en-US.yml │ ├── listbox.es-AR.yml │ ├── listbox.es-BO.yml │ ├── listbox.es-CL.yml │ ├── listbox.es-CO.yml │ ├── listbox.es-CR.yml │ ├── listbox.es-DO.yml │ ├── listbox.es-EC.yml │ ├── listbox.es-ES.yml │ ├── listbox.es-GT.yml │ ├── listbox.es-HN.yml │ ├── listbox.es-MX.yml │ ├── listbox.es-NI.yml │ ├── listbox.es-PA.yml │ ├── listbox.es-PE.yml │ ├── listbox.es-PR.yml │ ├── listbox.es-PY.yml │ ├── listbox.es-US.yml │ ├── listbox.es-UY.yml │ ├── listbox.es-VE.yml │ ├── listbox.fa-IR.yml │ ├── listbox.fi-FI.yml │ ├── listbox.fr-BE.yml │ ├── listbox.fr-CA.yml │ ├── listbox.fr-CD.yml │ ├── listbox.fr-CH.yml │ ├── listbox.fr-CI.yml │ ├── listbox.fr-CM.yml │ ├── listbox.fr-FR.yml │ ├── listbox.fr-HT.yml │ ├── listbox.fr-LU.yml │ ├── listbox.fr-MA.yml │ ├── listbox.fr-MC.yml │ ├── listbox.fr-ML.yml │ ├── listbox.fr-SN.yml │ ├── listbox.he-IL.yml │ ├── listbox.hy-AM.yml │ ├── listbox.it-CH.yml │ ├── listbox.it-IT.yml │ ├── listbox.ja-JP.yml │ ├── listbox.ka-GE.yml │ ├── listbox.nb-NO.yml │ ├── listbox.nl-BE.yml │ ├── listbox.nl-NL.yml │ ├── listbox.pl-PL.yml │ ├── listbox.pt-BR.yml │ ├── listbox.pt-PT.yml │ ├── listbox.ro-RO.yml │ ├── listbox.ru-RU.yml │ ├── listbox.sk-SK.yml │ ├── listbox.sv-SE.yml │ ├── listbox.tr-TR.yml │ ├── listbox.uk-UA.yml │ ├── listbox.zh-CN.yml │ ├── listbox.zh-HK.yml │ └── listbox.zh-TW.yml ├── notification │ ├── notification.ar.yml │ ├── notification.bg-BG.yml │ ├── notification.cs-CZ.yml │ ├── notification.da-DK.yml │ ├── notification.de-AT.yml │ ├── notification.de-CH.yml │ ├── notification.de-DE.yml │ ├── notification.de-LI.yml │ ├── notification.en-AU.yml │ ├── notification.en-CA.yml │ ├── notification.en-GB.yml │ ├── notification.en-US.yml │ ├── notification.es-AR.yml │ ├── notification.es-BO.yml │ ├── notification.es-CL.yml │ ├── notification.es-CO.yml │ ├── notification.es-CR.yml │ ├── notification.es-DO.yml │ ├── notification.es-EC.yml │ ├── notification.es-ES.yml │ ├── notification.es-GT.yml │ ├── notification.es-HN.yml │ ├── notification.es-MX.yml │ ├── notification.es-NI.yml │ ├── notification.es-PA.yml │ ├── notification.es-PE.yml │ ├── notification.es-PR.yml │ ├── notification.es-PY.yml │ ├── notification.es-US.yml │ ├── notification.es-UY.yml │ ├── notification.es-VE.yml │ ├── notification.fa-IR.yml │ ├── notification.fi-FI.yml │ ├── notification.fr-BE.yml │ ├── notification.fr-CA.yml │ ├── notification.fr-CD.yml │ ├── notification.fr-CH.yml │ ├── notification.fr-CI.yml │ ├── notification.fr-CM.yml │ ├── notification.fr-FR.yml │ ├── notification.fr-HT.yml │ ├── notification.fr-LU.yml │ ├── notification.fr-MA.yml │ ├── notification.fr-MC.yml │ ├── notification.fr-ML.yml │ ├── notification.fr-SN.yml │ ├── notification.he-IL.yml │ ├── notification.hy-AM.yml │ ├── notification.it-CH.yml │ ├── notification.it-IT.yml │ ├── notification.ja-JP.yml │ ├── notification.ka-GE.yml │ ├── notification.nb-NO.yml │ ├── notification.nl-BE.yml │ ├── notification.nl-NL.yml │ ├── notification.pl-PL.yml │ ├── notification.pt-BR.yml │ ├── notification.pt-PT.yml │ ├── notification.ro-RO.yml │ ├── notification.ru-RU.yml │ ├── notification.sk-SK.yml │ ├── notification.sv-SE.yml │ ├── notification.tr-TR.yml │ ├── notification.uk-UA.yml │ ├── notification.zh-CN.yml │ ├── notification.zh-HK.yml │ └── notification.zh-TW.yml ├── numerictextbox │ ├── numerictextbox.ar.yml │ ├── numerictextbox.bg-BG.yml │ ├── numerictextbox.cs-CZ.yml │ ├── numerictextbox.da-DK.yml │ ├── numerictextbox.de-AT.yml │ ├── numerictextbox.de-CH.yml │ ├── numerictextbox.de-DE.yml │ ├── numerictextbox.de-LI.yml │ ├── numerictextbox.en-AU.yml │ ├── numerictextbox.en-CA.yml │ ├── numerictextbox.en-GB.yml │ ├── numerictextbox.en-US.yml │ ├── numerictextbox.es-AR.yml │ ├── numerictextbox.es-BO.yml │ ├── numerictextbox.es-CL.yml │ ├── numerictextbox.es-CO.yml │ ├── numerictextbox.es-CR.yml │ ├── numerictextbox.es-DO.yml │ ├── numerictextbox.es-EC.yml │ ├── numerictextbox.es-ES.yml │ ├── numerictextbox.es-GT.yml │ ├── numerictextbox.es-HN.yml │ ├── numerictextbox.es-MX.yml │ ├── numerictextbox.es-NI.yml │ ├── numerictextbox.es-PA.yml │ ├── numerictextbox.es-PE.yml │ ├── numerictextbox.es-PR.yml │ ├── numerictextbox.es-PY.yml │ ├── numerictextbox.es-US.yml │ ├── numerictextbox.es-UY.yml │ ├── numerictextbox.es-VE.yml │ ├── numerictextbox.fa-IR.yml │ ├── numerictextbox.fi-FI.yml │ ├── numerictextbox.fr-BE.yml │ ├── numerictextbox.fr-CA.yml │ ├── numerictextbox.fr-CD.yml │ ├── numerictextbox.fr-CH.yml │ ├── numerictextbox.fr-CI.yml │ ├── numerictextbox.fr-CM.yml │ ├── numerictextbox.fr-FR.yml │ ├── numerictextbox.fr-HT.yml │ ├── numerictextbox.fr-LU.yml │ ├── numerictextbox.fr-MA.yml │ ├── numerictextbox.fr-MC.yml │ ├── numerictextbox.fr-ML.yml │ ├── numerictextbox.fr-SN.yml │ ├── numerictextbox.he-IL.yml │ ├── numerictextbox.hy-AM.yml │ ├── numerictextbox.it-CH.yml │ ├── numerictextbox.it-IT.yml │ ├── numerictextbox.ja-JP.yml │ ├── numerictextbox.ka-GE.yml │ ├── numerictextbox.nb-NO.yml │ ├── numerictextbox.nl-BE.yml │ ├── numerictextbox.nl-NL.yml │ ├── numerictextbox.pl-PL.yml │ ├── numerictextbox.pt-BR.yml │ ├── numerictextbox.pt-PT.yml │ ├── numerictextbox.ro-RO.yml │ ├── numerictextbox.ru-RU.yml │ ├── numerictextbox.sk-SK.yml │ ├── numerictextbox.sv-SE.yml │ ├── numerictextbox.tr-TR.yml │ ├── numerictextbox.uk-UA.yml │ ├── numerictextbox.zh-CN.yml │ ├── numerictextbox.zh-HK.yml │ └── numerictextbox.zh-TW.yml ├── otpinput │ ├── otpinput.ar.yml │ ├── otpinput.bg-BG.yml │ ├── otpinput.cs-CZ.yml │ ├── otpinput.da-DK.yml │ ├── otpinput.de-AT.yml │ ├── otpinput.de-CH.yml │ ├── otpinput.de-DE.yml │ ├── otpinput.de-LI.yml │ ├── otpinput.en-AU.yml │ ├── otpinput.en-CA.yml │ ├── otpinput.en-GB.yml │ ├── otpinput.en-US.yml │ ├── otpinput.es-AR.yml │ ├── otpinput.es-BO.yml │ ├── otpinput.es-CL.yml │ ├── otpinput.es-CO.yml │ ├── otpinput.es-CR.yml │ ├── otpinput.es-DO.yml │ ├── otpinput.es-EC.yml │ ├── otpinput.es-ES.yml │ ├── otpinput.es-GT.yml │ ├── otpinput.es-HN.yml │ ├── otpinput.es-MX.yml │ ├── otpinput.es-NI.yml │ ├── otpinput.es-PA.yml │ ├── otpinput.es-PE.yml │ ├── otpinput.es-PR.yml │ ├── otpinput.es-PY.yml │ ├── otpinput.es-US.yml │ ├── otpinput.es-UY.yml │ ├── otpinput.es-VE.yml │ ├── otpinput.fa-IR.yml │ ├── otpinput.fi-FI.yml │ ├── otpinput.fr-BE.yml │ ├── otpinput.fr-CA.yml │ ├── otpinput.fr-CD.yml │ ├── otpinput.fr-CH.yml │ ├── otpinput.fr-CI.yml │ ├── otpinput.fr-CM.yml │ ├── otpinput.fr-FR.yml │ ├── otpinput.fr-HT.yml │ ├── otpinput.fr-LU.yml │ ├── otpinput.fr-MA.yml │ ├── otpinput.fr-MC.yml │ ├── otpinput.fr-ML.yml │ ├── otpinput.fr-SN.yml │ ├── otpinput.he-IL.yml │ ├── otpinput.hy-AM.yml │ ├── otpinput.it-CH.yml │ ├── otpinput.it-IT.yml │ ├── otpinput.ja-JP.yml │ ├── otpinput.ka-GE.yml │ ├── otpinput.nb-NO.yml │ ├── otpinput.nl-BE.yml │ ├── otpinput.nl-NL.yml │ ├── otpinput.pl-PL.yml │ ├── otpinput.pt-BR.yml │ ├── otpinput.pt-PT.yml │ ├── otpinput.ro-RO.yml │ ├── otpinput.ru-RU.yml │ ├── otpinput.sk-SK.yml │ ├── otpinput.sv-SE.yml │ ├── otpinput.tr-TR.yml │ ├── otpinput.uk-UA.yml │ ├── otpinput.zh-CN.yml │ ├── otpinput.zh-HK.yml │ └── otpinput.zh-TW.yml ├── pager │ ├── pager.ar.yml │ ├── pager.bg-BG.yml │ ├── pager.cs-CZ.yml │ ├── pager.da-DK.yml │ ├── pager.de-AT.yml │ ├── pager.de-CH.yml │ ├── pager.de-DE.yml │ ├── pager.de-LI.yml │ ├── pager.en-AU.yml │ ├── pager.en-CA.yml │ ├── pager.en-GB.yml │ ├── pager.en-US.yml │ ├── pager.es-AR.yml │ ├── pager.es-BO.yml │ ├── pager.es-CL.yml │ ├── pager.es-CO.yml │ ├── pager.es-CR.yml │ ├── pager.es-DO.yml │ ├── pager.es-EC.yml │ ├── pager.es-ES.yml │ ├── pager.es-GT.yml │ ├── pager.es-HN.yml │ ├── pager.es-MX.yml │ ├── pager.es-NI.yml │ ├── pager.es-PA.yml │ ├── pager.es-PE.yml │ ├── pager.es-PR.yml │ ├── pager.es-PY.yml │ ├── pager.es-US.yml │ ├── pager.es-UY.yml │ ├── pager.es-VE.yml │ ├── pager.fa-IR.yml │ ├── pager.fi-FI.yml │ ├── pager.fr-BE.yml │ ├── pager.fr-CA.yml │ ├── pager.fr-CD.yml │ ├── pager.fr-CH.yml │ ├── pager.fr-CI.yml │ ├── pager.fr-CM.yml │ ├── pager.fr-FR.yml │ ├── pager.fr-HT.yml │ ├── pager.fr-LU.yml │ ├── pager.fr-MA.yml │ ├── pager.fr-MC.yml │ ├── pager.fr-ML.yml │ ├── pager.fr-SN.yml │ ├── pager.he-IL.yml │ ├── pager.hy-AM.yml │ ├── pager.it-CH.yml │ ├── pager.it-IT.yml │ ├── pager.ja-JP.yml │ ├── pager.ka-GE.yml │ ├── pager.nb-NO.yml │ ├── pager.nl-BE.yml │ ├── pager.nl-NL.yml │ ├── pager.pl-PL.yml │ ├── pager.pt-BR.yml │ ├── pager.pt-PT.yml │ ├── pager.ro-RO.yml │ ├── pager.ru-RU.yml │ ├── pager.sk-SK.yml │ ├── pager.sv-SE.yml │ ├── pager.tr-TR.yml │ ├── pager.uk-UA.yml │ ├── pager.zh-CN.yml │ ├── pager.zh-HK.yml │ └── pager.zh-TW.yml ├── pdfviewer │ ├── pdfviewer.ar.yml │ ├── pdfviewer.bg-BG.yml │ ├── pdfviewer.cs-CZ.yml │ ├── pdfviewer.da-DK.yml │ ├── pdfviewer.de-AT.yml │ ├── pdfviewer.de-CH.yml │ ├── pdfviewer.de-DE.yml │ ├── pdfviewer.de-LI.yml │ ├── pdfviewer.en-AU.yml │ ├── pdfviewer.en-CA.yml │ ├── pdfviewer.en-GB.yml │ ├── pdfviewer.en-US.yml │ ├── pdfviewer.es-AR.yml │ ├── pdfviewer.es-BO.yml │ ├── pdfviewer.es-CL.yml │ ├── pdfviewer.es-CO.yml │ ├── pdfviewer.es-CR.yml │ ├── pdfviewer.es-DO.yml │ ├── pdfviewer.es-EC.yml │ ├── pdfviewer.es-ES.yml │ ├── pdfviewer.es-GT.yml │ ├── pdfviewer.es-HN.yml │ ├── pdfviewer.es-MX.yml │ ├── pdfviewer.es-NI.yml │ ├── pdfviewer.es-PA.yml │ ├── pdfviewer.es-PE.yml │ ├── pdfviewer.es-PR.yml │ ├── pdfviewer.es-PY.yml │ ├── pdfviewer.es-US.yml │ ├── pdfviewer.es-UY.yml │ ├── pdfviewer.es-VE.yml │ ├── pdfviewer.fa-IR.yml │ ├── pdfviewer.fi-FI.yml │ ├── pdfviewer.fr-BE.yml │ ├── pdfviewer.fr-CA.yml │ ├── pdfviewer.fr-CD.yml │ ├── pdfviewer.fr-CH.yml │ ├── pdfviewer.fr-CI.yml │ ├── pdfviewer.fr-CM.yml │ ├── pdfviewer.fr-FR.yml │ ├── pdfviewer.fr-HT.yml │ ├── pdfviewer.fr-LU.yml │ ├── pdfviewer.fr-MA.yml │ ├── pdfviewer.fr-MC.yml │ ├── pdfviewer.fr-ML.yml │ ├── pdfviewer.fr-SN.yml │ ├── pdfviewer.he-IL.yml │ ├── pdfviewer.hy-AM.yml │ ├── pdfviewer.it-CH.yml │ ├── pdfviewer.it-IT.yml │ ├── pdfviewer.ja-JP.yml │ ├── pdfviewer.ka-GE.yml │ ├── pdfviewer.nb-NO.yml │ ├── pdfviewer.nl-BE.yml │ ├── pdfviewer.nl-NL.yml │ ├── pdfviewer.pl-PL.yml │ ├── pdfviewer.pt-BR.yml │ ├── pdfviewer.pt-PT.yml │ ├── pdfviewer.ro-RO.yml │ ├── pdfviewer.ru-RU.yml │ ├── pdfviewer.sk-SK.yml │ ├── pdfviewer.sv-SE.yml │ ├── pdfviewer.tr-TR.yml │ ├── pdfviewer.uk-UA.yml │ ├── pdfviewer.zh-CN.yml │ ├── pdfviewer.zh-HK.yml │ └── pdfviewer.zh-TW.yml ├── pivotgrid │ ├── pivotgrid.ar.yml │ ├── pivotgrid.bg-BG.yml │ ├── pivotgrid.cs-CZ.yml │ ├── pivotgrid.da-DK.yml │ ├── pivotgrid.de-AT.yml │ ├── pivotgrid.de-CH.yml │ ├── pivotgrid.de-DE.yml │ ├── pivotgrid.de-LI.yml │ ├── pivotgrid.en-AU.yml │ ├── pivotgrid.en-CA.yml │ ├── pivotgrid.en-GB.yml │ ├── pivotgrid.en-US.yml │ ├── pivotgrid.es-AR.yml │ ├── pivotgrid.es-BO.yml │ ├── pivotgrid.es-CL.yml │ ├── pivotgrid.es-CO.yml │ ├── pivotgrid.es-CR.yml │ ├── pivotgrid.es-DO.yml │ ├── pivotgrid.es-EC.yml │ ├── pivotgrid.es-ES.yml │ ├── pivotgrid.es-GT.yml │ ├── pivotgrid.es-HN.yml │ ├── pivotgrid.es-MX.yml │ ├── pivotgrid.es-NI.yml │ ├── pivotgrid.es-PA.yml │ ├── pivotgrid.es-PE.yml │ ├── pivotgrid.es-PR.yml │ ├── pivotgrid.es-PY.yml │ ├── pivotgrid.es-US.yml │ ├── pivotgrid.es-UY.yml │ ├── pivotgrid.es-VE.yml │ ├── pivotgrid.fa-IR.yml │ ├── pivotgrid.fi-FI.yml │ ├── pivotgrid.fr-BE.yml │ ├── pivotgrid.fr-CA.yml │ ├── pivotgrid.fr-CD.yml │ ├── pivotgrid.fr-CH.yml │ ├── pivotgrid.fr-CI.yml │ ├── pivotgrid.fr-CM.yml │ ├── pivotgrid.fr-FR.yml │ ├── pivotgrid.fr-HT.yml │ ├── pivotgrid.fr-LU.yml │ ├── pivotgrid.fr-MA.yml │ ├── pivotgrid.fr-MC.yml │ ├── pivotgrid.fr-ML.yml │ ├── pivotgrid.fr-SN.yml │ ├── pivotgrid.he-IL.yml │ ├── pivotgrid.hy-AM.yml │ ├── pivotgrid.it-CH.yml │ ├── pivotgrid.it-IT.yml │ ├── pivotgrid.ja-JP.yml │ ├── pivotgrid.ka-GE.yml │ ├── pivotgrid.nb-NO.yml │ ├── pivotgrid.nl-BE.yml │ ├── pivotgrid.nl-NL.yml │ ├── pivotgrid.pl-PL.yml │ ├── pivotgrid.pt-BR.yml │ ├── pivotgrid.pt-PT.yml │ ├── pivotgrid.ro-RO.yml │ ├── pivotgrid.ru-RU.yml │ ├── pivotgrid.sk-SK.yml │ ├── pivotgrid.sv-SE.yml │ ├── pivotgrid.tr-TR.yml │ ├── pivotgrid.uk-UA.yml │ ├── pivotgrid.zh-CN.yml │ ├── pivotgrid.zh-HK.yml │ └── pivotgrid.zh-TW.yml ├── progressbar │ ├── progressbar.ar.yml │ ├── progressbar.bg-BG.yml │ ├── progressbar.cs-CZ.yml │ ├── progressbar.da-DK.yml │ ├── progressbar.de-AT.yml │ ├── progressbar.de-CH.yml │ ├── progressbar.de-DE.yml │ ├── progressbar.de-LI.yml │ ├── progressbar.en-AU.yml │ ├── progressbar.en-CA.yml │ ├── progressbar.en-GB.yml │ ├── progressbar.en-US.yml │ ├── progressbar.es-AR.yml │ ├── progressbar.es-BO.yml │ ├── progressbar.es-CL.yml │ ├── progressbar.es-CO.yml │ ├── progressbar.es-CR.yml │ ├── progressbar.es-DO.yml │ ├── progressbar.es-EC.yml │ ├── progressbar.es-ES.yml │ ├── progressbar.es-GT.yml │ ├── progressbar.es-HN.yml │ ├── progressbar.es-MX.yml │ ├── progressbar.es-NI.yml │ ├── progressbar.es-PA.yml │ ├── progressbar.es-PE.yml │ ├── progressbar.es-PR.yml │ ├── progressbar.es-PY.yml │ ├── progressbar.es-US.yml │ ├── progressbar.es-UY.yml │ ├── progressbar.es-VE.yml │ ├── progressbar.fa-IR.yml │ ├── progressbar.fi-FI.yml │ ├── progressbar.fr-BE.yml │ ├── progressbar.fr-CA.yml │ ├── progressbar.fr-CD.yml │ ├── progressbar.fr-CH.yml │ ├── progressbar.fr-CI.yml │ ├── progressbar.fr-CM.yml │ ├── progressbar.fr-FR.yml │ ├── progressbar.fr-HT.yml │ ├── progressbar.fr-LU.yml │ ├── progressbar.fr-MA.yml │ ├── progressbar.fr-MC.yml │ ├── progressbar.fr-ML.yml │ ├── progressbar.fr-SN.yml │ ├── progressbar.he-IL.yml │ ├── progressbar.hy-AM.yml │ ├── progressbar.it-CH.yml │ ├── progressbar.it-IT.yml │ ├── progressbar.ja-JP.yml │ ├── progressbar.ka-GE.yml │ ├── progressbar.nb-NO.yml │ ├── progressbar.nl-BE.yml │ ├── progressbar.nl-NL.yml │ ├── progressbar.pl-PL.yml │ ├── progressbar.pt-BR.yml │ ├── progressbar.pt-PT.yml │ ├── progressbar.ro-RO.yml │ ├── progressbar.ru-RU.yml │ ├── progressbar.sk-SK.yml │ ├── progressbar.sv-SE.yml │ ├── progressbar.tr-TR.yml │ ├── progressbar.uk-UA.yml │ ├── progressbar.zh-CN.yml │ ├── progressbar.zh-HK.yml │ └── progressbar.zh-TW.yml ├── rangeslider │ ├── rangeslider.ar.yml │ ├── rangeslider.bg-BG.yml │ ├── rangeslider.cs-CZ.yml │ ├── rangeslider.da-DK.yml │ ├── rangeslider.de-AT.yml │ ├── rangeslider.de-CH.yml │ ├── rangeslider.de-DE.yml │ ├── rangeslider.de-LI.yml │ ├── rangeslider.en-AU.yml │ ├── rangeslider.en-CA.yml │ ├── rangeslider.en-GB.yml │ ├── rangeslider.en-US.yml │ ├── rangeslider.es-AR.yml │ ├── rangeslider.es-BO.yml │ ├── rangeslider.es-CL.yml │ ├── rangeslider.es-CO.yml │ ├── rangeslider.es-CR.yml │ ├── rangeslider.es-DO.yml │ ├── rangeslider.es-EC.yml │ ├── rangeslider.es-ES.yml │ ├── rangeslider.es-GT.yml │ ├── rangeslider.es-HN.yml │ ├── rangeslider.es-MX.yml │ ├── rangeslider.es-NI.yml │ ├── rangeslider.es-PA.yml │ ├── rangeslider.es-PE.yml │ ├── rangeslider.es-PR.yml │ ├── rangeslider.es-PY.yml │ ├── rangeslider.es-US.yml │ ├── rangeslider.es-UY.yml │ ├── rangeslider.es-VE.yml │ ├── rangeslider.fa-IR.yml │ ├── rangeslider.fi-FI.yml │ ├── rangeslider.fr-BE.yml │ ├── rangeslider.fr-CA.yml │ ├── rangeslider.fr-CD.yml │ ├── rangeslider.fr-CH.yml │ ├── rangeslider.fr-CI.yml │ ├── rangeslider.fr-CM.yml │ ├── rangeslider.fr-FR.yml │ ├── rangeslider.fr-HT.yml │ ├── rangeslider.fr-LU.yml │ ├── rangeslider.fr-MA.yml │ ├── rangeslider.fr-MC.yml │ ├── rangeslider.fr-ML.yml │ ├── rangeslider.fr-SN.yml │ ├── rangeslider.he-IL.yml │ ├── rangeslider.hy-AM.yml │ ├── rangeslider.it-CH.yml │ ├── rangeslider.it-IT.yml │ ├── rangeslider.ja-JP.yml │ ├── rangeslider.ka-GE.yml │ ├── rangeslider.nb-NO.yml │ ├── rangeslider.nl-BE.yml │ ├── rangeslider.nl-NL.yml │ ├── rangeslider.pl-PL.yml │ ├── rangeslider.pt-BR.yml │ ├── rangeslider.pt-PT.yml │ ├── rangeslider.ro-RO.yml │ ├── rangeslider.ru-RU.yml │ ├── rangeslider.sk-SK.yml │ ├── rangeslider.sv-SE.yml │ ├── rangeslider.tr-TR.yml │ ├── rangeslider.uk-UA.yml │ ├── rangeslider.zh-CN.yml │ ├── rangeslider.zh-HK.yml │ └── rangeslider.zh-TW.yml ├── scheduler │ ├── scheduler.bg-BG.yml │ ├── scheduler.cs-CZ.yml │ ├── scheduler.da-DK.yml │ ├── scheduler.de-AT.yml │ ├── scheduler.de-CH.yml │ ├── scheduler.de-DE.yml │ ├── scheduler.de-LI.yml │ ├── scheduler.el-GR.yml │ ├── scheduler.en-AU.yml │ ├── scheduler.en-CA.yml │ ├── scheduler.en-GB.yml │ ├── scheduler.en-US.yml │ ├── scheduler.es-AR.yml │ ├── scheduler.es-BO.yml │ ├── scheduler.es-CL.yml │ ├── scheduler.es-CO.yml │ ├── scheduler.es-CR.yml │ ├── scheduler.es-DO.yml │ ├── scheduler.es-EC.yml │ ├── scheduler.es-ES.yml │ ├── scheduler.es-GT.yml │ ├── scheduler.es-HN.yml │ ├── scheduler.es-MX.yml │ ├── scheduler.es-NI.yml │ ├── scheduler.es-PA.yml │ ├── scheduler.es-PE.yml │ ├── scheduler.es-PR.yml │ ├── scheduler.es-PY.yml │ ├── scheduler.es-US.yml │ ├── scheduler.es-UY.yml │ ├── scheduler.es-VE.yml │ ├── scheduler.fa-IR.yml │ ├── scheduler.fi-FI.yml │ ├── scheduler.fr-BE.yml │ ├── scheduler.fr-CA.yml │ ├── scheduler.fr-CD.yml │ ├── scheduler.fr-CH.yml │ ├── scheduler.fr-CI.yml │ ├── scheduler.fr-CM.yml │ ├── scheduler.fr-FR.yml │ ├── scheduler.fr-HT.yml │ ├── scheduler.fr-LU.yml │ ├── scheduler.fr-MA.yml │ ├── scheduler.fr-MC.yml │ ├── scheduler.fr-ML.yml │ ├── scheduler.fr-SN.yml │ ├── scheduler.he-IL.yml │ ├── scheduler.hu-HU.yml │ ├── scheduler.hy-AM.yml │ ├── scheduler.it-CH.yml │ ├── scheduler.it-IT.yml │ ├── scheduler.ja-JP.yml │ ├── scheduler.ka-GE.yml │ ├── scheduler.mk-MK.yml │ ├── scheduler.nb-NO.yml │ ├── scheduler.nl-BE.yml │ ├── scheduler.nl-NL.yml │ ├── scheduler.pl-PL.yml │ ├── scheduler.pt-BR.yml │ ├── scheduler.pt-PT.yml │ ├── scheduler.ro-RO.yml │ ├── scheduler.ru-RU.yml │ ├── scheduler.sk-SK.yml │ ├── scheduler.sq-AL.yml │ ├── scheduler.sv-SE.yml │ ├── scheduler.tr-TR.yml │ ├── scheduler.uk-UA.yml │ ├── scheduler.zh-CN.yml │ ├── scheduler.zh-HK.yml │ └── scheduler.zh-TW.yml ├── scrollview │ ├── scrollview.ar.yml │ ├── scrollview.bg-BG.yml │ ├── scrollview.cs-CZ.yml │ ├── scrollview.da-DK.yml │ ├── scrollview.de-AT.yml │ ├── scrollview.de-CH.yml │ ├── scrollview.de-DE.yml │ ├── scrollview.de-LI.yml │ ├── scrollview.en-AU.yml │ ├── scrollview.en-CA.yml │ ├── scrollview.en-GB.yml │ ├── scrollview.en-US.yml │ ├── scrollview.es-AR.yml │ ├── scrollview.es-BO.yml │ ├── scrollview.es-CL.yml │ ├── scrollview.es-CO.yml │ ├── scrollview.es-CR.yml │ ├── scrollview.es-DO.yml │ ├── scrollview.es-EC.yml │ ├── scrollview.es-ES.yml │ ├── scrollview.es-GT.yml │ ├── scrollview.es-HN.yml │ ├── scrollview.es-MX.yml │ ├── scrollview.es-NI.yml │ ├── scrollview.es-PA.yml │ ├── scrollview.es-PE.yml │ ├── scrollview.es-PR.yml │ ├── scrollview.es-PY.yml │ ├── scrollview.es-US.yml │ ├── scrollview.es-UY.yml │ ├── scrollview.es-VE.yml │ ├── scrollview.fa-IR.yml │ ├── scrollview.fi-FI.yml │ ├── scrollview.fr-BE.yml │ ├── scrollview.fr-CA.yml │ ├── scrollview.fr-CD.yml │ ├── scrollview.fr-CH.yml │ ├── scrollview.fr-CI.yml │ ├── scrollview.fr-CM.yml │ ├── scrollview.fr-FR.yml │ ├── scrollview.fr-HT.yml │ ├── scrollview.fr-LU.yml │ ├── scrollview.fr-MA.yml │ ├── scrollview.fr-MC.yml │ ├── scrollview.fr-ML.yml │ ├── scrollview.fr-SN.yml │ ├── scrollview.he-IL.yml │ ├── scrollview.hy-AM.yml │ ├── scrollview.it-CH.yml │ ├── scrollview.it-IT.yml │ ├── scrollview.ja-JP.yml │ ├── scrollview.ka-GE.yml │ ├── scrollview.nb-NO.yml │ ├── scrollview.nl-BE.yml │ ├── scrollview.nl-NL.yml │ ├── scrollview.pl-PL.yml │ ├── scrollview.pt-BR.yml │ ├── scrollview.pt-PT.yml │ ├── scrollview.ro-RO.yml │ ├── scrollview.ru-RU.yml │ ├── scrollview.sk-SK.yml │ ├── scrollview.sv-SE.yml │ ├── scrollview.tr-TR.yml │ ├── scrollview.uk-UA.yml │ ├── scrollview.zh-CN.yml │ ├── scrollview.zh-HK.yml │ └── scrollview.zh-TW.yml ├── signature │ ├── signature.ar.yml │ ├── signature.bg-BG.yml │ ├── signature.cs-CZ.yml │ ├── signature.da-DK.yml │ ├── signature.de-AT.yml │ ├── signature.de-CH.yml │ ├── signature.de-DE.yml │ ├── signature.de-LI.yml │ ├── signature.en-AU.yml │ ├── signature.en-CA.yml │ ├── signature.en-GB.yml │ ├── signature.en-US.yml │ ├── signature.es-AR.yml │ ├── signature.es-BO.yml │ ├── signature.es-CL.yml │ ├── signature.es-CO.yml │ ├── signature.es-CR.yml │ ├── signature.es-DO.yml │ ├── signature.es-EC.yml │ ├── signature.es-ES.yml │ ├── signature.es-GT.yml │ ├── signature.es-HN.yml │ ├── signature.es-MX.yml │ ├── signature.es-NI.yml │ ├── signature.es-PA.yml │ ├── signature.es-PE.yml │ ├── signature.es-PR.yml │ ├── signature.es-PY.yml │ ├── signature.es-US.yml │ ├── signature.es-UY.yml │ ├── signature.es-VE.yml │ ├── signature.fa-IR.yml │ ├── signature.fi-FI.yml │ ├── signature.fr-BE.yml │ ├── signature.fr-CA.yml │ ├── signature.fr-CD.yml │ ├── signature.fr-CH.yml │ ├── signature.fr-CI.yml │ ├── signature.fr-CM.yml │ ├── signature.fr-FR.yml │ ├── signature.fr-HT.yml │ ├── signature.fr-LU.yml │ ├── signature.fr-MA.yml │ ├── signature.fr-MC.yml │ ├── signature.fr-ML.yml │ ├── signature.fr-SN.yml │ ├── signature.he-IL.yml │ ├── signature.hy-AM.yml │ ├── signature.it-CH.yml │ ├── signature.it-IT.yml │ ├── signature.ja-JP.yml │ ├── signature.ka-GE.yml │ ├── signature.nb-NO.yml │ ├── signature.nl-BE.yml │ ├── signature.nl-NL.yml │ ├── signature.pl-PL.yml │ ├── signature.pt-BR.yml │ ├── signature.pt-PT.yml │ ├── signature.ro-RO.yml │ ├── signature.ru-RU.yml │ ├── signature.sk-SK.yml │ ├── signature.sv-SE.yml │ ├── signature.tr-TR.yml │ ├── signature.uk-UA.yml │ ├── signature.zh-CN.yml │ ├── signature.zh-HK.yml │ └── signature.zh-TW.yml ├── slider │ ├── slider.ar.yml │ ├── slider.bg-BG.yml │ ├── slider.cs-CZ.yml │ ├── slider.da-DK.yml │ ├── slider.de-AT.yml │ ├── slider.de-CH.yml │ ├── slider.de-DE.yml │ ├── slider.de-LI.yml │ ├── slider.en-AU.yml │ ├── slider.en-CA.yml │ ├── slider.en-GB.yml │ ├── slider.en-US.yml │ ├── slider.es-AR.yml │ ├── slider.es-BO.yml │ ├── slider.es-CL.yml │ ├── slider.es-CO.yml │ ├── slider.es-CR.yml │ ├── slider.es-DO.yml │ ├── slider.es-EC.yml │ ├── slider.es-ES.yml │ ├── slider.es-GT.yml │ ├── slider.es-HN.yml │ ├── slider.es-MX.yml │ ├── slider.es-NI.yml │ ├── slider.es-PA.yml │ ├── slider.es-PE.yml │ ├── slider.es-PR.yml │ ├── slider.es-PY.yml │ ├── slider.es-US.yml │ ├── slider.es-UY.yml │ ├── slider.es-VE.yml │ ├── slider.fa-IR.yml │ ├── slider.fi-FI.yml │ ├── slider.fr-BE.yml │ ├── slider.fr-CA.yml │ ├── slider.fr-CD.yml │ ├── slider.fr-CH.yml │ ├── slider.fr-CI.yml │ ├── slider.fr-CM.yml │ ├── slider.fr-FR.yml │ ├── slider.fr-HT.yml │ ├── slider.fr-LU.yml │ ├── slider.fr-MA.yml │ ├── slider.fr-MC.yml │ ├── slider.fr-ML.yml │ ├── slider.fr-SN.yml │ ├── slider.he-IL.yml │ ├── slider.hy-AM.yml │ ├── slider.it-CH.yml │ ├── slider.it-IT.yml │ ├── slider.ja-JP.yml │ ├── slider.ka-GE.yml │ ├── slider.nb-NO.yml │ ├── slider.nl-BE.yml │ ├── slider.nl-NL.yml │ ├── slider.pl-PL.yml │ ├── slider.pt-BR.yml │ ├── slider.pt-PT.yml │ ├── slider.ro-RO.yml │ ├── slider.ru-RU.yml │ ├── slider.sk-SK.yml │ ├── slider.sv-SE.yml │ ├── slider.tr-TR.yml │ ├── slider.uk-UA.yml │ ├── slider.zh-CN.yml │ ├── slider.zh-HK.yml │ └── slider.zh-TW.yml ├── splitbutton │ ├── splitbutton.ar.yml │ ├── splitbutton.bg-BG.yml │ ├── splitbutton.cs-CZ.yml │ ├── splitbutton.da-DK.yml │ ├── splitbutton.de-AT.yml │ ├── splitbutton.de-CH.yml │ ├── splitbutton.de-DE.yml │ ├── splitbutton.de-LI.yml │ ├── splitbutton.en-AU.yml │ ├── splitbutton.en-CA.yml │ ├── splitbutton.en-GB.yml │ ├── splitbutton.en-US.yml │ ├── splitbutton.es-AR.yml │ ├── splitbutton.es-BO.yml │ ├── splitbutton.es-CL.yml │ ├── splitbutton.es-CO.yml │ ├── splitbutton.es-CR.yml │ ├── splitbutton.es-DO.yml │ ├── splitbutton.es-EC.yml │ ├── splitbutton.es-ES.yml │ ├── splitbutton.es-GT.yml │ ├── splitbutton.es-HN.yml │ ├── splitbutton.es-MX.yml │ ├── splitbutton.es-NI.yml │ ├── splitbutton.es-PA.yml │ ├── splitbutton.es-PE.yml │ ├── splitbutton.es-PR.yml │ ├── splitbutton.es-PY.yml │ ├── splitbutton.es-US.yml │ ├── splitbutton.es-UY.yml │ ├── splitbutton.es-VE.yml │ ├── splitbutton.fa-IR.yml │ ├── splitbutton.fi-FI.yml │ ├── splitbutton.fr-BE.yml │ ├── splitbutton.fr-CA.yml │ ├── splitbutton.fr-CD.yml │ ├── splitbutton.fr-CH.yml │ ├── splitbutton.fr-CI.yml │ ├── splitbutton.fr-CM.yml │ ├── splitbutton.fr-FR.yml │ ├── splitbutton.fr-HT.yml │ ├── splitbutton.fr-LU.yml │ ├── splitbutton.fr-MA.yml │ ├── splitbutton.fr-MC.yml │ ├── splitbutton.fr-ML.yml │ ├── splitbutton.fr-SN.yml │ ├── splitbutton.he-IL.yml │ ├── splitbutton.hy-AM.yml │ ├── splitbutton.it-CH.yml │ ├── splitbutton.it-IT.yml │ ├── splitbutton.ja-JP.yml │ ├── splitbutton.ka-GE.yml │ ├── splitbutton.nb-NO.yml │ ├── splitbutton.nl-BE.yml │ ├── splitbutton.nl-NL.yml │ ├── splitbutton.pl-PL.yml │ ├── splitbutton.pt-BR.yml │ ├── splitbutton.pt-PT.yml │ ├── splitbutton.ro-RO.yml │ ├── splitbutton.ru-RU.yml │ ├── splitbutton.sk-SK.yml │ ├── splitbutton.sv-SE.yml │ ├── splitbutton.tr-TR.yml │ ├── splitbutton.uk-UA.yml │ ├── splitbutton.zh-CN.yml │ ├── splitbutton.zh-HK.yml │ └── splitbutton.zh-TW.yml ├── spreadsheet │ ├── spreadsheet.ar.yml │ ├── spreadsheet.bg-BG.yml │ ├── spreadsheet.cs-CZ.yml │ ├── spreadsheet.da-DK.yml │ ├── spreadsheet.de-AT.yml │ ├── spreadsheet.de-CH.yml │ ├── spreadsheet.de-DE.yml │ ├── spreadsheet.de-LI.yml │ ├── spreadsheet.en-AU.yml │ ├── spreadsheet.en-CA.yml │ ├── spreadsheet.en-GB.yml │ ├── spreadsheet.en-US.yml │ ├── spreadsheet.es-AR.yml │ ├── spreadsheet.es-BO.yml │ ├── spreadsheet.es-CL.yml │ ├── spreadsheet.es-CO.yml │ ├── spreadsheet.es-CR.yml │ ├── spreadsheet.es-DO.yml │ ├── spreadsheet.es-EC.yml │ ├── spreadsheet.es-ES.yml │ ├── spreadsheet.es-GT.yml │ ├── spreadsheet.es-HN.yml │ ├── spreadsheet.es-MX.yml │ ├── spreadsheet.es-NI.yml │ ├── spreadsheet.es-PA.yml │ ├── spreadsheet.es-PE.yml │ ├── spreadsheet.es-PR.yml │ ├── spreadsheet.es-PY.yml │ ├── spreadsheet.es-US.yml │ ├── spreadsheet.es-UY.yml │ ├── spreadsheet.es-VE.yml │ ├── spreadsheet.fa-IR.yml │ ├── spreadsheet.fi-FI.yml │ ├── spreadsheet.fr-BE.yml │ ├── spreadsheet.fr-CA.yml │ ├── spreadsheet.fr-CD.yml │ ├── spreadsheet.fr-CH.yml │ ├── spreadsheet.fr-CI.yml │ ├── spreadsheet.fr-CM.yml │ ├── spreadsheet.fr-FR.yml │ ├── spreadsheet.fr-HT.yml │ ├── spreadsheet.fr-LU.yml │ ├── spreadsheet.fr-MA.yml │ ├── spreadsheet.fr-MC.yml │ ├── spreadsheet.fr-ML.yml │ ├── spreadsheet.fr-SN.yml │ ├── spreadsheet.he-IL.yml │ ├── spreadsheet.hy-AM.yml │ ├── spreadsheet.it-CH.yml │ ├── spreadsheet.it-IT.yml │ ├── spreadsheet.ja-JP.yml │ ├── spreadsheet.ka-GE.yml │ ├── spreadsheet.nb-NO.yml │ ├── spreadsheet.nl-BE.yml │ ├── spreadsheet.nl-NL.yml │ ├── spreadsheet.pl-PL.yml │ ├── spreadsheet.pt-BR.yml │ ├── spreadsheet.pt-PT.yml │ ├── spreadsheet.ro-RO.yml │ ├── spreadsheet.ru-RU.yml │ ├── spreadsheet.sk-SK.yml │ ├── spreadsheet.sv-SE.yml │ ├── spreadsheet.tr-TR.yml │ ├── spreadsheet.uk-UA.yml │ ├── spreadsheet.zh-CN.yml │ ├── spreadsheet.zh-HK.yml │ └── spreadsheet.zh-TW.yml ├── stepper │ ├── stepper.ar.yml │ ├── stepper.bg-BG.yml │ ├── stepper.cs-CZ.yml │ ├── stepper.da-DK.yml │ ├── stepper.de-AT.yml │ ├── stepper.de-CH.yml │ ├── stepper.de-DE.yml │ ├── stepper.de-LI.yml │ ├── stepper.en-AU.yml │ ├── stepper.en-CA.yml │ ├── stepper.en-GB.yml │ ├── stepper.en-US.yml │ ├── stepper.es-AR.yml │ ├── stepper.es-BO.yml │ ├── stepper.es-CL.yml │ ├── stepper.es-CO.yml │ ├── stepper.es-CR.yml │ ├── stepper.es-DO.yml │ ├── stepper.es-EC.yml │ ├── stepper.es-ES.yml │ ├── stepper.es-GT.yml │ ├── stepper.es-HN.yml │ ├── stepper.es-MX.yml │ ├── stepper.es-NI.yml │ ├── stepper.es-PA.yml │ ├── stepper.es-PE.yml │ ├── stepper.es-PR.yml │ ├── stepper.es-PY.yml │ ├── stepper.es-US.yml │ ├── stepper.es-UY.yml │ ├── stepper.es-VE.yml │ ├── stepper.fa-IR.yml │ ├── stepper.fi-FI.yml │ ├── stepper.fr-BE.yml │ ├── stepper.fr-CA.yml │ ├── stepper.fr-CD.yml │ ├── stepper.fr-CH.yml │ ├── stepper.fr-CI.yml │ ├── stepper.fr-CM.yml │ ├── stepper.fr-FR.yml │ ├── stepper.fr-HT.yml │ ├── stepper.fr-LU.yml │ ├── stepper.fr-MA.yml │ ├── stepper.fr-MC.yml │ ├── stepper.fr-ML.yml │ ├── stepper.fr-SN.yml │ ├── stepper.he-IL.yml │ ├── stepper.hy-AM.yml │ ├── stepper.it-CH.yml │ ├── stepper.it-IT.yml │ ├── stepper.ja-JP.yml │ ├── stepper.ka-GE.yml │ ├── stepper.nb-NO.yml │ ├── stepper.nl-BE.yml │ ├── stepper.nl-NL.yml │ ├── stepper.pl-PL.yml │ ├── stepper.pt-BR.yml │ ├── stepper.pt-PT.yml │ ├── stepper.ro-RO.yml │ ├── stepper.ru-RU.yml │ ├── stepper.sk-SK.yml │ ├── stepper.sv-SE.yml │ ├── stepper.tr-TR.yml │ ├── stepper.uk-UA.yml │ ├── stepper.zh-CN.yml │ ├── stepper.zh-HK.yml │ └── stepper.zh-TW.yml ├── switch │ ├── switch.ar.yml │ ├── switch.bg-BG.yml │ ├── switch.cs-CZ.yml │ ├── switch.da-DK.yml │ ├── switch.de-AT.yml │ ├── switch.de-CH.yml │ ├── switch.de-DE.yml │ ├── switch.de-LI.yml │ ├── switch.en-AU.yml │ ├── switch.en-CA.yml │ ├── switch.en-GB.yml │ ├── switch.en-US.yml │ ├── switch.es-AR.yml │ ├── switch.es-BO.yml │ ├── switch.es-CL.yml │ ├── switch.es-CO.yml │ ├── switch.es-CR.yml │ ├── switch.es-DO.yml │ ├── switch.es-EC.yml │ ├── switch.es-ES.yml │ ├── switch.es-GT.yml │ ├── switch.es-HN.yml │ ├── switch.es-MX.yml │ ├── switch.es-NI.yml │ ├── switch.es-PA.yml │ ├── switch.es-PE.yml │ ├── switch.es-PR.yml │ ├── switch.es-PY.yml │ ├── switch.es-US.yml │ ├── switch.es-UY.yml │ ├── switch.es-VE.yml │ ├── switch.fa-IR.yml │ ├── switch.fi-FI.yml │ ├── switch.fr-BE.yml │ ├── switch.fr-CA.yml │ ├── switch.fr-CD.yml │ ├── switch.fr-CH.yml │ ├── switch.fr-CI.yml │ ├── switch.fr-CM.yml │ ├── switch.fr-FR.yml │ ├── switch.fr-HT.yml │ ├── switch.fr-LU.yml │ ├── switch.fr-MA.yml │ ├── switch.fr-MC.yml │ ├── switch.fr-ML.yml │ ├── switch.fr-SN.yml │ ├── switch.he-IL.yml │ ├── switch.hy-AM.yml │ ├── switch.it-CH.yml │ ├── switch.it-IT.yml │ ├── switch.ja-JP.yml │ ├── switch.ka-GE.yml │ ├── switch.nb-NO.yml │ ├── switch.nl-BE.yml │ ├── switch.nl-NL.yml │ ├── switch.pl-PL.yml │ ├── switch.pt-BR.yml │ ├── switch.pt-PT.yml │ ├── switch.ro-RO.yml │ ├── switch.ru-RU.yml │ ├── switch.sk-SK.yml │ ├── switch.sv-SE.yml │ ├── switch.tr-TR.yml │ ├── switch.uk-UA.yml │ ├── switch.zh-CN.yml │ ├── switch.zh-HK.yml │ └── switch.zh-TW.yml ├── tabstrip │ ├── tabstrip.ar.yml │ ├── tabstrip.bg-BG.yml │ ├── tabstrip.cs-CZ.yml │ ├── tabstrip.da-DK.yml │ ├── tabstrip.de-AT.yml │ ├── tabstrip.de-CH.yml │ ├── tabstrip.de-DE.yml │ ├── tabstrip.de-LI.yml │ ├── tabstrip.en-AU.yml │ ├── tabstrip.en-CA.yml │ ├── tabstrip.en-GB.yml │ ├── tabstrip.en-US.yml │ ├── tabstrip.es-AR.yml │ ├── tabstrip.es-BO.yml │ ├── tabstrip.es-CL.yml │ ├── tabstrip.es-CO.yml │ ├── tabstrip.es-CR.yml │ ├── tabstrip.es-DO.yml │ ├── tabstrip.es-EC.yml │ ├── tabstrip.es-ES.yml │ ├── tabstrip.es-GT.yml │ ├── tabstrip.es-HN.yml │ ├── tabstrip.es-MX.yml │ ├── tabstrip.es-NI.yml │ ├── tabstrip.es-PA.yml │ ├── tabstrip.es-PE.yml │ ├── tabstrip.es-PR.yml │ ├── tabstrip.es-PY.yml │ ├── tabstrip.es-US.yml │ ├── tabstrip.es-UY.yml │ ├── tabstrip.es-VE.yml │ ├── tabstrip.fa-IR.yml │ ├── tabstrip.fi-FI.yml │ ├── tabstrip.fr-BE.yml │ ├── tabstrip.fr-CA.yml │ ├── tabstrip.fr-CD.yml │ ├── tabstrip.fr-CH.yml │ ├── tabstrip.fr-CI.yml │ ├── tabstrip.fr-CM.yml │ ├── tabstrip.fr-FR.yml │ ├── tabstrip.fr-HT.yml │ ├── tabstrip.fr-LU.yml │ ├── tabstrip.fr-MA.yml │ ├── tabstrip.fr-MC.yml │ ├── tabstrip.fr-ML.yml │ ├── tabstrip.fr-SN.yml │ ├── tabstrip.he-IL.yml │ ├── tabstrip.hy-AM.yml │ ├── tabstrip.it-CH.yml │ ├── tabstrip.it-IT.yml │ ├── tabstrip.ja-JP.yml │ ├── tabstrip.ka-GE.yml │ ├── tabstrip.nb-NO.yml │ ├── tabstrip.nl-BE.yml │ ├── tabstrip.nl-NL.yml │ ├── tabstrip.pl-PL.yml │ ├── tabstrip.pt-BR.yml │ ├── tabstrip.pt-PT.yml │ ├── tabstrip.ro-RO.yml │ ├── tabstrip.ru-RU.yml │ ├── tabstrip.sk-SK.yml │ ├── tabstrip.sv-SE.yml │ ├── tabstrip.tr-TR.yml │ ├── tabstrip.uk-UA.yml │ ├── tabstrip.zh-CN.yml │ ├── tabstrip.zh-HK.yml │ └── tabstrip.zh-TW.yml ├── textbox │ ├── textbox.ar.yml │ ├── textbox.bg-BG.yml │ ├── textbox.cs-CZ.yml │ ├── textbox.da-DK.yml │ ├── textbox.de-AT.yml │ ├── textbox.de-CH.yml │ ├── textbox.de-DE.yml │ ├── textbox.de-LI.yml │ ├── textbox.en-AU.yml │ ├── textbox.en-CA.yml │ ├── textbox.en-GB.yml │ ├── textbox.en-US.yml │ ├── textbox.es-AR.yml │ ├── textbox.es-BO.yml │ ├── textbox.es-CL.yml │ ├── textbox.es-CO.yml │ ├── textbox.es-CR.yml │ ├── textbox.es-DO.yml │ ├── textbox.es-EC.yml │ ├── textbox.es-ES.yml │ ├── textbox.es-GT.yml │ ├── textbox.es-HN.yml │ ├── textbox.es-MX.yml │ ├── textbox.es-NI.yml │ ├── textbox.es-PA.yml │ ├── textbox.es-PE.yml │ ├── textbox.es-PR.yml │ ├── textbox.es-PY.yml │ ├── textbox.es-US.yml │ ├── textbox.es-UY.yml │ ├── textbox.es-VE.yml │ ├── textbox.fa-IR.yml │ ├── textbox.fi-FI.yml │ ├── textbox.fr-BE.yml │ ├── textbox.fr-CA.yml │ ├── textbox.fr-CD.yml │ ├── textbox.fr-CH.yml │ ├── textbox.fr-CI.yml │ ├── textbox.fr-CM.yml │ ├── textbox.fr-FR.yml │ ├── textbox.fr-HT.yml │ ├── textbox.fr-LU.yml │ ├── textbox.fr-MA.yml │ ├── textbox.fr-MC.yml │ ├── textbox.fr-ML.yml │ ├── textbox.fr-SN.yml │ ├── textbox.he-IL.yml │ ├── textbox.hy-AM.yml │ ├── textbox.it-CH.yml │ ├── textbox.it-IT.yml │ ├── textbox.ja-JP.yml │ ├── textbox.ka-GE.yml │ ├── textbox.nb-NO.yml │ ├── textbox.nl-BE.yml │ ├── textbox.nl-NL.yml │ ├── textbox.pl-PL.yml │ ├── textbox.pt-BR.yml │ ├── textbox.pt-PT.yml │ ├── textbox.ro-RO.yml │ ├── textbox.ru-RU.yml │ ├── textbox.sk-SK.yml │ ├── textbox.sv-SE.yml │ ├── textbox.tr-TR.yml │ ├── textbox.uk-UA.yml │ ├── textbox.zh-CN.yml │ ├── textbox.zh-HK.yml │ └── textbox.zh-TW.yml ├── timeline │ ├── timeline.ar.yml │ ├── timeline.bg-BG.yml │ ├── timeline.cs-CZ.yml │ ├── timeline.da-DK.yml │ ├── timeline.de-AT.yml │ ├── timeline.de-CH.yml │ ├── timeline.de-DE.yml │ ├── timeline.de-LI.yml │ ├── timeline.en-AU.yml │ ├── timeline.en-CA.yml │ ├── timeline.en-GB.yml │ ├── timeline.en-US.yml │ ├── timeline.es-AR.yml │ ├── timeline.es-BO.yml │ ├── timeline.es-CL.yml │ ├── timeline.es-CO.yml │ ├── timeline.es-CR.yml │ ├── timeline.es-DO.yml │ ├── timeline.es-EC.yml │ ├── timeline.es-ES.yml │ ├── timeline.es-GT.yml │ ├── timeline.es-HN.yml │ ├── timeline.es-MX.yml │ ├── timeline.es-NI.yml │ ├── timeline.es-PA.yml │ ├── timeline.es-PE.yml │ ├── timeline.es-PR.yml │ ├── timeline.es-PY.yml │ ├── timeline.es-US.yml │ ├── timeline.es-UY.yml │ ├── timeline.es-VE.yml │ ├── timeline.fa-IR.yml │ ├── timeline.fi-FI.yml │ ├── timeline.fr-BE.yml │ ├── timeline.fr-CA.yml │ ├── timeline.fr-CD.yml │ ├── timeline.fr-CH.yml │ ├── timeline.fr-CI.yml │ ├── timeline.fr-CM.yml │ ├── timeline.fr-FR.yml │ ├── timeline.fr-HT.yml │ ├── timeline.fr-LU.yml │ ├── timeline.fr-MA.yml │ ├── timeline.fr-MC.yml │ ├── timeline.fr-ML.yml │ ├── timeline.fr-SN.yml │ ├── timeline.he-IL.yml │ ├── timeline.hy-AM.yml │ ├── timeline.it-CH.yml │ ├── timeline.it-IT.yml │ ├── timeline.ja-JP.yml │ ├── timeline.ka-GE.yml │ ├── timeline.nb-NO.yml │ ├── timeline.nl-BE.yml │ ├── timeline.nl-NL.yml │ ├── timeline.pl-PL.yml │ ├── timeline.pt-BR.yml │ ├── timeline.pt-PT.yml │ ├── timeline.ro-RO.yml │ ├── timeline.ru-RU.yml │ ├── timeline.sk-SK.yml │ ├── timeline.sv-SE.yml │ ├── timeline.tr-TR.yml │ ├── timeline.uk-UA.yml │ ├── timeline.zh-CN.yml │ ├── timeline.zh-HK.yml │ └── timeline.zh-TW.yml ├── timepicker │ ├── timepicker.bg-BG.yml │ ├── timepicker.cs-CZ.yml │ ├── timepicker.da-DK.yml │ ├── timepicker.de-AT.yml │ ├── timepicker.de-CH.yml │ ├── timepicker.de-DE.yml │ ├── timepicker.de-LI.yml │ ├── timepicker.en-AU.yml │ ├── timepicker.en-CA.yml │ ├── timepicker.en-GB.yml │ ├── timepicker.en-US.yml │ ├── timepicker.es-AR.yml │ ├── timepicker.es-BO.yml │ ├── timepicker.es-CL.yml │ ├── timepicker.es-CO.yml │ ├── timepicker.es-CR.yml │ ├── timepicker.es-DO.yml │ ├── timepicker.es-EC.yml │ ├── timepicker.es-ES.yml │ ├── timepicker.es-GT.yml │ ├── timepicker.es-HN.yml │ ├── timepicker.es-MX.yml │ ├── timepicker.es-NI.yml │ ├── timepicker.es-PA.yml │ ├── timepicker.es-PE.yml │ ├── timepicker.es-PR.yml │ ├── timepicker.es-PY.yml │ ├── timepicker.es-US.yml │ ├── timepicker.es-UY.yml │ ├── timepicker.es-VE.yml │ ├── timepicker.fa-IR.yml │ ├── timepicker.fi-FI.yml │ ├── timepicker.fr-BE.yml │ ├── timepicker.fr-CA.yml │ ├── timepicker.fr-CD.yml │ ├── timepicker.fr-CH.yml │ ├── timepicker.fr-CI.yml │ ├── timepicker.fr-CM.yml │ ├── timepicker.fr-FR.yml │ ├── timepicker.fr-HT.yml │ ├── timepicker.fr-LU.yml │ ├── timepicker.fr-MA.yml │ ├── timepicker.fr-MC.yml │ ├── timepicker.fr-ML.yml │ ├── timepicker.fr-SN.yml │ ├── timepicker.he-IL.yml │ ├── timepicker.hy-AM.yml │ ├── timepicker.it-CH.yml │ ├── timepicker.it-IT.yml │ ├── timepicker.ja-JP.yml │ ├── timepicker.ka-GE.yml │ ├── timepicker.nb-NO.yml │ ├── timepicker.nl-BE.yml │ ├── timepicker.nl-NL.yml │ ├── timepicker.pl-PL.yml │ ├── timepicker.pt-BR.yml │ ├── timepicker.pt-PT.yml │ ├── timepicker.ro-RO.yml │ ├── timepicker.ru-RU.yml │ ├── timepicker.sk-SK.yml │ ├── timepicker.sv-SE.yml │ ├── timepicker.tr-TR.yml │ ├── timepicker.uk-UA.yml │ ├── timepicker.zh-CN.yml │ ├── timepicker.zh-HK.yml │ └── timepicker.zh-TW.yml ├── toolbar │ ├── toolbar.ar.yml │ ├── toolbar.bg-BG.yml │ ├── toolbar.cs-CZ.yml │ ├── toolbar.da-DK.yml │ ├── toolbar.de-AT.yml │ ├── toolbar.de-CH.yml │ ├── toolbar.de-DE.yml │ ├── toolbar.de-LI.yml │ ├── toolbar.en-AU.yml │ ├── toolbar.en-CA.yml │ ├── toolbar.en-GB.yml │ ├── toolbar.en-US.yml │ ├── toolbar.es-AR.yml │ ├── toolbar.es-BO.yml │ ├── toolbar.es-CL.yml │ ├── toolbar.es-CO.yml │ ├── toolbar.es-CR.yml │ ├── toolbar.es-DO.yml │ ├── toolbar.es-EC.yml │ ├── toolbar.es-ES.yml │ ├── toolbar.es-GT.yml │ ├── toolbar.es-HN.yml │ ├── toolbar.es-MX.yml │ ├── toolbar.es-NI.yml │ ├── toolbar.es-PA.yml │ ├── toolbar.es-PE.yml │ ├── toolbar.es-PR.yml │ ├── toolbar.es-PY.yml │ ├── toolbar.es-US.yml │ ├── toolbar.es-UY.yml │ ├── toolbar.es-VE.yml │ ├── toolbar.fa-IR.yml │ ├── toolbar.fi-FI.yml │ ├── toolbar.fr-BE.yml │ ├── toolbar.fr-CA.yml │ ├── toolbar.fr-CD.yml │ ├── toolbar.fr-CH.yml │ ├── toolbar.fr-CI.yml │ ├── toolbar.fr-CM.yml │ ├── toolbar.fr-FR.yml │ ├── toolbar.fr-HT.yml │ ├── toolbar.fr-LU.yml │ ├── toolbar.fr-MA.yml │ ├── toolbar.fr-MC.yml │ ├── toolbar.fr-ML.yml │ ├── toolbar.fr-SN.yml │ ├── toolbar.he-IL.yml │ ├── toolbar.hy-AM.yml │ ├── toolbar.it-CH.yml │ ├── toolbar.it-IT.yml │ ├── toolbar.ja-JP.yml │ ├── toolbar.ka-GE.yml │ ├── toolbar.nb-NO.yml │ ├── toolbar.nl-BE.yml │ ├── toolbar.nl-NL.yml │ ├── toolbar.pl-PL.yml │ ├── toolbar.pt-BR.yml │ ├── toolbar.pt-PT.yml │ ├── toolbar.ro-RO.yml │ ├── toolbar.ru-RU.yml │ ├── toolbar.sk-SK.yml │ ├── toolbar.sv-SE.yml │ ├── toolbar.tr-TR.yml │ ├── toolbar.uk-UA.yml │ ├── toolbar.zh-CN.yml │ ├── toolbar.zh-HK.yml │ └── toolbar.zh-TW.yml ├── tooltip │ ├── tooltip.ar.yml │ ├── tooltip.bg-BG.yml │ ├── tooltip.cs-CZ.yml │ ├── tooltip.da-DK.yml │ ├── tooltip.de-AT.yml │ ├── tooltip.de-CH.yml │ ├── tooltip.de-DE.yml │ ├── tooltip.de-LI.yml │ ├── tooltip.en-AU.yml │ ├── tooltip.en-CA.yml │ ├── tooltip.en-GB.yml │ ├── tooltip.en-US.yml │ ├── tooltip.es-AR.yml │ ├── tooltip.es-BO.yml │ ├── tooltip.es-CL.yml │ ├── tooltip.es-CO.yml │ ├── tooltip.es-CR.yml │ ├── tooltip.es-DO.yml │ ├── tooltip.es-EC.yml │ ├── tooltip.es-ES.yml │ ├── tooltip.es-GT.yml │ ├── tooltip.es-HN.yml │ ├── tooltip.es-MX.yml │ ├── tooltip.es-NI.yml │ ├── tooltip.es-PA.yml │ ├── tooltip.es-PE.yml │ ├── tooltip.es-PR.yml │ ├── tooltip.es-PY.yml │ ├── tooltip.es-US.yml │ ├── tooltip.es-UY.yml │ ├── tooltip.es-VE.yml │ ├── tooltip.fa-IR.yml │ ├── tooltip.fi-FI.yml │ ├── tooltip.fr-BE.yml │ ├── tooltip.fr-CA.yml │ ├── tooltip.fr-CD.yml │ ├── tooltip.fr-CH.yml │ ├── tooltip.fr-CI.yml │ ├── tooltip.fr-CM.yml │ ├── tooltip.fr-FR.yml │ ├── tooltip.fr-HT.yml │ ├── tooltip.fr-LU.yml │ ├── tooltip.fr-MA.yml │ ├── tooltip.fr-MC.yml │ ├── tooltip.fr-ML.yml │ ├── tooltip.fr-SN.yml │ ├── tooltip.he-IL.yml │ ├── tooltip.hy-AM.yml │ ├── tooltip.it-CH.yml │ ├── tooltip.it-IT.yml │ ├── tooltip.ja-JP.yml │ ├── tooltip.ka-GE.yml │ ├── tooltip.nb-NO.yml │ ├── tooltip.nl-BE.yml │ ├── tooltip.nl-NL.yml │ ├── tooltip.pl-PL.yml │ ├── tooltip.pt-BR.yml │ ├── tooltip.pt-PT.yml │ ├── tooltip.ro-RO.yml │ ├── tooltip.ru-RU.yml │ ├── tooltip.sk-SK.yml │ ├── tooltip.sv-SE.yml │ ├── tooltip.tr-TR.yml │ ├── tooltip.uk-UA.yml │ ├── tooltip.zh-CN.yml │ ├── tooltip.zh-HK.yml │ └── tooltip.zh-TW.yml ├── treelist │ ├── treelist.ar.yml │ ├── treelist.bg-BG.yml │ ├── treelist.cs-CZ.yml │ ├── treelist.da-DK.yml │ ├── treelist.de-AT.yml │ ├── treelist.de-CH.yml │ ├── treelist.de-DE.yml │ ├── treelist.de-LI.yml │ ├── treelist.en-AU.yml │ ├── treelist.en-CA.yml │ ├── treelist.en-GB.yml │ ├── treelist.en-US.yml │ ├── treelist.es-AR.yml │ ├── treelist.es-BO.yml │ ├── treelist.es-CL.yml │ ├── treelist.es-CO.yml │ ├── treelist.es-CR.yml │ ├── treelist.es-DO.yml │ ├── treelist.es-EC.yml │ ├── treelist.es-ES.yml │ ├── treelist.es-GT.yml │ ├── treelist.es-HN.yml │ ├── treelist.es-MX.yml │ ├── treelist.es-NI.yml │ ├── treelist.es-PA.yml │ ├── treelist.es-PE.yml │ ├── treelist.es-PR.yml │ ├── treelist.es-PY.yml │ ├── treelist.es-US.yml │ ├── treelist.es-UY.yml │ ├── treelist.es-VE.yml │ ├── treelist.fa-IR.yml │ ├── treelist.fi-FI.yml │ ├── treelist.fr-BE.yml │ ├── treelist.fr-CA.yml │ ├── treelist.fr-CD.yml │ ├── treelist.fr-CH.yml │ ├── treelist.fr-CI.yml │ ├── treelist.fr-CM.yml │ ├── treelist.fr-FR.yml │ ├── treelist.fr-HT.yml │ ├── treelist.fr-LU.yml │ ├── treelist.fr-MA.yml │ ├── treelist.fr-MC.yml │ ├── treelist.fr-ML.yml │ ├── treelist.fr-SN.yml │ ├── treelist.he-IL.yml │ ├── treelist.hy-AM.yml │ ├── treelist.it-CH.yml │ ├── treelist.it-IT.yml │ ├── treelist.ja-JP.yml │ ├── treelist.ka-GE.yml │ ├── treelist.nb-NO.yml │ ├── treelist.nl-BE.yml │ ├── treelist.nl-NL.yml │ ├── treelist.pl-PL.yml │ ├── treelist.pt-BR.yml │ ├── treelist.pt-PT.yml │ ├── treelist.ro-RO.yml │ ├── treelist.ru-RU.yml │ ├── treelist.sk-SK.yml │ ├── treelist.sv-SE.yml │ ├── treelist.tr-TR.yml │ ├── treelist.uk-UA.yml │ ├── treelist.zh-CN.yml │ ├── treelist.zh-HK.yml │ └── treelist.zh-TW.yml ├── treeview │ ├── treeview.ar.yml │ ├── treeview.bg-BG.yml │ ├── treeview.cs-CZ.yml │ ├── treeview.da-DK.yml │ ├── treeview.de-AT.yml │ ├── treeview.de-CH.yml │ ├── treeview.de-DE.yml │ ├── treeview.de-LI.yml │ ├── treeview.en-AU.yml │ ├── treeview.en-CA.yml │ ├── treeview.en-GB.yml │ ├── treeview.en-US.yml │ ├── treeview.es-AR.yml │ ├── treeview.es-BO.yml │ ├── treeview.es-CL.yml │ ├── treeview.es-CO.yml │ ├── treeview.es-CR.yml │ ├── treeview.es-DO.yml │ ├── treeview.es-EC.yml │ ├── treeview.es-ES.yml │ ├── treeview.es-GT.yml │ ├── treeview.es-HN.yml │ ├── treeview.es-MX.yml │ ├── treeview.es-NI.yml │ ├── treeview.es-PA.yml │ ├── treeview.es-PE.yml │ ├── treeview.es-PR.yml │ ├── treeview.es-PY.yml │ ├── treeview.es-US.yml │ ├── treeview.es-UY.yml │ ├── treeview.es-VE.yml │ ├── treeview.fa-IR.yml │ ├── treeview.fi-FI.yml │ ├── treeview.fr-BE.yml │ ├── treeview.fr-CA.yml │ ├── treeview.fr-CD.yml │ ├── treeview.fr-CH.yml │ ├── treeview.fr-CI.yml │ ├── treeview.fr-CM.yml │ ├── treeview.fr-FR.yml │ ├── treeview.fr-HT.yml │ ├── treeview.fr-LU.yml │ ├── treeview.fr-MA.yml │ ├── treeview.fr-MC.yml │ ├── treeview.fr-ML.yml │ ├── treeview.fr-SN.yml │ ├── treeview.he-IL.yml │ ├── treeview.hy-AM.yml │ ├── treeview.it-CH.yml │ ├── treeview.it-IT.yml │ ├── treeview.ja-JP.yml │ ├── treeview.ka-GE.yml │ ├── treeview.nb-NO.yml │ ├── treeview.nl-BE.yml │ ├── treeview.nl-NL.yml │ ├── treeview.pl-PL.yml │ ├── treeview.pt-BR.yml │ ├── treeview.pt-PT.yml │ ├── treeview.ro-RO.yml │ ├── treeview.ru-RU.yml │ ├── treeview.sk-SK.yml │ ├── treeview.sv-SE.yml │ ├── treeview.tr-TR.yml │ ├── treeview.uk-UA.yml │ ├── treeview.zh-CN.yml │ ├── treeview.zh-HK.yml │ └── treeview.zh-TW.yml ├── upload │ ├── upload.ar.yml │ ├── upload.bg-BG.yml │ ├── upload.cs-CZ.yml │ ├── upload.da-DK.yml │ ├── upload.de-AT.yml │ ├── upload.de-CH.yml │ ├── upload.de-DE.yml │ ├── upload.de-LI.yml │ ├── upload.en-AU.yml │ ├── upload.en-CA.yml │ ├── upload.en-GB.yml │ ├── upload.en-US.yml │ ├── upload.es-AR.yml │ ├── upload.es-BO.yml │ ├── upload.es-CL.yml │ ├── upload.es-CO.yml │ ├── upload.es-CR.yml │ ├── upload.es-DO.yml │ ├── upload.es-EC.yml │ ├── upload.es-ES.yml │ ├── upload.es-GT.yml │ ├── upload.es-HN.yml │ ├── upload.es-MX.yml │ ├── upload.es-NI.yml │ ├── upload.es-PA.yml │ ├── upload.es-PE.yml │ ├── upload.es-PR.yml │ ├── upload.es-PY.yml │ ├── upload.es-US.yml │ ├── upload.es-UY.yml │ ├── upload.es-VE.yml │ ├── upload.fa-IR.yml │ ├── upload.fi-FI.yml │ ├── upload.fr-BE.yml │ ├── upload.fr-CA.yml │ ├── upload.fr-CD.yml │ ├── upload.fr-CH.yml │ ├── upload.fr-CI.yml │ ├── upload.fr-CM.yml │ ├── upload.fr-FR.yml │ ├── upload.fr-HT.yml │ ├── upload.fr-LU.yml │ ├── upload.fr-MA.yml │ ├── upload.fr-MC.yml │ ├── upload.fr-ML.yml │ ├── upload.fr-SN.yml │ ├── upload.he-IL.yml │ ├── upload.hy-AM.yml │ ├── upload.it-CH.yml │ ├── upload.it-IT.yml │ ├── upload.ja-JP.yml │ ├── upload.ka-GE.yml │ ├── upload.nb-NO.yml │ ├── upload.nl-BE.yml │ ├── upload.nl-NL.yml │ ├── upload.pl-PL.yml │ ├── upload.pt-BR.yml │ ├── upload.pt-PT.yml │ ├── upload.ro-RO.yml │ ├── upload.ru-RU.yml │ ├── upload.sk-SK.yml │ ├── upload.sv-SE.yml │ ├── upload.tr-TR.yml │ ├── upload.uk-UA.yml │ ├── upload.zh-CN.yml │ ├── upload.zh-HK.yml │ └── upload.zh-TW.yml └── window │ ├── window.ar.yml │ ├── window.bg-BG.yml │ ├── window.cs-CZ.yml │ ├── window.da-DK.yml │ ├── window.de-AT.yml │ ├── window.de-CH.yml │ ├── window.de-DE.yml │ ├── window.de-LI.yml │ ├── window.en-AU.yml │ ├── window.en-CA.yml │ ├── window.en-GB.yml │ ├── window.en-US.yml │ ├── window.es-AR.yml │ ├── window.es-BO.yml │ ├── window.es-CL.yml │ ├── window.es-CO.yml │ ├── window.es-CR.yml │ ├── window.es-DO.yml │ ├── window.es-EC.yml │ ├── window.es-ES.yml │ ├── window.es-GT.yml │ ├── window.es-HN.yml │ ├── window.es-MX.yml │ ├── window.es-NI.yml │ ├── window.es-PA.yml │ ├── window.es-PE.yml │ ├── window.es-PR.yml │ ├── window.es-PY.yml │ ├── window.es-US.yml │ ├── window.es-UY.yml │ ├── window.es-VE.yml │ ├── window.fa-IR.yml │ ├── window.fi-FI.yml │ ├── window.fr-BE.yml │ ├── window.fr-CA.yml │ ├── window.fr-CD.yml │ ├── window.fr-CH.yml │ ├── window.fr-CI.yml │ ├── window.fr-CM.yml │ ├── window.fr-FR.yml │ ├── window.fr-HT.yml │ ├── window.fr-LU.yml │ ├── window.fr-MA.yml │ ├── window.fr-MC.yml │ ├── window.fr-ML.yml │ ├── window.fr-SN.yml │ ├── window.he-IL.yml │ ├── window.hy-AM.yml │ ├── window.it-CH.yml │ ├── window.it-IT.yml │ ├── window.ja-JP.yml │ ├── window.ka-GE.yml │ ├── window.nb-NO.yml │ ├── window.nl-BE.yml │ ├── window.nl-NL.yml │ ├── window.pl-PL.yml │ ├── window.pt-BR.yml │ ├── window.pt-PT.yml │ ├── window.ro-RO.yml │ ├── window.ru-RU.yml │ ├── window.sk-SK.yml │ ├── window.sv-SE.yml │ ├── window.tr-TR.yml │ ├── window.uk-UA.yml │ ├── window.zh-CN.yml │ ├── window.zh-HK.yml │ └── window.zh-TW.yml ├── package-lock.json ├── package.json ├── test ├── .gitignore ├── messages.xlf └── run └── tools ├── append-message.sh ├── release-master └── seed-messages.sh /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | *.tgz 4 | 5 | /.vs 6 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx --no -- commitlint --edit 5 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npm run lint 5 | npm run test 6 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @telerik/kendo-angular-reviewers 2 | -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@commitlint/config-conventional'] 3 | }; 4 | -------------------------------------------------------------------------------- /messages/avatar/avatar.ar.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.bg-BG.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Аватар 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.cs-CZ.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.da-DK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.de-AT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.de-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.de-DE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.de-LI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.en-AU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.en-CA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.en-GB.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.en-US.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.es-AR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.es-BO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.es-CL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.es-CO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.es-CR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.es-DO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.es-EC.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.es-ES.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.es-GT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.es-HN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.es-MX.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.es-NI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.es-PA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.es-PE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.es-PR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.es-PY.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.es-US.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.es-UY.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.es-VE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.fa-IR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.fi-FI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.fr-BE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.fr-CA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.fr-CD.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.fr-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.fr-CI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.fr-CM.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.fr-FR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.fr-HT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.fr-LU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.fr-MA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.fr-MC.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.fr-ML.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.fr-SN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.he-IL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.hy-AM.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.it-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.it-IT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.ja-JP.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.ka-GE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.nb-NO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.nl-BE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.nl-NL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.pl-PL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.pt-BR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.pt-PT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.ro-RO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.ru-RU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.sk-SK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.sv-SE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.tr-TR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.uk-UA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.zh-CN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.zh-HK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/avatar/avatar.zh-TW.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | avatar: 3 | # The alt attribute text of the image in the avatar 4 | avatarAlt: Avatar 5 | -------------------------------------------------------------------------------- /messages/colorpalette/colorpalette.ar.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | colorpalette: 3 | # The aria-label applied to the ColorPalette component when the value is empty 4 | colorPaletteNoColor: Colorpalette no color chosen 5 | -------------------------------------------------------------------------------- /messages/colorpalette/colorpalette.bg-BG.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | colorpalette: 3 | # The aria-label applied to the ColorPalette component when the value is empty 4 | colorPaletteNoColor: Палитра не е избран цвят 5 | -------------------------------------------------------------------------------- /messages/colorpalette/colorpalette.cs-CZ.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | colorpalette: 3 | # The aria-label applied to the ColorPalette component when the value is empty 4 | colorPaletteNoColor: Colorpalette no color chosen 5 | -------------------------------------------------------------------------------- /messages/colorpalette/colorpalette.tr-TR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendo-angular-messages/21c35f245395618fdde67945e477cf58343c5339/messages/colorpalette/colorpalette.tr-TR.yml -------------------------------------------------------------------------------- /messages/dialog/dialog.ar.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.bg-BG.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Затвори 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.cs-CZ.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.da-DK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Luk 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.de-AT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Schließen 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.de-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Schließen 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.de-DE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Schließen 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.de-LI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Schließen 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.en-AU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.en-CA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.en-GB.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.en-US.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.es-AR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.es-BO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.es-CL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.es-CO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.es-CR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.es-DO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.es-EC.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.es-ES.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.es-GT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.es-HN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.es-MX.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.es-NI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.es-PA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.es-PE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.es-PR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.es-PY.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.es-US.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.es-UY.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.es-VE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.fa-IR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: بستن 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.fi-FI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.fr-BE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.fr-CA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.fr-CD.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.fr-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.fr-CI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.fr-CM.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.fr-FR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.fr-HT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.fr-LU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.fr-MA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.fr-MC.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.fr-ML.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.fr-SN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.he-IL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.hy-AM.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.it-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Chiudi 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.it-IT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Chiudi 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.ja-JP.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.ka-GE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: დახურვა 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.nb-NO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.nl-BE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.nl-NL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.pl-PL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.pt-BR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.pt-PT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.ro-RO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.ru-RU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.sk-SK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Zavrieť 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.sv-SE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.tr-TR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Kapat 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.uk-UA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.zh-CN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.zh-HK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/dialog/dialog.zh-TW.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | dialog: 3 | # The title of the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.ar.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.bg-BG.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Затвори 5 | -------------------------------------------------------------------------------- /messages/notification/notification.cs-CZ.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.da-DK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.de-AT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Schließen 5 | -------------------------------------------------------------------------------- /messages/notification/notification.de-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Schließen 5 | -------------------------------------------------------------------------------- /messages/notification/notification.de-DE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Schließen 5 | -------------------------------------------------------------------------------- /messages/notification/notification.de-LI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Schließen 5 | -------------------------------------------------------------------------------- /messages/notification/notification.en-AU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.en-CA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.en-GB.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.en-US.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.es-AR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.es-BO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.es-CL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.es-CO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.es-CR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.es-DO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.es-EC.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.es-ES.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.es-GT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.es-HN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.es-MX.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.es-NI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.es-PA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.es-PE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.es-PR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.es-PY.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.es-US.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.es-UY.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.es-VE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.fa-IR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: بستن 5 | -------------------------------------------------------------------------------- /messages/notification/notification.fi-FI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.fr-BE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.fr-CA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.fr-CD.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.fr-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.fr-CI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.fr-CM.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.fr-FR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.fr-HT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.fr-LU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.fr-MA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.fr-MC.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.fr-ML.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.fr-SN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.he-IL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.hy-AM.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.it-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Chiudi 5 | -------------------------------------------------------------------------------- /messages/notification/notification.it-IT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Chiudi 5 | -------------------------------------------------------------------------------- /messages/notification/notification.ja-JP.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.ka-GE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: დახურვა 5 | -------------------------------------------------------------------------------- /messages/notification/notification.nb-NO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.nl-BE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.nl-NL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.pl-PL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.pt-BR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.pt-PT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.ro-RO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.ru-RU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.sk-SK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Zavrieť 5 | -------------------------------------------------------------------------------- /messages/notification/notification.sv-SE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.tr-TR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.uk-UA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.zh-CN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.zh-HK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/notification/notification.zh-TW.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | notification: 3 | # The title for the close button in a closable notification 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.ar.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.bg-BG.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Поле {currentInput} от {totalInputs}, текуща стойност {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.cs-CZ.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.da-DK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.de-AT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.de-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.de-DE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.de-LI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.en-AU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.en-CA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.en-GB.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.en-US.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.es-AR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.es-BO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.es-CL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.es-CO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.es-CR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.es-DO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.es-EC.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.es-ES.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.es-GT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.es-HN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.es-MX.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.es-NI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.es-PA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.es-PE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.es-PR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.es-PY.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.es-US.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.es-UY.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.es-VE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.fa-IR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.fi-FI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.fr-BE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.fr-CA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.fr-CD.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.fr-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.fr-CI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.fr-CM.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.fr-FR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.fr-HT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.fr-LU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.fr-MA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.fr-MC.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.fr-ML.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.fr-SN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.he-IL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.hy-AM.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.it-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.it-IT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.ja-JP.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.ka-GE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.nb-NO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.nl-BE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.nl-NL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.pl-PL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.pt-BR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.pt-PT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.ro-RO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.ru-RU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.sk-SK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.sv-SE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.tr-TR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.uk-UA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.zh-CN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.zh-HK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/otpinput/otpinput.zh-TW.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | otpinput: 3 | # The value of the aria-label attribute of the input fields. 4 | ariaLabel: 'Input {currentInput} of {totalInputs}, current value {value}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.ar.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.bg-BG.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Предмет {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.cs-CZ.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.da-DK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.de-AT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Element {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.de-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Element {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.de-DE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Element {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.de-LI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.en-AU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.en-CA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.en-GB.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.en-US.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.es-AR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.es-BO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.es-CL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.es-CO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.es-CR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.es-DO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.es-EC.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.es-ES.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.es-GT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.es-HN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.es-MX.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.es-NI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.es-PA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.es-PE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.es-PR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.es-PY.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.es-US.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.es-UY.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.es-VE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.fa-IR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.fi-FI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.fr-BE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.fr-CA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.fr-CD.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.fr-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.fr-CI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.fr-CM.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.fr-FR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.fr-HT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.fr-LU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.fr-MA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.fr-MC.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.fr-ML.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.fr-SN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.he-IL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.hy-AM.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.it-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.it-IT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.ja-JP.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.ka-GE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.nb-NO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.nl-BE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.nl-NL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.pl-PL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.pt-BR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.pt-PT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.ro-RO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.ru-RU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.sk-SK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.sv-SE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.tr-TR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.uk-UA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.zh-CN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.zh-HK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/scrollview/scrollview.zh-TW.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | scrollview: 3 | # The label for the buttons inside the ScrollView Pager 4 | pagerButtonLabel: 'Item {itemIndex}' 5 | -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.ar.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.bg-BG.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} бутон' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.cs-CZ.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.da-DK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.de-AT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} geteilter Button' 5 | -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.de-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} geteilter Button' 5 | -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.de-DE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} geteilter Button' 5 | -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.de-LI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.en-AU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.en-CA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.en-GB.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.en-US.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.es-AR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.es-BO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.es-CL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.es-CO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.es-CR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.es-DO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.es-EC.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.es-ES.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.es-GT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.es-HN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.es-MX.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.es-NI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.es-PA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.es-PE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.es-PR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.es-PY.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.es-US.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.es-UY.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.es-VE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.fa-IR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.fi-FI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.fr-BE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.fr-CA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.fr-CD.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.fr-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.fr-CI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.fr-CM.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.fr-FR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.fr-HT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.fr-LU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.fr-MA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.fr-MC.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.fr-ML.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.fr-SN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.he-IL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.hy-AM.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.it-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.it-IT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.ja-JP.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.ka-GE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.nb-NO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.nl-BE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.nl-NL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.pl-PL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.pt-BR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.pt-PT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.ro-RO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.ru-RU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.sk-SK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} rozdelené tlačidlo' 5 | -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.sv-SE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.tr-TR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText}' 5 | -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.uk-UA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.zh-CN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.zh-HK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/splitbutton/splitbutton.zh-TW.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | splitbutton: 3 | # The text for the SplitButton aria-label 4 | splitButtonLabel: '{buttonText} splitbutton' -------------------------------------------------------------------------------- /messages/stepper/stepper.ar.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.bg-BG.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Незадължително 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.cs-CZ.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.da-DK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.de-AT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.de-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.de-DE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.de-LI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.en-AU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.en-CA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.en-GB.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.en-US.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.es-AR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.es-BO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.es-CL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.es-CO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.es-CR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.es-DO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.es-EC.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.es-ES.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.es-GT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.es-HN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.es-MX.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.es-NI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.es-PA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.es-PE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.es-PR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.es-PY.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.es-US.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.es-UY.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.es-VE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.fa-IR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.fi-FI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.fr-BE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.fr-CA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.fr-CD.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.fr-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.fr-CI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.fr-CM.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.fr-FR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.fr-HT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.fr-LU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.fr-MA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.fr-MC.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.fr-ML.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.fr-SN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.he-IL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.hy-AM.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.it-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.it-IT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.ja-JP.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.ka-GE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.nb-NO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.nl-BE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.nl-NL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.pl-PL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.pt-BR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.pt-PT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.ro-RO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.ru-RU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.sk-SK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.sv-SE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.tr-TR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.uk-UA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.zh-CN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.zh-HK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/stepper/stepper.zh-TW.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | stepper: 3 | # The text for the optional segment of the step label. 4 | optional: Optional 5 | -------------------------------------------------------------------------------- /messages/switch/switch.ar.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: على 5 | 6 | # The title of the **Off** button of the Switch 7 | off: إيقاف 8 | -------------------------------------------------------------------------------- /messages/switch/switch.bg-BG.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Вкл. 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Изкл. 8 | -------------------------------------------------------------------------------- /messages/switch/switch.cs-CZ.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Zap 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Vyp 8 | -------------------------------------------------------------------------------- /messages/switch/switch.da-DK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: På 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Af 8 | -------------------------------------------------------------------------------- /messages/switch/switch.de-AT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Ein 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Aus 8 | -------------------------------------------------------------------------------- /messages/switch/switch.de-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Ein 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Aus 8 | -------------------------------------------------------------------------------- /messages/switch/switch.de-DE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Ein 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Aus 8 | -------------------------------------------------------------------------------- /messages/switch/switch.de-LI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Auf 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Aus 8 | -------------------------------------------------------------------------------- /messages/switch/switch.en-AU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.en-CA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.en-GB.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.en-US.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.es-AR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.es-BO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.es-CL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.es-CO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.es-CR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.es-DO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.es-EC.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.es-ES.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.es-GT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.es-HN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.es-MX.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.es-NI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.es-PA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.es-PE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.es-PR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.es-PY.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.es-US.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.es-UY.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.es-VE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.fa-IR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: فعال 5 | 6 | # The title of the **Off** button of the Switch 7 | off: غیرفعال 8 | -------------------------------------------------------------------------------- /messages/switch/switch.fi-FI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.fr-BE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Activé 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Désactivé 8 | -------------------------------------------------------------------------------- /messages/switch/switch.fr-CA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Activé 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Désactivé 8 | -------------------------------------------------------------------------------- /messages/switch/switch.fr-CD.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Activé 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Désactivé 8 | -------------------------------------------------------------------------------- /messages/switch/switch.fr-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Activé 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Désactivé 8 | -------------------------------------------------------------------------------- /messages/switch/switch.fr-CI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Activé 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Désactivé 8 | -------------------------------------------------------------------------------- /messages/switch/switch.fr-CM.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Activé 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Désactivé 8 | -------------------------------------------------------------------------------- /messages/switch/switch.fr-FR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Activé 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Désactivé 8 | -------------------------------------------------------------------------------- /messages/switch/switch.fr-HT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Activé 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Désactivé 8 | -------------------------------------------------------------------------------- /messages/switch/switch.fr-LU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Activé 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Désactivé 8 | -------------------------------------------------------------------------------- /messages/switch/switch.fr-MA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Activé 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Désactivé 8 | -------------------------------------------------------------------------------- /messages/switch/switch.fr-MC.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Activé 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Désactivé 8 | -------------------------------------------------------------------------------- /messages/switch/switch.fr-ML.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Activé 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Désactivé 8 | -------------------------------------------------------------------------------- /messages/switch/switch.fr-SN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Activé 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Désactivé 8 | -------------------------------------------------------------------------------- /messages/switch/switch.he-IL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: עַל 5 | 6 | # The title of the **Off** button of the Switch 7 | off: כבוי 8 | -------------------------------------------------------------------------------- /messages/switch/switch.hy-AM.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.it-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Acceso 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Spento 8 | -------------------------------------------------------------------------------- /messages/switch/switch.it-IT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.ja-JP.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: に 5 | 6 | # The title of the **Off** button of the Switch 7 | off: オフ 8 | -------------------------------------------------------------------------------- /messages/switch/switch.ka-GE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.nb-NO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: På 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Av 8 | -------------------------------------------------------------------------------- /messages/switch/switch.nl-BE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Op 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Uit 8 | -------------------------------------------------------------------------------- /messages/switch/switch.nl-NL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Op 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Uit 8 | -------------------------------------------------------------------------------- /messages/switch/switch.pl-PL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.pt-BR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Em 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Fora 8 | -------------------------------------------------------------------------------- /messages/switch/switch.pt-PT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Em 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Fora 8 | -------------------------------------------------------------------------------- /messages/switch/switch.ro-RO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Pe 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Oprit 8 | -------------------------------------------------------------------------------- /messages/switch/switch.ru-RU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Вкл. 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Выкл. 8 | -------------------------------------------------------------------------------- /messages/switch/switch.sk-SK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: Zap 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Vyp 8 | -------------------------------------------------------------------------------- /messages/switch/switch.sv-SE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.tr-TR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.uk-UA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: On 5 | 6 | # The title of the **Off** button of the Switch 7 | off: Off 8 | -------------------------------------------------------------------------------- /messages/switch/switch.zh-CN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: 開 5 | 6 | # The title of the **Off** button of the Switch 7 | off: 關 8 | -------------------------------------------------------------------------------- /messages/switch/switch.zh-HK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: 開 5 | 6 | # The title of the **Off** button of the Switch 7 | off: 關 8 | -------------------------------------------------------------------------------- /messages/switch/switch.zh-TW.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | switch: 3 | # The title of the **On** button of the Switch 4 | on: 開 5 | 6 | # The title of the **Off** button of the Switch 7 | off: 關 8 | -------------------------------------------------------------------------------- /messages/textbox/textbox.ar.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.bg-BG.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Изчисти 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.cs-CZ.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Vymazat 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.da-DK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Ryd 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.de-AT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Löschen 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.de-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Löschen 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.de-DE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Löschen 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.de-LI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.en-AU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.en-CA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.en-GB.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.en-US.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.es-AR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.es-BO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.es-CL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.es-CO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.es-CR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.es-DO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.es-EC.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.es-ES.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Borrar 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.es-GT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.es-HN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.es-MX.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.es-NI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.es-PA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.es-PE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.es-PR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.es-PY.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.es-US.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.es-UY.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.es-VE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.fa-IR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: پاک کن 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.fi-FI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.fr-BE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Effacer 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.fr-CA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Effacer 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.fr-CD.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Effacer 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.fr-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Effacer 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.fr-CI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Effacer 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.fr-CM.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Effacer 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.fr-FR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Effacer 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.fr-HT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Effacer 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.fr-LU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Effacer 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.fr-MA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Effacer 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.fr-MC.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Effacer 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.fr-ML.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Effacer 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.fr-SN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Effacer 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.he-IL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.hy-AM.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.it-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Cancella 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.it-IT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Cancella 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.ja-JP.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.ka-GE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: გასუფთავება 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.nb-NO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.nl-BE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.nl-NL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.pl-PL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.pt-BR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.pt-PT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.ro-RO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.ru-RU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.sk-SK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Vyčistiť 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.sv-SE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.tr-TR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Temizle 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.uk-UA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.zh-CN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.zh-HK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/textbox/textbox.zh-TW.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | textbox: 3 | # The title for the **Clear** button in the TextBox. 4 | clear: Clear 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.ar.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.bg-BG.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Затвори 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.cs-CZ.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.da-DK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.de-AT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Schließen 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.de-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Schließen 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.de-DE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Schließen 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.de-LI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Schließen 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.en-AU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.en-CA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.en-GB.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.en-US.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.es-AR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.es-BO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.es-CL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.es-CO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.es-CR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.es-DO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.es-EC.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.es-ES.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.es-GT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.es-HN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.es-MX.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.es-NI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.es-PA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.es-PE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.es-PR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.es-PY.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.es-US.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.es-UY.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.es-VE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.fa-IR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: بستن 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.fi-FI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.fr-BE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.fr-CA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.fr-CD.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.fr-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.fr-CI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.fr-CM.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.fr-FR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.fr-HT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.fr-LU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.fr-MA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.fr-MC.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.fr-ML.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.fr-SN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.he-IL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.hy-AM.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.it-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Chiudi 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.it-IT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Chiudi 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.ja-JP.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.ka-GE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: დახურვა 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.nb-NO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.nl-BE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.nl-NL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.pl-PL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.pt-BR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.pt-PT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.ro-RO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.ru-RU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.sk-SK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Zavrieť 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.sv-SE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.tr-TR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Kapat 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.uk-UA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.zh-CN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.zh-HK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/tooltip/tooltip.zh-TW.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | tooltip: 3 | # The title for the close button 4 | closeTitle: Close 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.ar.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.bg-BG.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Зареди повече... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.cs-CZ.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.da-DK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.de-AT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.de-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.de-DE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.de-LI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.en-AU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.en-CA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.en-GB.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.en-US.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.es-AR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.es-BO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.es-CL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.es-CO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.es-CR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.es-DO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.es-EC.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.es-ES.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.es-GT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.es-HN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.es-MX.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.es-NI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.es-PA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.es-PE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.es-PR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.es-PY.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.es-US.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.es-UY.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.es-VE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.fa-IR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.fi-FI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.fr-BE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.fr-CA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.fr-CD.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.fr-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.fr-CI.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.fr-CM.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.fr-FR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.fr-HT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.fr-LU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.fr-MA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.fr-MC.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.fr-ML.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.fr-SN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.he-IL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.hy-AM.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.it-CH.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.it-IT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.ja-JP.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.ka-GE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.nb-NO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.nl-BE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.nl-NL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.pl-PL.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.pt-BR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.pt-PT.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.ro-RO.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.ru-RU.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.sk-SK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.sv-SE.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.tr-TR.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.uk-UA.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.zh-CN.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.zh-HK.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /messages/treeview/treeview.zh-TW.yml: -------------------------------------------------------------------------------- 1 | kendo: 2 | treeview: 3 | # The title of the Load More button 4 | loadMore: Load more... 5 | -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | messages.es-ES.xlf --------------------------------------------------------------------------------