Pārlūkot izejas kodu

New Watch App Localizations

Jon Mårtensson 4 gadi atpakaļ
vecāks
revīzija
84ee03cf99

+ 9 - 0
FreeAPS/Sources/Localizations/Main/en.lproj/Localizable.strings

@@ -395,6 +395,15 @@ Enact a temp Basal or a temp target */
 /* Other CGM setting */
 "Other" = "Other";
 
+/* Whatch app alert */
+"Set temp targets presets on iPhone first" = "Set temp targets presets on iPhone first";
+
+/* Updating Watch app */
+"Updating..." = "Updating...";
+
+/* Header for Temp targets in Watch app */
+"Temp Targets" = "Temp Targets";
+
 
 /* Calendar and Libre transmitter settings --------------*/
 

+ 9 - 0
FreeAPS/Sources/Localizations/Main/sv.lproj/Localizable.strings

@@ -395,6 +395,15 @@ Enact a temp Basal or a temp target */
 /* Other CGM setting */
 "Other" = "Annan";
 
+/* Whatch app alert */
+"Set temp targets presets on iPhone first" = "Spara ett tillfälligt målvärde på din iPhone först";
+
+/* Updating Watch app */
+"Updating..." = "Uppdaterar...";
+
+/* Header for Temp targets in Watch app */
+"Temp Targets" = "Målvärden";
+
 
 /* Calendar and Libre transmitter settings --------------*/
 /* */

+ 9 - 9
FreeAPSWatch WatchKit Extension/Views/BolusView.swift

@@ -25,18 +25,18 @@ struct BolusView: View {
                 } label: { Image(systemName: "minus") }
                     .frame(width: 50)
                 Spacer()
-                Text(numberFormatter.string(from: (steps * Double(state.bolusIncrement ?? 0.1)) as NSNumber)! + " U")
+                Text(numberFormatter.string(from: (steps * Double(state.bolusIncrement ?? 0.1)) as NSNumber)! + NSLocalizedString(" U", comment: "Abbreviation for insulin unit"))
                     .font(.headline)
                     .focusable(true)
                     .digitalCrownRotation(
-                        $steps,
-                        from: 0,
-                        through: Double((state.maxBolus ?? 5) / (state.bolusIncrement ?? 0.1)),
-                        by: 1,
-                        sensitivity: .medium,
-                        isContinuous: false,
-                        isHapticFeedbackEnabled: true
-                    )
+                    $steps,
+                    from: 0,
+                    through: Double((state.maxBolus ?? 5) / (state.bolusIncrement ?? 0.1)),
+                    by: 1,
+                    sensitivity: .medium,
+                    isContinuous: false,
+                    isHapticFeedbackEnabled: true
+                )
                 Spacer()
                 Button {
                     let newValue = steps + 1