mirror of https://github.com/vuejs/vitepress
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
606 B
28 lines
606 B
export interface LocalSearchTranslations {
|
|
button?: ButtonTranslations
|
|
modal?: ModalTranslations
|
|
}
|
|
|
|
export interface ButtonTranslations {
|
|
buttonText?: string
|
|
buttonAriaLabel?: string
|
|
}
|
|
|
|
export interface ModalTranslations {
|
|
displayDetails?: string
|
|
resetButtonTitle?: string
|
|
backButtonTitle?: string
|
|
noResultsText?: string
|
|
footer?: FooterTranslations
|
|
}
|
|
|
|
export interface FooterTranslations {
|
|
selectText?: string
|
|
selectKeyAriaLabel?: string
|
|
navigateText?: string
|
|
navigateUpKeyAriaLabel?: string
|
|
navigateDownKeyAriaLabel?: string
|
|
closeText?: string
|
|
closeKeyAriaLabel?: string
|
|
}
|