Newer
Older
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
msgid ""
msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.6.9\n"
"Project-Id-Version: Opac\n"
"Language: es\n"
"POT-Creation-Date: \n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
#: ../../application/modules/opac/controllers/AbonneController.php:264
msgid " (%d en retard)"
msgstr " (%d de retraso)"
#: ../../application/modules/opac/views/scripts/recherche/resultatRecherche.phtml:7
#: ../../application/modules/opac/views/scripts/recherche/resultatRecherche.phtml:11
#: ../../application/modules/opac/views/scripts/recherche/resultatRecherche.phtml:14
#: ../../application/modules/opac/views/scripts/recherche/resultatRecherche.phtml:16
msgid " (recherche élargie triée par pertinence)"
msgstr " (Ordenado por relevancia Búsqueda extendida)"
#: ../../library/ZendAfi/View/Helper/TreeView.php:64
#: ../../application/modules/admin/controllers/CmsController.php:51
#: ../../application/modules/admin/controllers/CmsController.php:53
#: ../../application/modules/admin/controllers/SitoController.php:78
#: ../../application/modules/admin/controllers/CmsController.php:48
#: ../../application/modules/admin/controllers/UsergroupController.php:28
#: ../../application/modules/admin/controllers/UsergroupController.php:48
#: ../../application/modules/admin/controllers/CmsController.php:64
msgid " Ajouter une catégorie"
msgstr " Añadir categoría"
#: ../../application/modules/opac/views/scripts/abonne/fiche.phtml:10
#: ../../application/modules/opac/views/scripts/abonne/fiche.phtml:8
#: ../../application/modules/opac/views/scripts/abonne/fiche.phtml:13
#: ../../library/ZendAfi/View/Helper/Abonne/AccesFiche.php:24
#: ../../library/ZendAfi/View/Helper/Abonne/AccesFiche.php:25
#: ../../library/ZendAfi/View/Helper/Abonne/AccesFiche.php:27
msgid " Modifier ma fiche"
msgstr " Cambiar mi"
#: ../../application/modules/opac/views/scripts/panier/ajout-ajax-success.phtml:6
#: ../../application/modules/opac/views/scripts/panier/ajout-ajax-success.phtml:14
msgid " a bien été ajoutée au panier "
msgstr " se ha añadido a la cesta"
#: ../../application/modules/opac/views/scripts/panier/creation-panier-success.phtml:6
msgid " a bien été créé."
msgstr " se ha creado."
#: ../../application/modules/opac/controllers/PanierController.php:290
msgid " ajouté au domaine sélectionné."
msgstr " añadido a la zona seleccionada."
#: ../../application/modules/opac/controllers/PanierController.php:291
msgid " ajouté aux domaines sélectionnés."
msgstr " añadido a las áreas seleccionadas."
#: ../../application/modules/opac/views/scripts/panier/ajout-ajax.phtml:9
msgid " au panier "
msgstr " a la cesta"
#: ../../application/modules/opac/views/scripts/abonne/fiche.phtml:28
#: ../../application/modules/opac/views/scripts/abonne/fiche.phtml:34
#: ../../library/ZendAfi/View/Helper/Abonne/Newsletters.php:32
msgid " aux lettres d'information: "
msgstr " a los boletines:"
#: ../../application/modules/opac/controllers/RechercheController.php:343
#: ../../application/modules/opac/controllers/RechercheController.php:363
#: ../../application/modules/opac/controllers/RechercheController.php:382
#: ../../application/modules/opac/controllers/RechercheController.php:430
#: ../../application/modules/opac/controllers/RechercheController.php:486
msgid " commence par :"
msgstr " comienza:"
#: ../../application/modules/opac/controllers/RechercheController.php:343
#: ../../application/modules/opac/controllers/RechercheController.php:363
#: ../../application/modules/opac/controllers/RechercheController.php:382
#: ../../application/modules/opac/controllers/RechercheController.php:431
#: ../../application/modules/opac/controllers/RechercheController.php:487
msgid " contient :"
msgstr " contiene:"
#: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:51
#: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:49
msgid " dont %d retard"
msgstr " incluyendo %d con retraso"
#: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:52
#: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:50
msgid " dont %d retards"
msgstr " inculyendo %d con retraso"
#: ../../application/modules/opac/controllers/RechercheController.php:342
#: ../../application/modules/opac/controllers/RechercheController.php:362
#: ../../application/modules/opac/controllers/RechercheController.php:381
#: ../../application/modules/opac/controllers/RechercheController.php:425
#: ../../application/modules/opac/controllers/RechercheController.php:481
msgid " et "
msgstr " y"
#: ../../application/modules/opac/controllers/UploadController.php:21
#: ../../application/modules/opac/controllers/UploadController.php:24
#: ../../application/modules/opac/controllers/UploadController.php:43
msgid " et des dimensions se rapprochant de %s x %s pixels"
msgstr " y las dimensiones que se aproximan %s x %s píxeles"
#: ../../library/ZendAfi/View/Helper/admin/ProfileSelect.php:20
#: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:20
#: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:39
msgid " et profil"
msgstr " y el perfil"
#: ../../application/modules/opac/controllers/RechercheController.php:342
#: ../../application/modules/opac/controllers/RechercheController.php:362
#: ../../application/modules/opac/controllers/RechercheController.php:381
#: ../../application/modules/opac/controllers/RechercheController.php:426
#: ../../application/modules/opac/controllers/RechercheController.php:482
#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:40
msgid " ou "
msgstr " o"
#: ../../application/modules/opac/controllers/AbonneController.php:451
#: ../../application/modules/opac/controllers/AbonneController.php:511
#: ../../application/modules/opac/controllers/AbonneController.php:509
msgid " par E-Mail"
msgstr " por E-Mail"
#: ../../application/modules/opac/controllers/AbonneController.php:452
#: ../../application/modules/opac/controllers/AbonneController.php:512
#: ../../application/modules/opac/controllers/AbonneController.php:510
msgid " par SMS"
msgstr " SMS"
#: ../../application/modules/opac/controllers/AbonneController.php:450
#: ../../application/modules/opac/controllers/AbonneController.php:510
#: ../../application/modules/opac/controllers/AbonneController.php:508
msgid " par courrier postal"
msgstr " por correo"
#: ../../application/modules/opac/controllers/RechercheController.php:342
#: ../../application/modules/opac/controllers/RechercheController.php:362
#: ../../application/modules/opac/controllers/RechercheController.php:381
#: ../../application/modules/opac/controllers/RechercheController.php:427
#: ../../application/modules/opac/controllers/RechercheController.php:483
#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:41
msgid " sauf "
msgstr " excepto"
#: ../../library/ZendAfi/View/Helper/Notice/Navigation.php:52
#: ../../library/ZendAfi/View/Helper/Notice/Navigation.php:61
msgid " sur "
msgstr " en"
#: ../../application/modules/opac/views/scripts/abonne/fiche.phtml:28
#: ../../application/modules/opac/views/scripts/abonne/fiche.phtml:34
#: ../../library/ZendAfi/View/Helper/Abonne/Newsletters.php:32
msgid " à la lettre d'information: "
msgstr " el boletín de noticias:"
#: ../../application/modules/admin/views/scripts/modules/recherche_resultat.phtml:27
#: ../../library/ZendAfi/Form/Configuration/SearchResult.php:87
msgid "Lien \"Suggérer un achat\""
msgstr "Enlace \"Sugerir una Compra\""
#: ../../application/modules/admin/controllers/LieuController.php:47
msgid "Modifier le lieu: \"%s\""
msgstr "Cambiar de ubicación: \"%s\""
#: ../../application/modules/opac/controllers/PanierController.php:137
#: ../../application/modules/opac/controllers/PanierController.php:173
msgid "Notice \"%s\" ajoutée au panier \"%s\""
msgstr "Registro \"%s\" añadido a la cesta \"%s\""
#: ../../application/modules/opac/controllers/PanierController.php:229
msgid "Panier \"%s\" renommé vers \"%s\""
msgstr "Cesta \"%s\" renombrado a \"%s\""
#: ../../application/modules/admin/views/scripts/i18n/index.phtml:18
msgid "%.2f %%"
msgstr "%.2f %%"
#: ../../library/ZendAfi/View/Helper/FicheAbonneLinks.php:29
#: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:44
#: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:42
#: ../../library/ZendAfi/View/Helper/FicheAbonneLinks.php:28
msgid "%d prêt en cours"
msgstr "%d prestamo activo"
#: ../../library/ZendAfi/View/Helper/FicheAbonneLinks.php:30
#: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:45
#: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:43
#: ../../library/ZendAfi/View/Helper/FicheAbonneLinks.php:29
msgid "%d prêts en cours"
msgstr "%d préstamos activos"
#: ../../library/ZendAfi/View/Helper/FicheAbonneLinks.php:46
#: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:64
#: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:65
#: ../../library/ZendAfi/View/Helper/FicheAbonneLinks.php:45
msgid "%d réservation"
msgstr "%d reserva"
#: ../../library/ZendAfi/View/Helper/FicheAbonneLinks.php:47
#: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:65
#: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:66
#: ../../library/ZendAfi/View/Helper/FicheAbonneLinks.php:46
msgid "%d réservations"
msgstr "%d reservas"
#: ../../library/ZendAfi/View/Helper/ListeSuggestionAchat.php:40
msgid "%d suggestions enregistrées."
msgstr "%d sugerencias registradas."
#: ../../library/ZendAfi/View/Helper/Admin/SubscribeUsers.php:91
#: ../../library/ZendAfi/View/Helper/Admin/UserGroupMemberShip.php:60
#: ../../library/ZendAfi/View/Helper/Admin/FormationSubscribers.php:50
#: ../../library/ZendAfi/View/Helper/Admin/SubscribeUsers.php:173
msgid "%d utilisateur"
msgstr "%d usuario"
#: ../../library/ZendAfi/View/Helper/Admin/SubscribeUsers.php:92
#: ../../library/ZendAfi/View/Helper/Admin/UserGroupMemberShip.php:61
#: ../../library/ZendAfi/View/Helper/Admin/FormationSubscribers.php:51
#: ../../library/ZendAfi/View/Helper/Admin/SubscribeUsers.php:174
msgid "%d utilisateurs"
msgstr "%d usuarios"
#: ../../library/ZendAfi/View/Helper/Telephone/Tags/ResumeAvis.php:33
msgid "%d évaluation"
msgstr "%d evaluación"
#: ../../library/ZendAfi/View/Helper/Telephone/Tags/ResumeAvis.php:34
msgid "%d évaluations"
msgstr "%d evaluaciones"
#: ../../library/ZendAfi/View/Helper/HistoriqueRecherche.php:76
#: ../../library/ZendAfi/View/Helper/HistoriqueRecherche.php:77
#: ../../library/ZendAfi/View/Helper/HistoriqueRecherche.php:95
#: ../../library/ZendAfi/View/Helper/HistoriqueRecherche.php:96
msgid "%s "
msgstr "%s"
#: ../../library/ZendAfi/View/Helper/RenderDateRange.php:29
msgid "%s au %s"
msgstr "%s %s"
#: ../../library/Class/NoticeHtml.php:469
#: ../../library/Class/NoticeHtml.php:476
#: ../../library/Class/NoticeHtml.php:481
#: ../../library/Class/NoticeHtml.php:472
#: ../../library/Class/NoticeHtml.php:484
msgid "%s livre"
msgstr "Libro%s"
#: ../../library/Class/NoticeHtml.php:467
#: ../../library/Class/NoticeHtml.php:474
#: ../../library/Class/NoticeHtml.php:479
#: ../../library/Class/NoticeHtml.php:470
#: ../../library/Class/NoticeHtml.php:482
msgid "%s livres"
msgstr "Libros%s"
#: ../../application/modules/opac/views/scripts/rechercheoai/resultat.phtml:15
#: ../../library/ZendAfi/View/Helper/Telephone/ListeNotices.php:27
#: ../../library/ZendAfi/View/Helper/Telephone/ListeNotices.php:35
#: ../../library/ZendAfi/View/Helper/Telephone/ListeNotices.php:59
#: ../../library/ZendAfi/View/Helper/Telephone/ListeNotices.php:60
msgid "%s notices trouvées"
msgstr "%s registros encontrados"
#: ../../application/modules/opac/views/scripts/panier/index.phtml:64
#: ../../application/modules/opac/views/scripts/panier/index.phtml:68
msgid " <small>"
msgstr "& Nbsp; <small>"
msgid ""
"'%hostname%' does not appear to have a valid MX record for the email address "
"'%value%'"
msgstr ""
"''%hostname%' no parece-tener un registro MX válido para la dirección de "
"correo electrónico '%value%'"
msgid "'%hostname%' is not a valid hostname for email address '%value%'"
msgstr ""
"'%hostname%' no es un nombre de host válido para la dirección de correo "
"electrónico '%value%'"
msgid ""
"'%hostname%' is not in a routable network segment. The email address '%value"
"%' should not be resolved from public network."
msgstr ""
"'%hostname%' no se encuentra en un segmento de red enrutable. La dirección "
"de correo electrónico '%value%' no deberías ser resueltos desde la red "
"pública."
msgid "'%localPart%' can not be matched against dot-atom format"
msgstr "'%localPart%' no puede ser comparada con el tamaño del punto-átomo"
msgid "'%localPart%' can not be matched against quoted-string format"
msgstr "'%localPart%' no puede ser igualada Contra-citada cadena de tamaño"
msgid "'%localPart%' is no valid local part for email address '%value%'"
msgstr ""
"'%localPart%' hay una dirección de correo electrónico válida para parte "
"local '%value%'"
msgid "'%value%' appears to be a DNS hostname but cannot extract TLD part"
msgstr ""
"'%value%' parece ser una meta nombre de host DNS no puede extraer la cuota "
"TLD"
msgid ""
"'%value%' appears to be a DNS hostname but cannot match TLD against known "
"list"
msgstr ""
"'%value%' parece ser una meta nombre de host DNS no puede coincidir con TLD "
"Contra lista conocido"
msgid ""
"'%value%' appears to be a DNS hostname but cannot match against hostname "
"schema for TLD '%tld%'"
msgstr ""
"'%value%' parece ser una meta nombre de host DNS no puede igualar contra el "
"esquema de nombre de host para el TLD '%tld%'"
msgid ""
"'%value%' appears to be a DNS hostname but contains a dash in an invalid "
"position"
msgstr ""
"'%value%' parece ser un nombre de host DNS contiene una meta guión en una "
"posición no válida"
msgid ""
"'%value%' appears to be a DNS hostname but the given punycode notation "
"cannot be decoded"
msgstr ""
"'%value%' parece ser una meta nombre de host DNS La notación punycode Dado "
"que no se puede decodificar"
msgid ""
"'%value%' appears to be a local network name but local network names are not "
"allowed"
msgstr ""
"'%value%' parece ser una finalidad nombre de la red local de nombres de la "
"red local no se les permite"
msgid "'%value%' appears to be an IP address, but IP addresses are not allowed"
msgstr ""
"'%value%' parece ser una dirección IP, las direcciones IP de propósito no se "
"les permite"
msgid "'%value%' contains not only digit characters"
msgstr "'%value%' no sólo contiene caracteres de dígitos"
msgid "'%value%' does not appear to be a valid local network name"
msgstr "'%value%' no parece ser un nombre de red local válida"
msgid "'%value%' does not appear to be an integer"
msgstr "'%value%' no parecen ser un número entero"
msgid "'%value%' does not match the expected structure for a DNS hostname"
msgstr ""
"'%value%' no se corresponde con la estructura esperada para un nombre de "
"host DNS"
msgid "'%value%' exceeds the allowed length"
msgstr "'%value%' supera la longitud permitida"
msgid "'%value%' is greater than %max% characters long"
msgstr "'%value%' es mayor que los caracteres %max% largo"
msgid "'%value%' is less than %min% characters long"
msgstr "'%value%' es menor que %min% caracteres"
msgid ""
"'%value%' is not a valid email address in the basic format local-"
"part@hostname"
msgstr ""
"'%value%' no es una dirección de correo electrónico válida en el tamaño "
"básico parte-local @ nombre de host"
#: ../../application/modules/opac/controllers/AbonneController.php:265
#: ../../application/modules/opac/controllers/AbonneController.php:271
#: ../../application/modules/opac/controllers/AbonneController.php:297
#: ../../application/modules/opac/controllers/AbonneController.php:294
#: ../../library/ZendAfi/View/Helper/Abonne/Prets.php:35
#: ../../library/ZendAfi/View/Helper/Abonne/Prets.php:38
msgid "(%d en retard)"
msgstr "(%d de retraso)"
#: ../../library/Class/Blog.php:78 ../../library/Class/Blog.php:97
msgid "(ce commentaire a été signalé aux modérateurs)"
msgstr "(Este comentario fue reportado a los moderadores)"
#: ../../application/modules/admin/controllers/BibController.php:529
#: ../../application/modules/admin/controllers/BibController.php:537
#: ../../application/modules/admin/controllers/BibController.php:556
#: ../../application/modules/admin/controllers/BibController.php:553
#: ../../application/modules/admin/controllers/BibController.php:493
#: ../../application/modules/admin/controllers/BibController.php:498
msgid "** nouveau plan **"
msgstr "Nuevo plan ** **"
#: ../../application/modules/admin/controllers/BibController.php:774
#: ../../application/modules/admin/views/scripts/bib/planacces.phtml:11
#: ../../application/modules/admin/controllers/BibController.php:782
#: ../../application/modules/admin/controllers/BibController.php:801
#: ../../application/modules/admin/controllers/BibController.php:798
msgid "** nouveau point **"
msgstr "Nuevo punto ** **"
#: ../../application/modules/admin/controllers/BibController.php:768
#: ../../application/modules/admin/views/scripts/bib/planacces.phtml:9
#: ../../application/modules/admin/controllers/BibController.php:776
#: ../../application/modules/admin/controllers/BibController.php:795
#: ../../application/modules/admin/controllers/BibController.php:792
msgid "** nouvelle couche **"
msgstr "Nueva capa ** **"
#: ../../application/modules/admin/controllers/BibController.php:784
#: ../../application/modules/admin/views/scripts/bib/planacces.phtml:14
#: ../../application/modules/admin/controllers/BibController.php:792
#: ../../application/modules/admin/controllers/BibController.php:811
#: ../../application/modules/admin/controllers/BibController.php:808
msgid "** nouvelle info **"
msgstr "Nueva info ** **"
#: ../../application/modules/admin/controllers/BibController.php:418
#: ../../application/modules/admin/controllers/BibController.php:426
#: ../../application/modules/admin/controllers/BibController.php:445
#: ../../application/modules/admin/controllers/BibController.php:442
#: ../../application/modules/admin/controllers/BibController.php:401
#: ../../application/modules/admin/controllers/BibController.php:406
msgid "** nouvelle localisation **"
msgstr "Nueva ubicación ** **"
#: ../../application/modules/opac/controllers/UploadController.php:19
#: ../../application/modules/opac/controllers/UploadController.php:38
msgid ""
"*NB : l'image doit être de type \"%s\", avoir une taille inférieure à %s ko"
msgstr ""
"* Nota: La imagen debe ser \"%s\", debe tener un tamaño inferior a %s KB"
#: ../../library/ZendAfi/View/Helper/FicheAbonneLinks.php:34
#: ../../library/ZendAfi/View/Helper/FicheAbonneLinks.php:35
#: ../../library/ZendAfi/View/Helper/FicheAbonneLinks.php:33
msgid ", %d en retard"
msgstr " %d tarde"
#: ../../application/modules/opac/controllers/RechercheController.php:344
#: ../../application/modules/opac/controllers/RechercheController.php:364
#: ../../application/modules/opac/controllers/RechercheController.php:383
#: ../../application/modules/opac/controllers/RechercheController.php:435
#: ../../application/modules/opac/controllers/RechercheController.php:490
msgid ", Titre"
msgstr ", Título"
#: ../../application/modules/opac/controllers/RechercheController.php:337
#: ../../application/modules/opac/controllers/RechercheController.php:357
#: ../../application/modules/opac/controllers/RechercheController.php:370
#: ../../application/modules/opac/controllers/RechercheController.php:413
#: ../../application/modules/opac/controllers/RechercheController.php:468
msgid ", type de document: %s"
msgstr "Tipo de documento: %s"
#: ../../application/modules/admin/views/scripts/footer.phtml:4
#: ../../application/modules/opac/views/scripts/footer.phtml:17
#: ../../application/modules/opac/views/scripts/footer.phtml:16
#: ../../application/modules/opac/views/scripts/footer.phtml:30
#: ../../application/modules/opac/views/scripts/footer.phtml:29
msgid "- Tous droits réservés - Hébergement & Conception graphique"
msgstr "- Todos los derechos reservados - Hosting & amp; Diseño gráfico"
#: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:114
#: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:115
#: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:121
msgid "1 an"
msgstr "1 año"
#: ../../library/ZendAfi/View/Helper/ListeCVSNotices.php:48
msgid "1 document trouvée"
msgstr "1 resultado"
#: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:111
#: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:109
#: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:115
msgid "1 mois"
msgstr "1 mes"
#: ../../application/modules/opac/views/scripts/rechercheoai/resultat.phtml:13
#: ../../library/ZendAfi/View/Helper/ListeNotices.php:32
#: ../../library/ZendAfi/View/Helper/Telephone/ListeNotices.php:26
#: ../../library/ZendAfi/View/Helper/ListeNotices.php:31
#: ../../library/ZendAfi/View/Helper/ListeNotices.php:39
#: ../../library/ZendAfi/View/Helper/ListeNotices.php:40
#: ../../library/ZendAfi/View/Helper/Telephone/ListeNotices.php:34
#: ../../library/ZendAfi/View/Helper/Telephone/ListeNotices.php:57
#: ../../library/ZendAfi/View/Helper/ListeNotices.php:57
#: ../../library/ZendAfi/View/Helper/ListeNotices.php:58
#: ../../library/ZendAfi/View/Helper/Telephone/ListeNotices.php:58
msgid "1 notice trouvée"
msgstr "1 resultado"
#: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:112
#: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:111
#: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:117
msgid "3 mois"
msgstr "3 meses"
#: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:115
#: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:117
#: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:123
msgid "5 ans"
msgstr "5 años"
#: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:113
#: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:119
msgid "6 mois"
msgstr "6 meses"
#: ../../library/Class/NoticeHtml.php:561
#: ../../library/Class/NoticeHtml.php:568
#: ../../library/Class/NoticeHtml.php:573
#: ../../library/Class/NoticeHtml.php:564
#: ../../library/Class/NoticeHtml.php:576
#: ../../library/Class/NoticeHtml.php:448
msgid "<img src=\"%s\" border=\"0\" style=\"%s\" alt=\"%s\" />"
msgstr "<Img src = \"%s\" border = \"0\" style = \"%s\" alt = \"%s\" />"
#: ../../library/ZendAfi/View/Helper/Biographie.php:86
#: ../../library/ZendAfi/View/Helper/Biographie.php:90
msgid "<img src=\"%s\" style=\"%s\" alt=\"%s\" />"
msgstr "<img src=\"%s\" style=\"%s\" alt=\"%s\" />"
#: ../../application/modules/opac/views/scripts/head.phtml:80
#: ../../application/modules/opac/views/scripts/head.phtml:83
msgid ""
"<link rel=\"alternate stylesheet\" type=\"text/css\" href=\"#\" title=\"%s\" "
"data-name=\"style_defaut\">"
msgstr ""
"<link rel=\"alternate stylesheet\" type=\"text/css\" href=\"#\" title=\"%s\" "
"data-name=\"style_defaut\">"
#: ../../application/modules/opac/views/scripts/head.phtml:64
msgid ""
"<link rel=\"alternate stylesheet\" type=\"text/css\" href=\"#\" title=\"%s\">"
msgstr ""
"<link rel=\"alternate stylesheet\" type=\"text/css\" href=\"#\" title=\"%s\">"
#: ../../application/modules/opac/views/scripts/head.phtml:46
#: ../../application/modules/opac/views/scripts/head.phtml:47
msgid ""
"<link rel=\"alternate stylesheet\" type=\"text/css\" href=\"\" title=\"%s\" /"
">"
msgstr ""
"<link rel=\"alternate stylesheet\" type=\"text/css\" href=\"\" title=\"%s\" /"
">"
#: ../../application/modules/opac/views/scripts/head.phtml:47
#: ../../application/modules/opac/views/scripts/head.phtml:55
msgid ""
"<link rel=\"alternate stylesheet\" type=\"text/css\" href=\"\" title=\"%s\">"
msgstr ""
"<link rel=\"alternate stylesheet\" type=\"text/css\" href=\"\" title=\"%s\">"
#: ../../application/modules/opac/views/scripts/panier/index.phtml:54
#: ../../application/modules/opac/views/scripts/panier/index.phtml:55
msgid "<small>"
msgstr "<Small>"
#: ../../library/ZendAfi/Form/ReponseFormulaireMail.php:35
msgid "A"
msgstr "A"
#: ../../application/modules/admin/views/scripts/catalogue/form.phtml:31
#: ../../application/modules/admin/views/scripts/catalogue/form.phtml:43
msgid "A indexer dans les notices"
msgstr "Un índice en los registros"
#: ../../application/modules/opac/controllers/RssController.php:203
#: ../../application/modules/opac/controllers/RssController.php:218
msgid "A la Une"
msgstr "Titulares"
#: ../../application/modules/telephone/views/scripts/abonne/fiche.phtml:22
msgid "Abonnement"
msgstr "Suscripción"
#: ../../application/modules/opac/controllers/AbonneController.php:401
#: ../../application/modules/opac/controllers/AbonneController.php:409
#: ../../application/modules/opac/controllers/AbonneController.php:417
#: ../../application/modules/opac/controllers/AbonneController.php:443
#: ../../application/modules/opac/controllers/AbonneController.php:434
#: ../../application/modules/opac/controllers/AbonneController.php:410
#: ../../application/modules/opac/controllers/AbonneController.php:460
#: ../../application/modules/opac/controllers/AbonneController.php:520
#: ../../application/modules/opac/controllers/AbonneController.php:518
msgid "Abonnement aux lettres d'information"
msgstr "Suscribirse a boletines"
#: ../../application/modules/admin/views/scripts/users/_form.phtml:58
#: ../../application/modules/admin/views/scripts/users/_form.phtml:56
#: ../../application/modules/admin/views/scripts/users/_form.phtml:59
#: ../../application/modules/admin/views/scripts/users/_form.phtml:69
#: ../../application/modules/admin/views/scripts/users/_form.phtml:85
#: ../../application/modules/admin/views/scripts/users/_form.phtml:93
#: ../../application/modules/admin/views/scripts/users/_form.phtml:132
msgid "Abonné sigb"
msgstr "ILS suscriptor"
#: ../../application/modules/admin/views/scripts/newsletter/edit-subscribers.phtml:1
msgid "Abonnés de la lettre: "
msgstr "Los seguidores de la letra:"
#: ../../library/ZendAfi/View/Helper/admin/MenuHorizontalAdmin.php:8
#: ../../library/ZendAfi/View/Helper/BarreNav.php:16
#: ../../library/ZendAfi/View/Helper/ComboProfils.php:46
#: ../../library/Class/MoteurRecherche.php:311
#: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:8
#: ../../library/Class/MoteurRecherche.php:327
#: ../../library/Class/MoteurRecherche.php:339
#: ../../library/Class/MoteurRecherche.php:374
#: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:27
#: ../../library/ZendAfi/View/Helper/BarreNav.php:35
#: ../../library/ZendAfi/View/Helper/Telephone/Tags/Toolbar.php:29
#: ../../library/ZendAfi/View/Helper/ComboProfils.php:65
#: ../../library/Class/MoteurRecherche.php:400
#: ../../library/ZendAfi/View/Helper/BarreNav.php:33
#: ../../library/ZendAfi/View/Helper/ComboProfils.php:112
#: ../../library/Class/MoteurRecherche.php:421
#: ../../library/ZendAfi/View/Helper/BarreNav.php:32
#: ../../library/ZendAfi/View/Helper/Telephone/Tags/Toolbar.php:32
#: ../../library/ZendAfi/View/Helper/ComboProfils.php:114
#: ../../library/Class/MoteurRecherche.php:415
#: ../../library/ZendAfi/View/Helper/Telephone/Tags/Toolbar.php:35
msgid "Accueil"
msgstr "Bienvenido"
#: ../../application/modules/admin/views/scripts/index/index.phtml:33
#: ../../application/modules/admin/views/scripts/index/index.phtml:27
#: ../../application/modules/admin/views/scripts/index/index.phtml:29
msgid "Accès"
msgstr "Acceso"
#: ../../application/modules/opac/views/scripts/footer.phtml:5
msgid "Accès pro."
msgstr "Pro Services."
#: ../../library/ZendAfi/View/Helper/admin/MenuGaucheAdmin.php:58
#: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:58
#: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:65
#: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:70
#: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:118
#: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:123
#: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:131
#: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:215
#: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:224
msgid "Accès à Cosmogramme"
msgstr "Cosmograma Acceso"
#: ../../application/modules/admin/views/scripts/users/index.phtml:19
#: ../../application/modules/admin/views/scripts/users/index.phtml:21
msgid "Action"
msgstr "Acción"
#: ../../library/ZendAfi/View/Helper/TagModelTable.php:35
#: ../../library/ZendAfi/View/Helper/TagModelTable.php:45
#: ../../library/ZendAfi/View/Helper/TagModelTable.php:61
#: ../../application/modules/admin/views/scripts/modo/formulaires.phtml:26
#: ../../application/modules/admin/views/scripts/modo/formulaires.phtml:37
#: ../../library/ZendAfi/View/Helper/TagModelTable.php:62
msgid "Actions"
msgstr "Stock"
#: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:237
#: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:246
#: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:293
#: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:291
#: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:313
#: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:325
#: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:339
msgid "Activer les outils d'accessibilité"
msgstr "Habilitar herramientas de accesibilidad"
#: ../../application/modules/opac/views/scripts/bib/index.phtml:87
#: ../../application/modules/opac/views/scripts/bib/zoneview.phtml:66
#: ../../application/modules/opac/views/scripts/bib/index.phtml:89
#: ../../application/modules/opac/views/scripts/bib/_articles_by_bib.phtml:1
#: ../../application/modules/opac/views/scripts/bib/_articles_by_bib.phtml:2
msgid "Actualités :"
msgstr "Noticias:"
#: ../../library/ZendAfi/View/Helper/admin/MenuGaucheAdmin.php:49
#: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:49
#: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:56
#: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:61
#: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:100
#: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:105
#: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:115
#: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:188
#: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:197
msgid "Administration du portail"
msgstr "Portal Administration"
#: ../../application/modules/admin/views/scripts/multimedia/index.phtml:17
msgid "Administrer le serveur AFI-Multimedia"
msgstr "Administrar el servidor de AFI-Multimedia"
#: ../../application/modules/admin/views/scripts/bib/_form.phtml:40
#: ../../application/modules/admin/views/scripts/bib/_form.phtml:44
#: ../../application/modules/admin/views/scripts/bib/planacces.phtml:128
#: ../../application/modules/admin/views/scripts/bib/_form.phtml:39
#: ../../application/modules/admin/views/scripts/bib/_form.phtml:43
#: ../../application/modules/opac/controllers/IndexController.php:81
#: ../../application/modules/opac/controllers/IndexController.php:97
#: ../../application/modules/opac/controllers/IndexController.php:102
#: ../../application/modules/opac/controllers/AbonneController.php:376
#: ../../application/modules/opac/controllers/IndexController.php:94
#: ../../application/modules/opac/controllers/IndexController.php:93
#: ../../application/modules/opac/controllers/AbonneController.php:436
#: ../../application/modules/opac/controllers/AbonneController.php:434
#: ../../library/ZendAfi/Form/ContactForm.php:67
msgid "Adresse"
msgstr "Dirección"
#: ../../application/modules/opac/views/scripts/bib/bibview.phtml:38
#: ../../application/modules/opac/views/scripts/bib/bibview.phtml:40
msgid "Adresse : "
msgstr "Dirección:"
#: ../../application/modules/admin/views/scripts/bib/_form.phtml:122
#: ../../application/modules/admin/views/scripts/bib/_form.phtml:121
#: ../../application/modules/admin/views/scripts/bib/_form.phtml:125
msgid "Adresse URL"
msgstr "URL"
#: ../../library/Class/Mail.php:38 ../../library/Class/Mail.php:48
#: ../../library/Class/Mail.php:79 ../../library/Class/Mail.php:81
msgid "Adresse du destinataire absente."
msgstr "Destinatario ausente dirección."
#: ../../application/modules/admin/views/scripts/modules/bib_all.phtml:3
#: ../../library/ZendAfi/Form/Album.php:75
#: ../../library/ZendAfi/Form/Configuration/SearchResult.php:126
#: ../../library/ZendAfi/Form/Configuration/SearchResult.php:160
#: ../../library/ZendAfi/Form/Configuration/SearchResult.php:222
msgid "Affichage"
msgstr "Viendo el"
#: ../../library/ZendAfi/Form/ChangeKiosqueSelection.php:60
msgid "Afficher "
msgstr "Fijar"
#: ../../application/modules/opac/controllers/IndexController.php:154
msgid "Afficher Agenda"
msgstr "Ver Agenda"
#: ../../library/ZendAfi/Form/Configuration/SearchResult.php:225
msgid "Afficher au dessous des facettes"
msgstr "Vea a continuación las facetas"
#: ../../library/ZendAfi/Form/Configuration/SearchResult.php:227
msgid "Afficher au dessous des résultats"
msgstr "Consulte a continuación los resultados"
#: ../../library/ZendAfi/Form/Configuration/SearchResult.php:224
msgid "Afficher au dessus des facettes"
msgstr "Ver las facetas anteriores"
#: ../../library/ZendAfi/Form/Configuration/SearchResult.php:226
msgid "Afficher au dessus des résultats"
msgstr "Ver resultados anteriores"
#: ../../application/modules/opac/views/scripts/panier/index.phtml:27
#: ../../application/modules/opac/views/scripts/panier/index.phtml:28
msgid "Afficher en résultat de recherche"
msgstr "Mostrar resultados de búsqueda"
#: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:214
#: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:223
#: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:270
#: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:268
#: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:290
#: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:302
#: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:316
msgid "Afficher la barre de navigation"
msgstr "Navigation Display"
#: ../../library/Class/NoticeHtml.php:359
#: ../../library/Class/NoticeHtml.php:360
#: ../../library/Class/NoticeHtml.php:364
#: ../../library/Class/NoticeHtml.php:365
#: ../../library/Class/NoticeHtml.php:366
#: ../../library/Class/NoticeHtml.php:356
#: ../../library/Class/NoticeHtml.php:357
#: ../../library/Class/NoticeHtml.php:398
#: ../../library/Class/NoticeHtml.php:399
#: ../../library/Class/NoticeHtml.php:268
#: ../../library/Class/NoticeHtml.php:269
#: ../../library/ZendAfi/View/Helper/Notice/Exemplaires.php:116
#: ../../library/ZendAfi/View/Helper/Notice/Exemplaires.php:117
#: ../../library/ZendAfi/View/Helper/Notice/Exemplaires.php:121
#: ../../library/ZendAfi/View/Helper/Notice/Exemplaires.php:122
msgid "Afficher la carte"
msgstr "Ver mapa"
#: ../../library/Class/NoticeHtml.php:402
#: ../../library/Class/NoticeHtml.php:403
#: ../../library/Class/NoticeHtml.php:407
#: ../../library/Class/NoticeHtml.php:408
#: ../../library/Class/NoticeHtml.php:412
#: ../../library/Class/NoticeHtml.php:413
#: ../../library/Class/NoticeHtml.php:414
#: ../../library/Class/NoticeHtml.php:404
#: ../../library/Class/NoticeHtml.php:405
#: ../../library/Class/NoticeHtml.php:417
#: ../../library/Class/NoticeHtml.php:418
#: ../../library/Class/NoticeHtml.php:287
#: ../../library/Class/NoticeHtml.php:288
#: ../../library/ZendAfi/View/Helper/Notice/Exemplaires.php:134
#: ../../library/ZendAfi/View/Helper/Notice/Exemplaires.php:135
#: ../../library/ZendAfi/View/Helper/Notice/Exemplaires.php:142
#: ../../library/ZendAfi/View/Helper/Notice/Exemplaires.php:143
msgid "Afficher la notice"
msgstr "Ver registro"
#: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:203
#: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:212
#: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:259
#: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:257
#: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:279
#: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:291
#: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:305
msgid "Afficher le menu horizontal"
msgstr "Mostrar menú horizontal"
#: ../../application/modules/opac/views/scripts/portail.phtml:10
msgid "Afficher le site en mode mobile"
msgstr "Véase el sitio Web en modo móvil"
#: ../../library/ZendAfi/Form/Configuration/SearchResult.php:128
msgid "Afficher les facettes"
msgstr "Ver facetas"
#: ../../application/modules/opac/views/scripts/head.phtml:41
#: ../../application/modules/opac/views/scripts/head.phtml:42
#: ../../application/modules/opac/views/scripts/head.phtml:43
msgid "Afficher les outils d\\'administration"
msgstr "Administración Mostrar herramientas \\"
#: ../../library/ZendAfi/View/Helper/Facettes.php:73
#: ../../library/ZendAfi/View/Helper/Facettes.php:80
msgid "Afficher plus de facettes..."
msgstr "Ver más facetas ..."
#: ../../library/Class/NoticeHtml.php:520
#: ../../library/Class/NoticeHtml.php:527
#: ../../library/Class/NoticeHtml.php:532
#: ../../library/Class/NoticeHtml.php:523
#: ../../library/Class/NoticeHtml.php:533
#: ../../library/Class/NoticeHtml.php:405
#: ../../library/Class/NoticeHtml.php:161
#: ../../library/Class/NoticeHtml.php:160
#: ../../library/Class/NoticeHtml.php:152
msgid "Afficher plus de notices..."
msgstr "Ver más registros ..."
#: ../../application/modules/admin/views/scripts/modo/formulaires.phtml:16
msgid "Afficher toutes les réponses"
msgstr "Mostrar todas las respuestas"
#: ../../library/Class/NoticeHtml.php:418
#: ../../library/Class/NoticeHtml.php:423
#: ../../library/Class/NoticeHtml.php:428
#: ../../library/Class/NoticeHtml.php:429
#: ../../library/Class/NoticeHtml.php:420
#: ../../library/Class/NoticeHtml.php:433
#: ../../library/Class/NoticeHtml.php:303
#: ../../library/ZendAfi/View/Helper/Notice/Exemplaires.php:150
#: ../../library/ZendAfi/View/Helper/Notice/Exemplaires.php:158
msgid "Afficher toutes les éditions de ce document"
msgstr "Ver todas las ediciones de este documento"
#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:94
msgid "Afficher un nouveau domaine"
msgstr "Pruebe con un nuevo dominio"
#: ../../application/modules/admin/views/scripts/modo/formulaires.phtml:9
msgid "Afficher uniquement les réponses à valider"
msgstr "Mostrar sólo respuestas para validar"
#: ../../application/modules/admin/views/scripts/cms/newsform.phtml:87
#: ../../application/modules/admin/views/scripts/cms/newsform.phtml:92
#: ../../application/modules/admin/views/scripts/cms/newsform.phtml:118
#: ../../application/modules/admin/views/scripts/cms/newsform.phtml:112
#: ../../application/modules/admin/views/scripts/cms/newsform.phtml:108
#: ../../application/modules/admin/views/scripts/cms/newsform.phtml:103
#: ../../library/ZendAfi/Form/Admin/News.php:62
msgid "Agenda"
msgstr "Diario"
#: ../../library/Class/NoticeHtml.php:658
#: ../../library/Class/NoticeHtml.php:660
#: ../../library/Class/NoticeHtml.php:665
#: ../../library/Class/NoticeHtml.php:667
#: ../../library/Class/NoticeHtml.php:676
#: ../../library/Class/NoticeHtml.php:678
#: ../../library/Class/NoticeHtml.php:669
#: ../../library/Class/NoticeHtml.php:679
#: ../../library/Class/NoticeHtml.php:681
#: ../../library/Class/NoticeHtml.php:551
#: ../../library/Class/NoticeHtml.php:553
#: ../../library/Class/NoticeHtml.php:245
#: ../../library/Class/NoticeHtml.php:247
#: ../../library/Class/NoticeHtml.php:244
#: ../../library/Class/NoticeHtml.php:246
#: ../../library/Class/NoticeHtml.php:228
#: ../../library/Class/NoticeHtml.php:230
msgid "Agrandir l'image"
msgstr "Ampliar Imagen"
#: ../../application/modules/opac/controllers/PanierController.php:155
#: ../../application/modules/opac/controllers/PanierController.php:197
msgid "Ajout d'une notice à un panier"
msgstr "Agregar un registro a una cesta"
#: ../../application/modules/admin/controllers/CatalogueController.php:84
#: ../../application/modules/admin/controllers/CatalogueController.php:102
msgid "Ajout de domaine"
msgstr "Adición de campo"
#: ../../application/modules/opac/controllers/PanierController.php:148
#: ../../application/modules/opac/controllers/PanierController.php:185
msgid "Ajout panier"
msgstr "Añadir a la cesta"
#: ../../library/ZendAfi/View/Helper/BoutonIco.php:30
#: ../../library/ZendAfi/View/Helper/BoutonIco.php:49
#: ../../library/ZendAfi/View/Helper/BoutonIco.php:67
msgid "Ajouter"
msgstr "Añadir"
#: ../../application/modules/opac/views/scripts/panier/ajout-ajax.phtml:7
msgid "Ajouter "
msgstr "Añadir"
#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:21
#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:25
#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:24
#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:26
#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:29
msgid "Ajouter au Panier"
msgstr "Añadir a la cesta"
#: ../../library/ZendAfi/View/Helper/Notice/Mur.php:93
#: ../../library/ZendAfi/View/Helper/Notice/Mur.php:98
#: ../../library/ZendAfi/View/Helper/TagAddToCart.php:37
msgid "Ajouter au panier"
msgstr "Añadir a la cesta"
#: ../../application/modules/admin/controllers/CatalogueController.php:214
#: ../../application/modules/admin/controllers/CatalogueController.php:239
msgid "Ajouter ce panier"
msgstr "Añadir esta canasta"
#: ../../application/modules/admin/views/scripts/album/edit-images.phtml:18
msgid "Ajouter des medias"
msgstr "Añadir medios"
#: ../../application/modules/admin/views/scripts/album/edit-images.phtml:4
#: ../../application/modules/admin/views/scripts/album/edit-images.phtml:9
msgid "Ajouter des medias par lot"
msgstr "Añadir lotes Medios"
#: ../../application/modules/admin/views/scripts/album/edit-images.phtml:5
msgid "Ajouter des ressources"
msgstr "Añadir recursos"
#: ../../library/ZendAfi/Form/AjoutNoticePanier.php:34
msgid "Ajouter la notice au panier"
msgstr "Añadir registro a la"
#: ../../application/modules/opac/views/scripts/panier/index.phtml:12
msgid "Ajouter la notice au panier :"
msgstr "Añadir registro a la cesta de la compra:"
#: ../../application/modules/admin/views/scripts/opds/index.phtml:4
#: ../../application/modules/admin/views/scripts/opds/index.phtml:5
msgid "Ajouter un catalogue"
msgstr "Añadir Catálogo"
#: ../../application/modules/admin/views/scripts/catalogue/index.phtml:2
#: ../../application/modules/admin/views/scripts/catalogue/index.phtml:3
msgid "Ajouter un domaine"
msgstr "Agregar dominio"