-
Notifications
You must be signed in to change notification settings - Fork 63
Some more fixes for v21 #683
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| if (isRunningOnManager) { | ||
| setOf( | ||
| ResourceGroup("values-ja", "strings.xml", "arrays.xml"), | ||
| ).forEach { | ||
| replaceStringsInFile( | ||
| it, | ||
| replacements = | ||
| mapOf( | ||
| "X" to "Twitter", | ||
| "ポスト" to "ツイート", | ||
| ), | ||
| ) | ||
| } | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
String replacement for Japanese is only run when isRunningOnManager
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, setOf ~ forEach is no longer needed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lol I thought, isRunningOnManager is required here as well, will correct it, thanks
|
It is reported that Possible solutions:
Alternatively, this pull request could be merged as-is, and fix in another PR |
ya I have handled it here Utils.kt#L80 |
No description provided.