diff --git a/composeApp/src/commonMain/composeResources/values-es/quantiative.xml b/composeApp/src/commonMain/composeResources/values-es/quantiative.xml
new file mode 100644
index 0000000..1925ef2
--- /dev/null
+++ b/composeApp/src/commonMain/composeResources/values-es/quantiative.xml
@@ -0,0 +1,12 @@
+
+ ¿Número de Partido?
+ ¡Tu Nombre!
+ ¿Número de Equipo?
+ Disparo Precargado
+ Combustible del Puesto de Avanzada
+ Combustible del Depósito
+ Combustible de la Zona Neutral
+ Cycles
+ Herding
+ incapacitated
+
\ No newline at end of file
diff --git a/composeApp/src/commonMain/composeResources/values-kn/quantiative.xml b/composeApp/src/commonMain/composeResources/values-kn/quantiative.xml
new file mode 100644
index 0000000..dfc7960
--- /dev/null
+++ b/composeApp/src/commonMain/composeResources/values-kn/quantiative.xml
@@ -0,0 +1,13 @@
+
+
+ Match sankhye enu?
+ ninna hesarenu!
+ Team sankhye eshtu?
+ Shot Ready maadi
+ Outpost inda Indhana
+ Depot inda Indhana
+ Nuetral Zone inda Indhana
+ Chakra
+ Chendugalannu ottu maaduvudu
+ Asamartha
+
\ No newline at end of file
diff --git a/composeApp/src/commonMain/composeResources/values-zh-rCN/quantitative.xml b/composeApp/src/commonMain/composeResources/values-zh-rCN/quantitative.xml
new file mode 100644
index 0000000..893f9af
--- /dev/null
+++ b/composeApp/src/commonMain/composeResources/values-zh-rCN/quantitative.xml
@@ -0,0 +1,13 @@
+
+
+ 比赛编号
+ 记录人姓名
+ 队伍编号
+ 预装弹发射数
+ 来自前哨站的燃料数
+ 来自补给站的燃料数
+ 来自中立区的燃料数
+ Cycles
+ Herding
+ incapacitated
+
\ No newline at end of file
diff --git a/composeApp/src/commonMain/composeResources/values-zh-rTW/quantitative.xml b/composeApp/src/commonMain/composeResources/values-zh-rTW/quantitative.xml
new file mode 100644
index 0000000..9b0d22c
--- /dev/null
+++ b/composeApp/src/commonMain/composeResources/values-zh-rTW/quantitative.xml
@@ -0,0 +1,14 @@
+
+
+
+ 匹配號碼
+ 隊員姓名
+ 隊號
+ 射擊預裝
+ 球來自隊員裝球位
+ 球來自取球倉
+ 球來自中立區
+ :循環次數
+ 運球
+ 停止運作
+
\ No newline at end of file
diff --git a/composeApp/src/commonMain/composeResources/values/prematch.xml b/composeApp/src/commonMain/composeResources/values/prematch.xml
deleted file mode 100644
index bc546be..0000000
--- a/composeApp/src/commonMain/composeResources/values/prematch.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
- Match Number???
- Your Name Human!
- TeamNumber ;)
-
\ No newline at end of file
diff --git a/composeApp/src/commonMain/composeResources/values/quantitative.xml b/composeApp/src/commonMain/composeResources/values/quantitative.xml
index e820f54..a991491 100644
--- a/composeApp/src/commonMain/composeResources/values/quantitative.xml
+++ b/composeApp/src/commonMain/composeResources/values/quantitative.xml
@@ -1,4 +1,7 @@
+ Match Number???
+ Your Name Human!
+ TeamNumber ;)
Shot Preload
Fuel from Outpost
Fuel from Depot
diff --git a/composeApp/src/commonMain/composeResources/values/teleop.xml b/composeApp/src/commonMain/composeResources/values/teleop.xml
deleted file mode 100644
index 766c146..0000000
--- a/composeApp/src/commonMain/composeResources/values/teleop.xml
+++ /dev/null
@@ -1,3 +0,0 @@
-
- MyStringText
-
\ No newline at end of file
diff --git a/composeApp/src/commonMain/kotlin/com/team2813/scouting/scoutingapp2026/Quantitative.kt b/composeApp/src/commonMain/kotlin/com/team2813/scouting/scoutingapp2026/Quantitative.kt
index 5b5fbcd..4674952 100644
--- a/composeApp/src/commonMain/kotlin/com/team2813/scouting/scoutingapp2026/Quantitative.kt
+++ b/composeApp/src/commonMain/kotlin/com/team2813/scouting/scoutingapp2026/Quantitative.kt
@@ -50,12 +50,12 @@ import scoutingapp2026.composeapp.generated.resources.auto_fuel_depot
import scoutingapp2026.composeapp.generated.resources.auto_fuel_neutral
import scoutingapp2026.composeapp.generated.resources.auto_fuel_outpost
import scoutingapp2026.composeapp.generated.resources.auto_shoot_preload
-import scoutingapp2026.composeapp.generated.resources.matchNumber
-import scoutingapp2026.composeapp.generated.resources.nameOfPerson
-import scoutingapp2026.composeapp.generated.resources.teamNumber
import scoutingapp2026.composeapp.generated.resources.cycles
import scoutingapp2026.composeapp.generated.resources.herding
import scoutingapp2026.composeapp.generated.resources.incap
+import scoutingapp2026.composeapp.generated.resources.matchNumber
+import scoutingapp2026.composeapp.generated.resources.nameOfPerson
+import scoutingapp2026.composeapp.generated.resources.teamNumber
@Composable
fun IncrementButton(
@@ -294,8 +294,10 @@ fun Teleoperated(
modifier = Modifier.fillMaxWidth(0.5f),
horizontalAlignment = Alignment.CenterHorizontally,
verticalArrangement = Arrangement.spacedBy(20.dp)) {
- IncrementButton(stringResource(Res.string.cycles),
- teleopData.Cycles, enabled = true)
+ IncrementButton(
+ stringResource(Res.string.cycles),
+ teleopData.Cycles,
+ enabled = true)
}
}
val fuelAmount = mutableIntStateOf(0)