-
Notifications
You must be signed in to change notification settings - Fork 293
Localized file check-in by OneLocBuild Task: Build definition ID 1218: Build ID 2972073 #8107
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
Changes from all commits
c4cbe71
ca6f8d5
4fdb435
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -164,7 +164,7 @@ | |
| </trans-unit> | ||
| <trans-unit id="CompositeServiceFactoryInstanceAlreadyRegistered"> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nitpick (Important): The The same discrepancy is present across all 12 language XLF files updated in this PR ( Why it matters: If the XLF |
||
| <source>The same instance of 'CompositeExtensionFactory' is already registered</source> | ||
| <target state="needs-review-translation">Už je zaregistrovaná stejná instance CompositeExtensonFactory.</target> | ||
| <target state="new">The same instance of 'CompositeExtensionFactory' is already registered</target> | ||
| <note /> | ||
| </trans-unit> | ||
| <trans-unit id="ConfigurationFileNotFound"> | ||
|
|
||
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.
Nitpick (Minor): The Italian translation now uses
''DataRow''(doubled apostrophes) while the English source string in the.resxisRemove duplicate 'DataRow'(single apostrophes).In .NET resource strings, apostrophes must be doubled (
'') when the value is consumed throughString.Format/composite formatting; they should remain single otherwise. If this string is used withString.Format, the source.resxentry should also use''DataRow''for consistency. If it is not, the Italian translation should revert to single quotes to match.Why it matters: Mismatched escaping leads to strings rendering differently in different locales — Italian users would see
DataRowwith no surrounding quotes ifString.Formatis applied.