Localizations fixes

This commit is contained in:
Arkadiusz Fal
2022-11-19 00:06:13 +01:00
parent be2af82300
commit 780b7ab130
13 changed files with 18 additions and 19 deletions

View File

@@ -12,7 +12,7 @@ struct OpenVideosButton: View {
Image(systemName: imageSystemName)
}
if let text {
Text(text)
Text(text.localized())
.fontWeight(.bold)
}
}

View File

@@ -96,7 +96,6 @@ struct OpenVideosView: View {
Spacer()
#if !os(tvOS)
openFromClipboardButton
#endif
}

View File

@@ -248,7 +248,7 @@ struct VideoContextMenuView: View {
)
}
}
let label = Label("Remove...", systemImage: "trash.fill")
let label = Label("Remove", systemImage: "trash.fill")
.foregroundColor(Color("AppRedColor"))
if #available(iOS 15, macOS 12, *) {