update strings script for updating permission strings

pull/1023/head
Ryan ZHAO 8 months ago
parent aee69887cd
commit aaea97fbdb

@ -237,43 +237,41 @@ enum ScriptAction: String {
}
break
case .updatePermissionStrings:
print("------------ Updating permission strings ------------")
var strings: JSON = projectState.infoPlistLocalizationFile.strings
var updatedInfoPlistJSON: JSON = projectState.infoPlistLocalizationFile.json
ProjectState.permissionStrings.forEach { key in
guard let nsKey: String = ProjectState.permissionStringsMap[key] else { return }
var updatedStrings: JSON = projectState.localizationFile.strings[key] as! JSON
if let localizations: JSON = updatedStrings["localizations"] as? JSON {
var updatedLocalizations: JSON = localizations
localizations.forEach { locale , stringUint in
var updatedStringUnit: JSON = stringUint as! JSON
if let translation: JSON = updatedStringUnit["stringUnit"] as? JSON,
let value: String = translation["value"] as? String
{
var updatedTranslation: JSON = translation
let updatedValue: String = value.replacingOccurrences(of: "{app_name}", with: "Session")
updatedTranslation["value"] = updatedValue
updatedStringUnit["stringUnit"] = updatedTranslation
updatedLocalizations[locale] = updatedStringUnit
}
}
updatedStrings["localizations"] = updatedLocalizations
}
strings[nsKey] = updatedStrings
}
updatedInfoPlistJSON["strings"] = strings
if let data: Data = try? JSONSerialization.data(withJSONObject: updatedInfoPlistJSON, options: [ .fragmentsAllowed ]) {
do {
try data.write(to: URL(fileURLWithPath: projectState.infoPlistLocalizationFile.path), options: [.atomic])
} catch {
fatalError("Could not write to InfoPlist.xcstrings, error: \(error)")
}
}
break
// print("------------ Updating permission strings ------------")
// var updatedInfoPlistJSON: JSON = projectState.infoPlistLocalizationFile.json
// var strings: JSON = updatedInfoPlistJSON["strings"] as! JSON
// projectState.localizationFiles.forEach { file in
// ProjectState.permissionStrings.forEach { key in
// guard let nsKey: String = ProjectState.permissionStringsMap[key] else { return }
// var keyPhrases: JSON = strings[nsKey] as! JSON
// var localizations: JSON = keyPhrases["localizations"] as! JSON
// if let phrase: String = file.keyPhrase[key]?.value {
// if let translations: JSON = localizations[file.name] as? JSON {
// var stringUnit: JSON = translations["stringUnit"] as! JSON
// if (stringUnit["value"] as! String) != phrase {
// stringUnit["state"] = "translated"
// stringUnit["value"] = phrase
// }
// } else {
// let stringUnit: JSON = [
// "state": "translated",
// "value": phrase.replacingOccurrences(of: "\"", with: "")
// ]
// localizations[file.name] = ["stringUnit": stringUnit]
// }
// }
// keyPhrases["localizations"] = localizations
// strings[nsKey] = keyPhrases
// }
// }
// updatedInfoPlistJSON["strings"] = strings
//
// if let data: Data = try? JSONSerialization.data(withJSONObject: updatedInfoPlistJSON, options: [ .fragmentsAllowed ]) {
// do {
// try data.write(to: URL(fileURLWithPath: projectState.infoPlistLocalizationFile.path), options: [.atomic])
// } catch {
// fatalError("Could not write to InfoPlist.xcstrings, error: \(error)")
// }
// }
}
print("------------ Complete ------------")
@ -402,6 +400,7 @@ extension ProjectState {
struct XCStringsFile: Locatable {
let name: String
let path: String
var json: JSON
var strings: JSON
var locales: Set<String> = Set()
@ -413,7 +412,8 @@ extension ProjectState {
.components(separatedBy: "/")
.last ?? "Unknown")
self.path = path
self.strings = XCStringsFile.parse(path)["strings"] as! JSON
self.json = XCStringsFile.parse(path)
self.strings = self.json["strings"] as! JSON
self.strings.values.forEach { value in
if let localizations: JSON = (value as? JSON)?["localizations"] as? JSON {
self.locales.formUnion(localizations.map{ $0.key })

@ -4680,6 +4680,7 @@
FD5E93D52C12D8120038C25A /* Add Commit Hash To Build Info Plist */,
FD5E93D72C12DA400038C25A /* Add App Group To Build Info Plist */,
FDC498C12AC1775400EDD897 /* Ensure Localizable.strings included */,
943BC5A02C6F26370066A56A /* Ensure InfoPlist.xcstrings updated */,
);
buildRules = (
);
@ -5435,6 +5436,26 @@
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
943BC5A02C6F26370066A56A /* Ensure InfoPlist.xcstrings updated */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
);
name = "Ensure InfoPlist.xcstrings updated";
outputFileListPaths = (
);
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Scripts/LintLocalizableStrings.swift\" update\n";
showEnvVarsInLog = 0;
};
9CD244FBE60C4042B0E01930 /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;

File diff suppressed because one or more lines are too long

@ -620,7 +620,7 @@ class SettingsViewModel: SessionTableViewModel, NavigationItemSource, Navigatabl
switch (avatarUpdate, error) {
case (.remove, _): return "profileDisplayPictureRemoveError".localized()
case (_, .avatarUploadMaxFileSizeExceeded):
return "update_profile_modal_max_size_error_title".localized()
return "attachmentsErrorSize".localized()
default: return "profileErrorUpdate".localized()
}

Loading…
Cancel
Save