admin/home: better english

Massimo Melina committed Jun 5, 2025 at 21:36 UTC 035236840c09fef93beba50c511fad9129bc11a4
1 file changed +2 -2
admin/src/HomePage.ts
+2 -2
@@ -136,9 +136,9 @@ export default function HomePage() {
136 ),
137 h(Flex, { flexWrap: 'wrap' },
138 !otherVersions && status.updatePossible && status.previousVersionAvailable
139 - && h(Btn, { icon: Restore, onClick: () => update(PREVIOUS_TAG) }, "Install previous version"),
139 + && h(Btn, { icon: Restore, onClick: () => update(PREVIOUS_TAG) }, "Reinstall previous version"),
140 !status.updatePossible ? entry('', h(Link, { href: REPO_URL + 'releases/', target: 'repo' }, "All releases"))
141 - : !otherVersions ? h(Btn, { icon: Colorize, onClick: getOtherVersions, ...rightClickToInstallFromUrl }, "Install other version")
141 + : !otherVersions ? h(Btn, { icon: Colorize, onClick: getOtherVersions, ...rightClickToInstallFromUrl }, "Get another version")
142 : h(Flex, { vert: true }, otherVersions.map((x: any) => h(Update, {
143 info: x,
144 key: x.name,