Skip to content

Commit

Permalink
fix translated string
Browse files Browse the repository at this point in the history
  • Loading branch information
bwp91 committed Nov 4, 2023
1 parent c611a03 commit 51e3bed
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 11 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to homebridge-config-ui-x will be documented in this file.

## BETA

### Bug Fixes

- Fix text in post-plugin-update modal which wasn't showing translated strings properly
- Revert HomeKit code formatting change

## 4.52.0 (2023-11-04)

### Notable Changes
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@
"@fastify/multipart": "8.0.0",
"@fastify/static": "6.12.0",
"@fastify/swagger": "8.12.0",
"@homebridge/node-pty-prebuilt-multiarch": "^0.11.8",
"@nestjs/axios": "^3.0.1",
"@homebridge/node-pty-prebuilt-multiarch": "0.11.8",
"@nestjs/axios": "3.0.1",
"@nestjs/common": "10.2.7",
"@nestjs/core": "10.2.7",
"@nestjs/jwt": "10.1.1",
Expand All @@ -72,7 +72,7 @@
"class-validator": "0.14.0",
"commander": "7.2.0",
"dayjs": "1.11.10",
"emoji-js": "^3.7.0",
"emoji-js": "3.7.0",
"fastify": "4.23.2",
"fs-extra": "10.1.0",
"node-cache": "5.1.2",
Expand Down Expand Up @@ -153,4 +153,4 @@
"smart home",
"hb-service"
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ <h5 class="modal-title">{{ presentTenseVerb }}: {{ pluginName }}</h5>
<h3 class="text-center primary-text" [translate]="'platform.version.title_service_restart_required'">
Restart Required
</h3>
<p class="text-center grey-text" [translate]="'plugins.manage.message_thanks_for_updating'">
<p class="text-center grey-text" [translate]="'plugins.manage.message_thanks_for_updating'" [translateParams]="{ pluginName: pluginName, targetVersion: targetVersion }">
Thanks for installing the {{ targetVersion }} version of {{ pluginName }}.
</p>
<p *ngIf="!['homebridge', 'homebridge-config-ui-x'].includes(pluginName)" class="text-center grey-text" [translate]="'plugins.manage.message_thanks_for_updating_restart'">
Expand Down

0 comments on commit 51e3bed

Please sign in to comment.