@@ -208,42 +208,42 @@ public enum FileSyncWorkingStatus {
208
208
var name : String {
209
209
switch self {
210
210
case . connectingLocal:
211
- return " Connecting (local) "
211
+ " Connecting (local) "
212
212
case . connectingRemote:
213
- return " Connecting (remote) "
213
+ " Connecting (remote) "
214
214
case . scanning:
215
- return " Scanning "
215
+ " Scanning "
216
216
case . reconciling:
217
- return " Reconciling "
217
+ " Reconciling "
218
218
case . stagingLocal:
219
- return " Staging (local) "
219
+ " Staging (local) "
220
220
case . stagingRemote:
221
- return " Staging (remote) "
221
+ " Staging (remote) "
222
222
case . transitioning:
223
- return " Transitioning "
223
+ " Transitioning "
224
224
case . saving:
225
- return " Saving "
225
+ " Saving "
226
226
}
227
227
}
228
228
229
229
var description : String {
230
230
switch self {
231
231
case . connectingLocal:
232
- return " The session is attempting to connect to the local endpoint. "
232
+ " The session is attempting to connect to the local endpoint. "
233
233
case . connectingRemote:
234
- return " The session is attempting to connect to the remote endpoint. "
234
+ " The session is attempting to connect to the remote endpoint. "
235
235
case . scanning:
236
- return " The session is scanning the filesystem on each endpoint. "
236
+ " The session is scanning the filesystem on each endpoint. "
237
237
case . reconciling:
238
- return " The session is performing reconciliation. "
238
+ " The session is performing reconciliation. "
239
239
case . stagingLocal:
240
- return " The session is staging files locally "
240
+ " The session is staging files locally "
241
241
case . stagingRemote:
242
- return " The session is staging files on the remote "
242
+ " The session is staging files on the remote "
243
243
case . transitioning:
244
- return " The session is performing transition operations on each endpoint. "
244
+ " The session is performing transition operations on each endpoint. "
245
245
case . saving:
246
- return " The session is recording synchronization history to disk. "
246
+ " The session is recording synchronization history to disk. "
247
247
}
248
248
}
249
249
}
@@ -258,30 +258,30 @@ public enum FileSyncErrorStatus {
258
258
var name : String {
259
259
switch self {
260
260
case . disconnected:
261
- return " Disconnected "
261
+ " Disconnected "
262
262
case . haltedOnRootEmptied:
263
- return " Halted on root emptied "
263
+ " Halted on root emptied "
264
264
case . haltedOnRootDeletion:
265
- return " Halted on root deletion "
265
+ " Halted on root deletion "
266
266
case . haltedOnRootTypeChange:
267
- return " Halted on root type change "
267
+ " Halted on root type change "
268
268
case . waitingForRescan:
269
- return " Waiting for rescan "
269
+ " Waiting for rescan "
270
270
}
271
271
}
272
272
273
273
var description : String {
274
274
switch self {
275
275
case . disconnected:
276
- return " The session is unpaused but not currently connected or connecting to either endpoint. "
276
+ " The session is unpaused but not currently connected or connecting to either endpoint. "
277
277
case . haltedOnRootEmptied:
278
- return " The session is halted due to the root emptying safety check. "
278
+ " The session is halted due to the root emptying safety check. "
279
279
case . haltedOnRootDeletion:
280
- return " The session is halted due to the root deletion safety check. "
280
+ " The session is halted due to the root deletion safety check. "
281
281
case . haltedOnRootTypeChange:
282
- return " The session is halted due to the root type change safety check. "
282
+ " The session is halted due to the root type change safety check. "
283
283
case . waitingForRescan:
284
- return " The session is waiting to retry scanning after an error during the previous scan. "
284
+ " The session is waiting to retry scanning after an error during the previous scan. "
285
285
}
286
286
}
287
287
}
0 commit comments