-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtestresults.xml
1656 lines (1652 loc) · 77.4 KB
/
testresults.xml
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 xliff PUBLIC "-//XLIFF//DTD XLIFF//EN" "http://www.oasis-open.org/committees/xliff/documents/xliff.dtd">
<xliff version="1.0">
<file source-language="en" target-language="fr" datatype="plaintext" original="messages" date="2012-03-05T14:54:29Z" product-name="messages">
<header/>
<body>
<trans-unit id="1">
<source>Where to buy</source>
<target>Points de vente</target>
</trans-unit>
<trans-unit id="2">
<source>Search</source>
<target>Recherche</target>
</trans-unit>
<trans-unit id="3">
<source>search</source>
<target>rechercher</target>
</trans-unit>
<trans-unit id="4">
<source>Collections</source>
<target>Collections</target>
</trans-unit>
<trans-unit id="5">
<source>About</source>
<target>À Propos</target>
</trans-unit>
<trans-unit id="6">
<source>About Us</source>
<target>À Propos</target>
</trans-unit>
<trans-unit id="7">
<source>Articles</source>
<target>Actualités</target>
</trans-unit>
<trans-unit id="8">
<source>Stories &amp; News</source>
<target>Récits &amp; nouvelles</target>
</trans-unit>
<trans-unit id="9">
<source>Service</source>
<target>Service</target>
</trans-unit>
<trans-unit id="10">
<source>Service &amp; Support</source>
<target>Service &amp; Support</target>
</trans-unit>
<trans-unit id="11">
<source>Where to Buy</source>
<target>Points de vente</target>
</trans-unit>
<trans-unit id="12">
<source>More</source>
<target>Également</target>
</trans-unit>
<trans-unit id="13">
<source>Terms of use</source>
<target>Conditions d'utilisation</target>
</trans-unit>
<trans-unit id="14">
<source>2012 Audemars Piguet, Le Brassus since 1875.</source>
<target>2012 Audemars Piguet, Le Brassus depuis 1875.</target>
</trans-unit>
<trans-unit id="15">
<source>Online Catalog</source>
<target>Catalogue en ligne</target>
</trans-unit>
<trans-unit id="16">
<source>Send Me a Catalog</source>
<target>Recevoir un catalogue</target>
</trans-unit>
<trans-unit id="17">
<source>Drag</source>
<target>Glissez</target>
</trans-unit>
<trans-unit id="18">
<source>Explore More Audemars Piguet</source>
<target>Plongez vous dans l'univers Audemars Piguet</target>
</trans-unit>
<trans-unit id="19">
<source>Watch Family Admin</source>
<target>Administration des familles de montres</target>
</trans-unit>
<trans-unit id="20">
<source>ID</source>
<target>Identifiant</target>
</trans-unit>
<trans-unit id="21">
<source>Family Name</source>
<target>Nom de famille</target>
</trans-unit>
<trans-unit id="22">
<source>Categories Admin</source>
<target>Administration des catégories</target>
</trans-unit>
<trans-unit id="23">
<source>Edit Category</source>
<target>Editer une catégorie</target>
</trans-unit>
<trans-unit id="24">
<source>New Category</source>
<target>Nouvelle catégorie</target>
</trans-unit>
<trans-unit id="25">
<source>Active Users</source>
<target>Utilisateurs actifs</target>
</trans-unit>
<trans-unit id="26">
<source>Category</source>
<target>Catégorie</target>
</trans-unit>
<trans-unit id="27">
<source>Media Items</source>
<target>Eléments média</target>
</trans-unit>
<trans-unit id="28">
<source>Watch Collection Admin</source>
<target>Administration des Collections</target>
</trans-unit>
<trans-unit id="29">
<source>Our Collections</source>
<target>Nos Collections</target>
</trans-unit>
<trans-unit id="30">
<source>View model</source>
<target>Voir le modèle</target>
</trans-unit>
<trans-unit id="31">
<source>2013 Novelties</source>
<target>Nouveautés 2013</target>
</trans-unit>
<trans-unit id="32">
<source>Ladies</source>
<target>Collection Dames</target>
</trans-unit>
<trans-unit id="33">
<source>Novelties</source>
<target>Royal Oak 40 years</target>
</trans-unit>
<trans-unit id="34">
<source>2013<br/> Novelties</source>
<target>Nouveautés <br/> 2013</target>
</trans-unit>
<trans-unit id="35">
<source>Edit</source>
<target>Editez</target>
</trans-unit>
<trans-unit id="36">
<source>Latest Articles</source>
<target>Derniers récits</target>
</trans-unit>
<trans-unit id="37">
<source>Read More</source>
<target>Lire</target>
</trans-unit>
<trans-unit id="38">
<source>Latest News</source>
<target>Nouvelles récentes</target>
</trans-unit>
<trans-unit id="39">
<source>All News</source>
<target>Toutes les nouvelles</target>
</trans-unit>
<trans-unit id="40">
<source>News</source>
<target>Nouvelles</target>
</trans-unit>
<trans-unit id="41">
<source>Collection Name</source>
<target>Nom des collections</target>
</trans-unit>
<trans-unit id="42">
<source>Homepage Marquee Slot</source>
<target>Emplacement du chapeau de la page d'accueil</target>
</trans-unit>
<trans-unit id="43">
<source>Marquee Image</source>
<target>Image chapeau</target>
</trans-unit>
<trans-unit id="44">
<source>Brightcove Video Preview Image</source>
<target>Image de prévisualisation vidéo Brightcove</target>
</trans-unit>
<trans-unit id="45">
<source>Create Home page Marquee Block</source>
<target>Créer le bloc chapeau de la page d'accueil</target>
</trans-unit>
<trans-unit id="46">
<source>Choose Marquee Image</source>
<target>Choisir l'image Chapeau</target>
</trans-unit>
<trans-unit id="47">
<source>Select an Image</source>
<target>Sélectionner une image</target>
</trans-unit>
<trans-unit id="48">
<source>Choose Video Preview Image</source>
<target>Choisir l'image de prévisualisation de la vidéo</target>
</trans-unit>
<trans-unit id="49">
<source>Permissions: Hidden Photos can be used in photo slots, but are not displayed in the Media section.</source>
<target>Permissions: Les photos cachées peuvent être insérées dans leurs emplacements respectifs, mais ne seront pas diffusées dans la section média.</target>
</trans-unit>
<trans-unit id="50">
<source>Replace Thumbnail</source>
<target>Remplacer les miniatures</target>
</trans-unit>
<trans-unit id="51">
<source>Replace File</source>
<target>Remplacer le fichier</target>
</trans-unit>
<trans-unit id="52">
<source>Delete File</source>
<target>Supprimer le fichier</target>
</trans-unit>
<trans-unit id="53">
<source>%buttonspan%Download Original</source>
<target>%buttonspan%Téléchargez l'original</target>
</trans-unit>
<trans-unit id="54">
<source>Cancel</source>
<target>Annuler</target>
</trans-unit>
<trans-unit id="55">
<source>Save Media</source>
<target>Sauvegarder le média</target>
</trans-unit>
<trans-unit id="56">
<source>Save</source>
<target>Sauvegarder</target>
</trans-unit>
<trans-unit id="57">
<source>Delete</source>
<target>Supprimer</target>
</trans-unit>
<trans-unit id="58">
<source>Are you sure you want to delete this item?</source>
<target>Êtes-vous sûr de vouloir supprimer cet élément?</target>
</trans-unit>
<trans-unit id="59">
<source>This file will be replaced after you click save.</source>
<target>Ce fichier sera remplacé après avoir cliqué sur sauvegarder.</target>
</trans-unit>
<trans-unit id="60">
<source>, </source>
<target></target>
</trans-unit>
<trans-unit id="61">
<source>About The Collection</source>
<target></target>
</trans-unit>
<trans-unit id="62">
<source>Mens Collection</source>
<target></target>
</trans-unit>
<trans-unit id="63">
<source>Ladies Collection</source>
<target>Collection Dames</target>
</trans-unit>
<trans-unit id="64">
<source>See All Ladies watches</source>
<target>Voir l'ensemble des collections Dames</target>
</trans-unit>
<trans-unit id="65">
<source>Iconic Moments</source>
<target>Instants Légendaires</target>
</trans-unit>
<trans-unit id="66">
<source>Download Image</source>
<target>Téléchargez l'image</target>
</trans-unit>
<trans-unit id="67">
<source>Close</source>
<target>Fermer</target>
</trans-unit>
<trans-unit id="68">
<source>Also in Ladies</source>
<target>Également dans la collection Dames</target>
</trans-unit>
<trans-unit id="69">
<source>Magnify</source>
<target>Agrandir</target>
</trans-unit>
<trans-unit id="70">
<source>Expert Service</source>
<target>Nos experts à votre service</target>
</trans-unit>
<trans-unit id="71">
<source>See it in person</source>
<target>Visite d'une Boutique</target>
</trans-unit>
<trans-unit id="72">
<source>Novelty</source>
<target>Nouveauté</target>
</trans-unit>
<trans-unit id="73">
<source>Latest Creation</source>
<target>Nos dernières créations</target>
</trans-unit>
<trans-unit id="74">
<source>See all models</source>
<target>Voir tous les modèles</target>
</trans-unit>
<trans-unit id="75">
<source>Details</source>
<target>Détails</target>
</trans-unit>
<trans-unit id="76">
<source>Case</source>
<target>Boîte</target>
</trans-unit>
<trans-unit id="77">
<source>Dial</source>
<target>Cadran</target>
</trans-unit>
<trans-unit id="78">
<source>Bracelet</source>
<target>Bracelet</target>
</trans-unit>
<trans-unit id="79">
<source>Jewels</source>
<target>Rubis</target>
</trans-unit>
<trans-unit id="80">
<source>Reference</source>
<target>Référence</target>
</trans-unit>
<trans-unit id="81">
<source>Type of balance</source>
<target>Type de balancier</target>
</trans-unit>
<trans-unit id="82">
<source>Type of balance-spring stud-holder</source>
<target>Type de porte-piton</target>
</trans-unit>
<trans-unit id="83">
<source>Balance-stop device</source>
<target>Stop balancier</target>
</trans-unit>
<trans-unit id="84">
<source>Direction of automatic winding</source>
<target>Sens de remontage de l'automatique</target>
</trans-unit>
<trans-unit id="85">
<source>Type of oscillating weight</source>
<target>Type de masse</target>
</trans-unit>
<trans-unit id="86">
<source>Power reserve</source>
<target>Réserve de marche</target>
</trans-unit>
<trans-unit id="87">
<source>Shock-absorbing system</source>
<target>Système anti-chocs</target>
</trans-unit>
<trans-unit id="88">
<source>Angle of lift</source>
<target>Angle de levée</target>
</trans-unit>
<trans-unit id="89">
<source>Number of parts</source>
<target>Nombre de composants</target>
</trans-unit>
<trans-unit id="90">
<source>Water Resistance</source>
<target>Étanchéité</target>
</trans-unit>
<trans-unit id="91">
<source>None</source>
<target>Aucun</target>
</trans-unit>
<trans-unit id="92">
<source>Selfwinding</source>
<target>Remontage automatique</target>
</trans-unit>
<trans-unit id="93">
<source>Calibre</source>
<target>Calibre</target>
</trans-unit>
<trans-unit id="94">
<source>Front</source>
<target>Face</target>
</trans-unit>
<trans-unit id="95">
<source>Back</source>
<target>Dos</target>
</trans-unit>
<trans-unit id="96">
<source>View Model</source>
<target>Voir le modèle</target>
</trans-unit>
<trans-unit id="97">
<source>Click For Next Image</source>
<target>Cliquez pour voir l'image suivante</target>
</trans-unit>
<trans-unit id="98">
<source>Watch Collection Slot</source>
<target>Emplacement de la collection</target>
</trans-unit>
<trans-unit id="99">
<source>Background Image</source>
<target>Image d'arrère plan</target>
</trans-unit>
<trans-unit id="100">
<source>Choose Background Image</source>
<target>Choisir une image d'arrière plan</target>
</trans-unit>
<trans-unit id="101">
<source>%num% watches</source>
<target>%num% montres</target>
</trans-unit>
<trans-unit id="102">
<source>Create a Watch Collection</source>
<target>Créer une collection</target>
</trans-unit>
<trans-unit id="103">
<source>Sign In</source>
<target>Connexion</target>
</trans-unit>
<trans-unit id="104">
<source>Forgot your password?</source>
<target>Mot de passe oublié?</target>
</trans-unit>
<trans-unit id="105">
<source>Want to register?</source>
<target>Vous inscrire?</target>
</trans-unit>
<trans-unit id="106">
<source>Craft</source>
<target>Héritage</target>
</trans-unit>
<trans-unit id="107">
<source>Also read</source>
<target>Lire également</target>
</trans-unit>
<trans-unit id="108">
<source>Watch Model Admin</source>
<target>Administration des modèles</target>
</trans-unit>
<trans-unit id="109">
<source>Model Name</source>
<target>Nom du modèle</target>
</trans-unit>
<trans-unit id="110">
<source>Recent Stories</source>
<target>Derniers récits</target>
</trans-unit>
<trans-unit id="111">
<source>New Creations</source>
<target>Dernières créations</target>
</trans-unit>
<trans-unit id="112">
<source>Manuals</source>
<target>Manuels et Numéros d’Enregistrement</target>
</trans-unit>
<trans-unit id="113">
<source>Maintenance &amp; Repair</source>
<target>Entretien et réparations</target>
</trans-unit>
<trans-unit id="114">
<source>Warranties</source>
<target>Garanties</target>
</trans-unit>
<trans-unit id="115">
<source>FAQ's</source>
<target>Questions courantes</target>
</trans-unit>
<trans-unit id="116">
<source>Don't have an account?</source>
<target>Vous n'avez pas encore de compte utilisateur?</target>
</trans-unit>
<trans-unit id="117">
<source>Create one</source>
<target>Créer un compte utilisateur</target>
</trans-unit>
<trans-unit id="118">
<source>Title</source>
<target>Titre</target>
</trans-unit>
<trans-unit id="119">
<source>Page Type</source>
<target>Type de page</target>
</trans-unit>
<trans-unit id="120">
<source>Who can see this?</source>
<target>Qui peut voir?</target>
</trans-unit>
<trans-unit id="121">
<source>Published</source>
<target>Publié</target>
</trans-unit>
<trans-unit id="122">
<source>apply to subpages</source>
<target>Appliquer aux pages inférieures</target>
</trans-unit>
<trans-unit id="123">
<source>Menu Settings</source>
<target>Options du menu</target>
</trans-unit>
<trans-unit id="124">
<source>Meta Description</source>
<target>Meta Description</target>
</trans-unit>
<trans-unit id="125">
<source>Delete This Page</source>
<target>Supprimer cette page</target>
</trans-unit>
<trans-unit id="126">
<source>Are you sure? This operation can not be undone. Consider unpublishing the page instead.</source>
<target>En êtes-vous sur? Cette opération est irréversible. Vous pouvez aussi dépublier la page.</target>
</trans-unit>
<trans-unit id="127">
<source>The Foundation</source>
<target>La Fondation</target>
</trans-unit>
<trans-unit id="128">
<source>Our Partnerships</source>
<target>Nos ambassadeurs</target>
</trans-unit>
<trans-unit id="129">
<source>Find a Retailer</source>
<target>Trouver un Revendeur</target>
</trans-unit>
<trans-unit id="130">
<source>Visit one of our partner retailers</source>
<target>Rendez visite à l'un de nos partenaires revendeurs</target>
</trans-unit>
<trans-unit id="131">
<source>Select a Continent</source>
<target>Sélectionnez un continent</target>
</trans-unit>
<trans-unit id="132">
<source>Select a Country</source>
<target>Sélectionnez un pays</target>
</trans-unit>
<trans-unit id="133">
<source>Select a City</source>
<target>Sélectionnez une ville</target>
</trans-unit>
<trans-unit id="134">
<source>Our Boutiques</source>
<target>Nos Boutiques</target>
</trans-unit>
<trans-unit id="135">
<source>There’s no better place to immerse yourself in the world of Audemars Piguet.</source>
<target>Des espaces entièrement dédiés à l’univers Audemars Piguet.</target>
</trans-unit>
<trans-unit id="136">
<source>Results</source>
<target>Résultats</target>
</trans-unit>
<trans-unit id="137">
<source>All boutiques</source>
<target>Toutes les boutiques</target>
</trans-unit>
<trans-unit id="138">
<source>Repair &amp; Service</source>
<target>Entretien &amp; Réparations</target>
</trans-unit>
<trans-unit id="139">
<source>Tags Admin</source>
<target>Tags Admin</target>
</trans-unit>
<trans-unit id="140">
<source>Edit Tag</source>
<target>Editer un tag</target>
</trans-unit>
<trans-unit id="141">
<source>New Tag</source>
<target>Nouveau tag</target>
</trans-unit>
<trans-unit id="142">
<source>Tag</source>
<target>Tags</target>
</trans-unit>
<trans-unit id="143">
<source>Blog</source>
<target>Blog</target>
</trans-unit>
<trans-unit id="144">
<source>aEvent</source>
<target>aEvent</target>
</trans-unit>
<trans-unit id="145">
<source>Pages</source>
<target>Pages</target>
</trans-unit>
<trans-unit id="146">
<source>Media</source>
<target>Media</target>
</trans-unit>
<trans-unit id="147">
<source>Events</source>
<target>Events</target>
</trans-unit>
<trans-unit id="148">
<source>Main Image</source>
<target>Image principale</target>
</trans-unit>
<trans-unit id="149">
<source>Choose Main Image</source>
<target>Choisir l'image principale</target>
</trans-unit>
<trans-unit id="150">
<source>We can email you instructions to reset your password.</source>
<target>Nous pouvons vous envoyer des instructions par e-mail afin de renouveler votre mot de passe. </target>
</trans-unit>
<trans-unit id="151">
<source>Reset Password</source>
<target>Renouveler votre mot de passe</target>
</trans-unit>
<trans-unit id="152">
<source>Company</source>
<target>À propos</target>
</trans-unit>
<trans-unit id="153">
<source>Latest</source>
<target>Le plus récent</target>
</trans-unit>
<trans-unit id="154">
<source>%1% Audemars Piguet, Le Brassus since 1875.</source>
<target>%1% Audemars Piguet, Le Brassus depuis 1875.</target>
</trans-unit>
<trans-unit id="155">
<source>[0]No models|[1]1 model|(1,+Inf]%1% models</source>
<target>[0]No modèles|[1]1 modèle|(1,+Inf]%1% modèles</target>
</trans-unit>
<trans-unit id="156">
<source>News #</source>
<target>Nouvelles #</target>
</trans-unit>
<trans-unit id="157">
<source>Story #</source>
<target>Récits #</target>
</trans-unit>
<trans-unit id="158">
<source>Second large banner image</source>
<target>Deuxième grande bannière </target>
</trans-unit>
<trans-unit id="159">
<source>Choose Featured Watch Image</source>
<target>Choisir l'image principale de la montre</target>
</trans-unit>
<trans-unit id="160">
<source>Choose Thumbnail Image</source>
<target>Choisir l'image miniature</target>
</trans-unit>
<trans-unit id="161">
<source>[0]No styles|[1]1 Style|(1,+Inf]%1% Styles</source>
<target>[0]Sans styles|[1]1 Style|(1,+Inf]%1% Styles</target>
</trans-unit>
<trans-unit id="162">
<source>Variations:</source>
<target>Variations:</target>
</trans-unit>
<trans-unit id="163">
<source>_novelties_page_title_</source>
<target>Nouveatés 2013</target>
</trans-unit>
<trans-unit id="164">
<source>_novelties_meta_desc_</source>
<target>Nouvelles collections de montres de luxe suisses Audemars Piguet. Chronographes, montres squelette et montres tourbillon conçues pour hommes et femmes.</target>
</trans-unit>
<trans-unit id="165">
<source>_novelties_meta_keywords_</source>
<target></target>
</trans-unit>
<trans-unit id="166">
<source>_ladies_page_title_</source>
<target>Collections Montres Femmes</target>
</trans-unit>
<trans-unit id="167">
<source>_ladies_meta_desc_</source>
<target>Collections de montres suisses de luxe pour femmes de la marque horlogère Audemars Piguet.</target>
</trans-unit>
<trans-unit id="168">
<source>_ladies_meta_keywords_</source>
<target></target>
</trans-unit>
<trans-unit id="169">
<source>Choose Video thumbnail Image</source>
<target>Choisisir une image miniature</target>
</trans-unit>
<trans-unit id="170">
<source>Collection Name - Model Name - Watch Reference</source>
<target>Nom de la Collection - Nom du modèle - Référence</target>
</trans-unit>
<trans-unit id="171">
<source>Collection Name - Model Name</source>
<target>Nom de la Collection - Nom du modèle</target>
</trans-unit>
<trans-unit id="172">
<source>Account Login</source>
<target>Identifiant</target>
</trans-unit>
<trans-unit id="173">
<source>our company’s exceptional story has all unfolded here, in le brassus. discover our singular approach to watchmaking, our history and our ongoing story.</source>
<target>C'est ici, au Brassus, que s’est toujours jouée l'exceptionnelle destinée de notre marque. Découvrez notre approche singulière de l’horlogerie, notre histoire et notre actualité.</target>
</trans-unit>
<trans-unit id="174">
<source>Contact</source>
<target>Contact</target>
</trans-unit>
<trans-unit id="175">
<source>Share</source>
<target>Partagez</target>
</trans-unit>
<trans-unit id="176">
<source>Tweet</source>
<target>Tweet</target>
</trans-unit>
<trans-unit id="177">
<source>Explore Models</source>
<target>Découvrir les modèles</target>
</trans-unit>
<trans-unit id="178">
<source>Established 1875</source>
<target>Établie en 1875</target>
</trans-unit>
<trans-unit id="179">
<source>map</source>
<target>plan</target>
</trans-unit>
<trans-unit id="180">
<source>email</source>
<target>e-mail</target>
</trans-unit>
<trans-unit id="181">
<source>We're sorry, but you must have JavaScript enabled in your browser in order to search AudemarsPiguet.com.</source>
<target>Vous devez activer Javascript dans votre navigateur afin d'effectuer des recherches sur le site Audemarspiguet.com</target>
</trans-unit>
<trans-unit id="182">
<source>Results for</source>
<target>Résultats pour</target>
</trans-unit>
<trans-unit id="183">
<source>Previous</source>
<target>Précédent</target>
</trans-unit>
<trans-unit id="184">
<source>Next</source>
<target>Suivant</target>
</trans-unit>
<trans-unit id="185">
<source>Read stories about </source>
<target></target>
</trans-unit>
<trans-unit id="186">
<source>New file: </source>
<target></target>
</trans-unit>
<trans-unit id="187">
<source>Also in Mens</source>
<target>Également dans la collection Hommes</target>
</trans-unit>
<trans-unit id="188">
<source>View Larger</source>
<target></target>
</trans-unit>
<trans-unit id="189">
<source>Audemars Pigeut boutique in Geneva, Switzerland</source>
<target></target>
</trans-unit>
<trans-unit id="190">
<source>Specifications</source>
<target></target>
</trans-unit>
<trans-unit id="191">
<source>Cadence of the balance [ vibrations/hour ]</source>
<target></target>
</trans-unit>
<trans-unit id="192">
<source>Terms of use of the Audemars Piguet website</source>
<target>Conditions générales d'utilisation du site internet Audemars Piguet</target>
</trans-unit>
<trans-unit id="193">
<source>This website is provided by Audemars Piguet & Cie and its subsidiaries, referred to hereafter as “Audemars Piguet”. Use of this site is subject to the terms of use expounded hereafter. Audemars Piguet is entitled to revise these terms of use at any time, by updating the “terms of use” section. The revised terms take effect at the date when they are posted on this section.</source>
<target>Ce site Internet est publié par Audemars Piguet & Cie et ses filiales, désignées ci-après comme “Audemars Piguet”. L'utilisation de ce site est soumise aux conditions d'utilisation énoncées ci-après. Audemars Piguet peut réviser ces conditions d'utilisation à n'importe quel moment en actualisant la section “conditions d'utilisation”. La révision des conditions prend effet à la date de leur envoi sur cette section.</target>
</trans-unit>
<trans-unit id="194">
<source>Before using this web-site, you must read this section carefully. Your use of the site implies that you accept the terms of use.</source>
<target>Avant d'utiliser ce site Internet, vous devez lire attentivement cette section. Votre utilisation du site signifie que vous acceptez les conditions d'utilisation.</target>
</trans-unit>
<trans-unit id="195">
<source>Terms of use of the material provided on the Audemars Piguet website</source>
<target>Conditions d'utilisation du matériel se trouvant sur le site Internet Audemars Piguet</target>
</trans-unit>
<trans-unit id="196">
<source>The information provided on this web-site is exclusively for your personal use. Anything you see or read on this site is protected by copyright as well as by international copyright laws and treaties dealing with copyright. You may download or print the material found on this site exclusively for non-commercial purposes, provided you do not change any copyright, any trademark or other notifications of property.</source>
<target>Les informations contenues sur ce site Internet sont uniquement pour votre usage personnel. Tout ce que vous voyez ou lisez sur ce site est protégé par des droits d'auteur ainsi que par des traités et lois internationaux sur le droit d'auteur. Vous pouvez télécharger ou imprimer du matériel se trouvant sur ce site uniquement à des fins non commerciales, pour autant que vous n’echangiez aucun droit d'auteur, aucune marque ou autres notifications de propriété.</target>
</trans-unit>
<trans-unit id="197">
<source>It is forbidden to sell, reproduce, distribute, modify, display or present in public any Audemars Piguet material for public or commercial purposes. Moreover, you may not use Audemars Piguet material on another web-site or another computerised medium. Any non-authorised use of Audemars Piguet material may infringe laws on copyright, trademarks, respect for private life and advertising, as well as regulatory laws and texts on communications.</source>
<target>Il est interdit de vendre, reproduire, distribuer, modifier, afficher ou présenter en public du matériel Audemars Piguet à toute fin publique ou commerciale. En outre, vous ne pouvez pas utiliser le matériel Audemars Piguet sur un autre site Internet ou dans un autre outil informatique. Toute utilisation non autorisée du matériel Audemars Piguet peut enfreindre les lois sur le droit d'auteur, sur les marques, sur le respect de la vie privée et la publicité, ainsi que les lois et textes réglementaires sur les communications.</target>
</trans-unit>
<trans-unit id="198">
<source>You may not connect to the Audemars Piguet website from the site of a third party. Under no circumstances shall Audemars Piguet be held responsible for any losses linked to the use of the information or software available on its site, even if it has been warned of the possibility of damage.</source>
<target>Vous ne pouvez pas vous connecter au site Internet Audemars Piguet à partir du site d'une tierce partie. En aucun cas Audemars Piguet n'est responsable des pertes en rapport avec l'utilisation des informations ou des logiciels disponibles sur son site, même si elle a été avertie de la possibilité de dommages.</target>
</trans-unit>
<trans-unit id="199">
<source>Links to other websites</source>
<target>Liens avec d'autres sites Internet</target>
</trans-unit>
<trans-unit id="200">
<source>This site offers you links with other sites operated by third parties other than Audemars Piguet. The fact of including these sites does not imply Audemars Piguet's approval of the content of these sites. Connections to these sites may be established at your own risk.</source>
<target>Ce site vous propose des liens à d'autres sites exploités par des tiers autres qu'Audemars Piguet. L'inclusion de ces sites ne sous-entend pas l'aval d'Audemars Piguet du contenu de ces sites. La connexion à ces sites est à vos propres risques.</target>
</trans-unit>
<trans-unit id="201">
<source>Personal data protection</source>
<target>Protection des données personnelles</target>
</trans-unit>
<trans-unit id="202">
<source>Audemars Piguet hereby undertakes to protect the personal information provided by visitors to its website. The personal data are provided by visitors in full knowledge of this fact. Access to the personal data provided is exclusive to Audemars Piguet. Audemars Piguet does not make the personal data provided by visitors available to any third party whatsoever.</source>
<target>Audemars Piguet s'engage à protéger les informations personnelles fournies par les visiteurs sur son site Internet. Les données personnelles sont fournies par les visiteurs en toute connaissance de cause. L'accès aux données personnelles fournies sont exclusivement exploitées par Audemars Piguet. Audemars Piguet ne rend disponible à aucun tiers les données personnelles fournies par les visiteurs.</target>
</trans-unit>
<trans-unit id="203">
<source>Old Tyme Logo</source>
<target></target>
</trans-unit>
<trans-unit id="204">
<source>{ fig. 1} Original Audemars Piguet logo from 1922.</source>
<target>{ fig. 1} Logo original Audemars Piguet, 1922.</target>
</trans-unit>
<trans-unit id="205">
<source>This page has children that will also be deleted. </source>
<target></target>
</trans-unit>
<trans-unit id="206">
<source>Home</source>
<target></target>
</trans-unit>
<trans-unit id="207">
<source>There do not seem to be any retailers in the location you have picked. That is pretty weird because we really carefully crafted this to not show options where there are no venodrs. So congrats. You broke our toy.</source>
<target></target>
</trans-unit>
<trans-unit id="208">
<source>Our Savoir-Faire</source>
<target>Notre Savoir-Faire</target>
</trans-unit>
<trans-unit id="209">
<source>Loading Results...</source>
<target></target>
</trans-unit>
<trans-unit id="210">
<source>submit</source>
<target>valider</target>
</trans-unit>
<trans-unit id="211">
<source>Limited Editions</source>
<target>Édition Limitée</target>
</trans-unit>
<trans-unit id="212">
<source>Base movement thickness</source>
<target></target>
</trans-unit>
<trans-unit id="213">
<source>Movement thickness with module</source>
<target>Epaisseur du mouvement avec module</target>
</trans-unit>
<trans-unit id="214">
<source>Total diameter</source>
<target>Diamètre total</target>
</trans-unit>
<trans-unit id="215">
<source>lignes</source>
<target></target>
</trans-unit>
<trans-unit id="216">
<source>Frequency of balance wheel</source>
<target>Fréquence du balancier</target>
</trans-unit>
<trans-unit id="217">
<source>Balance-spring type</source>
<target>Type de spiral</target>
</trans-unit>
<trans-unit id="218">
<source>Number of jewels</source>
<target>Nombre de pierres</target>
</trans-unit>
<trans-unit id="219">
<source>We apologize</source>
<target>Veuillez nous excuser</target>
</trans-unit>
<trans-unit id="220">
<source>The page seems to be missing or is causing an Error. It has been removed or no longer exists. Please feel free to continue exploring with one of the links below.</source>
<target>La page que vous avez demandé est manquante ou a provoqué une erreur. Il est possible qu'elle ait été déplacée ou qu'elle n'existe plus.
Nous vous invitons à continuer votre visite en vous aidant des liens ci-dessous.</target>
</trans-unit>
<trans-unit id="221">
<source>Terms of Use</source>
<target>Conditions d'utilisation</target>
</trans-unit>
<trans-unit id="222">
<source>Functions</source>
<target></target>
</trans-unit>
<trans-unit id="223">
<source>specificities</source>
<target>spécificités</target>
</trans-unit>
<trans-unit id="224">
<source>_404_page_title_</source>
<target></target>
</trans-unit>
<trans-unit id="225">
<source>_404_meta_desc_</source>
<target></target>
</trans-unit>
<trans-unit id="226">
<source>_404_meta_keywords_</source>
<target></target>
</trans-unit>
<trans-unit id="227">
<source>Case Width</source>
<target>Largeur du boîtier</target>
</trans-unit>
<trans-unit id="228">
<source>Case Thickness</source>
<target>Épaisseur du boîtier</target>
</trans-unit>
<trans-unit id="229">
<source>Ladies Collection </source>
<target></target>
</trans-unit>
<trans-unit id="230">
<source>Audemars Piguet &amp; Cie Sa</source>
<target></target>
</trans-unit>
<trans-unit id="231">
<source>Audemars Piguet Customer Service</source>
<target></target>
</trans-unit>
<trans-unit id="232">
<source>Often imitated, never equaled, the Royal Oak was the first watch to be defined not just by technical content and material, but also by aesthetic appeal. Celebrate its 40th anniversary.</source>
<target></target>
</trans-unit>
<trans-unit id="233">
<source>Current Exhibition:</source>
<target>Prochaine Exposition:</target>
</trans-unit>
<trans-unit id="234">
<source>Edit Venue</source>
<target></target>
</trans-unit>
<trans-unit id="235">
<source>Edit Dates</source>
<target></target>
</trans-unit>
<trans-unit id="236">
<source>From Avant-Garde to Icon</source>
<target>D'avant-garde à icône</target>
</trans-unit>
<trans-unit id="237">
<source>The Timepieces</source>
<target>Pièces d'exception</target>
</trans-unit>
<trans-unit id="238">
<source>Tour Dates &amp; Locations</source>
<target>Lieux et dates de l'exposition</target>
</trans-unit>
<trans-unit id="239">
<source>Years</source>
<target>Ans</target>
</trans-unit>
<trans-unit id="240">
<source>Chairwoman of the Board of Directors</source>
<target>Présidente du Conseil d’administration</target>
</trans-unit>
<trans-unit id="241">
<source>Designer of the original Royal Oak</source>
<target>Designer de la Royal Oak originale</target>
</trans-unit>
<trans-unit id="242">
<source>The fifteen iconic Royal Oaks</source>
<target>15 royal oak légendaires</target>
</trans-unit>
<trans-unit id="243">
<source>40 years.</source>
<target>40 ans.</target>
</trans-unit>
<trans-unit id="244">
<source>15 moments in time.</source>
<target>15 moments emblématiques.</target>
</trans-unit>
<trans-unit id="245">
<source>From Avant-Garde to Icon, journey through time with a spirit that endures.</source>
<target>D'avant-garde à icône, voyage dans le temps avec un esprit qui perdure.</target>
</trans-unit>
<trans-unit id="246">
<source>Begin</source>
<target>Commencer</target>
</trans-unit>
<trans-unit id="247">
<source>It Was to Change the Face of Modern Watchmaking</source>
<target>Objectif : révolutionner l’horlogerie moderne</target>
</trans-unit>
<trans-unit id="248">
<source>Designed virtually overnight by the brilliant and experienced stylist Gérald Genta, the Royal Oak was a bold response to a request for an “unprecedented steel watch.” Initially met with a blend of astonishment and contempt, the Royal Oak soon established itself as an iconic model that was to change the face of modern watchmaking.</source>
<target>Dessinée en une nuit par Gérald Genta, la Royal Oak était une réponse audacieuse à tous ceux qui attendaient à cette époque, une « montre en acier inédite ». Après un accueil initial mitigé, la Royal Oak est rapidement devenue une montre emblématique qualifiée depuis de révolutionnaire de par la rupture qu’elle avait créée avec les codes horlogers de l’époque.</target>
</trans-unit>