Summary
The translations of the authorizationPrompt string found in Sparkle/SPUInstallerDriver.m are missing:
// Changing this authorization prompt is a little complicated because the
// Auth database retains and caches the right we use, and there isn't a good way
// of updating the prompt. See code in SUInstallerLauncher.m
// For this reason, we don't provide localized strings for this prompt yet
// (and I believe, the authorization framework has a different way of specifying localizations..)
NSString *authorizationPrompt;
if ([mainBundleName isEqualToString:hostName]) {
authorizationPrompt = [NSString stringWithFormat:@"%1$@ wants permission to update.", hostName];
} else {
authorizationPrompt = [NSString stringWithFormat:@"%1$@ wants permission to update %2$@.", mainBundleName, hostName];
}
Example. Missing french translation.
Possible Fix
Re-instate former translations or translate the strings with missing translations.
Version
This issue impacts at least 2.6.2 and 2.6.4.
Summary
The translations of the
authorizationPromptstring found inSparkle/SPUInstallerDriver.mare missing:Example. Missing french translation.
Possible Fix
Re-instate former translations or translate the strings with missing translations.
Version
This issue impacts at least
2.6.2and2.6.4.