Skip to content

Commit febe7b3

Browse files
authored
Fixed Unicode Characters shown in Sam Version check message (#927)
* Adding unicode characters * Normal spaces => non-breaking spaces
1 parent e343eff commit febe7b3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.nls.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@
209209
"AWS.samcli.local.invoke.debugger.timeout": "The SAM process did not make the debugger available within the time limit",
210210
"AWS.samcli.notification.not.found": "Unable to find SAM CLI. It is required in order to work with Serverless Applications locally.",
211211
"AWS.samcli.notification.unexpected.validation.issue": "An unexpected issue occured while validating SAM CLI: {0}",
212-
"AWS.samcli.notification.version.invalid": "Your SAM CLI version {0} does not meet requirements ({1}\u00a0\u2264\u00a0version\u00a0<\u00a0{2}). {3}",
212+
"AWS.samcli.notification.version.invalid": "Your SAM CLI version {0} does not meet requirements ({1} ≤ version < {2}). {3}",
213213
"AWS.samcli.notification.version.valid": "Your SAM CLI version {0} is valid.",
214214
"AWS.samcli.recommend.update.toolkit": "Please check the Marketplace for an updated Toolkit.",
215215
"AWS.samcli.recommend.update.samcli": "Please update your SAM CLI.",

src/shared/sam/cli/samCliValidationNotification.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ function makeVersionValidationNotificationMessage(validationResult: SamCliVersio
129129

130130
return localize(
131131
'AWS.samcli.notification.version.invalid',
132-
'Your SAM CLI version {0} does not meet requirements ({1}\u00a0\u2264\u00a0version\u00a0<\u00a0{2}). {3}',
132+
'Your SAM CLI version {0} does not meet requirements ({1} ≤ version < {2}). {3}',
133133
validationResult.version,
134134
MINIMUM_SAM_CLI_VERSION_INCLUSIVE,
135135
MAXIMUM_SAM_CLI_VERSION_EXCLUSIVE,

0 commit comments

Comments
 (0)