Fix Italian spacing for notification others count#2390
Fix Italian spacing for notification others count#2390
Conversation
There was a problem hiding this comment.
This PR is being reviewed by Cursor Bugbot
Details
You are on the Bugbot Free tier. On this plan, Bugbot will review limited PRs each billing cycle.
To receive Bugbot reviews on all of your PRs, visit the Cursor dashboard to activate Pro and start your 14-day free trial.
Unnecessary trailing space causes double spacing in UI
The Italian translations for notifications-others-count %lld include a trailing space that causes an incorrect double space in the notifications UI. Since the string is followed by Text(" ⸱ ") in NotificationRowAppendTextView.swift, which already contains a leading space, adding a trailing space to the translation results in redundant spacing before the separator dot.
IceCubesApp/Resources/Localization/Localizable.xcstrings#L1-L2
Localization file truncated and contains invalid JSON
The Localizable.xcstrings file has been accidentally truncated to only three lines, resulting in an invalid JSON structure and the loss of almost all localized strings in the application. This corruption will cause build failures and prevent the application from displaying any other translated text correctly.
IceCubesApp/Resources/Localization/Localizable.xcstrings#L1-L3
Unnecessary trailing space causes double spacing in UI
The Italian translations for notifications-others-count %lld include a trailing space that causes an incorrect double space in the notifications UI. Since the string is followed by Text(" ⸱ ") in NotificationRowAppendTextView.swift, which already contains a leading space, adding a trailing space to the translation results in redundant spacing before the separator dot.
IceCubesApp/Resources/Localization/Localizable.xcstrings#L1-L2
Localization file truncated and contains invalid JSON
The Localizable.xcstrings file has been accidentally truncated to only three lines, resulting in an invalid JSON structure and the loss of almost all localized strings in the application. This corruption will cause build failures and prevent the application from displaying any other translated text correctly.
Motivation
notifications-others-count %lldplural strings inIceCubesApp/Resources/Localization/Localizable.xcstrings.Description
oneandother) for the keynotifications-others-count %lldinsideIceCubesApp/Resources/Localization/Localizable.xcstrings."e %lld altro"and"e %lld altri"to" e %lld altro "and" e %lld altri "respectively.IceCubesApp/Resources/Localization/Localizable.xcstringswas modified.Testing
XcodeBuildMCPwas unavailable in this environment.Codex Task
Note
Adjusts Italian localization to display proper spacing in notification summaries.
Localizable.xcstringsvalues fornotifications-others-count %lld(one/other) to include a leading and trailing space around the suffixWritten by Cursor Bugbot for commit d3f4dda. This will update automatically on new commits. Configure here.