-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathLocalizable.xcstrings
More file actions
1431 lines (1431 loc) · 38.4 KB
/
Copy pathLocalizable.xcstrings
File metadata and controls
1431 lines (1431 loc) · 38.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"sourceLanguage" : "en",
"strings" : {
"" : {
"shouldTranslate" : false
},
"0" : {
"shouldTranslate" : false
},
"0.0" : {
"shouldTranslate" : false
},
"bluetooth_disabled" : {
"comment" : "Bluetooth is disabled",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Bluetooth ist deaktiviert"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Bluetooth is disabled"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Bluetooth está desactivado"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Bluetooth est désactivé"
}
}
}
},
"burst_mode" : {
"comment" : "Burst Mode",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Serienbildmodus"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Burst mode"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Modo ráfaga"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Mode rafale"
}
}
}
},
"camera_turned_off_text" : {
"comment" : "Please make sure the camera is turned on and in range.",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Bitte stellen Sie sicher, dass die Kamera eingeschaltet ist und sich in Reichweite befindet."
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Please make sure the camera is turned on and in range."
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Asegúrese de que la cámara esté encendida y dentro del alcance."
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Assurez-vous que l'appareil photo est allumé et qu'il est à portée."
}
}
}
},
"cancel" : {
"comment" : "Cancel",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Abbrechen"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Cancel"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Cancelar"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Annuler"
}
}
}
},
"canon_cameras" : {
"comment" : "Bluetooth Devices",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Canon-Geräte"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Canon Cameras"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Dispositivos Canon"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Appareils Canon"
}
}
}
},
"close" : {
"comment" : "Closer",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Schließen"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Close"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Cerrar"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Fermer"
}
}
}
},
"connect" : {
"comment" : "Connect",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Verbinden"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Connect"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Conectar"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Se connecter"
}
}
}
},
"connecting_please_wait" : {
"comment" : "Connecting, please wait...",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Verbindung wird hergestellt, bitte warten..."
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Connecting, please wait..."
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Conectando, por favor espere..."
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Connexion, veuillez patienter..."
}
}
}
},
"could_not_autofocus" : {
"comment" : "Could not autofocus",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Konnte nicht automatisch fokussieren"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Could not autofocus"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "No pudo enfocar automáticamente"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "N’a pas pu faire la mise au point"
}
}
}
},
"couldnt_connect_to_camera" : {
"comment" : "Bluetooth connection issue",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Verbindung zur Kamera konnte nicht hergestellt werden"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Could not connect to the camera"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "No se pudo conectar a la cámara"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Connexion à l'appareil impossible"
}
}
}
},
"device_name_will_be_sent_to_camera" : {
"comment" : "The name of your device (...) will be sent to the camera",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Der Name Ihres Geräts “%@“ wird an die Kamera gesendet"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "The name of your device \"%@\" will be sent to the camera"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "El nombre de su dispositivo “%@“ será enviado a la cámara"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Le nom de votre téléphone, « %@ », sera envoyé à l'appareil"
}
}
}
},
"disconnect" : {
"comment" : "Disconnect",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Trennen"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Disconnect"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Desconectar"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Déconnecté"
}
}
}
},
"do_you_want_to_connect_with" : {
"comment" : "Do you want to connect with (...)?",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Möchten Sie sich mit %@ verbinden?"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Do you want to connect with %@?"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "¿Desea conectarse con %@?"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Souhaitez-vous vous connecter à %@ ?"
}
}
}
},
"done" : {
"comment" : "Done",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Fertig"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Done"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Hecho"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "OK"
}
}
}
},
"exposure_info_text" : {
"comment" : "If exposure is set to 0",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Wenn die belichtungszeit auf 0 eingestellt ist,\nmuss sie an der kamera eingestellt werden.\n\nWenn sie nicht 0 ist, stellen Sie sicher,\ndass die kamera im Bulb-Modus ist."
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "If exposure time is set to 0,\nit must be set on camera.\n\nIf it’s not 0, ensure\nthe camera is in bulb mode."
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Si el tiempo de exposición está establecido en 0, debe configurarse en la cámara.\nSi no es 0, asegúrese de que la cámara esté en modo bulbo."
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Si la durée d'exposition est 0,\nelle doit être configurée sur l’appareil.\n\nSi elle n’est pas 0, veillez à ce que\nl’appareil soit en mode poses longues."
}
}
}
},
"exposure_time" : {
"comment" : "Exposure time",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Belichtungszeit"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Exposure time"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Tiempo de exposición"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Durée d’exposition"
}
}
}
},
"geotagging" : {
"comment" : "Geotagging",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Geotagging"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Geotagging"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Geotagging"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Géotag"
}
}
}
},
"geotagging_when_starting" : {
"comment" : "Get GPS coordinates once when the app starts",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "GPS-Koordinaten einmal beim Start der App abrufen"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Get GPS coordinates once when the app starts"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Obtener coordenadas GPS una vez al iniciar la aplicación"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Obtenir les coordonnées GPS une seule fois au démarrage de l'application"
}
}
}
},
"geotagging_when_triggering" : {
"comment" : "Get GPS coordinates every time a photo is taken",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "GPS-Koordinaten jedes Mal abrufen, wenn ein Foto aufgenommen wird"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Get GPS coordinates every time a photo is taken"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Obtener coordenadas GPS cada vez que se toma una foto"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Obtenir les coordonnées GPS à chaque fois qu'une photo est prise"
}
}
}
},
"gps_data_sent" : {
"comment" : "GPS data sent to the camera",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "GPS-Daten an die Kamera gesendet"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "GPS data sent to the camera"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Datos GPS enviados a la cámara"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Données GPS envoyées à l'appareil photo"
}
}
}
},
"gps_interval" : {
"comment" : "Get GPS data every",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "GPS-Daten abrufen alle"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Get GPS data every"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Obtener datos GPS cada"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Obtenir des données GPS toutes les"
}
}
}
},
"gps_interval_text" : {
"comment" : "If interval is 0, the location with only be acquired and sent to the camera when the app starts.",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Wenn das Intervall 0 ist, wird der Standort nur einmal erfasst und an die Kamera gesendet, wenn die App startet.\n\nAndernfalls wird Ihr Standort alle x Sekunden aktualisiert. Wenn das GPS-Signal jedoch länger als x Sekunden benötigt, um Ihre Position zu erfassen, können einige Aktualisierungen übersprungen werden. Das bedeutet, dass der Zeitabstand zwischen den Standortaktualisierungen nicht immer exakt ist."
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "If interval is 0, the location will only be acquired and sent to the camera once, when the app starts.\n\nIf not, it will update your location every x seconds. However, if the GPS signal takes longer than x seconds to lock onto your position, some updates may be skipped. This means the timing between location updates might not always be exact."
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Si el intervalo es 0, la ubicación se adquirirá y enviará a la cámara una sola vez, al iniciar la aplicación.\n\nDe lo contrario, actualizará su ubicación cada x segundos. Sin embargo, si la señal GPS tarda más de x segundos en fijar su posición, algunas actualizaciones pueden saltarse. Esto significa que el tiempo entre las actualizaciones de ubicación puede no ser siempre exacto."
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Si l'intervalle est 0, la position ne sera acquise et envoyée à l’appareil qu'une seule fois, au démarrage de l'application.\n\nDans le cas contraire, votre position sera mise à jour toutes les x secondes. Cependant, si le signal GPS met plus de x secondes à se verrouiller sur votre position, certaines mises à jour peuvent ne pas fonctionner. Cela signifie que le délai entre les mises à jour de la position n'est pas toujours exact."
}
}
}
},
"gps_not_enabled" : {
"comment" : "GPS not enabled on camera",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "GPS ist auf der Kamera nicht aktiviert"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "GPS not enabled on camera"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "GPS no está activado en la cámara"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Le GPS n'est pas activé sur l'appareil photo"
}
}
}
},
"Info" : {
"shouldTranslate" : false
},
"intervalometer" : {
"comment" : "Intervalometer",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Intervallometer"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Intervalometer"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Intervalómetro"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Intervallomètre"
}
}
}
},
"location_access_denied" : {
"comment" : "Location access denied",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Standortzugriff verweigert"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Location access denied"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Acceso a la ubicación denegado"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Accès à la position refusé"
}
}
}
},
"location_access_denied_text" : {
"comment" : "Please enable location access in settings",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Um diese Funktion zu nutzen, aktivieren Sie bitte den Standortzugriff in den Einstellungen."
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "To use this feature, please enable location access in settings."
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Para usar esta función, active el acceso a la ubicación en la configuración."
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Pour utiliser cette fonction, activez l'accès à la localisation dans les paramètres."
}
}
}
},
"lost_connection_to_camera" : {
"comment" : "Lost connection to the camera",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Verbindung zur Kamera verloren"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Lost connection to the camera"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Conexión con la cámara perdida"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Connexion avec l'appareil photo perdue"
}
}
}
},
"lost_connection_to_camera_text" : {
"comment" : "Please make sure the camera is in range and its battery is charged.",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Bitte stellen Sie sicher, dass die Kamera in Reichweite ist und der Akku geladen ist."
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Please make sure the camera is in range and its battery is charged."
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Asegúrese de que la cámara esté dentro del alcance y de que su batería esté cargada."
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Assurez-vous que l'appareil photo est à portée et que sa batterie est chargée."
}
}
}
},
"lost_connection_to_camera_unexpected" : {
"comment" : "Lost connection to the camera unexpectedly",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Verbindung zur Kamera unerwartet verloren"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Lost connection to the camera unexpectedly"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Conexión con la cámara perdida inesperadamente"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Connexion avec l'appareil photo perdue inopinément"
}
}
}
},
"manual_geotagging" : {
"comment" : "Get GPS data manually",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "GPS-Daten manuell abrufen"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Get GPS data manually"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Obtener datos GPS manualmente"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Obtenir manuellement les données GPS"
}
}
}
},
"no_devices_found" : {
"comment" : "No devices found",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Keine geräte gefunden"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "No devices found"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "No se encontraron dispositivos"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Aucun appareil trouvé"
}
}
}
},
"no_geotagging" : {
"comment" : "No geotagging",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Kein Geotagging"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "No geotagging"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Sin geotagging"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Pas de géotag"
}
}
}
},
"number_of_photos" : {
"comment" : "Number of photos",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Anzahl der fotos"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Number of photos"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
"value" : "Número de fotos"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",