Skip to content

Commit

Permalink
Add more "verbatim" to texts.
Browse files Browse the repository at this point in the history
  • Loading branch information
megabitsenmzq committed Nov 16, 2024
1 parent 276ffa2 commit a24d0fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 90 deletions.
88 changes: 0 additions & 88 deletions Pearcleaner/Resources/Localizable.xcstrings
Original file line number Diff line number Diff line change
Expand Up @@ -137,71 +137,6 @@
}
}
},
"%lld" : {

},
"•" : {
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "•"
}
},
"ru" : {
"stringUnit" : {
"state" : "translated",
"value" : "•"
}
},
"sk" : {
"stringUnit" : {
"state" : "translated",
"value" : "•"
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "•"
}
},
"zh-HK" : {
"stringUnit" : {
"state" : "translated",
"value" : "."
}
}
}
},
"⇧ + Scroll" : {
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "⇧ + Scrollen"
}
},
"ru" : {
"stringUnit" : {
"state" : "translated",
"value" : "⇧ + Прокрутка"
}
},
"sk" : {
"stringUnit" : {
"state" : "translated",
"value" : "⇧ + Rolovanie"
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "⇧ + 滚动"
}
}
}
},
"About" : {
"localizations" : {
"de" : {
Expand Down Expand Up @@ -6805,29 +6740,6 @@
}
}
},
"v%@" : {
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "v%@"
}
},
"sk" : {
"stringUnit" : {
"state" : "translated",
"value" : "v%@"
}
},
"zh-HK" : {
"stringUnit" : {
"state" : "translated",
"value" : "v%@"
}
}
},
"shouldTranslate" : false
},
"Version %@" : {
"localizations" : {
"de" : {
Expand Down
4 changes: 2 additions & 2 deletions Pearcleaner/Views/AppListItems.swift
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ struct AppListItems: View {
}

HStack(spacing: 5) {
Text("v\(appInfo.appVersion)")
Text(verbatim: "v\(appInfo.appVersion)")
.font(.footnote)
.lineLimit(1)
.truncationMode(.tail)
.opacity(0.5)
Text("").font(.footnote).opacity(0.5)
Text(verbatim: "").font(.footnote).opacity(0.5)

Text(appInfo.bundleSize == 0 ? String(localized: "calculating") : "\(formatByte(size: appInfo.bundleSize).human)")
.font(.footnote)
Expand Down

0 comments on commit a24d0fe

Please sign in to comment.