Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>

This commit is contained in:
Matt Bruce 2025-12-22 17:26:51 -06:00
parent d270a7bdcd
commit bcd6a75e84
2 changed files with 2477 additions and 2453 deletions

View File

@ -3240,6 +3240,30 @@
}
}
},
"tableLimitsFormat" : {
"comment" : "Format for displaying table limits. First argument is min bet, second is max bet.",
"extractionState" : "stale",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "$%@ - $%@"
}
},
"es-MX" : {
"stringUnit" : {
"state" : "translated",
"value" : "$%@ - $%@"
}
},
"fr-CA" : {
"stringUnit" : {
"state" : "translated",
"value" : "%@ $ - %@ $"
}
}
}
},
"The hand closest to 9 wins." : {
"comment" : "Explanation of how the hand closest to 9 wins in baccarat.",
"localizations" : {

View File

@ -50,17 +50,17 @@ struct CardsDisplayArea: View {
/// Spacing between PLAYER and BANKER hands - reduced on smaller screens
private var handsSpacing: CGFloat {
isLargeScreen ? Design.Spacing.xxxLarge : Design.Spacing.small
isLargeScreen ? Design.Spacing.xxxLarge : Design.Spacing.large
}
/// Horizontal padding inside the container - minimal on phones to maximize card size
/// Horizontal padding inside the container
private var containerPaddingH: CGFloat {
isLargeScreen ? Design.Spacing.xLarge : Design.Spacing.xSmall
isLargeScreen ? Design.Spacing.xLarge : Design.Spacing.medium
}
/// Outer horizontal padding - minimal on phones for edge-to-edge appearance
/// Outer horizontal padding
private var outerPaddingH: CGFloat {
isLargeScreen ? Design.Spacing.large : Design.Spacing.xSmall
isLargeScreen ? Design.Spacing.large : Design.Spacing.small
}
// MARK: - Accessibility