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.
26 lines
535 B
26 lines
535 B
2 years ago
|
export interface LocalSearchTranslations {
|
||
2 years ago
|
button?: ButtonTranslations
|
||
|
modal?: ModalTranslations
|
||
|
}
|
||
|
|
||
|
interface ButtonTranslations {
|
||
|
buttonText?: string
|
||
|
buttonAriaLabel?: string
|
||
|
}
|
||
|
|
||
|
interface ModalTranslations {
|
||
|
displayDetails?: string
|
||
|
resetButtonTitle?: string
|
||
|
backButtonTitle?: string
|
||
|
noResultsText?: string
|
||
|
footer?: FooterTranslations
|
||
|
}
|
||
|
|
||
|
interface FooterTranslations {
|
||
|
selectText?: string
|
||
|
selectKeyAriaLabel?: string
|
||
|
navigateText?: string
|
||
|
navigateUpKeyAriaLabel?: string
|
||
|
navigateDownKeyAriaLabel?: string
|
||
|
}
|