Skip to content

Commit 5106a54

Browse files
committed
ux: add time limits to description of time parameter of synchronize intent
Signed-off-by: Tommy van der Vorst <tommy@pixelspark.nl>
1 parent d0f70d1 commit 5106a54

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

Localizable.xcstrings

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15936,48 +15936,48 @@
1593615936
}
1593715937
}
1593815938
},
15939-
"How much time to allow for synchronization." : {
15939+
"How much time to allow for synchronization (must be between 1 and 15 seconds)." : {
1594015940
"localizations" : {
1594115941
"de" : {
1594215942
"stringUnit" : {
1594315943
"state" : "translated",
15944-
"value" : "Wie viel Zeit für die Synchronisierung einplanen."
15944+
"value" : "Wie viel Zeit für die Synchronisierung zulassen (muss zwischen 1 und 15 Sekunden liegen)."
1594515945
}
1594615946
},
1594715947
"es" : {
1594815948
"stringUnit" : {
1594915949
"state" : "translated",
15950-
"value" : "Cuánto tiempo permitir para la sincronización."
15950+
"value" : "Cuánto tiempo permitir para la sincronización (debe estar entre 1 y 15 segundos)."
1595115951
}
1595215952
},
1595315953
"it" : {
1595415954
"stringUnit" : {
1595515955
"state" : "translated",
15956-
"value" : "Quanto tempo dedicare alla sincronizzazione."
15956+
"value" : "Quanto tempo consentire per la sincronizzazione (deve essere tra 1 e 15 secondi)."
1595715957
}
1595815958
},
1595915959
"ja" : {
1596015960
"stringUnit" : {
1596115961
"state" : "translated",
15962-
"value" : "同期に必要な時間。"
15962+
"value" : "同期に必要な時間を指定してください(1〜15秒の間で指定する必要があります)。"
1596315963
}
1596415964
},
1596515965
"nl" : {
1596615966
"stringUnit" : {
1596715967
"state" : "translated",
15968-
"value" : "Hoeveel tijd nodig voor synchronisatie."
15968+
"value" : "Hoeveel tijd toestaan voor synchronisatie (moet tussen 1 en 15 seconden zijn)."
1596915969
}
1597015970
},
1597115971
"uk" : {
1597215972
"stringUnit" : {
1597315973
"state" : "translated",
15974-
"value" : "Скільки часу виділити на синхронізацію."
15974+
"value" : "Скільки часу виділити на синхронізацію (має бути від 1 до 15 секунд)."
1597515975
}
1597615976
},
1597715977
"zh-Hans" : {
1597815978
"stringUnit" : {
1597915979
"state" : "translated",
15980-
"value" : "允许同步的时间。"
15980+
"value" : "允许多少时间进行同步(必须在1到15秒之间)。"
1598115981
}
1598215982
}
1598315983
}

Sushitrain/Intents.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ struct SynchronizeIntent: AppIntent {
152152
@Dependency private var appState: AppState
153153

154154
@Parameter(
155-
title: "Time (seconds)", description: "How much time to allow for synchronization.", default: 10,
155+
title: "Time (seconds)", description: "How much time to allow for synchronization (must be between 1 and 15 seconds).", default: 10,
156156
controlStyle: .field, inclusiveRange: (0, 15))
157157
var time: Int
158158

0 commit comments

Comments
 (0)