You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! Just chiming in with a quick i18n request amidst updating Tuba's Norwegian Bokmaal translations.
src/Widgets/Status.vala#L393:
// translators: the variable is the post visibility e.g. Public, Unlisted...
{_("Copy %s Post Link?").printf (accounts.active.visibility[status.formal.visibility].name), false},
Surgically injecting a word/phrase into a sentence this way is inconvenient for many languages, since there might be surrounding words that require different conjugations depending on the injected one, or vice versa. For Norwegian, I'd also like to avoid Title Case Strings since that convention doesn't exist here, and a capitalized word being injected programmatically means that I have to resort to awkward wording to accomplish this ("Copy Link to Post of Type '%s'?").
Ideally, each possible post type would have its very own "Copy Post Link" string, so translators can conjugate words properly. Or you could try to find a suitable term for all those kinds of posts and make the string generic, e.g. "Copy Restricted Post Link?", albeit the added context of an exact type is nice to have.
Describe the request
Hi! Just chiming in with a quick i18n request amidst updating Tuba's Norwegian Bokmaal translations.
src/Widgets/Status.vala#L393:
Surgically injecting a word/phrase into a sentence this way is inconvenient for many languages, since there might be surrounding words that require different conjugations depending on the injected one, or vice versa. For Norwegian, I'd also like to avoid Title Case Strings since that convention doesn't exist here, and a capitalized word being injected programmatically means that I have to resort to awkward wording to accomplish this ("Copy Link to Post of Type '%s'?").
Ideally, each possible post type would have its very own "Copy Post Link" string, so translators can conjugate words properly. Or you could try to find a suitable term for all those kinds of posts and make the string generic, e.g. "Copy Restricted Post Link?", albeit the added context of an exact type is nice to have.
Implementation Details
The text was updated successfully, but these errors were encountered: