forked from filerun/translations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspanish.php
2197 lines (2197 loc) · 142 KB
/
spanish.php
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
<?php return array (
'trans' =>
array (
'Login Page' =>
array (
'Username' => 'Usuario',
'Password' => 'Contraseña',
'Language' => 'Idioma',
'Sign in' => 'Conectar',
'Please login.' => 'Por favor conéctese.',
'Please type a username.' => 'Por favor, teclee un usuario',
'Invalid password.' => 'Clave inválida',
'Invalid username.' => 'Usuario inválido',
'Your account has been deactivated!' => 'Su cuenta ha sido desactivada !',
'Create account' => 'Inscripción',
'Forgot password?' => '¿Olvidó la clave?',
'Signing in...' => 'Entrando...',
'Your account access is limited to a particular IP address!' => 'El acceso a tu cuenta esta limitado a una IP concreta!',
'2-step verification: add account' => 'verificación en 2 pasos: añadir cuenta',
'Scan this barcode with the <a href="%1" target="_blank">Google Authenticator</a> app on your mobile device to add your account.' => 'Lea el código de barras con la app <a href="%1" target="_blank">Google Authenticator</a> en su teléfono móvil para añadir su cuenta.',
'Done' => 'Hecho',
'Your account is configured for 2-step verification. You need to type in a verification code!' => 'Su cuenta está configurada para verificación en 2 pasos. Necesita introducir un código de verificación',
'The provided verification code is not valid!' => 'El código de verificación introducido no es correcto',
'Your account is configured for 2-step verification. Click Ok to start the setup.' => 'Su cuenta está configurada para verificación en 2 pasos. Pulse OK para iniciar la configuración',
'Type the following key code into your authentication app:' => 'Introduzca el siguiente código en un app de verificación',
'Verification code' => 'Código de verificación',
'Please type a password.' => 'Por favor introduzca un password',
'Changing language...' => 'Cambiando idioma...',
'Loading...' => 'Cargando...',
'There is an Android app that you can use to access your files more comfortably. Would you like to try that instead?' => 'Hay una app para Android con la que acceder cómodamente. ¿Le gustaría probarla?',
'Add a new <a href="%1" target="_blank">Google Authenticator</a> account with the following key:' => 'Agregue una nueva <a href="%1" target="_blank">cuenta de autenticacion de Google</a> con la siguiente clave:',
'2-step: Add account' => '2-paso: Añadir cuenta',
'Authentication should be made with the remote system.' => 'La autenticación debe hacerse con el sistema remoto.',
),
'User Registration' =>
array (
'User Registration' => 'Inscripción de usuario',
'Username' => 'Usuario',
'E-mail address' => 'Dirección de email',
'Password' => 'Clave',
'Retype password' => 'Confirmación clave',
'Name' => 'Nombre',
'Company' => 'Empresa',
'Web site address' => 'Dirección página web',
'Comment' => 'Comentario',
'Submit' => 'Enviar',
'Please type a username!' => 'Por favor, teclee un usuario!',
'Please avoid using special characters for the username!' => 'Por favor, no utilice, carácteres raros para el usuario!',
'Username already in use. Please choose another one.' => 'Usuario ya en uso. Por favor, elija otro.',
'Please type a password!' => 'Por favor, teclee una clave !',
'Please retype the password correctly!' => 'Por favor, vuelva a teclear la clave correctamente!',
'Please type your name!' => 'Por favor, teclee su nombre!',
'Please type your email address!' => 'Por favor, teclee su email!',
'Please type the company name!' => 'Por favor, teclee el nombre de la empresa!',
'Please type your website address!' => 'Por favor, teclee la dirección de su página web!',
'Please type the comment!' => 'Por favor, teclee un comentario!',
'Failed to create user account!' => 'La creación de la cuenta de usuarió fracasó!',
'Your account has been successfully created.' => 'La cuenta ha sido creada correctamente.',
'Login' => 'Inicio de sesión',
'Your account information has been emailed to you!' => 'La información de su cuenta ha sido enviada a usted por email!',
'An e-mail message has been sent at "%1" with details on how to complete the registration process.' => 'Se ha enviado un mensaje de email a "%1" con detalles sobre como completar el registro.',
'E-mail address already registered. Please use the password recovery options if you forgot your password.' => 'E-mail ya registrado. Por favor, use las opciones de recuperación de clave.',
'Cancel' => 'Cancelar',
'Please make sure you are not a robot! :)' => 'Por favor, escriba la dos palabras correctamente!',
'Please type your last name!' => 'Por favor, escriba su apellido!',
'Loading...' => 'Cargando...',
'Phone' => 'Teléfono',
'Please type the phone number' => 'Por favor, escriba el teléfono',
),
'Password Reset' =>
array (
'The login information has been sent to your email address.' => 'La información de conexión ha sido enviada a tu e-mail',
'Password Reset' => 'Resetear Contraseña',
'E-mail address' => 'Correo Electrónico',
'Submit' => 'Enviar',
'Please type the e-mail address.' => 'Por favor, escriba el correo electrónico',
'The e-mail address was not found in the database.' => 'La dirección de correo electrónico no se ha encontrado en la base de datos',
'Please check your inbox for information on how to reset your account\'s password.' => 'Por favor revisa tu bandeja de correo para como resetear la contraseña',
'Please wait...' => 'Por Favor espere...',
'Sign in' => 'Entrar/Registrarse',
),
'Main Interface' =>
array (
'The file is already in the download cart' => 'Este fichero ya se encuentra en el carro de descargas',
'Rating' => 'Clasificación',
'Please check your network connection.' => 'Por favor, verifique su conexión.',
'<a href="%1">The data</a> recevied from the server contains errors.' => '<a href="%1">Los datos</a> recibidos por el servidor contienen errores.',
'Loading...' => 'Cargando...',
'Sign out' => 'Desconectar',
'Control Panel' => 'Panel de Control',
'Change password' => 'Cambio de clave',
'Preview' => 'Vista previa',
'No preview available for this type of files.' => 'Este tipo de ficheros no tiene vista previa.',
'Comments' => 'Comentarios',
'Please select a file.' => 'Por favor, seleccione un fichero',
'Folder contains no image file' => 'Carpeta vacía.',
'There are no files in this folder' => 'No hay ficheros en esta carpeta.',
'This item contains changes' => 'Este fichero se creó o modificó después de su último acceso.',
'This file is locked by %1.' => 'Este fichero está bloqueado por %1.',
'This file has %1 comment(s).' => 'Este fichero tiene %1 comentario(s).',
'This file has a WebLink attached to it.' => 'Este fichero tiene un enlace web creado.',
'Loading Preview...' => 'Cargando vista previa...',
'Free space available:' => 'Espacio libre disponible:',
'Delete "%1"?' => 'Confirmación',
'Internet Explorer is blocking the download?<br>Click <a href="%1" target="_blank">here</a> to download the file without reloading this page.' => 'Internet Explorer está bloqueando la descarga?<br>Pulse <a href="%1" target="_blank">aquí</a> para descargar el fichero sin recargar la página.',
'Upload' => 'Cargar',
'%1 used (%2%)' => '%1 usado (%2%)',
'Please type a file name:' => 'Por favor escriba el nombre del fichero:',
'Creating blank file...' => 'Creando archivo en blanco...',
'Sort' => 'Ordenar',
'Settings' => 'Parámetros',
'Select All' => 'Todas las carpetas',
'View' => 'Ver',
'Tools' => 'Herramientas',
'List view' => 'Vista detalles',
'Refresh' => 'Recargar',
'New File' => 'Fichero',
'New tab' => 'Nueva ventana',
'Space:' => 'Espacio:',
'Search' => 'Búsqueda',
'File Search' => 'Búsqueda de ficheros',
'Share' => 'Compartir',
'Sharing' => 'Colaboración',
'New sub-folder' => 'Crear nueva sub-carpeta',
'Rename' => 'Cambiar nombre',
'Remove' => 'Borrar',
'Properties' => 'Propiedades',
'Download' => 'Descargar',
'..in one zip file' => '..en un solo fichero zip',
'Open with..' => 'Abrir con..',
'E-mail Files' => 'Enviar Ficheros vía email',
'Share with users' => 'Compartir con usuarios',
'Get link' => 'Enlace Web',
'Details and activity' => 'Notificaciones',
'Versioning' => 'Versiones',
'Previous Versions' => 'Versiones previas',
'Lock' => 'Bloquear',
'Unlock' => 'Desbloquear',
'File Versions' => 'Versiones del fichero',
'Metadata' => 'Metadatos',
'Comment' => 'Comentario',
'Zip archive..' => 'Añadir al zip',
'Extract archive..' => 'Descomprimir',
'Copy' => 'Copiar',
'Loading file list...' => 'Cargando lista de ficheros...',
'Name' => 'Nombre',
'Size' => 'Tamaño',
'Type' => 'Tipo',
'Meta Type' => 'Meta Tipo',
'Modified' => 'Fecha modificación',
'Created' => 'Fecha de creación',
'Comments count' => 'Número de comentarios',
'Yes' => 'Sí',
'Version' => 'Versión',
'Is new' => 'Es nuevo',
'Locked by' => 'Bloqueado por',
'Sort Ascending' => 'Orden ascendente',
'Sort Descending' => 'Orden descendente',
'Columns' => 'Columnas',
'Reset Columns' => 'Resetar Columnas',
'%1 items' => '%1 elementos',
'Opening popup window... <br>Click <a href="%1" target="_blank">here</a> if the browser prevents it from opening.' => 'Abriendo ventana popup... <br>Pulse <a href="%1" target="_blank">aquí </a>si el navegador impide abrir la ventana.',
'Moving files...' => 'Moviendo ficheros...',
'Moving folder...' => 'Moviendo carpeta...',
'Renaming file...' => 'Renombrando fichero...',
'Zipping files...' => 'Comprimiendo fichero(s)...',
'Extracting archive contents...' => 'Descomprimiendo fichero(s)...',
'Deleting...' => 'Borrando fichero(s)...',
'Restoring file(s)...' => 'Recuperando fichero(s)...',
'Locking file...' => 'Bloqueando fichero...',
'Unlocking file...' => 'Desbloqueando fichero...',
'Renaming folder...' => 'Renombrando carpeta...',
'Please wait while the selected files are being zipped...' => 'Por favor, espere mientras los ficheros seleccionados se estáncomprimiendo...',
'Please wait while the selected folder is being zipped...' => 'Por favor, espere mientras la carpeta seleccionada se está commprimiendo...',
'Selected Files.zip' => 'Ficheros seleccionados.zip',
'Downloading zip file...' => 'Descargar ficheros zip...',
'Are you sure you want to delete the selected file(s)?' => 'Está seguro de querer borrar los ficheros seleccionados?',
'The selected folder and all its contents will be deleted.' => 'Está seguro de querer borrar la carpeta seleccionada y su contenido?',
'Permanent deletion' => 'Borrado definitivo',
'New Folder' => 'Carpeta nueva',
'Creating new folder...' => 'Creando nueva carpeta...',
'Please type a folder name for the archive contents:' => 'Por favor, teclee un nombre de carpeta para el contenido zip:',
'Extracted Files' => 'Contenido del Archivo',
'Deleted from' => 'Borrado desde',
'Trash' => 'Ficheros borrados',
'Restore' => 'Recuperar',
'Recent' => 'Recientes',
'Shared by me' => 'Compartido por mi',
'There are no shared files or folders' => 'No existen ficheros o carpetas compartidas',
'Files' => 'Ficheros',
'There are no recently accessed files' => 'No hay archivos recientemente visualizados',
'Activity' => 'Actividad en carpeta',
'Please type a name for the zip file:' => 'Teclee un nombre para el fichero zip:',
'New Archive.zip' => 'Archivo Nuevo.zip',
'E-mail' => 'Enviar vía email',
'Activity log' => 'Log Actividad',
'Loading the file\'s activity log...' => 'Cargando fichero log actividad... ',
'External Window' => 'Venta Externa',
'Folders' => 'Carpetas',
'Zip and download' => 'Comprimir y descargar',
'This type of archives is not supported by the current server configuration.' => 'Este tipo de ficheros no está admitido por la configuración del servidor',
'With users' => 'Con usuarios',
'BitTorrent Sync' => 'Sincronización BitTorrent',
'One item' => 'Un elemento',
'One item selected' => 'Un elemento seleccionado',
'More' => 'Más',
'Confirm' => 'Confirmar',
'Details' => 'Detalles',
'My Files' => 'Mis ficheros',
'Upload to "%1"' => 'Subiendo a "%1"',
'Folder upload' => 'Subida de carpeta',
'File upload' => 'Subida de ficheros',
'Create new' => 'Crear nuevo',
'Add Files' => 'Añadir ficheros',
'Add Folder' => 'Añadir carpeta',
'Remove from queue' => 'Eliminar de la cola',
'Cancel' => 'Cancelar',
'Cancel all' => 'Cancelar todo',
'Skip file' => 'Omitir fichero',
'Resume file' => 'Reanudar carga',
'Pause all' => 'Pausar todo',
'File name' => 'Nombre del fichero',
'Uploaded' => 'Cargado',
'Progress' => 'Progreso',
'Speed' => 'Velocidad',
'Time remaining' => 'Tiempo restante',
'%1 files left' => 'Faltan %1 ficheros',
'%1 of %2' => '%1 de %2',
'[Skipped]' => '[Omitido]',
'Paused' => 'Pausado',
'Uploading (Retry #%1)...' => 'Cargando (reintento #%1)...',
'Paused (%1%)' => 'Pausado (%1%)',
'Waiting (100%)' => 'Esperando (100%)',
'Server error' => 'Error de servidor',
'A problem has been encountered!' => 'Se ha encontrado un error!',
'Try again' => 'Intentar de nuevo',
'%1 hours' => '%1 horas',
'%1 minutes' => '%1 minutos',
'%1 seconds' => '%1 segundos',
'You are not allowed to upload the file "%1"' => 'No tiene permiso para cargar el fichero "%1"',
'There are no comments for this item' => 'No hay comentarios para este elemento',
'Write a comment...' => 'Escribir un comentario',
'Contents' => 'Contenido',
'Use the displayed header bar to sort by the desired field.' => 'Usar la cabecera mostrada en la barra para ordenar por ese campo.',
'Drop files here' => 'Arrastre sus ficheros aquí',
'or use the "NEW" button' => 'o use el botón de carga',
'Queued' => 'Encolado',
'Mute sound notifications' => 'Silenciar notificaciones sonoras',
'Notifications' => 'Notificaciones',
'Add to cart' => 'Añadir para descarga',
'Download cart' => 'Descargar lista',
'Label' => 'Etiqueta',
'No label' => 'Sin etiqueta',
'Custom label' => 'Etiqueta personalizada',
'New label' => 'Nueva etiqueta',
'Page' => 'Página',
'of {0}' => 'de {0}',
'First Page' => 'Primera pág',
'Last Page' => 'Última pág',
'Next Page' => 'Página siguiente',
'Previous Page' => 'Página anterior',
'Uploading pasted image...' => 'Cargando imagen del portapapeles...',
'Pasted image' => 'Imagen del portapapeles',
'Pasted image successfully uploaded' => 'Imagen del portapapeles cargada',
'Are you sure you want to remove the comment?' => 'Estás seguro de que quieres quitar el comentario?',
'%1 of %2 results' => '%1 de %2 resultados',
'%1 results' => '%1 resultados',
'Show more...' => 'Mostrar más...',
'Star' => 'Fav',
'Starred' => 'Favoritos',
'Remove star' => 'Quitar fav',
'There are no starred files or folders' => 'Marcar ficheros favoritos para encontrarlos fácilmente',
'There are no shared links' => 'No has compartido ningún fichero mediante enlaces',
'Folder' => 'Carpeta',
'File' => 'Ficheros',
'More options' => 'Más opciones',
'Location' => 'Localización',
'Please wait as loading the file might take a while...' => 'Espere a que termine la carga...',
'New' => 'Nuevo',
'Shared links' => 'Enlaces compartidos',
'Locate' => 'Localizar en %1',
'Next' => 'Siguiente',
'Previous' => 'Anterior',
'Close' => 'Cerrar',
'%1/%2' => '%1 de %2 elementos',
'First page' => 'Primera página',
'Page %1' => 'Página %1',
'You are required to change your password.' => 'Debe cambiar su clave',
'No file was found matching your search criteria.' => 'No se encontró ningún fichero que coincida con su búsqueda',
'To upload files, drag them from your computer' => 'Para cargar ficheros, arrástrelos desde su ordenador',
'Account settings' => 'Configuración de cuenta',
'Download all' => 'Descargar todo',
'Use "Page Down" and "Page Up" to change the page' => 'Use "Av pág" y "Re pág" para cambiar de página',
'Empty trash' => 'Vaciar papelera',
'Emptying trash...' => 'Vaciando papelera...',
'Empty trash?' => 'Vaciar la papelera?',
'All files and folders in your trash are about to be permanently deleted.' => 'Todos los ficheros y carpetas de la papelera van a ser eliminados para siempre.',
'An error occurred while trying to process the request.' => 'Se produjo un error al intentar procesar su petición.',
'Resume' => 'Parar',
'Delete folder?' => 'Borrar carpeta?',
'Please enter a new name for the item:' => 'Por favor, escriba un nombre nuevo para el elemento:',
'Are you sure you want to move the folder?' => 'Está seguro de que quiere mover la carpeta?',
'Move folder?' => 'Mover carpeta?',
'Web link' => 'Enlace Web',
'Please type the %1label\'s text%2' => 'Por favor, el texto %2 de la etiqueta %1',
'Date Format: Files' => 'Formato fecha: Ficheros',
'Tags' => 'Etiquetas',
'Failed to load file list.' => 'Falló la carga de la lista de los archivos.',
'You need a modern browser in order to use this feature.' => 'Necesita un navegador moderno para usar esta opción',
'Please select a PNG or JPG image file.' => 'Por favor, seleccione un fichero PNG o JPG',
'File request' => 'Petición de fichero',
'What are you requesting?' => '¿Qué está solicitando?',
'Photos, Documents, Contracts...' => 'Fotos, documentos, contratos...',
'Shared with' => 'Compartido con',
'Search options' => 'Opciones de búsqueda',
'Create new folder' => 'Crear nueva carpeta',
'This field is required' => 'Este campo es obligatorio',
'Photos' => 'Fotos',
'Uploading...' => 'Subiendo...',
'Help' => 'Ayuda',
'Date deleted' => 'Fecha de eliminación',
'Search in' => 'Buscar en',
'Display mode' => 'Visualización',
'Detailed list' => 'Listado detallado',
'Thumbnails' => 'Miniaturas',
'Last taken' => 'Último',
'By date' => 'Por fecha',
'By tag' => 'Por etiqueta',
'Music' => 'Música',
'Last added' => 'Recientemente añadidos',
'By artist' => 'Por artista',
'By album' => 'Por disco',
'Random' => 'Aleatorio',
'Failed to load audio file.' => 'Error al cargar el fichero de audio.',
'There are no photos in here' => 'No hay fotos disponibles',
'There are no audio files in here' => 'No hay audio disponible',
'There is one other item' => 'Hay otro fichero',
'There are %1 other items' => 'Hay un %1 de otros ficheros',
'Show all items' => 'Mostrar todos',
'Show the item' => 'Mostrar',
'Scan files for changes' => 'Buscar ficheros modificados',
'This folder is empty' => 'Esta carpeta está vacía',
'Tag files' => 'Etiquetas',
'Please select at least a file or a folder!' => 'Por favor, seleccione al menos un fichero o directorio.',
'Please add at least one tag!' => 'Por favor, añada al menos una etiqueta.',
'Add tags...' => 'Añadir etiquetas...',
'Tag selected' => 'Etiqueta seleccionada',
'[calculate]' => '[calcular]',
'Hide details' => 'Ocultar detalles',
'Collections' => 'Colecciones',
'Add to' => 'Añadir a',
'Collection..' => 'Colecciones',
'Create a new collection' => 'Crear una nueva colección',
'Adding files to collection...' => 'Añadiendo archivos a la colección ...',
'Are you sure you want to remove the collection?' => '¿Seguro que quieres eliminar la colección?',
'Removing collections...' => 'Eliminando colecciones ...',
'Remove from collection' => 'Eliminar de la colección',
'Removing items from collection...' => 'Eliminando elementos de la colección ...',
'Creating a new collection...' => 'Creando una nueva colección ...',
'There are no collections' => 'No hay colecciones',
'Move' => 'Mover',
'Move here' => 'Mover aqui',
'Copy here' => 'Copiar aqui',
'Select folder' => 'Seleccionar carpeta',
'Create a new folder' => 'Crear Nueva Carpeta',
'There are no folders in here' => 'No hay carpetas aquí',
'Failed to load data!' => '¡Error al cargar los datos!',
'Clear list' => 'Limpiar Lista',
'Add files to the download cart by dragging them onto the cart icon (%1)' => 'Agregue archivos al carrito de descargas arrastrándolos al icono del carrito (%1)',
),
'General' =>
array (
'One file successfully copied.' => 'Un fichero correctamente copiado',
'Folder successfully moved.' => 'Carpeta movida correctamente',
'One minute ago' => 'Hace un minuto',
'One minute' => 'Un minuto',
'Under one minute' => 'Menos de un minuto',
'just now' => 'Ahora',
'Folder successfully copied.' => 'Carpeta copiada correctamente',
'Copying...' => 'Copiando...',
'Submit' => 'Enviar',
'Save' => 'Guardar',
'Cancel' => 'Cancelar',
'Invalid path.' => 'Ruta inválida.',
'File not found!' => 'Fichero no encontrado!',
'You are not allowed to preview the selected file.' => 'No tiene permiso a vista previa del fichero seleccionado.',
'%1 users' => '%1 usuarios',
'You are not allowed to download the requested file!' => 'No tiene permiso para descargar el archivo pedido!',
'The file you are trying to download is no longer available!' => 'El fichero que está solicitando ya no está disponible!',
'You are not allowed to download or preview files.' => 'No está autorizado para descargar o ver ficheros.',
'Invalid folder.' => 'Carpeta inválida.',
'You are not allowed to copy that shared file.' => 'No tiene permiso para copiar ese fichero compartido.',
'You are not allowed to copy files to the specified target.' => 'No tiene permiso para copiar archivos en la carpeta seleccionada.',
'No file was copied!' => 'Ningún fichero ha sido copiado!',
'One file copied.' => 'Un archivo copiado.',
'%1 files copied.' => 'Se copiaron %1 ficheros.',
'No more file space available.' => 'Ya no hay más espacio disponible para ficheros.',
'You are not allowed to delete files from this shared folder.' => 'No tiene derecho a borrar ficheros de esta carpeta compartida.',
'No files were deleted!' => 'Ningún fichero se borró!',
'One file deleted.' => 'Un fichero borrado.',
'%1 files successfully deleted.' => 'Se borraron %1 ficheros.',
'You are not allowed to move that shared file.' => 'No tiene permiso para mover este fichero compartido.',
'You are not allowed to move files to the specified target.' => 'No tiene permiso para mover ficheros a la carpeta especificada.',
'You are not allowed to move these shared files to your own folder.' => 'No tiene permiso para mover estos ficheros compartidos a su propia carpeta.',
'No file was moved!' => 'Ningún fichero se movió!',
'One file moved.' => 'Un fichero movido.',
'%1 files moved.' => '%1 ficheros movidos.',
'Invalid target path, file already exists.' => 'Ruta de destino no válida, el fichero ya existe.',
'The selected file is currently locked by another user.' => 'El fichero está bloqueado por otro usuario.',
'Invalid path, not a file.' => 'Ruta inválida, no es un fichero.',
'Invalid path, not a folder.' => 'Ruta inválida, no es ua carpeta.',
'Invalid source path, not a folder.' => 'Ruta de origen inválida, no es ua carpeta',
'Invalid target path, not a folder.' => 'Ruta de destino inválida, no es ua carpeta',
'Invalid source path, not a file.' => 'Ruta de origen inválida, no es n fichero.',
'You are not allowed to rename files in this shared folder.' => 'No tiene permiso para nombrar de nuevo los ficheros de esta carpeta compartida.',
'File successfully renamed.' => 'Fichero renombrado correctamente.',
'There is already a file or a folder with the same name!' => 'Ya existe un fichero con ese nombre en esta carpeta!',
'Failed to rename file!' => 'Error al renombrar fichero!',
'You are not allowed to extract archives in this shared folder.' => 'No tiene permiso para descomprimir ficheros en esta carpeta compartida.',
'You are not allowed to zip files in this shared folder.' => 'No tiene permiso para comprimir ficheros en esta carpeta compartida.',
'Invalid folder name!' => 'Nombre de carpeta inválido!',
'Invalid file name' => 'Nombre de fichero inválido',
'A folder with that name already exists!' => 'Ya existe una carpeta con ese nombre!',
'Unzipped Files' => 'Ficheros descomprimidos.',
'The archive was successfully extracted.' => 'El archive ha sido descomprimido.',
'Invalid zip name!' => 'Nombre de archivo inválido!',
'A file with that name already exists!' => 'Ya existe fichero con ese nombre!',
'Zip archive successfully created.' => 'Fichero zip creado con éxito.',
'You are not allowed to delete that shared folder.' => 'No tiene permisos para borrar esa carpeta compartida.',
'You cannot delete the root of a shared folder.' => 'No puede borrar la raíz de una carpeta compartida.',
'Folder deleted.' => 'Carpeta borrada.',
'Failed to delete folder!' => 'Error al borrar la carpeta!',
'You are not allowed to move that shared folder.' => 'No tiene permiso para mover esa carpeta compartida.',
'You are not allowed to copy that shared folder.' => 'No tiene permiso para copiar esa carpeta compartida.',
'You are not allowed to copy folder to the specified target.' => 'No tiene permiso para copiar la carpeta al destino indicado.',
'You are not allowed to move the folder to the shared location.' => 'No tiene permiso para mover la carpeta a la ubicación compartida.',
'You are not allowed to move this shared folder to your own folder.' => 'No tiene permiso para mover esta carpeta compartida a su propia carpeta.',
'Folder moved.' => 'Carpeta movida.',
'Failed to move folder!' => 'Error al mover la carpeta!',
'Failed to rename folder!' => 'Error al renombrar la carpeta',
'There is already a folder with the same name in this folder!' => 'Ya existe una carpeta con ese nombre!',
'Folder successfully created.' => 'Carpeta creada.',
'Failed to create folder!' => 'Error al crear la carpeta!',
'Failed to upload file "%1": %2' => 'Error al cargar el fichero "%1": %2',
'You are not allowed to upload to this shared folder.' => 'No tiene permiso para cargar a esta carpeta compartida.',
'No more file space available!' => 'No hay más espacio disponible!',
'File uploaded.' => 'Fichero cargado.',
'The previous version is available from the versioning menu.' => 'La versión previa está disponible en el menú de versiones.',
'Failed to upload file.' => 'Error al cargar el fichero.',
'Please specify a file for upload.' => 'Por favor, especifique un fichero para cargar.',
'The monthly traffic limit has been reached!' => 'Se ha superado el límite de tráfico mensual!',
'Click <a href="%1">here</a> to go back.' => 'Pulse <a href="%1">here</a> para regresar.',
'A file named "%1" already exists!' => 'Ya existe un fichero con el nombre "%1"',
'The path of your home folder doesn\'t point to an existing folder. Please contact the site administrator.' => 'La ruta a su carpeta raíz no existe. Por favor, contacte con el administrador.',
'Failed to move file %1' => 'Fallo al mover el fichero %1',
'The file size exceeds the destination folder quota.' => 'El tamaño de fichero excede la cuota de la carpeta destino.',
'Zip Archive.zip' => 'Arhivo.zip',
'The shared folder is no longer available.' => 'La carpeta compartida ya no está disponible.',
'You are not allowed to modify files in this shared folder.' => 'No tiene permiso para modificar ficheros en la carpeta compartida',
'You are not allowed to upload files in this folder.' => 'No tiene permiso para subir ficheros en esta carpeta',
'Please type a name for the file!' => 'Por favor escriba un nombre para el archivo!',
'Please type a name for the folder!' => 'Por favor, escriba un nombre para la carpeta',
'You are not allowed to create folders under this shared folder.' => 'No tiene permiso para crear carpetas bajo esta carpeta compartida.',
'%1 minutes' => '%1 minutos',
'%1 minutes ago' => 'Hace %1 minutos',
'One hour' => 'Una hora',
'One hour ago' => 'Hace una hora',
'%1 hours' => '%1 horas',
'%1 hours ago' => 'Hace %1 horas',
'One day' => 'Un día',
'One day ago' => 'Hace un día',
'Yesterday' => 'Ayer',
'%1 days' => '%1 días',
'%1 days ago' => 'Hace %1 días',
'One week' => 'Una semana',
'One week ago' => 'Hace una semana',
'%1 weeks' => '%1 semanas',
'%1 weeks ago' => 'Hace %1 semanas',
'One month' => 'Un mes',
'One month ago' => 'Hace un mes',
'%1 months' => '%1 meses',
'%1 months ago' => 'Hace % meses',
'One year' => 'Un año',
'One year ago' => 'Hace un año',
'%1 years' => '%1 años',
'%1 years ago' => 'Hace % años',
'You are not allowed to rename folders!' => 'No tiene permiso para renombrar carpetas',
'You are not allowed to create folders!' => 'No tiene permiso para crear carpetas',
'One file moved to trash.' => 'Se movió un fichero a la papelera',
'%1 files successfully moved to trash.' => 'Se movieron %1 ficheros a la papelera',
'One folder moved to trash.' => 'Una carpeta movida a la papelera',
'%1 files and folders successfully deleted.' => '%1 ficheros y carpetas borrados',
'%1 files and folders successfully moved to trash.' => '%1 ficheros y carpetas movidos a la papelera',
'Invalid folder name' => 'Nombre de carpeta incorrecto',
'Folder successfully renamed.' => 'Capeta renombrada con éxito',
'One folder successfully copied.' => 'Una carpeta copiada con éxito',
'One folder successfully moved.' => 'Una carpeta movida con éxito',
'File successfully copied.' => 'Fichero correctamente copiado',
'File successfully moved.' => 'Fichero correctamente movido',
'%1 files and folders successfully copied.' => '%1 ficheros y carpetas copiados correctamente',
'%1 files and folders successfully moved.' => '%1 ficheros y carpetas movidos correctamente',
'%1 folders successfully copied.' => '%1 carpetas copiadas con éxito',
'%1 folders successfully moved.' => '%1 carpetas movidas con éxito',
'You cannot copy a deleted file.' => 'No puedes copiar un fichero borrado',
'You cannot move a deleted file.' => 'No puedes mover un fichero borrado',
'The folder cannot be copied under itself!' => 'La carpeta no puede ser copiada sobre sí misma',
'The folder cannot be moved under itself!' => 'La carpeta no puede ser movida sobre si misma',
'The specified target location is the same!' => 'El destino especificado es el mismo',
'One file successfully moved.' => 'Un fichero correctamente movido',
'%1 files successfully copied.' => '%1 fichero correctamente copiado',
'%1 files successfully moved.' => '%1 fichero correctamente movido',
'You are not allowed to zip folders' => 'No tiene permiso para comprimir carpetas',
'You are no longer logged in.' => 'Ha salido de la aplicación',
'This application requires authentication.' => 'Esta aplicación requiere autenticación',
'Your user account does not have permission to perform the requested operation!' => 'Su cuenta de usuario no tiene permiso para esa operación.',
'You are not allowed to move this shared item.' => 'No está habilitado para mover este recurso compartido.',
'You are not allowed to rename this shared item.' => 'No está habilitado para renombrar este recurso compartido.',
'You are not allowed to delete this shared item.' => 'No está habilitado para borrar este recurso compartido.',
'The destination folder no longer exists!' => 'La carpeta ya no existe.',
'The selected file or folder no longer exists!' => 'El fichero o la carpeta seleccionada ya no existe.',
'Please type a new folder name!' => 'Por favor, escriba un nuevo nombre de carpeta.',
'Please type a new file name!' => 'Por favor, escriba un nuevo nombre de fichero.',
),
'DateTime' =>
array (
'This month' => 'Este mes',
'January' => 'Enero',
'February' => 'Febrero',
'March' => 'Marzo',
'April' => 'Abril',
'May' => 'Mayo',
'June' => 'Junio',
'July' => 'Julio',
'August' => 'Agosto',
'September' => 'Septiembre',
'October' => 'Octubre',
'November' => 'Noviembre',
'December' => 'Diciembre',
'Sunday' => 'Domingo',
'Monday' => 'Lunes',
'Tuesday' => 'Martes',
'Wednesday' => 'Miercoles',
'Thursday' => 'Jueves',
'Friday' => 'Viernes',
'Saturday' => 'Sabado',
'Today' => 'Hoy',
'This date is before the minimum date' => 'Esta fecha es anterior a la fecha mínima',
'This date is after the maximum date' => 'Esta fecha es posterior a la fecha máxima',
'Next Month (Control+Right)' => 'Siguiente Mes(Control+Derecha)',
'Previous Month (Control+Left)' => 'Mes Anterior (Control+Izquierda)',
'Choose a month (Control+Up/Down to move years)' => 'Elegir un mes (Control+Arriba/Abajo para mover años)',
'{0} (Spacebar)' => '{0} (Barra Espacio)',
'Cancel' => 'Cancelar',
'Jan' => 'Ene',
'Apr' => 'Abr',
'Aug' => 'Ago',
'Dec' => 'Dic',
),
'Trash' =>
array (
'A file or folder already exists at the original location.' => 'La carpeta a recuperar ya existe.',
'One item permanently deleted.' => 'Un elemento borrado permanentemente',
'No items were restored!' => 'No se recuperó ningún elemento!',
'One item restored.' => '1 elemento recuperado.',
'%1 items successfully restored.' => '%1 elementos recuperados.',
'Trash emptied' => 'Papelera vaciada',
'Failed to empty trash' => 'Error al vaciar la papelera',
'%1 items permanently deleted.' => '%1 elementos borrados permanentemente',
),
'Account Settings' =>
array (
'Current password' => 'Clave actual',
'New password' => 'Clave nueva',
'Confirm new password' => 'Confirmación clave nueva',
'Save changes' => 'Guardar',
'Cancel' => 'Cancelar',
'Please type the current password correctly.' => 'Por favor teclee correctamente la clave actual.',
'The password needs at least one character.' => 'La clave tiene que tener al menos 1 carácter',
'Please retype the new password correctly.' => 'Por favor vuelva a teclear correctamente la nueva clave.',
'Please type your name' => 'Por favor, escriba su nombre',
'Please type your e-mail address' => 'Por favor, escriba su email',
'Basic details' => 'Detalles básicos',
'The password needs at least %1 more characters.' => 'La clave tiene que tener al menos %1 caracteres',
'The password needs at least one uppercase letter.' => 'La clave debe contener al menos una mayúscula',
'The password needs at least one special character.' => 'La clave debe contener al menos un caracter especial',
'The password needs at to contain at least one letter.' => 'La clave debe contener al menos una letra',
'The password needs at to contain at least one digit.' => 'La clave debe contener al menos un dígito',
'The password cannot contain the "%1" sequence.' => 'La clave no puede contener la secuencia "%1"',
'The password cannot contain the "%1" part.' => 'La clave no puede contener el texto "%1"',
'Access revoked for %1 apps' => 'Se revocó el acceso para %1 aplicaciones',
'The changes has been successfully saved' => 'Se grabarón los cambios con éxito',
'Failed to save the changes!' => 'Error al grabar los cambios!',
'No changes made' => 'No se hicieron cambios',
'Change password' => 'Cambiar clave',
'Your password has been last changed %1' => 'Su clave ha sido cambiada %1',
'2-Step verification' => 'Verificación en 2-pasos',
'Enable 2-step verification' => 'Habilitar verificación en 2-pasos',
'Every time you login you will need to type in also a temporary code which can be generated on your mobile device with a dedicated app such as Google Authenticator.' => 'Cada vez que entre en el sistema necesitará teclear un código temporal que se genera en su teléfono móvil con una aplicación específica como, por ejemplo, Google Authenticator',
'Name' => 'Nombre',
'E-mail address' => 'Email',
'E-mail notifications' => 'Notificaciones por email',
'Mute sound notifications' => 'Silenciar notificaciones sonoras',
'Connected apps' => 'Apps conectadas',
'Revoke access' => 'Revocar acceso',
'Granted on %1 from %2' => 'Permitido en %1 de %2',
'Profile image successfully updated' => 'Imagen de perfil cargada con éxito.',
'Failed to upload image file: %1' => 'Error al cargar la imagen: %1',
'Profile image' => 'Imagen de perfil',
'Phone' => 'Teléfono',
),
'File Upload' =>
array (
'File uploaded' => 'Fichero subido',
'Failed to upload file' => 'Error al cargar carpeta',
'Failed to create folder' => 'Error al crear carpeta',
'Failed to upload file "%1": %2' => 'Error al cargar el fichero "%1": %2',
'The monthly traffic limit has been reached!' => 'Se ha alcanzado el límite mensual de tráfico',
'No more file space available!' => 'No queda espacio disponible',
'A file named "%1" already exists!' => 'Ya existe un fichero con el nombre "%1"',
'The file needs to be uploaded from the beginning.' => 'El fichero tiene que cargarse de nuevo.',
'Failed to transfer data. Make sure you are not trying to upload an empty folder.' => 'Error en la transferencia. Compruebe que no está cargando una carpeta vacía',
'You are not allowed to upload to this shared folder.' => 'No puede cargar ficheros en esta carpeta compartida',
'Failed to upload file part' => 'Error al subir una parte del fichero',
'Failed to upload file. Please try again.' => 'Error al subir fichero. Inténtelo de nuevo.',
),
'E-mail Files' =>
array (
'Done' => 'Hecho',
'Please fill in "From" field!' => 'Por favor rellene dentro del campo "Desde"',
'Please set at least one recipient!' => 'Por favor rellene el campo "Para"',
'Please type a subject!' => 'Por favor teclee un asunto!',
'Please type a message!' => 'Por favor teclee un mensaje!',
'Email successfuly sent!' => 'Email enviado con éxito!',
'Failed to send email!' => 'Error al enviar el email!',
'From' => 'De',
'To' => 'Para',
'Separate recipients by ,' => 'Separar receptores por ,',
'Select Users' => 'Seleccionar usuarios',
'Cancel' => 'Cancelar',
'Subject' => 'Asunto',
'Message' => 'Mensaje',
'Attachments' => 'Adjuntos',
'Send WebLinks instead of attaching the files.' => 'Crear y adjuntar enlaces en vez de enviar los ficheros adjuntos.',
'Web link to' => 'Enlace web a',
'Send' => 'Enviar',
'Please make the appropriate <br>changes to the highlighted fields.' => 'Por favor, haga los cambios necesarios <br> en los campos resaltados.',
'Sending e-mail...' => 'Enviando e-mail, por favor espere...',
'No recipient addresses found!' => 'No se encontraron direcciones para envío!',
'You are not allowed to share the file "%1"!' => 'No tiene permisos para enviar por email ficheros de esta carpeta!',
'Optional: include a personal message...' => 'Opcional: incluya un mensaje personal',
'Web Link Options' => 'Opciones Enlaces Web',
'The message was not sent to any of the recipients' => 'El mensaje no se envió a los destinatarios',
'The message has been sent to one recipient' => 'El mensaje se envió a un destinatario',
'The message has been sent to %1 recipients' => 'El mensaje se envió a %1 destinatarios',
'Errors: %1' => 'Errores: %1',
'Overwrite existing link settings.' => 'Sobreescribir los parámentos de enlace web actuales',
'You are not allowed to share the folder "%1"!' => 'No está autorizado a compartir la carpeta "%1"',
'You are not allowed to create links! You can send files only as attachments.' => 'No está autorizado a crear enlaces. Solo puede enviar ficheros como adjuntos.',
'%1 sent you a file' => '%1 le envió un fichero',
'%1 sent you %2 files' => '%1 le envió %2 ficheros',
'Please wait' => 'Por favor, espere',
),
'Share Files' =>
array (
'Add guest user' => 'Añadir usuario invitado',
'Next' => 'Siguiente',
'Upload' => 'Cargar',
'Download' => 'Descargar',
'Add comments' => 'Añadir Comentarios',
'Read comments' => 'Leer comentarios',
'Make changes' => 'Guardar cambios',
'Share anonymously' => 'Compartir anónimamente',
'Share with' => 'Compartir con',
'Select Users' => 'Seleccione usuarios',
'Cancel' => 'Cancelar',
'Unsorted, %1 users' => 'Desordenados, %1 usuarios',
'Permissions' => 'Permisos',
'Options' => 'Opciones',
'Add Users' => 'Añadir Usuarios',
'Remove' => 'Eliminar',
'Save' => 'Guardar',
'Loading data...' => 'Cargar datos...',
'Saving options...' => 'Guardando opciones...',
'Add users to share with.' => 'Añadir usuarios con quienescompartir.',
'Sharing options saved.' => 'Se guardaron las opciones de compartir.',
'Share as' => 'Compartir como',
'Share links' => 'Enlaces compartidos',
'Add user' => 'Añadir usuario',
),
'Folder Notifications' =>
array (
'Notification settings successfully saved' => 'Configuración de notificaciones guardadas satisfactoriamente',
'Notifications for "read" actions cannot be set on shared folders.' => 'No se puede poner notificaciones de lectura en carpetas compartidas',
'No changes were made.' => 'No se hicieron cambios',
),
'Web Links' =>
array (
'Upload' => 'Subir',
'The link has been copied to clipboard.' => 'El enlace se ha copiado al portapapeles',
'Loading data...' => 'Cargando datos...',
'Link address' => 'Dirección de enlace',
'Expiration date' => 'Fecha caducidad',
'Download limit' => 'Límite de descargas',
'Set a password' => 'Poner clave',
'Receive e-mail notifications.' => 'Recibir notificaciones por e-mail',
'Allow visitors to upload files.' => 'Permitir visitantes subir archivos',
'Save changes' => 'Actualizar parámetros',
'Remove link' => 'Borrar enlace web',
'You cannot allow uploads in this folder' => 'No se puede permitir subir archivos en esta carpeta',
'Web link successfully created!' => 'Enlace web creado con éxito!',
'Failed to create web link!' => 'Error al crear el enlace web!',
'Web link successfully updated!' => 'Enlace web actualizado con éxito!',
'Failed to update web link!' => 'Error al actualizar el enlace web!',
'Web link successfully deleted!' => 'Enlace web borrado con éxito!',
'Failed to delete web link!' => 'Error al borrar el enlace web!',
'The requested file requires a password.' => 'El fichero solicitado requiere una clave.',
'Password' => 'Contraseña',
'Submit' => 'Enviar',
'The requested file is no longer available!' => 'El fichero solicitado ya no está disponible!',
'Click <a href="%1">here</a> to go back.' => 'Pulse <a href="%1">aquí</a> para volver.',
'Open' => 'Abrir',
'Grid view' => 'Vista miniatura',
'Short Link' => 'Enlace Corto',
'Image gallery' => 'Galería Imagenes',
'Audio playlist' => 'Lista de reproducción',
'RSS feed' => 'Feed RSS',
'You are required to password protect the link' => 'Es necesario poner una clave para proteger el enlace',
'Advanced' => 'Avanzada',
'Download Terms' => 'Condiciones de descarga',
'Comments' => 'Comentarios',
'Share the file comments with the visitors.' => 'Compartir comentarios con los visitantes',
'Link' => 'Enlace',
'Add download terms and conditions' => 'Añadir condiciones de descarga',
'Force the visitors to accept your written terms before being able to download files.' => 'Obligar a los usuarios a aceptar las condiciones escritas antes de que se puedan descargar los ficheros.',
'QR Code' => 'Código QR',
'Scan this QR code with your mobile device.' => 'Lea este código QR con su dispositivo móvil',
'A Bitly Access Token needs to be configured from the control panel.' => 'Un token de acceso de Bitly debe configurarse desde el panel de control.',
'You are not allowed to access web links!' => 'No está autorizado a acceder a enlaces web',
'Prevent the browser from opening the file.' => 'Avisar al visitante para que guarde el archivo',
'Some common types of files are being opened by the browser instead of asking the visitors from saving to their computers.' => 'Forzar la descarga del archivo, en vez de abrirlo desde el navegador ',
'Changes saved.' => 'Cambios guardados.',
'Empty contents.' => 'Contenido vacío.',
'Failed to save changes.' => 'Ocurrió un fallo al guardar.',
'Done' => 'Hecho',
'E-mail program' => 'Programa de email',
'Share link' => 'Compartir enlace',
'Shorten' => 'Acortar enlace',
'You are not allowed to share the selected file!' => 'No está autorizado a compartir el fichero seleccionado',
'Cancel' => 'Cancelar',
'Display users names.' => 'Mostrar nombres de usuario',
'Download' => 'Descargar',
'Give this link to people you’re requesting files from' => 'Dar este enlace a los usuarios a los que pides ficheros',
'Download All' => 'Descargar todo',
'Submit files' => 'Enviar ficheros',
'%1 is requesting' => '%1 está pedido',
'Only %1 will see the files you upload.' => 'Solo %1 podrá ver los ficheros que usted sube',
'Choose files' => 'Elegir ficheros',
'File request' => 'Solicitar fichero',
'Enable file request.' => 'Habilitar solicitud de ficheros',
'Allow visitors to see and download the existing files.' => 'Permitir a los visitantes ver y descargar los ficheros existentes.',
'Or drag them from your computer onto this page.' => 'O arrastrélos desde su PC en esta página.',
'Who is sending the files?' => '¿Quién envía los ficheros?',
'Type your name here' => 'Escriba su nombre',
'Start upload' => 'Comenzar carga',
'The files have been successfully sent!' => 'Los ficheros han sido enviados correctamente.',
'Upload starting...' => 'Comenzando subida...',
'Uploading...' => 'Cargando...',
'Refreshing page...' => 'Refrescando página...',
'List view' => 'Vista detalle',
'One item' => 'Un elemento',
'Empty folder' => 'Carpeta vacía',
'%1 items' => '%1 elementos',
'Options' => 'Opciones',
'Copy' => 'Copiar',
'Require visitors to be signed in.' => 'Requiere que los visitantes inicien sesión.',
'Only registered users will be able to access this link.' => 'Solo los usuarios registrados podrán acceder a este enlace.',
),
'Files Activity Log' =>
array (
'File moved with parent folder' => 'El fichero se movió con la carpeta principal',
'Folder moved with parent folder' => 'La carpeta se movió con la carpeta principal',
'Date' => 'Fecha',
'User' => 'Usuario',
'Action' => 'Acción',
'Details' => 'Detalles',
'No activity records found for this file.' => 'No hubo actividad para este fichero',
'You are not allowed to access the files activity logs' => 'No tiene permiso para acceder a los logs de actividad',
'Displaying records {0} - {1} of {2}' => '
Mostrando registros {0} - {1} de {2}',
'No records to display' => 'No hay registros para mostrar',
'Page' => 'Página',
'of {0}' => 'de {0}',
'First Page' => 'Primera pág',
'Last Page' => 'Última pág',
'Next Page' => 'Pág siguiente',
'Previous Page' => 'Pág anterior',
'Refresh' => 'Refrescar',
'%2 by <span style="color:black">%1</span>' => '
%2 por <span style="color:black">%1</span>',
'File uploaded' => 'Fichero subido',
'Uploaded by %1' => 'Subido por %1',
'File downloaded' => 'Fichero descargado',
'Downloaded by %1' => 'Descargado por %1',
'File archived for download' => 'Fichero archivado para descarga',
'Archived for download by %1' => 'Archivado para descarga por %1',
'File archived' => 'Fichero archivado',
'File copied' => 'Fichero copiado',
'Copied by %1' => 'Copiado por %1',
'File pasted' => 'Fichero pegado',
'Pasted by %1' => 'Pegado por %1',
'File moved' => 'Fichero movido',
'Moved by %1' => 'Movido por %1',
'File deleted' => 'Fichero borrado',
'Deleted by %1' => 'Borrado por %1',
'Deleted file restored' => 'Fichero recuperado',
'Restored by %1' => 'Recuperado por',
'File previewed' => 'Fichero visualizado',
'Previewed by %1' => 'Visualizado por',
'WebLink download' => 'Enlace descargado',
'Downloaded through %1\'s WebLink' => 'Descargado desde el enlace de %1',
'WebLink created' => 'Enlace creado',
'%1 attached a WebLink' => '%1 adjunto un enlace',
'WebLink updated' => 'Enlace actualizado',
'%1 changed the WebLink\'s options' => '%1 cambió las opciones del enlace',
'WebLink removed' => 'Enlace eliminado',
'%1 removed the WebLink' => '%1 eliminó el enlace',
'Comment added' => 'Comentario añadido',
'%1 wrote a comment' => '%1 escribió un comentario: "%2"',
'Comment removed' => 'Comentario eliminado',
'%1 removed a comment' => '%1 eliminó un comentario: "%2"',
'Metadata changed' => 'Metadatos cambiados',
'Metadata changed by %1' => 'Metadatos cambiados por "%1"',
'File locked' => 'Fichero bloqueado',
'Locked by %1' => 'Bloqueado por %1',
'File unlocked' => 'Fichero desbloqueado',
'Unlocked by %1' => 'Desbloqueado por %1',
'Previous file version restored' => 'Versión anterior del fichero restaurada',
'Previous version restored by %1' => 'Versión anterior restaurada por %1',
'Previous file version deleted' => 'Versión anterior del fichero borrada',
'Previous version deleted by %1' => 'Versión previa borrada por %1',
'File renamed' => 'Fichero renombrado',
'Renamed by %1' => 'Renombrado por %1',
'File encrypted' => 'Fichero cifrado',
'Encrypted by %1' => 'Cifrado por %1',
'File decrypted' => 'Fichero descifrado',
'Decrypted by %1' => 'Descifrado por %1',
'File sent by e-mail' => 'Fichero enviado por email',
'Send by e-mail by %1' => 'Enviado por email por %1',
'Changed label' => 'Etiqueta cambiada',
'Label removed' => 'Etiqueta eliminada',
'Labeled by %1: %2' => 'Etiquetado por %1: %2',
'Label removed by %1' => 'Etiqueta eliminada por %1',
'Are you sure you want to clear the file\'s activity log?' => '¿Estás seguro de que deseas limpiar el log de actividad de los archivos?',
'Activity log successfully cleared' => 'Log de actividad correctamente limpiado',
'Failed to clear activity log' => 'Ocurrió un fallo al limpiar el log de actividad',
'Clear log' => 'Limpiar log',
'Activity log has been successfully archived!' => 'El log de actividad ha sido archivado',
),
'Metadata' =>
array (
'You are not allowed to alter data in this shared folder.' => 'No tiene permiso para modificar los datos de esta carpeta compartida.',
'Software Error: Failed to insert new path.' => 'Error software: La introducción de la nueva ruta en la base de datos fracasó.',
'File Type' => 'Tipo de fichero.',
'Select...' => 'Seleccione...',
'- File Type Not Found -' => '- Tipo de fichero no encontrado -',
'Save' => 'Guardar',
'Saving data...' => 'Guardando datos...',
'Failed to save data!' => 'Error al guardar los datos!',
'- No Special Type -' => '- Ningún tipo especial -',
'No changes were made' => 'No se han realizado cambios',
'Changes saved' => 'Cambios guardados',
),
'Versioning' =>
array (
'Version' => 'Versión',
'User' => 'Usuario',
'Date' => 'Fecha',
'Download' => 'Descarga',
'Restore' => 'Recuperar',
'Delete' => 'Borrar',
'File version restored.' => 'Versión del fichero recuperada.',
'Failed to restore file version.' => 'Error al recuperar la versión del ficher!',
'File version deleted.' => 'Versión del fichero borrada.',
'Failed to delete file version.' => 'Error al borrar la versión del ficher!',
'You are not allowed to lock/unlock files in this shared folder.' => 'No tiene permiso para bloquear /desbloquear ficheros en esta carpeta.',
'The file has been locked.' => 'El fichero ha sido bloqueado.',
'The file has been unlocked.' => 'El fichero ha sido desbloqueado.',
'Failed to lock file!' => 'Error al bloquear el fichero!',
'Failed to unlock file!' => 'Error al desbloquear el fichero!',
'File is locked by another user.' => 'El fichero ya está bloqueado por otro usuario.',
'File is already locked by somebody else.' => 'El fichero ya está bloqueado por otro usuario.',
'Modified by' => 'Modificado por',
'Size' => 'Tamaño',
'The file is not locked.' => 'El fichero no está bloqueado',
'The file is already locked.' => 'El fichero ya está bloqueado',
'Preview' => 'Previsualizar',
),
'Searching' =>
array (
'File name' => 'Nombre del fichero',
'File contents' => 'Contenido del fichero',
'Look in' => 'Buscar en',
'Metadata Field' => 'Campo metadatos',
'Metadata' => 'Metadatos',
'Select...' => 'Seleccione...',
'Path' => 'Ruta',
'Searching...' => 'Buscando...',
'Search' => 'Búsqueda',
'- None Selected -' => '- Ninguno seleccionado -',
'Metadata Type' => 'Tipo de metadatos',
'Field Value' => 'Valor del campo',
),
'Custom Actions: CloudConvert' =>
array (
'API Key' => 'Clave API',
'Convert "%1" to:' => 'Convertir "%1" a:',
'No conversion option found for the "%1" file type.' => 'No se encontró opción de conversión para el fichero tipo "%1"',
),
'File Comments' =>
array (
'Author' => 'Autor',
'Comment' => 'Comentario',
'Add comment' => 'Añadir comentario',
'Type in your comment' => 'Escriba su comentario',
'Remove comment' => 'Borrar comentario',
'You are not allowed to read comments.' => 'No tiene permiso para leer comentarios.',
'You are not allowed to add comments.' => 'No tiene permiso para añadir comentarios.',
'You are not allowed to remove comments.' => 'No tiene permiso para remover comentarios.',
'You are not allowed to add comments to files in this shared folder.' => 'No tiene permiso para añadir comentarios a los ficheros de esta carpeta compartida.',
'You are not allowed to remove comments from files in this shared folder.' => 'No tiene permiso para borrar comentarios de los ficheros de esta carpeta compartida.',
'You are allowed to delete only your own comments from a shared file.' => 'Solo puede borrar sus propios comentarios de un fichero compartido.',
'You are not allowed to read comments in this shared folder.' => 'No tiene permiso pra leer comentarios de esta carpeta compartida.',
'No comments available for this file.' => 'Ficheros sin comentarios.',
'Comment successfully added.' => 'Comentario añadido con éxito.',
'Failed to add comment to file.' => 'Error al añadir comentario.',
'Comment successfully removed.' => 'Comentario borrado con éxito.',
'Failed to remove comment from file.' => 'Error al borrar comentario.',
),
'Custom Actions: Text Editor' =>
array (
'Text Editor' => 'Editor de texto',
'Text File' => 'Fichero de texto',
'Untitled.txt' => 'SinTitulo.txt',
'Save' => 'Guardar',
'Saving...' => 'Guardando...',
'File successfully saved' => 'Fichero guardado con éxito.',
'File successfully created' => 'Fichero creado con éxito',
'A file with that name already exists' => 'Ese nombre de fichero ya existe',
'Please type a file name' => 'Introduzca un nombre de fichero',
'Other..' => 'Otro...',
'New Text File.txt' => 'Fichero Nuevo.txt',
'Would you like to reload the file using the selected charset? Any unsaved changes will be lost.' => 'Quiere recargar el fichero usando el código de caracteres seleccionado? Los cambios no guardados se perderán.',
'Save and close' => 'Guardar y cerrar',
'Word wrap' => 'Separación de palabras',
'The file type is not allowed.' => 'Tipo de fichero no permitido',
'Close' => 'Cerrar',
),
'Custom Actions: Zoho' =>
array (
'API key' => 'Clave API',
'Zoho Editor' => 'Editor Zoho',
'Document with Zoho' => 'Documento con Zoho',
'Untitled.docx' => 'Sintitulo.docx',
'Blank file created successfully' => 'Fichero vacío creado correctamente',
),
'Custom Actions: Image Editor' =>
array (
'Apply' => 'Aplicar',
'Close' => 'Cerrar',
'Save and close' => 'Guardar y Cerrar',
'Save' => 'Guardar',
'Failed to load image!' => '¡No se pudo cargar la imagen!',
'Loading image..' => 'Cargando imagen...',
'Cancel' => 'Cancelar',
'Scale down' => 'Reducir proporcionalmente',
'Rotate' => 'Rotar',
'Reset' => 'Resetear',
'Flip horizontal' => 'Girar Horizontalmente',
'Flip vertical' => 'Girar Verticalmente',
'Fit to screen' => 'Ajustar a la pantalla',
'Full size' => 'Tamaño Completo',
'Reload image' => 'Recargar imagen',
'Uploading image..' => 'Subiendo imagen ...',
),
'Custom Actions: File Encryption' =>
array (
'Path to AESCrypt' => 'Ruta a AESCrypt',
'Download and install AESCrypt from <a href="%1" target="_blank">here</a>.' => 'Descargar e instalar AESCrypt desde <a href="%1" target="_blank">aquí</a>.',
'AES File Encryption' => 'Cifrado de fichero AES',
'Password' => 'Contraseña',
'Decrypt "%1"' => 'Descifrar "%1"',
'Encrypt "%1"' => 'Cifrar "%1"',
'Processing file...' => 'Procesando fichero...',
'The user doesn\'t have permission to use this function!' => 'El usuario no tiene permiso para usar esta función',
'The selected file was successfully decrypted.' => 'El fichero seleccionado fue descifrado',
'Failed to decrypt the selected file!' => 'Error al descifrar el fichero !',
'A file named "%1" already exists!' => 'Ya existe el fichero "%1"',
'The selected file was successfully encrypted.' => 'El fichero seleccionado fue cifrado',
'Failed to encrypt the selected file!' => 'Error al cifrar el fichero !',
'The selected file was not found!' => 'No se encontró el fichero seleccionado ',