-
Notifications
You must be signed in to change notification settings - Fork 2
/
irbcam_pt.ts
8713 lines (8712 loc) · 385 KB
/
irbcam_pt.ts
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="pt_PT">
<context>
<name>About</name>
<message>
<source>About IRBCAM</source>
<translation type="vanished">Sobre IRBCAM</translation>
</message>
<message>
<source>IRBCAM version: </source>
<translation type="vanished">Versão do IRBCAM: </translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/About.qml" line="58"/>
<source>Version: </source>
<extracomment>Full sentence: Version: <IRBCAM version number></extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/About.qml" line="65"/>
<source>Build date: </source>
<extracomment>Describes which date the software was built</extracomment>
<translation>Data de compilação: </translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/About.qml" line="69"/>
<source>Copyright © %1 - Hokarob AS</source>
<extracomment>Label. %1 = year</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<source>OK</source>
<translation type="obsolete">OK</translation>
</message>
</context>
<context>
<name>AddTargets</name>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AddTargets.qml" line="92"/>
<source>Index</source>
<extracomment>Title for a text field: Referring to the index in the target list the user wants to add (a) target(s)</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AddTargets.qml" line="94"/>
<source>Select index to insert target(s)</source>
<extracomment>Tool tip for index input</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AddTargets.qml" line="99"/>
<source>Count</source>
<extracomment>Title for a text field: How many targets should be added to the path (target list)</extracomment>
<translation type="unfinished">Cantidad</translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AddTargets.qml" line="101"/>
<source>Select how many copies to insert</source>
<extracomment>Tool tip for count input</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AddTargets.qml" line="166"/>
<source>Insert</source>
<extracomment>Button: Insert target(s)</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AddTargets.qml" line="168"/>
<source>Insert Before</source>
<extracomment>Button: Insert target(s) before a position (index) in the list</extracomment>
<translation type="unfinished">Insertar antes</translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AddTargets.qml" line="199"/>
<source>Insert After</source>
<extracomment>Button: Insert target(s) after a position (index) in the list</extracomment>
<translation type="unfinished">Insertar después</translation>
</message>
</context>
<context>
<name>AdditionalObjectEditor</name>
<message>
<location filename="../../IrbcamQml/Sidebar/AdditionalObjectEditor.qml" line="26"/>
<source>Additional Objects</source>
<extracomment>Title: Referring to user-imported 3D objects</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/AdditionalObjectEditor.qml" line="34"/>
<source>Add</source>
<extracomment>Button: Add additional object</extracomment>
<translation type="unfinished">Adicionar</translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/AdditionalObjectEditor.qml" line="51"/>
<source>User-defined</source>
<extracomment>Dropdown menu item: Select which kind of 3D object should be added</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/AdditionalObjectEditor.qml" line="53"/>
<source>Cuboid</source>
<extracomment>Dropdown menu item: Select which kind of 3D object should be added</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/AdditionalObjectEditor.qml" line="55"/>
<source>Spheroid</source>
<extracomment>Dropdown menu item: Select which kind of 3D object should be added</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/AdditionalObjectEditor.qml" line="57"/>
<source>Cylinder</source>
<extracomment>Dropdown menu item: Select which kind of 3D object should be added</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/AdditionalObjectEditor.qml" line="59"/>
<source>Cone</source>
<extracomment>Dropdown menu item: Select which kind of 3D object should be added</extracomment>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>AdditionalObjectEditorDelegate</name>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="85"/>
<source>Name</source>
<extracomment>Label for a text field: Lets the user name their additional object</extracomment>
<translation type="unfinished">Nome</translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="92"/>
<source>Enter name</source>
<extracomment>Placeholder text for when no object name is entered</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="117"/>
<source>Source</source>
<extracomment>Label for a button: Select a source geometry for the object</extracomment>
<translation type="unfinished">Fonte</translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="119"/>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="165"/>
<source>Color</source>
<extracomment>Label for a colour selector. Select colour for the additional object
----------
Placeholder in a text field. Shown when no colour is entered</extracomment>
<translation type="unfinished">Cor</translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="129"/>
<source>Custom</source>
<extracomment>Dropdown menu item: Select a colour</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="131"/>
<source>Light Gray</source>
<extracomment>Dropdown menu item: Select a colour</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="133"/>
<source>Red</source>
<extracomment>Dropdown menu item: Select a colour</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="135"/>
<source>Green</source>
<extracomment>Dropdown menu item: Select a colour</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="137"/>
<source>Blue</source>
<extracomment>Dropdown menu item: Select a colour</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="168"/>
<source>Any valid SVG color name (eg. 'blue') or hex rgb triplet (eg. '#808080')</source>
<extracomment>Tool tip for text field. Remember, SVG colour names are not translated: https://johndecember.com/html/spec/colorsvg.html</extracomment>
<translation type="unfinished">Qualquer nome de cor SVG válido (por exemplo, 'blue') ou trio rgb hexadecimal (por exemplo, '#808080')</translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="192"/>
<source>Select color</source>
<extracomment>Title for colour selection popup</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="212"/>
<source>No source selected</source>
<extracomment>Button: Shown when no source geometry is selected for this object</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="218"/>
<source>Parent frame</source>
<extracomment>Label for a dropdown menu: Select which frame (coordinate system) the object should be placed in relation to</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="226"/>
<source>Global</source>
<extracomment>Dropdown menu item: Select a frame (coordinate system)</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="228"/>
<source>Robot base</source>
<extracomment>Dropdown menu item: Select a frame (coordinate system)</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="230"/>
<source>User frame</source>
<extracomment>Dropdown menu item: Select a frame (coordinate system)</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="232"/>
<source>Object frame</source>
<extracomment>Dropdown menu item: Select a frame (coordinate system)</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="234"/>
<source>Tool frame</source>
<extracomment>Dropdown menu item: Select a frame (coordinate system)</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="242"/>
<source>Show mesh</source>
<extracomment>Checkbox. checked = show mesh, unchecked = hide mesh</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="249"/>
<source>Transparent</source>
<extracomment>Checkbox. checked = semi-transparent mesh, unchecked = opaque mesh</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="260"/>
<source>Linear</source>
<extracomment>Collapsible section: In this section the user will adjust position and scale of the object</extracomment>
<translation type="unfinished">Linear</translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="277"/>
<source>X position (mm)</source>
<extracomment>Tool tip for X position input</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="283"/>
<source>Y position (mm)</source>
<extracomment>Tool tip for Y position input</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="289"/>
<source>Z position (mm)</source>
<extracomment>Tool tip for Z position input</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="295"/>
<source>Position</source>
<extracomment>Label for text fields: Set the position in space (displacement/translation) for the object</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="347"/>
<source>Scale</source>
<extracomment>Label for text fields: Set the scaling multiplicator (in x, y, z) to scale the object size</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="349"/>
<source>Size</source>
<extracomment>Label for text fields: Set the size (in x, y, z) of the the object</extracomment>
<translation type="unfinished">Tamanho</translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="411"/>
<source>Rotation</source>
<extracomment>Collapsible section: In this section the user will adjust the rotation of the object</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="425"/>
<source>Yaw angle (°)</source>
<extracomment>Tool tip: Referring a rotation axis. Look up Euler rotations or principal rotation axes.</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="432"/>
<source>Pitch angle (°)</source>
<extracomment>Tool tip: Referring a rotation axis. Look up Euler rotations or principal rotation axes.</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="439"/>
<source>Roll angle (°)</source>
<extracomment>Tool tip: Referring a rotation axis. Look up Euler rotations or principal rotation axes.</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="515"/>
<source>Normalize</source>
<extracomment>Button: Normalise the rotation quaternion</extracomment>
<translation type="unfinished">Normalizar</translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="523"/>
<source>Normalize quaternion</source>
<extracomment>Tool tip for normalize button</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="620"/>
<source>Quaternion scalar</source>
<extracomment>Tool tip: Referring to a quaternion component</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="627"/>
<source>Quaternion i</source>
<extracomment>Tool tip: Referring to a quaternion component</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="634"/>
<source>Quaternion j</source>
<extracomment>Tool tip: Referring to a quaternion component</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="641"/>
<source>Quaternion k</source>
<extracomment>Tool tip: Referring to a quaternion component</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Sidebar/Assets/AdditionalObjectEditorDelegate.qml" line="654"/>
<source>The geometry %1 looks too large. You may want to scale it down. If the model is using millimeters, you can scale down by 0.001. Do you want to scale down by 0.001?</source>
<extracomment>Confirmation popup. %1 = geometry name</extracomment>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>AdditionalObjectsModel</name>
<message>
<location filename="../../../backend/src/additionalobjectsmodel.cpp" line="635"/>
<source>Failed to confirm that %1 was deleted from the cloud (the item may or may not have been deleted)</source>
<extracomment>Error message. %1 = name</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../backend/src/additionalobjectsmodel.cpp" line="665"/>
<source>%1 was deleted from the cloud</source>
<extracomment>Status message: %1 = name</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../backend/src/additionalobjectsmodel.cpp" line="759"/>
<source>Failed to download geometry from cloud</source>
<extracomment>Error message</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../backend/src/additionalobjectsmodel.cpp" line="792"/>
<source>Failed to download geometry from the cloud</source>
<extracomment>Error message</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../backend/src/additionalobjectsmodel.cpp" line="847"/>
<location filename="../../../backend/src/additionalobjectsmodel.cpp" line="860"/>
<source>Could not open folder: %1</source>
<extracomment>Error message. %1 = file path to folder</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../backend/src/additionalobjectsmodel.cpp" line="886"/>
<source>Custom geometry %1 loaded</source>
<extracomment>Status message: %1 = name</extracomment>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>AnimationBar</name>
<message>
<location filename="../../IrbcamQml/Views/AnimationBar.qml" line="88"/>
<source>End of path</source>
<extracomment>Tool tip for play button</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Views/AnimationBar.qml" line="90"/>
<source>Path must be solved before it can be animated</source>
<extracomment>Tool tip for play button</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Views/AnimationBar.qml" line="92"/>
<source>Path must contain at least two points to animate</source>
<extracomment>Tool tip for play button</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Views/AnimationBar.qml" line="125"/>
<source>Animation speed</source>
<extracomment>Tool-tip. Animation speed setting</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Views/AnimationBar.qml" line="168"/>
<source>Tool Trace</source>
<extracomment>Button: Open tool trace settings</extracomment>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>AssetItemTreeView</name>
<message>
<source>Delete</source>
<extracomment>Title: Delete <name></extracomment>
<translation type="obsolete">Excluir</translation>
</message>
<message>
<location filename="../../IrbcamQml/Controls/AssetItemTreeView.qml" line="89"/>
<source>Delete %1</source>
<extracomment>Title. %1 = asset name</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Controls/AssetItemTreeView.qml" line="91"/>
<source>This action will permanently delete %1 from the cloud</source>
<extracomment>Dialog box text: %1 = asset name</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Controls/AssetItemTreeView.qml" line="139"/>
<source>Edit</source>
<extracomment>Collapsible section: Edit position/rotation</extracomment>
<translation type="unfinished">Editar</translation>
</message>
<message>
<location filename="../../IrbcamQml/Controls/AssetItemTreeView.qml" line="155"/>
<source>Show mesh</source>
<extracomment>Checkbox. checked = show mesh, unchecked = hide mesh</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Controls/AssetItemTreeView.qml" line="161"/>
<source>Transparent</source>
<extracomment>Checkbox. checked = semi-transparent mesh, unchecked = opaque mesh</extracomment>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>AssetTreeView</name>
<message>
<location filename="../../IrbcamQml/Controls/AssetTreeView.qml" line="69"/>
<source>Uninitialized</source>
<extracomment>Network status: Connection is not initialised</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Controls/AssetTreeView.qml" line="72"/>
<source>Idle</source>
<extracomment>Network status: Network is ready for a new connection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Controls/AssetTreeView.qml" line="75"/>
<source>Fetching description</source>
<extracomment>Network status: Fetching info from server</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Controls/AssetTreeView.qml" line="78"/>
<source>Downloading</source>
<extracomment>Network status: Downloading</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Controls/AssetTreeView.qml" line="81"/>
<source>Unpacking</source>
<extracomment>Network status: Unpacking downloaded content</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Controls/AssetTreeView.qml" line="84"/>
<source>Loading</source>
<extracomment>Network status: Loading downloaded content</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Controls/AssetTreeView.qml" line="87"/>
<source>Deleting</source>
<extracomment>Network status: Deleting data from server</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Controls/AssetTreeView.qml" line="90"/>
<source>Uploading</source>
<extracomment>Network status: Uploading data to server</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Controls/AssetTreeView.qml" line="93"/>
<source>Fetching list</source>
<extracomment>Network status: Fetching list data from server</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Controls/AssetTreeView.qml" line="96"/>
<source>Decoding</source>
<extracomment>Network status: Decoding downloaded content</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Controls/AssetTreeView.qml" line="99"/>
<source>Verifying</source>
<extracomment>Network status: Verifying downloaded content</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Controls/AssetTreeView.qml" line="102"/>
<source>Loading assets</source>
<extracomment>Network status: Downloading/loading additional assets</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Controls/AssetTreeView.qml" line="105"/>
<source>Processing</source>
<extracomment>Network status: Server is processing uploaded content</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Controls/AssetTreeView.qml" line="111"/>
<source>Unknown</source>
<extracomment>Network status: Unknown state</extracomment>
<translation type="unfinished">Desconhecido</translation>
</message>
<message>
<location filename="../../IrbcamQml/Controls/AssetTreeView.qml" line="286"/>
<source>No items in list</source>
<extracomment>Placeholder for empty list</extracomment>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>AsyncLoading</name>
<message>
<location filename="../../IrbcamQml/Popups/AsyncLoading.qml" line="42"/>
<source>Finding solutions</source>
<extracomment>Popup title text for optimizer</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/AsyncLoading.qml" line="114"/>
<source>Path %1 of %2</source>
<extracomment>Label: Referring to status of paths to solve. %1 = current path number, %2 = total number of paths</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/AsyncLoading.qml" line="121"/>
<source>Operation %1 of %2</source>
<extracomment>Label: Referring to status of operations. %1 = current operation number, %2 = total number of operations</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/AsyncLoading.qml" line="151"/>
<source>Elapsed: %1</source>
<extracomment>Label. %1 = elapsed time since start</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/AsyncLoading.qml" line="158"/>
<source>Remaining: %1</source>
<extracomment>Label. %1 = estimated remaining time</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/AsyncLoading.qml" line="165"/>
<source>Cancel</source>
<extracomment>Button text. Abort current operation</extracomment>
<translation type="unfinished">Cancelar</translation>
</message>
</context>
<context>
<name>BaseNetworkDataInterface</name>
<message>
<location filename="../../../backend/src/basedatainterface.cpp" line="261"/>
<source>Failed to confirm that %1 was deleted from the cloud (the item may or may not have been deleted)</source>
<extracomment>Error message: %1 = item name</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../backend/src/basedatainterface.cpp" line="291"/>
<source>%1 was deleted from the cloud</source>
<extracomment>Status message. %1 = Name</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../backend/src/basedatainterface.cpp" line="381"/>
<source>Failed to load %1</source>
<extracomment>Error message: %1 = item name</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../backend/src/basedatainterface.cpp" line="473"/>
<source>%1 loaded</source>
<extracomment>Status message: %1 = name</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../backend/src/basedatainterface.cpp" line="507"/>
<location filename="../../../backend/src/basedatainterface.cpp" line="592"/>
<source>Failed to download item from the cloud</source>
<extracomment>Error message</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../backend/src/basedatainterface.cpp" line="620"/>
<source>Failed to unpack item</source>
<extracomment>Error message</extracomment>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>BugReportData</name>
<message>
<location filename="../../../backend/src/stationstructsinterface.cpp" line="1120"/>
<source>Failed to send report</source>
<extracomment>Error message</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../backend/src/stationstructsinterface.cpp" line="1131"/>
<source>Attachment should be less than %1 MB</source>
<extracomment>Error message. %1 = size in MB</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../backend/src/stationstructsinterface.cpp" line="1174"/>
<source>Report sent</source>
<extracomment>Status message: Referring to sending a feedback report</extracomment>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>BugReporting</name>
<message>
<location filename="../../IrbcamQml/Popups/BugReporting.qml" line="21"/>
<source>Feedback</source>
<extracomment>Title for feedback form</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/BugReporting.qml" line="44"/>
<source>Uninitialized</source>
<extracomment>Network status when uploading report</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/BugReporting.qml" line="47"/>
<source>Idle</source>
<extracomment>Network status when uploading report</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/BugReporting.qml" line="50"/>
<source>Uploading</source>
<extracomment>Network status when uploading report</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/BugReporting.qml" line="53"/>
<source>Downloading</source>
<extracomment>Network status when uploading report</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/BugReporting.qml" line="56"/>
<source>Unpacking</source>
<extracomment>Network status when uploading report</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/BugReporting.qml" line="60"/>
<source>Unknown</source>
<extracomment>Network status when uploading report</extracomment>
<translation type="unfinished">Desconhecido</translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/BugReporting.qml" line="100"/>
<source>Type</source>
<extracomment>Which kind of feedback</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/BugReporting.qml" line="107"/>
<source>Bug Report</source>
<extracomment>Dropdown menu item. Type of feedback</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/BugReporting.qml" line="109"/>
<source>Feature Request</source>
<extracomment>Dropdown menu item. Type of feedback</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/BugReporting.qml" line="123"/>
<source>Please provide a detailed description of the bug you would like to report. This may include information such as:</source>
<extracomment>Part of the instructions on how to write a bug report</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/BugReporting.qml" line="125"/>
<source>What were you doing when the bug occurred</source>
<extracomment>Part of the instructions on how to write a bug report</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/BugReporting.qml" line="127"/>
<source>What was the expected vs actual behavior</source>
<extracomment>Part of the instructions on how to write a bug report</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/BugReporting.qml" line="129"/>
<source>A step-by-step instruction of how to reproduce the issue</source>
<extracomment>Part of the instructions on how to write a bug report</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/BugReporting.qml" line="132"/>
<source>Please provide a detailed description of the feature you would like to see in IRBCAM in the future.</source>
<extracomment>Instructions on how to write a feature request</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/BugReporting.qml" line="134"/>
<source>You can add 1 attachment (up to 10MB). Clicking the 'Send' button will send the report.</source>
<extracomment>Instructions on uploading attachments</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/BugReporting.qml" line="72"/>
<source>Open file</source>
<extracomment>Name of the file interface window to browse for attachment</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/BugReporting.qml" line="154"/>
<source>Describe the issue</source>
<extracomment>Placeholder in text field to enter feedback</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/BugReporting.qml" line="156"/>
<source>Describe the desired feature</source>
<extracomment>Placeholder in text field to enter feedback</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/BugReporting.qml" line="171"/>
<source>Attachment</source>
<extracomment>Referring to the file name of an attachment</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/BugReporting.qml" line="181"/>
<source>None</source>
<extracomment>Indicates that no file is attached. This is where the file name would otherwise be displayed</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/BugReporting.qml" line="204"/>
<source>Include project and system information</source>
<extracomment>Checkbox: Select if you are willing to send potentially sensitive information</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Popups/BugReporting.qml" line="216"/>
<source>Send</source>
<extracomment>Button to send feedback</extracomment>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>BuildCustom3dModel</name>
<message>
<source>Unknown</source>
<translation type="obsolete">Desconhecido</translation>
</message>
<message>
<source>Cancel</source>
<translation type="obsolete">Cancelar</translation>
</message>
<message>
<source>Add</source>
<translation type="obsolete">Adicionar</translation>
</message>
<message>
<source>Delete</source>
<translation type="obsolete">Excluir</translation>
</message>
</context>
<context>
<name>BuyMenu</name>
<message>
<location filename="../../IrbcamQml/Controls/BuyMenu.qml" line="21"/>
<source>Buy or request a 7-day free trial</source>
<extracomment>This button opens the subscription page</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Controls/BuyMenu.qml" line="33"/>
<source>Opens link in new tab</source>
<extracomment>Tool tip</extracomment>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>CloudMenu</name>
<message>
<location filename="../../IrbcamQml/Controls/CloudMenu.qml" line="14"/>
<source>Log in</source>
<extracomment>This menu button opens the sign-in form in a new tab</extracomment>
<translation type="unfinished">Entrar</translation>
</message>
<message>
<location filename="../../IrbcamQml/Controls/CloudMenu.qml" line="37"/>
<source>Account Settings</source>
<extracomment>This menu button opens user account settings in a new tab</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Controls/CloudMenu.qml" line="43"/>
<source>Log out</source>
<extracomment>This menu button logs out the user</extracomment>
<translation type="unfinished">Sair</translation>
</message>
</context>
<context>
<name>ConfigurePath</name>
<message>
<source>Configure Path</source>
<translation type="vanished">Configurar Caminho</translation>
</message>
<message>
<source>Tool Roll Angle (deg)</source>
<translation type="vanished">Ângulo de rotação da ferramenta (graus)</translation>
</message>
<message>
<source>Bending Backwards</source>
<translation type="vanished">Dobrando para trás</translation>
</message>
<message>
<source>Elbow Down</source>
<translation type="vanished">Cotovelo para baixo</translation>
</message>
<message>
<source>Wrist Down</source>
<translation type="vanished">Pulso para baixo</translation>
</message>
<message>
<source>Allow Large Reorientation</source>
<translation type="vanished">Permitir grande reorientação</translation>
</message>
<message>
<source>Tool Roll Mode</source>
<translation type="vanished">Modo de rotação da ferramenta</translation>
</message>
<message>
<source>Fixed Angle</source>
<translation type="vanished">Ângulo fixo</translation>
</message>
<message>
<source>Dynamic Angle 1</source>
<translation type="vanished">Ângulo dinâmico 1</translation>
</message>
<message>
<source>Dynamic Angle 2</source>
<translation type="vanished">Ângulo dinâmico 2</translation>
</message>
<message>
<source>Status: </source>
<translation type="vanished">Estado: </translation>
</message>
<message>
<source>Configure</source>
<translation type="vanished">Configurar</translation>
</message>
</context>
<context>
<name>ConfigurePathView</name>
<message>
<location filename="../../IrbcamQml/Views/ConfigurePathView.qml" line="113"/>
<source>Export Robot Code</source>
<extracomment>Button: Open popup to export robot code</extracomment>
<translation type="unfinished">Exportar Código do Robô</translation>
</message>
<message>
<location filename="../../IrbcamQml/Views/ConfigurePathView.qml" line="115"/>
<source>Solve Path</source>
<extracomment>Button: Attempt to solve path</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Views/ConfigurePathView.qml" line="139"/>
<source>Busy</source>
<extracomment>Tool tip. Application is busy</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Views/ConfigurePathView.qml" line="141"/>
<source>The active subscription does not provide access to exporting 5-axis robot code<br>Click %1here%2 to manage subscriptions</source>
<extracomment>Tool tip. %1 = start of link, %2 = end of link</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Views/ConfigurePathView.qml" line="143"/>
<source>The active subscription does not provide access to exporting robot code<br>Click %1here%2 to manage subscriptions</source>
<extracomment>Tool tip. %1 = start of link, %2 = end of link</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Views/ConfigurePathView.qml" line="210"/>
<source>Tool roll mode</source>
<extracomment>Label for dropdown menu: Select how the tool should rotate about its Z-axis</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Views/ConfigurePathView.qml" line="243"/>
<source>No Change</source>
<extracomment>Dropdown menu item: Select tool roll mode</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Views/ConfigurePathView.qml" line="245"/>
<location filename="../../IrbcamQml/Views/ConfigurePathView.qml" line="366"/>
<source>Fixed Angle</source>
<extracomment>Dropdown menu item: Select tool roll mode
----------
Dropdown menu item: Select operating mode for rotary table</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Views/ConfigurePathView.qml" line="247"/>
<location filename="../../IrbcamQml/Views/ConfigurePathView.qml" line="368"/>
<source>Dynamic Angle 1</source>
<extracomment>Dropdown menu item: Select tool roll mode
----------
Dropdown menu item: Select operating mode for rotary table</extracomment>
<translation type="unfinished">Ángulo dinámico 1</translation>
</message>
<message>
<location filename="../../IrbcamQml/Views/ConfigurePathView.qml" line="249"/>
<location filename="../../IrbcamQml/Views/ConfigurePathView.qml" line="370"/>
<source>Dynamic Angle 2</source>
<extracomment>Dropdown menu item: Select tool roll mode
----------
Dropdown menu item: Select operating mode for rotary table</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Views/ConfigurePathView.qml" line="251"/>
<source>Roller Mode</source>
<extracomment>Dropdown menu item: Select tool roll mode</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Views/ConfigurePathView.qml" line="257"/>
<source>Overwrite tool roll angle %1 values of all targets with the selected method</source>
<extracomment>Tool tip for dropdown menu. Explains that selecting from this menu will overwrite RZ2 angles in the path. %1 = RZ2</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../IrbcamQml/Views/ConfigurePathView.qml" line="295"/>
<source>Tool roll angle (deg)</source>
<extracomment>Label for text field: Referring to rotation about the tool Z-axis</extracomment>
<translation type="unfinished"></translation>
</message>