Skip to content

Commit f9f2257

Browse files
jc21fhennig42
authored andcommitted
Fix missing translation for renew cert dialog
1 parent 9cf61dd commit f9f2257

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

frontend/src/locale/lang/en.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
"certificate.none.subtitle.for-http": "This host will not use HTTPS",
3333
"certificate.none.title": "None",
3434
"certificate.not-in-use": "Not Used",
35+
"certificate.renew": "Renew Certificate",
3536
"certificates": "Certificates",
3637
"certificates.custom": "Custom Certificate",
3738
"certificates.custom.warning": "Key files protected with a passphrase are not supported.",

frontend/src/locale/src/en.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,9 @@
9898
"certificate.not-in-use": {
9999
"defaultMessage": "Not Used"
100100
},
101+
"certificate.renew": {
102+
"defaultMessage": "Renew Certificate"
103+
},
101104
"certificates": {
102105
"defaultMessage": "Certificates"
103106
},

frontend/src/modals/RenewCertificateModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const RenewCertificateModal = EasyModal.create(({ id, visible, remove }: Props)
4747
<Modal show={visible} onHide={isSubmitting ? undefined : remove}>
4848
<Modal.Header closeButton={!isSubmitting}>
4949
<Modal.Title>
50-
<T id="renew-certificate" />
50+
<T id="certificate.renew" />
5151
</Modal.Title>
5252
</Modal.Header>
5353
<Modal.Body>

0 commit comments

Comments
 (0)