Skip to content

Commit

Permalink
Fix localization string
Browse files Browse the repository at this point in the history
  • Loading branch information
estruyf committed Jan 30, 2024
1 parent bb2ba5d commit 11233ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/helpers/ContentType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,8 +273,8 @@ export class ContentType {
const configPath = await Settings.projectConfigPath();
const notificationAction = await Notifications.info(
overrideBool
? l10n.t(LocalizationKey.helpersContentTypeGenerateUpdatedSuccess)
: l10n.t(LocalizationKey.helpersContentTypeGenerateGeneratedSuccess),
? l10n.t(LocalizationKey.helpersContentTypeGenerateUpdatedSuccess, contentTypeName)
: l10n.t(LocalizationKey.helpersContentTypeGenerateGeneratedSuccess, contentTypeName),
configPath && (await existsAsync(configPath))
? l10n.t(LocalizationKey.commonOpenSettings)
: undefined
Expand Down

0 comments on commit 11233ba

Please sign in to comment.