-
Notifications
You must be signed in to change notification settings - Fork 289
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🪲 Add support for more quotes (#5791)
Fixes #5785 We already support multiple types of quotes for strings, but we were missing a few. A Polish translator got the build failing because they used a variation of double quotes that we do not support. This PR adds support for: - Polish variation of double quotes: „” - Swedish/Finish variation of double quotes: ”” - Korean quotes: 《》 - Japanese quotes: 「」 **How to test** In level 4, the following print statements should work without an error: ``` print „pol” print ”swe” print 《kor》 print 「jap」 ```
- Loading branch information
1 parent
5a386a4
commit c6e2d43
Showing
5 changed files
with
50 additions
and
67 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters